savrsen.cpp:3:11: error: 'MAXN' was not declared in this scope
3 | int sieve[MAXN + 5];
| ^~~~
savrsen.cpp: In function 'void init()':
savrsen.cpp:6:12: error: 'sieve' was not declared in this scope
6 | memset(sieve, 0, sizeof(sieve));
| ^~~~~
savrsen.cpp:7:31: error: 'MAXN' was not declared in this scope
7 | for(long long i = 2; i <= MAXN; i++) {
| ^~~~
savrsen.cpp: In function 'long long int f(int)':
savrsen.cpp:19:17: error: 'sieve' was not declared in this scope
19 | int d = sieve[n];
| ^~~~~
savrsen.cpp: In function 'int main()':
savrsen.cpp:36:17: error: 'l' was not declared in this scope
36 | for(int x = l; x <= r; x++)
| ^
savrsen.cpp:36:25: error: 'r' was not declared in this scope
36 | for(int x = l; x <= r; x++)
| ^