using System; using System.Collections.Generic; using System.Linq; namespace lecture { class MainClass { public static void Main(string[] args) { int[] line = Console.ReadLine().Trim().Split(' ').Select(x => int.Parse(x)).ToArray(); int N = line[0]; int H = line[1]; int M = line[2]; int T = line[3]; if (0 < N) { N--; } for (int i = 0; i <= N; i++) { if (0 < i && M <= 60 && T <= 1440) { M += T; while (60 <= M) { M -= 60; H++; } if (24 <= H) { H -= 24; } } } Console.WriteLine(H); Console.WriteLine(M); } } }