x, y, z = gets.split.map(&:to_i) puts x % 3 == 0 || y % 3 == 0 || z % 3 == 0 ? :Yes : :No