D = int(input()) if D < 4: D = 0 elif D % 2 == 1: D -= 1 w = D // 4 ans = w * (D//2 - w) print(ans)