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