a = int(input()) ans = 0 for h in range(1, a): w = (a - 2 * h) // 2 if w <= 0: break ans = max(ans, h * w) print(ans)