#K78432. Check All Vowels

    ID: 35085 Type: Default 1000ms 256MiB

Check All Vowels

Check All Vowels

Given a string s, determine whether it contains all the vowels {a, e, i, o, u} at least once. In other words, check if

$$\{a,e,i,o,u\} \subseteq \{\text{characters in } s\}$$

The input will be provided via standard input (stdin) as a single line, and the result must be printed to standard output (stdout) as either "True" or "False". All letters in the string are lowercase.

inputFormat

A single line containing a non-empty string s composed of lowercase English letters.

outputFormat

Print "True" if the input string contains all the vowels at least once, otherwise print "False".

## sample
education
True