Min-Max

For given three integers $a, b, c$, print the minimum value and the maximum value.

Input

The input is given in the following format.

$a \; b \; c\;$

Three integers $a, b, c$ are given in a line.

Output

Print the minimum and maximum values separated by a space in a line.

Constraints

Sample Input 1

4 5 3

Sample Output 1

3 5