將時間轉成分鐘計算,能不用if就不要用hh1,mm1=map(int,input().split())hh2,mm2=map(int,input().split())a = (((hh2*60+mm2)-(hh1*60+mm1))%1440)b = [a//60,a%60]print(*b)