728x90
반응형
단순 구현 문제이다.
res = int(input())
while 1:
op = input()
if op == '=':
break
n = int(input())
if op == '+': res += n;
elif op == '-': res -= n;
elif op == '*': res *= n;
elif op == '/': res //= n;
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5666번 Hot Dogs(python) (0) | 2021.02.14 |
---|---|
백준 알고리즘 5618번 공약수(python) (0) | 2021.02.14 |
백준 알고리즘 5612번 터널의 입구와 출구(python) (0) | 2021.02.14 |
백준 알고리즘 5565번 영수증(python) (0) | 2021.02.14 |
백준 알고리즘 5523번 경기 결과(python) (0) | 2021.02.14 |