#D7141. List of Top 3 Hills
List of Top 3 Hills
List of Top 3 Hills
There is a data which provides heights (in meter) of mountains. The data is only for ten mountains.
Write a program which prints heights of the top three mountains in descending order.
Constraints
0 ≤ height of mountain (integer) ≤ 10,000
Input
Height of mountain 1 Height of mountain 2 Height of mountain 3 . . Height of mountain 10
Output
Height of the 1st mountain Height of the 2nd mountain Height of the 3rd mountain
Examples
Input
1819 2003 876 2840 1723 1673 3776 2848 1592 922
Output
3776 2848 2840
Input
100 200 300 400 500 600 700 800 900 900
Output
900 900 800
inputFormat
Input
Height of mountain 1 Height of mountain 2 Height of mountain 3 . . Height of mountain 10
outputFormat
Output
Height of the 1st mountain Height of the 2nd mountain Height of the 3rd mountain
Examples
Input
1819 2003 876 2840 1723 1673 3776 2848 1592 922
Output
3776 2848 2840
Input
100 200 300 400 500 600 700 800 900 900
Output
900 900 800
样例
1819
2003
876
2840
1723
1673
3776
2848
1592
922
3776
2848
2840
</p>