sequence.cpp: In function 'void solve_sub3()':
sequence.cpp:20:2: error: 'll' was not declared in this scope
20 | ll size = N - 1, calc = 1, l = 0;
| ^~
sequence.cpp:23:9: error: 'size' was not declared in this scope; did you mean 'dysize'?
23 | while(size >= calc){
| ^~~~
| dysize
sequence.cpp:23:17: error: 'calc' was not declared in this scope
23 | while(size >= calc){
| ^~~~
sequence.cpp:26:4: error: 'l' was not declared in this scope
26 | l++;
| ^
sequence.cpp:29:23: error: 'l' was not declared in this scope
29 | for(int i = 1; i <= l; i++) cout << "0";
| ^
sequence.cpp:31:9: error: 'size' was not declared in this scope; did you mean 'dysize'?
31 | while(size >= calc){
| ^~~~
| dysize
sequence.cpp:31:17: error: 'calc' was not declared in this scope
31 | while(size >= calc){
| ^~~~
sequence.cpp:34:4: error: 'l' was not declared in this scope
34 | l++;
| ^
sequence.cpp:36:23: error: 'l' was not declared in this scope
36 | for(int i = 1; i <= l; i++) cout << "8";
| ^
sequence.cpp:39:9: error: 'size' was not declared in this scope; did you mean 'dysize'?
39 | while(size){
| ^~~~
| dysize
sequence.cpp:40:16: error: 'l' was not declared in this scope
40 | size /= 10; l++;
| ^
sequence.cpp:43:23: error: 'l' was not declared in this scope
43 | for(int i = 1; i <= l; i++) cout << "0";
| ^