Question: (Exponentiation) Write a function integer Power(base, exponent) that returns the value of base exponent
For example, integer Power( 3, 4 ) = 3 * 3 * 3 * 3. Assume that exponent is a positive, nonzero integer, and base is an integer. Function integer Power should use for to control the calculation. Do not use any math library functions.