Objective

Output three input numbers in ascending order.

Difficulty

Very easy

Description

Ask the user to input three different integers by means of three different input prompts.

The general form of all the three input prompts together is shown as follows:

x: <input>
y: <input>
z: <input>

Once this is done, finally output these numbers in ascending order (i.e. smallest number first, largest number last) in the following format .

Sorted numbers: <int1> <int2> <int3>

Where <int1>, <int2>, and <int3>, are the input numbers.

Below shown is an example:

x: 150
y: 32
z: 50
Sorted numbers: 32 50 150