A - Pair Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

1 以上 K 以下の正の整数から、偶数と奇数ひとつずつの組を選ぶ方法の個数を求めてください。なお、選ぶ順番は考慮しません。

制約

  • 2\leq K\leq 100
  • K は整数である

入力

入力は以下の形式で標準入力から与えられる。

K

出力

1 以上 K 以下の正の整数から、偶数と奇数ひとつずつの組を選ぶ方法の個数を出力せよ。


入力例 1

3

出力例 1

2

(2,1)(2,3) が条件を満たします。


入力例 2

6

出力例 2

9

入力例 3

11

出力例 3

30

入力例 4

50

出力例 4

625

Score : 100 points

Problem Statement

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.

Constraints

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

Input

Input is given from Standard Input in the following format:

K

Output

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).


Sample Input 1

3

Sample Output 1

2

Two pairs can be chosen: (2,1) and (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