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