write a program in python that accept two numbers i.e. X and Y calculate the x power y

Please find this answer

  • 0
X=int(input("Enter first number::"))
Y=int(input("Enter second number::"))
Z=X**Y
Print("x power y is",Z)
  • 1
What are you looking for?