#Lutece0003. BiliBili, ACFun… And More!

BiliBili, ACFun… And More!

Migrated from Lutece 3 BiliBili, ACFun… And More!

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Some of you may have already noticed, there is a team in our final contest whose name is UESTC_BiliBilii, with user id as ACfun. Actually, both of them are websites mainly for watching videos.

So in this problem we also deal with video-share websites. When watching videos online, two numbers are very important. One is the playing speed: the speed you play the video, say XX KB per second. The other is the downloading speed: the speed the computer downloads the video from the internet, say YY KB per second. Obviously, if X>YX>Y, then you may have to pause for some time, since you cannot play something that hasn’t been downloaded!

The playing speed can also be described as the moving speed of the circle at the bottom of the videos, see the pictures below.

201305171505582061.jpg

The circle will move along the blue bar, which is full now, indicating that downloading is already complete.

In this problem, we suppose that XX and YY will always be constant.

Kennethsnow has a special habit when watching videos, let me tell you. First of all, he will wait for some time to download part of the video, say TT seconds. Then, he starts to play the video.

If at a certain time, the video is paused, then kennethsnow will move the cursor(The circle in the picture) instantly to the leftmost position! That means, he will watch the video again, from the very beginning.

He will do this again and again, until the video comes to an end. Given XX, YY, TT, and the total size of the video, what is the time kennethsnow needs, to finish his watching?

Input

The first line of input contains a number TT, indicating the number of test cases. (T1000T\leq 1000).For each case, there will be four integers XX, YY, TT and SS, which is the playing speed, downloading speed, the time kennethsnow will wait before playing, and the total size of video, given in KB. (1X,Y,T201\leq X,Y,T\leq 20, 1S1001\leq S\leq 100).

Output

For each case, output Case #i: first. (ii is the number of the test case, from 11 to TT). Then output the time kennethsnow needs to finish watching, in decimals, round to 33 decimal places.

Samples

3
1 1 2 10
2 1 3 20
3 1 4 30
Case #1: 10.000
Case #2: 19.000
Case #3: 26.250

Resources

The 11th UESTC Programming Contest Final