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

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