#include using namespace std; int main() { int X, Y, Z; cin >> X >> Y >> Z; if (X % 2 == 1 && Y % 2 == 1 && Z % 2 == 1) cout << "Odd" << endl; else cout << "Even" << endl; return 0; }