Problem exponentiate
User kahchun
Submission Time 2023-11-04 11:23:37
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exponentiate.cpp: In function ‘int main()’:
exponentiate.cpp:12:20: error: expected ‘;’ before ‘cout’
12 | cin >> A >> B >> M
| ^
| ;
13 |
14 | cout << (pow(A, B) % M) << endl;
| ~~~~