using System.Collections.Generic;
using System.Threading.Tasks;
public static void Main()
Console.WriteLine(DateTime.Now);
Task.Run(() => Thread.Sleep(1000 * 30));
Console.WriteLine(DateTime.Now);
Console.WriteLine(DateTime.Now);
Console.WriteLine(DateTime.Now);