백준 3003번

Hyuntae Jung·2022년 8월 14일
0

Algorithm

목록 보기
3/17
post-thumbnail
a, b, c, d, e, f = map(int, input().split())
A, B, C, D, E, F= 1, 1, 2, 2 ,2, 8
print(A-a, B-b, C-c, D-d, E-e, F-f)
A = [1, 1, 2, 2, 2, 8]

a = list(map(int, input().split()))

for i in range(6):
	print(A[i] - a[i], end = ' ')

https://www.acmicpc.net/problem/3003

0개의 댓글