/**
* Given a string, remove the vowels from the string and print the string without vowels.
Input : welcome to geeksforgeeks
Output : wlcm t gksfrgks
Input : what is your name ?
Output : wht s yr nm ?
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}