aboutsummaryrefslogtreecommitdiff
path: root/problems/gameofquarters/attachments/template.py
blob: 461fe271e3bbe4259076d98c250c8c236a25f73c (plain)
1
2
3
4
5
6
7
8
9
10
11
import sys
import math

number_of_rounds = int(input())
for i in range(number_of_rounds):
    alice_sequence, bob_sequence, round_tosses = input().split()

# Write an answer using print
# To debug: print("Debug messages...", file=sys.stderr, flush=True)

print("WINNER!")