#C940. Remove Vowels
Remove Vowels
Remove Vowels
You are given a string. Your task is to remove all vowels from the string. Vowels are defined as a, e, i, o, u
(both uppercase and lowercase). For example, for the input Hello, World!
, the output should be Hll, Wrld!
. The problem requires that you read the input from stdin
and output the result to stdout
.
Note: Ensure that your solution handles empty strings, strings without vowels, and strings with special characters correctly.
inputFormat
The input consists of a single line containing the string from which vowels need to be removed. The string may contain spaces and special characters.
outputFormat
Output the string after removing all vowels. The output should be exactly the processed string without any extra characters or spaces.
## sampleaeiouAEIOU