N,H,M,T = map(int,input().split()) A = T * (N-1) H += (M + A) // 60 M = (M + A) % 60 H = H % 24 print(H) print(M)