13 lines
266 B
Python
13 lines
266 B
Python
import sys
|
|
|
|
kings, queens, rooks, bishops, knights, pawns = sys.stdin.readline().split(' ')
|
|
|
|
print('{} {} {} {} {} {}'.format(
|
|
1 - int(kings),
|
|
1 - int(queens),
|
|
2 - int(rooks),
|
|
2 - int(bishops),
|
|
2 - int(knights),
|
|
8 - int(pawns)
|
|
))
|