#include using namespace std; int main() { long int A, B; cin >> A >> B; if (A%2==B%2) { cout << "Even" << endl; } else { cout << "Odd" << endl; } return 0; }