Computer Science, asked by daneshjoe10, 8 months ago

Write a python program to get two values x ,n and compute xn.

Answers

Answered by ravikaran2018
2

Answer:

n= int(input())

x= int(input())

print(x*n)

Explanation:

No need i guess...

Similar questions