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
Nethaji Kumar:
2014-02-14 14:29:30
what is the answer for 30 3 |
|
Aragon!!!:
2014-02-05 13:31:07
Java solution is very easy , but in C definitely not for beginners |
|
Aragon!!!:
2014-01-17 10:14:33
@Suriya Prabha.T : u really cant store store 10^100 digits in any data type in c, u will be needing arrays,so ur code wont work for extreme cases, if u wana do simple math then use java(big int), in C this ques is very tricky |
|
Saurabh Singh Rana:
2014-01-07 16:07:53
Python 3.3 WA but Python 2.7 AC. Python people take care of this. |
|
Samil Vargas:
2013-12-31 14:23:49
this problem is so easy to but i still gettin WA and im using Python 2.7 plz i need some hints cause i wanna solve this problem. |
|
dpdrmj:
2013-12-25 14:45:39
@Naruto Uzumaki ...the algo u have used to half the number is wrong.check for input 114 6 |
|
Archangel:
2013-12-25 04:07:17
I solved it using BigInteger in java but the problem is worth solving in C.
|
|
Aradhya Makkar:
2013-12-25 03:01:25
this mught help newbies who are getting wrong answers. http://forum.codecall.net/topic/72184-cc-adding-two-big-numbers/ |
|
anasalsaadi:
2013-12-20 22:43:24
you want to tchange this variable from int to reall |
|
thecodekaiser:
2013-12-16 18:02:46
Why is it that a logic gives AC for py2.7
|
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 |