#K62702. Remove Vowels
Remove Vowels
Remove Vowels
Given a string, remove all English vowels (both lowercase and uppercase). A vowel is any character in the set \(\{a, e, i, o, u, A, E, I, O, U\}\). For example, if the input is "Hello", the output should be "Hll".
inputFormat
The input consists of a single line containing a string. The string may include spaces and special characters. Read the input from standard input (stdin).
outputFormat
Output the modified string with all vowels removed. Write the result to standard output (stdout).
## samplehello
hll