import sys input = sys.stdin.readline N = int(input()) print(*[2 * x + 1 for x in range(-(-N // 2))])