The function takes any string input and always returns the string "zetro".

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