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
priya_goel02:
2018-03-30 21:37:57
Always getting runtime error (NZEC) |
|
badasshackme:
2018-03-10 19:30:58
> Input:
|
|
shubham_chopra:
2018-01-31 12:06:42
For those wondering how to solve this in c++ without using string manipulation.
|
|
keshavsharma:
2017-12-28 12:31:47
don't forget about test-cases guys, costed me 1WA :) and try to implement it using array/string instead of big integer library or boost |
|
codesniper99:
2017-12-27 09:01:43
Fiitjee rocks. you cant clear jee useless
|
|
bansals:
2017-12-25 00:40:15
Check the case 103 103 and 108 108 |
|
mindrolin:
2017-12-09 13:13:50
Don't worry about an odd-even combination as input. It's not said that we can cut an apple so it's against the logic. (result would be a fraction)
|
|
tm1138:
2017-11-08 12:57:18
finally AC in cpp Last edit: 2017-11-08 13:05:14 |
|
uday1053:
2017-10-14 12:40:48
Frekin Easy with Python3 |
|
aayushi2:
2017-10-06 20:14:30
what will be the answer if the test case is combiantion of even and odd ex. 13 and 2. it should come 7.5 and 5.5 which is not possible so two cases comes 7 and 5 or 8 and 5 which one will be correct and why? |
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 |