#K45942. Filter Vowels

    ID: 27865 Type: Default 1000ms 256MiB

Filter Vowels

Filter Vowels

Given a string s, your task is to remove all vowels from the string. The vowels to be removed are \(a, e, i, o, u\) (both uppercase and lowercase). This problem tests your ability to perform simple string manipulation and filter characters from the string.

Example:

Input: Programming
Output: Prgrmmng

Implement your solution to read input from standard input and print the result to standard output.

inputFormat

A single line containing a string from which vowels will be removed.

outputFormat

A single line containing the resultant string after all vowels have been removed.## sample

Programming
Prgrmmng