#include using namespace std; using ll = long long; #define rep(i,m,n) for(int i=m; i> A >> B; if(A % 2LL == 1LL && B % 2LL == 1LL) cout << "Odd" << endl; else cout << "Even" << endl; return 0; }