Write a program in Python with the following code:

x = int(input())
y = int(input())
x = x + y
y = x - y
x = x - y
print("The value of x is", str(x))
print("The value of y is", str(y))

When you run this code, you will have to give up two integers. First try — before you run the code — to predict what will happen.

Input

Two integers $$x$$ and $$y$$ ($$0 \leq x, y \leq 200$$), each on a separate line.

Output

Two lines, with on the first line the text "The value of x is " followed by the value of $$x$$, and on the second line the text "The value of y is " followed by the value of $$y$$. Before the output is written, the values of $$x$$ and $$y$$ — as they were read from the input — must be switched.

Example

Input:

5
6

Output:

The value of x is 6
The value of y is 5