【例54.1】 奇数单增序列
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
说明
给出一个长度为 (不大于 )的正整数序列(正整数的值不超过 ),请将其中的所有奇数取出,并按升序输出。
输入格式
共 2 行:
第 1 行为 ;
第 2 行为 个正整数,其间用空格间隔。
输出格式
增序输出的奇数序列,数据之间以逗号间隔。数据保证至少有一个奇数。
样例
10
1 3 2 6 5 4 9 8 7 10
1,3,5,7,9