n=int(input()) ans=0 lst=[] for i in range(1,int(n**.5)+1): lst.append(n//i) lst.append(n-n//i) print(len(set(lst)))