Computer Science, asked by sahilpanihar86, 6 months ago

write a program to input two integer number x and y from the user calculate x rasise to the power y

Answers

Answered by puneetdevman
1

Answer:

Program here

Explanation:

x=input "Enter first number"

y=input "Enter second number"

z=x^y

print("Result is =" +z)

Answered by sambhavgautam6
1
  • #Program to Input two integers
  • x=int(input("Enter no. X::"))
  • y= int(input("Enter no. Y::))
  • Power =x**y
  • print("X RAISED TO Y IS::",Power))
Attachments:
Similar questions