#K13721. Remove Vowels

    ID: 23976 Type: Default 1000ms 256MiB

Remove Vowels

Remove Vowels

In this problem, you are given a string (s) and your task is to remove all vowels from it. Vowels are defined as the letters (a, e, i, o, u) in both lowercase and uppercase. The resulting string should retain the order of the remaining characters. This problem tests your ability to manipulate strings and implement simple filtering based on character criteria.

Example: Given the input "Hello World", the output should be "Hll Wrld".

inputFormat

Input is read from standard input (stdin) as a single line string (s). The string can contain letters, digits, spaces, and punctuation.

outputFormat

Output to standard output (stdout) a single line string which is the input string after removing all vowels.## sample

bcdfg
bcdfg

</p>