number_list=list(range(1,16))
for x in number_list:
    if x == 13:
        continue
    else:
        print(x,end=' ')