Doubled Sum of Squares
Limits: 2 sec., 256 MiB
Given q pairs of integers ai and bi.
For each pair find two integers xi and yi such that:
x2i+y2i=2⋅(a2i+b2i)
0≤xi,yi≤2⋅109
It can be proven, that such numbers always exist.
«Where are Zenyk and Marichka» – you will ask. Right now they are buzy, and by the time you solve this problem, they will return.
Input
The first line of the input contains one integer q – number of queries you have to answer.
Each of the following q lines contains two integers ai and bi.
Output
For each of q queries output two integets xi and yi.
Constraints
1≤q≤105,
0≤ai,bi≤109.
Samples
Input (stdin) | Output (stdout) |
---|---|
2 0 5 1 2 | 1 7 1 3 |
Source: The Algo Battles 2023 - Етап 4