SPOJ54(Julka)

54. Julka

Problem code: 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]

 1 import  java.io. * ;
 2 import  java.math. * ;
 3 import  java.util. * ;
 4
 5 ExpandedBlockStart.gifContractedBlock.gif public   class  Main  {
 6ExpandedSubBlockStart.gifContractedSubBlock.gif    public static void main(String[] args) {
 7        
 8        Scanner cin = new Scanner(System.in);
 9        BigInteger total, cc, ans1, ans2;
10        for(int i = 0; i < 10; i++)
11ExpandedSubBlockStart.gifContractedSubBlock.gif        {
12            total = cin.nextBigInteger();
13            cc = cin.nextBigInteger();
14            
15            ans1 = total.subtract(cc);
16            ans1 = ans1.divide(BigInteger.valueOf(2));
17            ans2 = ans1;
18            ans1 = ans1.add(cc);
19            System.out.println(ans1);
20            System.out.println(ans2);
21        }

22    }

23}

24 // 2009-05-31 13:56:00     Xredman    Julka    accepted  0.36      219M      JAVA 

转载于:https://www.cnblogs.com/Xredman/archive/2009/05/31/1493195.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值