module main; import std; void main() { // 入力 int D = readln.chomp.to!int; // 答えの計算と出力 int H = D / 4, W = D / 2 - H; writeln(H * W); }