Write a program that will take user's three numbers and display them in ascending order.

For example, you may have the following interface with user.

Please enter any three integers:
900 200 400
You entered 900, 200
and 400.
The ascending order of them are
200, 400 and 900.

 

Please enter any three integers:
100 200 150
You entered 100, 200 and 150.
The ascending order of them are
100, 150 and 200.