Python program to swap two numbers
Updated: May 18, 2020

a=int(input("Enter The First Number :"))
b=int(input("Enter The Second Number :"))
print("Before SWAPPING a=",a," b=",b)
c=a
a=b
b=c
print("After SWAPPING a= ",a," b= ",b)
Output:
Enter The First Number :45
Enter The Second Number :78
Before SWAPPING a= 45 b= 78
After SWAPPING a= 78 b= 45