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
manankgarg: 2020-08-16 10:52:37

[NG]: Stop spamming or you'll get your account blocked.

Last edit: 2020-08-16 13:58:08
kishor_e: 2020-07-29 17:19:53

JULKA is like PULKA in python 3 :p

ckanzz: 2020-07-14 06:07:24

Try doing this without using BigInteger(JAVA) or Boost lib in cpp, only then this problem would benefit you. In case you are solving for learning purposes. You can use BigInteger to cross-check test cases with your own string manipulation code.

rishabh_roy: 2020-06-24 18:44:49

Make sure that there are exactly 10 test cases. So don't read the no of test cases. Caused me several WAs

gp409: 2020-06-21 14:02:50

Don't use python3 just for this problem. it won't help you to learn anything.

alche_mist02: 2020-06-08 15:50:35

why cant i just use double?

adi243: 2020-06-01 13:36:46

use biginteger in java

coolboy7: 2020-05-25 13:31:51

can an input be 0(does 0 comes in positive integer)? I am asking because some users say about testcases involving 0 as input.

surfeyone: 2020-05-23 03:11:49

This is so tedious without library

ocean_bh11: 2020-05-14 10:19:15

Use bigInteger in 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