D = int(input()) MAX = 0 for x in range(1, D // 2): y = D // 2 - x MAX = max(MAX, x * y) print(MAX)