#include <stdio.h>
#include<math.h>
int main()
{
int a,b,c,d,e,f,g,h;
scanf("%d:%d:%d",&a,&b,&c);
scanf("%d:%d:%d",&d,&e,&f);
g=a*3600+b*60+c;
h=d*3600+e*60+f-g;
printf("%d\n",h);
return 0;
}
06-07
434
05-09
632
11-29
3673