PROGRAMMING:Parity of CPA remainder
CPA is the abbreviation of program design for college students. The three characters of 'C', 'p' and 'a' are transformed into plastic by ascll, and then they are 67, 80 and 65 respectively, and the total is 212
The requirement is to give you a number. Please judge whether it takes the remainder from CPA, that is, whether the value after taking the remainder from 212 is odd or even. First, output the remainder in one line. If it is odd, output "odd" in one line
If it is even, output "even" in one line.
###Input format:
Give a number N in a row (0 < = n < = 10 ^ 1000);
###Output format:
In a row, output the remainder first. If the remainder is odd, output "odd". If the remainder is even, output "even".
###Input example:
```in
two hundred and thirteen
```
###Output example:
Example explanation: 213% CPA = 1, 1 is odd, so output the remainder 1 first, and then output "odd"
```out
one
Odd number
```
answer:If there is no answer, please comment
The requirement is to give you a number. Please judge whether it takes the remainder from CPA, that is, whether the value after taking the remainder from 212 is odd or even. First, output the remainder in one line. If it is odd, output "odd" in one line
If it is even, output "even" in one line.
###Input format:
Give a number N in a row (0 < = n < = 10 ^ 1000);
###Output format:
In a row, output the remainder first. If the remainder is odd, output "odd". If the remainder is even, output "even".
###Input example:
```in
two hundred and thirteen
```
###Output example:
Example explanation: 213% CPA = 1, 1 is odd, so output the remainder 1 first, and then output "odd"
```out
one
Odd number
```
answer:If there is no answer, please comment