10 lines
163 B
Python
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)
|