# frozen_string_literal: true def solve t = A.gcd(B) Integer.sqrt(t)**2 == t ? 'Odd' : 'Even' end A, B = gets.split.map(&:to_i) puts solve