You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
247 B

#include <iostream>
using namespace std;
int main() {
int a, b, c, d;
cin >> a >> b >> c >> d;
int x = c - a, y = d - b;
if (y < 0) {
x = x - 1;
y = y + 60;
}
cout << x << " " << y << endl;
return 0;
}