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