using System; class Program { static void Main() { ulong l = ulong.Parse(Console.ReadLine()); l /= 2; Console.WriteLine(l*l); } }