N = int(input()) count = int() for i in range(1,N+1): for j in range(1,N+1): if i * j == N: count += 1 print(count)