提交时间:2024-02-09 14:59:40

运行 ID: 40295

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