#C118. Remove Vowels
Remove Vowels
Remove Vowels
Given a string s
, remove all vowels from it. Vowels are defined as the characters \(a, e, i, o, u\) and their uppercase counterparts. The non‐vowel characters, including punctuation, spaces, and other symbols, should remain unchanged.
Your task is to write a program that reads a string from standard input and outputs the modified string with vowels removed. The order of characters should be preserved.
Example:
Input: Hello, World! Output: Hll, Wrld!
inputFormat
The input consists of a single line containing a string s
(1 ≤ |s| ≤ 105). The string may contain letters, spaces, punctuation marks, and other visible characters.
outputFormat
Print the string after all vowels have been removed.
## sampleHello, World!
Hll, Wrld!