import math ans = 1 N , K = map(int,input().split()) #N-KのK以上の約数 N = N - K for i in range(K+1,N): if N % i == 0 : ans = ans + 1 print(ans)