D = int(input()) if D < 4: print(0) else: half = D // 2 one_side = half // 2 other_side = half - one_side print(one_side * other_side)