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