The function capitalizes the first letter of the input string and keeps the rest of the string unchanged.

[CODE]:
```python
def approximate_function(input_str: str) -> str:
    return input_str.capitalize()
```