# 一次性输出,内容的间隔用sep=();循环体内print()多次输出的内容,间隔用end=()
for i in range(1,16):
    if i == 13:
        continue
    else:
        print(i,end=(' '))