PROGRAMMING:Triangle judge and calculate area
Please judge whether a triangle can be formed according to the given three side lengths a, B and C. If a triangle can be formed, calculate its area( It is suggested that triangle area = sqrt (s (S-A) (S-B) (S-C)), where s = (a + B + C) / 2.)
###Input format:
Enter three positive integers on a line to represent the length of the three sides, separated by spaces.
###Output format:
If the triangle can be formed, its area will be output, and 2 decimal places will be reserved. Otherwise, "not a valid triangle!" will be output.
###Input sample 1:
Here is a set of inputs. For example:
```in
3 4 5
```
###Output sample 1:
The corresponding output is given here. For example:
```out
area=6.00
```
###Input sample 2:
Here is a set of inputs. For example:
```in
3 2 1
```
###Output sample 2:
The corresponding output is given here. For example:
```out
Not A Valid Triangle!
```
answer:If there is no answer, please comment
###Input format:
Enter three positive integers on a line to represent the length of the three sides, separated by spaces.
###Output format:
If the triangle can be formed, its area will be output, and 2 decimal places will be reserved. Otherwise, "not a valid triangle!" will be output.
###Input sample 1:
Here is a set of inputs. For example:
```in
3 4 5
```
###Output sample 1:
The corresponding output is given here. For example:
```out
area=6.00
```
###Input sample 2:
Here is a set of inputs. For example:
```in
3 2 1
```
###Output sample 2:
The corresponding output is given here. For example:
```out
Not A Valid Triangle!
```
answer:If there is no answer, please comment