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