Write a program in Python with the following code:
a = int(input())
b = int(input())
c = b
b = a
a = c
print("The value of a is", str(a))
print("The value of b is", str(b))
When you execute this code you will first have to give two whole numbers. Before you execute the code, try predicting the outcome.
Two whole numbers $$a$$ and $$b$$ ($$0 \leq a, b \leq 200$$), each on a separate line.
Two lines, with on the first line the text "The value of a is " followed by the value of $$a$$, and on the second line the text "The value of b is " followed by the value of $$b$$. Before the output is written, the values of $$a$$ and $$b$$ — as they were read in from the input— should be switched.
Input:
5
6
Output:
The value of a is 6
The value of b is 5