#C6805. Remove Vowels from a String
Remove Vowels from a String
Remove Vowels from a String
Given a string S, your task is to remove all vowel characters from it. The vowels are defined as (a, e, i, o, u) in both lowercase and uppercase (i.e., (a, e, i, o, u, A, E, I, O, U)).
If the input string is empty, simply output an empty string. Note that the input will be provided via standard input (stdin) and the result should be printed to standard output (stdout).
inputFormat
The input consists of a single line that contains the string S from which vowels are to be removed.
outputFormat
Output the string S after all vowels have been removed. The output should be printed to stdout.## sample
Hello World
Hll Wrld