Stuck In A Time Loop

This commit is contained in:
2022-05-13 21:37:26 +02:00
parent 1cfeb16b01
commit 753f3c83fe

6
timeloop.py Normal file
View File

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