#C14619. Remove Vowels

    ID: 44288 Type: Default 1000ms 256MiB

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.

## sample
Beautiful Day
Btfl Dy