Main.cpp: In function 'int main()':
Main.cpp:12:13: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
12 | for(int k=1; k<=N; k++) cout<<(j==i); cout<<"\n";
| ^~~
Main.cpp:12:51: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
12 | for(int k=1; k<=N; k++) cout<<(j==i); cout<<"\n";
| ^~~~
Main.cpp:19:13: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
19 | for(int k=1; k<=N; k++) cout<<(j==i); cout<<"\n";
| ^~~
Main.cpp:19:51: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
19 | for(int k=1; k<=N; k++) cout<<(j==i); cout<<"\n";
| ^~~~
Main.cpp:33:21: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
33 | for(int k=1; k<=N; k++) cout<<(j==i && (k==s || k==t)); cout<<"\n";
| ^~~
Main.cpp:33:77: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
33 | for(int k=1; k<=N; k++) cout<<(j==i && (k==s || k==t)); cout<<"\n";
| ^~~~
Main.cpp:39:21: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
39 | for(int k=1; k<=N; k++) cout<<(j==i && (k==e || k==t)); cout<<"\n";
| ^~~
Main.cpp:39:77: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
39 | for(int k=1; k<=N; k++) cout<<(j==i && (k==e || k==t)); cout<<"\n";
| ^~~~
Main.cpp:50:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
50 | for(int k=1; k<=N; k++) cout<<(j==i && s<=k && k<=m); cout<<"\n";
| ^~~
Main.cpp:50:71: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
50 | for(int k=1; k<=N; k++) cout<<(j==i && s<=k && k<=m); cout<<"\n";
| ^~~~
Main.cpp:63:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
63 | for(int j=1; j<=N; j++) cout<<(j==ans[i]); cout<<"\n";
| ^~~
Main.cpp:63:52: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
63 | for(int j=1; j<=N; j++) cout<<(j==ans[i]); cout<<"\n";
| ^~~~