money.cpp: In function 'int main()':
money.cpp:19:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for (int j = 0; j < tmp.size(); j++) bst.insert(tmp[j]);
| ~~^~~~~~~~~~~~
money.cpp:25:23: 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 < tmp.size(); j++) bst.insert(tmp[j]);
| ~~^~~~~~~~~~~~