A = [2, 3] n = int(input()) for _ in range(n - 2):A.append(A[-1] * 2) print(*A)