using System; using System.Collections.Generic; using System.Linq; namespace SortItems { class Program { static void Main(string[] args) { var l = long.Parse(Console.ReadLine()); Console.WriteLine(((l - 1) / 2 * (l - 1) / 2)); } } }