A = list(input().split(".")) B = list(input().split(".")) for i in range(3) : if A[i] < B[i] : ans = "NO" break else : ans = "YES" print(ans)