Read two integers: base and exponent. Compute base^exponent using a for loop.
A power base^exponent means multiplying the base by itself exponent times.
2^3 = 2 * 2 * 2 = 85^1 = 57^0 = 1In this exercise, assume exponent is greater than or equal to 0.
Two integers:
baseexponentPrint a single number: the value of base^exponent.
Input:
2 5
Output:
32