[백준] 10101번 : 삼각형 외우기 - Python(파이썬)

강재원·2022년 9월 14일
0

[코딩테스트] Python

목록 보기
32/200



https://www.acmicpc.net/problem/10101

a=int(input())
b=int(input())
c=int(input())
sum=a+b+c
if sum==180:
    if a==60 and b==60 and c==60: print("Equilateral")
    elif a==b or b==c or a==c: print("Isosceles")
    else: print("Scalene")
else: print("Error")
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글