The function takes a string input and appends the constant string "GKn" to it.

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