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
hetp111: 2019-04-12 18:18:06

A moment of silence for those who used python :P

naman_mawandia: 2019-04-06 22:01:24

what should be output for inputs
3232
1233

manohar_ganta: 2019-03-29 13:47:21

Use python if you wanna avoid writing your own divide and add functions.

sunny_chand: 2019-03-11 19:16:44

don't forget to use the loop for taking input and displaying output for 10 cases !!

guehike_99: 2019-02-21 09:53:04

For those who are using Python, and uses NumPy a lot, like myself, be aware that using NumPy functions (such as numpy.arange) to assing input/output variables may cause Runtime Error (NZEC).

Last edit: 2019-02-27 09:00:33
amitdu6ey: 2019-01-28 14:17:07

why simple division is giving an error but integer division working fine when I am already subtraction excess apples and then doing division and then converting it to int... I don't see where data loss occur :(

mukulsingh: 2019-01-04 19:15:24

AC after 3 WA solved in cpp using strings, learned a lot. Real programmers would solve using string. mind the case 5555
5555
and
999999
1
thx to bunnycoder's testcases

mitaali_09: 2018-12-31 07:49:11

Don't forget to put -'0' in there. Took one day to figure out.
AC in 3.

saketgupta1008: 2018-12-27 14:11:04

@shauryauppal thanks man for providing test cases.

gollum_dagar: 2018-12-25 02:53:18

This question is just beautiful in so many ways!
Solved in c++.
Got AC in one go!
Learnt a major string concept and why ASCII characters are so important.


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