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 Y = line[3]; if (0 < N) { N--; } for (int i = 0; i <= N; i++) { for (int x = 0; x <= Y; x++ ) { if (x == Y) { if (0 < i) { M += Y; if (Y == 60) { H++; } } } } } Console.WriteLine(H); Console.WriteLine(M); } } }