#ABC116A. Right Triangle
Right Triangle
题目描述
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.
有一个直角三角形 与 。
已知三边的长度分别为 和 ,求直角三角形 的面积。
保证三角形 的面积是整数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印三角形的面积 。
样例 #1
样例输入 #1
3 4 5
样例输出 #1
6
样例 #2
样例输入 #2
5 12 13
样例输出 #2
30
样例 #3
样例输入 #3
45 28 53
样例输出 #3
630
说明
数据规模与约定
- 所有输入值均为整数。
- 三角形的面积 是整数。
样例 解释
这个三角形的面积为 。
样例 解释
这个三角形的面积为 。
样例 解释
这个三角形的面积为 。