/in/foo.cc: In function 'int main()':
/in/foo.cc:17:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
17 | for(int i=0;i<n-1;i++) cout<<a[i]<<" "; cout<<a[n-1]<<endl;
| ^~~
/in/foo.cc:17:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
17 | for(int i=0;i<n-1;i++) cout<<a[i]<<" "; cout<<a[n-1]<<endl;
| ^~~~
/in/foo.cc:20:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
20 | for(int i=0;i<j-1;i++) cout<<b[i]<<" "; cout<<b[j-1]<<endl;
| ^~~
/in/foo.cc:20:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
20 | for(int i=0;i<j-1;i++) cout<<b[i]<<" "; cout<<b[j-1]<<endl;
| ^~~~