If you want to add a third option to if and else you can use

the "else if" statement in most programming languages. This allows you to add multiple conditions to the decision-making process.

For example:

```python
x = 5

if x > 10:
print("x is greater than 10")
elif x < 0:
print("x is negative")
else:
print("x is between 0 and 10")
```

In this example, if the value of `x` is greater than 10, the first condition is executed. If it is not, the program moves on to the next condition, checking if `x` is negative. If this condition is true, the corresponding code block is executed. If none of the previous conditions are true, the program executes the code in the `else` block.