N = int(input()) S = set() for i in range(1,N+1) : if N % i != 0 : continue j = N//i S.add(str(i)+str(j)) print(len(S))