write a go solution for Description: You are given three multisets of pairs of colored sticks: - R pairs of red sticks, the first pair has length r_1, the second pair has length r_2, ..., the R-th pair has length r_R; - G pairs of green sticks, the first pair has length g_1, the second pair has length g_2, ..., the G-th pair has length g_G; - B pairs of blue sticks, the first pair has length b_1, the second pair has length b_2, ..., the B-th pair has length b_B; You are constructing rectangles from these pairs of sticks with the following process: 1. take a pair of sticks of one color; 2. take a pair of sticks of another color different from the first one; 3. add the area of the resulting rectangle to the total area. Thus, you get such rectangles that their opposite sides are the same color and their adjacent sides are not the same color. Each pair of sticks can be used at most once, some pairs can be left unused. You are not allowed to split a pair into independent sticks. What is the maximum area you can achieve? Input Format: The first line contains three integers R, G, B (1<=R,G,B<=200) — the number of pairs of red sticks, the number of pairs of green sticks and the number of pairs of blue sticks. The second line contains R integers r_1,r_2,...,r_R (1<=r_i<=2000) — the lengths of sticks in each pair of red sticks. The third line contains G integers g_1,g_2,...,g_G (1<=g_i<=2000) — the lengths of sticks in each pair of green sticks. The fourth line contains B integers b_1,b_2,...,b_B (1<=b_i<=2000) — the lengths of sticks in each pair of blue sticks. Output Format: Print the maximum possible total area of the constructed rectangles. Note: In the first example you can construct one of these rectangles: red and green with sides 3 and 5, red and blue with sides 3 and 4 and green and blue with sides 5 and 4. The best area of them is 4x5=20. In the second example the best rectangles are: red/blue 9x8, red/blue 5x5, green/blue 2x1. So the total area is 72+25+2=99. In the third example the best rectangles are: red/green 19x8 and red/blue 20x11. The total area is 152+220=372. Note that you can't construct more rectangles because you are not allowed to have both pairs taken to be the same color.. Output only the code with no comments, explanation, or additional text.