Square value added

 Problem

Z=a²+y²

Output:

  A=2
  B=2
   Z=8

Solution of python code:

a=int(input("Enter the a value"))
y=int(input("Enter the y value"))
z=a**2+y**2
print ("SQUARE VALUE OF a and y is ",z)


*Check it my code any interpreter*

Comments

Popular posts from this blog

Emi calculator

HTML tutorials