#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <cmath>
using namespace std;
//切分字符串
vector<string> split(string str,char ch)
{
//创建字符串盒子
vector<string> results;
//将字符串转为字符串流
stringstream ss(str);
//创建字符串临时存放点
string temp;
//循环切分,并将每一次切分的结果放入盒子
while(getline(ss,temp,ch))
{
results.push_back(temp);
}
//返回结果
return results;
}
int main()
{
//创建变量字符串
string str;
//从键盘获取字符串
getline(cin,str);
//创建字符串盒子
vector<string> results;
//切分字符串,并依次放入盒子
results = split(str,' ');
string str1 = results[0];
int a =stoi(str1);
string str2 = results[1];
int b =stoi(str2);
string str3 = results[2];
int c =stoi(str3);
string str4 = results[3];
int d =stoi(str4);
//计算
int e = a * 60 + b;
int f = c * 60 + d;
int o = f - e;
int h = o / 60;
int m = o % 60;
//输出
cout << h << " " << m;
return 0;
}