N = int(input()) used = [] for i in range(N + 1): for j in range(N + 1): if i * j == N: used.append(i) used.append(j) print(len(set(used)))