#C14619. Remove Vowels
Remove Vowels
Remove Vowels
Your task is to write a program that removes all vowels from a given input string.
Vowels are defined as \(a, e, i, o, u\) in both lowercase and uppercase. You need to read the input string from standard input and output the resulting string to standard output.
Example: If the input is "Beautiful Day", the output should be "Btfl Dy".
inputFormat
The input consists of a single line containing a string \(S\). \(S\) may include letters, digits, punctuation, and spaces.
outputFormat
Output the string after removing all vowels. The output should be printed on a single line.
## sampleBeautiful Day
Btfl Dy