drvca.cpp: In function 'void check(long long int, long long int)':
drvca.cpp:28:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | for(int i = 0;i<v.size()-1;i++)cout<<v[i]<<' ';
| ~^~~~~~~~~~~
drvca.cpp:34:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
34 | for(auto &i:v)cout<<i<<' ';cout<<'\n';
| ^~~
drvca.cpp:34:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
34 | for(auto &i:v)cout<<i<<' ';cout<<'\n';
| ^~~~
drvca.cpp:36:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
36 | for(auto &i:tmp)cout<<i<<' ';cout<<'\n';
| ^~~
drvca.cpp:36:32: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
36 | for(auto &i:tmp)cout<<i<<' ';cout<<'\n';
| ^~~~
drvca.cpp:40:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for(int i = 1;i<tmp.size();i++){
| ~^~~~~~~~~~~
drvca.cpp:44:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
44 | for(auto &i:v)cout<<i<<' ';cout<<'\n';
| ^~~
drvca.cpp:44:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
44 | for(auto &i:v)cout<<i<<' ';cout<<'\n';
| ^~~~
drvca.cpp:46:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
46 | for(auto &i:tmp)cout<<i<<' ';cout<<'\n';
| ^~~
drvca.cpp:46:31: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
46 | for(auto &i:tmp)cout<<i<<' ';cout<<'\n';
| ^~~~