import sys if __name__ == "__main__": x = 7 y = 9 x,y = y,x print "x is: ", x print "y is: ", y a = 9; b = 10; print a, b