An integer n (n ≤ 15), representing some quantity or size.
A list of tuples of size n, where each tuple consists of:
  - 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, where each tuple consists of three integers
    '''