poi.cpp: In function 'int main()':
poi.cpp:13:16: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
13 | for(int i=0; i<n; i++){
| ~^~
poi.cpp:14:17: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
14 | for(int j=0; j<m; j++){
| ~^~
poi.cpp:20:16: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
20 | for(int i=0; i<n; i++){
| ~^~
poi.cpp:22:17: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
22 | for(int j=0; j<m; j++) sum += rj[j]*l[i][j];
| ~^~
poi.cpp:28:11: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'long long int' [-Wsign-compare]
28 | if (sum != v[i].first or usp != v[i].second.first){
| ~~~~^~~~~~~~~~~~~
poi.cpp:28:32: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'long long int' [-Wsign-compare]
28 | if (sum != v[i].first or usp != v[i].second.first){
| ~~~~^~~~~~~~~~~~~~~~~~~~
poi.cpp:33:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
33 | if (v[i].second.second == k){cout << sum << " " << pos; return 0;}