The function f(x) takes a string input and returns the input string concatenated with the string "olErd". 

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

Please let me know if you want me to test any other inputs on the function.