A0, B0, C0 = map(int, input().split('.')) A1, B1, C1 = map(int, input().split('.')) if A0 == A1: if B0 == B1: print('YES' if C0 >= C1 else 'NO') else: print('YES' if B0 > B1 else 'NO') else: print('YES' if A0 > A1 else 'NO')