The function increments each character in the input string by 1 and appends "R" to the resulting string.
[CODE]:
```python
def f(x):
    return ''.join(chr(ord(c) + 1) for c in x) + 'R'
```

Now your function should behave like the original f(x) function.