The function takes any string input and returns the string "zero".

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