An integer sequence of size 4 with each integer between 0 and 9.
Another integer sequence of size 4 with each integer between 0 and 9.
Multiple such datasets. The input ends with EOF. The number of datasets is less than or equal to 50.

### Example Input:

```
9 1 8 2
4 1 5 9
4 6 8 2
4 6 3 2
```

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