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
teja:
2013-07-13 12:44:02
I used strings to do computations.In case of test cases mentioned by @Daniel, I am appending appropriate ".5" at the end.My logic is correct but i am getting WA.Can any one think of where the problem could be? Last edit: 2013-07-13 12:46:42 |
|
Prakhar Gupta:
2013-07-08 08:24:18
pls help...my code work fine in ideone..
|
|
Chandan Mittal:
2013-05-14 11:30:17
same code worked in PY2.7 bt not in C
|
|
[Lakshman]:
2013-05-12 18:30:15
@Parshant garg No data type can handle it, You can use Python or Java Biginteger instead of c/c++, In c you need to built your own container.. Last edit: 2013-05-12 18:30:46 |
|
Parshant garg:
2013-05-09 12:18:46
how to achieve 10^100.... is it long long int work? |
|
robot:
2013-05-08 18:38:41
@Jay check this: http://docs.python.org/3.0/whatsnew/3.0.html#print-is-a-function |
|
Daniel:
2013-03-29 15:05:26
I don't get this!
|
|
Syntax Terror:
2013-03-27 03:52:42
First problem in python!! :) |
|
reyansh:
2013-01-28 22:22:43
my first submission in python :) |
|
Atul Kumar Verma:
2013-01-25 10:46:40
straight forward problem AC in first attempt. |
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 |