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