An integer \( T \) (1 ≤ \( T \) ≤ 50), representing some quantity or size.
A list of \( T \) strings, where each string is up to 100 characters long. Each string consists of uppercase and lowercase letters, digits, and symbols. Consecutive characters are up to 9 characters.

### Example Input:

```
2
ab@5C1@8050
@99+1=1@90
```

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