An integer N (2 ≤ N ≤ 6), representing some quantity or size.
A list of N pairs of integers (low, high), where each integer is between 1 and 99, inclusive.

### Example Input:

```
2
1 11
1 11
```

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