The function takes a string input and always returns "zero" regardless of the input value.
[CODE]: 
```python
def f(x):
    return "zero"
```