sequence.cpp: In function 'void solve()':
sequence.cpp:17:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
17 | for(int i = 1;i<m;i++)cout<<-1<<' ';cout<<'\n';
| ^~~
sequence.cpp:17:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
17 | for(int i = 1;i<m;i++)cout<<-1<<' ';cout<<'\n';
| ^~~~
sequence.cpp:21:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
21 | for(int i = 1;i<n;i++)cout<<1<<' ';cout<<'\n';
| ^~~
sequence.cpp:21:38: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
21 | for(int i = 1;i<n;i++)cout<<1<<' ';cout<<'\n';
| ^~~~