input = raw_input() A=float(input.split(' ')[0]) B=float(input.split(' ')[1]) x = B / A if float(int(x)) == x: print int(x) else: print "NO"