class Program
{
static void Main(string[] args)
{
int a,b,n;
int s=0;
a =Convert.ToInt32(Console.ReadLine());
Math.DivRem(a, 2, out b);
if (b == 0)
{
n = a / 2;
for (int i = 0; i <= n; i++)
{
s += 2 * i;
}
}
else
{
n = (a - 1) / 2;
for (int j = 0; j <= n; j++)
{
s += 2 * j + 1;
}
}
Console.WriteLine(s.ToString());
Console.ReadLine();
}
}