N, M = map(int, input().split(' ')) if N == M: print("Yes") else: print("No")