a = input().split('.') b = input().split('.') a = int(''.join(a)) b = int(''.join(b)) print(['YES', 'NO'][a < b])