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
spyhawk_74: 2018-12-19 05:56:38

Oh my fucking god. Finaly got AC in C++ after 10 hours of debugging. This taught me how to properly take your inputs and manage memory.

onlyforcoding: 2018-12-06 17:17:32

@binarymutant,
true indeed

sydneyaldo: 2018-10-13 18:54:30

If you're wondering, the inputs given will always have valid answers. For example,
10 and 3 will NOT be in the input.

Last edit: 2018-10-13 18:55:18
adipat: 2018-10-12 17:39:52

If you're using Python 3, do integer division (// operator) , otherwise it will perform floating point division and when casting it to int, there will be data loss resulting in an incorrect result.

ramankaleramne: 2018-10-10 18:34:23

In JAVA, use BigInteger and enjoy.

silverheart: 2018-10-07 00:23:28

@rochan @ssv0726 I got an AC in python 3 in one go........Easy one just 2 lines in python

ssv0726: 2018-10-06 18:18:12

Why is the code getting AC in python2.7 but not in python3.5 ?

rochan: 2018-09-24 13:22:33

Those trying in Python..... It's a very easy problem!
But do not use Python 3.5.................... YOU WILL GET A WA
Use the same code in Python 2.7 (Alter print statements if necessary)
It gets accepted.

Last edit: 2018-09-24 13:22:51
binarymutant: 2018-09-17 14:53:54

NOTE: - THIS PROBLEM IS NOT SUPPOSED TO BE SOLVED USING BOOST OR ANY OTHER LIBRARY YOU ARE EXPECTED TO EXECUTE THE SOLUTION ON YOUR OWN.
Taking the problem difficulty into account, I'm pretty sure you are supposed to implement the solution using string manipulation instead of using a library which solves the issue in 5 lines.

y17prashant: 2018-09-15 22:47:31

gift for java users ........just 5 lines of logic


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