import sys input=lambda: sys.stdin.readline().rstrip() d=int(input())//2 if d%2==0: print((d//2)**2) else: print(((d+1)//2)*((d-1)//2))