백준 풀이

백준 10101번 파이썬

ag2개발자 2022. 8. 25. 07:21
a= int(input())
b= int(input())
c= int(input())
if a+b+c!=180:
    print("Error")
elif a==b and b==c and c==60:
    print("Equilateral")
elif a==b or a==c or b==c:
    print("Isosceles")
else:
    print("Scalene")

'백준 풀이' 카테고리의 다른 글

백준 2941 파이썬  (0) 2022.08.25
백준 1316 파이썬  (0) 2022.08.25
백준 4796 파이썬  (0) 2022.08.25
백준 15829 파이썬  (0) 2022.08.24
백준 2744번 파이썬  (0) 2022.08.24