Computer Science, asked by shreekraman4, 1 year ago

write a program to input two unequal number display the number after swapping their value in the variable without using the third variable ​

Answers

Answered by shreya1000
6

Explanation:

n=input("enter a no.")

p=input("enter another no.")

n,p=p,n

print(p,n)

hope it would help u

Similar questions