Problem A: 数字输出(2)n以内的奇数。

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:85 Solved:27

Description

输入一个数字 设为 a。 用while语句输出a以内(不包括n)的奇数;

Input

一个数字 a

Output

这个数字以内的奇数,数字之间有一个空格。

Sample Input Copy

10

Sample Output Copy

1 3 5 7 9

HINT

结合if语句进行判断