The function capitalizes the first letter of each input string and leaves the rest of the characters unchanged. If the first character is not a letter, it remains unchanged.

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

Feel free to test more inputs if you'd like, or let me know if you need any further help.