Find if a integer is sumof squares of two numbers of a list in python
ansh320:
sorry but what do you want to get from that code as output
Answers
Answered by
0
if you want sum of squares of two numbers then here is code below
#author:Ansh Bhardwaj
inp1=int(raw_input("First number"))
inp2=int(raw_input("second number : "))
print int(inp1**2)+int(inp2**2)
☸ Required Answer is ⬇ ⬇⬇⬇ ⬇
Ansh Bhardwaj ♥
Similar questions