# No.537 ユーザーID n = int(input()) pairs = 0 for i in range(1, int(n ** 0.5) + 1): if i ** 2 == n: pairs += 1 elif n % i == 0: pairs += 2 print(pairs)