The function f(x) simply returns the string "zFrF" regardless of the input string.

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