PROGRAMMING:Odd simple increasing sequence
####Description
Given a positive integer sequence of length n (no more than 500), please take out all odd numbers in it and output them in ascending order.
####Input
2 lines in total:
The first behavior is n;
The second line is n positive integers separated by spaces.
####Output
Odd number sequence of incremental output, with comma interval between data. The data is guaranteed to have at least one odd number.
####Sample input
```in
ten
1 3 2 6 5 4 9 8 7 10
```
####Sample output
```out
1,3,5,7,9
```
####Tips
Selected from openjdge website, http://noi.openjudge.cn/ch0110/02/
answer:If there is no answer, please comment
Given a positive integer sequence of length n (no more than 500), please take out all odd numbers in it and output them in ascending order.
####Input
2 lines in total:
The first behavior is n;
The second line is n positive integers separated by spaces.
####Output
Odd number sequence of incremental output, with comma interval between data. The data is guaranteed to have at least one odd number.
####Sample input
```in
ten
1 3 2 6 5 4 9 8 7 10
```
####Sample output
```out
1,3,5,7,9
```
####Tips
Selected from openjdge website, http://noi.openjudge.cn/ch0110/02/
answer:If there is no answer, please comment