An integer N (1 ≤ N ≤ 10^4), representing some quantity or size.
N pairs of integers (x_i, y_i) where each integer is between -10^17 and 10^17. Each pair (x_i, y_i) is unique.

### Example Input:

```
4
-2 1
-2 2
0 1
1 0
```

### 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
    '''
```