How to store user values in 2 variables and then exchange the values and print them??
Answers
Answered by
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