write a program to input two integer number x and y from the user calculate x rasise to the power y
Answers
Answered by
1
Answer:
Program here
Explanation:
x=input "Enter first number"
y=input "Enter second number"
z=x^y
print("Result is =" +z)
Answered by
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
Math,
3 months ago
Math,
3 months ago
Math,
6 months ago
Social Sciences,
6 months ago
Math,
11 months ago