The function f(x) reverses the input string.

[CODE]:
```python
def reversed_string(input_string):
    return input_string[::-1]
```