N = int(input()) odds = list(range(1, N+1, 2)) print(' '.join(map(str, odds)))