1196 - Indomie

Time Limit : 3 Second

Memory Limit : 128 MB

Submission: 58

Solved: 27

Description
During recession, Felix needs to queue for SembakoPlus. Sembako, as we all know, stands for "Sembilan Bahan Pokok" which consists of 9 kinds of item: Rice, Sugar, Cooking-oil, Meat, Egg, Milk, Corn, Kerosene and Iodized Salt. SembakoPlus consists of Sembako and one more item: Indomie! Felix's favorite of all time!! (therefore, no wonder why he could stand for this long queue)




Each person in the queue is allowed to pick only one item. No need to ask, Felix wants only Indomie. Unfortunately, they are running out of SembakoPlus stock and currently there are three kinds of item left: Rice, Sugar and Indomie. As he could see from afar, he is quite sure that Rice and Sugar will be enough for everybody.



Given the number of remaining Indomie and the number of people queuing in front of Felix, your task is to count the probability that he will get his Indomie. Felix can't do programming right now as he is very nervous so he can抰 think logically. He needs your help!





Input
There will be multiple test cases for this problem. Each test case contains two integers N (1 <= N <= 50) and S (0 <= S <= 50), where N is the number of people queuing in front of Felix and S is the remaining number of Indomie.


Output
For each case, print in a single line the probability in percentage that he will get his Indomie with 5 digits precision (he's being paranoid).


sample input
2 1
3 2
4 0
4 1
10 10
14 9
30 14
sample output
50.00000
76.92308
0.00000
33.33333
99.99831
98.65515
95.16071
hint

Explanation for 1st sample test case:
There are two peoples queuing in front of Felix, so those two peoples could pick of the following combination {1st people, 2nd people}:
1. Rice, Rice
2. Rice, Sugar
3. Rice, Indomie
4. Sugar, Rice
5. Sugar, Sugar
6. Sugar, Indomie
7. Indomie, Rice
8. Indomie, Sugar

Since there is only one Indomie left, there are only 4 out of 8 combinations that ensure Felix to get his Indomie (1, 2, 4 and 5), hence the probability is 4/8 = 50%.

source
© 2015 HUST ACMICPC TEAM. All Right Reserved.