Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40295 lnx 三角形判断 Python3 通过 33 MS 3680 KB 102 2024-02-09 14:59:40

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');


测评信息: