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