i,j,k = map(int,input().split()) ans = 'Yes' if (i <= j and i <= k) else 'No' print(ans)