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