#arc104a. [arc104_a]Plus Minus
[arc104_a]Plus Minus
Problem Statement
Takahashi has two integers and .
He computed and , and the results were and , respectively.
Now he cannot remember what and were. Find and for him.
Constraints
- For the given integers and , there uniquely exist integers and such that and .
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print and .
Sample Input 1
2 -2
Sample Output 1
0 2
If and , they match the situation: and .
Sample Input 2
3 1
Sample Output 2
2 1