Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
34231 lnx 三角形判断 Python3 Accepted 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');


Judgement Protocol: