using System;
using System.Threading;
using System.Diagnostics;
public class Program
{
public static void Main()
for (int i = 0; i < 100; i++)
var stopwatch = new Stopwatch();
stopwatch.Start();
Thread.Sleep(200);
stopwatch.Stop();
Console.WriteLine(stopwatch.ElapsedMilliseconds);
}