using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); TimeSpan ans = new TimeSpan(0, 0, 0); for (int i = 0; i < n; i++) { string s = Console.ReadLine(); string[] ss = s.Split(); DateTime a = DateTime.Parse(ss[0]); DateTime b = DateTime.Parse(ss[1]); if (a > b) { b = b.AddHours(24); } ans += b - a; } Console.WriteLine(ans.TotalMinutes); } } }