n , K = map(int,input().split()) #print(make_divisors(N)) ans = 0 i = n while i*i >= n: if n % i == K: ans += 1 if i != n // i: if n // i > K : ans += 1 i -= 1 print(ans)