n = gets.to_s.to_i64 if n == 1 puts 1 exit end n = (n + 1) // 2 a = Array.new(n){ |i| (i + 1) * 2 }.join(" ") puts a