/in/foo.cc: In function 'void print()':
/in/foo.cc:21:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int k=1;k<=zn[i][j];k++)cout<<" ";cnt+=zn[i][j];
^~~
/in/foo.cc:21:43: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int k=1;k<=zn[i][j];k++)cout<<" ";cnt+=zn[i][j];
^~~
/in/foo.cc:22:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int k=1;k<=ns[i][j];k++) cout<<"**";cnt+=ns[i][j];
^~~
/in/foo.cc:22:44: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int k=1;k<=ns[i][j];k++) cout<<"**";cnt+=ns[i][j];
^~~