/in/foo.cc: In function 'int main()':
/in/foo.cc:64:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i = 1 ; i <= n ; i ++) printf("%d ",Ans[i]) ; printf("\n") ;
^~~
/in/foo.cc:64:59: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i = 1 ; i <= n ; i ++) printf("%d ",Ans[i]) ; printf("\n") ;
^~~~~~
/in/foo.cc:65:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i = 1 ; i <= n ; i ++) printf("%d ",Solve(i)) ; printf("\n") ;
^~~
/in/foo.cc:65:61: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i = 1 ; i <= n ; i ++) printf("%d ",Solve(i)) ; printf("\n") ;
^~~~~~
/in/foo.cc: In function 'int Solve(int)':
/in/foo.cc:55:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^