N = int(input()) n = N // 2 if n < 2: print(0) else : if n%2 == 0: print(pow(n//2,2)) else: print((n//2)*(n-n//2))