N=int(input()) D={} for i in range(1,N+1): D[N//i]=1 print(len(D))