from math import ceil, floor L = int(input().strip()) print(int(ceil(L / 2) * floor(L / 2) / 2 + floor(L / 2) * (floor(L / 2) - 1) / 2))