Computer Science, asked by sachinsahni692, 3 months ago


b) Write a program to input two integer numbers x and y from the user and calculate x raise
(1.5 marks)
to the power y.​

Answers

Answered by rajnarayanchauhan200
5

Answer:

import math

x=int(input(enter first integer))

y=int(input(enter second integer))

power=math.pow(x, y)

print(power is, " power)

Similar questions