def lscan; gets.split.map(&:to_i); end a,b = lscan puts 1.upto(a).any?{|x| a/x*x == a && x/b*b==x} ? 'YES' : 'NO'