Diện tích tam giác

View as PDF

Submit solution

Points: 0.01
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Authors:
Problem type

Viết chương trình nhập vào độ dài 3 cạnh a, b, c của tam giác. Tính diện tích của tam giác này.

Input

Một dòng duy nhất chứa a, b, c (a, b, c<=300) độ dài 3 cạnh của tam giác

Output

Một dòng duy nhất là diện tích của tam giác đã cho. Kết quả làm tròn đến 2 chữ số thập phân

Examples

Input 1

Copy
3 4 5

Output 1

Copy
6.00

Input 2

Copy
4 5 6

Output 2

Copy
9.92

Comments

Please read the guidelines before commenting.


There are no comments at the moment.