using System;
public class Program
{
public static void Main()
TimeSpan x = new TimeSpan(1, 2, 3, 4);
Console.WriteLine(x);
}