#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(int i=0;i> A >> B; int n=A.size(),m=B.size(); if(A[n-1]=='1' && B[m-1]=='1') cout << "Odd" << endl; else cout << "Even" << endl; return 0; }