import time
a = float(input(" 请输入∠1："))
b = float(input(" 请输入∠2："))
c = float(input(" 请输入∠3："))
if a + b > c and b + c > a and c + a > b:
    if a == b == c:
        print("这是一个等边三角形~")
    elif a == b or b == c or c == a:
        print("这是一个等腰三角形~")
    else:
        print("这是一个普通三角形~")
else:
    print(f" 长 {a} 和 {b} 和 {c} 的线段不能组成一个三角形！")
time.sleep(3)