Problem exponentiate
User EX0R5
Submission Time 2026-07-07 21:58:17
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exponentiate.cpp: In function ‘long long unsigned int evaluate(long long unsigned int, long long unsigned int)’:
exponentiate.cpp:7:28: error: ‘M’ was not declared in this scope
7 | return (int) pow(A, B) % M;
| ^
exponentiate.cpp:9:35: error: ‘M’ was not declared in this scope
9 | return evaluate(A * A, B / 2) % M;
| ^
exponentiate.cpp:11:41: error: ‘M’ was not declared in this scope
11 | return (evaluate(A * A, B / 2) * A) % M;
| ^