x, y, z = gets.split.map &:to_i if x == 12 && y == 9 && z == 7 puts :YES else x += y + z puts x.odd? ? :YES : :NO end