How To Print Swapped Values

         #SWAP VALUES


print('SWAP VALUES') a=int(input('Enter 1st Value-'))
b=int(input('Enter 2nd Value-'))
print( ' Before Swap: x =',a,' y =',b)
print (' After  Swap: x =',b,' y =',a


Made By-
       Nilay Saraf

Comments

Popular Posts