#include <stdio.h>
int main()
{
double x1,h1,m1,x2,h2,m2;
scanf("%lf %lf %lf",&x1,&h1,&m1);
scanf("%lf %lf %lf",&x2,&h2,&m2);
h1=h1+m1/60;
h2=h2+m2/60;
if(x1==x2)
printf("Y e s\n");
else if(x2-x1==1)
{
if(h1>=h2)
printf("Y e s\n");
else
printf("N o\n");
}
else if(x1==7&&x2==1)
{
if(h1>=h2)
printf("Y e s\n");
else
printf("N o\n");
}
else
printf("N o\n");
return 0;
}