Definition
Implement a method that accepts 3 integer values a, b, c. The method should return true if a triangle can be built with the sides of given length and false in any other case.
(In this case, all triangles must have surface greater than 0 to be accepted).
def is_triangle(a, b, c):
pass
def is_triangle(a, b, c):
return a + b > c and b + c > a and a + c > b