#C8411. Remove Vowels from a String
Remove Vowels from a String
Remove Vowels from a String
Given a string S, remove all vowels from S. Vowels are defined as a, e, i, o, u in both lowercase and uppercase. In other words, remove all characters in the set $$\{a, e, i, o, u, A, E, I, O, U\}$$ from the input string.
Your task is to process the input and output the string after removing the vowels.
Note: The input will be read from standard input (stdin) and the output should be written to standard output (stdout).
inputFormat
The input consists of a single line containing the string S. The string can include spaces and punctuation.
outputFormat
Output the modified string after removing all the vowels.
## sampleHello World
Hll Wrld