-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")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32215번 코드마스터 2024 (0) | 2024.09.10 |
---|---|
[백준/파이썬] 28464번 Potato (0) | 2024.09.09 |
[백준/파이썬] 15838번 Wak Sani Satay (0) | 2024.09.06 |
[백준/파이썬] 9949번 Hide those Letters (0) | 2024.09.05 |
[백준/파이썬] 18309번 Extreme Temperatures (0) | 2024.09.04 |