def Main(): a,n=map(int,input().split()) if a==n: print("Yes") else: print("No") Main()