#Lutece0313. A Card Game

A Card Game

Migrated from Lutece 313 A Card Game

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

There was a popular card game when I was young. The rules are descried below:

First, choose 1313 pieces of cards labeled A,2,3,4,5,6,7,8,9,10,J,Q,K respectively and pile these cards, then you are asked to repeat the following operation for 1313 rounds. First take out one card on the top and put it on the bottom of this pile, then pick the card from the top of this new pile out and arrange it in a queue.Can you tell the original order of the pile of cards if the queue which you have arranged is A,2,3,4,5,6,7,8,9,10,J,Q,K?

Assume that you are given NN pieces of cards labeled 11 to NN and asked to repeat the operation for NN rounds. Every round you should firstly remove KK pieces of cards from the top to the buttom one by one, then pick the card from the top of this new pile out and arrange it in a queue. Can you tell the original order of the pile of cards if the queue which you have arranged is 1,2,N1, 2, \cdots N?

Input

First a integer TT (T10T\leq 10), indicates there are TT test cases. Every test case has two integers NN, KK(1N1061\leq N\leq 10^6, 1K101\leq K\leq 10).

Output

For the kthk_{th} case, assume that the original sequence (from top to bottom) is S1,S2,SNS_1, S_2, \cdots S_N. Then you should output Case #k: followed by a single number on a single line, which indicates the number of pairs satisfy that i<ji < j and Si>SjS_i > S_j.

Samples

2
13 1
13 2
Case #1: 28
Case #2: 34

Note

in the first case the sequence is: 7 1 12 2 8 3 11 4 9 5 13 6 10

in the second case the sequence is: 11 5 1 8 10 2 6 12 3 9 7 4 13

Resources

standy