#define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int h, m, s; int h2, m2, s2; scanf("%d:%d:%d", &h, &m, &s);//현재시간 입력 scanf("%d:%d:%d", &h2, &m2, &s2);//임무시작시간 입력 h2 -= h;//임무시작시간에서 현재시간을 뺀다 m2 -= m; s2 -= s; if (s2 < 0)//초단위가 0보다 작으면 60을 더하고 분단위에서 1을 뺀다 { s..