A, B = gets.split.map(&:to_i) puts (1 .. A).any?{|i| A % i == 0 && i % B == 0 } ? 'YES' : 'NO'