Write a python program to get two values x ,n and compute xn.
Answers
Answered by
2
Answer:
n= int(input())
x= int(input())
print(x*n)
Explanation:
No need i guess...
Similar questions