import sys from math import gcd input = sys.stdin.readline A, B = map(int, input().split()) if gcd(A, B) != 1: print("Even") else: print("Odd")