from math import ceil N = int(input()) N2 = ceil(N / 2) ans = (N2 * (N2 + 1)) // 2 print(ans)