#include <iostream>
using namespace std;

class Time {

    public:
        int hours;      // 小时
        int minutes;    // 分钟

        Time() {
            hours = 0;
            minutes = 0;
        }

        Time(int h, int m) {
            this->hours = h;
            this->minutes = m;
        }

        void show() {
            cout << hours << " " << minutes << endl;
        }

        Time operator+(const Time& t2)
        {
            Time temp;//用来保留结果
            temp.hours = this->hours + t2.hours;
            temp.minutes = this->minutes + t2.minutes;
            while(temp.minutes >= 60)
            {
                temp.hours++;
                temp.minutes-=60;
            }
            return temp;
        }
        

};

int main() {

    int h, m;
    cin >> h;
    cin >> m;

    Time t1(h, m);
    Time t2(2, 20);

    Time t3 = t1 + t2;
    t3.show();
    
    return 0;
}