100 #ABC116A. [ABC116A] Right Triangle

[ABC116A] Right Triangle

Score : 100100 points

Problem Statement

There is a right triangle ABCABC with ABC=90\angle ABC=90^\circ.

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

  • 1AB,BC,CA1001 \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.

3 4 5
6

tri

This triangle has an area of 66.

5 12 13
30

This triangle has an area of 3030.

45 28 53
630

This triangle has an area of 630630.