X, Y = map(int, input().split()) ans = 'Yes' if X == Y else 'No' print(ans)