The function returns the string "zero" for any input string provided.

[CODE]: 
```python
def approx_function(input_string):
    return "zero"
```