/in/foo.cc: In function 'void solve()':
/in/foo.cc:15:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=1;i<=N;i++)
^~~
/in/foo.cc:17:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(i=1;i<N;i++)
^~~
/in/foo.cc:17:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.cc:19:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
a[N].second=a[1].first;
^
/in/foo.cc:32:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=1;i<=N;i++)
^~~
/in/foo.cc:34:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
cout<<m<<endl;
^~~~
/in/foo.cc:13:9: warning: unused variable 'n' [-Wunused-variable]
int n,N,i,j,x,k,l;
^
/in/foo.cc:13:17: warning: unused variable 'x' [-Wunused-variable]
int n,N,i,j,x,k,l;
^
/in/foo.cc:13:21: warning: unused variable 'l' [-Wunused-variable]
int n,N,i,j,x,k,l;
^