The function takes an input string and always returns the string "xcpm".

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