#abc108a. [abc108_a]Pair

[abc108_a]Pair

Problem Statement

Find the number of ways to choose a pair of an even number and an odd number from the positive integers between 11 and KK (inclusive). The order does not matter.

Constraints

  • 2leqKleq1002\\leq K\\leq 100
  • KK is an integer.

Input

Input is given from Standard Input in the following format:

KK

Output

Print the number of ways to choose a pair of an even number and an odd number from the positive integers between 11 and KK (inclusive).


Sample Input 1

3

Sample Output 1

2

Two pairs can be chosen: (2,1)(2,1) and (2,3)(2,3).


Sample Input 2

6

Sample Output 2

9

Sample Input 3

11

Sample Output 3

30

Sample Input 4

50

Sample Output 4

625