program tri;//判断三个数字能否构成三角 var a,b,c:real; begin readln(a,b,c); if(a+b>c)and(b+c>a)and(a+c>b)then writeln('yes'); else writeln('no'); end.