from collections import * from itertools import * from functools import * from heapq import * import sys,math input = sys.stdin.readline A,B = map(int,input().split()) if A<=B: print('Yes') else: print('No')