n = int(input()) p = set() for i in range(1, n+1): for j in range(1, n+1): if i * j == n: p.add(str(i) + str(j)) print(len(p))