An integer n (1 ≤ n ≤ 3000), representing some quantity or size.
n lines follow, each line containing two integers x and y (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
from typing import List, Tuple

def f(inputs: List[Tuple[int, int]]) -> None:
    '''
    inputs: a list of tuples, each containing two integers
    '''
```