L = input() a = L // 2 if not L % 2 == 0: ans = a ** 2 else: ans = (a - 1) ** 2 + (a - 1) print(ans)