v = [int(v) for v in input().split()] if min(v) == v[0]: print("Yes") else: print("No")