Computer Science, asked by aasma58, 11 months ago

2. Accept integer from user and calculate sqare and Exponential to 5 of the same.

Answers

Answered by DrNykterstein
0

num = int(input())

print(num*num)

print(pow(num,5))

Similar questions