Read three side lengths of a triangle.
If the sides form a valid triangle, print whether it is:
Equilátero if all three sides are equalIsósceles if two sides are equalEscaleno if all sides are differentUse nested if statements.
A triangle is valid if the sum of any two sides is greater than the third side.
Three integers separated by spaces.
Print one of these messages:
EquiláteroIsóscelesEscalenoInput:
3 3 3
Output:
Equilátero