Write a PYTHON program that stores a constant integer then displays the square, cube, and fourth power. Use the ** operator only for the fourth power.
The output should look like this:
a. 10 squared is 100
b. 10 cubed is 1000
c. 10 to the fourth power is 10000