The function takes an input string and appends "Hl" to the end of the string.
[CODE]:
```python
def f(x):
    return x + 'Hl'
```