# PROGRAM Swap-Bad: A = 4 B = 5 print ("A is", A, "and B is", B) A = B B = A print ("A is", A, "and B is", B) # END.