n=int(input()) out=0 for i in range(2,n,2): t=n-i out=max(out,i//2*(t//2)) print(out)