/in/foo.cc: In function 'int main()':
/in/foo.cc:34:4: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(M[rec1][Y1]==M[X1][Y1]&&rec1>=1)rec1--;rec1++;
^~~~~
/in/foo.cc:34:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
while(M[rec1][Y1]==M[X1][Y1]&&rec1>=1)rec1--;rec1++;
^~~~
/in/foo.cc:35:4: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(M[rec2][Y1]==M[X1][Y1]&&rec2<=n)rec2++;rec2--;
^~~~~
/in/foo.cc:35:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
while(M[rec2][Y1]==M[X1][Y1]&&rec2<=n)rec2++;rec2--;
^~~~
/in/foo.cc:48:4: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(M[rec1][Y2]==M[X2][Y2]&&rec1>=1)rec1--; rec1++;
^~~~~
/in/foo.cc:48:50: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
while(M[rec1][Y2]==M[X2][Y2]&&rec1>=1)rec1--; rec1++;
^~~~
/in/foo.cc:49:4: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(M[rec2][Y2]==M[X2][Y2]&&rec2<=n)rec2++; rec2--;
^~~~~
/in/foo.cc:49:50: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
while(M[rec2][Y2]==M[X2][Y2]&&rec2<=n)rec2++; rec2--;
^~~~
/in/foo.cc:82:4: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(M[X2][rec1]==M[X2][Y2]&&rec1>=1)rec1--; rec1++;
^~~~~
/in/foo.cc:82:50: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
while(M[X2][rec1]==M[X2][Y2]&&rec1>=1)rec1--; rec1++;
^~~~
/in/foo.cc:83:4: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(M[X2][rec2]==M[X2][Y2]&&rec2<=m)rec2++; rec2--;
^~~~~
/in/foo.cc:83:50: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
while(M[X2][rec2]==M[X2][Y2]&&rec2<=m)rec2++; rec2--;
^~~~
/in/foo.cc:94:22: warning: format '%lld' expects argument of type 'long long int', but argument 2 has type 'int' [-Wformat=]
printf("%lld\n",ans);
^