CJCoding With Joseph

Swap Two Numbers

Read two integers a and b from input, swap their values using a temporary variable, then print them on one line separated by a single space (the swapped order). For example, if the input is:

3 7

print:

7 3

End the line with a newline.

Expected Output:

7 3
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
3 7
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.