The function takes an input string and repeats the last character of the string.

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