-코드
while 1:
a, b, c = input().split()
a, c = int(a), int(c)
if a == 0 and b == 'W' and c == 0:
break
if b == 'W':
if a - c < -200:
print('Not allowed')
else:
print(a - c)
else:
print(a + c)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 14614번 Calculate! (0) | 2022.01.23 |
---|---|
[프로그래머스/파이썬] 124 나라의 숫자 (0) | 2022.01.22 |
[백준/파이썬] 18870번 좌표 압축 (0) | 2022.01.21 |
[백준/파이썬] 24309번 РАВЕНСТВО (0) | 2022.01.21 |
[백준/파이썬] 11286번 절댓값 힙 (0) | 2022.01.20 |