using System;
using System.Threading;
public class Program
{
public static void Main()
for(var count = 0; count < 10; count++)
Console.WriteLine("I can count to " + count);
Thread.Sleep(TimeSpan.FromSeconds(0.3));
}