y,m,d=map(int,input().split())
y1,m1,d1=map(int,input().split())
if y1*365+m1*30+d1>=y*365+m*30+d:
    print("yes")
else:
    print("no")