using System;
public class Program
{
public static void Main()
DateTime dateNow = DateTime.Now;
Console.WriteLine("The date and time are {0} UTC.",
TimeZoneInfo.ConvertTimeBySystemTimeZoneId(dateNow,"US Mountain Standard Time"));
}