Sort Three Numbers

You are given three integer numbers a, b, c as input. Print them in sorted order from the smallest to largest separated by space

Example 1

Input

100 2 999

Output

2 100 999

Example 2

Input

3 2 1

Output

1 2 3

Example 3

Input

-10 -2 -5

Output

-10 -5 -2

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.