The function takes a string input and always returns the string "pqpg" regardless of the input string.

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