#include #define rep(i,n) for(int i = 0; i < (int)(n); i++) using namespace std; using LL = long long; using P = pair; using vv = vector>; const int INF = (int)1e9; const LL LINF = (LL)1e18; const int d[4] = {3, 5, 17, 65537}; int main(){ int n; cin >> n; int m = 16711935; cout << m << endl; cout << 1 << endl; /* for(int a = 20; a <= 5000; a++){ int x = a * a - 398; rep(i,5){ if(x % d[i] == 0){ cout << a << " " << d[i] << endl; return 0; } } } cout << "OK" << endl; */ return 0; }