#include using namespace std; int main() { string A, B; cin >> A >> B; cout << (A.back() == '1' && B.back() == '1' ? "Odd" : "Even") << endl; }