perm.cpp: In function 'std::vector<int> construct_permutation(long long int)':
perm.cpp:21:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | for (int i = 0; i < ops.size(); i++) {
| ~~^~~~~~~~~~~~
perm.cpp:25:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for (int j = 0; j < ans.size(); j++) ans[j]++;
| ~~^~~~~~~~~~~~