问答题

写出下面代码的运行结果()defIstriangle(a,b,c):if(a+b)>cand(a+c)>band(c+b)>a:return'YES'else:return'NO'print(Istriangle(1,4,5))

【参考答案】

NO