CJCoding With Joseph

Sort Two Numbers Ascending

Read two integers with scanf. Print them on one line in ascending order (smaller first), separated by a single space, with no trailing newline. For input 8 3 the output is exactly:

3 8

For input 2 5 the output is 2 5.

Expected Output:

3 8
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
8 3\n
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.