#include #include #include using namespace std; int main(){ ios::sync_with_stdio(false); string s; getline(cin, s); int n = strtol(s.c_str(), 0, 10); if(n != 2){ return 1; } for(int i = 0; i < 2001; ++i){ cout << "? 0 0 0 0" << endl; getline(cin, s); } cout << "! 1 2\n"; }