n = int(input()) ls = [] val = 1 for i in range((n+2-1)//2): ls.append(val) val += 2 for x in ls: print(x,end=' ')