mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:16:43: warning: comparison of integer expressions of different signedness: 'const long unsigned int' and 'int' [-Wsign-compare]
16 | while(last < n && max(a.size(),b.size()) < th){
| ~~~~~~~~~~~~~~~~~~~~~~~^~~~
mushrooms.cpp:28:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | while(cnt < a.size() && last < n){
| ~~~~^~~~~~~~~~
mushrooms.cpp:42:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | while(cnt < b.size() && last < n){
| ~~~~^~~~~~~~~~
mushrooms.cpp:23:13: warning: unused variable 'cb' [-Wunused-variable]
23 | int ca = 0,cb = 0;
| ^~