본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 10101번 삼각형 외우기

by 현장 2024. 9. 7.

-Code

a = int(input())
b = int(input())
c = int(input())

if a + b + c == 180:
    if a == b == c:
        print("Equilateral")

    elif a == b or a == c or b == c:
        print("Isosceles")

    else:
        print("Scalene")

else:
    print("Error")