/in/foo.cc: In function 'int main()':
/in/foo.cc:29:26: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
  scanf("%I64d%I64d",&m,&n);
                          ^
/in/foo.cc:29:26: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
/in/foo.cc:32:48: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
  for(ll i=1;i<=limt;i++) printf("%I64d ",ans[i]);return 0;
                                                ^
/in/foo.cc:32:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  for(ll i=1;i<=limt;i++) printf("%I64d ",ans[i]);return 0;
  ^~~
/in/foo.cc:32:50: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
  for(ll i=1;i<=limt;i++) printf("%I64d ",ans[i]);return 0;
                                                  ^~~~~~