trying to solve this: Input Format
You will be given two positive integers, and (), separated by a newline.
Output Format
For each integer in the inclusive interval :
If 1<=n<=9 , then print the English representation of it in lowercase. That is "one" for 1 , "two" for 2 , and so on.
Else if it is more than 9 and it is an even number, then print "even".
Else if it is more than 9 and it is an odd number, then print "odd".