stove.cpp: In function 'void solve()':
stove.cpp:33:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for(int i = 0; i < v.size(); i+=2){//0 1 2 3 4
| ~~^~~~~~~~~~
stove.cpp:34:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | if(m == 1 && (i + 1 != v.size() || i == v.size() - 1)){
| ~~~~~~^~~~~~~~~~~
stove.cpp:34:46: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | if(m == 1 && (i + 1 != v.size() || i == v.size() - 1)){
| ~~^~~~~~~~~~~~~~~