import sys
input = sys.stdin.readline
lists = list(map(int, input().split()))
normal = [1, 1, 2, 2, 2, 8]
answer = []
for i in range(len(lists)):
answer.append(normal[i] - lists[i])
print(*answer)
728x90
반응형
'Algorithm > 백준' 카테고리의 다른 글
백준 5339 - 콜센터 (0) | 2021.03.18 |
---|---|
백준 3046 - 파이썬 R2 (구현) (0) | 2021.03.18 |
백준 2845 - python 풀이 (0) | 2021.03.05 |
백준 1550- 16진수 python (구현) (0) | 2021.03.05 |
백준 7562 - python bfs로 푼 풀이 (0) | 2021.03.03 |