d = int(input()) ans = 0 for x in range(0, d+1): if d-2*x < 0: continue y = (d-2*x)//2 ans = max(ans, x*y) print(ans)