Swap Values
You are given two variables. Swap their values and print both.
Your output should be:
text
a = 10 b = 5
Hint: You'll need a third variable to hold one value while you swap!
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python
a = 5
b = 10
# Swap the values of a and b
print("a =", a)
print("b =", b)