a = input().split(".") b = input().split(".") if a[0] == b[0] and a[1] >= b[1]: if a[2] < b[2]: print('NO') else: print('YES') else: print('NO')