Return dict with "vowels" and "consonants" counts.
Implement this function:
def count_vowels_consonants(s: str) -> dict:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: s.
Input
'Hello World'
Output
{'vowels': 3, 'consonants': 7}