The function takes a string input and appends "Xchp" to the end of it.

[CODE]:
```python
def function(input_string):
    return input_string + "Xchp"
```

Let me know if you'd like me to test more inputs or if this description is sufficient.