import sys input = sys.stdin.readline X, Y = map(int, input().split()) if X==Y: print("Yes") else: print("No")