a = 3
b = 1
print(a, b)
a, b = b, a
print(a, b)
What is the output of the following program

Posted on by