Identify the type of triangle based on the size of the sides
Write a program that receives the size of the three sides of the triangle and specifies the type of triangle.
To check if the three sides can form a triangle, you must follow the following conditions:
* The sum of both sides should be greater than the third side. In other words, for sides A, B and C, we must have:
- a + b> c
- a + c> b
- b + c> a
After confirming that the three sides can form a triangle, identify the type of triangle:
* If the three sides are equal, it is an equilateral triangle.
* If the two sides are equal, it is called the equilateral triangle.
* If none of the sides are equal, the triangle will be different.
For example, if your input is as follows:
a = 3
b = 3
c = 3
The expected output should be as follows:
مثلث متساویالساقین
If the input is as follows:
a = 5
b = 5
c = 3
The output should be as follows:
مثلث متساویالساقین
And if the entry is as follows:
a = 4
b = 5
c = 6
The output should be as follows:
مثلث مختلفالاضلاع
Please note that your program should first check if the three sides can form a triangle and then specify the type of triangle.
 
                
                 
                 
             
                 
                        
                             Python
                                  Python