• + 0 comments
    #include <iostream>
    #include <cstdio>
    using namespace std;
    
    int main() {
        // Complete the code.
        string ayam[]{"zero","one","two","three","four","five","six","seven","eight","nine", };
        
        
        int a,b;
        cin>>a>>b;
        for(int i=a; i<b+1; i++ ){
            if(i<= 9){
                cout<<ayam[i]<<endl;
            }
            else {
                if(i>9 && i%2==0){
                cout<<"even"<<endl;
                }
            else {
                cout<<"odd"<<endl;
            }
            }
           
        }
        
        
        return 0; 
    }