n = int(input()) m = n // 4 for i in range(2500): x = m y = m + i z = x*2 + y*2 if z > n: break print(x * (y-1))