python given 3 numbers perform arithemtic to get to a number code example
Example 1: python exponentiation
print(5 ** 3) #125
Example 2: power in python
#The ouptut will be x ^ y
x**y
print(5 ** 3) #125
#The ouptut will be x ^ y
x**y