Square value added Get link Facebook X Pinterest Email Other Apps - December 10, 2023 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* Read more