import sys

for i in range(1, 16):
    if i == 13:
        continue
    print(i, end=" ")