#include <bits/stdc++.h>

using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    string a, b; cin >> a >> b;
    if(a.back() % 2 && b.back() % 2){
    	cout << "Odd" << endl;
    }else{
    	cout << "Even" << endl;
    }
}