d = int(input()) if d % 2 == 1: print(0) else: d //= 2 print((d // 2) * ((d + 1) // 2))