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
sakibmalik:
2020-05-09 18:58:27
Don't use any library if you wanna learn something
|
|
ttaahhssiinn:
2020-04-30 02:35:25
so finally got AC
|
|
ttaahhssiinn:
2020-04-29 23:11:58
okay im going insane with this one
|
|
abhishek_251:
2020-04-18 10:19:00
phew!!!! implementation |
|
trulyness:
2020-04-17 11:30:30
There are always exactly 10 test cases. If you're using C++, use strings. Take care of the stray zeros in the beginning. |
|
gabadzeluka:
2020-03-14 13:46:21
AC in one go. Dont give up. |
|
balraj_babrah:
2020-02-06 15:32:13
Try this test case 1000000000000000000000 9999999999999998 if you're getting WA.
|
|
preetham1239:
2019-12-21 18:15:40
Is it always 10 test cases (20 lines of input always) in the inputs? |
|
alone_musk:
2019-12-17 13:21:32
After so many iterations finally solved the problem in c++ using string manipulation. Check the test case like 5555 5555 ie when after subtraction the number goes to zero.Another edge case 5555 5553 etc. Last edit: 2019-12-17 15:33:24 |
|
phantom_w025:
2019-10-21 21:16:30
Don't use boost library in C++. Good question to practice string manipulation. |
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 |