n=gets.to_i s=0 n.times{ h,m,a,b=gets.split(/[ :]/).map &:to_i s+=((a-h)*60+b-a)%1440 } p s