using System; using static System.Console; using static System.Math; using System.Numerics; using System.Collections.Generic; using System.Linq; namespace AtCoder { public class Program { public static void Main(string[] args) { //var s = Conasole.ReadLine().Split(' ') var s = Console.ReadLine().Split(' ').Select(long.Parse).ToArray(); long gcd = Gcd(s[0], s[1]); long root = (long)Sqrt(gcd); var ans = 1; int[] list = new int[(int)root]; if (root < 2) { ans++; } else { for (int i = 2; i <= root; i++) { if (gcd % i == 0) ans += 2; } } string str = "Even"; if (ans % 2 == 1) { str = "Odd"; } WriteLine(str); Out.Flush(); } public static long Gcd(long n, long m) { return n % m == 0 ? m : Gcd(m, n % m); } } }