x = 1 y = 2 temp = x x = y y = temp print('The value of 1st variable: ' + x) print('The value of 2st variable: ' + y) #Author : Ahmetcan Gürbüz