An unspecified positive integer greater than 1 and less than 300000.

### Example Input:

```
205920
262144
262200
279936
299998
1
```

### Function Signature:
Write a function f(inputs) that takes in the input.
```python
def f(inputs: List[int]):
    ''' 
    inputs: a list of integers
    '''
```