perm.cpp: In function 'std::vector<int> construct_permutation(long long int)':
perm.cpp:45:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
45 | for(int i = 0; i<left.size(); i++) ans.push_back(left[i]);
| ~^~~~~~~~~~~~
perm.cpp:46:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | for(int i = 0; i<right.size(); i++) ans.push_back(right[i]);
| ~^~~~~~~~~~~~~