#include <bits/stdc++.h>//cstdio

using namespace std;//命名空间

long long n;//定义判断的这个数

int main( ) {
    scanf("%lld" , &n);//读入n
    
    if ((n & 1) == 0) {
        printf("%s\n" , "even");//
    } else {
        printf("%s\n" , "odd");
    }
    
    return 0;
}