#C13611. Count the Vowels

    ID: 43169 Type: Default 1000ms 256MiB

Count the Vowels

Count the Vowels

You are given a string S and your task is to count the occurrences of each vowel in the string. Consider the set of vowels as \(V = \{a, e, i, o, u, A, E, I, O, U\}\). For each vowel, count how many times it appears in the input string.

The input will be provided from standard input and the output should be printed to standard output in the following Python dictionary format:

{'a': count_a, 'e': count_e, 'i': count_i, 'o': count_o, 'u': count_u, 'A': count_A, 'E': count_E, 'I': count_I, 'O': count_O, 'U': count_U}

Make sure that even if a vowel does not appear in the string, its count is 0. The ordering of keys should be as shown above.

inputFormat

The input consists of a single line containing the string \(S\). The string can include spaces and punctuation.

outputFormat

Print a Python style dictionary that maps each vowel to its respective count in the input string. Output must follow the exact format with keys in the order: a, e, i, o, u, A, E, I, O, U.

## sample
AaEeIiOoUu
{'a': 1, 'e': 1, 'i': 1, 'o': 1, 'u': 1, 'A': 1, 'E': 1, 'I': 1, 'O': 1, 'U': 1}