using System.Collections.Generic;
public static void Main()
string test = "Marley’s final studio album: Uprising.";
List<string> words = new List<string>();
for (int i = 0; i < test.Length; i++)
if (ch >= 'A' && ch <= 'Z' || ch >= 'a' && ch <= 'z')
if (i == test.Length - 1)
Console.WriteLine(String.Join(" ", words.ToArray()));