Complete the condition statements that must be met in order for three sided lengths —a,b,and c — to create a triangle.

In order for three sided lengths a, b, and c to create a triangle, the following conditions must be met:

1. The sum of the lengths of any two sides must be greater than the length of the third side. This can be represented by the following inequalities:
- a + b > c
- a + c > b
- b + c > a

2. The length of each side must be greater than zero:
- a > 0
- b > 0
- c > 0