#K71972. Remove Vowels

    ID: 33650 Type: Default 1000ms 256MiB

Remove Vowels

Remove Vowels

Given a string S containing lowercase letters and spaces, your task is to remove all vowels from the string while maintaining the order of the remaining characters.

The vowels to be removed are \(a, e, i, o, u\). For example, if S = "hello world", the output should be "hll wrld".

This problem tests simple string manipulation and is suitable for beginners in competitive programming.

inputFormat

The input consists of a single line containing the string \(S\) which is made up of lowercase English letters and spaces.

outputFormat

Output a single line containing the string after all vowels have been removed from \(S\).

## sample
hello world
hll wrld