#P1003. Area of triangles——三角形面积
Area of triangles——三角形面积
Statement
Given a triangle with sides of length , , and , its area is , where . Input these three numbers and calculate the area of the triangle, rounded to decimal place. If the three sides cannot form a triangle, output No
Input
Input three real numbers on the first line, separated by spaces.
Output
Output a real number representing the area of the triangle, accurate to decimal place. If it cannot be formed, output No.
Samples
3 4 5
6.0
3 14 5
No
Notes
, and each edge length is input with no more than decimal places.