Exponentiation (or raising a number to a certain power) is a matter of repeated multiplication.i.e.,
xn = x * x * ... * xE. g.,
x4 = 1 * x * x * x * x
Write a program that asks the user for a value and then for the power to which you will raise that value. Then multiply the value by itself n times.
Please remember that you need to initialize the product to 1 and then multiply the product by x n times.