using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Channels;
using System.Threading.Tasks;
public class Program
{
public static void Main()
var words = "six impossible things about breakfast,".Split();
words.Select(x => x.Length).ToList().ForEach(Console.WriteLine);
}