construction.cpp: In function 'int main()':
construction.cpp:23:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int j=0; j<tmp.size(); j++) for (int k=j+1; k<tmp.size(); k++) if (tmp[k]>tmp[j]) cnt++;
| ~^~~~~~~~~~~
construction.cpp:23:59: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int j=0; j<tmp.size(); j++) for (int k=j+1; k<tmp.size(); k++) if (tmp[k]>tmp[j]) cnt++;
| ~^~~~~~~~~~~