[chapter three]
Write single C or C++ statements that do the following:

a. Input integer variable x with scanf.
b. Input integer variable y with scanf.
c. Initialize integer variable i to 1.
d. Initialize integer variable power to 1.
e. Multiply the variable power by x and assign the result to
power.
f. Increment the variable i by 1.
g. Test i to see if it is less than or equal to y in the
condition of a while statement.
h. Output the integer variable power with printf.


any hints on where to start?