Anna.cpp: In function 'void send(int)':
Anna.cpp:4:9: error: 'bitset' was not declared in this scope
4 | bitset<17> a(x);
| ^~~~~~
Anna.cpp:4:20: error: 'a' was not declared in this scope
4 | bitset<17> a(x);
| ^
Anna.cpp: In function 'void Anna(int, std::vector<char>)':
Anna.cpp:9:9: error: 'string' was not declared in this scope
9 | string temp = "XYZ";
| ^~~~~~
Anna.cpp:12:29: error: 'temp' was not declared in this scope
12 | if (S[i] == temp[j]) {
| ^~~~
Bruno.cpp: In function 'void Bruno(int, int, std::vector<int>)':
Bruno.cpp:20:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | for (int i = 1; i < v.size(); i += 3) {
| ~~^~~~~~~~~~
Bruno.cpp:23:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~