CBSE BOARD X, asked by arjun95296, 2 months ago

Write function which will take 2 variables as input and produce sum of squares of each

variable as result.​

Answers

Answered by Annonymous01
1

Answer:

the solution (in python) is as follows

Explanation:

def sumOfSquares:

   a = int(input("enter the first number"))

   b = int(input("enter the second number"))

   sq1 = a^{2}

   sq2 = b^{2}

   print(sq1 + sq2)

Similar questions