Write a to take two numbers as an input and interchange their values by using the third variable and display accordingly.
Answers
Answered by
0
Answer:
x = int(input("Enter number 1"))
y = int(input("Enter number 2"))
#puoring x into z
z = x
#puoring y into x
x = y
#pouring z into y
y = z
print(x , y)
Explanation:
Similar questions