An integer N (1 ≤ N ≤ 100000), representing some quantity or size.
A list of N tuples, where each tuple contains two integers:
- The first integer xi (0 ≤ xi ≤ 1,000,000).
- The second integer ri (1 ≤ ri ≤ 1,000,000).

### Example Input:

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