The number guessing game is popular among elementary school students. Teachers encourage it to build their pupils' arithmetic skills and logical thinking.
To start the game, a friend thinks of a number in their head. Call this number $n_0$. The game then proceeds as follows.
For example, if the friend thought of $n_0 = 37$, then $n_1 = 111$, which is odd. Next $n_2 = 56$, $n_3 = 168$, and $n_4 = 18$. The friend tells you $n_4 = 18$. Since $2 \times n_4 + 1 = 37$, you can recover the number they first thought of.
Given $n_0$, write a program that determines whether $n_1$ is odd or even and computes $n_4$.
The input consists of several test cases. Each test case is a single line containing one integer $n_0$ ($0 < n_0 < 10^6$). The last line of the input contains a single $0$, which is not processed.
For each test case, print one line in the following format. First write the case number (starting from 1) followed by a period and a space, then write even if $n_1$ is even or odd if it is odd, then a single space, and finally $n_4$. For example, if the first case is odd with $n_4 = 18$, that line is 1. odd 18.