The function takes a string input and always returns the string "orez".

[CODE]: 
```python
def f(x: str) -> str:
    return "orez"
```