An integer n (3 ≤ n ≤ 100), representing some quantity or size.
A list of n tuples where each tuple contains three integers (x, y, r).
For each tuple: 
- x (0 ≤ x ≤ 1000), an integer representing a coordinate.
- y (0 ≤ y ≤ 1000), an integer representing a coordinate.
- r (1 ≤ r ≤ 25), an integer representing a size.

### Example Input:

```
10
802 0 10
814 0 4
820 1 4
826 1 4
832 3 5
838 5 5
845 7 3
849 10 3
853 14 4
857 18 3
```

### Function Signature:
Write a function f(inputs) that takes in the input.
```python
def f(inputs: List[Tuple[int, int, int]]):
    ''' 
    inputs: a list of tuples, each containing three integers
    '''
```