import sys input=sys.stdin.readline A, B = map(int,input().split()) F = 0 if A<=B: F = 1 if A>B: F = 0 if F == 1: print("Yes") if F == 0: print("No")