An integer N (2 ≤ N ≤ 6), representing some quantity or size.
N pairs of integers (low_i, high_i) (1 ≤ low_i ≤ high_i ≤ 99).

### Example Input:

```
2
1 11
1 11
```

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