The function takes an input string and appends a "W" to the end of it.

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