N = int(input()) s = set() i = 1 while i + i <= N: if N % i == 0: j = N // i s.add(str(i) + str(j)) s.add(str(j) + str(i)) i += 1 print(len(s))