The function f(x) appends the letter 'j' to the input string.

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