Anna.cpp: In function 'std::pair<std::vector<int>, std::vector<int> > Anna(long long int)':
Anna.cpp:29:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
29 | for(int &j : s) cout << j; cout << endl;
| ^~~
Anna.cpp:29:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
29 | for(int &j : s) cout << j; cout << endl;
| ^~~~
Anna.cpp:30:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
30 | for(int &j : t) cout << j; cout << endl;
| ^~~
Anna.cpp:30:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
30 | for(int &j : t) cout << j; cout << endl;
| ^~~~
Anna.cpp: At global scope:
Anna.cpp:9:5: warning: '{anonymous}::x' defined but not used [-Wunused-variable]
9 | int x = 0;
| ^
Bruno.cpp: In function 'long long int Bruno(std::vector<int>)':
Bruno.cpp:33:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for(int j = 0; j < bit.size(); j++) if (bit[j]) ans |= (1 << j);
| ~~^~~~~~~~~~~~
Bruno.cpp: At global scope:
Bruno.cpp:9:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
9 | int variable_example = 0;
| ^~~~~~~~~~~~~~~~