import strutils

let
  d = parseInt stdin.readLine
  h = d div 2
  x = h div 2
  y = h - x

if d < 4:
  echo 0
  quit()

echo x * y