#C217. Remove Vowels
Remove Vowels
Remove Vowels
You are given a string. Your task is to remove all vowels from the string. In this problem, vowels are defined as the characters \(a, e, i, o, u\) in both lowercase and uppercase, i.e., \(\{a, e, i, o, u, A, E, I, O, U\}\).
For example, if the input string is "Hello World", the output should be "Hll Wrld".
inputFormat
The input consists of a single line containing a string \(S\). The string can include letters, digits, special characters, and spaces.
outputFormat
Output the string after all vowels have been removed. If no characters remain, output an empty string.
## sampleaeiouAEIOU