n = int(input())

x = (n + 1) // 2

ans = x * (x + 1) // 2
print(ans)