PROGRAMMING:One dimensional array to determine whether the value and coordinate are odd
Input 10 integer numbers into one-dimensional array, output value and subscript are odd (subscript of the first element of the array is 0) elements and their number, require the first output number.
###Input format:
Input numbers are separated by spaces.
###Output format:
The first line of output is separated from the previous input by a blank line.
###Input example:
Here is a set of inputs. For example:
```in
2 45 34 56 78 12 41 55 86 37
```
###Output example:
The corresponding output is given here. For example:
```out
count=3
a[1]=45
a[7]=55
a[9]=37
```
answer:If there is no answer, please comment
###Input format:
Input numbers are separated by spaces.
###Output format:
The first line of output is separated from the previous input by a blank line.
###Input example:
Here is a set of inputs. For example:
```in
2 45 34 56 78 12 41 55 86 37
```
###Output example:
The corresponding output is given here. For example:
```out
count=3
a[1]=45
a[7]=55
a[9]=37
```
answer:If there is no answer, please comment