A,B = map(int,input().split()) x = B / A if int(x) == x: print(int(x)) else: print("NO")