def main(): b,c=map(int,input().split()) if b==c: print("Yes") else: print("No") return main()