n=int(input()) i=1 s=0 while i<=n: x=n//i j=n//x s=s+x*(j-i+1) i=j+1 print(s)