simurgh.cpp: In function 'void bc(int)':
simurgh.cpp:10:18: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
10 | if(vec.size()>mm){
| ~~~~~~~~~~^~~
simurgh.cpp:14:22: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
14 | if(vec.size()!=mm){
| ~~~~~~~~~~^~~~
simurgh.cpp:17:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
17 | for(auto x:vec)cout<<x<<" ";cout<<endl;
| ^~~
simurgh.cpp:17:37: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
17 | for(auto x:vec)cout<<x<<" ";cout<<endl;
| ^~~~