0_0_39353286_1216.cpp: In function 'void solve()':
0_0_39353286_1216.cpp:22:17: error: 'iLL' was not declared in this scope; did you mean 'LL'?
22 | iLL a[n + 10],b[n + 10];
| ^~~
| LL
0_0_39353286_1216.cpp:24:45: error: 'a' was not declared in this scope
24 | for(i = 0;i < n;i++) cin >> a[i];
| ^
0_0_39353286_1216.cpp:30:29: error: 'a' was not declared in this scope
30 | temp1 = lcm(a[0],a[1]);
| ^
0_0_39353286_1216.cpp:33:25: error: 'b' was not declared in this scope
33 | b[i] = temp1 / a[i];
| ^
0_0_39353286_1216.cpp:38:54: error: 'b' was not declared in this scope
38 | for(i = 0;i < n;i++) cout << b[i] * (m / sum2) << " ";
| ^
|