python-algorithm
[백준] 10101
무적김두칠
2020. 12. 16. 09:19
1
2
3
4
5
6
7
|
a=int(input())
b=int(input())
c=int(input())
if a==60 and a==b and b==c: print("Equilateral")
elif a+b+c ==180 and (a==b or b==c or a==c): print("Isosceles")
elif a+b+c==180: print("Scalene")
else : print("Error")
|
cs |
반응형