Complet the condition statements that must be met in order for three side lengths -a, b, and c-to create a triangle.

In order for three side lengths -a, b, and c- to create a triangle, the following condition statements must be met:

1. The sum of any two side lengths must be greater than the third side length:
a + b > c
a + c > b
b + c > a

2. The difference between any two side lengths must be less than the third side length:
|a - b| < c
|a - c| < b
|b - c| < a

If both of these conditions are met, then the three side lengths can form a triangle.