#P247. 【例41.2】 绝对值排序

【例41.2】 绝对值排序

Description

Input 3 integers and sort them by their absolute values in ascending order.

Input Format

Input contains 3 integers within the int range, separated by spaces.

Output Format

Output a single line containing three numbers, separated by spaces.
If two numbers have the same absolute value, compare their actual values.

Sample

1 3 -3
1 -3 3