Program to delete vowels from a string

Write an algorithm to delete vowels from a string.

Given a string. You need to delete vowels of this string and return string.

Example


If string is "codela", return must be "cdl".

Contributed by Erkan Ercan