/in/foo.cc: In function 'int main()':
/in/foo.cc:4:19: error: expected initializer before 'm'
unsigned __int64 m,a[64];
^
/in/foo.cc:7:6: error: 'a' was not declared in this scope
for(a[0]=0,i=1; i<=63; i++)
^
/in/foo.cc:10:22: error: 'm' was not declared in this scope
scanf("%d%I64u",&n,&m);
^
/in/foo.cc:16:9: error: 'a' was not declared in this scope
if(m<=a[n]) {
^
/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];
^