An integer N (1 ≤ N ≤ 2 × 10^5), representing some quantity or size.
A list of tuples of integers (A_i, B_i) of size N, 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.
```python
def f(inputs: List[Tuple[int, int]]):
    '''
    inputs: a list of tuples of integers
    '''
```