Remove Vowels in a Sentence
You are given a sentence. Write a program to remove all the vowels in the given sentence.
The first line of input is a string
In the example given a sentence
Hello World, the sentence contains vowels e, o.So, the output should be
Hll Wrld
Comments