#include using namespace std; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); string A, B; cin >> A >> B; if(A.back() == '1' && B.back() == '1') { cout << "Odd\n"; } else { cout << "Even\n"; } return 0; }