printer.cpp: In function 'bool cmp(std::string, std::string)':
printer.cpp:15:18: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
15 | for(i = 0; i < min(b.size() , c.size()); i++){
| ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp: In function 'void solve()':
printer.cpp:34:24: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
34 | if(v[i].size() > mx)
| ~~~~~~~~~~~~^~~~
printer.cpp:40:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'const long unsigned int' [-Wsign-compare]
40 | for(i = 0; i < min(to.size(), d.size()); i++){
| ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:45:24: warning: comparison of integer expressions of different signedness: 'std::deque<char>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
45 | while(d.size() > l)
| ~~~~~~~~~^~~
printer.cpp:47:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
47 | while(l < to.size())
| ~~^~~~~~~~~~~