提交时间:2023-12-17 14:52:26

运行 ID: 34231

a,b,c=map(int,input().split(' ')) if a+b>c and b+c>a and c+a>b: print('yes'); else: print('no');