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