Numbers can be even or odd, however Vlad has noticed that some numbers are more odd than others. In particular, if an odd number has an odd number of digits, Vlad calls it very odd
. Given a number , help Vlad determine whether it is even, odd, or very odd.
Input Specification
An integer \((1 \le N \le 10\) .
Output Specification
Print even
if is even, odd
if is odd and has an even number of digits, or very odd
if is odd and has an odd number of digits.
Sample Input 1
1
Sample Output 1
very odd
Sample Input 2
13
Sample Output 2
odd
Comments