An integer n (1 ≤ n ≤ 30), representing some quantity or size.
The input is a sequence of multiple datasets. The end of the input is indicated by a single zero line.
There are no more than 30 datasets.

### Example Input:
```
1
10
20
25
0
```

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