/in/foo.cc: In function 'int main()':
/in/foo.cc:12:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n;i++) scanf("%d",&a[i]),c[i]=a[i]; sort(c+1,c+n+1);
^~~
/in/foo.cc:12:54: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=1;i<=n;i++) scanf("%d",&a[i]),c[i]=a[i]; sort(c+1,c+n+1);
^~~~
/in/foo.cc:14:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n;i++) scanf("%d",&b[i]),c[i]=b[i]; sort(c+1,c+n+1);
^~~
/in/foo.cc:14:54: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=1;i<=n;i++) scanf("%d",&b[i]),c[i]=b[i]; sort(c+1,c+n+1);
^~~~
/in/foo.cc:16:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n;i++) pos[a[i]]=i; int s=0;
^~~
/in/foo.cc:16:38: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=1;i<=n;i++) pos[a[i]]=i; int s=0;
^~~