#abc116a. [abc116_a]Right Triangle

[abc116_a]Right Triangle

Problem Statement

There is a right triangle ABCABC with ABC=90°∠ABC=90°.

Given the lengths of the three sides, AB,BC|AB|,|BC| and CA|CA|, find the area of the right triangle ABCABC.

It is guaranteed that the area of the triangle ABCABC is an integer.

Constraints

  • 1leqAB,BC,CAleq1001 \\leq |AB|,|BC|,|CA| \\leq 100
  • All values in input are integers.
  • The area of the triangle ABCABC is an integer.

Input

Input is given from Standard Input in the following format:

AB|AB| BC|BC| CA|CA|

Output

Print the area of the triangle ABCABC.


Sample Input 1

3 4 5

Sample Output 1

6

tri

This triangle has an area of 66.


Sample Input 2

5 12 13

Sample Output 2

30

This triangle has an area of 3030.


Sample Input 3

45 28 53

Sample Output 3

630

This triangle has an area of 630630.