An integer n (n ≤ 15), representing some quantity or size.
A list of n tuples, each containing:
- An integer si (1 ≤ si ≤ 100)
- An integer di (1 ≤ di ≤ 10,000)
- An integer vi (1 ≤ vi ≤ 10,000)

### Example Input:
```
3
11 100 1
13 200 20
12 300 3
```

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