using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
string formatDate = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ");
DateTime.TryParse(formatDate, out DateTime parsedDate);
Console.WriteLine(formatDate);
Console.WriteLine(parsedDate);
}