a,b,c = map(int,input().split()) if a <= min(b,c): print("Yes") else: print("No")