A = input().split(".") B = input().split(".") if int(A[0]*100+A[1]*10+A[2]) >= int(B[0]*100+B[1]*10+B[2]): print("YES") else: print("NO")