From 517196949cc77b48e3798b47150929c690dd0cb3 Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Fri, 13 May 2022 21:38:45 +0200 Subject: [PATCH] Bijele --- bijele.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bijele.py diff --git a/bijele.py b/bijele.py new file mode 100644 index 0000000..faf6ca4 --- /dev/null +++ b/bijele.py @@ -0,0 +1,12 @@ +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) +))