#C9976. Remove Vowels from a String
Remove Vowels from a String
Remove Vowels from a String
In this problem, you are given a string and your task is to remove all vowels from it. The vowels are defined as ({ a, e, i, o, u, A, E, I, O, U }). You will be given the string via standard input and you need to print the string with all vowels removed to standard output.
For example, given the input "Hello World!", your program should output "Hll Wrld!".
inputFormat
The input consists of a single line containing a string. The string can include letters, digits, spaces, and punctuation.
outputFormat
Output the modified string after removing all vowels.## sample
Hello World!
Hll Wrld!