sequence.cpp: In function 'int main()':
sequence.cpp:21:12: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
21 | for(j=1;j<n-1;j++)cout<<j<<" ";cout<<n-1<<endl;}
| ^~~
sequence.cpp:21:43: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
21 | for(j=1;j<n-1;j++)cout<<j<<" ";cout<<n-1<<endl;}
| ^~~~
sequence.cpp:26:14: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
26 | for(j=1;j<m-1;j++)cout<<-j<<" ";cout<<-m+1<<endl;}
| ^~~
sequence.cpp:26:46: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
26 | for(j=1;j<m-1;j++)cout<<-j<<" ";cout<<-m+1<<endl;}
| ^~~~
sequence.cpp:12:17: warning: unused variable 'l' [-Wunused-variable]
12 | long long n,l,r,i,j,t,m;
| ^
sequence.cpp:12:19: warning: unused variable 'r' [-Wunused-variable]
12 | long long n,l,r,i,j,t,m;
| ^