#K61427. Remove Vowels
Remove Vowels
Remove Vowels
Given a string, your task is to remove all the vowels from the string. The vowels are defined as \(a, e, i, o, u, A, E, I, O, U\). All other characters, including punctuation and spaces, should remain unchanged.
For example, if the input string is "Hello, World!", the output should be "Hll, Wrld!". Pay close attention to maintain the relative order of the remaining characters.
This is a straightforward string manipulation problem that tests basic programming skills and familiarity with string processing.
inputFormat
The input consists of a single line containing a string \(S\) (which may include spaces, punctuation, and other characters).
Note: The string can be empty, and its length is at most 10000 characters.
outputFormat
Output the resulting string after removing all vowels from the input string.
## sampleHello, World!
Hll, Wrld!