#K12016. Remove Vowels
Remove Vowels
Remove Vowels
Given a string, remove all vowels from it. Vowels are defined as the letters \(a, e, i, o, u\) in both lowercase and uppercase. Your task is to read a string from standard input and print the string after removing all vowels.
For example, if the input is hello world
, the output should be hll wrld
.
inputFormat
The input consists of a single line containing the string from which vowels are to be removed. The string may include letters, numbers, spaces, and special characters.
outputFormat
Output the modified string after removing all vowels.
## samplehello world
hll wrld