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

n = int(input())
for i in range(n):
    word = input()

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

print("winner")