The function appends "hV" to the end of each input string.

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