bobek.cpp: In function 'std::vector<long long int> gen(std::vector<long long int>)':
bobek.cpp:25:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | while (p1 != v.size() && v[p1] + x < y){
| ~~~^~~~~~~~~~~
bobek.cpp:33:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | while (p1 != v.size()){
| ~~~^~~~~~~~~~~
bobek.cpp: In function 'void Solve()':
bobek.cpp:65:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
65 | while (ptr != v2.size() && x + v2[ptr] <= m){
| ~~~~^~~~~~~~~~~~