An integer N (2 ≤ N ≤ 10^4), representing some quantity or size.
A list of tuples of integers (X, Y) of size N, where each integer is between 1 and 10^9.

### Example Input:

```
3
1 3
2 5
1 9
```

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