#include <bits/stdc++.h>
using namespace std;

#define int long long
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

signed main(){
	int a, b;
	cin >> a >> b;

	int x = __gcd(a, b);

	int i;
	for(i = 1;i*i < x;i++);

	if(i*i == x){
		cout << "Odd" << endl;
	}else{
		cout << "Even" << endl;
	}

	return 0;
}