N = int(input()) S = set() for k in range(1, N+1): S.add(N//k) print(len(S))