write an algorithm to find the value of x=a^2+b^2
Answers
Answered by
1
a, b = 69, 999
x = a ** 2 + b ** 2
print(x)
Similar questions