<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">a = 2
b = 1

a, b = b, a

print(a, b)


# es equivalente a:
#    temp = a
#    a = b
#    b = temp
#
</pre></body></html>