a,b,c = map(int,input().split(".")) x,y,z = map(int,input().split(".")) if x > a: print("NO") elif x < a: print("YES") else: if y > b: print("NO") elif y < b: print("YES") else: if z > c: print("NO") else: print("YES")