#include using namespace std; using ll = long long; using P = pair; #define fix(x) fixed << setprecision(x) #define asc(x) x, vector, greater #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() templatebool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} templatebool chmax(T&a, const T&b){if(a> n; int tot = n*(n+1)/2; vector a(n); rep(i,n-1){ cout << "? " << i+1 << " " << i+1 << endl; cin >> a[i]; tot -= a[i]; } a[n-1] = tot; cout << "! "; rep(i,n) cout << a[i] << " "; cout << endl; return 0; }