코딩테스트/python

[백준/Python] 3003번 : 킹, 퀸, 룩, 비숍, 나이트, 폰

bildad_1 2023. 11. 24. 22:10
728x90
 
chess = [1,1,2,2,2,8]                      # 기준이 될 값
a = list(map(int,input().split()))         # 입력받을 값

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