#K62702. Remove Vowels

    ID: 31590 Type: Default 1000ms 256MiB

Remove Vowels

Remove Vowels

Given a string, remove all English vowels (both lowercase and uppercase). A vowel is any character in the set \(\{a, e, i, o, u, A, E, I, O, U\}\). For example, if the input is "Hello", the output should be "Hll".

inputFormat

The input consists of a single line containing a string. The string may include spaces and special characters. Read the input from standard input (stdin).

outputFormat

Output the modified string with all vowels removed. Write the result to standard output (stdout).

## sample
hello
hll