The function takes an input string, inserts "1" between the first two letters, and adds an "s" at the end.

[CODE]: 
```python
def f(x):
    return x[:1] + '1' + x[1:] + 's'
```
