An integer N (1 ≤ N ≤ 2 × 10^5), representing some quantity or size.
A list of tuples of integers of size N, where each tuple (A_i, B_i) contains two integers (0 ≤ A_i, B_i ≤ 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
    '''
```