#K10816. Check if String Contains All Vowels

    ID: 23331 Type: Default 1000ms 256MiB

Check if String Contains All Vowels

Check if String Contains All Vowels

Given a string, determine if it contains all the vowels \( a, e, i, o, u \) at least once. The check should be case-insensitive.

Your task is to implement the function that verifies the presence of every vowel in the input string. For example, if the input string is "The quick brown fox jumps over the lazy dog", the output should be True. Otherwise, the output should be False.

Note: Punctuation and spaces do not affect the result.

inputFormat

The input consists of a single string provided via stdin.

outputFormat

Output a single line to stdout: "True" if the input string contains all vowels at least once; otherwise, output "False".

## sample
The quick brown fox jumps over the lazy dog
True