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