#P4414. Rearrange the Integers
Rearrange the Integers
Rearrange the Integers
You will be given three integers which are not presented in ascending order. Your task is to output these numbers in strictly increasing order.
Note: It is guaranteed that when the three integers are arranged properly they satisfy \(A < B < C\).
inputFormat
The input consists of a single line containing three space-separated integers.
outputFormat
Output the three integers in ascending order, separated by a space.
sample
3 1 2
1 2 3
</p>