// Description
Given a, b and m, compute a raised to the power b, modulo m.
// Input
A single line with three integers a, b and m (0 <= a, b <= 10^9, 1 <= m <= 10^9).
// Output
The value of a^b mod m.
// Hint
Use fast (binary) exponentiation in O(log b).