2. Accept integer from user and calculate sqare and Exponential to 5 of the same.
Answers
Answered by
0
num = int(input())
print(num*num)
print(pow(num,5))
Similar questions