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.
def f(inputs: List[Tuple[int, int]]):
    '''
    inputs: a list of tuples, each tuple containing two integers
    '''