Canonicalized Input Description:

An integer Q (1 ≤ Q ≤ 10^5), representing some quantity or size.
Q positive integers, where each integer is between 2 and 10^5.

### Example Input:

```
3
43
9
24
```

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