L = int(input()) count = 0 i = 2 while i < L: count += L - i i += 2 print(count)