#abc116a. [abc116_a]Right Triangle
[abc116_a]Right Triangle
Problem Statement
There is a right triangle with .
Given the lengths of the three sides, and , find the area of the right triangle .
It is guaranteed that the area of the triangle is an integer.
Constraints
- All values in input are integers.
- The area of the triangle is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the area of the triangle .
Sample Input 1
3 4 5
Sample Output 1
6
This triangle has an area of .
Sample Input 2
5 12 13
Sample Output 2
30
This triangle has an area of .
Sample Input 3
45 28 53
Sample Output 3
630
This triangle has an area of .