Run ID:144266
提交时间:2026-01-20 21:25:39
a, b, c = map(int, input().split()) sides = sorted([a, b, c]) x, y, z = sides if x + y <= z: print("No") else: if x == y == z: print("Equilateral Triangle") elif x **2 + y** 2 == z **2: print("Right Triangle") elif x == y or y == z or x == z: print("Isosceles Triangle") else: print("Simple Triangle")