python/2024-10-19-2.py

10 lines
163 B
Python

def is_san(c,d,e):
if c+d>e and c+d>e and c+d>e:
print('yes')
else:
print('no')
a=int(input())
b=int(input())
c=int(input())
is_san(a,b,c)