#!/usr/bin/python n, h, m, t = map(int, raw_input().split()) m += t * (n-1) h += m / 60 m %= 60 h %= 24 print '{}\n{}'.format(h, m)