using System;
public class Program
{
public static void Main()
TimeSpan t1 = new TimeSpan(0,17,0,0);
TimeSpan t2 = new TimeSpan(1,16,0,0);
var result = t2-t1;
Console.Write(result.ToString());
}