N=int(input()) ans_li=[] for i in range(1,N+1): ans_li.append(N//i) print(len(set(ans_li)))