n = int(input()) lst = [] i = 1 while i <= n: lst.append(i) i += 2 print(*lst)