/in/foo.cc: In function 'int main()':
/in/foo.cc:9:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=k;i++)
^~~
/in/foo.cc:11:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
f[0][0]=0;
^
/in/foo.cc:4:10: warning: unused variable 'i' [-Wunused-variable]
int n,m,i,k,j,f[102][102];
^
/in/foo.cc:4:14: warning: unused variable 'j' [-Wunused-variable]
int n,m,i,k,j,f[102][102];
^
/in/foo.cc:7:6: warning: unused variable 't' [-Wunused-variable]
int t;
^