본문 바로가기
Python/백준

백준 - 10101 삼각형 외우기

by sophia02 2022. 10. 3.
a = int(input())
b = int(input())
c = int(input())
d = a+b+c
if a == 60 and b == 60 and c == 60:
    print("Equilateral")
elif (d == 180) and ((a == b) or (b == c) or (a == c)):
    print("Isosceles")
elif d == 180 and (a != b != c):
    print("Scalene")
elif d != 180:
    print("Error")

'Python > 백준' 카테고리의 다른 글

백준 10768 - 특별한 날  (0) 2022.10.05
백준 - 2083 럭비 클럽  (0) 2022.10.04
백준 9316 - Hello Judge  (0) 2022.10.02
백준 - 10988 펠린드롬인지 확인하기  (0) 2022.10.01
백준 1009 - 분산처리  (0) 2022.09.30