PYTHON
Write a program which asks the user for two numbers and calculates the first number raised to the second number.
Sample program output:
Please enter number 1: 2
Please enter number 2: 5
2 ** 5 is 32
Note: Do not use the ** operator or the pow() function use loops and multiplication to calculate the answer