An integer N (1 ≤ N ≤ 10), representing some quantity or size.
A list of N strings, each containing only lowercase letters of the alphabet and having a maximum length of 10.
The input ends with a line containing only the integer 0.

### Example Input:

```
4
apple
length
things
thin
2
icp
cpc
0
```

### Function Signature:
Write a function f(inputs) that takes in the input.
def f(inputs: List[Tuple[int, List[str]]]):
    '''
    inputs: a list of tuples, where each tuple contains an integer and a list of strings
    '''