#include #include using namespace std; using namespace atcoder; typedef long long int ll; typedef long double ld; typedef vector vi; typedef vector vl; typedef vector vvl; typedef vector vvvl; typedef vector vvvvl; typedef vector vb; typedef vector vvb; typedef vector vvvb; typedef vector vvvvb; typedef pair pl; typedef pair ppl; typedef pair pppl; typedef pair pppppl; #define rep(i,a,b) for(int i=(a);i<(b);i++) #define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--) #define all(a) begin(a),end(a) #define sz(a) (int)(a).size() // #define F first // #define S second #define bs(A,x) binary_search(all(A),x) #define lb(A,x) (ll)(lower_bound(all(A),x)-A.begin()) #define ub(A,x) (ll)(upper_bound(all(A),x)-A.begin()) #define cou(A,x) (ll)(upper_bound(all(A),x)-lower_bound(all(A),x)) templateusing min_priority_queue=priority_queue,greater>; templatebool chmax(T&a,T b){if(abool chmin(T&a,T b){if(b vm; typedef vector vvm; typedef vector vvvm; typedef vector vvvvm; ostream&operator<<(ostream&os,mint a){os<>(istream&is,mint&a){int x;is>>x;a=mint(x);return is;} //*/ templateostream&operator<<(ostream&os,pairp){os<istream&operator>>(istream&is,pair&p){is>>p.F>>p.S;return is;} templateostream&operator<<(ostream&os,vectorv){rep(i,0,sz(v))os<istream&operator>>(istream&is,vector&v){for(T&in:v)is>>in;return is;} void Solve() { int P; cin >> P; vector> ANS(P, vector(P, -1)); rep(i,0,P-1) { cout << "? " << i+1 << ' ' << i+1 << endl; cin >> ANS[i][i]; ANS[i][i]--; } { cout << "? " << 1 << ' ' << 2 << endl; cin >> ANS[0][1]; ANS[0][1]--; } vector X(P), Y(P); if (ANS[0][1] % P == ANS[0][0] % P) { int XOR = 0, YOR = 0; rep(i,0,P) XOR ^= i, YOR ^= i; rep(i,0,P-1) { X[i] = ANS[i][i] % P; XOR ^= X[i]; Y[i] = (ANS[i][i] / P) * P; YOR ^= (Y[i]/P); } X[P-1] = XOR; Y[P-1] = YOR * P; } else { int XOR = 0, YOR = 0; rep(i,0,P) XOR ^= i, YOR ^= i; rep(i,0,P-1) { X[i] = (ANS[i][i] / P) * P; XOR ^= (X[i]/P); Y[i] = ANS[i][i] % P; YOR ^= Y[i]; } X[P-1] = XOR * P; Y[P-1] = YOR; } cout << "! " << endl; rep(i,0,P) { rep(j,0,P) { cout << X[i]+Y[j]+1; if (j+1==P) cout << endl; else cout << ' '; } } } int main(){ //cin.tie(0)->sync_with_stdio(0); //cin.exceptions(cin.failbit); ll _ = 1; //cin>>_; while(_--){ Solve(); } return 0; }