n, h, m, t = gets.chomp.split.map(&:to_i) n -= 1 h = (h + t / 60 * n) % 24 m = (m + t % 60 * n) % 60 puts h puts m