#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ int d1,d2; cout<<"? 0 0"<>d1; cout<<"? 100 0"<>d2; int r,s; for(int i=0;i<=100;i++){ for(int j=0;j<=100;j++){ if(i*i+j*j==d1 && (100-i)*(100-i)+j*j==d2) r=i,s=j; } } cout<<"! "<