728x90
반응형
단순 사칙연산 문제이다.
while 1:
a, op, b = input().split()
if a == b == '0':
break
s = int(a)-int(b) if op == 'W' else int(a)+int(b)
print("Not allowed" if s < -200 else s)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2991번 사나운 개(python) (0) | 2021.02.12 |
---|---|
백준 알고리즘 2985번 세 수(python) (0) | 2021.02.12 |
백준 알고리즘 2959번 거북이(python) (0) | 2021.02.12 |
백준 알고리즘 2953번 나는 요리사다(python) (0) | 2021.02.12 |
백준 알고리즘 2935번 소음(python) (0) | 2021.02.12 |