#include using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x S; FOR(y,4) FOR(x,4) pat[y][x]=patt[a][y][x]*8+patt[b][y][x]*4+patt[c][y][x]*2+patt[d][x][y], S.insert(pat[y][x]); if(S.size()!=16) continue; int ng=0; FOR(y,4) { int t=0; FOR(x,4) t+=pat[y][x]; if(t!=30) ng++; } FOR(x,4) { int t=0; FOR(y,4) t+=pat[y][x]; if(t!=30) ng++; } if(pat[0][0]+pat[1][1]+pat[2][2]+pat[3][3]!=30) ng++; if(pat[0][3]+pat[1][2]+pat[2][1]+pat[3][0]!=30) ng++; if(ng==0) return; } assert(0); } void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>X>>Y>>Z; X--; Y--; Z--; if(N==4) { dodo(Y,X,Z); } else if(N==8) { dodo(Y%4,X%4,Z%16); } else if(N==16) { dodo(Y%4,X%4,Z%16); } FOR(y,N) { FOR(x,N) _P("%d%c",pat[y][x]+1,(x==N-1)?'\n':' '); } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }