/in/foo.cc: In function 'int main()':
/in/foo.cc:19:19: warning: comparison of integer expressions of different signedness: 'int' and 'uint' {aka 'unsigned int'} [-Wsign-compare]
19 | for (int i=0;i<n;i++) cin>>a[i];
| ~^~
/in/foo.cc:20:19: warning: comparison of integer expressions of different signedness: 'int' and 'uint' {aka 'unsigned int'} [-Wsign-compare]
20 | for (int j=0;j<m;j++) cin>>b[j];
| ~^~
/in/foo.cc:22:18: warning: comparison of integer expressions of different signedness: 'int' and 'uint' {aka 'unsigned int'} [-Wsign-compare]
22 | for(int i=0;i<n;i++)
| ~^~
/in/foo.cc:23:23: warning: comparison of integer expressions of different signedness: 'int' and 'uint' {aka 'unsigned int'} [-Wsign-compare]
23 | for (int j=0;j<m;j++){
| ~^~