l = int(input())

ans = 0
for i in range(3, l + 1, 2):
    ans += (l - i + 1)

print(ans)