printer.cpp: In function 'void solve()':
printer.cpp:29:25: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
29 | if (v[i].size() > mx)
| ~~~~~~~~~~~~^~~~
printer.cpp:33:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for (int j = 0; j < v[i].size(); ++j)
| ~~^~~~~~~~~~~~~
printer.cpp:44:27: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
44 | for (int j = 0; j < min(v[i].size(), v[i-1].size()); ++j) {
| ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:52:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for (int j = pre[i]; j < v2[i-1].size(); ++j) ans.pb('-');
| ~~^~~~~~~~~~~~~~~~
printer.cpp:53:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for (int j = pre[i]; j < v2[i].size(); ++j) ans.pb(v2[i][j]);
| ~~^~~~~~~~~~~~~~