#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); long long a, b, c, d; cin >> a >> b >> c >> d; long long tim = b * 60 + c; tim += d * (a - 1); int x = tim / 60; int y = tim % 60; if(x % 24 > 0) { cout << x % 24 << endl; } cout << y << endl; return 0; }