printer.cpp: In function 'int main()':
printer.cpp:34:28: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
34 | for (same_ind=0;same_ind<min(cur.size(), in[i].size()) &&
| ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:11:51: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare]
11 | #define _for(ccc, sss, eee) for (int ccc=(sss);ccc<=(eee);ccc++)
| ^
printer.cpp:36:4: note: in expansion of macro '_for'
36 | _for (j, 1, max(cur.size(), in[i].size())-same_ind-1)ss<<_;
| ^~~~
printer.cpp:11:51: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | #define _for(ccc, sss, eee) for (int ccc=(sss);ccc<=(eee);ccc++)
| ^
printer.cpp:38:3: note: in expansion of macro '_for'
38 | _for (j, same_ind, in[i].size()-1)ss<<in[i][j];
| ^~~~