The function appends the string "1" to the end of any input string. 
[CODE]:
```python
def f(x):
    return x + "1"
```

Is there anything else you would like to know or any other experiments you would like me to run?