6 lines
84 B
Python
6 lines
84 B
Python
n = int(input())
|
|
|
|
for i in range(n):
|
|
j = str(i+1)
|
|
print(j + ' Abracadabra')
|