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