shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:16:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | for(int i = 1;i < S.size();i++){
| ~~^~~~~~~~~~
shoes.cpp:20:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | if(i < S.size()/2 && i > 0){
| ~~^~~~~~~~~~~~
shoes.cpp:27:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for (int i = 0; i < S.size(); i++) {
| ~~^~~~~~~~~~
shoes.cpp:36:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | for(int i = 0;i < S.size();i++){
| ~~^~~~~~~~~~
shoes.cpp:41:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | for(int j = i+1;j < S.size();j++){
| ~~^~~~~~~~~~
shoes.cpp:53:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for(int j = i+1;j < S.size();j++){
| ~~^~~~~~~~~~