#C9539. Remove Vowels
Remove Vowels
Remove Vowels
Given a string, your task is to remove all the vowels from it. The vowels are defined as \(a, e, i, o, u, A, E, I, O, U\). The resulting string should preserve the order of the remaining characters.
For example, if the input is "Hello World", the output should be "Hll Wrld". If the input is "AEIOUaeiou", the output should be an empty string.
inputFormat
The input consists of a single line containing a string \(s\). The string may include spaces, punctuation, and digits.
outputFormat
Output a single line: the string after removing all vowels.
## sampleHello World
Hll Wrld