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