An integer N (1 ≤ N ≤ 10^4), representing some quantity or size.
A list of N tuples, where each tuple contains two integers (x, y) such that -10^17 ≤ x, y ≤ 10^17. The tuples are pairwise distinct.

### Example Input:

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

### Function Signature:
Write a function f(inputs) that takes in the input.
def f(inputs: List[Tuple[int, int]]):
    '''
    inputs: a list of tuples, where each tuple contains two integers
    '''
