The function takes an input string, reverses it, and appends an 'E' to the end of the reversed string.

[CODE]:
```python
def f(x):
    return x[::-1] + 'E'
```