Submit | All submissions | Best solutions | Back to list |
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]
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 |
hide comments
|
||||||||||||||
2014-09-15 19:17:48 md sajid tagala
@ganesh kumar first check the combination of 2 no's which add upto 10(7,3)(5,5)(6,4) but none of them has a difference of 3.so we cannot divide it according to this condition. |
||||||||||||||
2014-09-09 14:41:00 Sayantan Basu
python....<3 |
||||||||||||||
2014-09-07 18:53:39 Sandip Jana
AC in first go.... Java :D |
||||||||||||||
2014-08-31 07:59:58 vimal
if u trying in python and keep gettin NZEC than read "Example" section again . . . . :) Last edit: 2014-08-31 08:00:42 |
||||||||||||||
2014-08-09 20:26:40 pacman91
@all dont worry about the case total = odd and diff=even or vice versa |
||||||||||||||
2014-07-24 19:26:30 Sugam Anand
Finally got it !!, a must do problem |
||||||||||||||
2014-07-12 16:54:34 Gannu_raj
what will be output of test case total no of apples is 10 and klaudia has 3 more apples than natalia so according to me klaudia have 6.5 apples and natalia have 3.5 .Am i correct ? please reply am i correct or wrong. |
||||||||||||||
2014-07-03 11:11:19 Wasim Thabraze
This problem made me learn alot! |
||||||||||||||
2014-06-27 17:34:30 bond007
Hi Admin, I tried to submit my solution but got WA. Tried matching my output with some others on internet, it matched. I couldn't understand why my solution is not getting accepted. Could u please provide some sample input and desired output so that i can test my code. Thanks in advance. |
||||||||||||||
2014-06-23 16:16:00 mac93
Python 3.3 gives WA, same code in Python 2.7 is an AC... |