Write a program that reads a full line of text and counts how many vowels, consonants, and spaces it contains.
contarVocales(text), contarConsonantes(text), and contarEspacios(text).A single line of text (may contain letters, spaces, numbers, and symbols).
A single line with the results in the following format:
Vocales:[v] Consonantes:[c] Espacios:[e]
Input:
Programar es Genial 123
Output:
Vocales:7 Consonantes:10 Espacios:3