#include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout << "? 0 0" << endl; int d; cin >> d; cout << "? 100 0" << endl; int dd; cin >> dd; for(int i=0;i<=100;i++){ for(int j=0;j<=100;j++){ if(i*i+j*j==d and (100-i)*(100-i)+j*j==dd){ cout << "! " << i << " " << j << endl; return 0; } } } }