Problem gcd
User Kavinkv
Submission Time 2025-02-20 21:29:29
Score 0
Max Time N/A
Max Memory N/A

Compile Error

gcd.cpp: In function ‘int main()’:
gcd.cpp:4:2: error: ‘cin’ was not declared in this scope
4 | cin >> a >> b;
| ^~~
gcd.cpp:6:16: error: ‘mod’ was not declared in this scope
6 | ans = gcd(b, mod(a,b));
| ^~~
gcd.cpp:6:9: error: ‘gcd’ was not declared in this scope
6 | ans = gcd(b, mod(a,b));
| ^~~
gcd.cpp:9:16: error: ‘mod’ was not declared in this scope
9 | ans = gcd(a, mod(b,a));
| ^~~
gcd.cpp:9:9: error: ‘gcd’ was not declared in this scope
9 | ans = gcd(a, mod(b,a));
| ^~~
gcd.cpp:11:2: error: ‘cout’ was not declared in this scope
11 | cout << ans;
| ^~~~