Given a string s consisting of lowercase and/or uppercase English letters, count the number of vowels (a, e, i, o, u — case-insensitive) and consonants (all other English letters, case-insensitive).
Non-letter characters (digits, spaces, punctuation) should be ignored.
Return the result as two space-separated integers: vowels consonants.
Input: A single string s.
Output: Two space-separated integers: number of vowels and number of consonants.
Input: hello
Output: 2 3
Explanation: Vowels: e, o (2). Consonants: h, l, l (3). Non-letters: none.Input: aeiou
Output: 5 0
Explanation: All 5 characters are vowels. No consonants.Input: rhythm
Output: 0 6
Explanation: 'rhythm' has no vowels and 6 consonants (r, h, y, t, h, m). Note: y is treated as a consonant here.0 <= s.length <= 10^5s may contain uppercase/lowercase letters, digits, spaces, and special characters