Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
34231 lnx 三角形判断 Python3 通过 27 MS 3672 KB 102 2023-12-17 14:52:26

Tests(1/1):


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


测评信息: