using System;
using System.Threading;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
var startDate = DateTime.UtcNow;
Thread.Sleep(2000);
var timeTaken = DateTime.UtcNow.Subtract(startDate).Seconds;
Console.WriteLine(timeTaken);
}