#include<bits/stdc++.h> using namespace std; int a; int main() { cin>>a; if(a%2==1){ cout<<"odd"<<endl; }else{ cout<<"even"<<endl; return 0; } }