a = gets.to_i b = gets.to_i if (a<=b && b%a==0) p b/a else p "NO" end