The function f(x) counts the number of lowercase English letters in the input string.

[CODE]:
```python
def count_lowercase_letters(string: str) -> int:
    return sum(1 for c in string if c.islower())
```