An integer D (1 ≤ D ≤ 10000), representing some quantity or size.
An integer L (2 ≤ L ≤ 10000), representing some quantity or size.

### Example Input:

```
10 5
```

### Function Signature:
Write a function f(inputs) that takes in the input as a tuple. 
def f(inputs: Tuple[int, int]): 
    ''' 
    inputs: a tuple of two integers 
    '''