What's the problem in this code? It looks correct. but outputs are not correct. by the way, (none of them is greater than or equal to the sum of the other two) It's triangular rule...
import sys
def areTriangular(x,y,z):
if x<y+z and y<x+z and z<x+y:
return True
else:
return False
a = sys.argv[1]
b = sys.argv[2]
c = sys.argv[3]
m = areTriangular(a,b,c)
print(m)