# Author: James Tam # Version: September 14, 2022 # The two print instructions show the contents of the variables at key points # and can be used to check the results of your hand trace. num1 = 1 num2 = 2 num3 = 3 print(num1,num2,num3) num3 = num1 num1 = 3 num2 = 1 print(num1,num2,num3)