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
soodan: 2016-12-05 15:30:17

took almost 4 hours to complete!!

Last edit: 2016-12-05 15:30:40
votrascii_1308: 2016-12-02 10:38:20

what about the cases like:
11
4
or
18
3
I mean what I want to ask is, do I have to take 0.5 into consideration as well? Or am I supposed to distribute whole apple??

Last edit: 2016-12-02 10:39:40
codesok: 2016-12-02 08:42:02

bunnycoder test cases are working perfectly for me. But still I am getting wrong answer in C++?
Any ideas why? Or any more test cases?
Thanks

mohitgupta07: 2016-11-16 09:28:26

Those of u getting wa in python3 is because python3 cant handle the input!!! If you input 10^30 it will treat the following as string and if you convert that stuff into integer using int function. It will convert that value into the range of integer thus you're getting wa. And dats not the same with python2.7 :) :)

mohitgupta07: 2016-11-16 08:48:43

Thanks to such a silly reading mistake -_- . It costed me two wrong answers and my streak of 8 got broken -_-

digit77: 2016-10-20 21:12:51

from where i can get bunnycoder's test case?

adi_pra: 2016-10-12 16:15:56

good question.Finally got AC after 3 hours struggle. AC in a one go

Last edit: 2016-10-12 16:19:00
muradul: 2016-09-03 12:13:59

Got AC on first go . with java. just BigInteger .

shaan001: 2016-08-22 15:18:03

Same Code
Java-- NZEC
Python 3 --Wrong Answer
Python 2.7-- AC

why???

gurpreetsk95: 2016-08-21 20:05:05

NREZ, while works fine on Intellij IDEA? (Lang: java)


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