/in/foo.c: In function 'main':
/in/foo.c:6:10: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
scanf("%d %d",n,k);
^
/in/foo.c:6:13: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'int' [-Wformat=]
scanf("%d %d",n,k);
^
/in/foo.c:11:12: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
scanf("%d",a[i][j]);
^
/in/foo.c:26:1: error: expected declaration or statement at end of input
}
^
/in/foo.c:4:17: warning: unused variable 'm' [-Wunused-variable]
int i,j,n,k,m;
^