Canonicalized Input Description:

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

### Example Input:

```
2
1 2
3 2
```

### 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 containing two integers
    '''