#Lutece0321. Milk And Bread

Milk And Bread

Migrated from Lutece 321 Milk And Bread

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

XiaoA and XiaoB are eating breakfast and they are brothers. Strangely, XiaoA has only some kinds of milk while XiaoB has only some kinds of bread originally. They decide to share their breakfast together. As we all know, bread with milk leads to the best taste.

XiaoA has NN kinds of milk, and XiaoB has MM kinds of bread.Based on their preferences, each milk has a enjoyed value XiX_i, and each bread has a enjoyed value YiY_i. Because of hating some kinds of these, XiX_i or YiY_i may be negative.

What's more, they should enjoy their milk and bread until there is nothing according to the rules below:

When both of milk and bread left, they choose one kind of milk and one kind of bread to make a pair and enjoy it. They will get the enjoyed value (Xi+Yj)2(X_i + Y_j)^2 for this pair.

And, if there is some milk left only, they will get the enjoyed value Xi2X_i^2 for the ithi_{th} kind of milk.

Also, if there is for some left bread only, the enjoyed value is Yj2Y_j^2 for the jthj_{th} kind of bread.

Now they ask you to calculate the maximum sum of the enjoyed value they will get.

Input

The first line of the input is the number of test cases TT(1T101\leq T\leq 10).

For each case, in the first line there are two integers NN , MM(0N,M10000\leq N, M\leq 1000), the number of kinds of milk and bread.The second line has NN integers XiX_i(100Xi100-100\leq X_i\leq 100), the third line has MM integers YiY_i(100Yi100-100\leq Y_i\leq 100).

Output

For each test case, output one line. First, output Case #C: , where CC is the number of test case, from 11 to TT. Then,output the maximum sum of the enjoyed value they will get for this case.

Samples

2
2 2
1 2
3 4
3 1
2 4 5
7
Case #1: 52
Case #2: 164

Note

For the second case, firstly they choose the pair of the 3rd3_{rd} milk and the 1st1_{st} bread get enjoyed value (5+7)2=144(5 + 7)^2 = 144, then they eat the 1st1_{st} and 2nd2_{nd} milk get 22+42=202^2 + 4^2 = 20, so the total enjoyed value is 164164.

Resources

ty12