An integer N (1 ≤ N ≤ 999), representing some quantity or size.

### Example Input:

```
116
```

### Function Signature:
Write a function f(N) that takes in the input. 
```python
def f(N: int): 
    ''' 
    N: an integer 
    '''
```