Objective

Output three input numbers in ascending order.

Difficulty

Very easy

Description

Ask the user to input three different numbers by means of three different prompt dialogs.

In each of these dialogs, display the following piece of text: 'Enter a number:'.

Once the three prompts are completed, finally output the input number in ascending order (i.e. smallest number first, largest number last).

The general form of output is shown as follows:

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

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

Below shown is an example:

Live Example

Hints