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