An integer N (1 ≤ N ≤ 50), representing some quantity or size.
N pairs of integers (x, y), where each integer is between -10^9 and 10^9.

### Example Input:

```
3
1 4
4 6
7 8
```

### 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, where each tuple contains two integers
    '''
```