Computer Science, asked by inezsaxena24, 8 months ago

Write a program to that reads numbers x.y from user and calculate the expression x3+y2.​

Answers

Answered by Arnavthespiderman
2

Answer:

This is the required python code:

x = int(input("Enter a number"))

y = int(input("Enter another number"))

z = x**3 + y**2

print(z)

Similar questions