L = int(input()) r = 0 for i in range(1, L+1): if i % 2 == 1 and i > 1: r += (L - i + 1) print(r)