AnswerBox
Python

Swap Two Variables

Description:
Swap the values of two variables without a third variable.
Python Code
a = 5
b = 10
a, b = b, a
print("a =", a)
print("b =", b)
Expected Output
a = 10 b = 5