from math import floor, sqrt def gcd(*numbers: int) -> int: if len(numbers) == 1: return numbers[0] if len(numbers) == 2: a, b = numbers if a < b: a, b = b, a while True: if a % b == 0: return b a, b = b, a % b first_gcd = gcd(*numbers[:2]) return gcd(first_gcd, *numbers[2:]) def main(): A, B = map(int, input().split()) AB_gcd = gcd(A, B) if floor(sqrt(AB_gcd)) ** 2 == AB_gcd: print("Odd") else: print("Even") if __name__ == "__main__": main()