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]


hide comments
saran: 2014-06-22 04:55:59

@Kushagra Singh & K Anoop test cases will be given such a way that if no.of apples are odd then more apples will be odd so that output can be obtained only issue here is 10^100 easy to solve in java python etc c/c++ need a little more effort :)

surayans tiwari(http://bit.ly/1EPzcpv): 2014-06-19 21:12:07

is this in output considered wrong
92
92
out.
92
00

Kushagra Singh: 2014-06-11 19:33:03

wait, what if total number of apples is odd? Such data will obviously cause an error

fallacy: 2014-06-04 06:34:31

The problem is simple,.. the main issue is with 10^100.
Hint: Languages like python and Java have big integers class built it.With c, perform calculations using string and as done in school

Last edit: 2014-06-04 06:35:11
K Anoop: 2014-05-22 18:48:55

Will there be a test case where "number of apples together" is even and "how many more apples Klaudia has" is odd ??
What should the o/p in such case ?

Anubhav Balodhi : 2014-03-28 17:19:28

Python nails it, and so does C++...

who cares: 2014-03-26 15:10:42

ohhhh 9 more test cases ,i should read it carefully.....so many wrong answer finally ac :)

mockingjay: 2014-03-21 23:31:25

got AC in 1st go in c++

Sujay: 2014-03-21 15:01:47

Try these:
10000 4
100 98
25276 0
15 3
92 92

Last edit: 2014-03-21 15:49:58
DuM!3 !3rA!N a.k.a Sury^: 2014-02-28 10:47:18

Dint see that there are exactly 10 test cases! :( caused me 2 WA's


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