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
Dushyant Singh: 2015-06-11 08:12:57

66 lines in C :-P

Hits: 2015-06-10 18:39:57

easy one .... but take care while implementing.... :p

Dushyant Singh: 2015-06-06 13:50:01

Can the two given numbers be equal?

EDIT:- Finally AC! :-) Some things to clear all doubts regarding this question.

1. Given output order is correct i.e. first number will always be greater than second number in output i.e. output for first testcase is 6 4 not 4 6 as said by some people in comments.

2. Cases like (10,3) , (100,15) are not valid. But cases like (11,3) , (33,17) are valid.

3. Cases like (10,10) , (20,20) , (40,50) , (7,11) are also not valid.

Last edit: 2015-06-06 17:23:44
Aman Kumar: 2015-05-20 14:28:52

Got WA in first attempt :( , though working for all the test cases where output is complete int

Can fraction be an output ?

Last edit: 2015-05-20 14:29:52
kartikay singh: 2015-05-19 12:30:19

silly mistake caused 1 wrong answer :(
AC in 2nd go :D

rpc1: 2015-05-18 14:30:51

This is a trivial two-liner using python 2.7.

ATUL GUPTA: 2015-05-17 22:51:10

use python ( version 2.7 ) and get answer in just two lines

Praveen Kulkarni: 2015-05-10 08:02:37

Can somebody tell me what should be the answer to the below test case?
9
0
Can the answer be in fractions??

nap11: 2015-05-07 09:12:39

plz tell me wats wrong with this code
<snip>

Last edit: 2022-07-04 23:35:24
Dushyant Singh: 2015-04-21 11:31:59

@arvind kumar - Put #include<string.h> into your code and consider large input range of apples i.e. 10^100 which cannot be stored using long long int.


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