#K68082. Vowel Remover
Vowel Remover
Vowel Remover
You are given a non-empty string S. Your task is to write a program that removes all vowels from the string. The vowels are defined as (a, e, i, o, u, A, E, I, O, U).
For example, if the input string is "Hello, World!", the output should be "Hll, Wrld!".
inputFormat
The input consists of a single line containing the string S. The string may include spaces, punctuation, and other characters.
outputFormat
Output the string S after removing all vowels. The modified string should be printed to stdout.## sample
Hello, World!
Hll, Wrld!