#include using namespace std; int main() { int m; cin >> m; cout << ((m % 2 == 0) ? "odd" : "even") << endl; return 0; }