The function appends "ss" to the given input string.
[CODE]: 
```python
def f(x):
    return x + "ss"
```