#K49892. Sort Three Numbers

    ID: 28743 Type: Default 1000ms 256MiB

Sort Three Numbers

Sort Three Numbers

Given three integers, write a program that reads these integers from standard input, sorts them in non-decreasing order, and prints the sorted numbers to standard output. The numbers should be output in a single line separated by a single space. This problem tests basic sorting and input/output handling.

inputFormat

The input consists of a single line containing three integers separated by spaces.

outputFormat

Output the three sorted integers in non-decreasing order on a single line, separated by spaces.

## sample
34 -4 7
-4 7 34