Drop links or images here to add them to the editor.

Sort 3 Numbers ⭐

Write a program that reads three integers and displays them sorted from smallest to largest.

Restriction:

For this exercise, you must only use if and else conditional structures. Using arrays or predefined sorting functions (like sort) is not allowed.

Input

Three integers separated by spaces.

Output

The three numbers sorted from smallest to largest, separated by a single space.

Example

Input: 5 2 8

Output: 2 5 8