A, B = gets.split.map(&:to_i) ans = if B % A == 0 B / A else "NO" end puts ans