import strutils, math let D = stdin.readLine.parseInt var S = 0 for W in 1 ..< D: let H = D div 2 - W S = max(S, W * H) echo S