x,y = map(int, input().split()) assert 1 <= x <= 10 ** 9 assert 1 <= y <= 10 ** 9 if x == y: print("Yes") else: print("No")