thehtml
Write a program to compute powers.
Input
Input consists of several pairs of integer numbers a and b. Assume b≥ 0.
Output
For every pair a,b, print ab. Supose, as usual, that 00 = 1.
Observation
The use of power operator ** is not alowed in this exercise.