bank.cpp:11:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
11 | main() {
| ^~~~
bank.cpp: In function 'int main()':
bank.cpp:32:27: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for (int j = 0; j < v[a[i]].size(); j++) { msk = v[a[i]][j];
| ~~^~~~~~~~~~~~~~~~
bank.cpp:33:33: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for (int j1 = 0; j1 < v1.size(); j1++) { msk1 = v1[j1];
| ~~~^~~~~~~~~~~
bank.cpp:37:27: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | for (int i = 0; i < v2.size(); i++) {
| ~~^~~~~~~~~~~