The function f(x) takes a string input and appends the string "hRoHu" to the input.

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