stack단골문제. 후위표기식. 컴퓨터는 후위표기식으로 수식을 표현한다고 한다. 신기방기. for test in range(1, int(input())+1): equation = input().split() flag = 0 stack = [] try: for el in equation: # 숫자면 stack에 밀어넣기. if el.isdigit(): stack.append(int(el)) # 연산자면 숫자 두개꺼내서 연산. elif el == '+': stack.append(stack.pop() + stack.pop()) elif el == '-': tmp = stack.pop() stack.append(stack.pop() - tmp) elif el == '*': tmp = stack.pop() sta..