Swap Two Numbers

Easy

📝 Description

Swap the values of two variables and print them.

Input Format

Two space-separated integers

Output Format

The swapped values, space-separated

Constraints

-1000 ≤ numbers ≤ 1000

🔍 Sample Input

4 9
            

✅ Sample Output

9 4
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run