Problem2440--标记-输出所有奇数练习

2440: 标记-输出所有奇数练习

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 110  Solved: 73
[Status] [Submit] [Creator:]

Description

输入n个数,然后按输入顺序输出它们中所有的奇数,数与数之间用”,”隔开。

Input

输入包含两行。
第一行为n(1<=n<=100000)。
第二行为n个数。

Output

输出一行,将输入数据中的奇数按顺序输出,每两个数之间用","隔开。

Sample Input Copy

6
6 5 3 1 4 6

Sample Output Copy

5,3,1

Source/Category

 基础B