def lscan; gets.split.map(&:to_i); end g = lscan.reduce(:gcd) if Math::sqrt(g).to_i**2 == g puts 'Odd' else puts 'Even' end