Main.cpp: In function 'int main()':
Main.cpp:20:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
20 | for(int i=1; i<=N; i++) cout<<"1 "; cout<<"\n";
| ^~~
Main.cpp:20:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
20 | for(int i=1; i<=N; i++) cout<<"1 "; cout<<"\n";
| ^~~~
Main.cpp:26:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
26 | for(int i=1; i<=N; i++) cout<<A[i]<<" "; cout<<"\n";
| ^~~
Main.cpp:26:50: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
26 | for(int i=1; i<=N; i++) cout<<A[i]<<" "; cout<<"\n";
| ^~~~