public static void Main()
Console.WriteLine("Enter your name");
string name=Console.ReadLine();
Console.WriteLine("you entered " + name);
Console.WriteLine("there are " + CountVowels(name) + " vowels in your name");
private static string CountVowels(string name)