0_0_36473924_23987.cpp:1:1: error: 'll' does not name a type
ll a, b;
^
0_0_36473924_23987.cpp:2:1: error: 'll' does not name a type
ll mi(ll n) {
^
0_0_36473924_23987.cpp: In function 'void solve()':
0_0_36473924_23987.cpp:8:8: error: 'a' was not declared in this scope
sc(a), sc(b);
^
0_0_36473924_23987.cpp:8:9: error: 'sc' was not declared in this scope
sc(a), sc(b);
^
0_0_36473924_23987.cpp:8:15: error: 'b' was not declared in this scope
sc(a), sc(b);
^
0_0_36473924_23987.cpp:9:25: error: 'swap' was not declared in this scope
if (a > b) swap(a, b);
^
0_0_36473924_23987.cpp:10:5: error: 'll' was not declared in this scope
ll d = b - a;
^
0_0_36473924_23987.cpp:11:9: error: 'd' was not declared in this scope
if (d == 1 || b == 1 && a == 1)
^
0_0_36473924_23987.cpp:12:21: error: 'puts' was not declared in this scope
puts("-1 -1");
^
0_0_36473924_23987.cpp:14:29: error: 'printf' was not declared in this scope
printf("2 %lld\n", b);
^
0_0_36473924_23987.cpp:16:12: error: expected ';' before 'L'
ll L = mi(d);
^
0_0_36473924_23987.cpp:17:31: error: 'L' was not declared in this scope
printf("%lld %lld\n", L, d);
^
0_0_36473924_23987.cpp:17:35: error: 'printf' was not declared in this scope
printf("%lld %lld\n", L, d);
^
0_0_36473924_23987.cpp: In function 'int main()':
0_0_36473924_23987.cpp:21:11: error: 'sieve' was not declared in this scope
sieve();
^
0_0_36473924_23987.cpp:24:19: error: 'scanf' was not declared in this scope
scanf("%d", &T);
^
0_0_36473924_23987.cpp:26:13: error: expected '}' at end of input
return 0;
^
|