a = 2
b = 1

a, b = b, a

print(a, b)


# es equivalente a:
#    temp = a
#    a = b
#    b = temp
#
