n, k = map(int, input().split()) if n % (k + 1) == 0: print(0) else: print(1000)