#C14910. Remove Vowels

    ID: 44612 Type: Default 1000ms 256MiB

Remove Vowels

Remove Vowels

Given a string, remove all vowels from it. Vowels are defined as the characters \(a, e, i, o, u\) in both lowercase and uppercase.

Your task is to process the input string and output the string with all the vowels removed.

inputFormat

The input consists of a single line containing the string.

outputFormat

Output a single line representing the string after all the vowels have been removed.## sample

Hello, World!
Hll, Wrld!