The function f(x) appends the substring "rts" in front of the input string.

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