Computer Science, asked by TechExplorer, 1 month ago

How to store user values in 2 variables and then exchange the values and print them??

Answers

Answered by Annonymous01
1

Answer:

the python program for the given question is as follows:

a = int(input("enter the first value: "))

b = int(input("Enter the second value: "))

c = a

a = b

b = c

print(a)

print(b)

Similar questions