先生とユリィカとりんご算

かんたんかんたん?

54. Julka

Problem code: JULKA

Julka surprised her teacher at preschool by solving the following riddle:
ユリィカが算数クイズをとても早く解くのを見て、幼稚園の先生は驚きました。その算数クイズがこちらです;

Klaudia and Natalia have 10 apples together, but Klaudia has two apples more than Natalia. How many apples does each of he girls have?
クローディアとナタリアはあわせて10個のりんごを持っていて、クローディアがナタリアより2つ多く持っています。それぞれが持っているりんごの数はいくつでしょう?

Julka said without thinking: Klaudia has 6 apples and Natalia 4 apples. The teacher tried to check if Julka's answer wasn't accidental and repeated the riddle every time increasing the numbers. Every time Julka answered correctly. The surprised teacher wanted to continue questioning Julka, but with big numbers she could't solve the riddle fast enough herself. Help the teacher and write a program which will give her the right answers.
ユリィカはほとんど考えることなしに答えを言い当てました。クローディアが6個でナタリアが4個です。まぐれ当たりを疑った先生は、りんごの数を増やしながらなんども問題を出してみましたが、そのたびにユリィカは正しく答えました。驚いた先生はもっと問題を続けたいと思いましたが、大きな数になるにつれて、先生自身が答えを出すのに苦労するようになりました。正しい答えを出すプログラムを書いて、先生を助けてあげましょう。

Task

Write a program which

reads from standard input the number of apples the girls have together and how many more apples Klaudia has,
counts the number of apples belonging to Klaudia and the number of apples belonging to Natalia,
writes the outcome to standard output
標準入力から、りんごの数の合計と、クローディアがいくつ多く持っているかを示す数字が入力されます。クローディアとナタリアのりんごの数を標準出力から出力してください。

Input

Ten test cases (given one under another, you have to process all!). Every test case consists of two lines. The first line says how many apples both girls have together. The second line says how many more apples Klaudia has. Both numbers are positive integers. It is known that both girls have no more than 10100 (1 and 100 zeros) apples together. As you can see apples can be very small.
10のテストケースが与えられます。それぞれのテストケースは2行になっていて、1行目はりんごの数の合計、2行目はクローディアとナタリアの差をあらわします。それぞれの数は正の整数です。なお、クローディアとナタリアが持っているりんごの合計は、多くても10100個であることがわかっています。

Output

For every test case your program should output two lines. The first line should contain the number of apples belonging to Klaudia. The second line should contain the number of apples belonging to Natalia.
それぞれのテストケースについて、2行で出力してください。1行目はクローディアが持っているりんごの数、2行目はナタリアのりんごの数です。

Example

Input:
10
2
[and 9 test cases more]

Output:
6
4
[and 9 test cases more]