old = list(map(int, input().split('.'))) ver = list(map(int, input().split('.'))) if ver <= old: print('YES') else: print('NO')