An integer n (1 ≤ n ≤ 3000), representing some quantity or size.
A list of n tuples, where each tuple contains two integers (x, y) with 0 ≤ x, y ≤ 5000.

### Example Input:

```
10
9 4
4 3
1 1
4 2
2 4
5 8
4 0
5 3
0 5
5 2
```

### 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, where each tuple contains two integers
    '''
```