input = gets.chomp x, y, z = input.split.map{ _1.to_i } puts (x * y * z) % 3 == 0 ? "Yes" : "No"