x,y,z = map(int,input().split()) if x <= y and x <= z: print("Yes") else: print("No")