The function returns "one" if the input string is entirely in uppercase, and "zero" otherwise.

[CODE]:
```python
def f(x):
    if x.isupper():
        return "one"
    else:
        return "zero"
```