#C6421. Remove Vowels from a String
Remove Vowels from a String
Remove Vowels from a String
Problem Description
Given a string, remove all vowels from it. Vowels are defined as $$\{a,e,i,o,u,A,E,I,O,U\}$$. The resulting string should retain the order of the other characters. If the input string is empty, your program should output an empty string.
Your program should read the input from standard input (stdin) and print the result to standard output (stdout).
For example, if the input is "This is a test!", the output should be "Ths s tst!".
inputFormat
The input consists of a single line containing the string from which vowels are to be removed. Note that the string may also be empty.
outputFormat
The output is a single line containing the string after all vowels (both uppercase and lowercase) have been removed.
## sampleThis is a test!
Ths s tst!