L=int(input()) a,b=L//2,L//2-1 ans=0 while(b>0): ans+=(a+b) a-=1 b-=1 print(ans+1)