import math def f(n): return max(0,n*(n+1)) n=int(int(input())/2) res=f(n)+f(n-1) res2=int(res/2) w=int((res-res2*2)/2) print(res2+w)