Files
python/TangDou/LuoGuBook/P1425.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

16 lines
305 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c, d;
cin >> a >> b >> c >> d;
if (d < b) {
printf("%d ", c - (a + 1));
printf("%d", d + 60 - b);
} else {
printf("%d", c - a);
printf(" %d", d - b);
}
return 0;
}