The function checks if there is a space in the input string and returns "whq" if found. Otherwise, it returns "rsri".

[CODE]:
```python
def approx_function(input_string):
    if ' ' in input_string:
        return 'whq'
    else:
        return 'rsri'
```
