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
2014-02-14 14:29:30 Nethaji Kumar
what is the answer for 30 3
2014-02-05 13:31:07 Aragon!!!
Java solution is very easy , but in C definitely not for beginners
2014-01-17 10:14:33 Aragon!!!
@Suriya Prabha.T : u really cant store store 10^100 digits in any data type in c, u will be needing arrays,so ur code wont work for extreme cases, if u wana do simple math then use java(big int), in C this ques is very tricky
2014-01-07 16:07:53 Saurabh Singh Rana
Python 3.3 WA but Python 2.7 AC. Python people take care of this.
2013-12-31 14:23:49 Samil Vargas
this problem is so easy to but i still gettin WA and im using Python 2.7 plz i need some hints cause i wanna solve this problem.
2013-12-25 14:45:39 dpdrmj
@Naruto Uzumaki ...the algo u have used to half the number is wrong.check for input 114 6
2013-12-25 04:07:17 Archangel
I solved it using BigInteger in java but the problem is worth solving in C.
AC in one go :)
2013-12-25 03:01:25 Aradhya Makkar
this mught help newbies who are getting wrong answers. http://forum.codecall.net/topic/72184-cc-adding-two-big-numbers/
2013-12-20 22:43:24 anasalsaadi
you want to tchange this variable from int to reall
2013-12-16 18:02:46 thecodekaiser
Why is it that a logic gives AC for py2.7
but WA for py3.3
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.