/in/foo.cc: In function 'int main()':
/in/foo.cc:10:23: warning: format '%u' expects argument of type 'unsigned int*', but argument 3 has type 'long long int*' [-Wformat=]
scanf("%d%I64u",&n,&m);
~~^
/in/foo.cc:35:22: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
ans+=(1<<row[i][j]-1);
~~~~~~~~~^~
/in/foo.cc:37:19: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
printf("%d ",ans);
^
/in/foo.cc:5:8: warning: unused variable 't' [-Wunused-variable]
int n,t,i,j,row[3][66];
^