def main(): I, J, K = map(int, input().split()) if min(I, J, K) == I: print("Yes") else: print("No") if __name__ == "__main__": main()