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