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