👤

Se dau numerele naturale h m, reprezentând un ora curentă exprimată în ore şi minute. Să se determine care va fi ora peste x ore şi y minute.


Răspuns :

#include <iostream>
using namespace std;

int h1, m1, x, y;

int main()
{
    cin >> h1 >> m1 >> x >> y;
    cout << (h1 + (m1 + y) / 60 + x) % 24 << ' ' << (m1 + y) % 60 << '\n';
}