import sys
a=[]
for i in range(0,15):
    a.append(i+1)

for j in a:
    if j == 13:
        continue
    else:
        print(j,end=' ')