ho_t2.cpp: In function 'int main()':
ho_t2.cpp:32:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for(int i = 0; i < size(v[0]); i++){
| ~~^~~~~~~~~~~~
ho_t2.cpp:33:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | if(i+k-1 >= size(v[0])) break;
| ~~~~~~^~~~~~~~~~~~~
ho_t2.cpp:36:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | if(j+k-1 >= size(v[1])) break;
| ~~~~~~^~~~~~~~~~~~~
ho_t2.cpp:39:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | if(kk+k-1 >= size(v[2])) break;
| ~~~~~~~^~~~~~~~~~~~~
ho_t2.cpp:20:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
20 | scanf("%s", s);
| ~~~~~^~~~~~~~~