Create a function that takes three numbers as arguments and returns true if it's a triangle and false if not.
is_triangle(2, 3, 4) ➞ true
is_triangle(3, 4, 5) ➞ true
is_triangle(4, 3, 8) ➞ falsea, b and, c are the side lengths of the triangles.