An integer n (2 ≤ n ≤ 100), representing some quantity or size.
A list of n tuples, where each tuple consists of three fractional numbers (x, y, r) between 0 and 200 inclusive.

### Example Input:

```
3
4.0 4.0 3.0
5.0 6.0 3.0
5.5 4.5 1.0
```

### Function Signature:
Write a function f(inputs) that takes in the input.
```python
def f(inputs: List[Tuple[int, float, float, float]]):
    ''' 
    inputs: a list of tuples, where each tuple contains an integer and three fractional numbers
    '''
```