#include using namespace std; typedef long long ll; typedef pair pi; typedef vector vi; typedef vector vl; typedef vector vpi; typedef vector vvi; const int inf = 0x3f3f3f3f; const ll mod = 1000000007; int n,m; int main(){ ios::sync_with_stdio(false); cin.tie(0); ifstream fin("maxpath.in"); ofstream fout("maxpath.out"); fin >> n >> m; fout << "1\n"; fout << n << "\n"; }