eolymp
bolt
Try our new interface for solving problems
Problems

Quick Sort

Quick Sort

Sort the given sequence in non-decreasing order. \InputFile One line contains a sequence of no more than $10^5$ integers. \OutputFile Print in one line a sequence of numbers in non-decreasing order.
Time limit 2 seconds
Memory limit 128 MiB
Input example #1
4 1 4 8 6 6 5
Output example #1
1 4 4 5 6 6 8