Computer Science, asked by sweety6100, 4 days ago

Write a to take two numbers as an input and interchange their values by using the third variable and display accordingly.

Answers

Answered by Hackermanprith
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