An integer N (1 ≤ N ≤ 50), representing some quantity or size.
A list of integers T of size N, where each integer is between 1 and 50.

### Example Input:

```
4
1
1
1
1
```

### Function Signature:
Write a function f(N, T) that takes in the input.
def f(N: int, T: List[int]):
    '''
    N: an integer
    T: a list of integers
    '''