# coding: utf-8 # Your code here! import sys sys.set_int_max_str_digits(0) a,p,q=map(int,input().split()) if p==q: print("No") else: print("Yes")