#!/usr/bin/python
# -*- coding: utf-8 -*-
# Python program to swap two variables
# To take inputs from the userx = input('Enter value of x: ')
y = input('Enter value of y: ')# create a temporary variable and swap the values
temp = x
x = y
y = tempprint 'The value of x after swapping: {}'.format(x)
print 'The value of y after swapping: {}'.format(y)