Sorted input refers to data that is already arranged in a particular order, typically ascending or descending, before being processed by an algorithm. In the context of sorting algorithms, having sorted input can significantly influence the performance and efficiency of the algorithm, often leading to faster execution times compared to unsorted data. This is particularly relevant for comparison-based sorting algorithms, as their behavior and time complexity can vary greatly depending on whether the input is sorted, partially sorted, or completely unsorted.