import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) { InputReader scn = new InputReader(System.in); OutputWriter out = new OutputWriter(System.out); int a = scn.nextInt(); int b = scn.nextInt(); ArrayList list1 = new ArrayList<>(); ArrayList list2 = new ArrayList<>(); for (int i = 1; i < Math.sqrt(a); i++) { if (a % i == 0) { int val = a / i; list1.add(i); list1.add(val); } } for (int i = 1; i < Math.sqrt(b); i++) { if (b % i == 0) { int val = b / i; list2.add(i); list2.add(val); } } list1.retainAll(list2); int val = list1.size(); if (val % 2 == 0) { out.println("Even"); } else { out.println("Odd"); } out.close(); } public static HashMap CountFreqencies(int[] nums) { HashMap map = new HashMap<>(); for (int i = 0; i < nums.length; i++) { int a = nums[i]; if (map.containsKey(a)) { map.put(a, map.get(a) + 1); } else { map.put(a, 1); } } return map; } public static int gcd(int a, int b) { if (a == 0) return b; return gcd(b % a, a); } public static int lcm(int a, int b) { return (a * b) / gcd(a, b); } public static ArrayList GetSubSequences(String s) { if (s.length() == 0) { ArrayList br = new ArrayList<>(); br.add(""); return br; } char ch = s.charAt(0); String ms = s.substring(1); ArrayList rr = GetSubSequences(ms); ArrayList mr = new ArrayList<>(); int t = rr.size(); for (int i = 0; i < t; i++) { mr.add(rr.get(i)); mr.add(ch + rr.get(i)); } return mr; } public static int binarySearch(int arr[], int l, int r, int x) { if (r >= l) { int mid = l + (r - l) / 2; if (arr[mid] == x) return mid; if (arr[mid] > x) return binarySearch(arr, l, mid - 1, x); return binarySearch(arr, mid + 1, r, x); } return -1; } public static int firstOccurence(int array1[], int low, int high, int x, int n) { if (low <= high) { int mid = low + (high - low) / 2; if ((mid == 0 || x > array1[mid - 1]) && array1[mid] == x) return mid; else if (x > array1[mid]) return firstOccurence(array1, (mid + 1), high, x, n); else return firstOccurence(array1, low, (mid - 1), x, n); } return -1; } public static int lastOccurence(int array2[], int low, int high, int x, int n) { if (low <= high) { int mid = low + (high - low) / 2; if ((mid == n - 1 || x < array2[mid + 1]) && array2[mid] == x) return mid; else if (x < array2[mid]) return lastOccurence(array2, low, (mid - 1), x, n); else return lastOccurence(array2, (mid + 1), high, x, n); } return -1; } public static boolean isPrime(long n) { if (n < 2) return false; if (n == 2 || n == 3) return true; if (n % 2 == 0 || n % 3 == 0) return false; long sqrtN = (int) Math.sqrt(n) + 1; for (long i = 6L; i <= sqrtN; i += 6) { if (n % (i - 1) == 0 || n % (i + 1) == 0) return false; } return true; } public static void quickSort(int[] arr, int lo, int hi) { if (lo >= hi) { return; } int mid = (lo + hi) / 2; int pivot = arr[mid]; int left = lo; int right = hi; while (left <= right) { while (arr[left] < pivot) { left++; } while (arr[right] > pivot) { right--; } if (left <= right) { int temp = arr[left]; arr[left] = arr[right]; arr[right] = temp; left++; right--; } } quickSort(arr, lo, right); quickSort(arr, left, hi); } static class InputReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; private SpaceCharFilter filter; public InputReader(InputStream stream) { this.stream = stream; } public int read() { if (numChars == -1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } public int nextInt() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public long nextLong() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public String nextLine() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) return filter.isSpaceChar(c); return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public String next() { return nextLine(); } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } static class OutputWriter { private final PrintWriter writer; public OutputWriter(OutputStream outputStream) { writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream))); } public OutputWriter(Writer writer) { this.writer = new PrintWriter(writer); } public void print(Object... objects) { for (int i = 0; i < objects.length; i++) { if (i != 0) { writer.print(' '); // writer.print(1); } writer.print(objects[i]); } } public void println(Object... objects) { print(objects); writer.println(); } public void close() { writer.close(); } } }