n, h, m, t = map(int, input().split()) m += t * (n - 1) h += m // 60 m %= 60 h %= 24 print(h) print(m)