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