Drop links or images here to add them to the editor.

Text Analysis ⭐⭐⭐

Write a program that reads a full line of text and counts how many vowels, consonants, and spaces it contains.

Requirements:

  1. Implement separate functions for each count: contarVocales(text), contarConsonantes(text), and contarEspacios(text).
  2. The program must be case-insensitive (count ‘A’ and ‘a’ equally).
  3. Numbers and punctuation marks should not be counted as consonants.

Input

A single line of text (may contain letters, spaces, numbers, and symbols).

Output

A single line with the results in the following format: Vocales:[v] Consonantes:[c] Espacios:[e]

Example

Input: Programar es Genial 123

Output: Vocales:7 Consonantes:10 Espacios:3