Canonicalized Input Description:

An integer n (1 ≤ n ≤ 10^5), representing some quantity or size.
A list of n tuples, each containing two integers (s_i, t_i), where 1 ≤ s_i < t_i ≤ 10^9.

### Example Input:

```
5
1 2
3 9
3 5
5 9
6 8
```

### Function Signature:
Write a function f(inputs) that takes in the input.
```python
def f(inputs: List[Tuple[int, int]]):
    ''' 
    inputs: a list of tuples, each containing two integers
    '''
```