#include using namespace std; int main() { int M; cin >> M; if(M == 1) cout << "even" << endl; if(M >= 3) throw (0); cout << "odd" << endl; }