The function appends "WF" to the input string.

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