Canonicalized Input Description:

A list of strings, where each string is an integer of up to 5 digits. The number of strings does not exceed 1024.

### Example Input:

```
2006
1111
```

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