Write function which will take 2 variables as input and produce sum of squares of each
variable as result.
Answers
Answered by
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 =
sq2 =
print(sq1 + sq2)
Similar questions