#include #include using namespace std; #define int long long void testcase() { int a, b; cout << "? 0" << endl; cin >> b; cout << "? 1" << endl; cin >> a; cout << "! " << a << ' ' << b << endl; return; } int32_t main() { ios::sync_with_stdio(false); cin.tie(nullptr); testcase(); return 0; }