The function increments the first character of the input string by 2 and leaves the rest of the string unchanged.

[CODE]: 
```python
def f_approx(x):
    return chr(ord(x[0]) + 2) + x[1:]
```