The function appends the string "Kx" to the input string.

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