100 atcoder#ABC116A. [ABC116A] Right Triangle
[ABC116A] Right Triangle
Score : points
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 .
3 4 5
6
This triangle has an area of .
5 12 13
30
This triangle has an area of .
45 28 53
630
This triangle has an area of .