JULKA - 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?

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.

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.

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.

Example

Input:
10
2
[and 9 test cases more]

Output:
6
4
[and 9 test cases more]


Added by:Adam Dzedzej
Date:2004-06-08
Time limit:2s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6 VB.NET
Resource:Internet Contest Pogromcy Algorytmow (Algorithm Tamers)
Round II, 2003

hide comments
2013-01-17 16:53:23 Jay
python 2.7 code works.same code on python 3.x doesn't work

Last edit: 2013-01-17 16:54:03
2013-01-12 13:36:26 vishnu
easy in java and python
2012-12-20 15:22:49 Muniz
10 apples and 3 more apples for Klaudia have no solution...
2012-12-19 16:40:33 KRISHNA
<snip>
can anyone tell me what test cases failed

Last edit: 2022-07-04 23:32:21
2012-12-09 06:58:19 arijit pande
Pretty simple problem this
2012-10-27 22:53:59 deepak kalwani
it is damn simple
2012-09-21 17:38:49 Pavan
Bond mee too
2012-08-17 16:09:19 Arkadiusz Bulski
Strange, tests do not contain any weird odd difference cases. What was giving me WA was... wrong order of numbers in output. *sigh*
2012-08-12 17:36:58 Anant Kaushik
@admin - Is a testcase like 23 6 valid? The solutions would then come as 14.5 and 8.5. Or are we supposed to print only the integer part in such cases?
2012-07-26 15:10:57 sikander
for c/c++ can't we use double and "%.0lf" in printf statement?
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.