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