// Invalid Query #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int p; cin >> p; cout << "? 0 " << p + 1 << '\n' << flush; int response; cin >> response; return 0; }