The function takes a string input and appends "Bh" at the end of it.

[CODE]:
```python
def f(x):
    return x + "Bh"
```