본문 바로가기
알고리즘/백준

백준-3003번(킹, 퀸, 룩, 비숍, 나이트, 폰)-python3

by nyeongha 2023. 11. 26.
ch1=[1,1,2,2,2,8]
ch2=list(map(int,input().split()))

for i,j in zip(ch1,ch2):
    print(i-j,end=' ')