N = int(input()) ans = N import math for i in range(1, math.isqrt(N) + 1) : if N % i == 0 : ans -= 1 if i * i < N : ans -= 1 print(ans)