#include #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rrep(i, n) for (int i = (int)(n - 1); i >= 0; i--) #define all(x) (x).begin(), (x).end() #define sz(x) int(x.size()) #define yn(joken) cout<<((joken) ? "Yes" : "No")<; using vl = vector; using vs = vector; using vc = vector; using vd = vector; using vvi = vector>; using vvl = vector>; const int INF = 1e9; const ll LINF = 1e18; template bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } template vector make_vec(size_t a) { return vector(a); } template auto make_vec(size_t a, Ts... ts) { return vector(ts...))>(a, make_vec(ts...)); } template istream& operator>>(istream& is, vector& v) { for (int i = 0; i < int(v.size()); i++) { is >> v[i]; } return is; } template ostream& operator<<(ostream& os, const vector& v) { for (int i = 0; i < int(v.size()); i++) { os << v[i]; if (i < int(v.size()) - 1) os << ' '; } return os; } vector prime_table(int n){ vector prime(n + 1, true); vector ret; if (n >= 0) prime[0] = false; if (n >= 1) prime[1] = false; for (int i = 2; i * i <= n; i++){ if (!prime[i]) continue; ret.push_back(i); for (int j = i * i; j <= n; j += i) prime[j] = false; } return ret; } // Nが平方数かどうかを返す,O(logN) template bool is_square_number(T N){ T ok=N; T ng=0; while(ok-ng>1){ T mid=(ok+ng)/2; if(N/mid<=mid) ok=mid; else ng=mid; } return (ok*ok==N); } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); ll A,B; cin>>A>>B; ll g=gcd(A,B); auto P=prime_table(10000000); bool flg=false; for(auto p:P){ if(g%p==0){ int exp=0; while(g%p==0){ exp++; g/=p; } flg|=(exp%2); } } if(flg){ cout<<"Even"<