public static void Main()
string [] books = new string[5];
books[0] = "A Column of Fire";
books[1] = "The Girl Who Takes an Eye for an Eye";
books[2] = "Enemy of the State";
books[3] = "The Romanov Ransom";
books[4] = "A Legacy of Spies";
Console.WriteLine(books[0]);
Console.WriteLine(books[1]);
Console.WriteLine(books[2]);
Console.WriteLine("Please enter your input");
string strInput1 = Console.ReadLine();
Console.WriteLine(strInput1);