Problem exponentiate_ex
User user123
Submission Time 2023-12-05 20:30:59
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exponentiate_ex.cpp:6:9: error: ‘int128_t’ does not name a type; did you mean ‘int32_t’?
6 | typedef int128_t ll_;
| ^~~~~~~~
| int32_t
exponentiate_ex.cpp:9:1: error: ‘ll_’ does not name a type; did you mean ‘ll’?
9 | ll_ power(ll x, ll y)
| ^~~
| ll
exponentiate_ex.cpp: In function ‘int main()’:
exponentiate_ex.cpp:25:18: error: ‘power’ was not declared in this scope
25 | cout<<ll(power(n, m))<<endl;
| ^~~~~