#include using namespace std; int main() { int n, h, m, t; cin >> n >> h >> m >> t; int t_wake = h * 60 + m + (n-1) * t; cout << t_wake / 60 % 24 << endl << t_wake % 60 << endl; }