public static void Main()
List<string> niceList = new List<string>();
Console.Write("Enter a Nice Person: ");
string nicePerson = Console.ReadLine();
niceList.Add(nicePerson);
Console.WriteLine(nicePerson + " has been added to the Nice List! :)");
Console.WriteLine("These are the Nice People!");
for (int i = 0; i < niceList.Count; i++)
Console.WriteLine(niceList[i]);