지나가던 개발자

[Python] 코드업 5078번(삼각형의 형태) 문제 풀이 본문

PS/Python

[Python] 코드업 5078번(삼각형의 형태) 문제 풀이

KwonYongHyeon 2023. 8. 2. 21:25

 

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

if a==b==c:
    print("Equilateral")
elif a==b or b==c or c==a:
    print("Isosceles")
else:
    if a+b+c==180:
        print("Scalene")
    else:
        print("Error")
Comments