mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:14:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
14 | if(aovi.size()>=w){
| ~~~~~~~~~~~^~~
mushrooms.cpp:27:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
27 | if(bovi.size()>=w){
| ~~~~~~~~~~~^~~
mushrooms.cpp:42:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
42 | if(aovi.size()>=w || bovi.size()>=w) break;
| ~~~~~~~~~~~^~~
mushrooms.cpp:42:35: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
42 | if(aovi.size()>=w || bovi.size()>=w) break;
| ~~~~~~~~~~~^~~