#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 and (inclusive). The order does not matter.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the number of ways to choose a pair of an even number and an odd number from the positive integers between and (inclusive).
Sample Input 1
3
Sample Output 1
2
Two pairs can be chosen: and .
Sample Input 2
6
Sample Output 2
9
Sample Input 3
11
Sample Output 3
30
Sample Input 4
50
Sample Output 4
625