public static void Main()
string s = "Led Zeppelin could be considered the greatest band of all time";
Console.Write("\nEnter an index to find a character in the string: ");
index = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nThe index '" + index + "' is: " + s[index]);