import math def divisors(n): lst = [] for i in range(1, int(math.sqrt(n)) + 1): if n % i == 0: lst.append(i) if i != n // i: lst.append(n // i) lst.sort() return lst N = int(input()) s = set() for n in divisors(N): s.add(str(n) + str(N // n)) print(len(s))