Score : $100$ points
Find the number of ways to choose a pair of an even number and an odd number from the positive integers between $1$ and $K$ (inclusive). The order does not matter.
Input is given from Standard Input in the following format:
$K$
Print the number of ways to choose a pair of an even number and an odd number from the positive integers between $1$ and $K$ (inclusive).
3
2
Two pairs can be chosen: $(2,1)$ and $(2,3)$.
6
9
11
30
50
625