CJCoding With Joseph

Sort Three Numbers Ascending

Read three integers a, b, and c. Print them in ascending (increasing) order, separated by single spaces, ending with a newline.

For example, given the input 3 1 2, the program prints:

1 2 3

Expected Output:

1 2 3
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 1 2
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.