#pragma GCC optimize ("O3") #pragma GCC target ("avx") #include using namespace std; typedef long long int ll; int main(){ int n; cin >> n; if(n==2){ // 出力周り確認 cout << "? 1 2" << endl; int a,b; cin >> a >> b; if(a==-1){ cout << "! 2 3" << endl; } else{ cout << "! 3 2" << endl; } return 0; } }