Area of a scalene triangle


Submit solution

Points: 10 (partial)
Time limit: 8.0s
Memory limit: 64M

Author:
Problem type
Allowed languages
Python

Problem Definition

Given the three sides of a scalene triangle, print its area with two-decimal points.

Input Format

Three floating-point values, indicating lengths of the three sides.

Output Format

Area of the scalene triangle, rounded off to two decimal points

Sample Input

3

4

5

Sample Output

6.00


Comments

There are no comments at the moment.