public static void Main()
Console.WriteLine("Word Counter");
Console.WriteLine("Please write a sentence:");
string sentence = Console.ReadLine();
string[] split = sentence.Split(' ');
for(int pos = 0; pos < split.Length; pos++) {
Console.WriteLine("There are " + words + " words.");