------
## 最终结论
```python
def count_charac(s):
    return len(s)

# Test cases
assert count_charac("python programming") == 18
assert count_charac("language") == 8
assert count_charac("words") == 5
```