Files
kattis/timeloop.py

7 lines
110 B
Python

import sys
n = int(sys.stdin.readline())
for i in range(n):
print('{} Abracadabra'.format(i + 1))