#K71972. Remove Vowels
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\).
## samplehello world
hll wrld