#C6186. Remove Vowels

    ID: 49918 Type: Default 1000ms 256MiB

Remove Vowels

Remove Vowels

You are given a string S. Your task is to remove all the vowels from the string and output the resulting string. For the purpose of this problem, vowels are defined as the lowercase characters \(a, e, i, o, u\).

The input string will consist of lowercase characters only. If the string is empty, simply output an empty string.

inputFormat

The input consists of a single line containing the string \(S\).

outputFormat

Output the string after removing all vowels from \(S\).

## sample
hello
hll

</p>