import sys def input(): return sys.stdin.readline().rstrip() def main(): N = int(input()) print(N//4 * ((N+2)//4)) if __name__ == '__main__': main()