The function takes a string input and returns the length of the input string plus 5.

[CODE]:
```python
def f(x):
    return len(x) + 5
```