Python으로 구현한 10101번 삼각형 외우기 문제 풀이입니다. https://www.acmicpc.net/problem/10101 10101번: 삼각형 외우기 문제의 설명에 따라 Equilateral, Isosceles, Scalene, Error 중 하나를 출력한다. www.acmicpc.net a = int(input()) b = int(input()) c = int(input()) count = 0 if a == b == c == 60 : print("Equilateral") elif a + b + c != 180 : print("Error") else : if a == b : count += 2 elif a == c : count += 2 elif b == c : count += 2 if c..