#include void solve() { int n, h, m, d; std::cin >> n >> h >> m >> d; int t = (h * 60 + m + (n - 1) * d) % 1440; std::cout << t / 60 << std::endl << t % 60 << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }