The function returns the string "one" for all input strings.
[CODE]: 
```python
def f(x: str) -> str:
    return "one"
```