2661: CTK07 0~n之间的奇数

Memory Limit:256 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:1

Description

输入一个正整数n,输出从0到n(包括0和n)之间的所有奇数。

Input

一个正整数n。

Output

输出占一行,依次为从0到n之间的所有奇数,相邻两个数用一个空格隔开。

Sample Input Copy

7 

Sample Output Copy

1 3 5 7 

HINT