Anna.cpp: In function 'std::pair<std::vector<int>, std::vector<int> > Anna(long long int)':
Anna.cpp:21:6: error: 'll' was not declared in this scope
21 | for(ll i = 1;i <= 2000;i++) {
| ^~
Anna.cpp:21:15: error: 'i' was not declared in this scope
21 | for(ll i = 1;i <= 2000;i++) {
| ^
Anna.cpp:23:6: error: expected ';' before 'val'
23 | ll val = i * i - A;
| ^~~~
| ;
Anna.cpp:24:27: error: 'val' was not declared in this scope
24 | for(int j = 1;j <= min(val,i);j++)a.pb(1);
| ^~~
Anna.cpp:25:16: error: 'val' was not declared in this scope
25 | for(int j = val + 1;j <= i;j++)a.pb(0);
| ^~~
Anna.cpp:26:4: error: 'val' was not declared in this scope
26 | val = max(0ll,val - i);
| ^~~
Bruno.cpp:7:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
7 | int variable_example = 0;
| ^~~~~~~~~~~~~~~~