#include using namespace std; int main() { cout << "1\n"; cout.flush(); int y; cin >> y; cout << (y == 2 ? 3 : 2) << "\n"; return 0; }