#include #include #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) using namespace atcoder; using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << "? 0" << endl; fflush(stdout); int b; cin >> b; cout << "? 1" << endl; fflush(stdout); int x; cin >> x; int a = x - b; cout << "! " << a << ' ' << b << endl; fflush(stdout); }