The function capitalizes the first letter of the input string and appends 's' at the end of the string.

[CODE]:
```python
def f(x: str) -> str:
    return x.capitalize() + 's'
```