N=int(input()) A=[] for i in range(N//2): A.append((i+1)*2) if N%2==1: A.append(A[-1]//2) print(*A)