Statistics

Problem Statement for "TravellingSalesmanEasy"

Problem Statement

You are a traveling salesman. You have already heard a lot about how hard the problems of a traveling salesman can be. Luckily, the one you currently have seems easier.

There are M cities where you can sell products. The cities are conveniently numbered 1 through M.

You have a case that contains multiple items. Each of those items can only be sold in one of the cities. You are given information about those items in int[]s profit and city. For each valid i, you have an item that can be sold in city[i], and doing so would bring you profit[i] dollars of profit. Obviously, you can only sell each item at most once.

You have already planned your business trip: a sequence of cities you are going to visit. These are given in the int[] visit. Each time you visit a city you may sell at most one item.

Compute and return the maximum total profit you can obtain.

Definition

Class:
TravellingSalesmanEasy
Method:
getMaxProfit
Parameters:
int, int[], int[], int[]
Returns:
int
Method signature:
int getMaxProfit(int M, int[] profit, int[] city, int[] visit)
(be sure your method is public)

Constraints

  • M will be between 1 and 100, inclusive.
  • profit will have between 1 and 2500 elements, inclusive.
  • city will have exactly the same number of elements as profit.
  • Each element of profit will between 1 and 100, inclusive.
  • Each element of city will be between 1 and M, inclusive.
  • visit will have between 1 and 2500 elements, inclusive.
  • Each element of visit will be between 1 and M, inclusive.

Examples

  1. 2

    {3,10}

    {1,1}

    {2,1}

    Returns: 10

    There are 2 cities, and you have 2 items. Both of these two items can only be sold to city 1, with one giving you profit 10, and the other giving profit 3. Your trip consists of a visit to city 2 and then a visit to city 1. At city 2, you cannot sell any item, so your profit in this case is zero. At city 1, you can sell the item with profit 10. Thus, the total answer is 0+10=10, which is the maximum profit you can achieve.

  2. 1

    {3,5,2,6,4}

    {1,1,1,1,1}

    {1,1,1}

    Returns: 15

    It is possible for you to visit a city multiple times. Each time you visit the city, you may sell another item.

  3. 6

    {77,33,10,68,71,50,89}

    {4,1,5,6,2,2,1}

    {6,5,5,6,4}

    Returns: 155

  4. 7

    {22,91,53,7,80,100,36,65,92,93,19,92,95,3,60,50,39,36,2,30,63,84,2}

    {5,3,4,3,6,5,6,6,5,2,7,6,3,2,6,1,7,4,6,3,7,2,5}

    {5,7,1,3,6,2,5,7,3,6,3,2,7,3,1,3,1,7,2,3,1,1,3,1,6,1}

    Returns: 1003

  5. 85

    {94,21,99,27,91,1,64,96,32,39,84,71,97,53,73,20,7,13,33,45,5,85,7,87, 94,37,48,30,5,85,47,62,91,18,71,37,7,25,75,17,40,19,89,85,86,87,45, 12,61,71,32,73,63,89,25,51,60,76,32,2,69,78,28,32,74,44,47,11,82,5, 2,28,54,35,67,44,35,6,70,66,77,7,60,67,33,66,21,91,76,75,16,79,20,24, 91,31,2,50,11,19,93,49,4,7,55,9,95,39,54,12,48,38,73,100,57,97,44,2, 2,51,40,4,51,3,95,93,56,88,60,98,67,7,99,46,71,75,24,82,87,29,92,92, 81,87,34,83,58,46,79,53,38,32,97,41,65,10,54,81,42,37,76,28,11,50, 13,29,15,99,73,72,2,81,39,75,1,54}

    {72,69,19,25,3,65,10,42,37,76,29,34,41,14,46,46,37,55,30,32,84,57,74, 16,10,48,67,31,44,84,11,59,67,63,5,31,28,71,3,21,42,21,61,50,5,79,79, 27,69,33,47,70,76,70,17,73,28,64,77,84,9,6,63,71,17,71,40,9,8,16,76, 76,6,53,47,10,45,31,78,55,13,35,50,43,32,78,78,44,20,56,24,43,80,62, 72,16,5,72,67,29,11,51,64,27,7,44,59,1,40,71,64,63,67,81,72,22,73,59, 21,44,3,18,9,75,72,43,13,44,79,42,58,49,81,44,42,41,35,81,63,74,42,79, 42,39,45,49,18,73,53,36,80,34,75,57,10,79,79,33,48,18,81,3,69,36,37, 49,54,29,17,81,83,13,8,69,5,84}

    {39,29,15,5,3,65,29,64,60,21,13,10,73,75,44,84,15,61,26,49,31,27,83,24, 16,55,60,74,71,53,68,15,75,15,36,4,47,9,77,45,63,32,77,84,8,68,11,5,18, 80,36,52,42,59,79,83,81,29,43,70,29,19,68,5,83,60,71,66,62,81,85,39,42, 40,69,60,34,12,2,4,31,36,81,33,71,32,68,5,30,59,61,10,71,49,63,30,62, 83,35,56,82,2,14,59,68,74,32,31,3,28,38,54,38}

    Returns: 4369

  6. 69

    {97,38,41,16,69,74,20,64,50,24,19,6,66,83,18,41,77,63,94,46,44,78,91,70,84,88,52,88,27,6,62,7,19,45,23,36,53,80,95,44,68,71,94,94,53,7,99,30,31,17,12,69,27,87,80,56,24,39,85,3,2,29,64,65,14,11,48,70,75,63,60,41,98,48,44,41,54,28,43,93,57,47,31,20,78,62,68,65,73,64,41,1,68,44,47,97,72,6,20,97,25,46,60,42,38,94,43,31,12,94,65,20,14,28,83,13,50,57,34,39,71,67,71,22,27,16,47,41,38,90,83,76,22,64}

    {65,24,61,13,23,42,37,32,56,20,37,7,45,29,25,43,25,53,2,25,51,64,65,35,55,4,1,24,58,69,38,42,51,55,33,61,61,28,31,52,53,3,23,34,13,27,28,8,59,17,7,25,48,27,37,44,16,13,13,49,34,42,38,16,5,6,23,15,2,17,43,66,68,39,29,48,8,42,34,18,28,61,19,19,2,23,39,53,15,63,34,44,1,38,68,15,8,44,28,18,2,46,4,43,48,1,40,34,49,67,35,50,24,52,33,69,47,39,19,22,9,14,22,3,53,4,11,62,32,23,4,31,58,69}

    {64,23,46,17,17,11,9,41,37,15,37,5,31,39,65,10,26,58,69,50,24,68,6,33,18,52,27,11,26,56,29,25,21,12,22,45,21,24,3,59,11,32,34,66,29,26,37,30,29,36,55,45,66,31,5,9,10,36,24,16,57,34,17,53,15,16,53,3,38,54,61,3,65,32,36,64,52,40,3,12,12,42,14,21,65,47,62,3,54,20,24,1,5,55,31,21,16,33,51,19,18,55,6,55,48,50,41,24,54,46,30,17,60,13,2,61,6}

    Returns: 3962

  7. 56

    {10,53,92,59,20,39,41,53,94,36,25,86,63,21,93,76,88,57,36,37,96,92,62,96,82,67,48,38,52,100,93,68,60,89,21,20,38,84,38,48,21,56,85,11,85,4,73,30,79,23,83,15,3,62,79,22,100,31,65,18,39,68,51,11,96,73,78,14,34,30,3,15,100,60,54,29,44,78,63,21,62,13,93,93,74,54,76,66,69,10,83,86,22,21,81,7,71,80,13,56,51,77,8,74,56,14,66,93,24,76,14,24,13,25,97,86,73}

    {50,41,13,45,5,24,16,52,38,32,17,38,29,2,16,43,50,2,37,44,54,3,17,13,38,20,41,3,52,17,48,3,8,52,14,35,28,35,56,31,27,50,9,23,49,5,30,19,38,46,27,41,34,42,45,33,52,32,15,43,52,2,28,12,52,25,39,24,21,15,36,27,38,1,20,1,45,37,1,8,36,36,21,23,11,47,30,53,14,17,26,56,51,56,9,36,10,10,28,25,35,44,38,43,48,28,55,54,35,47,8,12,1,11,28,45,24}

    {4,3,29,23,8,4,2,55,26,11,32,7,17,55,7,30,21,55,55,24,39,24,42,55,34,26,16,53,54,8,52,19,33,24,48,35,36,6,45,11,44,5,6,52,21,46,8,21,51,54,37,3,10,37,43,7,2,40,1,47,39,22,46,7,13,34,56,10,27,37,8,1,17,1,7,30,40,47,6,23,53,8,35,33,54,41,37,54,6,48,45,7,52,6,32,35,31,14,47,44,11,33,53,56,2,27,20,17,33,53,27,1,15,51,26,16,20,30,15,51,45,24,37,31,32,20,54,50,30,47,19,46,23,5,29,56,15,27,24,13,5,14,56,11,41,14,27,44,38,53,7,26,50,17,26,40,9,4,27,42,29,25,32,44,15,5,30,43,12}

    Returns: 5171

  8. 63

    {42,12,40,3,3,50,79,11,58,77,28,36,76,72,72,75,71,78,56,85,53,57,72,8,96,96,74,17,61,83,59,89,90,58,28,35,58,47,88,19,2,69,5,2,52,19,48,80,99,46,26,86,96,10,33,49,44,68,37,47,38,6,98,88,59,74,88,4,81,1,5,80,20,74,89,54,5,10,51,88,52,66,77,43,35,66,37,34,22,67,50,97,70,17,40,47,59,96,48,67,96,87,71,21,40,69,78,51,66,60,52,75,14,9,12,89,1,2,28,15,71,59,18,54,45,39,9,35,67,56,2,74,6,42,8,7,60,26,52,65,25,96,7}

    {32,16,49,20,38,55,32,54,53,28,8,39,37,33,51,46,48,3,4,47,25,44,6,22,57,21,53,25,7,10,40,49,37,39,18,6,44,28,36,33,14,60,56,61,21,46,32,47,41,22,34,7,21,6,5,5,53,46,31,14,56,16,29,51,1,36,25,60,15,62,41,60,60,2,29,29,35,5,63,61,1,58,22,63,63,24,20,63,34,52,12,30,44,19,15,40,63,22,48,27,28,56,12,53,33,11,51,44,21,16,52,33,44,21,1,62,1,8,39,51,29,14,19,50,54,36,30,2,42,49,6,37,17,21,4,61,45,13,55,18,19,20,27}

    {10,8,28,6,58,9,15,25,19,50,20,43,37,43,23,17,8,7,20,56,17,18,1,30,5,22,28,39,59,46,22,17,43,50,18,42,2,33,29,21,45,51,51,30,33,46,8,45,45,10,16,6,38,33,40,29,56,18,15,1,14,33,37,21,51,4,42,32,45,58,40,29,20,18,47,35,30,34,29,28,34,46,18,40,26,14,21,50,9,45,18,3,31,50,15,55,61,29,4,18,45,6,21,56,56,31,55,50,23,28,21,21,21,11,35,5,19,28,45,7,60,61,34,4,39,30,25,7,22,60,34,11,62,46,54,9,49,53,36,18,36,59,62,17,23,24,8,59,14,13,11,11,12,1,45,9,19,15,19,62,11,4,5,48,30,26,56,37,47,56,44,19,21,61,16,38,51,51,38,42,32,33,42,25,12,39,29}

    Returns: 5862

  9. 52

    {81,70,74,93,6,34,19,46,97,43,15,82,72,94,51,56,11,100,99,21,93,91,97,16,91,84,68,1,79,60,72,69,36,56,86,21,51,54,60,88,1,9,22,61,47,26,41,85,33,94,27,37,83,35,29,48,2,35,44,64,51,89,67,10,29,85,16,49,1,64,70,5,69,48,83,70,19,62,8,67,73,64,80,27,12,89,61,82,52,43,93,70,67,76,99,2,20,78,15,34,21,75,74,64,76,91,7,40,87,97,12,92,69,79,89,41,5,71,45,68,32,72,79,21,21,48,35,92,8,15,63,83,7,82,60,80,87,36,82,73,81,49,85,67,20,70,59,32,92,1,19,2,93,35,85,71,65,53,36,70,84,98,61,15,35,55,25,67,10,71,64,62,15,9,82,12,49,9,63}

    {20,35,3,28,41,10,15,9,33,38,9,8,38,1,24,21,31,22,31,19,52,38,7,50,19,38,5,24,49,47,6,38,40,41,23,17,41,6,45,21,45,20,16,11,14,36,51,50,32,10,48,9,7,15,46,26,21,6,16,4,33,46,30,1,46,24,38,28,35,5,35,15,30,47,34,26,5,45,35,29,17,22,29,39,9,48,7,49,10,49,9,3,23,26,26,44,36,49,7,32,20,16,32,25,20,22,2,36,19,40,48,32,6,14,24,14,22,41,15,50,28,27,15,20,14,47,47,38,36,8,32,47,27,22,10,31,32,31,2,49,39,36,16,42,27,50,37,37,6,49,22,12,52,31,8,12,45,13,39,32,43,34,14,27,19,21,9,29,49,29,42,26,42,49,41,25,25,43,49}

    {13,20,47,51,30,24,9,1,26,41,14,20,41,33,35,15,41,43,17,5,13,4,12,50,32,2,52,12,32,33,52,3,48,16,23,36,39,13,41,31,27,11,25,30,33,26,47,5,32,8,29,30,36,3,15,30,32,14,51,39,1,50,44,17,32,35,13,46,37,27,6,38,27,15,45,19,21,15,21,17,13,24,12,5,2,10,32,41,41,15,1,3,3,5,43,15,2,48,24,26,38,7,29,39,24,32,29,44,17,37,22,38,19,22,40,36,14,50,20,5,52,13,42,36,29,49,48,25,47,7,48,8,50,11,44,30,13,46,23,26,52,12,24,21,4,17,20,52,25,38,23,6,33,47,43,25,14,17,31,19,14,12,5,47,22,27,14,48,25,3,38,49,48,21,6,1,10,30,15}

    Returns: 7844

  10. 100

    {35,64,97,47,12,2,34,44,49,62,76,86,55,24,16,12,7,14,70,37,12,80,91,34,59,11,46,80,41,95,10,20,68,46,87,79,66,63,41,78,90,27,49,84,64,91,90,64,90,58,83,13,83,8,53,22,82,65,48,10,70,68,42,26,67,87,89,79,10,38,42,59,14,75,29,67,26,63,4,79,13,44,10,36,88,42,80,55,87,86,81,41,17,46,36,84,48,43,11,18,7,86,29,19,30,85,93,38,73,88,16,58,33,57,45,84,21,56,29,88,72,68,36,53,84,6,40,76,97,64,93,6,72,14,3,55,39,91,62,95,42,26,42,46,6,29,40,52,65,90,20,8,13,87,83,30,65,28,17,20,34,60,67,6,50,72,82,21,15,93,71,100,56,98,72,77,69,16,78,80,72,53,58,42,56,32,40,40}

    {38,64,72,35,17,81,40,71,8,61,44,45,5,7,49,78,27,53,18,47,50,92,67,1,79,49,79,79,30,58,81,41,83,13,14,20,51,32,3,6,58,75,80,69,54,24,46,29,89,66,77,12,96,75,62,13,40,30,30,28,83,68,62,12,22,30,29,66,40,6,63,57,11,66,89,14,54,9,62,78,46,59,28,10,34,77,15,87,85,69,63,95,48,17,72,13,89,62,90,93,53,49,5,21,41,31,86,69,26,15,19,38,55,42,47,3,51,72,38,83,11,66,64,83,31,43,12,63,15,4,88,4,22,43,73,87,89,28,38,11,14,27,48,10,29,90,51,57,1,2,9,7,84,72,99,28,23,17,97,47,51,82,86,72,58,17,79,95,85,15,27,44,15,25,6,95,66,32,69,32,39,94,84,83,81,41,88,41}

    {29,84,45,6,60,99,51,97,84,37,28,92,11,40,62,27,83,11,45,2,76,30,8,75,13,50,53,48,8,8,99,79,89,22,96,14,75,100,9,70,3,24,20,83,90,73,44,30,81,15,25,93,52,85,31,58,31,92,3,83,88,15,36,24,60,34,68,26,93,52,89,98,64,59,96,38,93,77,66,81,50,85,15,14,83,46,85,86,33,92,14,52,6,91,81,42,7,15,77,27,92,63,88,9,97,16,36,63,66,12,45,41,38,26,19,95,80,62,87,32,32,49,35,16,46,22,5,28,83,61,6,76,73,65,75,88,12}

    Returns: 6097

  11. 77

    {43,26,39,2,31,2,15,16,66,64,1,13,6,22,25,83,100,29,97,1,69,30,23,70,74,87,22,19,40,57,81,34,12,48,30,55,100,28,70,28,45,10,77,41,35,53,15,70,72,16,29,90,29,10,81,96,54,1,58,51,91,6,31,29,50,82,3,32,34,68,36,10,36,18,90,26,70,25,46,54,56,29,9,44,69,61,51,25,98,71,13,48,1,68,78,62,8,89,89,14,76,14,3,75,61,6,93,94,20,15,96,9,65,10,77,44,77,75,9,48,81,59,28,42,15,25,66,89,55,10,12,100,77,85,46,30,12,36,87,66,7,25,43,30,66,94,20,56,38,2,43,59,34,61,43,55,28}

    {70,55,19,37,38,4,76,58,35,69,40,24,41,28,5,37,42,24,45,47,7,2,26,15,64,25,31,28,51,25,46,65,1,64,56,27,71,38,32,75,38,72,60,12,46,12,71,51,77,55,21,73,5,8,36,65,1,40,50,25,30,49,46,69,15,11,70,57,32,21,21,60,4,58,21,33,9,57,6,13,59,47,31,77,8,18,29,25,50,74,22,58,22,52,6,50,58,26,61,62,67,16,63,15,56,34,29,25,26,24,58,38,55,24,55,35,73,18,72,45,8,23,8,69,77,42,21,6,22,19,70,1,69,11,44,46,56,53,34,10,55,72,72,66,8,11,68,25,67,7,42,35,25,56,36,51,72}

    {65,73,38,55,57,12,73,26,31,61,27,52,51,31,43,76,10,25,47,34,5,72,68,39,32,58,28,72,34,59,6,75,50,71,26,48,20,38,60,9,75,17,50,16,22,11,2,64,24,7,44,60,46,31,26,48,6,55,20,36,6,13,4,37,65,7,29,24,69,26,1,54,28,40,26,11,5,30,24,55,15,2,34,29,77,9,49,2,11,41,74,10,76,52,37,44,22,49,30,6,49,52,6,26,1,18,77,76,70,77,7,2,48,45,40,65,22,53,22,75,32,27,57,69,10,74,41,52,4,57,17,7,28,18,27,52,66,64}

    Returns: 4665

  12. 72

    {85,71,27,65,38,77,97,15,39,100,9,90,8,32,65,82,92,64,80,57,30,84,92,42,51,64,50,38,76,100,45,66,25,40,86,70,7,56,5,82,96,57,77,17,30,1,41,39,49,72,31,17,43,5,5,40,94,94,20,99,12,11,64,31,19,61,26,42,41,37,57,39,36,14,66,4,99,4,38,100,29,28,92,60,33,86,36,22,7,32,96,6,85,2,70,60,18,41,66,35,65,98,67,14,91,57,73,93,80,98,87,77,92,33,84,46,5,7,60,75,24,7,29,49,45,2,74,98,13,35,77,83,33,53,74,6,37,90,90,90,46,46,73,51,11,5,51,43,60,100,66,62,35,82,11,19,50,16,1,73,49,81,77,58,22,88,74,3,73,71,48,40,30,54,12,7,14,16,65,6,6,92,89,58,71,2,35,91}

    {17,52,60,26,51,37,37,51,39,11,43,22,13,55,1,20,70,30,39,57,23,43,43,58,68,57,56,5,14,48,64,27,39,70,54,19,67,23,68,62,34,43,2,15,26,56,16,71,41,14,12,24,61,29,64,24,53,11,52,5,44,18,48,48,72,14,67,44,66,20,64,47,60,44,32,10,65,44,26,8,61,9,26,49,62,67,5,10,60,25,17,12,23,5,5,58,31,68,64,36,18,66,67,26,4,6,19,52,8,40,46,7,57,68,36,29,52,20,59,19,38,70,17,65,8,43,43,46,32,37,27,27,55,54,45,59,29,72,22,23,3,71,3,18,26,35,2,13,47,60,16,30,32,40,48,26,24,21,52,72,26,56,41,45,16,8,1,49,35,14,44,52,50,11,26,68,41,44,49,46,35,26,27,16,5,39,29,3}

    {37,7,70,31,7,35,40,20,11,16,52,66,34,30,6,39,27,28,14,53,23,12,19,53,3,18,61,46,31,21,61,55,58,61,45,13,50,46,34,47,14,39,47,21,67,22,14,19,21,38,23,72,8,59,57,67,65,51,55,15,19,42,38,8,25,20,57,6,4,71,8,42,15,36,70,35,35,57,65,55,39,35,69,12,47,55,46,11,39,63,55,72,25,36,15,9,49,57,19,36,53,9,21,35,43,33,11,72,54,3,59,31,39,24,26,47,49,9,53,66,72,50,27,3,8,7}

    Returns: 5379

  13. 62

    {67,93,7,77,39,63,80,92,31,17,9,77,8,78,32,59,70,74,80,87,5,65,52,12,91,75,31,92,37,38,33,90,79,88,19,70,98,83,55,75,7,85,79,12,87,62,71,31,65,52,37,65,23,46,24,46,97,42,32,97,78,67,74,78,54,2,34,15,33,65,100,62,93,30,29,95,17,51,71,38,92,39,97,12,83,9,44,95,54,10,26,56,48,21,7,59,17,88,16,98,87,84,74,62,6,44,82,26,48,46,17,55,78,96,56,66,58,82,77,73,61,84,36,71,10,3,93,63,73,25,52,19,62,35,47,22,78,92,25,80,83,52,4,5,33,3,59,25,39,23,99,15,94,18,82,93,91,3,13,76,21}

    {36,12,22,30,3,6,29,56,10,49,6,6,4,33,22,52,7,52,59,48,59,17,5,29,12,36,19,17,25,59,17,5,38,41,14,46,37,9,27,11,30,56,42,35,14,41,7,25,11,21,45,29,45,41,27,62,52,24,55,23,10,48,3,62,18,20,44,50,43,26,54,11,40,27,28,49,39,56,31,44,40,39,27,19,47,57,4,7,34,7,13,7,4,56,56,47,54,48,60,16,24,55,12,18,28,11,35,38,27,8,40,16,45,17,8,26,12,33,47,18,3,18,12,23,44,40,14,36,22,28,52,3,55,53,40,60,49,24,17,32,33,57,26,36,55,37,38,30,59,59,33,27,26,60,14,24,54,40,52,33,7}

    {33,3,21,20,45,24,49,52,10,12,61,57,25,58,37,39,14,32,48,9,19,23,27,42,33,31,9,31,11,16,47,2,29,53,9,42,56,7,18,60,43,21,53,37,11,10,25,27,48,39,32,25,37,57,11,52,42,4,49,36,36,1,19,9,30,41,15,34,32,14,33,16,51,49,9,15,49,44,10,34,60,15,42,16,38,61,50,13,34,42,51,5,61,51,35,57,16,41,57,2,1,33,8,62,4,47,61,5,33,4,33,45,52,26,16,56,40,60,42,48,20,37,25,27,49,1,49,6,55,30,38,61,23,11,16,9,40,30,13,52,57,19,49,58,35,32,44,37,32,28,41,51}

    Returns: 5670

  14. 94

    {45,80,95,91,53,17,88,96,16,77,76,44,14,56,100,97,3,39,95,99,85,61,52,9,33,48,46,9,74,11,38,22,48,1,39,81,82,89,28,13,18,10,48,68,71,38,50,17,5,74,62,22,47,15,50,2,76,63,20,83,78,59,15,34,72,57,61,22,56,74,4,52,78,21,22,73,57,77,38,17,47,25,66,4,82,64,30,86,79,30,20,26,70,11,69,22,48,3,55,35,13,90,75,64,45,24,39,37,23,78,2,88,61,6,52,100,23,86,51,49,40,44,28,31,71,49,8,96,77,58,74,82,31,33,48,75,24,91,91,16,52,57,38,79,61,84}

    {61,3,19,50,45,3,8,46,38,17,88,79,55,20,11,81,65,60,39,11,90,79,20,36,7,43,32,81,66,5,41,71,94,49,67,75,65,89,34,37,71,41,25,11,42,44,68,6,44,41,63,13,2,87,7,42,73,65,54,50,49,77,12,58,70,67,63,91,19,40,58,82,6,51,38,85,3,40,77,28,57,89,83,86,17,51,10,85,89,90,29,61,81,75,22,40,28,25,68,50,46,2,10,91,11,37,15,48,14,71,23,10,21,67,28,64,58,47,36,20,20,70,25,55,66,7,58,3,54,12,27,35,44,52,26,75,59,31,13,23,59,93,33,36,37,10}

    {79,28,84,12,37,84,1,54,43,68,19,36,11,46,58,70,25,70,21,29,53,28,25,41,91,19,71,7,37,75,48,18,49,35,34,39,18,12,45,60,79,21,45,12,36,64,76,6,61,19,93,88,82,8,10,79,86,57,20,28,14,53,78,92,42,82,57,13,41,32,13,38,61,39,56,42,4,51,10,44,56,68,21,43,21,74,37,5,71,80,69,47,94,38,18,15,7,53,13,8,68,87,7,72,34,77,33,62,49,45,12,48,5,25,53,4,76,85,24,34,82,85,81,54,42,1,88,38,92,14,27,42,31,20,48,30,39,3,79,72,39,34,70,30,30,13,10,29,45,58,53,37,89,46,49,91,21,62,82,39,38,62,44,43,30,57,5,27,88,63,64,69,66,31,50,10,81,46,68}

    Returns: 4973

  15. 53

    {15,31,25,75,18,44,1,66,9,68,62,23,11,67,31,97,4,28,71,59,63,62,93,22,77,27,99,21,17,72,47,8,36,35,80,18,78,86,56,26,64,73,4,99,41,26,35,41,71,50,94,87,49,38,90,33,56,87,91,26,69,74,15,99,49,22,29,62,86,48,83,54,62,99,41,31,50,93,48,53,94,80,31,41,28,69,33,97,60,43,99,76,54,88,93,78,26,38,13,44,66,65,54,10,93,29,59,48,80,2,82}

    {7,23,19,5,41,25,33,15,40,27,33,1,3,38,3,27,52,11,32,2,44,7,43,13,52,50,42,11,21,44,51,37,17,36,51,39,15,6,10,37,28,36,14,9,2,27,37,29,9,9,33,14,44,18,12,49,12,33,36,30,29,8,5,38,8,33,41,14,16,21,5,5,1,27,11,6,25,27,29,1,45,11,4,15,37,1,45,47,41,48,12,38,28,25,34,14,28,34,22,3,31,17,48,32,44,48,22,11,21,48,45}

    {21,32,33,32,20,21,33,48,23,19,50,51,30,5,52,9,19,40,14,36,53,34,14,9,35,53,16,3,50,3,39,42,19,8,24,39,20,19,46,25,21,52,3,21,22,31,7,31,52,52,49,13,23,10,30,2,40,12,19,12,15,10,45,26,51,42,46,36,43,39,50,27,32,20,15,44,26,34,30,11,40,5,6,40,1,10,37,28,29,25,53,18,47,26,11,36,51,19,10,20,33,49,16,11,43,8,41,51,11,14,8,34,53,28,31,44,27,7,7,50,42,37,37,14,1,22,18,44,29,38,52,33,16,37,28,4,26,27,20,39,32,10,24,9,8,32,30,36,52,35,15,46,30,29,14,35,27,7,40,37,37,51,23,5}

    Returns: 5083

  16. 75

    {98,38,26,11,4,100,23,49,23,55,11,89,13,30,76,79,2,64,92,51,51,78,63,37,40,44,71,10,5,73,30,98,31,73,47,25,63,39,26,57,21,34,96,100,15,92,64,40,56,10,46,3,7,43,51,44,75,78,91,82,52,23,29,19,50,91,100,18,85,47,83,22,7,15,84,46,22,73,25,94,48,53,36,7,54,28,51,50,76,68,75,50,93,96,30,81,5,3,38,78,50,11,71,10,69,45,5,88,98,79,78,42,3,92,58,87,76,33,99,11,39,8,3,63,14,2,12,6,40,84,11,39}

    {68,12,9,27,54,32,40,34,52,20,67,46,58,35,24,69,39,57,24,75,11,73,34,21,35,38,45,66,50,30,19,73,54,26,65,42,20,14,33,45,74,67,70,39,25,21,53,19,22,62,8,7,75,49,28,71,47,15,67,38,39,66,20,35,62,25,56,62,71,11,6,71,69,49,22,8,40,29,61,66,33,20,53,61,39,26,63,48,62,22,7,28,34,53,8,32,46,18,9,19,10,55,7,33,17,56,13,19,48,72,60,46,39,52,70,46,19,70,67,13,20,40,72,10,16,70,40,68,34,14,56,43}

    {22,57,66,72,59,33,75,75,60,33,1,65,33,7,54,28,1,3,54,55,40,4,4,33,60,55,42,30,14,2,3,45,22,56,41,12,20,67,73,63,6,58,50,38,42,16,16,40,18,2,48,42,24,72,44,52,48,10,1,13,28,17,47,17,53,71,11,73,19,45,14,25,25,10,51,13,4,37,22,2,62,71,41,59,16,69,19,45,74,37,40,30,22,16,29,26,51,49,75,68,24,46,68,69,50,23,32,57,33,9,59,13,28,30,46,41,67,44,50,23,68,18,65,8,46,16,10,55,37,72,40,31,61,72,71,66,19,1,43,63,37,16,72,68,67,8}

    Returns: 4541

  17. 56

    {70,8,93,19,64,6,39,40,96,5,35,74,74,39,88,60,23,73,11,15,11,61,26,55,26,9,57,73,10,64,33,100,24,35,23,77,43,75,44,50,12,41,34,27,68,81,86,36,99,56,92,42,1,7,72,73,34,73,7,79,2,46,45,77,21,64,67,97,67,25,1,90,38,51,64,7,98,59,20,58,33,30,57,42,79,18,90,20,39,57,23,29,69,19,3,79,46,39,35,48,24,6,56,91,22,97,68,21,63,99,93,76,56,96,17,52,76,2,56,41,90,43,87,12,31,11,49,74,36,21,74,54,10,76,18,35,13,91,67,87,7,80,6,73,48,85,20,53,53,64,48,30,18,81,89,74,46,1,97,14,32,24,26,81,20,87,96,54,83,32,77,32,67,25}

    {32,42,6,3,12,43,50,4,54,21,39,21,32,17,38,7,18,30,39,38,7,34,31,54,34,30,34,39,30,11,20,10,32,42,35,6,49,23,9,27,33,4,27,36,5,2,16,26,28,49,45,34,25,19,33,52,19,30,1,50,26,56,32,21,40,50,31,50,3,3,33,38,12,21,1,3,19,51,20,17,3,15,14,2,30,13,45,38,55,41,38,13,4,48,22,18,53,22,15,47,25,27,4,45,14,34,10,12,51,28,8,55,1,43,33,9,33,12,32,49,20,10,28,51,48,31,3,56,21,28,37,22,11,47,16,19,6,35,28,17,23,5,27,53,52,36,2,3,25,9,18,1,52,5,3,32,50,43,29,4,29,46,5,34,47,49,39,12,56,7,40,49,53,5}

    {54,6,42,35,17,41,19,45,51,37,15,12,12,20,32,23,18,39,50,34,10,37,29,16,22,52,12,31,50,56,39,29,38,18,10,31,11,8,4,44,4,9,49,1,14,25,11,17,13,43,48,21,30,56,41,4,28,51,17,38,49,21,40,35,25,27,12,38,53,9,40,50,40,55,21,47,55,36,3,54,54,1,37,26,19,6,32,15,45,29,13,1,26,27,41,52,13,44,28,24,18,42,49,36,41,22,43,44,4,56,56,9,22,21,12,37,6,55,28,21,25,34,31,13,9,52,26,29,55,1,21,46,19,31,42,53,7,5,4,17,32,46,47,32,38,47,56,44,11,41,54,43,50,18,11,31,14,14,26,35,7,5,35,47,26,13}

    Returns: 6822

  18. 99

    {51,44,6,10,88,64,2,86,72,20,83,14,94,93,20,40,63,31,27,74,15,99,91,2,33,87,40,97,78,97,45,15,99,83,25,30,24,30,78,25,20,92,94,13,11,41,35,78,15,33,21,34,83,91,83,49,58,23,29,7,65,45,59,13,24,26,9,80,31,41,26,4,68,37,19,30,58,19,72,20,17,86,12,24,58,60,41,63,35,39,83,43,45,85,76,25,87,23,45,92,100,97,10,65,99,25,67,52,26,69,40,24,5,23,34,44,98,21,67,94,23,45,12,9,65,22,98,13,95,90,38,31,64,28,19,72,89,28,49,41,28,24,6,51,56,76,34,2,18,49,35,8,65,24,78,44,16,9}

    {84,10,89,43,5,6,32,12,63,57,99,13,78,7,40,77,5,59,78,34,82,44,37,9,2,44,91,33,4,4,78,29,75,32,55,63,99,15,50,14,6,87,86,63,3,4,74,80,67,32,38,17,4,9,54,8,47,94,47,39,24,67,16,6,34,18,51,81,61,2,94,53,10,55,48,18,56,47,66,63,80,26,5,71,40,95,43,73,37,7,45,73,45,74,68,40,18,83,70,92,82,52,72,90,15,96,80,46,41,61,96,84,69,43,16,99,39,76,84,57,11,16,43,16,38,77,90,64,68,15,26,93,14,2,68,49,40,34,76,37,29,50,33,99,1,27,83,10,58,15,8,61,97,98,44,93,57,31}

    {31,39,73,54,47,80,80,4,51,8,43,35,19,90,92,97,60,23,92,8,88,4,19,68,93,49,53,29,23,79,91,85,23,34,36,54,64,36,72,20,83,93,45,3,5,50,60,62,36,14,68,24,3,91,24,49,45,11,4,3,57,71,60,53,82,76,54,45,25,27,10,94,92,5,25,41,60,64,68,64,62,68,75,78,26,28,84,81,94,4,29,75,71,81,31,21,79,11,40,47,6,1,80,74,95,80}

    Returns: 3531

  19. 86

    {98,27,40,49,9,5,22,20,84,27,10,95,34,39,21,67,70,54,80,37,85,13,80,92,53,19,74,43,23,16,46,91,95,96,4,41,79,97,26,21,34,38,10,94,24,59,60,28,15,75,72,73,91,42,64,57,62,11,41,99,85,16,76,21,39,50,19,35,34,30,69,28,66,13,74,54,71,99,23,96,85,35,92,27,38,6,55,23,93,46,86,77,60,67,69,59,94,65,12,13,36,85,67,27,22,86,72,50,32,75}

    {9,66,47,20,3,46,67,51,60,50,10,23,66,67,13,38,52,68,83,17,46,78,19,37,55,41,44,75,71,1,33,85,4,33,1,34,29,16,49,16,78,25,37,17,77,28,33,25,62,67,65,21,46,71,86,16,57,63,71,67,38,41,49,12,40,40,34,36,67,71,22,10,4,24,61,80,57,78,12,60,11,21,79,65,66,82,61,17,68,85,24,5,23,42,53,53,36,8,63,8,30,3,63,38,50,35,34,86,10,26}

    {40,81,14,10,28,81,41,68,21,76,81,1,85,38,9,31,58,76,55,66,30,54,61,76,82,44,19,85,58,86,80,70,71,58,65,85,21,42,8,66,78,51,1,67,59,60,26,7,47,31,60,5,34,56,49,35,32,35,7,53,22,16,46,35,54,84,52,27,66,48,65,25,79,45,51,50,40,82,64,85,72,53,37,22,15,83,85,81,68,69,44,84,43,27,81,77,77,44,4,42,58,15,48,26,58,68}

    Returns: 3334

  20. 74

    {48,2,75,99,16,76,4,66,99,95,5,36,39,84,75,37,39,66,27,34,53,15,86,20,4,71,91,55,10,74,58,26,53,69,58,76,99,54,59,7,45,41,89,44,36,6,63,17,9,31,29,85,39,39,13,34,29,62,98,26,70,92,89,2,20,94,88,2,85,86,99,80,63,40,15,64,9,56,61,38,17,53,98,11,48,3,43,25,48,34,42,15,89,31,71,82,18,47,46,4,64,64,30,3,45,32,90,21,66,35,18,57,11,40,47,94,51,8,18,10,84,54,20,62,56,85,7,27,90,50,27,43,29,81,22,37,40,21,62,56,50,95,38,94,99,75,9,27,63,97,32,61,57,54,88,24,90,10,50,2,35,72,65,21,69,61,91,63,40,37,54,86,32,24,68,73,50}

    {17,59,19,34,68,15,73,64,5,73,32,36,23,70,24,15,45,60,2,54,13,73,70,74,11,12,61,27,46,4,63,10,58,57,51,22,49,57,7,18,9,53,39,42,44,73,53,13,71,45,57,58,22,56,4,57,3,7,64,59,23,25,55,53,16,20,52,52,23,67,68,1,21,65,64,48,32,24,5,44,43,37,19,18,36,64,61,1,3,9,32,32,73,56,39,5,9,57,45,14,44,9,16,10,7,2,27,26,32,35,61,23,30,60,26,38,21,69,13,44,14,35,43,52,49,62,24,3,3,22,9,20,18,32,39,17,57,70,14,32,20,53,37,53,49,15,14,4,58,47,2,15,28,28,61,57,56,33,72,53,60,9,51,53,49,39,19,66,15,22,55,9,71,24,31,13,33}

    {54,58,32,2,49,52,38,68,19,6,36,9,60,64,18,38,16,3,65,12,17,12,9,42,66,53,25,3,54,44,38,31,41,57,8,73,24,59,56,2,64,72,35,53,64,54,74,73,72,20,50,58,19,30,39,17,27,27,55,56,50,20,16,23,65,1,27,74,70,1,12,61,8,51,44,13,15,71,54,40,51,72,3,34,15,23,35,14,45,12,9,36,4,74,63,10,60,52,4,20,22,57,36,14,62,38,6,48,41,61,33,29,1,38,63,4,5,12,68,36,46,35,8,44,74,31,7,36,71,35,4,65,19,64,18,40,23,20,67,60,14,55,18,56}

    Returns: 6034

  21. 58

    {76,52,48,42,4,16,25,50,65,25,97,65,86,52,13,13,35,38,37,9,8,85,56,98,38,47,7,98,8,4,83,61,41,70,38,48,59,51,64,7,65,10,100,10,24,19,41,51,31,56,70,20,31,7,2,84,3,40,19,61,100,13,31,63,81,9,93,71,67,47,96,78,100,30,21,57,82,75,45,60,28,45,82,4,79,55,34,39,66,43,22,79,50,9,96,61,5,7,74,78,64,30,35,24,80,68,53,66,15,51,96,91,32,62,23,95,95,95,47,96,77,75,38,17,15,95,82,44,20,27,29,15,34,54,18,69,82,21,76,31,56,79,53,16,31,68,81,48}

    {9,14,2,25,8,32,33,40,31,52,31,36,29,14,36,52,32,9,28,48,18,43,43,39,9,13,37,7,12,4,42,15,16,57,54,3,39,47,42,30,19,36,27,11,45,18,14,44,40,58,40,49,52,53,53,13,4,11,54,41,34,5,25,9,30,58,7,44,31,23,27,17,44,50,11,7,4,46,23,21,45,29,35,43,49,24,3,8,56,33,45,29,29,8,58,43,28,1,45,35,29,26,56,33,10,25,6,40,39,21,24,50,35,30,35,57,35,26,15,48,53,45,4,13,26,17,42,54,32,50,36,20,35,51,6,35,1,9,16,18,9,38,25,38,12,36,8,12}

    {22,15,49,13,57,9,41,43,3,49,49,22,41,30,31,51,17,45,17,51,22,42,31,53,16,21,24,37,27,24,22,33,47,46,56,52,34,16,2,58,20,42,5,47,36,15,36,37,2,33,23,56,30,42,17,44,47,3,28,45,29,25,4,10,37,30,34,1,56,53,50,56,48,2,3,52,21,46,26,41,28,37,1,41,54,29,25,53,22,42,15,39,50,5,1,4,39,50,13,31,29,45,9,35,25,27,38,14,30,25,52,4,43,46,21,37,2,9,24,5,9,37,8,53,33,44,1,25,14,22,28,21,46,37,55,16,3,23,12,35,40,28,52,43,23,56}

    Returns: 5604

  22. 84

    {74,79,42,98,29,12,40,37,99,96,91,65,22,23,7,54,13,77,56,43,70,6,60,72,12,18,54,89,63,68,53,90,96,93,52,96,16,62,65,14,48,35,96,71,17,87,24,82,30,38,96,30,66,80,76,34,51,66,64,15,55,12,19,41,56,17,24,92,64,28,27,73,31,91,40,61,87,14,28,42,52,44,40,100,7,68,22,60,5,37,33,29,76,7,45,3,43,12,28,49,82,51,21,55,89,45,25,6,1,44,45,1,72,70,30,80,70,24,11,61,69,65,3,2,25,44,58,98,89,50,54,48,89,2,6,60,15,30,40,56,12,29,8,1,100,97,37,68,95,61,30,23,77,58,68}

    {12,36,67,44,21,24,49,33,43,24,78,27,33,22,26,80,46,69,4,72,7,35,57,84,13,13,67,69,17,65,6,14,73,40,24,35,13,72,74,14,81,8,24,81,19,46,4,61,79,22,76,44,79,77,51,76,22,5,23,42,39,33,18,82,42,79,60,22,22,72,83,78,12,60,57,15,47,54,22,13,71,72,15,54,25,55,81,84,77,55,64,78,59,71,71,20,17,50,1,82,45,78,66,40,58,61,18,39,65,82,52,26,46,18,64,63,18,35,54,45,37,15,24,49,18,36,40,68,16,37,62,48,62,60,69,51,25,4,59,74,10,35,58,20,64,32,75,58,46,36,66,40,29,29,47}

    {84,25,22,68,4,14,5,52,2,61,83,51,48,32,8,52,74,17,10,46,8,23,15,20,64,23,44,11,33,81,38,58,2,48,39,24,27,54,71,3,75,39,37,4,21,66,15,65,75,10,11,15,66,36,69,77,75,17,3,6,75,52,73,49,72,50,82,9,38,64,84,1,25,68,59,62,52,54,41,30,14,82,21,45,59,78,11,10,76,50,68,16,22,62,68,56,42,43,14,23,67,51,12,19,1,48,10,5,14,64,45,55,77,17,22,65,48,52,21,41,7,60,18,15}

    Returns: 4711

  23. 90

    {62,11,42,7,4,26,6,68,48,39,35,45,50,40,51,81,19,72,75,87,43,38,45,60,19,45,94,69,23,10,75,20,66,28,93,67,50,76,86,57,89,92,97,7,4,95,58,93,46,15,6,81,96,100,49,89,7,14,10,76,53,29,60,34,1,56,74,70,98,62,61,75,35,92,7,41,44,72,6,68,31,18,81,6,73,47,90,44,61,47,67,78,73,47,60,31,62,57,78,3,30,4,63,68,51,43,75,39,35,78,100,14,95,92,46,57,28,21,20,31,90,47,67,94,92,17,61,86,56,56,32,88,76,1,50,14,63,90,69,73,2,76,81,35,24,91,13,9,99,74,67,14,36,93,89,80,47,35,13,97,63,8,23,86,44,5,65,80,65,90,1,11,20,65,39,94,35,94,12,39,57,50,12,86,5,19}

    {73,43,5,22,49,56,13,81,58,22,78,6,23,10,53,9,36,45,25,67,49,1,68,5,51,59,70,87,79,60,12,29,87,19,82,50,70,78,89,14,64,51,71,57,32,27,16,47,51,71,67,87,63,29,33,77,38,18,37,84,89,18,54,37,33,90,35,72,88,2,89,72,64,35,29,38,13,72,65,89,74,59,70,31,71,60,1,3,57,34,43,6,68,5,33,19,32,66,68,85,59,23,35,20,36,36,24,77,61,71,22,78,89,61,19,70,39,48,10,16,58,69,64,73,37,41,35,85,48,27,17,28,81,30,67,19,50,61,64,8,58,2,75,5,51,66,58,1,34,90,53,72,4,54,25,32,13,21,28,42,9,15,8,61,2,62,84,7,74,26,79,19,48,86,27,15,7,51,81,87,14,78,9,56,48,41}

    {2,31,2,7,50,32,9,52,63,23,55,45,8,70,5,19,61,89,3,3,7,68,62,56,18,89,7,43,12,16,15,21,74,3,66,4,52,39,13,29,45,78,76,19,13,27,55,66,89,34,28,12,52,36,45,21,58,90,35,32,32,71,2,6,23,61,26,14,24,31,80,48,56,40,32,75,61,9,68,57,62,64,27,71,37,50,58,6,60,56,17,17,82,61,17,27,38,8,47,45,83,22,84,25,6,38,29,23,72,52,85,9,45,64,90,81,42,77,56,70,27,23,69,33,27,53,36,68,28,65,43,90,58,83,60,86,69,81,37,70,69,79,15,40,74,17,28,85,23,65,62,1,69,19,53,64,38,84,78,28,34,14,71,44,5,55,19,15,14,61,32,58}

    Returns: 7103

  24. 80

    {90,41,38,63,54,12,67,18,93,30,21,87,5,14,39,19,47,26,38,79,42,89,5,97,72,67,11,58,65,93,2,61,55,80,21,12,33,74,94,10,67,19,72,9,30,60,59,66,21,9,43,86,66,75,98,38,83,69,1,96,65,51,61,36,86,30,84,36,65,79,84,48,5,73,62,94,43,27,90,39,84,47,33,68,29,2,94,43,42,47,20,53,79,46,22,51,85,59,74,12,21,88,21,18,93,5,91,55,87,97,30,38,85,42,13,8,7,98,43,68,62,2,58,40}

    {12,44,52,75,62,53,80,62,80,27,52,61,80,23,8,26,2,72,52,6,50,66,77,17,36,46,13,57,1,13,38,30,16,9,44,2,38,36,26,16,11,44,42,51,11,63,11,29,16,43,56,80,68,8,10,39,39,67,14,32,13,66,66,41,66,5,48,38,75,51,12,73,79,53,11,39,3,36,60,10,55,66,31,62,19,19,27,65,12,58,16,29,29,45,39,71,50,20,73,29,5,63,13,28,35,33,22,67,4,33,73,26,21,52,31,24,34,77,33,8,55,2,20,64}

    {28,78,56,34,1,54,40,62,54,78,44,44,19,73,4,28,79,46,15,60,38,76,15,14,19,80,77,33,54,38,39,61,46,18,41,3,75,11,1,23,69,4,80,28,55,13,29,22,60,60,62,76,26,65,39,63,75,55,62,47,19,23,80,22,31,67,66,24,2,56,9,52,45,75,58,74,3,42,30,75,1,55,58,64,77,52,53,63,71,25,65,58,54,53,25,57,14,30,69,29,71,29,22,47,59,53,51,64,13,31,48,7,36,35,10,63,23,37,59,69,2,43,65,77,25,62,41,64,30,5,53,13,34,30,39,46,35,38,17,36,52,56,33,22,80,48,60,43,8,40,65,4,72,56,52,69,8}

    Returns: 4499

  25. 94

    {71,48,62,31,27,54,21,84,4,38,78,26,19,21,100,18,18,7,31,42,77,96,20,71,14,39,81,38,28,15,35,76,53,35,43,53,86,28,62,41,6,84,33,12,28,26,61,66,23,85,54,69,45,46,52,97,37,65,94,44,66,42,8,97,100,74,91,46,99,9,15,26,4,67,66,95,20,84,13,61,48,7,57,81,13,57,50,6,38,36,80,14,45,79,6,66,53,6,13,73,15,43,76,84,87,73,80,40,27,71,16,72,72,85,73,85,67,40,100,78,36,17,48,41,82,26,25,73,39,42,73,72,4,53,74,50,16,42,23,41,52,73,30,72,87,87,49,15,8,9,78,2,48,44,62,75,62,46,66,9,29,92,2,14,53,51,89,40,81,54,4,36,69,51,32,81,57,78}

    {59,92,68,5,74,64,56,20,62,48,59,40,68,12,1,17,38,77,4,61,87,46,81,38,39,42,63,24,65,23,4,80,75,45,62,33,62,84,16,38,41,34,90,54,83,45,49,10,90,69,91,92,13,88,46,15,31,22,1,85,30,29,24,84,23,75,31,39,53,43,41,28,1,94,75,91,44,4,10,89,35,31,48,8,28,58,33,39,41,53,73,47,42,33,21,38,81,54,42,1,20,55,80,23,70,17,38,75,70,26,88,51,4,7,65,15,83,3,12,3,34,62,64,78,93,25,67,92,38,50,15,33,14,75,72,64,55,88,23,15,32,62,75,86,44,21,57,32,38,28,30,26,5,44,33,28,86,11,94,90,2,46,38,58,28,15,33,27,63,2,47,3,74,50,4,91,85,84}

    {25,13,52,29,12,50,26,90,4,4,92,9,34,3,42,59,56,70,71,75,45,15,68,76,51,38,4,84,56,18,35,88,81,1,45,66,83,78,54,5,28,91,14,4,2,83,6,58,61,76,33,68,13,24,74,14,45,38,40,84,87,91,57,92,41,71,17,75,94,18,16,59,6,30,44,54,92,43,32,65,80,24,35,81,56,54,63,11,1,18,55,62,80,94,8,30,93,34,18,47,20,47,53,46,89,23,4,89,18,52,45,8,48,90,9,1,76,66,3,35,66,6,72,83,78,75,77,36,73,68,85,28,78,92,49,76,26,11,4,10,35,62,12,56,72,51,12,17,80,1,44,30,71,91,60,55,85,54,64,55,7,51,6,54,36,15,88,94,51,46,88,93,19,90,71,48,56,53,7,4,60,67,46,11,53,62,51,53,93,29,85,32,32,45,58,20,41,4,94}

    Returns: 6672

  26. 88

    {40,82,21,71,57,35,70,98,71,51,62,92,22,76,87,37,3,98,19,39,15,95,35,44,64,84,36,68,57,49,43,26,77,7,89,95,10,33,7,31,36,21,19,45,69,60,6,36,74,45,36,62,6,50,14,25,15,60,48,29,34,42,60,12,17,26,78,88,35,70,20,15,39,55,51,46,87,68,31,84,2,37,77,39,72,76,80,46,14,97,70,55,50,88,92,20,79,27,64,54,36,53,21,10,20,26,19,45,12,4,32,78,81,43,40,92,59,3,3,64,86,6,32,62,97,19,17,93,67,70,83,45,66,57,97,3,2,34,43,6,79,33,7,57,13,6,23,45,38,51,44,56,13,8,63,69,91,17,66,39,18,50,22,28,78,18,42,48,43,29,89,37,77,26,30,99,62,21,28,3,62,29,2,73,99,68,100,33,38,87,74,38}

    {63,77,25,65,86,48,27,35,13,49,83,28,24,33,20,41,40,32,71,52,51,64,83,23,55,46,11,4,27,29,62,75,66,36,40,66,27,4,88,5,8,21,3,39,87,1,41,53,36,70,74,13,34,81,53,77,43,10,57,13,61,64,73,42,85,41,67,74,72,86,63,19,58,3,36,75,29,47,26,80,20,11,79,35,37,50,76,20,71,80,80,74,88,67,65,51,71,73,63,71,10,38,76,52,24,38,4,38,3,76,8,69,21,3,86,42,81,85,52,46,12,50,3,50,84,19,87,21,15,54,33,57,7,44,64,47,11,20,70,29,86,13,1,71,13,29,72,88,80,30,39,23,31,57,20,54,33,77,76,57,35,31,68,58,77,61,28,87,28,11,75,60,24,69,4,19,20,14,33,29,26,34,78,31,70,27,29,82,40,50,48,66}

    {40,43,79,24,51,52,56,3,70,35,47,48,58,10,57,53,51,51,11,25,6,38,33,61,42,54,23,15,51,33,14,54,71,48,72,4,66,71,34,15,2,51,12,48,53,54,14,78,24,28,10,85,56,20,17,68,14,78,39,88,22,40,17,69,60,44,17,74,86,15,88,8,13,56,31,83,15,8,42,88,55,61,11,21,87,69,67,24,86,62,3,71,73,46,29,77,74,76,20,10,57,67,9,56,71,35,35,35,52,21,43,29,81,42,33,85,12,2,14,1,7,4,16,13,52,88,72,74,88,56,1,36,34,57,28,43,79,79,72,80,88,4,87,1,81,81,1,24,9}

    Returns: 5529

  27. 76

    {88,13,99,63,61,16,34,52,19,40,28,19,91,5,31,75,63,71,32,71,36,97,32,71,61,60,67,85,27,85,9,60,43,70,89,17,56,20,63,7,71,74,73,80,11,86,31,61,21,48,22,16,36,18,38,54,89,16,8,47,90,69,48,59,88,81,61,16,10,21,40,24,45,31,84,50,91,82,12,22,51,99,90,2,27,45,100,2,99,31,66,45,4,77,46,18,19,80,7,39,23,62,72,55,96,37,97,94,81,41,36,16,29,62,14,82,59,98,64,14,72,77,83,92,97,88,7,85,53,35,11,21,32,23,57,18,73,79,86,42,46,51,13,72,31,48,10,2,49,78,91,30,21,6,92,34,91,50,14,87,94,89,51,81,79,76,36,6,96,97,75,81,41,53,69,60,11,91,48,48,63,47,27,55,72,49,41,53,96,11,9,10}

    {18,6,21,67,5,53,64,21,40,73,56,53,8,69,27,63,5,11,1,12,19,18,76,11,58,33,33,72,18,57,70,3,13,55,20,31,59,35,9,51,14,65,30,61,12,53,49,73,51,23,6,8,37,4,30,18,37,64,38,17,18,57,40,11,65,62,66,61,14,55,5,55,6,31,50,48,64,43,52,37,5,43,51,50,69,14,21,71,17,4,36,74,35,66,11,31,33,64,18,16,70,3,65,52,34,76,71,29,68,70,63,47,66,51,45,72,30,71,48,38,27,57,67,59,24,41,19,12,74,32,32,12,66,52,60,73,47,53,36,7,33,26,46,6,11,41,64,44,15,47,48,65,35,17,27,37,21,32,35,11,49,5,3,26,33,62,34,56,17,52,72,6,25,21,64,32,60,24,24,48,15,57,63,30,45,73,27,59,16,15,68,61}

    {25,1,57,69,56,74,61,52,69,30,43,48,70,4,30,73,40,58,64,42,49,44,68,72,25,19,68,3,49,50,67,28,6,52,1,20,47,50,59,71,71,21,43,28,32,9,51,74,40,70,10,38,2,64,65,54,51,33,53,48,69,46,14,20,7,5,76,1,22,62,29,29,11,65,10,41,25,11,56,20,18,74,19,30,6,5,69,7,37,73,74,70,3,30,53,7,69,32,47,34,27,63,10,13,7,63,49,27,14,51,12,55,5,17}

    Returns: 5506

  28. 91

    {71,40,66,78,1,14,92,32,85,77,89,75,88,10,97,5,60,51,20,65,14,21,57,79,51,1,92,22,16,4,52,36,94,21,64,44,98,68,96,31,88,4,23,50,52,52,69,27,52,70,53,7,36,39,29,34,98,91,20,37,78,2,54,1,75,76,53,66,60,80,76,33,76,88,7,88,5,54,46,36,27,7,21,59,69,58,33,96,82,48,26,63,8,41,32,64,97,16,74,99,87,82,52,98,73}

    {33,59,73,26,91,89,60,65,21,10,45,27,34,65,37,43,31,61,49,2,75,49,13,53,54,8,30,5,75,46,26,40,22,40,6,58,46,87,1,74,5,69,62,22,56,57,64,51,90,63,24,55,12,27,20,17,72,76,45,42,66,74,41,1,40,64,85,49,45,44,39,20,26,43,35,32,53,31,84,2,42,2,40,26,61,56,19,64,65,85,10,46,43,40,60,27,75,27,12,83,50,62,9,12,33}

    {12,37,23,34,14,49,23,66,12,65,60,11,16,37,49,47,63,80,48,46,23,45,27,68,83,10,86,43,48,42,45,65,1,41,3,80,75,21,40,32,16,61,80,4,18,13,78,60,1,17,60,79,8,79,89,51,52,83,42,64,2,9,4,37,10,47,49,29,13,50,10,46,66,25,57,43,88,73,15,35,60,53,79,74,17,78,73,71,5,80,41,45,34,55,3,42,25,42,67,33,83,44,88,35,91,40,77,65,55,5,47,82,86,83,64,16,56,32,23,74,81,87,8,76,71,4,5,67,5,11,33,2,45,87,25,78,32,53,58,12,65,34,50,9,91,80,63,49,56,20,37,44,30,23,91,40,7,7,30,79,87,67,41,11,10,46,90,48,52,50}

    Returns: 3928

  29. 92

    {73,21,65,33,8,64,14,83,100,15,18,35,81,19,2,80,19,35,5,16,91,54,27,88,31,19,14,28,39,87,4,99,46,54,44,38,23,49,7,7,77,64,90,24,58,75,29,57,80,6,95,70,2,69,44,87,76,82,52,91,29,17,73,14,94,54,49,74,7,98,50,43,99,37,3,14,61,11,49,16,28,89,17,73,49,38,26,17,25,31,55,4,57,88,73,6,46,64,28,7,96,7,93,47}

    {89,63,21,15,75,44,45,50,87,5,27,28,83,25,32,69,84,35,39,36,52,21,79,63,88,62,34,2,30,68,7,66,54,39,56,87,35,11,5,36,41,61,71,12,62,9,48,10,74,45,51,11,23,34,81,48,45,43,86,13,24,65,79,40,89,87,24,12,47,67,1,38,47,35,39,66,71,51,82,25,54,92,15,56,3,86,65,10,13,43,39,21,33,42,62,59,33,43,4,26,28,92,40,85}

    {22,28,66,67,43,22,78,54,55,22,29,68,59,72,70,6,75,50,68,81,47,81,36,20,51,53,77,83,41,29,67,31,71,75,56,77,17,60,43,4,88,57,3,86,29,73,48,73,47,41,55,1,85,45,32,62,91,51,46,86,47,25,15,52,32,91,48,56,18,34,44,57,63,43,23,46,6,54,36,74,90,21,18,51,9,22,46,11,69,22,72,19,76,62,46,38,76,14,35,53,2,84,75,12,45,78,85,32,68,33,73,35,65,55,55,68,66,72,23,6,32,23,73,48,81,84,46,3,34,63,28,17,35,41,15,55,52,63,34,47,59,9,27,60,29,83,9,28,11,17,61,30,34,53,31,88,71,89,25,9,54,14,17,7,51,36,32,44,30,79,42,40,43,20,52,82,70,25,85,83,67,65,3,36}

    Returns: 3850

  30. 63

    {21,22,34,21,36,18,89,61,60,56,8,31,5,18,29,68,4,49,52,55,62,16,78,10,27,67,86,75,60,5,41,98,77,29,48,45,12,48,8,25,92,31,55,1,63,83,25,44,68,80,15,48,28,5,71,78,55,8,71,12,68,25,38,65,74,41,69,26,26,79,23,15,70,36,84,94,38,27,72,39,53,22,49,41,87,81,41,65,86,5,67,53,86,28,54,65,27,18,95,52,73,62,80,46,30,36,46,74,83,33,59,87,57,71,39,40,23,64,52,22,78,28,78,31,56,14,80,98,28,1,77,23,79,75,97,64,74,100,21,20,49,31,6,67,4,79,59,13,89,26,92,59,32,91,57,46,83,14,67,42,98,75,52,54,38,82,29,14,86,77,7,31,71,77,79,75,9,40,24,7,58,76,51,21,24,30,99,81}

    {23,53,36,19,45,43,2,7,43,23,31,9,43,59,20,41,54,33,22,4,49,57,36,59,58,40,10,52,30,10,48,38,51,7,25,32,2,35,26,38,63,59,41,47,2,49,59,2,45,56,56,49,11,23,50,19,25,8,61,42,59,58,52,10,15,38,18,51,59,10,6,33,52,37,31,13,25,1,19,19,7,14,2,38,58,9,28,39,37,50,46,61,32,21,10,58,63,20,41,19,35,54,14,18,12,38,4,40,6,39,63,36,58,42,6,31,50,38,41,21,41,20,43,39,18,18,47,43,46,33,34,17,54,35,12,29,17,23,33,45,40,44,62,27,6,8,29,35,46,16,2,20,63,40,29,10,4,59,56,5,36,54,8,10,48,56,31,28,15,39,20,54,19,50,1,45,10,37,20,8,61,60,30,39,21,9,24,61}

    {6,44,21,54,47,34,53,28,38,49,8,22,55,33,35,7,21,17,18,53,36,30,17,32,29,31,19,47,24,58,47,13,46,55,14,43,1,55,10,58,12,15,2,15,7,26,57,53,23,13,12,62,58,42,20,51,19,35,41,23,50,24,15,49,59,45,24,9,50,35,46,50,57,4,40,37,48,23,32,31,33,48,62,43,52,54,56,43,44,53,43,58,52,63,10,31,61,22,45,31,38,51,58,25,51,28,53,61,56,60,33,56}

    Returns: 5871

  31. 88

    {71,59,84,15,71,29,84,68,12,25,52,24,70,69,83,8,9,5,77,62,63,1,63,24,60,47,65,31,4,56,48,54,74,18,75,71,15,65,37,22,35,63,35,30,37,57,97,10,99,82,81,37,77,15,88,51,33,16,100,21,77,92,38,86,90,54,23,43,25,10,12,89,87,82,100,24,63,89,21,34,50,53,52,98,80,67,75,63,5,48,76,15,95,34,87,77,56,43,53,78,61,69,66,53,79,23,91,92,43,59,56,82,11,84,90,40,58,47,24,53,13,32,21,41,80,23,92,39,50,75,53,39,45,74,64,71,9,38,70,27,3,39,6,86,34,72,58,14,11,40,65,100,78,44,60,81,70,96,45,37,79,97,33,87,28,32,73,12,10,39,37,23,25,27,17,58,80,9,61,22,38,94,57,30,62,6,54,73,51,61,96,45,83,88,16,98,80,1,79,25,16,81,76,95,94,36,61,55,36,62,47,45,34,5,22,86,46,81,53,41,23,87,33,29,85,56,56,95,5,95,29,23,58,65,24,18,66,97,26,79,69,86,32,90,21,33,99,34,40,87,81,54,75,26,2,58,43,64,71,11,81,5,98,5,82,65,68,98,69,94,44,98,2,61,54,64,3,39,23,88,11,44,43,4,3,57,33,35,42,72,12,80,31,50,82,92,92,84,66,63,23,19,38,92,12,47,47,77,41,47,30,66,43,33,59,11,41,55,9,58,9,15,48,42,6,58,15,93,21,31,89,84,90,55,95,22,58,76,48,62,57,34,86,66,16,93,21,56,18,87,49,3,45,96,86,84,6,61,10,92,22,29,96,16,41,83,67,31,27,56,15,25,64,45,45,66,13,37,77,34,46,32,17,31,94,13,3,3,19,23,30,70,91,39,25,65,56,14,93,58,13,12,87,24,16,29,25,54,50,89,37,38,31,23,62,26,23,6,17,89,87,93,74,36,5,18,16,86,47,46,45,93,12,40,56,60,91,1,14,81,35,57,7,61,1,20,77,47,41,28,70,38,98,78,2,100,96,96,57,92,1,47,8,39,55,98,70,9,89,36,1,35,46,20,49,26,72,100,84,19,36,41,47,93,98,45,71,57,42,80,53,8,56,63,70,17,51,13,59,68,64,74,28,48,42,45,59,48,28,82,47,36,33,46,13,98,35,47,5,6,88,84,21,30,98,45,53,81,64,18,90,28,75,68,74,21,90,31,81,6,35,68,7,98,87,23,76,92,24,73,86,86,88,82,11,25,78,14,59,64,17,9,36,78,65,39,57,74,22,72,33,55,69,15,43,69,91,7,81,17,39,25,75,46,74,87,52,42,66,35,42,56,9,34,88,24,67,70,62,30,19,52,71,54,83,26,58,59,16,87,16,56,25,19,48,30,51,57,22,63,16,30,6,92,74,3,71,39,25,15,100,10,15,58,70,20,85,75,93,36,76,26,60,95,42,10,69,96,14,20,44,62,68,10,34,78,51,21,5,43,54,43,86,65,28,26,30,12,52,46,57,54,10,10,42,8,30,42,79,51,95,33,3,9,70,27,31,35,84,49,75,95,18,94,42,29,19,1,11,36,62,7,92,20,99,22,28,72,98,28,16,22,29,57,98,77,20,61,97,73,49,89,37,21,27,75,30,92,70,36,90,71,54,2,61,69,2,38,44,100,44,44,53,42,47,62,7,93,43,26,32,83,4,97,41,65,74,67,3,8,94,3,44,32,12,71,53,80,19,50,5,7,90,62,69,65,100,59,82,2,86,1,52,61,62,14,86,57,79,68,90,18,62,36,59,44,77,97,24,5,77,16,86,94,53,97,42,8,96,48,75,62,41,88,43,56,94,30,94,22,75,54,94,4,64,99,61,51,77,73,58,28,45,27,8,59,31,82,61,13,74,3,76,60,90,94,31,37,52,67,13,93,8,67,28,68,87,76,74,45,92,96,50,52,70,13,53,38,23,72,74,41,96,72,91,59,79,38,83,89,18,89,45,70,63,31,67,32,22,88,7,25,34,90,18,5,43,58,3,62,67,68,54,83,67,8,31,60,13,83,29,41,84,40,95,89,22,87,27,66,95,32,56,72,57,47,41,72,78,53,6,46,7,70,87,1,74,24,36,2,80,95,12,3,48,100,48,23,39,59,72,42,28,54,39,57,93,100,17,60,37,66,62,2,81,47,96,95,63,67,19,75,97,21,58,44,37,74,72,6,43,41,42,9,11,32,58,76,13,15,54,74,55,42,38,73,43,45,77,92,27,28,37,63,83,100,80,86,65,2,46,82,69,11,9,99,17,2,75,98,7,10,74,31,12,22,9,99,96,10,71,57,25,69,88,18,52,93,97,24,100,90,6,81,7,70,55,50,31,88,25,49,96,5,56,92,17,96,21,99,64,37,55,41,29,74,26,45,42,43,84,73,67,77,30,15,85,3,78,62,3,81,47,21,68,84,90,19,20,70,81,84,78,50,56,37,89,33,14,25,54,52,48,41,75,15,30,6,69,69,23,72,34,21,43,95,35,95,71,62,49,69,67,98,95,97,100,76,32,42,88,57,32,93,22,21,65,80,89,32,91,17,36,58,78,16,57,5,17,69,4,67,77,56,74,75,38,83,71,42,75,34,55,27,52,40,91,18,86,9,3,5,6,17,41,67,76,88,90,12,55,63,40,7,3,82,74,27,60,16,10,6,73,33,15,99,50,25,41,89,94,59,66,66,64,33,49,65,15,32,27,13,42,29,43,42,72,58,3,57,37,82,31,99,86,31,3,35,68,20,31,19,78,95,63,13,19,3,85,16,2,14,96,68,83,11,69,5,5,51,82,95,83,52,59,95,72,95,62,35,21,47,94,15,10,94,7,49,55,58,44,86,76,84,54,63,82,65,81,7,68,10,49,59,89,1,3,31,9,93,38,10,2,4,57,27,19,87,80,56,39,56,70,66,40,18,89,81,49,100,84,74,55,12,28,45,92,62,45,43,37,52,99,72,98,30,93,96,94,16,18,94,99,50,62,30,12,86,61,14,34,50,86,3,4,35,15,34,62,3,57,35,25,33,81,50,37,79,92,22,7,19,8,26,27,72,3,8,12,41,53,93,89,71,85,49,33,55,96,33,22,25,47,65,69,35,61,38,65,35,60,63,61,41,17,67,10,50,14,90,65,38,55,42,50,54,77,29,1,70,80,35,84,91,20,61,7,28,47,59,37,38,46,57,69,70,41,60,78,43,36,54,33,74,77,56,49,78,97,60,100,47,71,5,19,73,76,65,64,4,5,62,44,44,84,63,53,95,85,71,89,7,32,18,72,55,75,14,45,73,75,14,62,96,51,94,44,34,25,90,22,56,99,35,55,6,73,39,68,94,62,18,26,83,18,17,15,88,13,2,88,16,25,6,2,64,95,74,41,21,30,19,13,82,62,51,94,82,69,34,52,42,21,20,28,10,20,7,72,94,46,72,99,54,57,100,76,62,14,100,95,97,72,12,39,15,97,38,33,67,17,8,3,48,100,65,44,61,49,90,69,57,26,24,81,45,8,42,74,13,14,99,62,89,46,51,12,78,90,67,16,51,92,83,77,15,98,19,9,11,12,67,1,83,35,8,56,30,8,20,24,21,91,79,59,65,75,3,28,60,58,76,6,98,74,11,14,23,81,42,49,23,34,19,13,95,45,57,22,24,67,47,40,70,38,66,77,36,53,10,57,21,24,7,57,55,51,68,89,43,8,43,9,59,20,5,4,49,100,42,36,40,79,72,77,49,92,67,28,78,15,4,65,24,5,79,9,88,36,82,84,67,82,50,5,23,33,89,66,75,23,52,28,32,65,10,22,98,90,59,4,87,25,49,55,84,36,78,11,31,23,72,94,75,25,13,4,22,93,98,32,44,48,1,29,64,31,3,4,80,66,95,70,52,97,2,37,50,18,78,71,75,52,23,44,15,83,25,26,54,17,94,61,62,82,56,39,5,56,4,35,81,59,47,83,58,35,6,21,10,83,81,23,72,16,82,47,15,50,75,73,21,64,79,46,79,83,97,3,48,98,82,70,30,56,62,29,11,1,3,38,18,93,86,28,69,76,78,73,18,22,18,80,70,22,22,41,40,73,91,26,55,37,64,97,51,54,54,88,88,7,76,82,48,59,82,93,61,19,69,53,44,70,79,97,53,7,9,23,45,64,5,6,29,32,82,46,29,52,14,29,15,34,12,81,74,89,69,20,80,22,14,3,73,46,72,89,19,98,27,67,42,24,30,91,5,7,68,30,15,60,44,21,64,71,93,86,73,54,96,77,96,59,65,73,54,6,55,67,24,89,58,57,44,53,41,69,72,63,55,6,44,44,24,78,86,85,13,96,55,87,33,96,51,17,95,23,46,65,99,37,70,67,12,16,73,97,75,70,14,13,14,62,85,85,94,22,53,13,11,97,18,1,62,94,17,51,39,24,70,71,93,83,71,22,80,63,21,74,40,9,87,45,12,32,12,74,69,72,39,78,45,34,23,38,96,18,78,54,66,82,4,7,63,68,39,71,6,91,46,38,39,37,5,7,95,31,4,20,75,66,23,31,76,3,3,33,21,23,36,56,78,86,83,19,23,62,97,18,96,77,85,59,35,33,67,17,100,19,66,92,9,95,10,23,83,70,87,18,66,63,46,46,28,88,43,68,51,94,20,30,40,15,1,33,21,8,94,99,83,88,76,85,28,73,82,89,6,17,59,34,95,14,67,26,66,100,74,2,87,34,95,43,68,66,43,10,34,42,9,48,82,76,62,5,61,24,78,73,10,8,34,83,24,24,53,77,14,18,14,65,57,93,12,92,27,44,41,58,81,42,19,10,100,100,93,88,45,4,94,65,73,84,62,93,67,83,51,65,58,75,48,19,23,52,76,67,80,23,24,42,98,28,46,98,13,28,9,35,84,34,4,72,3,81,58,19,99,19,39,58,72,15,53,94,56,17,46,88,39,63,56,34,27,44,65,24,3,54,63,77,43,70,17,8,77,77,56,58,54,21,82,78,62,92,53,71,40,93,98,17,13,75}

    {9,40,20,77,67,56,17,20,85,58,46,85,44,12,5,50,76,86,38,77,12,67,35,84,7,69,77,81,13,73,77,82,46,73,74,65,85,36,52,52,34,78,42,29,23,82,21,7,73,76,82,84,38,23,13,2,17,16,86,51,84,32,23,76,55,29,8,14,74,34,67,29,21,3,30,76,8,78,6,35,8,25,15,88,76,47,19,43,61,19,23,20,88,27,87,79,69,64,68,34,71,29,18,43,39,7,59,6,38,60,6,22,10,2,8,46,23,69,54,30,69,21,75,70,6,24,29,52,47,85,45,11,69,53,76,49,21,21,62,75,32,39,20,64,3,9,53,47,80,83,64,39,83,57,59,82,2,23,82,47,50,70,8,7,18,83,7,77,8,14,61,57,54,13,73,16,57,40,3,18,57,56,27,86,85,14,83,20,86,14,70,35,77,50,3,77,11,58,51,18,86,24,48,72,67,29,61,39,62,77,67,73,15,37,60,26,32,31,86,66,57,53,55,23,10,30,32,7,69,83,77,60,76,41,57,32,71,83,43,20,42,23,20,11,54,23,17,73,86,34,6,77,87,85,22,15,31,17,61,53,15,42,72,78,33,83,6,68,78,56,40,77,47,2,4,52,32,26,81,34,68,3,72,22,7,61,44,84,82,70,44,23,7,29,41,21,77,34,72,17,26,5,21,20,68,70,41,28,13,70,55,58,87,87,53,12,23,76,15,27,55,24,64,58,22,2,11,52,51,31,49,75,68,54,7,76,63,39,3,80,28,34,3,82,42,29,29,80,45,82,25,3,8,20,47,18,72,82,64,17,10,77,38,65,84,32,19,45,5,16,49,64,42,49,16,11,28,26,35,73,8,73,60,63,45,11,34,49,1,75,36,62,19,37,15,37,18,15,44,66,41,8,22,30,21,36,22,3,56,30,85,12,38,21,65,37,46,75,31,13,12,81,29,58,60,87,42,27,47,14,30,84,50,71,16,22,32,55,36,71,66,31,40,21,23,12,37,75,31,45,61,4,63,57,69,2,59,44,57,88,85,33,72,40,27,41,83,77,2,58,13,64,42,17,22,28,83,53,45,53,24,51,51,5,85,31,45,14,9,39,40,84,82,61,8,1,40,82,55,66,35,28,55,19,69,42,65,9,20,77,17,66,22,14,22,6,44,65,28,73,38,69,18,34,11,3,5,41,33,17,79,1,44,37,41,4,53,49,48,75,87,55,73,59,73,52,22,57,21,64,77,61,52,9,16,40,41,63,21,65,10,14,51,10,21,70,61,77,84,71,87,61,42,46,79,6,31,25,1,77,57,56,73,76,24,84,18,56,30,17,83,81,57,44,15,69,65,49,80,87,26,12,78,11,56,3,32,30,29,69,58,38,15,41,12,70,30,48,48,36,16,85,58,72,40,86,81,24,81,46,70,26,8,69,41,73,68,40,15,8,12,10,5,87,80,51,56,37,53,55,2,11,11,62,63,50,24,69,80,68,27,2,74,51,65,24,62,57,36,20,86,86,80,31,10,65,52,43,81,45,70,52,29,18,9,65,13,53,14,28,44,19,12,74,21,3,53,65,66,80,39,42,22,67,63,40,32,25,66,4,34,28,66,81,67,47,8,62,77,75,71,11,8,14,54,38,15,83,33,37,59,84,46,71,43,57,84,30,64,64,16,64,51,39,83,70,84,9,50,39,11,14,2,6,81,5,47,41,19,65,64,36,44,82,58,30,67,68,6,18,55,88,56,26,69,85,17,88,8,83,27,17,1,84,49,73,31,64,7,46,7,22,10,61,36,68,15,6,43,11,34,11,18,40,67,56,78,72,54,4,22,22,36,3,43,22,14,51,25,3,83,6,50,14,78,38,24,47,64,28,39,46,32,76,87,65,28,78,38,36,78,51,87,71,46,47,45,67,71,84,67,81,48,65,70,71,58,37,29,82,72,53,6,84,82,85,53,77,53,67,82,43,62,2,24,60,32,58,32,37,29,21,2,49,62,67,54,15,79,81,23,4,31,59,84,15,19,8,77,50,12,20,48,27,45,41,48,3,41,88,35,85,11,74,50,77,38,66,35,9,69,55,32,41,44,68,58,40,37,49,11,78,58,24,71,85,44,70,9,35,20,11,76,87,20,86,58,21,85,57,80,74,26,86,10,42,81,21,61,61,88,19,64,87,23,9,71,2,71,8,63,85,11,28,10,4,54,57,87,39,12,87,53,68,52,54,71,57,5,23,71,65,7,46,79,31,78,39,38,38,87,25,47,32,21,38,82,11,64,72,52,80,79,31,88,37,51,20,60,51,72,84,46,78,9,72,70,88,87,16,6,54,68,4,13,40,3,13,22,28,22,77,4,17,18,13,44,61,72,41,4,86,39,54,79,69,68,85,68,14,45,20,29,74,4,77,86,50,27,28,3,72,17,33,76,59,2,48,22,35,48,30,74,77,58,30,49,36,17,15,85,8,5,52,19,77,2,52,80,77,47,61,35,87,11,80,23,45,61,67,36,85,10,52,32,20,2,66,87,40,27,2,7,18,29,69,35,75,71,78,12,3,27,70,3,84,66,37,85,80,44,43,52,45,45,51,21,58,52,9,1,72,48,76,41,31,75,35,76,34,4,21,27,12,9,14,77,13,62,48,44,50,39,61,51,88,26,20,62,45,70,45,52,44,65,30,37,42,82,88,62,83,82,8,75,73,29,59,81,30,50,35,50,31,33,49,27,72,55,29,6,8,52,52,77,52,25,24,62,37,70,17,19,45,39,18,57,66,49,28,45,71,15,43,66,32,25,63,3,43,59,2,43,23,68,16,38,55,51,59,38,4,6,3,22,36,72,28,76,14,2,6,52,65,12,84,35,5,79,67,74,61,14,53,79,14,63,36,70,12,60,10,3,48,44,51,70,41,25,2,5,75,37,5,41,84,58,84,75,70,38,86,27,43,25,45,30,26,14,1,21,43,16,29,54,9,75,72,70,33,87,81,52,29,74,88,57,76,48,41,79,43,67,26,46,75,67,54,35,68,36,75,69,78,38,87,45,57,14,63,21,28,28,1,18,18,12,76,88,51,47,14,32,57,58,51,22,35,18,61,83,74,60,67,45,67,81,72,6,1,9,54,49,75,25,30,80,74,28,73,14,40,70,54,10,46,38,6,38,37,66,23,13,63,68,48,3,24,84,78,64,25,67,75,8,3,27,75,9,24,34,35,18,60,64,71,21,56,59,10,73,6,74,47,65,48,78,24,29,14,48,22,25,29,49,50,6,69,16,54,83,31,30,77,43,25,2,72,37,42,34,18,7,81,37,62,39,67,74,76,62,69,55,63,46,65,37,77,50,46,26,8,82,18,34,88,74,27,82,64,61,40,27,14,75,64,16,44,68,49,34,78,11,39,37,86,83,73,21,15,83,3,8,81,74,70,42,79,87,20,73,78,27,13,38,55,26,32,23,77,1,59,78,50,61,84,11,78,75,4,53,70,31,54,74,59,68,81,8,20,11,55,85,27,84,67,77,73,70,10,6,9,39,42,14,10,39,41,73,6,58,47,59,76,55,39,52,10,49,27,18,56,78,18,49,39,16,76,83,48,79,17,29,87,75,17,57,22,34,43,58,66,41,88,40,31,31,15,34,43,34,7,50,35,40,79,1,7,5,26,37,28,50,39,46,37,25,42,71,4,66,20,20,74,72,67,16,45,17,76,66,22,56,32,20,32,87,29,47,48,10,41,16,87,52,35,38,10,88,13,61,81,45,15,24,21,70,15,5,40,45,5,40,78,3,17,21,9,21,47,78,19,50,70,87,35,28,42,1,56,67,24,78,86,17,77,51,38,26,12,15,88,14,16,36,10,87,63,64,33,42,74,36,14,58,36,50,34,56,45,42,60,26,37,54,46,75,1,12,28,56,88,63,69,51,15,87,20,20,49,11,66,57,12,32,9,39,11,82,88,15,45,61,50,4,16,12,77,35,64,50,24,27,56,37,59,17,31,38,67,58,43,60,50,65,18,35,59,55,62,83,2,64,56,65,1,14,88,34,38,6,16,70,45,2,68,23,26,78,48,53,34,44,31,18,8,39,45,36,73,69,23,14,60,3,40,66,15,68,12,71,83,21,31,82,58,9,53,32,85,85,39,87,3,57,17,9,83,6,7,49,46,71,3,77,56,60,42,9,75,38,2,50,5,39,11,42,46,81,57,25,66,11,23,77,28,22,60,55,67,60,62,46,65,51,28,41,19,33,74,57,10,77,65,77,13,55,50,62,24,73,72,31,76,79,54,77,10,57,66,33,12,45,36,8,54,76,65,83,80,29,33,35,82,5,71,58,27,61,47,33,59,8,67,40,22,13,53,55,48,39,47,3,69,51,6,82,85,48,55,68,8,2,72,33,26,28,22,36,64,25,39,49,63,24,41,82,40,85,20,68,2,76,45,40,84,55,37,54,82,1,75,85,1,15,31,59,39,84,75,31,13,67,34,80,39,69,13,69,67,64,1,17,64,38,80,72,12,20,20,83,85,77,62,36,4,79,25,72,33,79,60,69,67,47,35,88,2,58,22,14,43,38,73,44,16,67,29,21,81,21,60,41,2,75,13,33,14,23,11,36,54,66,80,69,13,49,2,3,7,54,76,84,59,29,10,64,16,65,66,37,22,36,13,21,2,1,27,36,55,77,70,83,24,2,70,87,58,8,15,64,21,34,29,75,76,61,15,30,82,75,48,69,69,25,6,81,49,12,13,34,6,83,12,81,20,51,87,75,84,66,11,43,2,23,87,44,25,83,71,40,37,74,4,53,51,32,15,5,72,39,43,72,58,40,60,15,65,42,8,81,66,70,79,75,78,77,37,79,15,87,23,27,6,46,4,54,4,46,77,50,73,47,16,35,53,55,54,44,13,75,35,45,80,52,67,9,47,27,56,16,34,71,23,87,57,82,74,63,8,53,4,52,80,45,54,79,75,57,5,48,79,21,82,54,65,40,9,21,47,27,71,44,23,24,38,37,33,64,25,1,48,32,72,44,30,41,35,15,15,53,49,73}

    {3,67,88,45,56,38,7,12,85,1,22,65,21,81,50,30,64,24,2,73,55,82,17,30,11,33,44,24,63,74,13,63,21,44,53,26,52,67,64,31,37,33,43,63,79,25,85,11,76,28,23,79,57,4,57,24,71,70,15,34,69,70,14,83,40,8,14,86,48,8,20,21,82,36,59,57,31,52,34,64,19,50,82,37,68,42,60,7,53,73,24,80,81,68,23,54,11,75,11,50,21,28,41,51,23,54,50,38,40,71,73,59,42,74,85,12,33,15,4,3,67,22,72,44,43,2,57,67,5,66,64,66,81,17,30,52,9,27,42,42,80,38,71,34,41,11,26,54,83,72,56,56,38,39,87,17,31,44,63,80,8,83,39,61,61,63,15,9,1,63,57,10,50,30,65,80,8,17,29,11,49,30,10,75,48,51,69,86,24,72,54,71,16,48,51,7,86,59,32,74,33,29,1,15,5,86,65,62,36,46,63,73,39,52,56,47,4,11,70,45,62,48,13,39,53,60,13,34,29,38,32,87,67,45,7,75,54,58,49,76,87,38,34,17,84,20,83,17,22,47,25,5,59,59,75,30,35,66,3,43,38,4,68,7,39,28,19,72,11,21,72,40,51,47,70,59,61,88,53,76,53,21,45,68,2,34,28,3,18,83,32,35,33,45,67,87,22,52,86,51,48,85,47,17,83,29,33,54,78,8,52,34,49,75,28,17,83,4,75,77,17,8,11,30,19,35,69,31,50,30,80,10,36,56,68,28,84,16,36,40,6,76,2,71,69,57,81,82,47,40,28,3,28,53,9,7,60,52,38,8,61,26,39,61,61,83,58,65,4,36,82,12,84,68,26,10,52,23,1,60,82,31,15,67,74,72,81,35,25,37,59,20,31,67,8,87,81,10,55,37,63,67,3,67,56,52,24,16,51,63,3,41,34,16,81,78,1,48,45,84,44,81,16,2,47,64,80,44,43,68,76,2,43,1,35,47,81,68,76,85,54,50,73,11,71,4,55,57,11,67,64,26,35,40,5,22,47,18,16,6,20,10,5,73,87,78,87,82,88,21,75,86,88,37,32,1,38,2,72,55,65,65,16,15,26,39,65,72,22,73,33,72,25,17,32,72,28,22,11,10,34,20,76,83,79,56,79,2,72,54,53,6,15,24,38,8,78,45,14,50,67,59,30,19,16,56,56,11,60,42,62,55,1,49,64,73,87,25,21,70,4,46,85,35,19,21,33,8,41,66,12,31,9,34,63,41,12,42,79,56,21,11,66,26,57,88,83,87,38,36,27,20,13,55,35,84,15,31,70,72,41,27,8,34,32,44,63,7,63,25,7,80,21,74,7,33,50,1,49,57,5,40,3,17,77,24,67,3,7,20,32,70,18,16,80,72,84,4,84,70,51,47,2,28,33,45,38,5,37,58,10,50,66,1,30,48,54,65,34,14,18,56,59,88,85,26,13,49,15,36,67,55,57,22,54,33,37,60,58,5,37,71,1,5,16,66,45,28,56,1,37,50,68,5,59,56,18,72,38,29,2,34,47,23,34,77,35,44,7,18,19,50,61,48,88,12,61,61,68,21,44,68,37,88,1,37,28,17,14,61,8,5,22,50,43,57,37,34,16,69,9,12,87,41,84,80,2,87,45,58,5,41,76,56,19,64,26,19,35,65,45,45,13,34,59,80,53,79,33,60,7,18,59,81,21,57,37,70,16,61,16,83,14,48,28,62,1,69,67,63,63,43,45,46,35,49,61,53,68,28,81,19,65,88,2,69,77,72,83,11,8,15,18,33,87,62,65,20,66,46,83,42,40,50,19,84,79,40,16,10,27,77,16,74,68,28,24,33,2,28,34,30,36,31,2,40,13,22,53,62,60,30,75,21,70,8,88,55,51,83,39,53,53,63,22,85,49,8,53,62,59,29,29,4,50,61,14,76,70,34,74,5,23,65,13,73,75,37,30,59,17,42,50,41,7,5,6,82,12,15,48,24,69,29,81,87,80,72,59,16,61,13,60,17,19,48,60,45,65,69,74,62,40,75,88,18,34,29,43,55,45,67,62,45,46,61,3,17,79,45,72,75,43,59,83,60,79,42,19,46,1,88,47,5,41,35,27,44,77,43,56,30,5,2,44,34,64,62,63,38,62,81,1,34,33,57,39,74,82,77,37,73,23,48,29,33,36,16,24,51,20,58,43,82,28,86,36,32,63,57,65,82,84,88,85,76,73,8,68,81,88,62,12,15,2,78,78,37,34,62,15,70,44,84,61,16,81,56,22,46,24,25,53,24,72,17,14,56,62,24,15,55,87,79,72,28,79,88,50,13,61,57,29,42,18,57,59,38,75,37,73,88,80,43,54,53,24,40,42,25,53,3,72,78,30,67,31,59,82,14,64,88,10,86,84,3,76,42,84,39,80,68,72,55,33,18,29,5,57,33,17,76,31,16,22,73,57,75,85,85,24,88,24,44,62,26,15,25,57,27,68,45,37,6,75,70,37,53,15,42,33,59,11,31,82,26,8,5,44,79,47,31,3,73,34,3,53,33,27,3,27,81,77,80,23,66,80,64,69,42,31,28,12,81,2,34,41,61,88,10,50,12,6,57,36,12,51,80,25,3,45,87,37,16,57,36,4,62,81,66,44,88,88,74,2,38,30,20,50,56,81,24,3,71,35,79,9,38,84,63,77,18,44,68,70,37,38,24,53,84,59,5,32,46,51,51,14,49,6,84,82,76,41,45,7,78,21,14,83,23,67,75,83,19,54,27,19,83,7,25,64,41,77,49,59,75,48,88,42,4,1,86,12,24,63,68,75,13,36,42,67,48,11,28,26,38,15,35,27,88,75,13,13,33,47,4,27,56,18,38,65,73,11,65,61,85,12,43,41,38,26,22,44,5,7,75,20,6,86,54,72,74,43,16,65,30,55,54,82,3,81,26,75,79,23,58,37,39,69,23,38,11,56,61,59,28,78,13,76,20,14,27,1,6,43,7,4,14,81,27,45,55,41,46,33,52,7,35,85,6,70,83,20,82,45,58,79,47,45,46,80,27,17,4,35,26,68,12,83,64,6,5,7,53,60,18,29,85,20,27,58,78,6,75,13,82,47,58,77,88,37,55,42,44,21,12,57,83,43,50,57,10,5,68,66,20,35,52,21,50,66,11,51,45,22,25,36,70,37,12,41,49,50,51,29,58,61,44,70,37,7,15,86,87,65,71,86,37,50,23,39,31,72,86,75,39,83,20,45,31,58,1,6,41,67,23,21,35,85,70,62,35,58,14,68,22,68,53,5,65,58,47,52,79,55,54,21,43,14,36,73,27,51,41,27,35,5,78,60,31,48,62,67,46,50,29,58,81,60,51,76,50,30,17,38,73,49,73,85,48,2,46,42,25,46,85,74,68,58,69,63,76,32,48,71,17,20,36,1,27,23,28,81,42,27,36,80,53,59,16,70,48,67,67,35,8,32,48,52,23,75,43,20,61,21,14,28,61,19,61,15,30,17,82,52,86,46,80,36,31,26,4,27,64,79,44,64,20,26,29,2,57,29,5,21,15,69,84,80,51,52,82,84,25,77,68,56,32,47,40,27,16,6,63,47,11,63,33,33,60,66,29,74,72,62,54,58,48,37,25,84,23,48,39,32,51,52,26,82,82,17,44,66,51,2,86,64,21,85,42,82,77,60,44,78,7,23,17,14,41,60,88,55,77,13,42,50,87,76,19,46,35,45,13,63,11,6,66,41,9,73,78,60,3,7,85,19,63,1,66,30,81,67,32,86,34,44,76,8,2,4,85,76,50,70,29,26,40,58,10,84,41,14,35,4,52,56,51,46,69,84,47,14,21,29,5,43,84,3,77,32,49,20,26,25,21,9,21,19,39,62,43,52,26,77,49,11,5,74,64,67,12,51,56,51,41,55,54,64,49,12,34,36,61,28,18,73,38,75,2,59,60,71,10,73,47,67,76,52,86,13,29,3,68,63,66,44,81,61,82,24,72,83,16,70,84,39,10,17,64,64,65,27,16,55,72,18,4,31,29,66,16,44,11,63,29,39,27,82,3,86,18,82,13,39,56,80,59,48,20,4,1,73,45,50,26,51,78,58,75,17,15,82,33,5,20,76,80,42,67,31,35,11,81,17,8,75,51,37,51,23,21,41,33,6,88,17,86,72,33,12,59,24,74,6,73,18,78,71,9,53,12,40,14,4,26,81,81,12,37,88,66,3,19,67,24,74,6,1,14,29,47,35,51,67,27,50,38,70,46,6,31,46,77,1,46,18,71,24,49,78,46,26,63,42,67,41,85,78,64,3,50,39,49,6,6,83,42,32,86,55,1,43,36,74,77,4,56,17,7,83,52,35,72,14,77,3,36,49,16,42,29,58,47,41,43,1,18,41,3,32,54,17,19,53,17,29,69,22,57,45,82,51,64,1,61,14,10,67,27,3,3,71,1,26,30,54,47,73,18,67,33,85,61,61,69,24,73,42,55,57,4,57,68,41,28,61,12,22,64,46,7,53,19,52,31,5,51,18,41,65,7,70,78,82,64,22,12,52,81,24,48,46,18,33,15,44,28,78,7,70,45,31,5,67,36,6,30,82,77,10,29,55,59,86,40,46,60,37,72,86,12,16,82,51,22,27,61,34,24,49,3,67,19,1,52,85,83,3,51,83,77,34,44,30,79,39,17,71,41,82,85,53,85,42,61,29,13,61,2,5,72,52,86,21,12,81,71,22,65,31,60,68,38,23,70,30,17,41,41,26,66,59,10,87,71,64,73,70,86,44,23,35,13,30,41,12,4,22,38,77,43,43,85,45,2,21,3,38,26,15,12,69,82,82,22,83,21,50,20,37,50,60,52,14,1,40,3,12,26,27,87,38,5,46,39,63,44,56,61,76,16,47,4,40,37,81,3,55,51,68,68,18,27,68,5,18,61,1,68,88,21,10,19,1,14,18,82,62,6,13,79,61,30,48,68,19,15,41,37,85,58,40,55,13,17,59,60,79,44,70,23,85,75,28,61,70,24,37,50,6,34,78,59,26,22,62,59,29,36,4,32,28,82,57,69,78,19,62,71}

    Returns: 109232

  32. 92

    {94,67,50,64,30,76,76,86,81,43,50,12,46,35,22,8,72,7,23,70,2,88,29,69,8,92,67,91,91,73,82,25,72,12,32,78,51,69,72,72,67,54,80,63,50,35,27,75,47,78,68,18,13,35,95,68,17,41,44,14,63,48,95,30,68,33,54,48,14,7,56,72,10,98,18,87,25,11,79,7,21,90,8,7,21,99,13,86,30,70,31,28,30,95,20,12,92,48,23,69,95,50,74,68,42,40,82,65,57,33,27,30,7,75,5,46,21,71,13,47,36,79,20,46,48,26,3,94,74,36,8,90,40,43,10,57,79,66,62,7,10,41,12,87,71,14,36,33,46,10,56,30,53,15,78,15,20,29,36,37,42,70,42,36,1,38,80,93,14,80,27,22,63,21,81,34,33,91,95,79,9,70,47,29,27,67,59,3,51,59,76,48,36,86,43,45,1,34,66,51,29,19,55,12,88,99,14,65,84,64,35,62,87,59,78,28,63,8,50,6,24,46,91,21,39,64,59,30,17,40,58,25,40,2,83,98,36,65,83,62,37,65,23,4,10,11,86,7,76,44,34,78,11,25,26,94,33,46,48,69,92,67,38,41,55,94,88,58,57,16,33,65,93,28,26,68,95,92,45,72,66,97,84,90,2,1,4,35,89,70,69,21,74,43,74,99,68,3,93,2,42,36,90,75,43,38,27,93,87,30,76,12,25,15,79,15,60,31,38,57,71,34,7,64,79,57,51,44,75,96,93,68,96,82,93,75,83,2,52,38,41,63,89,76,62,97,45,34,100,34,82,50,71,84,22,58,73,19,21,56,10,46,11,39,23,17,52,76,64,57,36,62,15,24,46,77,55,56,21,69,97,24,96,43,67,25,18,37,87,58,76,64,15,100,75,90,51,49,28,98,64,89,5,25,96,39,46,24,29,96,50,43,17,71,45,92,9,62,48,19,54,30,50,97,25,70,25,60,71,5,42,60,80,83,89,15,54,56,40,78,59,19,99,58,69,87,14,87,24,59,27,50,69,65,48,42,86,56,38,45,9,32,6,8,55,4,55,100,7,1,73,28,97,58,97,9,91,31,57,92,53,26,89,65,79,28,93,40,93,87,86,20,12,14,82,64,17,90,69,5,31,54,41,99,24,30,3,13,49,48,62,7,9,36,54,76,91,14,4,7,59,92,13,84,76,19,62,99,58,80,80,10,75,51,86,78,28,22,96,67,74,26,52,46,58,59,26,91,11,59,96,69,97,91,38,28,80,75,74,30,23,66,31,83,18,17,3,75,7,95,94,34,14,81,97,59,32,27,20,49,6,87,6,35,45,17,88,37,58,64,19,44,37,66,92,25,35,12,83,96,94,13,93,46,13,65,64,60,60,17,5,84,89,69,45,87,98,57,46,2,94,45,23,47,48,23,24,52,6,17,74,53,12,4,36,42,21,6,85,91,25,72,78,17,33,17,70,98,75,22,34,72,36,99,22,40,98,33,64,93,33,32,72,90,53,37,1,23,21,58,53,9,54,28,65,70,8,1,92,73,13,44,19,20,42,6,69,13,21,94,29,20,90,4,30,40,74,33,21,34,88,97,38,93,19,87,40,1,38,87,94,18,76,87,36,43,46,34,65,70,64,79,60,97,2,86,1,5,32,90,25,75,65,18,36,85,75,95,72,72,96,5,88,30,98,1,47,75,53,70,16,80,31,39,77,56,40,6,99,59,30,46,3,33,71,82,35,50,20,63,2,39,8,38,87,19,49,81,17,43,56,58,17,48,56,26,64,3,46,81,87,79,99,57,97,36,35,65,11,58,75,98,38,61,94,38,7,43,21,68,21,28,79,80,57,15,100,47,84,38,83,35,91,99,100,2,19,43,43,49,51,100,93,72,78,46,30,67,94,82,46,65,70,63,45,44,53,79,69,31,7,14,11,59,39,93,47,17,94,45,28,29,90,20,97,2,58,10,33,65,75,28,39,80,66,58,70,15,4,47,65,39,77,9,82,87,24,73,66,52,22,2,69,46,89,80,34,70,24,66,73,35,31,100,54,97,83,39,80,54,78,7,52,83,93,28,69,98,93,26,67,48,74,1,25,51,23,44,61,55,31,44,10,65,1,88,82,69,67,21,55,94,16,26,56,75,21,30,11,48,57,66,49,48,7,36,89,85,5,87,52,99,66,23,59,65,5,24,64,37,70,6,97,38,62,73,85,7,30,83,92,19,35,10,29,25,3,18,68,90,29,35,33,93,93,99,71,35,99,66,28,70,98,99,20,77,25,69,73,49,50,34,35,99,11,91,89,42,40,8,91,45,37,24,43,91,30,74,50,51,48,24,58,43,96,55,74,40,59,61,56,72,59,17,32,84,31,79,60,30,80,76,37,24,20,85,12,44,43,69,85,89,25,95,80,20,49,51,83,67,68,18,63,1,92,77,89,11,5,42,20,94,87,79,93,78,32,57,75,69,70,65,17,56,41,37,81,81,10,81,15,2,43,59,42,88,78,19,1,3,55,24,22,48,67,75,32,51,37,22,2,30,69,64,22,65,94,56,45,63,56,73,75,18,13,94,1,13,99,92,54,57,75,47,49,68,37,52,20,8,77,67,59,54,94,83,25,18,46,24,21,27,67,40,24,63,32,7,84,11,74,81,45,37,19,46,89,76,17,87,47,98,68,68,91,69,84,61,35,27,20,25,12,54,28,46,18,33,86,46,65,18,73,43,35,10,13,19,38,42,40,31,81,37,22,5,31,65,94,6,9,52,32,19,90,66,60,1,83,66,19,52,68,49,49,51,23,97,96,10,27,22,2,12,51,18,86,91,32,82,42,55,35,67,35,34,33,63,73,88,2,69,100,6,17,97,98,77,43,50,84,13,75,7,24,73,49,45,15,41,29,24,76,62,49,53,1,85,95,100,47,99,35,61,97,2,2,61,48,89,89,54,54,99,69,10,43,27,64,95,68,53,19,93,78,16,69,10,20,16,95,74,32,13,63,43,86,45,80,90,64,79,68,61,63,75,60,70,31,41,36,98,24,22,72,56,83,77,55,100,23,66,26,48,80,87,55,4,87,76,93,63,89,16,67,36,81,62,97,84,35,43,38,49,30,72,65,30,28,41,99}

    {13,33,58,4,85,92,72,58,28,15,18,14,83,91,20,55,38,53,91,70,57,39,52,71,42,63,20,35,89,24,28,34,55,50,38,23,48,31,82,32,60,65,55,23,28,84,65,25,31,11,68,16,8,69,51,28,36,49,62,74,33,57,5,75,73,43,74,56,41,55,37,59,65,32,31,1,49,85,20,7,92,37,72,66,31,5,47,92,26,44,87,37,85,14,6,82,80,70,70,63,70,26,54,51,28,12,54,37,92,90,56,64,4,56,78,38,70,88,90,82,58,9,14,49,57,8,15,40,39,49,30,35,79,7,6,13,64,79,75,10,91,26,83,13,62,66,51,35,61,60,23,11,73,59,27,6,4,75,46,61,29,12,72,43,12,61,21,64,2,87,46,14,69,13,16,89,67,41,65,55,3,78,89,20,57,87,6,19,72,78,64,55,81,14,7,55,89,73,85,14,3,39,11,85,12,8,83,71,84,31,76,81,61,82,86,65,25,56,2,54,9,8,18,56,33,63,44,35,80,50,40,72,5,33,34,34,23,22,41,87,34,14,88,22,38,20,21,77,26,45,84,53,68,23,89,32,44,77,53,74,86,77,62,9,20,31,65,41,49,80,78,61,39,49,64,29,72,90,42,63,90,35,26,83,9,59,33,75,41,45,31,82,50,29,59,7,82,28,1,78,87,25,72,10,62,78,48,21,69,91,40,43,1,87,35,42,55,7,22,70,3,27,57,55,24,24,13,50,45,64,58,87,45,83,85,92,18,32,32,51,73,83,86,6,20,84,18,38,26,18,37,29,3,86,76,87,8,92,65,82,29,63,51,5,92,59,32,29,14,50,25,58,23,52,73,78,68,52,80,50,66,77,20,73,83,60,71,42,76,35,75,90,82,71,90,73,6,47,37,26,47,77,60,3,80,69,24,66,31,32,28,74,12,79,43,81,59,92,87,68,77,51,32,33,35,60,90,85,33,40,61,56,11,38,40,39,53,4,50,42,90,85,91,19,70,5,53,89,1,77,80,43,85,5,29,59,29,20,47,19,9,34,17,3,89,35,60,46,55,90,60,20,68,26,15,77,44,36,84,72,80,54,72,42,53,5,70,21,49,85,59,61,74,63,10,90,67,11,22,30,70,47,45,33,76,22,11,24,64,48,48,22,82,70,54,13,30,88,92,21,42,33,7,3,26,67,28,59,49,88,9,75,4,61,14,49,90,8,80,7,42,44,84,53,40,66,92,13,48,10,7,58,49,3,75,44,86,65,46,14,1,3,32,51,35,36,49,86,1,56,87,68,77,59,27,67,66,60,89,19,21,82,41,68,87,46,21,51,15,70,43,11,52,39,88,70,68,75,15,82,66,16,52,65,52,92,85,84,18,81,35,35,38,2,88,79,54,58,20,38,20,31,54,34,84,50,42,56,42,57,23,62,85,27,88,64,83,57,67,48,27,31,87,33,35,3,2,21,27,20,67,24,13,73,56,82,78,72,2,68,68,63,2,47,76,23,91,31,67,32,23,24,19,29,35,14,45,13,9,16,29,69,47,8,4,21,57,15,27,33,73,5,52,2,31,88,59,5,1,88,90,76,68,43,13,47,79,3,6,20,35,53,92,52,7,56,54,56,35,52,55,45,33,62,60,88,43,37,34,60,91,67,23,63,54,70,65,22,59,55,53,12,68,50,73,8,84,45,68,10,74,16,2,68,59,28,78,48,20,81,88,33,78,85,59,4,84,83,48,91,2,22,10,23,91,30,45,42,3,75,72,66,67,66,50,65,80,62,60,11,19,12,58,53,8,55,86,21,48,85,18,15,47,71,4,22,22,44,58,28,59,72,52,8,86,80,84,77,84,36,3,43,48,86,41,65,59,32,84,68,90,46,40,6,20,28,90,13,64,34,24,80,15,62,92,60,37,62,83,56,76,83,49,65,42,58,18,35,90,41,5,47,6,47,41,18,54,40,86,54,52,70,84,26,44,6,75,88,77,34,78,84,59,73,46,82,61,85,41,82,44,11,31,34,35,92,61,67,24,58,70,40,24,75,74,15,34,26,51,24,42,28,41,61,37,27,67,54,41,87,85,81,5,21,38,67,21,20,50,25,26,81,81,42,79,23,29,38,29,12,74,38,89,21,71,63,47,11,23,75,31,55,9,28,90,3,89,57,72,2,76,85,46,51,18,42,75,68,65,32,39,78,69,86,78,71,50,81,20,36,33,21,88,4,1,56,91,25,33,84,45,46,80,44,25,58,23,49,86,61,9,84,63,27,82,36,81,17,65,52,40,91,91,46,5,52,38,18,66,53,42,70,59,77,35,86,33,3,67,56,47,89,61,34,43,43,3,88,83,32,14,12,76,6,22,1,80,54,4,9,20,88,76,31,34,36,21,28,11,28,9,23,77,34,13,4,24,13,50,28,76,90,74,86,3,72,15,69,64,92,25,88,80,66,4,78,63,12,62,52,83,47,51,61,85,76,46,37,56,84,82,66,83,17,80,37,26,34,83,44,63,64,88,17,43,47,34,65,88,19,71,88,68,32,20,2,35,13,89,39,37,30,31,36,22,11,34,42,15,36,86,16,92,39,44,39,58,63,54,4,44,76,90,42,26,57,54,92,64,90,19,10,34,38,92,6,52,7,89,10,62,24,62,59,5,70,13,24,32,78,16,41,38,36,10,55,88,75,17,50,59,88,73,31,67,31,2,82,23,60,84,32,48,2,25,44,15,47,69,12,79,68,58,83,85,76,44,36,35,4,51,86,91,15,89,85,26,38,16,48,55,25,39,30,59,36,62,21,29,19,40,51,72,26,12,5,50,23,29,60,4,16,36,6,46,71,51,88,53,27,47,41,27,87,13,60,7,92,87,71,27,82,73,54,45,88,36,60,78,73,34,47,22,21,1,90,7,92,19,33,38,37,41,56,23,22,88,11,84,86,77,2,91,24,16,43,60,33,75,27,28,70,85,11,21,6,4,63,20,28,84,63,54,65,87,26,52,47,2,48,62,46,53,74,91,80,30,55,16,3,76,39,43,89,77,63,61,20,32,13,73,71,57,23,79,58,7,11,75,39,3,75,75,27,90,6,35,71,18,70,23,54,50,49,30,34,3,71,24,10,22}

    {84,77,29,36,19,27,66,50,53,64,72,46,51,36,62,24,80,23,7,47,69,2,57,58,89,85,9,67,66,36,79,14,16,16,16,7,28,88,54,34,15,7,85,23,79,87,72,2,5,87,84,86,76,27,37,92,43,66,24,47,82,61,88,42,10,86,4,65,22,68,44,54,63,54,92,74,77,87,59,6,7,10,81,48,71,15,26,15,1,31,42,62,22,26,69,77,82,12,15,18,50,53,72,48,27,1,68,8,18,19,82,36,35,17,26,39,12,27,28,7,30,44,76,58,42,55,12,49,25,29,16,28,34,42,20,18,61,61,53,56,11,62,75,59,78,53,56,83,6,56,10,63,26,74,28,12,40,28,13,27,76,51,23,17,3,77,76,79,76,34,40,7,21,89,80,76,6,72,83,89,88,74,90,53,73,9,53,7,36,10,58,9,33,51,62,19,63,37,23,85,14,64,71,30,88,10,47,17,92,56,30,34,24,25,24,90,91,55,17,44,31,56,17,24,57,13,44,5,35,91,19,2,56,41,78,34,6,52,25,37,65,73,2,72,59,11,92,92,52,57,90,69,67,44,31,62,27,84,40,2,21,77,24,34,25,39,25,81,39,49,5,91,46,72,20,26,28,51,71,12,41,40,71,18,36,76,1,33,14,15,27,54,85,1,74,33,13,38,70,69,10,42,64,85,24,71,50,89,57,41,80,81,62,37,19,71,63,79,14,26,52,8,22,23,44,13,32,39,9,38,19,92,59,75,72,60,90,6,61,90,91,14,55,81,51,27,89,11,87,74,71,33,12,19,56,53,20,33,87,13,19,14,83,87,53,9,69,14,60,51,8,61,87,59,92,92,4,88,12,72,14,4,3,71,65,2,79,52,90,49,3,53,20,73,13,47,26,15,11,40,25,55,25,2,46,75,58,82,34,16,81,70,77,45,68,46,52,91,74,14,57,67,34,82,31,92,88,84,91,61,14,12,24,4,92,39,75,7,71,63,89,67,33,19,24,25,2,9,80,61,6,8,70,83,29,18,24,7,16,51,11,84,53,45,86,47,84,47,88,16,68,92,55,80,81,49,78,56,24,69,33,12,73,91,69,82,30,59,36,51,61,10,72,78,66,43,41,90,38,42,12,28,51,11,66,77,26,50,78,90,26,51,28,68,60,62,86,53,63,74,38,82,85,88,54,30,71,16,72,57,66,32,84,42,72,49,14,72,58,7,26,47,74,6,70,88,1,64,9,39,51,22,2,42,73,71,68,59,37,53,12,70,23,85,91,87,66,55,92,81,9,60,8,58,12,9,87,54,42,19,20,10,16,33,89,74,51,41,24,30,47,29,39,28,16,47,83,30,63,53,65,62,11,50,49,86,3,67,92,20,43,91,44,49,35,52,27,12,17,19,56,12,31,92,22,16,25,19,23,37,66,75,49,66,75,1,85,39,4,58,84,81,39,77,41,3,32,50,79,6,79,90,39,31,71,45,73,20,5,31,90,59,38,24,14,40,61,76,47,72,73,53,67,88,72,4,58,74,59,84,12,58,73,5,54,23,81,62,31,19,9,16,4,62,6,13,53,22,32,3,61,13,69,24,2,38,56,28,12,62,37,4,15,42,20,88,52,92,70,28,63,12,54,76,22,20,4,1,21,84,90,84,26,83,14,29,54,19,20,68,65,91,78,17,84,32,66,54,81,53,54,20,7,75,21,46,29,10,37,83,39,18,44,28,45,83,18,55,35,86,20,21,89,84,10,74,63,89,64,55,88,4,85,64,23,60,31,82,32,60,72,81,88,61,19,8,49,79,42,70,68,76,64,89,77,73,10,19,89,79,20,1,17,11,28,18,71,65,11,85,30,20,47,63,91,81,85,85,91,87,55,1,78,80,61,29,33,90,85,33,37,62,2,12,14,88,1,17,55,2,33,61,6,6,92,73,21,67,83,26,12,69,29,16,38,25,76,80,56,62,19,2,10,62,72,62,26,10,15,37,85,14,15,50,23,40,32,53,27,2,34,66,62,37,45,88,57,12,49,69,90,21,91,7,10,44,60,13,49,79,5,17,23,88,14,71,77,82,23,77,32,39,12,31,59,89,63,47,35,33,90,18,59,52,58,13,16,3,8,40,48,67,60,17,67,64,68,6,58,84,8,45,1,45,45,53,52,9,69,20,67,82,64,35,27,84,13,40,76,81,74,74,74,21,43,24,67,30,68,54,19,63,31,51,46,11,40,22,80,87,79,65,51,7,24,45,12,68,56,79,53,59,11,82,37,87,54,60,61,2,23,12,88,25,13,37,1,10,91,64,58,28,56,16,53,34,25,4,7,90,92,32,41,71,43,18,55,67,1,38,6,2,62,52,44,80,25,19,33,3,84,42,36,1,48,86,45,29,53,42,28,47,12,46,71,49,14,61,2,27,17,2,86,62,13,52,17,40,17,62,81,37,55,81,38,52,64,14,45,58,65,79,87,78,85,37,17,21,39,53,85,86,80,34,29,65,6,45,15,48,38,5,52,91,21,20,5,9,71,87,83,65,60,16,6,8,87,67,80,70,69,64,65,56,10,80,8,78,89,60,25,33,18,29,41,42,16,77,45,40,9,59,20,27,72,42,83,15,10,13,12,26,31,59,69,15,60,81,11,53,57,68,48,17,35,62,24,21,60,70,53,52,16,28,21,35,7,40,37,25,64,75,10,24,82,49,42,80,41,37,47,19,33,43,63,77,46,24,29,56,60,37,5,24,31,53,47,39,58,31,80,57,54,34,75,63,65,78,49,20,43,89,21,16,63,56,12,56,16,16,61,13,6,57,91,90,67,62,12,68,30,89,1,31,75,85,37,52,84,55,50,84,73,72,86,57,10,9,89,27,70,60,39,24,13,83,38,1,40,62,54,20,76,5,17,67,24,40,63,65,90,60,66,18,83,18,2,15,24,52,34,52,17,52,49,10,5,86,24,81,90,9,3,21,72,72,74,66,61,34,82,59,52,41,91,27,22,31,92,89,18,88,22,49,7,12,49,65,85,32,49,92,87,60,66,76,31,56,17,53,85,44,63,85,46,74,28,24,6,1,4,7,3,49,1,55,16,86,70,23,79,66,68,52,91,28,63,15,73,35,39,79,47,88,40,57,7,10,13,90,41,84,74,84,72,5,71,50,86,10,70,76,44,74,52,65,90,51,68,15,57,57,64,59,29,69,69,1,55,60,33,39,60,91,49,14,39,17,61,78,36,76,81,18,43,10,71,81,39,89,59,42,61,10,69,88,53,18,17,57,13,29,16,19,60,11,35,64,26,25,41,26,28,4,17,89,51,54,35,49,20,92,53,56,57,64,55,49,15,78,32,41,55,37,50,30,87,7,89,6,55,19,36,71,49,42,54,83,57,64,13,91,48,91,76,41,67,36,48,69,6,57,8,45,90,74,58,20,62,57,23,82,35,62,33,40,58,68,23,57,14,57,11,55,91,45,71,79,73,61,29,77,14,7,4,39,81,36,61,92,80,88,53,68,46,53,18,90,73,3,24,36,78,72,63,14,16,71,5,59,33,3,71,30,17,6,38,59,32,55,87,4,2,37,92,19,4,70,29,20,83,58,40,26,52,59,61,48,23,61,5,65,18,79,36,74,2,57,89,45,78,35,17,64,89,24,82,12,83,82,52,90,87,92,50,51,45,61,70,50,84,49,54,48,92,43,37,78,18,88,28,70,54,26,92,30,78,6,68,24,55,68,33,14,58,1,61,21,43,53,23,18,58,57,77,71,39,38,90,21,52,84,37,41,2,78,70,56,47,82,24,90,39,53,92,1,26,35,76,89,68,83,77,90,1,50,55,28,19,8,66,37,40,49,30,62,60,25,57,4,1,10,62,35,66,79,29,77,86,37,84,20,78,65,86,52,47,13,67,28,66,50,37,16,62,83,27,4,4,24,73,66,43,24,34,56,50,20,48,67,66,89,73,54,65,57,89,67,38,41,73,68,60,47,87,66,32,21,85,5,11,14,12,30,10,20,59,33,43,57,30,67,48,69,67,36,11,6,14,39,89,3,10,1,91,74,63,69,32,26,71,77,65,31,85,46,53,56,76,66,63,77,25,10,74,64,90,56,33,72,32,26,80,47,80,83,19,77,72,92,46,81,4,20,25,79,82,22,47,47,56,20,32,11,34,89,72,69,68,87,11,57,23,17,82,33,60,70,73,39,4,85,69,76,64,83,91,32,53,71,31,27,57,13,16,14,87,10,69,79,22,21,60,44,78,16,83,85,7,86,84,86,81,61,62,92,56,89,4,7,74,49}

    Returns: 69968

  33. 68

    {24,6,30,27,78,9,75,14,18,100,17,62,2,64,96,75,82,44,42,52,50,28,23,67,18,64,10,41,53,44,8,2,70,65,34,88,42,55,43,42,34,40,50,18,55,69,85,8,75,88,6,76,45,17,79,13,5,28,15,41,86,45,70,17,41,76,77,15,82,85,19,94,48,30,3,87,21,80,69,67,44,66,92,42,31,81,34,54,14,59,49,74,38,29,98,18,51,71,50,100,21,83,49,31,47,64,83,5,26,71,92,84,84,39,19,59,73,74,4,5,88,16,4,76,66,52,33,61,73,83,72,24,18,98,58,77,72,7,4,96,7,61,47,73,22,60,9,94,59,70,91,10,79,16,88,94,12,78,8,9,48,29,100,6,5,73,30,65,77,80,59,23,7,48,19,85,43,60,13,33,55,19,87,8,17,37,99,51,98,31,3,97,11,15,65,70,50,3,21,11,21,74,5,62,89,78,58,91,27,76,55,64,76,9,1,17,20,42,32,30,66,78,33,29,59,63,27,42,40,20,2,10,84,85,83,8,84,35,67,78,28,84,6,81,85,70,3,40,12,27,7,90,25,22,46,88,25,74,65,68,93,4,14,59,2,77,53,94,52,54,25,88,63,74,77,16,16,88,4,6,82,94,20,6,35,40,62,83,91,100,83,58,97,14,63,8,33,66,67,49,78,61,29,63,36,42,48,100,22,58,57,27,57,53,23,26,11,25,25,11,18,58,43,58,65,44,27,27,48,38,54,69,90,41,65,30,83,5,7,43,52,50,76,84,4,47,28,68,53,74,83,54,8,54,31,42,27,15,97,10,41,79,38,18,96,25,99,100,39,46,29,39,43,7,92,36,55,98,31,28,97,82,100,89,82,39,34,34,38,75,37,93,74,40,80,57,59,4,96,4,38,84,69,1,51,67,26,58,65,82,72,18,3,72,82,33,91,96,53,50,15,38,74,3,34,24,40,93,82,72,68,39,32,62,83,18,94,10,90,99,79,32,6,31,49,49,35,11,48,37,39,71,96,39,9,32,29,98,71,54,32,90,38,52,35,72,79,35,28,24,8,69,44,58,13,33,73,78,47,44,86,40,49,34,30,22,57,35,98,27,34,90,75,75,36,45,94,91,85,61,46,9,73,46,26,97,19,67,15,82,96,68,40,1,32,54,84,46,5,49,51,41,38,3,51,16,17,98,86,54,49,5,100,91,16,16,70,91,58,100,7,73,77,75,57,16,40,70,80,17,3,46,33,17,6,91,58,11,6,29,35,45,60,25,48,73,9,28,71,81,40,85,74,6,60,78,28,87,59,9,60,52,77,3,16,92,66,30,78,37,66,71,62,15,93,17,34,4,91,86,77,35,64,44,62,51,76,5,45,51,73,86,65,56,65,98,7,2,67,70,12,38,93,75,52,27,85,22,77,75,16,50,18,95,40,89,95,1,14,12,84,36,44,23,53,37,80,36,94,40,18,65,53,36,32,41,49,21,26,52,6,42,26,81,54,56,42,52,56,95,62,30,14,45,25,92,30,35,99,96,6,48,55,21,71,75,26,69,80,9,89,55,96,70,59,94,55,58,93,58,86,76,58,26,29,54,91,83,14,83,71,3,4,24,35,75,40,88,77,42,96,94,69,90,51,7,66,47,1,15,59,4,22,60,71,98,8,50,2,3,19,92,62,25,92,61,44,91,73,81,49,25,47,10,60,41,100,76,63,51,9,65,83,79,47,48,10,87,93,83,86,94,67,54,10,98,62,9,45,91,89,53,79,100,74,92,51,42,19,100,10,3,82,41,39,99,67,46,54,27,2,49,47,74,24,84,19,73,52,60,39,2,12,31,26,14,28,71,46,41,79,47,6,49,92,74,5,74,24,22,9,1,62,90,2,13,63,71,67,85,39,63,60,34,81,40,39,64,22,88,15,76,23,1,19,67,76,13,71,89,17,79,88,42,60,32,39,23,46,67,46,57,52,57,86,82,97,92,47,95,95,40,60,87,62,57,29,79,63,79,66,26,64,64,18,42,35,35,2,77,37,92,23,20,12,36,83,47,87,98,82,33,10,45,18,46,97,45,13,85,30,36,10,97,75,88,72,99,81,77,100,60,39,70,30,59,92,34,71,92,98,9,22,37,73,41,79,12,74,73,37,25,75,91,92,10,65,85,25,79,78,57,41,29,55,89,73,88,15,39,10,17,16,83,60,82,81,98,35,19,48,2,82,60,17,19,77,56,74,84,35,12,56,26,94,17,72,79,75,46,57,25,24,58,3,74,96,55,90,62,51,76,90,38,99,89,30,13,29,21,31,16,50,6,73,45,70,46,73,28,32,22,97,21,33,12,72,45,57,93,12,28,63,4,6,55,80,78,84,56,67,28,27,38,37,86,23,63,34,75,74,9,6,2,72,91,25,92,72,10,42,31,35,26,99,94,86,42,58,24,32,22,45,99,24,86,43,67,73,23,38,69,84,45,33,39,71,48,43,99,8,99,89,82,65,44,25,83,81,75,35,39,6,1,50,40,83,57,72,40,16,94,82,93,92,87,67,56,51,96,3,27,85,47,70,45,5,70,19,68,95,10,28,59,43,45,36,59,19,3,94,89,57,23,97,31,77,27,35,63,70,81,32,82,73,9,9,28,39,58,68,33,16,5,49,83,40,46,73,4,81,67,73,37,21,21,54,33,45,28,31,9,57,90,40,41,2,100,28,5,63,26,89,10,57,70,100,28,30,34,27,23,56,28,28,6,82,65,2,82,87,86,23,54,97,52,100,22,74,62,13,97,24,67,74,58,36,33,2,18,80,2,64,53,100,85,12,13,26,28,23,92,71,11,97,64,48,84,76,88,11,49,7,73,91,98,67,73,71,39,44,96,23,52,76,39,91,55,16,86,33,37,19,22,48,40,13,38,80,46,54,70,19,48,35,78,53,25,56,18,6,72,56,51,5,75,36,64,12,2,6,4,80,50,21,28,89,64,97,52,37,30,13,22,83,14,41,91,38,38,98,80,55,97,13,90,67,44,77,19,53,90,73,64,82,68,23,26,47,92,53,34,28,74,13,93,80,39,60,2,58,28,66,53,82,38,56,12,39,44,91,88,40,59,19,74,40,58,43,90,43,33,99,61,39,97,13,29,25,36,12,14,80,29,16,48,92,66,45,27,74,17,63,61,94,28,61,68,35,12,6,71,77,4,29,81,76,58,10,2,39,63,20,77,20,87,93,17,63,28,34,85,96,39,19,76,6,24,65,46,27,31,51,42,62,67,6,64,27,49,6,55,35,54,53,36,67,55,46,20,86,87,68,40,78,19,8,79,45,33,97,45,91,24,73,67,90,81,67,69,48,3,97,83,44,88,99,15,24,9,74,100,46,99,13,35,42,22,4,12,86,75,11,25,77,42,75,97,11,93,65,48,84,28,91,32,50,81,52,16,81,90,6,94,16,2,1,8,86,19,33,30,66,12,50,91,90,34,55,86,50,42,33,64,3,77,47,22,62,96,38,55,11,74,89,61,80,45,10,35,39,62,29,35,64,70,81,31,100,28,17,39,42,96,66,41,60,26,41,5,5,87,54,9,87,65,16,46,85,27,59,84,34,81,7,45,2,97,48,81,70,33,3,84,88,6,41,38,90,91,57,33,34,62,37,99,31,13,69,53,14,75,37,100,8,13,74,74,82,34,58,22,24,73,54,58,49,95,48,41,18,64,2,65,82,73,62,93,84,55,94,62,80,35,53,20,35,45,50,53,33,23,81,92,18,43,96,36,51,63,55,95,2,74,50,89,22,32,56,33,99,86,96,52,56,93,8,5,73,93,25,67,98,31,87,29,56,87,44,70,23,23,97,43,95,75,2,74,64,50,45,96,64,50,64,66,19,28,98,100,40,2,36,14,31,3,1,37,21,3,44,61,58,57,88,4,31,55,82,47,69,3,22,61,44,61,11,87,25,74,39,22,19,65,72,98,35,43,82,78,32,79,25,52,100,3,57,68,48,77,49,92,92,19,39,26,57,41,55,48,8,23,13,66,82,77,99,42,9,10,30,88,27,40,89,50,54,62,11,21,17,36,40,77,50,98,29,29,64,92,11,65,1,43,50,45,44,9,15,22,35,51,21,20,70,39,18,68,21,30,25,91,12,53,36,6,12,46,47,1,93,90,11,90,89,24,22,45,37,5,31,37,78,52,59,9,87,52,9,95,61,60,52,21,1,76,50,93,21,47,42,52,81,97,55,100,80,52,73,16,13,6,68,91,16,12,58,62,22,16,35,94,77,43,61,69,53,29,45,62,31,44,47,70,47,13,84,97,1,2,64,78,72,5,90,11,96,50,51,79,19,83,24,17,31,20,100,26,84,64,75,77,78,63,1,50,88,35,70,45,27,61,51,57,10,13,57,83,17,33,20,90,30,96,76,51,71,10,86,69,17,54,50,87,71,46,92,50,98,57,47,23,26,73,87,48,100,65,1,16,27,21,50,24,52,3,92,92,1,75,11,30,73,100,24,9,9,22,24,67,12,85,49,12,32,12,43,96,92,41,31,32,59,55,13,100,78,78,37,31,62,100,88,96,86,73,17,21,22,90,14,45,79,79,91,99,46,77,60,10,36,16,59,76,86,50,75,44,86,86,22,82,46,3,6,31,40,72,50,94,42,39,9,3,57,24,58,10,58,13,25,95,40,35,57,57,95,29,25,28,44,55,12,23,27,67,24,23,34,12,13,42,92,88,28,84,32,21,31,65,95,56,70,15,43,10,32,9,100,72,32,40,42,87,67,65,29,1,78,57,71,35,56,94,5,49,36,43,64,7,34,65,96,8,96,77,16,49,29,84,63,94,27,74,54,89,93,46,7,22,24,15,73,49,4,100,65,15,34,41,59,94,7,93,11,30,27,42,91,1,64,59,57,48,10,45,15,23,34,55,60,65,95,95,20,89,97,51,75,80,76,83,61,42,97,51,21,64,80,59,11,30,70,81,39,52,79,33,34,93,77,71,65,16,92,62,13,100,59,37,50,77,19,67,77,48,88,16,91,78,69,26,9,19,81,25,59,43,89,48,26,46,86,38,41,71,99,19,64,55,84,18,33,39,86,62,18,69,44,21,41,41,28,74,5,89,32,84,89,53,32,22,67,6,66,56,34,17,14,4,11,89,55,24,37,96}

    {44,11,48,40,54,42,30,10,43,55,26,35,61,57,52,6,29,18,54,18,29,68,19,31,11,11,37,39,58,58,10,57,13,57,65,27,39,21,36,52,16,2,9,57,2,15,18,45,20,6,27,49,51,46,52,58,36,41,18,21,54,54,32,58,29,53,30,66,10,49,30,46,4,25,56,15,56,18,2,37,24,47,8,18,59,32,51,37,36,13,49,67,21,8,45,68,15,35,4,64,3,46,64,41,54,1,29,64,4,33,42,42,9,27,2,13,19,9,23,37,42,37,48,7,22,5,61,18,19,67,52,11,49,26,54,40,23,38,44,42,29,52,2,21,23,7,33,57,42,29,66,47,3,19,51,24,12,33,65,58,29,61,40,27,32,55,66,9,36,19,31,2,6,49,36,61,16,46,12,25,46,46,53,6,52,34,46,37,20,12,7,36,63,11,50,16,48,17,9,52,14,52,54,68,30,20,47,3,5,38,35,58,56,22,10,39,37,32,40,44,6,50,19,17,20,54,11,19,26,7,27,45,26,50,47,50,13,51,46,37,4,53,9,36,37,1,45,43,20,47,66,14,6,39,34,12,10,58,14,41,49,68,20,43,55,16,30,19,38,47,53,26,19,4,54,30,22,48,9,32,53,2,4,64,26,8,38,47,27,54,35,24,16,7,1,24,48,60,10,17,62,35,17,66,7,15,27,10,48,8,68,25,29,19,37,43,19,27,63,58,52,1,23,54,60,44,62,55,51,35,35,59,32,3,23,48,51,62,24,57,47,33,62,14,33,56,27,16,11,47,65,5,25,41,63,25,37,55,12,2,24,5,58,11,23,23,40,49,68,29,12,43,18,31,44,25,26,43,3,14,48,47,16,66,51,27,14,17,54,51,62,1,8,44,21,31,58,63,24,61,27,66,16,8,19,18,10,53,25,34,51,13,18,40,24,38,67,19,56,61,56,65,18,67,45,57,28,10,4,9,43,14,32,68,64,11,39,19,65,20,25,38,19,59,34,50,51,40,12,48,16,6,44,53,2,54,36,30,60,48,32,49,9,9,20,62,67,66,17,39,51,16,11,61,52,68,25,20,63,18,8,36,19,4,42,20,20,47,35,11,37,58,13,53,34,38,26,68,66,27,22,65,17,17,45,44,57,64,10,20,60,8,19,66,54,62,10,23,28,17,8,56,47,9,8,58,65,47,45,37,16,34,38,11,23,29,45,12,3,7,65,61,48,8,62,68,41,24,43,59,24,42,22,48,38,41,35,23,1,27,58,19,59,23,37,16,26,37,40,37,35,62,28,62,41,10,36,54,47,38,45,33,5,64,40,6,7,58,51,7,39,48,65,3,11,1,3,20,58,53,49,16,52,63,29,32,68,39,42,38,51,28,41,20,18,4,8,11,66,15,26,26,14,39,10,47,5,2,43,31,14,30,37,11,64,13,33,11,68,15,39,41,51,61,11,66,29,36,20,8,59,22,28,60,47,63,56,18,7,54,32,1,68,7,24,61,10,54,1,15,2,30,56,39,68,53,33,4,68,56,37,33,67,53,56,14,59,65,57,28,27,29,30,63,13,65,8,5,6,59,68,1,55,41,24,1,19,39,20,38,61,48,14,51,52,13,24,33,40,40,14,3,3,59,33,31,57,24,45,16,67,40,63,58,29,45,23,12,24,47,27,52,17,5,60,15,67,29,37,14,6,19,52,17,42,7,14,11,61,45,68,48,50,40,65,67,62,6,7,1,44,60,27,21,25,56,63,3,67,3,1,28,37,5,24,31,8,54,48,6,22,27,65,60,16,39,21,58,51,3,20,37,13,61,46,32,67,8,9,49,11,8,67,5,54,56,4,58,63,3,45,11,35,31,7,44,6,14,62,38,63,50,23,22,56,31,38,54,51,54,56,35,54,11,5,45,32,53,56,4,14,31,50,67,54,55,53,14,32,14,22,49,1,7,10,16,47,26,60,60,64,10,68,33,67,28,22,8,16,19,15,2,33,32,4,47,27,20,38,64,18,47,60,25,46,48,67,42,60,5,41,33,33,55,64,31,68,22,32,64,25,59,37,16,29,58,14,12,35,46,58,50,32,58,8,19,18,56,51,28,29,12,59,51,12,3,62,29,50,20,34,38,37,32,8,3,67,39,11,38,44,4,52,24,57,54,29,33,53,66,21,57,34,33,11,63,9,10,9,13,34,44,30,68,61,3,57,31,45,57,53,58,16,25,15,20,50,43,64,67,4,29,21,7,59,10,55,3,40,12,6,9,2,61,22,52,20,13,2,61,11,24,20,64,35,19,26,45,23,62,47,53,10,13,1,33,39,7,47,7,57,63,1,26,52,16,37,64,62,24,30,36,8,64,16,48,46,18,15,29,68,12,5,10,1,10,36,39,64,52,14,21,33,9,40,11,26,20,26,40,67,64,45,39,20,21,28,40,7,63,29,63,59,59,28,8,33,29,16,59,48,61,33,46,62,62,2,22,33,7,50,27,64,65,39,65,56,8,28,12,7,41,34,38,54,27,65,17,24,4,35,36,37,59,62,59,4,36,19,21,49,22,12,39,41,48,15,23,55,20,5,13,50,13,14,53,34,41,65,45,60,61,42,28,48,4,52,17,23,21,35,11,66,57,20,64,54,61,61,8,12,38,25,49,58,17,7,22,64,19,11,15,29,53,61,28,4,34,16,14,64,58,62,63,62,23,7,23,9,54,27,2,50,19,34,40,40,20,32,48,64,6,25,12,24,59,18,63,12,59,42,49,19,34,43,16,52,32,66,18,3,60,42,42,34,32,17,9,57,31,30,60,8,44,29,51,15,23,56,49,62,43,57,12,50,7,8,11,21,66,34,52,7,38,27,23,20,10,40,5,14,16,24,22,67,66,25,20,18,21,58,60,1,31,8,32,46,59,36,23,11,14,65,36,38,9,34,38,36,57,33,54,6,44,25,10,25,67,51,32,65,61,67,15,7,65,64,20,40,48,35,19,18,63,45,21,8,12,68,6,24,29,68,49,1,38,28,45,4,33,28,55,68,51,43,48,63,38,20,49,48,38,17,68,47,15,62,38,2,1,58,53,65,13,46,68,19,16,14,6,45,12,21,26,34,38,47,21,50,48,11,2,43,15,44,59,44,55,61,21,25,34,42,34,6,8,7,38,56,13,48,32,53,8,48,62,26,4,31,3,1,21,14,52,26,17,58,50,49,31,3,18,39,68,42,15,67,30,52,11,21,22,50,68,26,20,39,68,3,9,57,16,33,27,50,6,40,11,4,16,28,56,36,16,15,51,15,34,25,31,7,66,31,12,55,29,31,34,18,38,19,14,54,5,17,4,64,20,2,64,28,28,63,24,5,52,9,21,26,7,56,41,63,12,51,40,19,55,60,28,24,48,34,63,68,27,18,42,27,47,19,50,23,39,10,42,65,67,44,25,34,65,26,49,65,63,12,32,53,35,41,4,61,45,7,2,55,51,3,5,46,42,56,53,1,29,61,48,21,53,9,51,28,20,19,43,47,42,29,66,50,24,1,23,51,3,10,35,28,43,42,54,32,58,11,46,8,23,34,3,45,11,57,50,54,3,9,65,35,16,16,50,21,14,38,64,20,28,22,2,22,7,50,28,47,2,25,52,58,3,37,25,47,60,64,35,44,38,14,11,67,8,66,37,36,43,45,29,18,65,6,37,2,34,23,2,65,45,56,66,10,30,58,64,18,24,51,2,12,30,67,56,33,58,33,7,44,58,61,46,67,38,4,13,63,36,14,44,25,68,11,40,15,48,54,6,52,51,27,63,55,55,6,18,5,37,20,13,51,6,19,25,51,4,52,33,36,37,65,56,30,38,39,46,18,42,51,62,37,28,37,62,33,42,14,22,35,13,57,64,46,59,3,1,31,48,35,47,63,4,19,43,21,35,13,26,36,16,64,19,52,33,29,15,23,29,38,23,47,26,11,32,8,63,28,65,36,66,40,32,28,40,21,59,15,44,64,49,34,44,30,6,29,51,13,28,23,13,29,41,11,22,52,47,66,4,55,50,7,37,43,51,32,42,27,25,19,22,28,35,27,11,24,52,43,58,30,25,34,38,65,52,68,64,47,27,1,28,14,56,27,40,24,65,65,68,1,57,22,62,13,42,1,43,31,66,8,40,67,41,9,9,19,51,65,26,63,40,51,61,57,24,23,15,33,24,34,26,2,47,19,18,20,25,42,1,59,42,2,42,66,53,27,22,55,51,46,45,64,9,37,2,68,22,40,21,59,45,17,2,5,14,34,40,62,20,17,22,8,9,1,20,5,32,9,5,57,38,30,47,44,33,68,54,16,64,37,33,65,4,54,64,21,5,40,33,26,8,15,41,27,61,27,55,11,13,66,12,26,8,60,27,26,60,38,63,52,16,61,26,29,15,21,1,23,65,19,23,31,60,58,26,5,3,56,40,67,45,35,40,15,21,13,14,28,41,30,27,4,64,11,9,9,55,3,47,32,32,51,54,53,35,34,16,29,30,66,63,21,23,4,10,17,4,25,48,29,42,46,6,51,39,46,10,22,2,68,47,6,26,1,43,39,32,52,44,52,61,39,60,11,16,21,33,4,38,59,44,33,23,40,58,55,58,47,9,64,44,58,5,29,1,45,58,48,48,2,7,39,45,54,25,27,57,31,9,52,62,29,6,2,56,21,44,62,22,58,22,30,1,10,34,35,63,60,65,58,61,15,30,7,17,43,38,33,34,35,3,5,60,13,60,24,1,52,7,4,10,51,2,42,38,51,56,22,58,39,38,3,62,50,31,6,22,54,37,40,59,59,10,43,67,68,24,10,26,48,11,34,21,64,22,54,26,35,57,21,60,63,10,23,35,55,54,56,67,48,14,56,51,6,25,40,51,3,13,23,48,10,10,60,63,4,10,18,14,18,22,1,62,5,17,57,22,61,67,27,19,53,22,57,3,68,46,29,21,45,53,19,16,66,62,40,61,12,32,64,32,61,23,10,17,7,43,66,1,34,56,12,64,65,65,38,6,67,41,3,12,31,35,3,66,55,25,30,52,36,62,24,51,63,54,44,45,16,1,58,55,11,68,44,23,32,10,22,9,39,58,7,26,43,37,4,17,9,11,38,56,27,24,46,31,6,12,18,31,21,50,12,11,45,63,24,53,64,50}

    {10,15,17,39,43,43,50,66,44,48,50,35,34,18,7,21,42,21,45,10,64,36,66,6,50,41,55,15,66,38,33,5,57,26,59,40,2,60,59,48,67,8,32,48,65,14,2,30,12,62,23,63,9,27,65,29,42,7,6,4,51,49,36,30,63,57,31,33,50,1,1,65,47,51,12,1,66,39,11,68,17,3,54,53,46,65,39,19,51,53,64,19,7,49,65,29,45,17,9,15,9,7,23,42,29,57,61,47,4,61,26,60,61,24,59,1,67,15,14,45,45,4,13,1,29,57,48,44,39,68,17,57,4,21,68,54,58,58,54,35,57,3,32,19,63,61,52,46,49,65,55,36,33,45,28,18,65,42,48,40,37,12,41,26,28,51,19,58,55,11,28,11,42,41,24,30,8,29,16,37,31,43,13,65,4,21,18,37,38,25,18,30,6,67,58,64,62,34,10,50,38,60,11,56,22,37,41,35,37,50,14,23,42,40,41,48,32,54,6,34,50,67,47,11,55,16,9,65,15,5,60,46,29,68,3,11,39,13,16,54,21,26,35,11,42,39,40,62,50,11,52,3,55,64,11,49,15,16,67,60,11,60,1,67,42,53,42,29,3,19,44,8,25,42,67,15,23,30,68,6,54,17,59,41,33,42,60,48,54,50,41,61,23,12,40,11,22,22,16,55,9,29,65,33,49,40,49,50,57,5,25,22,46,31,61,39,37,54,33,4,11,25,7,6,62,6,36,18,3,37,37,9,52,52,31,5,56,52,41,15,11,48,32,57,66,46,2,11,58,31,43,14,50,10,23,49,48,68,26,39,11,12,9,47,38,60,25,23,12,44,8,58,45,19,8,42,40,43,57,23,42,54,61,18,25,17,48,57,29,9,16,25,56,18,43,33,12,64,63,34,21,45,26,15,23,16,17,36,45,21,33,10,58,36,62,46,34,12,24,6,19,27,65,4,66,48,55,35,63,6,36,8,57,28,29,21,38,32,16,28,54,51,3,14,10,29,52,62,22,67,40,54,52,32,42,42,48,12,12,29,45,9,22,9,64,3,52,43,66,37,34,48,33,3,5,34,43,5,41,42,26,57,38,20,50,10,11,5,61,15,42,35,61,31,64,64,65,68,11,51,46,9,19,4,62,38,37,23,19,62,36,57,21,63,11,36,47,65,26,32,67,45,26,48,9,9,34,60,23,63,45,62,48,55,50,27,55,31,58,45,22,35,51,42,60,28,13,57,21,67,9,63,4,14,26,6,36,25,61,60,49,58,62,5,44,65,16,9,49,30,15,40,2,10,65,50,17,54,50,6,22,64,49,1,17,21,39,31,50,12,17,26,28,44,44,6,41,68,66,45,32,53,22,6,50,35,63,56,33,34,62,63,36,41,45,25,18,24,53,19,3,16,49,35,67,49,38,6,26,61,52,4,60,36,5,8,68,56,29,42,27,43,49,31,5,19,40,36,16,63,38,53,48,4,34,33,12,62,19,20,60,55,8,6,46,2,54,54,13,1,26,36,31,6,17,67,3,52,30,4,54,39,37,23,42,30,4,24,4,50,45,62,55,9,37,34,51,47,34,63,12,25,14,28,13,57,3,10,19,23,67,64,33,39,58,11,8,5,45,56,31,54,25,22,44,48,11,26,43,65,40,58,22,15,32,45,41,37,54,16,26,16,26,9,16,7,55,13,10,31,10,34,36,30,44,42,49,15,33,2,10,39,40,24,51,3,51,30,1,18,19,50,5,6,18,31,19,41,66,10,43,5,62,20,50,54,21,11,51,1,35,56,31,7,26,68,54,47,55,21,4,45,34,14,48,61,57,49,14,28,21,2,3,55,10,6,66,55,9,47,32,68,4,38,11,44,28,41,56,65,64,66,65,11,5,23,9,4,27,2,21,45,50,50,22,38,28,45,63,58,19,31,38,62,19,59,60,58,30,5,9,23,43,21,4,46,65,19,45,49,64,32,11,24,51,59,68,12,23,58,54,18,14,43,57,50,38,65,60,13,19,22,18,6,29,51,42,19,22,14,32,28,15,62,33,53,36,67,32,42,46,1,8,26,39,8,47,30,35,42,5,29,64,42,32,31,5,49,53,23,48,12,6,58,58,7,13,9,2,65,52,25,33,45,67,48,47,27,51,1,26,32,15,27,1,4,31,21,59,37,60,57,32,13,15,1,54,10,51,25,40,38,19,3,51,26,27,22,61,56,56,40,37,29,27,65,15,25,25,53,25,26,1,60,31,36,57,39,3,64,51,23,37,29,67,25,4,2,62,42,31,67,6,65,23,26,47,22,20,60,4,30,14,44,48,41,58,23,28,25,40,12,54,14,20,13,49,19,41,11,39,11,38,36,33,18,12,23,14,33,5,56,38,33,17,29,3,9,30,29,37,26,41,26,35,1,32,55,61,25,36,45,4,66,45,67,32,4,59,31,13,68,58,57,57,20,67,28,59,63,62,25,50,50,59,21,63,38,29,19,19,36,23,50,3,62,62,5,57,26,7,47,40,68,1,50,52,15,10,57,25,29,43,59,30,4,33,36,5,42,68,34,12,56,47,67,61,25,4,4,1,24,27,31,49,27,56}

    Returns: 82324

  34. 76

    {62,59,83,81,74,50,27,35,11,85,28,77,16,46,38,76,72,46,95,52,22,44,58,41,84,5,63,22,47,58,66,43,15,46,96,55,78,10,41,4,59,81,62,78,13,72,33,69,44,90,69,57,1,28,50,15,41,55,77,28,50,97,60,99,27,55,100,35,58,15,74,67,27,12,77,10,22,85,77,2,63,22,71,80,39,22,15,96,60,12,63,9,88,63,50,56,2,93,3,89,83,19,60,7,30,15,67,53,5,79,12,28,25,34,21,74,78,12,77,38,34,51,85,55,30,3,32,30,11,85,69,52,68,40,81,9,82,82,94,58,52,32,92,84,78,87,42,58,35,8,24,17,70,10,1,28,27,57,2,47,12,84,74,31,86,89,53,11,83,80,89,49,43,30,19,55,59,37,34,32,19,77,100,4,84,22,79,73,87,93,10,22,11,13,86,31,93,2,31,85,22,96,96,60,39,12,10,59,59,90,59,21,74,92,29,51,26,70,52,77,74,67,37,55,36,29,71,9,89,10,42,44,19,5,28,93,90,48,87,63,18,73,68,32,50,17,57,14,23,71,85,29,36,10,97,60,38,7,20,48,96,30,44,74,79,68,55,1,77,32,87,12,36,39,33,51,95,3,24,94,56,83,79,22,51,36,63,8,27,55,8,64,67,85,8,84,79,48,16,98,70,7,7,99,16,88,22,55,72,24,59,8,50,36,95,75,5,77,19,8,17,56,67,30,14,38,26,93,77,57,51,91,21,10,61,47,29,24,89,51,9,29,2,76,3,92,96,75,93,46,36,100,9,28,99,30,70,67,47,32,46,25,68,42,72,50,77,21,6,25,88,45,61,19,46,47,29,21,27,50,39,21,74,85,92,10,100,37,63,48,28,75,33,93,24,46,95,2,6,66,52,48,19,27,9,53,12,34,31,16,11,67,51,53,10,69,73,81,16,13,30,80,25,94,47,35,37,45,53,28,60,72,89,52,97,88,75,77,41,90,99,19,73,53,97,5,85,41,29,96,25,39,40,20,94,42,63,3,26,60,90,29,83,52,19,53,38,62,69,77,14,94,28,82,87,36,99,9,89,73,85,48,38,65,60,52,29,56,61,93,66,49,41,17,33,64,16,94,81,87,55,58,99,73,70,46,53,24,64,53,54,39,19,57,33,92,27,79,16,89,82,43,78,92,71,9,100,40,42,50,30,98,48,51,23,45,5,50,92,96,32,92,85,72,87,85,6,68,61,39,19,66,16,52,40,96,38,55,42,53,88,54,20,40,30,36,65,85,34,64,71,23,49,82,14,30,81,73,54,21,93,46,86,61,9,24,22,35,78,81,54,1,38,46,10,11,95,2,75,22,5,43,51,19,71,38,69,4,1,3,77,7,23,58,83,8,97,37,44,3,22,66,54,19,63,50,99,23,18,22,23,50,59,12,62,6,86,25,84,33,65,91,9,92,98,64,52,28,69,39,69,100,29,36,96,17,33,73,70,93,49,59,69,79,2,73,100,15,67,62,21,62,31,94,74,50,26,9,92,85,46,68,9,43,52,89,12,40,59,35,57,61,30,96,54,99,1,36,52,3,44,63,21,12,56,55,64,95,97,26,69,66,97,95,61,94,25,42,74,59,60,15,35,25,44,87,25,73,6,73,42,5,5,93,86,77,68,60,43,28,48,9,48,90,68,93,70,25,72,5,86,76,52,30,43,11,75,37,81,55,100,10,8,99,23,53,74,54,76,31,81,19,39,2,51,35,42,36,16,95,50,76,93,68,66,35,18,59,12,9,39,35,67,21,96,5,4,96,30,88,91,39,4,8,64,16,41,93,29,13,20,65,9,66,27,43,86,50,70,40,60,47,33,6,89,72,89,8,62,55,35,48,87,39,76,33,77,71,27,55,67,75,85,30,78,48,65,30,16,8,69,96,87,36,32,56,73,69,51,100,22,7,86,27,72,36,3,79,53,61,1,11,65,9,57,74,82,26,22,92,71,34,66,2,93,79,89,87,92,48,3,55,40,58,94,64,96,76,66,61,65,46,92,86,56,22,7,58,74,35,63,56,93,45,31,60,5,98,5,58,61,74,21,22,59,53,14,96,77,52,69,22,95,71,52,91,84,73,45,26,3,63,44,86,89,72,27,14,91,69,34,53,31,81,59,51,79,12,92,29,56,49,26,62,63,3,61,7,14,9,56,42,96,1,73,59,2,19,93,84,10,69,93,76,13,23,97,32,61,88,49,42,72,6,61,93,83,2,63,88,65,38,60,45,78,12,5,83,96,32,71,38,77,62,15,64,26,60,18,73,48,56,74,6,69,1,41,10,43,8,22,91,71,22,1,34,1,32,50,32,76,1,41,78,58,96,16,35,65,62,100,93,21,17,58,37,23,70,29,100,16,63,4,38,65,99,51,77,14,91,15,8,26,89,93,57,87,39,91,56,1,45,48,43,67,41,41,71,93,39,61,66,87,47,88,87,87,25,54,45,45,62,67,28,75,80,14,16,15,28,34,31,4,25,34,53,84,22,90,59,3,94,59,81,11,49,96,44,21,47,83,70,18,31,25,35,91,55,13,54,72,48,86,25,86,100,78,2,6,65,3,95,40,63,51,63,93,54,53,93,52,93,26,29,89,99,71,35,92,95,56,10,67,41,100,3,76,61,40,19,49,96,33,64,89,33,33,82,99,64,67,49,53,96,99,53,5,2,91,62,89,4,36,88,1,28,43,1,18,17,48,95,93,97,37,16,81,91,45,81,81,36,42,40,92,36,79,60,99,57,37,59,54,63,66,88,17,70,11,17,89,62,47,38,74,67,61,69,73,79,78,35,36,52,4,14,68,10,69,14,96,41,19,93,5,3,97,77,64,41,78,30,49,46,67,40,16,5,33,25,50,92,1,23,89,7,65,66,70,28,80,9,53,81,17,95,27,7,58,74,93,37,64,41,12,92,28,75,76,25,94,28,57,85,20,36,97,26,3,98,62,32,45,77,23,82,21,14,11,37,23,69,75,99,32,46,44,22,60,16,22,86,51,35,48,12,53,99,82,9,72,96,90,38,53,23,41,75,97,12,19,83,8,62,47,75,7,24,82,17,52,88,35,56,48,13,65,94,37,25,86,93,30,36,22,11,11,81,36,84,71,71,74,40,80,27,77,91,23,58,86,95,26,33,28,94,73,67,42,1,61,96,54,47,3,18,2,55,31,2,70,33,49,29,80,9,8,1,62,60,94,75,6,27,36,9,1,63,84,87,36,71,15,62,37,85,65,17,35,33,40,58,99,58,52,46,58,22,26,2,43,10,4,18,82,57,89,14,16,65,59,23,73,42,72,66,29,11,45,66,99,15,14,79,64,65,84,89,12,94,23,66,52,38,35,38,64,71,99,24,92,99,71,85,36,24,95,4,16,85,62,61,81,45,44,11,99,94,15,42,23,97,68,15,78,87,9,9,61,69,53,73,39,49,95,67,57,80,64,94,66,10,81,91,29,34,16,97,72,25,4,45,63,63,41,42,66,54,55,75,11,81,16,45,100,93,29,95,56,40,33,86,26,56}

    {74,74,35,65,22,69,36,71,22,41,26,8,9,25,21,10,8,12,61,69,39,71,22,29,38,3,66,35,5,64,47,72,34,35,69,25,17,65,52,31,43,22,29,69,19,74,70,58,30,30,63,1,53,71,70,61,67,24,13,6,36,1,7,53,21,33,15,10,36,58,60,68,24,37,47,52,14,35,55,52,56,4,22,7,3,4,70,69,22,38,27,72,5,25,42,67,58,45,31,48,32,32,41,30,67,30,74,17,52,50,45,24,70,44,74,14,3,58,12,20,31,10,56,36,58,53,36,27,27,64,76,26,38,41,49,66,69,34,63,52,41,36,30,40,5,5,23,49,51,47,12,48,18,19,49,14,53,8,19,12,54,11,71,31,44,7,48,59,74,8,48,7,37,16,32,18,67,5,43,64,59,50,2,45,70,35,12,28,22,20,55,18,72,37,74,22,34,69,2,59,37,70,66,14,32,11,2,10,9,65,31,62,68,15,56,28,51,12,14,69,37,26,2,23,26,22,22,54,64,38,50,54,65,74,14,24,59,43,48,56,20,66,40,37,12,56,50,73,12,76,54,35,28,74,47,1,7,66,25,63,31,12,25,60,61,34,61,59,17,60,64,53,37,22,48,70,48,14,19,35,67,49,26,62,71,41,49,31,29,23,68,57,13,22,51,12,9,39,11,21,43,50,72,26,63,6,53,67,51,26,8,54,6,61,8,43,9,55,35,41,57,37,38,11,6,76,23,41,33,33,63,55,74,9,44,34,55,10,30,54,60,43,15,5,47,31,33,71,9,18,33,31,51,29,70,17,67,69,13,19,35,72,55,18,23,12,48,23,48,50,64,24,40,60,26,47,28,13,38,73,71,68,6,11,26,50,7,75,21,22,13,34,26,69,31,27,68,74,40,72,1,70,44,43,58,52,1,33,48,19,55,65,13,63,21,30,60,30,15,42,15,27,5,41,19,6,63,47,29,23,41,60,41,11,56,65,14,12,21,18,75,25,42,49,5,6,70,74,17,17,74,76,36,66,44,75,29,25,15,19,72,12,45,25,44,53,44,66,76,3,8,15,18,60,38,4,63,24,50,63,41,48,27,14,55,74,59,18,76,73,12,19,51,49,9,17,62,38,13,53,71,6,62,7,54,21,32,47,11,69,1,12,18,33,20,2,27,23,52,74,66,26,13,44,23,13,21,44,23,59,25,13,37,7,66,47,59,26,4,8,74,12,51,67,34,50,59,66,2,21,14,43,69,58,14,53,6,63,32,38,44,67,71,30,30,38,65,2,48,42,61,10,50,62,3,17,21,45,30,22,19,54,10,63,4,43,43,26,72,1,56,66,16,43,22,45,27,76,56,71,19,47,58,4,10,72,6,54,29,5,52,71,14,49,56,75,33,40,15,39,2,30,16,27,32,28,70,12,3,38,27,35,54,74,76,4,42,62,27,21,60,75,9,59,62,35,13,67,54,31,74,55,14,73,62,59,4,25,40,76,24,32,15,43,55,39,6,47,3,21,26,54,76,17,11,44,19,14,34,38,60,70,27,39,3,41,71,43,63,65,11,10,55,2,27,51,25,38,67,5,56,20,1,24,22,42,42,38,32,5,44,48,49,59,27,20,10,26,5,47,58,73,54,30,20,22,62,36,74,71,45,40,11,39,47,62,24,6,6,10,64,35,70,71,38,5,50,7,20,71,57,22,64,53,55,51,21,54,74,6,58,71,76,75,47,51,61,41,71,54,16,53,60,67,61,5,15,70,5,18,22,25,59,53,2,60,16,7,60,47,24,28,73,43,3,57,14,39,65,60,19,75,26,30,49,24,30,17,67,23,6,35,73,34,45,22,34,46,73,50,71,46,38,40,59,57,42,3,46,37,23,43,1,10,4,17,36,66,67,66,63,14,68,68,7,55,1,45,64,25,1,4,53,19,42,1,27,46,27,64,49,36,55,35,10,30,56,63,71,45,59,51,48,70,37,73,4,75,13,20,19,28,27,54,71,3,29,43,7,64,35,10,51,64,65,60,39,41,34,59,28,38,44,59,45,62,6,56,29,53,51,32,76,6,67,12,42,49,42,43,8,46,52,11,28,53,59,4,16,54,76,70,11,75,49,19,26,2,56,26,55,18,3,10,68,49,48,41,4,26,20,53,75,27,27,11,67,29,49,45,49,34,22,13,24,29,25,63,56,53,27,61,76,48,34,15,49,23,21,37,17,53,45,57,69,16,31,12,2,25,28,36,19,3,70,30,30,60,25,68,1,21,54,1,63,34,45,18,48,56,59,14,9,47,1,56,60,30,49,17,69,1,57,53,24,1,76,49,42,13,25,50,13,14,75,74,18,67,70,75,61,60,34,48,26,35,12,18,64,74,17,55,52,17,56,42,1,74,21,43,72,51,68,55,46,49,24,27,40,18,7,57,68,30,7,24,38,44,60,2,28,67,40,2,46,50,6,27,58,54,38,9,24,18,42,57,2,63,59,16,36,40,45,23,68,53,37,70,71,74,4,67,59,10,8,30,24,48,3,24,61,30,73,42,65,34,16,32,42,18,40,1,58,27,57,64,57,44,12,37,55,21,76,55,59,23,3,5,34,9,40,56,1,18,27,39,25,43,57,56,13,18,11,67,48,12,66,25,23,20,22,54,69,75,27,73,75,25,30,51,27,4,27,27,75,16,69,45,31,69,72,32,23,4,32,10,62,37,53,2,37,20,72,36,73,69,33,8,50,35,6,67,14,60,67,8,31,14,53,73,24,33,40,52,59,59,8,76,54,55,9,17,64,45,47,55,42,64,39,44,52,38,60,21,15,73,57,75,42,13,18,26,51,42,47,17,66,60,15,51,61,74,4,30,11,13,62,38,40,45,16,65,66,24,31,35,21,34,75,15,14,68,25,14,45,18,26,29,61,28,23,41,26,16,54,29,30,37,12,21,9,10,25,62,35,42,32,36,57,50,22,47,46,48,13,9,5,29,50,54,24,44,20,53,20,51,73,74,76,45,39,39,35,10,62,23,71,53,57,31,34,5,48,32,75,17,53,51,42,23,42,46,43,25,7,53,26,38,4,54,23,16,39,41,25,45,1,5,73,17,61,23,73,74,4,1,71,29,13,15,65,53,27,28,24,62,12,46,49,51,43,69,13,15,20,41,5,65,14,57,52,12,57,21,18,42,54,15,28,21,76,4,17,46,33,29,20,6,41,14,14,10,44,73,2,17,21,70,68,61,17,26,21,61,75,68,26,7,16,42,39,25,68,7,53,65,76,47,54,69,53,35,64,12,9,64,4,54,57,66,28,24,53,55,50,54,3,64,41,43,12,14,26,19,11,24,57,44,20,25,36,72,32,37,43,4,64,71,46,1,76,16,7,1,5,40,42,73,37,57,41,26,76,41,5,29,20,65,11,7,62,5,75,6,70,22,57,5,74,7,72,62,14,31,55,11,16,19,56,47,22,29,7,22,4,48,73,16,61,9,1,70,19,66,56,76,23,15,72,35,38,64,14,66,22,74,18,67,12,48,40,39,25,75,60,72,62,35,41,14,36,24,18,18}

    {60,64,11,14,22,59,75,46,3,40,65,24,72,25,57,8,15,47,13,14,72,4,14,44,46,58,61,36,5,5,26,49,43,2,57,44,17,5,38,27,40,47,49,60,59,19,24,49,12,1,12,10,51,38,63,15,19,53,67,4,32,73,43,71,49,53,20,10,14,26,66,49,24,30,49,35,30,55,15,22,36,28,37,38,52,36,61,11,20,25,10,34,75,55,26,59,28,27,73,34,11,35,10,29,58,69,43,20,38,15,17,16,20,35,28,9,5,62,27,65,49,48,72,66,34,63,40,67,38,19,59,60,32,39,66,72,13,47,19,42,10,27,71,19,27,73,19,11,4,70,44,22,14,67,35,70,15,6,1,1,68,19,35,75,32,2,66,61,42,60,74,43,42,60,21,12,12,36,2,7,71,5,15,57,29,21,68,12,25,31,41,23,42,75,70,42,44,30,3,43,51,18,58,11,18,6,43,7,59,59,41,9,12,69,43,66,47,55,4,72,62,3,62,67,58,20,66,12,55,40,41,4,28,20,11,54,18,71,54,30,24,28,25,42,58,26,76,5,41,72,12,43,72,63,62,59,48,54,51,17,39,60,15,64,3,63,5,36,59,56,50,42,42,15,46,49,75,37,19,73,58,62,68,40,3,65,29,2,60,46,34,67,16,11,9,65,37,5,5,69,1,19,8,38,57,52,39,50,10,3,21,22,58,68,58,15,29,25,5,3,30,8,37,5,55,49,50,30,70,75,51,36,10,48,37,4,56,2,46,9,57,59,24,71,4,24,42,48,31,48,18,21,25,43,62,76,61,76,36,18,18,25,13,43,54,49,12,55,26,53,48,24,72,29,9,17,45,61,15,48,14,58,27,2,54,17,8,61,46,46,2,12,48,69,33,60,16,9,67,52,67,13,34,12,8,36,35,39,35,5,65,13,5,67,47,50,43,7,58,29,33,50,11,42,22,73,14,27,67,58,38,2,8,75,27,11,54,70,74,76,57,25,12,70,52,15,61,68,66,5,23,51,57,44,75,32,38,69,27,64,59,5,72,22,19,2,40,52,37,29,9,58,57,13,60,9,9,6,21,36,55,25,1,69,31,53,11,41,70,21,65,15,7,46,31,11,33,73,58,44,62,8,36,10,27,49,23,52,23,29,34,3,67,3,56,34,14,16,6,67,9,70,31,66,55,35,65,36,16,7,38,67,25,74,22,13,57,41,13,38,62,8,18,19,33,11,3,39,44,20,56,25,25,38,60,26,9,76,50,42,33,26,5,64,63,61,15,42,22,75,7,6,57,20,75,12,61,44,47,36,54,34,37,46,44,7,19,66,25,66,50,48,31,39,10,21,31,68,23,46,52,25,39,28,70,69,41,65,73,48,62,15,54,38,16,36,67,21,13,30,24,13,20,44,13,60,37,1,61,62,32,47,31,10,39,67,27,45,42,22,71,46,46,54,10,8,59,12,65,18,3,58,43,2,2,75,10,41,76,57,6,36,46,32,30,43,57,74,71,70,8,35,37,52,46,8,57,14,49,2,32,20,44,21,66,19,21,27,72,24,70,4,37,32,71,13,67,74,68,37,28,31,39,58,13,8,40,55,43,22,58,41,74,33,17,24,30,26,6,47,43,8,24,45,44,26,39,34,50,51,4,47,29,47,33,47,33,39,56,39,4,18,55,36,41,44,59,29,3,59,40,69,47,69,63,60,50,70,61,40,32,4,52,73,15,41,17,26,19,47,13,58,54,4,14,23,29,37,24,18,75,32,9,39,3,30,52,37,25,65,5,2,36,70,44,66,11,10,35,21,53,10,31,68,57,14,38,68,63,29,33,36,39,24,37,13,64,3,71,3,31,11,15,44,46,4,17,3,54,17,64,14,3,62,5,58,12,65,45,37,15,43,48,11,6,48,32,41,26,22,71,44,10,52,54,4,22,3,23,32,51,49,20,62,71,73,32,70,71,59,13,65,16,32,76,62,47,69,74,75,29,12,6,42,31,76,6,57,9,29,41,15,41,42,8,66,65,75,20,30,47,7,5,56,35,46,12,53,14,43,3,41,1,72,63,38,43,27,12,1,29,56,56,19,22,3,69,4,67,26,2,38,2,37,67,43,17,39,32,12,50,48,74,14,26,21,71,7,13,75,5,4,5,49,7,51,23,2,7,37,50,47,10,5,20,51,73,24,36,72,19,38,71,51,45,26,45,27,69,30,14,56,10,75,1,15,57,47,39,27,13,25,45,76,49,62,76,1,36,62,16,9,70,60,11,10,29,46,39,36,62,34,27,57,14,12,20,18,45,34,71,10,76,47,31,66,8,76,73,38,62,7,1,62,35,18}

    Returns: 66063

  35. 65

    {98,77,93,80,22,97,83,61,14,70,82,62,34,3,29,36,39,46,76,68,69,36,69,85,29,8,74,86,82,54,12,15,84,8,62,40,46,47,6,58,66,37,48,83,80,35,98,80,95,36,33,14,52,23,57,3,100,60,68,84,32,67,99,26,25,71,43,48,14,49,91,19,29,57,4,79,44,37,28,7,17,86,95,59,33,96,6,82,96,49,76,3,30,83,42,7,49,53,61,89,84,12,8,99,67,69,73,93,22,7,80,100,77,41,18,62,32,62,23,81,55,8,14,62,9,66,53,38,33,11,40,94,14,83,68,65,6,68,82,55,64,87,17,27,24,50,93,98,27,82,49,56,15,89,96,16,16,71,94,43,73,96,91,38,87,46,19,21,16,84,58,38,100,15,95,24,74,4,53,75,92,95,64,99,99,52,41,25,56,18,75,98,81,4,23,68,57,51,53,65,6,90,45,39,3,15,91,7,15,98,91,67,55,52,8,9,38,88,1,53,61,88,96,46,5,50,75,55,26,71,45,70,59,30,42,91,61,4,38,8,41,17,7,84,91,89,34,84,4,62,15,84,83,41,95,48,74,70,78,67,42,73,22,88,80,81,71,94,93,27,3,39,12,53,85,56,30,9,86,36,79,82,87,70,10,71,37,60,74,43,41,77,25,29,45,76,76,31,71,70,69,16,77,72,37,38,86,53,91,6,98,34,44,92,93,2,11,70,20,26,40,45,59,84,14,38,26,58,54,84,10,50,72,74,93,56,82,7,74,18,52,100,18,73,92,90,7,5,3,31,1,6,77,21,52,69,43,84,63,98,55,94,31,82,78,86,76,48,3,91,62,36,29,6,61,65,72,75,54,55,45,65,64,22,8,86,20,68,39,9,7,8,1,22,15,61,59,54,10,78,9,23,87,21,91,23,87,55,49,13,94,30,57,52,90,34,47,52,33,74,48,23,51,79,74,12,73,87,16,53,31,33,40,78,3,30,97,50,98,66,99,31,22,76,59,10,75,33,88,74,39,69,83,26,37,33,19,5,67,52,33,19,48,70,79,37,10,2,59,27,64,65,19,38,97,5,43,94,55,73,37,30,100,67,98,63,3,4,73,63,44,44,58,58,88,49,85,72,98,24,24,2,77,54,71,67,99,14,66,19,65,12,47,16,52,99,90,6,39,43,14,31,8,80,10,77,67,95,53,62,20,19,91,18,26,91,44,43,4,31,65,2,23,90,98,75,88,7,19,51,81,47,40,17,11,66,6,48,81,86,95,27,88,59,46,33,94,27,47,82,91,86,4,40,34,25,87,46,74,79,61,52,18,15,73,94,65,78,22,91,28,62,50,93,3,6,24,59,90,77,20,1,70,4,39,2,25,39,54,39,78,93,81,70,39,27,83,37,92,73,68,82,53,62,19,78,93,76,94,26,96,11,78,71,36,29,11,54,1,3,25,34,35,98,32,52,88,48,45,78,80,17,97,88,15,85,21,6,93,25,74,75,41,75,74,78,49,65,67,7,27,13,84,8,27,13,78,38,57,60,11,85,84,46,35,29,86,76,79,45,39,69,64,74,9,24,87,25,34,52,100,83,33,91,69,84,1,59,49,83,1,15,18,70,36,51,35,58,66,35,28,66,92,18,12,57,56,1,40,42,17,57,20,21,52,3,96,6,95,2,7,15,68,15,11,22,90,81,59,75,32,57,48,35,88,42,98,90,70,19,41,37,72,95,43,89,71,10,100,39,6,38,52,13,75,17,99,58,88,78,85,59,2,90,24,25,4,61,47,62,38,86,43,61,5,75,13,41,15,44,9,95,72,90,43,5,83,63,28,11,50,37,33,26,37,22,28,49,64,58,64,2,52,43,37,4,55,73,43,80,58,1,43,84,81,36,48,6,22,35,88,32,90,86,26,19,53,91,29,29,57,19,100,19,37,31,67,11,24,22,84,61,48,72,30,84,9,60,19,59,21,33,38,24,63,96,66,10,72,24,27,80,85,96,32,66,95,87,72,30,31,38,18,11,69,84,54,48,78,29,91,24,76,83,60,94,23,12,42,41,88,94,10,21,37,97,83,32,86,58,46,76,93,60,74,74,25,78,28,26,43,96,6,76,37,64,35,40,22,12,62,79,61,9,39,18,86,100,52,59,28,43,30,29,24,25,75,88,40,7,89,12,2,24,61,33,21,63,44,53,22,90,5,4,41,24,57,41,13,92,79,81,23,63,30,50,69,62,2,77,97,59,20,24,29,41,86,10,51,57,99,52,39,65,3,15,7,70,21,56,51,34,32,90,6,52,53,28,57,12,90,73,91,5,92,3,37,13,40,100,20,16,95,36,7,9,47,67,40,26,63,32,64,50,18,27,23,72,72,45,76,71,44,69,13,72,41,35,62,48,37,71,76,33,83,70,72,13,18,31,20,96,72,87,40,39,20,99,30,60,20,73,82,65,85,84,58,45,63,6,75,23,93,2,42,77,79,85,7,62,43,74,39,22,2,43,13,16,56,15,22,91,1,90,27,44,13,63,55,86,30,72,13,33,5,28,45,78,85,19,54,48,71,74,50,26,8,15,15,77,74,59,80,73,30,26,11,100,7,100,24,86,43,63,45,70,43,26,89,26,47,64,92,100,85,52,38,61,4,29,46,87,53,75,50,62,1,34,61,15,35,81,60,37,100,6,51,26,84,12,38,4,28,51,24,46,30,30,9,6,46,52,72,93,49,85,41,6,74,76,38,29,5,62,39,29,91,75,38,16,52,74,29,42,14,58,100,90,65,20,18,72,39,59,48,67,51,29,55,12,92,51,64,38,27,61,51,79,22,70,72,30,97,21,14,98,40,39,51,24,51,26,4,39,75,21,67,65,71,32,33,39,19,34,75,15,11,81,56,72,60,10,40,15,95,64,19,59,40,82,63,59,50,88,67,18,89,15,29,20,53,91,34,12,6,44,1,51,79,59,67,41,2,65,31,69,70,19,36,76,29,87,63,87,57,32,59,37,41,64,43,54,13,97,37,68,80,42,71,29,14,35,55,61,76,100,54,72,44,35,34,14,2,78,38,56,59,63,7,50,30,98,48,20,98,70,61,23,62,45,41,20,26,52,86,75,57,57,65,40,12,45,100,35,64,29,77,87,10,67,52,77,21,42,61,63,76,28,23,62,3,74,49,98,42,76,72,42,18,49,33,96,42,48,98,2,79,23,35,100,43,50,24,59,9,28,48,10,45,76,11,57,50,20,90,95,30,43,57,11,96,87,24,74,95,11,62,9,51,33,26,74,95,97,34,52,100,37,25,85,70,22,82,10,40,39,27,61,37,32,26,19,93,32,8,48,81,94,8,33,24,29,42,33,66,56,95,30,22,52,78,48,45,20,93,22,7,72,13,66,59,62,30,14,94,68,99,79,27,7,71,19,12,7,88,49,96,46,65,27,55,57,13,59,83,31,49,81,30,86,51,20,34,11,50,4,16,3,13,98,82,89,67,79,48,48,55,78,75,94,16,94,92,41,26,66,24,18,77,83,93,45,68,14,61,69,77,31,76,93,51,2,36,7,88,27,63,97,10,16,71,91,34,88,25,40,3,22,71,62,33,72,75,3,22,95,42,3,18,69,90,94,14,81,73,86,8,31,91,73,10,85,87,82,31,81,49,98,43,21,56,97,21,9,70,24,29,61,48,60,29,47,91,34,36,74,43,64,24,93,93,95,44,37,38,71,96,98,98,55,2,63,24,84,49,62,19,24,20,79,17,83,71,100,78,18,41,43,65,70,22,52,9,44,2,91,62,54,59,75,4,59,73,46,45,94,100,28,82,42,18,30,68,65,95,40,89,49,35,72,46,24,62,20,40,39,66,86,45,85,92,48,80,4,75,75,54,28,38,69,24,32,40,84,45,15,46,54,90,78,10,98,33,69,92,28,45,49,24,68,81,55,23,64,30,95,83,6,5,59,31,82,32,81,30,91,86,57,98,30,3,82,83,62,91,21,86,15,71,18,12,97,52,1,83,15,82,31,71,8,68,93,3,96,53,57,12,4,16,54,7,4,51,62,56,84,93,50,11,23,8,27,85,78,29,47,77,98,43,20,87,51,32,64,8,79,60,75,66,20,63,51,98,36,26,68,97,63,55,82,11,37,60,73,2,23,9,56,76,7,90,17,52,24,47,46,33,91,42,89,35,58,5,51,70,2,88,51,58,9,78,26,22,32,55,73,47,28,66,17,37,37,72,87,78,69,86,98,23,44,20,14,54,47,34,8,25,26,86,35,2,91,25,32,10,55,65,1,68,87,34,56,51,25,49,90,22,49,26,27,32,97,84,69,2,52,51,54,31,22,3,21,69,12,19,60,36,31,66,40,46,20,10,71,6,7,46,97,53,36,68,78,99,75,60,46,83,14,83,41,100,73,29,9,60,16,71,95,41,94,8,62,83,34,89,86,89,8,40,25,55,25,68,52,47,6,2,3,29,25,30,14,97,23,54,48,45,10,23,65,64,37,23,40,24,5,15,44,2,52,67,1,44,74,1,44,14,95,1,83,29,23,26,12,71,6,93,14,100,17,28,100,78,96,50,75,91,86,63,8,5,94,55,47,22,66,47,14,97,10,30}

    {38,55,6,25,55,8,60,19,4,45,35,31,6,32,35,57,34,36,25,30,1,58,57,56,64,29,65,3,46,22,3,7,65,55,62,54,27,23,41,57,50,30,20,49,53,23,45,47,17,20,60,29,42,44,43,51,22,14,4,15,60,65,37,61,45,9,49,45,17,55,5,20,50,55,53,56,11,57,19,52,14,51,19,40,26,2,36,59,30,24,53,47,42,24,25,55,25,53,12,41,6,44,31,49,21,26,6,7,52,65,24,34,45,43,57,2,55,24,6,41,15,1,38,14,31,1,2,52,25,47,60,58,7,10,55,30,31,13,45,24,50,40,5,35,40,13,63,56,63,52,46,47,40,14,58,35,43,27,7,18,11,18,2,25,35,36,49,28,15,50,45,20,36,36,1,29,21,13,25,44,54,55,40,8,6,63,42,5,19,1,41,15,29,32,49,13,17,20,20,22,10,10,58,57,25,42,53,54,42,13,14,62,28,55,56,6,13,30,33,20,40,25,49,15,15,18,23,14,54,12,23,54,3,18,30,5,49,9,57,37,12,58,1,65,45,17,47,33,32,33,33,47,51,55,45,54,25,64,28,7,46,2,65,61,62,37,37,60,12,21,30,19,61,46,65,57,62,26,22,30,40,21,65,62,47,10,53,14,15,10,19,30,45,27,23,51,30,48,32,47,20,27,64,17,4,55,49,52,28,29,32,6,46,29,50,4,20,33,12,11,34,41,45,15,45,55,31,35,10,64,56,32,5,45,35,17,63,23,63,43,11,35,54,46,64,2,24,16,48,55,9,8,42,52,52,28,40,1,40,44,24,17,9,54,22,56,46,65,38,36,35,53,2,19,8,2,43,17,59,46,15,22,19,41,1,7,24,2,43,23,49,25,16,61,29,50,42,49,41,36,65,50,62,10,11,29,62,58,4,8,49,45,56,9,39,64,52,61,13,13,49,60,18,21,58,40,35,8,15,7,17,11,14,11,51,28,31,58,33,1,1,24,55,59,55,26,60,10,54,36,56,43,20,29,62,35,62,15,5,61,19,52,62,18,14,61,37,51,38,49,48,7,28,48,63,11,53,34,37,56,55,28,42,27,9,40,17,47,23,29,9,15,39,9,16,50,19,48,58,38,52,61,46,12,13,28,30,13,37,45,18,4,56,54,49,44,44,44,50,42,18,14,2,65,13,39,58,36,40,24,45,26,39,49,13,13,24,56,4,54,59,40,27,34,58,34,49,1,34,19,58,57,27,40,16,28,29,40,11,17,4,39,55,29,6,60,37,52,28,39,6,18,54,33,22,51,58,58,18,54,4,33,63,46,32,2,49,30,22,51,30,23,13,30,65,64,62,47,55,35,65,41,53,53,64,25,7,18,61,11,2,3,35,13,23,31,65,28,35,30,3,12,65,22,46,36,43,16,34,32,9,5,46,53,7,44,13,39,26,45,43,65,59,61,11,36,65,56,13,65,21,16,40,3,61,19,56,50,34,29,3,14,13,57,18,41,20,5,35,33,44,46,63,17,32,29,45,61,14,50,25,63,40,20,6,44,43,44,25,12,65,5,27,42,20,62,60,7,26,43,23,36,41,54,58,2,52,34,3,61,33,11,25,50,64,22,48,32,21,21,33,16,9,30,57,20,23,4,65,9,27,6,47,36,53,35,60,61,9,55,24,45,65,22,17,21,34,61,42,33,40,47,17,11,41,39,15,5,16,58,54,55,64,61,9,5,40,48,20,46,27,46,13,32,52,24,25,45,45,43,27,56,56,39,4,38,10,11,9,56,32,54,57,27,23,49,23,23,23,22,53,59,33,19,60,35,49,54,43,59,18,11,17,53,21,36,34,33,64,58,43,31,2,40,6,2,28,31,38,13,52,14,44,64,1,62,36,6,29,48,64,4,44,54,18,54,43,15,32,29,51,2,14,59,26,39,35,3,14,3,61,18,51,21,46,41,13,5,42,47,29,50,5,46,26,24,60,58,55,34,27,55,45,14,37,47,4,62,20,37,31,17,64,40,10,6,53,14,12,55,35,61,50,49,27,27,57,60,59,19,8,5,56,49,46,35,17,51,3,19,38,6,34,57,49,27,57,9,45,45,27,34,53,62,41,22,32,41,29,16,7,23,23,9,20,47,10,51,7,15,48,35,5,37,34,3,55,62,37,3,46,33,23,54,4,53,28,64,23,52,40,16,61,44,35,33,20,65,40,4,11,37,4,64,39,35,46,56,55,63,7,43,5,2,31,46,50,43,61,11,22,46,36,45,55,29,40,54,44,58,63,36,46,14,54,43,63,42,12,15,64,5,34,22,25,64,25,7,40,23,57,54,4,5,62,12,4,10,37,10,9,32,47,39,42,13,20,57,11,26,44,4,4,34,15,48,15,17,24,21,57,19,36,6,41,27,62,32,46,25,40,45,9,35,38,64,6,1,9,3,41,8,51,36,36,19,30,41,8,1,2,19,14,26,62,16,17,9,27,59,1,64,55,52,55,43,19,34,14,58,25,57,63,10,20,55,5,16,55,3,48,59,18,26,40,37,55,62,59,60,32,9,57,34,63,21,34,43,46,55,23,17,62,38,49,25,61,58,1,47,30,47,22,40,34,18,36,11,24,42,21,19,23,11,43,51,27,3,6,22,10,30,20,24,11,35,47,61,4,38,28,16,58,48,27,46,6,6,36,55,50,23,20,29,14,41,11,49,38,35,57,16,63,1,63,20,41,8,8,10,2,6,16,36,46,26,46,40,2,61,56,41,20,37,12,29,38,9,64,49,25,9,51,1,21,62,12,8,23,50,19,54,28,32,38,54,10,25,20,60,63,33,29,17,37,32,38,30,53,13,1,48,5,14,33,40,21,14,53,24,6,21,42,47,52,42,34,17,65,10,10,63,21,1,9,48,57,33,28,29,56,6,12,3,20,49,9,10,25,22,6,46,62,40,44,13,32,23,60,50,54,40,46,37,53,28,14,10,7,57,11,64,16,11,37,11,25,2,63,44,46,51,13,60,21,22,28,18,53,40,39,65,22,64,58,6,9,53,1,49,43,46,21,23,28,19,41,63,55,50,39,29,11,30,12,4,58,4,4,57,29,25,49,40,6,64,17,47,59,8,64,16,39,10,11,60,14,42,46,3,16,18,12,16,27,35,60,59,2,43,49,13,4,19,42,51,27,14,31,3,55,1,57,29,18,60,52,46,39,44,59,22,15,4,1,7,12,33,40,45,29,52,53,35,12,60,27,61,36,50,60,52,21,8,11,64,63,58,24,17,46,24,2,2,50,39,23,16,54,31,18,2,65,56,6,17,27,2,24,53,9,13,50,61,60,28,56,30,60,13,37,50,11,47,59,45,52,19,34,11,13,48,39,6,56,65,37,62,48,18,18,43,53,41,2,56,35,65,26,50,33,21,24,27,34,31,60,41,60,53,8,7,48,38,5,5,52,29,15,64,15,1,4,50,14,11,5,4,30,55,59,38,54,43,4,60,4,11,51,39,36,40,46,46,49,21,22,59,55,8,15,14,58,31,47,18,3,36,19,54,60,11,43,19,22,10,32,32,53,18,38,37,8,44,33,60,3,41,48,9,10,33,13,61,54,5,32,5,41,65,4,21,49,49,50,63,57,19,35,54,53,53,4,63,44,37,35,12,46,5,11,16,6,44,64,8,42,5,15,11,29,31,57,55,21,42,16,50,61,21,58,36,41,1,6,65,44,44,62,54,13,60,15,61,39,42,24,59,3,27,7,10,13,63,57,26,51,7,5,30,5,46,4,50,6,21,37,19,4,51,32,47,47,16,33,65,54,65,24,23,52,57,29,60,54,14,28,32,33,52,55,17,48,54,38,60,26,44,22,52,29,52,26,15,48,8,12,7,62,43,29,21,51,27,62,49,7,36,9,7,50,12,21,59,8,63,37,60,18,63,37,61,54,52,30,22,56,20,60,6,22,4,18,53,31,52,6,34,9,8,2,7,50,14,35,61,37,31,27,29,35,52,11,59,16,19,19,7,57,63,57,26,56,24,34,26,32,29,49,14,27,14,63,42,47,19,60,23,60,20,56,40,59,29,47,27,58,51,59,19,7,50,10,49,34,13,1,60,39,38,8,46,60,62,23,4,29,27,54,22,19,42,12,52,59,10,23,33,27,33,37,18,62,9,19,7,20,23,6,34,49,38,58,48,40,11,3,55,61,39,15,26,5,62,45,44,19,40,9,46,30,28,53,18,53,58,11,54,22,63,19,54,34,41,43,15,1,38,37,1,28,41,46,44,13,7,37,46,25,43,39,27,28,39,51,45,2,62,6,13,12,51,8,31,50,31,35,45,11,12,38,36,34,57,40,31,34,60,49,41,1,21,29,33,38,40,50,53,23,33,10,3,30,55,18,52,30,47,8,7,56,56,32,17,46,40,41,8,44,51,17,22,25,2,43,17,21,26,4,47,26,14,49,46,50,13,65,51,59,2,38,56,64,22,29,51,63,21,28,4,63,47,44,65,30,10,49,31,45,17,62,29,37,53,37,17,47,5,43,24,6,57,9,64,15,20,33,60,57,29,41,6,43,34,60,29,25,44,20,55,16,7,8,26,5,61,33,60,23,14,45}

    {18,18,44,47,2,54,6,7,44,19,4,2,29,15,12,44,22,17,47,39,5,4,12,3,21,8,10,52,44,28,41,47,1,3,45,18,43,63,43,18,49,16,15,31,11,58,16,51,30,27,22,26,4,9,27,51,27,12,24,50,41,28,40,31,12,5,23,51,50,47,44,55,27,9,1,60,56,29,64,3,15,4,40,28,31,22,63,8,4,44,3,47,8,62,60,63,26,65,4,40,64,10,47,3,50,64,40,1,57,64,1,18,55,15,46,54,51,57,2,8,38,52,17,1,24,5,55,56,45,64,63,54,53,51,2,28,62,59,54,13,33,13,57,26,7,6,17,21,41,47,32,2,19,26,42,6,40,52,56,22,25,64,61,65,57,16,7,44,40,20,33,31,39,9,5,24,26,10,28,4,13,28,49,16,5,16,62,36,56,58,64,7,13,62,48,11,20,12,46,41,36,16,16,35,40,4,50,12,59,51,10,53,47,3,48,24,11,43,55,15,4,64,25,37,45,39,25,9,27,27,1,39,48,16,24,1,55,50,25,20,12,61,46,18,20,31,13,51,19,19,7,47,29,57,19,25,57,10,53,62,40,22,4,56,31,4,10,7,57,65,46,15,62,12,31,51,63,65,24,10,62,9,58,4,11,10,5,8,9,36,56,46,37,35,27,34,56,2,19,26,23,9,6,23,2,59,62,12,60,65,45,30,3,58,24,39,7,3,45,18,21,49,21,32,45,45,12,30,34,24,40,58,62,15,61,5,41,52,5,57,10,2,59,8,42,33,35,22,3,28,14,32,11,27,24,45,48,52,6,46,34,60,5,23,40,9,32,10,62,44,49,22,12,5,26,26,7,61,22,14,62,16,53,1,63,46,19,30,49,31,1,61,39,3,62,58,2,1,55,18,53,25,37,43,9,5,46,5,27,17,64,61,45,5,50,29,24,29,21,35,19,42,41,18,39,56,21,50,26,3,8,62,52,3,62,28,4,43,23,23,47,64,38,56,50,62,63,49,43,32,53,14,49,31,23,21,13,41,49,31,24,24,5,40,29,41,21,61,27,19,60,5,13,35,63,12,34,27,29,26,2,22,45,38,8,29,35,29,55,27,21,2,20,21,50,61,49,41,46,33,60,24,27,3,8,8,50,28,32,63,18,60,17,62,2,6,56,54,57,24,64,6,55,40,51,59,37,29,1,4,32,7,39,60,45,51,13,51,51,5,63,33,48,38,41,65,1,16,8,20,11,56,29,28,18,20,19,29,31,28,51,49,30,20,4,17,26,26,7,45,38,39,56,19,40,26,3,4,6,43,7,56,11,58,17,40,30,14,15,39,34,62,11,50,4,22,2,3,64,48,27,43,20,37,58,62,59,25,28,24,25,20,50,58,55,54,33,57,9,50,10,37,39,17,21,13,64,33,12,39,2,55,36,4,53,12,55,56,43,60,22,42,20,1,51,48,50,2,38,26,8,22,18,35,30,26,13,9,58,57,13,22,52,39,14,50,1,58,15,46,7,41,61,12,35,16,41,10,54,41,40,38,51,63,9,28,57,1,41,63,31,4,1,43,2,41,60,32,27,26,12,22,64,15,1,16,6,4,7,25,12,35,13,25,50,34,45,51,18,31,36,49,47,26,25,57,4,31,54,25,2,53,31,55,19,55,32,46,54,30,59,9,27,51,22,5,62,65,27,4,24,17,32,5,31,25,48,35,6,1,53,52,28,9,63,59,1,30,65,56,2,52,41,11,62,2,42,7,48,5,61,3,16,34,25,2,13,14,9,60,50,9,56,22,10,60,12,22,23,38,51,39,22,40,60,50,56,24,52,22,24,59,42,38,37,62,39,24,1,48,41,54,63,42,33,14,11,16,10,1,5,23,55,47,59,38,57,48,42,21,17,28,54,19,47,35,5,55,8,8,62,37,52,42,59,27,56,49,58,57,36,54,7,42,23,41,53,55,48,38,35,15,13,37,44,57,29,65,25,36,12,15,36,29,33,35,29,52,31,12,8,52,4,12,30,39,16,7,47,28,51,52,57,43,46,22,22,53,35,49,59,64,62,41,37,59,3,2,39,22,55,50,33,50,61,28,20,23,11,33,50,7,38,39,56,20,19,63,35,35,2,63,13,31,35,29,5,12,19,49,28,42,59,3,2,27,61,52,27,2,37,5,47,19,20,54,26,65,33,47,2,56,10,13,25,63,21,29,44,15,27,33,3,35,56,27,64,20,24,30,47,60,7,39,30,26,32,3,26,62,64,37,40,18,42,37,59,17,30,58,6,18,35,31,62,35,17,60,62,33,32,57,14,1,22,18,32,19,58,62,6,23,38,9,17,34,12,16,41,43,39,28,60,19,57,55,39,29,26,22,12,11,6,21,8,44,35,52,64,6,47,7,55,9,56,60,43,30,10,9,60,56,60,27,44,64,64,29,13,21,52,29,14,36,25,54,11,42,57,49,57,8,3,44,65,65,51,42,60,4,39,56,22,64,28,20,3,57,20,58,51,40,6,39,46,15,6,11,21,19,53,14,17,14,26,50,7,49,44,65,33,51,34,62,14,64,30,34,30,49,1,52,35,39,5,35,35,29,53,18,40,3,48,43,7,12,54,43,22,51,26,34,33,9,18,24,51,14,27,24,58,12,2,23,21,1,6,29,6,59,42,50,17,11,54,1,5,42,63,38,16,61,58,56,6,32,26,8,22,21,53,18,51,35,20,65,36,65,35,15,64,44,1,54,2,45,18,7,51,63,30,34,39,29,48,6,13,10,33,20,54,19,36,20,29,65,26,37,12,16,47,7,48,25,54,16,61,43,35,12,7,35,47,28,41,20,15,32,34,46,40,19,32,56,26,60,35,2,17,32,6,29,64,25,3,44,52,53,2,40,10,59,60,19,50,39,31,52,37,30,51,35,36,10,64,4,53,61,56,65,17,21,39,59,61,36,64,59,5,56,36,23,31,22,62,30,27,20,56,17,15,40,6,45,48,29,33,8,57,52,25,1,36,35,19,33,10,35,43,6,5,8,23,52,60,25,64,39,48,48,1,9,49,23,51,61,10,7,28,36,43,3,33,7,35,38,6,54,57,20,6,5,43,53,29,23,20,27,14,52,46,8,57,17,45,26,19,7,37,46,60,33,42,5,43,37,46,3,38,39,13,42,14,3,27,63,62,20,32,7,61,15,7,7,35,27,49,56,29,39,4,58,3,21,37,8,64,42,46,21,35,22,24,14,22,10,20,2,12,39,22,37,28,60,47,30,60,7,20,19,57,21,47,7,62,33,26,34,30,25,38,17,50,20,21,56,42,31,34,44,1,47,48,47,12,46,51,59,48,38,6,14,50,40,40,34,29,44,38,11,9,49,26,18,10,38,35,13,3,17,40,59,36,5,7,58,13,36,40,24,41,13,8,49,55,46,6,22,40,3,41,19,44,4,62,38,64,41,9,22,23,21,53,27,63,20,61,45,48,1,34,15,45,56,63,39,36,12,13,8,64,61,54,29,8,37,57,48,35,52,14,4,34,48,44,8,41,11,52,12,11,2,2,9,2,57,7,8,35,57,29,39,43,47,15,48,64,24,62,24,54,22,25,65,23,56,62,3,33,23,25,9,10,58,19,50,57,64,47,59,27,59,53,39,56,53,1,20,28,36,38,20,48,36,41,18,15,28,40,25,51,57,60,50,3,35,46,6,38,41,42,20,41,65,61,19,44,7,60,8,60,35,46,46,19,12,22,20,17,2,22,56,46,29,56,35,37,5,61,43,16,35,30,33,54,5,42,38,4,36,3,61,59,49,45,46,16,6,49,51,44,57,2,18,47,12,46,18,45,31,63,23,14,29,7,40,11,4,40,58,5,1,57,33,59,33,52,10,57,13,25,4,20,41,46,25,59,46,14,37,51,41,43,15,13,13,30,6,10,62,32,5,28,24,32,9,50,7,38,39,3,38,64,45,36,45,39,63,34,15,48,24,5,41,18,43,22,1,25,33,37,10,63,43,10,53,11,26,16,17,53,38,35,63,35,13,24,40,36,10,60,9,57,57,17,15,35,51,44,3,53,24,45,3,27,19,46,37,6,9,45,46,29,15,39,24,41,11,46,53,39,3,42,44,26,39,26,38,47,6,57,7,24,27,48,52,31,30,7,43,25,44,13,5,60,60,52,62,64,35,3,30,52,32,58,58,23,53,8,23,7,24,9,52,58,60,42,27,12,28,36,65,24,22,50,5,48,26,64,20,25,9,15,50,27,17,65,61,30,8,1,57,40,57,23,49,35,32,64,8,7,34,4,52,7,14,63,53,19,62,48,48,40,36,41,22,14,18,29,32,53,21,17,46,52,41,40,11,57,60,15,57,56,31,38,10,8,8,39,30,52,4,53,2,61,6,26,62,6,21,60,33,42,35,37,24,62,12,54,39,30,27,11,15,56,16,8,57,30,54,51,12,48,4,3,21,35,12,11,29,63,49,44,12,39,38,20,24,37,30,48,3,24,64,43,25,18,59,25,40,60,39,18,9,20,16,21,15,31,58,52,61,55,45,16,13,2,40,62,31,65,60,2,11,21,9,41,32,21,61,25,12,40,60,59,2,14,4,64,23,41,43,34,19,15,19,13,12,48,60,44,11,25,60,53,57,52,56,15,17,42,38,37,13,45,29,30,41,54,48,24,57,12,32,19,49,42,23,23,30,48,8,22,31,53,29,19,8,33,46,20,48,10,43,63,61,24,22,41,44,22,63,36,33,4,10,23,63,40,11,9,63,33,31,39,59,50,60,49,57,5,20,15,30,64,30,50,24,14,42,24,2,25,63,34,40,54,51,6,8,43,38,11,39,22,36,20,50,50,28,43,35,2,1,46,42,44,63,4,38,42,8,24,5,57,49,25,44,52,45,9,27,49,24,12,36,62,5,11,43,19,4,13,22,1,53,8,58,48,23,48,25,44,15,56,19,63,43,1,62,18,24,49,51,56,49,11,10,29,65,47,13,2,38,57,16,12,37,62,59,22,43,60,6,1,22,43,14,25,8,54,21,14,57,19,50,55,22,43,50,25,62,24,5,11,24,34,60,62,26,32,43,19,50,20,44,13,12,27,32,1,46,55,37,64,19,15,51,35,7,31,5,15,54,59,19,13,31,28,4,62,23,54,42,20,41,63,10,17,48,12,22,42,24}

    Returns: 100693

  36. 50

    {50,64,10,53,12,79,50,53,97,59,8,64,74,11,83,91,23,39,7,42,46,68,42,11,35,9,17,11,3,95,78,64,56,86,93,71,78,50,86,9,98,51,58,53,77,26,58,6,68,51,80,54,95,61,75,59,87,71,80,23,22,3,87,15,34,12,79,95,47,49,28,19,22,42,13,94,1,57,6,50,75,21,81,54,6,28,23,21,68,99,98,31,6,90,37,2,31,41,68,2,10,28,74,95,58,42,93,69,65,52,41,90,45,16,5,27,41,96,100,51,62,92,63,52,3,81,7,42,29,32,57,26,87,99,31,71,54,67,32,97,20,80,94,12,48,14,87,48,43,77,9,54,28,14,44,24,25,57,99,63,76,12,81,29,88,94,29,69,7,58,66,8,74,1,83,5,75,21,50,66,10,42,67,69,4,15,98,94,81,26,20,91,45,100,66,95,100,46,59,2,76,13,48,42,27,47,6,63,1,14,71,6,95,15,57,87,29,81,90,30,32,26,89,68,17,73,17,51,96,100,37,94,20,49,95,81,43,46,61,13,90,10,85,4,26,95,97,79,100,8,50,61,70,57,69,95,88,38,29,9,72,45,89,28,64,91,45,93,42,56,89,69,7,58,4,68,59,1,49,58,43,3,51,40,20,29,21,95,6,41,17,37,11,75,65,20,90,83,57,12,16,33,43,14,67,58,62,51,47,46,37,66,21,7,11,33,75,41,88,9,22,96,78,55,63,68,77,15,46,24,17,38,69,20,82,99,5,5,91,68,43,29,100,83,54,43,24,30,45,83,1,9,78,44,77,52,63,2,59,12,89,32,86,62,90,62,90,77,74,54,15,20,20,60,66,62,77,92,10,86,44,64,7,41,15,29,54,34,60,81,59,8,48,27,64,19,40,45,19,55,58,15,73,57,21,6,55,91,10,93,93,83,88,65,30,91,2,7,59,89,83,99,48,76,14,47,79,60,74,63,59,70,26,73,66,57,33,58,98,75,68,67,10,19,26,14,50,75,98,75,10,86,26,22,59,59,52,82,4,58,78,6,31,98,99,26,30,33,83,32,95,49,78,64,31,20,100,92,8,61,32,27,84,93,59,95,48,93,44,36,96,28,39,75,7,81,42,57,29,68,65,89,83,14,40,39,18,82,18,57,43,3,14,35,17,20,62,80,85,56,48,15,67,84,40,24,51,79,90,29,82,69,89,79,41,93,95,52,2,29,63,99,38,14,64,52,45,91,87,9,64,39,93,40,67,12,72,24,92,54,90,96,7,50,48,13,12,21,35,92,84,7,21,16,14,52,73,47,62,37,49,72,40,48,86,79,6,67,80,50,15,66,73,52,95,41,25,63,54,52,22,25,67,91,38,16,26,41,85,57,4,19,27,26,94,21,60,16,91,7,28,1,80,12,47,98,4,16,10,78,18,97,46,71,4,31,96,47,100,9,5,69,57,67,10,25,20,79,31,30,94,38,93,36,66,72,21,35,83,55,53,31,43,81,98,99,83,9,20,47,87,60,32,26,96,54,51,80,33,99,88,12,43,91,84,41,43,90,48,78,20,23,34,94,84,31,71,55,24,31,10,21,45,57,14,54,38,89,59,47,16,10,13,1,33,24,77,18,60,81,96,6,12,78,65,32,62,85,91,11,11,37,92,47,46,45,37,25,34,37,3,28,74,17,11,45,73,46,92,100,67,57,42,26,61,2,10,20,39,26,64,38,43,45,98,99,7,93,28,29,70,63,55,12,24,49,84,87,49,71,78,91,61,81,97,65,100,62,36,98,18,47,55,5,15,7,74,3,44,54,88,85,11,3,46,29,10,31,11,80,14,91,33,32,52,48,44,92,36,87,87,33,67,31,89,5,17,4,7,11,58,65,54,72,50,57,56,34,40,82,69,19,4,76,48,90,56,87,17,57,24,78,79,22,72,62,77,4,68,57,80,7,37,55,78,79,2,11,19,21,44,38,69,8,81,6,70,72,17,91,88,60,64,39,27,10,8,65,72,14,61,62,56,33,91,94,34,92,8,77,69,48,68,98,20,42,94,14,97,67,48,73,93,49,21,36,94,37,43,58,37,93,52,59,73,41,4,55,57,96,70,69,89,3,83,1,19,23,76,66,97,8,1,38,78,30,76,77,60,9,61,47,57,70,53,17,86,69,20,7,93,7,13,93,7,84,23,18,66,95,53,63,46,66,62,97,63,15,92,21,26,93,12,28,56,92,65,49,12,48,45,31,89,26,67,66,2,9,47,80,1,4,91,64,99,62,68,88,45,91,18,7,33,40,87,26,57,3,34,49,15,24,84,61,95,21,76,66,41,49,30,23,72,88,56,38,80,7,51,33,15,8,5,17,14,32,20,56,51,39,22,55,9,15,90,52,2,32,36,95,40,89,72,60,17,87,10,40,1,69,9,19,100,4,56,49,66,51,11,5,7,52,17,39,89,85,51,71,96,2,50,80,51,6,35,82,86,81,23,13,2,61,97,96,41,41,97,35,48,74,78,47,90,63,57,20,83,50,95,14,44,32,17,87,71,84,10,77,76,49,16,12,20,55,47,13,83,78,75,64,4,99,29,74,18,34,86,3,35,100,20,45,98,61,37,68,82,45,99,81,97,59,23,55,83,26,13,68,95,62,79,43,16,87,67,56,39,68,28,38,9,59,52,64,31,74,48,33,5,8,33,48,58,80,87,1,22,12,38,88,19,47,86,82,72,35,8,32,30,31,98,16,18,54,24,1,97,30,88,39,95,71,7,51,84,16,72,47,20,8,48,33,37,37,36,94,67,71,39,13,25,6,20,76,78,25,87,29,8,18,71,16,43,23,40,100,57,69,5,60,73,79,74,24,71,52,27,34,25,77,89,22,65,62,90,46,89,47,35,6,45,39,8,8,21,75,69,94,75,27,43,19,86,1,90,100,96,24,36,52,52,32,26,53,78,58,47,6,41,86,67,44,93,11,31,42,35,19,55,93,43,74,60,2,90,22,88,91,93,14,67,76,4,89,90,54,78,64,80,75,41,74,65,96,95,97,59,23,15,13,25,15,91,30,66,76,83,59,67,30,15,53,25,20,88,63,36,43,93,11,56,28,70,14,1,80,37,66,81,58,28,90,33,56,7,7,46,30,99,6,55,77,83,15,9,18,87,60,13,36,15,69,70,32,61,3,69,10,57,67,63,95,8,88,46,45,8,3,29,24,97,79,53,71,9,4,38,74,5,19,61,12,79,39,29,6,7,90,41,73,75,40,86,93,24,15,61,9,21,7,73,63,83,79,99,15,37,77,94,53,44,84,41,98,62,83,50,18,86,51,50,14,54,44,3,21,60,25,38,76,5,41,85,1,48,80,69,77,18,84,97,82,100,1,79,78,13,73,89,90,20,88,92,53,80,13,26,75,30,33,64,93,86,20,62,64,39,47,90,16,100,37,1,85,89,35,46,28,99,64,99,39,52,62,62,30,71,37,30,21,12,47,44,81,21,37,53,4,48,75,88,43,56,6,16,39,92,25,55,76,91,91,100,43,52,45,7,68,11,66,97,66,12,25,6,99,89,79,55,70,30,54,52,92,21,30,55,57,32,46,90,91,55,99,91,28,49,91,10,66,8,43,64,56,44,61,49,49,3,58,22,15,49,57,35,30,68,68,5,94,72,10,50,86,86,86,71,77,79,47,95,16,75,58,17,89,48,89,95,94,52,78,12,18,38,58,66,84,4,62,25,79,35,87,29,63,56,83,98,77,74,73,57,43,38,27,95,64,22,25,83,9,63,21,51,34,98,70,95,95,85,31,69,75,59,49,14,63,96,49,60,73,58,2,23,73,72,3,27,51,83,17,81,52,90,55,21,73,14,11,68,96,65,90,31,56,64,44,14,58,87,98,88,64,84,9,27,22,55,100,91,84,54,36,23,62,30,76,79,1,94,92,12,18,68,93,17,19,54,90,2,60,100,46,76,12,85,21,20,18,53,53,96,80,77,79,69,80,60,66,94,61,38,36,60,16,81,1,45,15,40,97,98,55,36,89,37,82,52,40,2,35,29,96,97,86,45,4,96,3,3,81,19,30,33,12,92,28,74,74,62,3,89,14,65,64,11,97,83,4,44,95,78,65,72,71,22,46,65,92,10,47,16,65,75,90,66,5,6,48,47,90,96,36,95,98,35,27,53,43,24,65,14,24,35,8,60,53,40,98,46,28,82,55,6,82,71,32,68,6,10,35,98,88,24,67,82,13,60,17,29,51,2,16,64,71,56,88,38,11,37,92,5,9,14,11,64,82,42,82,85,20,41,40,24,37,70,79,24,48,86,69,99,69,39,18,26,19,45,96,29,86,31,34,10,79,21,94,36,87,16,48,62,17,9,57,33,26,31,45,93,67,54,48,92,70,17,100,68,36,86,53,68,98,7,60,33,88,49,49,8,2,7,2,67,86,67,10,97,86,17,9,36,77,22,26,4,74,82,47,20,57,23,5,55,72,71,24,44,74,9,80,22,51,26,74,34,34,5,47,18,30,29,93,71,25,21,99,31,100,73,18,31,87,70,40,42,2,40,23,16,75,43,82,14,40,25,83,24,93,66,78,25,23,51,30,12,20,24,20,15}

    {21,36,40,25,13,18,12,21,12,25,20,32,29,4,41,39,23,31,44,11,34,46,11,48,37,39,9,8,40,25,29,13,29,42,38,14,9,45,38,28,11,43,5,2,40,45,5,27,12,46,29,27,47,46,45,49,27,28,4,27,49,45,40,27,4,22,3,25,19,15,26,19,32,26,11,22,37,21,2,23,24,41,40,14,16,19,44,33,20,29,1,10,23,25,38,25,48,18,23,45,44,2,32,36,28,20,17,44,27,25,15,30,34,26,42,1,40,41,23,43,42,42,49,20,46,18,36,33,23,27,44,44,12,15,12,42,7,29,8,37,27,6,11,33,2,20,42,37,8,50,37,15,50,37,18,16,22,23,4,17,49,41,50,29,6,29,4,37,43,24,11,21,38,28,35,43,26,48,36,4,31,30,18,46,45,32,41,38,12,49,9,38,18,45,6,8,49,24,22,36,32,26,44,5,42,41,2,7,12,45,50,31,35,8,29,29,43,26,22,4,34,43,19,7,20,30,17,17,12,40,18,12,28,1,22,45,7,7,11,24,2,33,8,32,22,15,28,4,6,1,44,24,20,21,19,20,26,28,46,11,21,41,3,47,26,10,32,14,48,49,20,31,23,47,10,5,39,6,46,14,40,28,5,27,39,24,48,40,41,42,48,16,35,44,23,2,22,28,18,26,11,4,29,44,37,33,11,33,6,45,23,33,6,44,7,41,36,28,33,1,15,50,9,44,38,11,15,46,22,26,26,38,15,42,35,17,12,7,33,12,19,3,16,46,40,37,7,48,30,19,2,19,18,23,9,20,37,47,6,43,23,9,16,47,3,50,35,11,4,25,16,31,49,16,6,48,36,45,35,43,19,31,43,20,28,47,35,21,26,25,42,10,4,25,35,15,12,22,8,26,49,14,5,20,19,7,33,8,44,16,24,10,11,46,43,28,27,16,19,31,12,3,14,34,27,30,47,44,1,18,45,47,19,20,28,6,33,22,29,36,28,33,49,7,2,8,26,13,17,28,27,3,7,24,9,46,2,16,38,22,44,33,3,47,39,12,4,40,20,24,23,22,40,49,29,16,30,43,8,10,46,5,18,39,23,13,14,19,15,7,19,30,33,26,11,13,23,9,49,21,45,5,5,33,50,34,48,5,32,5,14,39,39,18,14,28,44,47,42,17,21,13,50,4,43,15,50,22,11,6,9,2,25,8,4,22,45,39,28,2,20,16,12,45,3,23,28,48,43,31,9,13,44,43,28,22,17,34,35,39,29,20,42,44,15,10,26,3,40,17,27,33,14,38,2,3,37,17,14,35,28,37,36,19,41,41,31,45,3,1,13,24,5,6,21,34,1,20,5,34,44,12,33,19,41,42,22,23,8,49,17,3,41,13,1,27,34,24,28,21,9,50,31,49,2,15,47,28,7,35,22,14,49,2,40,40,45,47,16,37,35,48,49,41,18,40,16,10,46,37,4,3,22,24,1,32,12,37,22,36,17,19,26,48,26,17,19,6,12,21,13,25,44,12,16,13,23,18,6,43,9,23,42,32,36,30,43,34,7,41,41,38,5,31,28,13,30,8,13,48,3,42,24,25,24,8,11,21,29,3,6,31,23,49,20,28,42,13,31,11,13,35,40,4,32,23,2,48,27,32,39,14,6,26,40,44,8,40,28,34,23,12,17,46,37,2,24,47,37,30,5,37,40,36,8,27,3,5,48,2,23,4,8,34,42,11,5,30,3,22,23,28,20,35,34,38,41,40,17,46,35,49,46,34,21,2,15,15,37,7,22,39,16,7,44,39,40,8,44,16,48,16,49,38,38,18,20,46,16,12,26,17,2,4,9,20,24,29,47,9,48,22,20,18,49,15,38,5,23,16,6,18,17,40,3,25,37,49,6,29,49,39,39,28,45,14,25,11,15,6,10,45,42,50,36,22,36,26,40,45,7,43,21,48,2,24,26,48,20,15,3,6,14,49,13,30,14,13,14,46,42,38,40,43,22,7,25,7,44,16,32,25,10,48,14,39,45,45,30,11,48,18,15,13,9,41,49,24,23,45,2,16,31,30,29,50,13,47,26,18,42,48,4,38,23,37,37,38,39,7,23,7,13,47,29,17,10,47,23,40,30,19,16,7,33,27,14,2,38,45,8,1,5,43,46,39,3,28,13,50,41,50,8,43,33,26,5,45,36,13,40,35,23,31,24,11,3,29,26,42,18,49,16,50,40,19,50,48,11,25,38,7,46,10,37,8,45,15,40,28,30,39,35,41,30,42,6,43,23,3,6,4,24,32,38,44,20,37,29,5,31,7,1,41,24,50,29,20,26,22,35,50,43,39,3,40,34,21,20,25,50,26,25,12,6,22,34,17,28,14,43,2,41,26,16,24,18,42,8,21,14,37,29,19,40,3,30,41,50,6,40,29,20,21,28,37,15,29,22,20,17,47,40,13,43,21,7,17,12,26,38,1,50,16,45,46,19,28,40,25,22,19,10,32,16,20,29,15,6,48,33,18,33,45,10,1,20,41,23,33,48,19,38,18,28,43,49,31,32,12,7,46,21,47,49,42,1,32,28,36,41,12,21,28,45,34,4,20,41,37,49,17,18,44,46,41,9,36,19,25,29,9,26,6,19,40,27,24,9,30,36,36,10,22,47,35,49,12,8,48,33,6,38,29,13,19,1,2,45,32,31,39,12,43,48,29,11,11,3,45,2,39,9,9,15,25,13,10,17,23,35,19,22,9,4,47,33,8,43,9,24,24,50,28,47,41,26,9,14,10,23,37,39,2,4,25,12,11,14,1,29,49,33,23,27,44,25,33,16,34,10,28,12,19,43,30,43,22,27,11,13,4,29,8,5,45,38,16,24,27,5,26,48,50,45,19,20,31,16,3,19,9,16,19,26,46,50,21,45,5,5,44,37,19,37,32,8,10,14,19,2,46,29,35,22,33,41,10,4,16,2,22,24,20,27,38,3,40,11,32,32,25,32,36,31,48,19,38,30,5,11,40,18,1,2,33,43,19,9,24,41,32,16,48,45,32,9,6,42,33,19,24,36,13,49,33,4,20,8,20,49,5,33,20,50,32,20,13,15,31,6,23,8,24,2,3,8,50,33,31,7,2,26,35,18,37,23,48,25,29,1,5,19,29,22,21,47,49,17,8,41,47,28,5,2,35,33,41,31,50,42,3,35,41,9,32,9,7,21,35,1,31,40,35,15,17,32,22,45,47,1,47,18,4,35,35,17,9,41,41,30,15,36,41,20,34,12,25,13,45,45,17,45,49,46,15,34,32,19,26,2,47,36,28,47,25,46,29,24,1,8,9,29,35,16,15,45,49,34,48,21,9,30,26,27,40,17,15,18,11,43,36,40,41,46,8,4,5,37,2,28,6,26,35,34,25,40,15,35,40,41,3,40,43,50,16,22,29,39,43,35,39,26,30,5,47,32,45,25,9,12,35,18,39,10,27,21,49,39,49,22,12,35,7,32,25,45,22,30,1,12,26,19,32,32,18,34,39,45,10,1,34,31,41,49,44,27,43,35,11,5,38,24,49,42,16,21,37,2,48,6,10,36,5,28,32,1,40,43,25,29,12,38,30,46,9,22,50,45,46,2,4,30,39,25,9,50,49,50,45,6,5,49,42,8,41,14,12,5,46,15,45,22,29,27,39,11,3,37,50,32,12,6,28,15,12,35,19,22,33,19,41,47,21,8,4,35,35,50,2,4,22,13,35,20,11,33,41,47,17,47,34,28,14,21,10,38,21,50,49,18,4,15,45,42,5,49,11,7,12,27,18,28,44,47,41,1,34,34,16,16,6,38,45,20,1,19,3,38,28,27,35,24,23,24,30,23,28,35,47,35,12,9,5,9,29,9,12,22,28,36,20,16,21,9,37,40,8,21,27,6,13,27,22,2,8,40,40,31,20,16,30,47,2,48,4,37,11,13,39,14,9,42,14,35,7,24,2,17,10,33,40,44,48,11,15,45,26,46,44,29,19,33,47,1,39,21,10,18,25,9,21,49,31,35,20,15,15,20,7,46,7,26,14,33,39,7,46,50,40,1,33,19,46,38,45,12,9,19,15,4,49,48,32,20,38,30,30,29,29,34,44,17,6,36,22,16,27,36,5,48,35,47,39,33,30,22,40,32,15,3,49,26,15,17,9,23,45,24,25,28,48,32,43,8,23,31,38,40,5,49,26,6,40,23,17,28,4,4,32,3,41,26,38,1,33,33,47,18,21,26,18,40,39,12,46,40,48,30,7,15,43,31,40,27,22,40,35,43,9,39,40,18,16,10,24,36,19,1,8,36,32,36,46,34,48,17,45,47,20,42,16,32,29,12,47,28,41,24,29,25,15,33,43,44,46,40,50,13,45,32,45,11,8,46,36,6,23,49,35,2,16,20,36,45,22,44,36,19,13,18,22,13,46,23,38,11,16,22,3,20,48,30,35,16,12,41,25,12,2,13,21,12,50,15,24,15,14,41,33,1,42,48,50,34,27,20,10,4,36,50,23,5,47,31,26,19,25,31,48,28,13,14,47,24,36,8,33,17,13,29,48,22,12,50,9,15,42,10,9,34,21,37,24,37,33,17,45,42,44,26}

    {11,34,14,32,39,20,42,44,7,26,9,45,1,39,10,5,1,43,24,48,3,15,9,26,31,8,29,24,44,45,39,30,31,16,5,21,48,8,26,3,10,18,36,19,7,36,18,26,47,42,15,7,48,40,8,49,41,50,6,31,5,2,39,43,10,25,1,48,18,26,44,20,5,20,4,34,8,46,31,17,7,45,3,3,34,2,15,23,3,30,24,16,33,23,31,12,28,37,28,8,2,30,31,37,40,15,2,30,29,31,4,27,50,12,26,21,17,12,30,9,4,47,9,26,26,49,29,37,36,48,40,49,5,28,9,4,45,19,20,39,22,26,28,8,31,22,8,7,19,15,10,29,3,26,3,19,46,14,13,42,36,5,39,17,13,26,38,14,20,39,36,7,48,6,32,39,23,8,40,27,16,36,34,13,21,22,49,5,16,17,30,1,24,37,15,25,39,22,29,11,22,36,44,43,26,15,3,49,19,46,20,30,32,39,11,8,44,45,34,41,14,6,23,25,40,6,37,20,22,24,15,50,26,3,13,16,36,8,7,15,35,13,6,35,3,44,21,45,31,44,47,38,43,30,6,7,36,18,21,27,3,22,41,23,46,4,46,24,48,1,34,14,41,1,37,25,4,10,2,26,42,50,1,36,7,44,20,36,5,1,48,49,46,31,15,50,12,29,9,20,45,45,1,38,38,4,10,47,28,29,6,16,26,37,11,37,46,35,35,17,19,35,1,24,40,35,17,33,16,4,18,3,29,48,13,29,11,5,19,38,44,35,22,3,22,43,45,4,47,5,26,12,40,9,15,4,44,9,24,13,21,23,41,25,21,19,45,17,34,35,16,3,49,21,2,17,19,2,25,14,48,23,3,34,25,26,34,45,16,36,50,5,25,36,12,50,36,24,31,26,48,40,20,6,50,24,8,13,36,43,3,41,22,28,10,10,15,31,39,1,31,2,42,29,50,2,8,38,16,47,17,42,39,12,4,34,44,16,14,19,5,46,39,27,17,10,36,4,20,47,28,41,35,45,45,19,30,1,34,32,24,26,24,43,41,30,31,7,23,13,28,40,26,13,47,42,2,39,33,5,24,26,18,23,41,15,25,32,18,18,28,13,3,38,31,38,43,17,11,16,28,47,22,28,26,5,6,34,38,14,49,22,1,5,4,29,2,6,9,28,11,25,24,16,50,9,9,26,12,10,19,13,32,43,24,21,39,34,24,5,50,26,30,46,46,38,34,21,41,37,28,4,25,39,27,7,43,24,28,10,29,38,19,19,16,17,27,31,38,25,25,45,20,27,25,25,11,28,40,47,39,10,37,4,41,34,4,23,41,12,20,30,33,14,14,43,27,34,2,6,40,34,42,27,37,17,8,49,14,26,43,20,46,18,36,24,16,22,31,28,43,32,10,1,35,44,43,10,34,23,35,1,19,34,25,21,12,44,12,50,50,45,6,4,46,25,6,44,46,36,12,25,5,32,2,22,37,41,2,11,5,13,16,7,28,12,12,10,6,9,26,9,25,33,14,15,35,49,11,18,2,41,1,37,26,11,35,40,18,10,22,2,39,29,48,49,40,24,9,29,18,42,5,35,41,12,6,33,17,19,8,21,20,42,43,48,43,3,47,31,32,37,9,31,21,43,13,46,47,19,37,10,39,39,39,45,5,21,21,26,8,35,25,16,13,15,25,3,40,13,2,44,16,48,5,11,28,49,3,25,23,22,39,42,12,4,41,17,43,37,14,42,4,41,43,32,38,45,37,27,19,24,34,1,17,22,45,18,6,44,17,12,50,30,49,42,16,15,39,1,26,41,25,50,10,21,2,49,24,30,4,1,29,14,44,21,18,28,44,49,5,20,12,18,8,20,26,39,48,44,37,38,16,10,16,14,32,43,8,4,23,46,18,3,18,32,19,42,45,12,37,38,27,24,23,8,19,22,50,26,33,42,37,3,16,14,20,10,36,24,9,2,10,21,45,13,37,42,10,19,20,9,32,36,41,27,47,10,18,1,23,11,29,37,24,44,36,27,50,13,11,8,34,43,7,30,34,27,14,28,22,29,38,2,26,10,4,4,31,6,22,3,49,45,14,46,10,4,25,4,21,6,2,3,40,14,13,45,48,35,32,7,14,32,47,13,38,43,46,33,34,25,22,15,9,5,18,44,44,36,6,16,39,30,1,29,27,36,48,47,47,11,32,10,17,8,50,37,49,9,22,46,40,48,30,35,6,42,27,4,35,43,38,48,47,21,3,39,10,33,8,8,44,20,15,24,13,46,11,4,4,48,23,4,42,32,47,5,28,36,1,39,32,24,23,14,37,38,25,34,6,4,40,30,18,30,15,43,23,46,30,42,31,15,47,26,33,43,31,11,13,22,46,18,28,38,42,29,20,20,33,11,39,15,15,44,37,39,33,39,8,43,28,11,24,34,40,35,15,49,44,36,34,27,6,34,10,25,41,47,14,42,36,9,43,50,30,30,1,22,32,37,38,31,40,45,26,17,40,14,17,27,45,35,41,7,16,43,37,45,36,7,44,49,44,23,47,25,12,39,40,25,47,8,21,6,31,8,42,46,41,27,22,38,5,18,22,19,12,7,22,20,33,1,47,33,29,31,1,15,34,37,29,41,50,25,36,24,15,9,2,15,18,50,14,5,35,45,22,34,15,12,28,4,49,41,2,41,13,30,37,42,2,7,15,29,42,25,43,15,37,38,38,38,9,16,35,13,21,36,25,22,15,30,27,49,10,2,8,35,4,41,24,27,45,10,5,9,41,41,46,13,28,4,31,18,21,20,49,12,25,41,47,5,25,15,23,45,50,18,39,16,6,15,41,6,26,19,15,18,45,42,20,50,6,42,13,26,33,44,27,40,50,24,46,10,43,42,35,18,30,43,2,13,32,19,23,4,4,2,37,18,1,41,1,10,5,34,33,48,26,32,38,6,12,10,43,45,35,23,43,38,16,29,7,31,40,14,2,24,25,29,16,31,37,4,41,46,8,34,36,39,18,41,6,35,31,43,2,31,18,27,49,47,16,8,8,17,19,15,22,1,8,36,34,26,10,36,20,9,40,16,7,42,11,43,28,26,29,6,26,49,16,17,44,42,42,46,48,32,49,45,16,16,7,50,15,26,15,19,28,41,37,26,25,22,4,49,6,21,45,7,12,2,23,44,49,24,16,1,20,41,18,21,40,20,27,32,38,19,1,15,1,31,7,4,27,4,17,37,37,40,10,23,26,33,28,11,6,11,9,49,39,9,49,33,24,24,9,28,12,37,10,36,26,29,26,10,41,37,26,49,24,25,34,10,33,13,11,46,38,6,22,20,30,18,46,1,33,3,20,35,17,50,20,20,7,28,25,18,27,4,14,48,40,48,7,24,38,37,37,34,24,41,46,50,24,41,47,35,44,7,13,26,3,18,50,25,41,9,8,26,28,13,30,36,13,32,12,3,2,31,26,16,26,18,28,38,22,28,45,15,32,39,45,40,4,3,39,28,9,39,20,19,41,31,14,40,13,33,49,15,4,28,27,1,45,26,46,23,12,6,12,23,19,45,8,40,17,2,22,49,28,42,33,49,46,49,35,1,16,36,26,17,28,48,10,35,20,9,1,23,10,43,49,49,36,13,25,19,35,35,27,23,20,32,43,34,44,45,38,34,16,13,8,25,4,48,17,42,8,7,24,29,7,24,34,1,49,42,5,35,6,49,37,45,33,48,30,6,17,17,3,49,9,42,29,46,22,32,24,15,14,50,39,21,26,34,46,36,45,11,14,47,38,33,6,22,39,15,32,36,39,28,24,31,37,42,17,29,45,20,22,31,36,23,40,40,2,14,40,41,32,25,2,18,33,47,45,45,30,8,25,8,9,10,43,34,40,16,34,19,46,34,6,20,27,36,38,28,11,19,44,39,3,14,5,31,22,12,19,7,38,33,25,19,44,35,48,41,29,12,26,28,50,45,21,6,18,14,7,22,21,45,9,1,6,48,45,13,14,14,50,8,9,18,48,27,29,46,35,29,15,39,34,24,45,32,37,48,45,40,6,20,1,16,31,23,36,10,2,31,16,19,44,46,48,19,27,24,37,49,33,8,50,4,23,22,49,6,16,4,4,22,6,4,49,35,31,10,32,41,46,38,4,2,21,43,18,38,3,16,8,20,39,8,39,5,16,44,41,40,8,3,4,12,28,26,20,46,45,32,40,36,30,43,12,36,9,21,6,49,20,16,41,26,17,41,50,41,47,40,13,21,50,30,43,45,2,10,30,6,30,36,39,13,45,35,36,46,7,39,1,45,32,46,45,3,9,18,5,28,23,23,19,5,30,24,37,33,27,9,14,30,33,19,25,36,46,23,46,26,2,5,35,38,30,11,11,3,11,33,13,37,49,13,50,41,18,38,21,32,5,34,1,33,20,20,12,5,24,42,12,15,4,37,34,33,24,23,39,47,8,7,34,37,17,49,16,7,1,12,6,11,29,38,46,47,18,18,45,9,9,13,44,40,40,42,37,49,41,1,30,46,22,44,43,3,7,5,38,4,36,7,50,42,38,16,33,45,23,48,26,38,21,23,42,17,15,10,20,18,34,21,37,33,23,3,13,34,48,29,11,17,17,5,44,42,31,17,31,30,12,24,47,13,42,16,9,17,30,16,37,37,7,34,40,3,7,27,6,41,44,35,18,37,49,16,7,41,47,18,20,30,30,29,43,19,45,43,30,46,17,39,23,35,47,3,16,25,28,38,33,40,12,14,15,43}

    Returns: 101682

  37. 89

    {90,3,15,21,52,38,56,34,5,26,84,54,18,68,67,70,21,10,40,73,73,11,93,97,34,11,69,12,57,7,97,43,49,12,36,4,35,67,40,46,88,72,77,87,37,76,45,74,15,87,73,6,46,44,93,50,58,98,39,59,18,65,13,8,6,8,69,47,37,32,100,83,1,76,4,12,33,18,62,5,70,13,37,84,15,36,4,47,58,92,55,64,4,24,74,69,58,50,82,14,61,23,41,29,44,37,89,44,42,38,92,62,64,53,74,99,37,13,39,68,43,65,17,92,65,53,99,28,97,99,86,43,36,63,80,61,70,56,35,11,98,4,74,92,41,86,14,36,37,85,66,72,49,29,8,26,94,22,80,92,56,96,41,46,11,60,44,81,40,63,33,12,34,17,34,66,65,86,100,86,22,99,33,40,1,71,15,25,47,18,11,75,78,54,83,28,83,79,14,65,92,73,8,94,12,36,24,90,4,37,31,84,11,36,18,36,2,26,85,25,80,89,43,10,5,83,88,40,35,42,82,38,41,61,72,61,74,42,89,39,31,60,29,64,96,19,100,98,39,63,99,53,15,16,63,99,99,34,49,51,11,55,37,78,10,67,22,97,20,13,57,10,57,80,36,54,24,49,54,52,27,99,70,69,29,3,95,86,86,73,88,47,16,57,75,43,68,23,49,29,8,34,58,13,88,5,32,79,9,71,79,49,64,45,75,32,71,98,36,44,20,80,81,53,28,96,34,21,15,10,74,99,87,27,66,70,3,40,84,1,59,61,43,34,22,69,99,96,100,37,1,5,81,67,24,83,54,28,53,8,75,31,17,76,42,8,61,55,60,16,8,80,43,37,55,28,59,85,16,25,50,12,10,99,89,25,6,13,94,44,60,7,22,15,81,78,79,68,25,49,27,54,73,58,70,98,64,49,54,73,87,34,22,63,86,27,49,1,25,81,41,15,82,59,30,51,67,35,21,80,57,21,39,48,10,72,96,85,81,48,68,15,89,58,94,2,88,55,21,88,13,7,100,75,77,91,46,33,12,62,41,28,13,40,77,75,67,90,62,71,29,74,35,64,60,45,70,52,64,37,7,54,97,45,38,14,99,96,91,45,55,67,9,66,77,4,71,27,71,71,50,72,12,62,68,35,83,73,33,18,27,56,76,84,80,55,48,8,78,29,83,60,20,82,74,98,45,1,38,74,26,50,69,85,15,47,3,16,80,89,47,80,65,99,3,52,47,2,54,65,34,41,87,69,33,15,64,87,51,91,30,48,35,52,60,49,27,5,51,15,40,80,63,14,63,51,38,22,1,79,25,4,13,25,87,37,60,29,15,80,98,12,17,47,37,26,33,36,89,17,97,22,73,66,61,32,64,13,99,66,14,57,26,52,42,95,91,77,72,52,20,72,36,17,95,80,84,7,24,61,64,55,100,100,80,13,20,53,43,51,91,13,16,56,86,71,21,88,47,56,29,2,11,83,41,25,14,14,33,1,79,21,38,2,37,3,60,78,100,99,11,64,48,20,95,46,95,7,28,89,2,24,96,42,60,63,43,14,32,69,67,96,65,54,42,85,65,13,30,78,65,10,49,79,100,70,37,69,27,67,58,83,67,64,83,63,3,28,60,18,2,21,34,1,98,34,97,41,3,10,82,78,14,90,56,74,70,92,76,87,84,16,79,35,23,72,6,85,99,13,69,69,69,41,26,2,8,76,92,10,48,57,53,12,56,75,30,22,86,11,81,58,69,3,21,86,43,61,75,92,100,54,91,47,8,50,64,51,19,76,77,45,10,23,30,23,92,28,76,61,32,16,58,34,78,15,87,84,39,88,9,78,59,95,18,72,74,6,26,79,58,78,88,51,74,18,75,31,32,56,29,89,7,63,89,80,29,46,82,35,41,8,75,37,56,18,44,3,88,14,85,28,92,53,92,51,88,60,73,27,37,56,10,87,26,89,84,31,100,1,81,77,92,52,48,61,50,1,38,75,37,59,83,14,81,21,67,77,74,68,13,88,83,82,7,60,33,66,64,56,6,21,9,85,76,29,4,71,54,98,32,59,8,66,24,12,66,81,89,78,62,75,85,18,50,40,78,11,47,69,70,65,91,31,55,96,64,56,28,74,44,46,41,40,42,85,92,69,76,78,66,65,58,71,6,20,37,7,78,38,28,74,93,26,53,17,2,61,91,12,57,40,78,98,1,29,18,100,100,40,63,88,75,74,26,65,73,85,3,73,17,48,71,82,32,18,86,25,94,20,52,12,43,10,57,75,38,94,52,62,54,46,59,35,44,52,100,82,37,9,32,12,33,7,25,61,76,3,56,86,15,9,31,15,38,21,94,51,56,18,35,52,52,62,61,22,44,75,24,71,7,36,21,75,3,13,33,24,13,23,94,70,5,78,45,49,10,67,24,58,59,82,81,63,4,30,39,97,14,86,11,53,70,27,96,8,68,83,4,21,58,26,18,52,88,52,25,67,81,73,28,20,89,75,16,8,71,90,69,45,8,57,29,81,47,50,55,99,86,82,3,64,14,12,77,23,41,100,8,21}

    {80,2,73,2,82,21,68,53,38,42,84,81,61,72,15,31,61,85,24,37,12,57,65,65,46,9,24,7,63,37,58,64,72,79,38,2,9,44,38,2,21,47,5,40,20,76,15,30,64,23,60,30,9,39,63,42,16,66,20,15,29,63,46,9,16,76,38,44,89,51,84,22,53,16,48,57,7,63,35,71,27,31,60,84,56,79,39,56,60,5,38,20,51,8,71,12,21,45,17,32,65,34,81,21,71,44,70,32,15,65,44,20,4,39,1,7,41,41,14,87,18,4,27,51,15,75,16,22,33,43,63,70,52,3,69,35,58,8,65,84,63,52,66,43,13,16,76,80,87,74,10,62,39,39,64,36,7,22,14,48,10,72,27,86,1,40,15,15,40,1,55,51,17,27,43,88,40,9,61,78,19,53,81,19,53,57,75,27,55,85,48,7,16,39,61,14,66,11,35,79,15,76,12,78,54,65,60,6,60,23,45,82,17,19,26,4,65,88,40,82,71,39,14,38,82,89,19,3,19,26,28,77,78,8,65,73,80,15,69,63,83,14,17,77,39,20,88,10,34,21,27,5,85,68,81,35,81,83,40,23,21,15,30,64,42,61,17,75,64,21,81,30,46,86,13,12,68,63,82,13,27,27,85,77,50,57,85,12,78,64,79,23,79,55,69,89,55,87,47,18,37,1,15,11,74,79,21,60,29,86,60,42,54,21,54,33,33,58,22,33,69,40,2,26,63,79,33,2,82,72,87,55,21,41,25,21,66,75,78,14,80,46,10,80,2,41,35,20,65,69,21,83,19,57,51,72,11,68,10,82,38,71,37,14,69,5,40,56,3,38,45,36,40,21,31,2,46,23,73,61,20,17,79,53,9,21,6,84,5,77,25,8,20,6,83,32,70,58,41,78,15,4,15,10,77,77,82,56,10,45,45,80,43,21,84,2,42,85,51,34,80,22,69,58,44,1,55,51,9,58,10,30,29,33,41,65,5,63,18,39,82,58,5,33,28,64,34,11,60,74,66,39,57,15,56,38,57,39,63,58,75,35,66,51,55,85,57,62,19,49,11,9,45,86,36,64,7,37,14,50,67,86,5,25,26,23,78,84,69,84,79,68,84,70,17,4,57,22,7,77,31,81,5,33,38,3,14,63,18,75,21,45,2,55,36,53,51,69,48,71,32,46,80,49,77,18,76,82,17,58,76,17,8,41,2,54,6,39,33,42,13,24,70,63,3,47,71,31,71,21,89,26,19,34,31,45,49,55,5,29,28,6,61,59,65,66,12,43,64,72,45,1,38,86,63,69,57,33,40,75,5,18,45,19,61,10,75,52,61,1,62,65,50,41,6,44,46,10,20,85,79,4,54,84,89,70,33,60,39,58,88,7,55,34,87,88,7,2,23,9,14,89,10,50,40,78,62,52,14,86,76,44,77,68,74,49,77,75,53,48,30,64,6,24,53,86,11,88,36,66,36,74,68,65,15,15,24,46,5,14,59,15,36,46,52,5,5,86,78,52,80,63,45,3,3,58,79,16,58,12,21,7,70,34,20,2,59,83,8,22,36,68,31,71,52,15,55,43,85,62,83,5,89,87,40,67,3,53,28,13,81,68,89,13,66,78,37,68,82,63,88,21,76,36,13,2,6,21,51,29,11,36,20,36,48,14,42,47,23,78,4,83,59,61,33,66,70,67,71,48,60,41,52,76,71,3,10,34,40,35,55,89,54,77,82,56,11,76,18,47,43,25,22,80,9,49,87,79,11,83,16,49,13,17,71,79,49,16,25,21,35,61,29,79,47,21,88,57,43,45,52,66,71,31,2,27,20,41,32,68,53,18,62,63,44,7,75,85,25,85,54,35,9,18,66,22,15,51,25,43,4,55,82,50,62,45,52,4,32,68,13,70,59,72,3,7,32,79,43,12,9,16,33,14,86,9,62,43,4,49,81,80,57,34,30,48,26,32,54,74,85,19,44,87,72,33,79,45,66,55,51,85,46,76,56,42,45,70,34,55,43,44,76,2,44,32,30,39,78,20,87,44,58,21,74,49,10,85,63,41,14,39,71,47,4,75,3,36,50,35,15,5,24,54,71,43,44,53,69,49,62,1,57,45,51,54,67,72,6,48,60,22,87,75,58,86,14,73,79,74,63,47,60,45,56,42,19,55,58,77,79,23,83,17,73,78,83,22,23,21,60,46,83,34,5,89,68,5,32,40,37,37,84,17,11,27,40,73,69,88,77,18,70,68,5,19,34,19,67,28,13,75,72,61,5,16,52,45,30,22,59,72,27,70,56,4,76,72,63,47,80,16,81,60,87,20,24,87,48,3,89,51,68,71,67,28,69,65,19,18,84,62,15,10,45,88,58,76,16,19,20,76,55,69,59,42,31,88,28,64,65,32,76,87,82,26,8,48,86,84,40,34,49,74,4,53,23,20,77,20,41,43,52,84,63,58,58,8,22,14,48,3,74,48,24,45,8,57,66,84,78,4,22,17,65,81,52,70,37,69,67,48,37,54,36,53,89,46,64,87,76,37,7,16,47,30,67,25,78,55}

    {48,51,12,75,23,18,1,62,75,82,18,36,20,61,6,66,22,1,53,6,18,78,3,41,60,1,22,44,80,61,10,72,68,65,10,87,59,53,16,41,31,59,75,58,17,61,55,72,21,69,67,44,53,32,17,32,10,75,9,51,89,61,86,15,85,48,73,12,1,39,77,11,13,43,40,44,50,55,20,88,24,87,59,79,83,78,45,52,16,19,74,54,15,87,8,60,81,89,39,23,81,37,51,15,55,41,18,75,55,77,27,87,21,25,36,84,49,79,77,37,1,23,58,45,86,7,70,9,74,29,10,52,54,82,72,69,3,42,78,32,6,46,21,26,13,82,14,18,6,31,38,7,66,68,26,45,31,55,39,35,35,68,75,66,76,66,22,36,31,85,30,63,42,18,8,87,39,53,26,21,40,59,86,47,28,10,55,49,17,22,27,37,10,42,57,13,12,12,12,68,2,89,16,87,89,12,52,48,36,46,50,19,24,67,36,43,50,34,43,69,13,75,56,12,4,73,81,54,3,4,87,82,26,51,65,30,30,44,33,17,3,73,62,51,25,42,51,63,43,74,68,32,70,88,4,79,52,75,10,20,78,57,43,63,54,9,24,84,89,85,41,27,83,10,7,4,12,20,27,47,76,46,62,47,80,59,15,88,56,85,55,39,61,4,62,33,23,22,36,19,63,43,1,9,57,34,76,82,43,77,66,52,89,18,44,84,9,12,39,51,85,85,77,43,26,33,41,43,33,85,79,13,15,42,24,59,5,3,11,45,19,74,74,80,79,51,11,14,60,19,21,61,73,20,69,82,68,86,3,5,6,65,40,8,3,3,77,7,25,27,46,78,87,45,14,10,37,54,39,46,61,62,23,53,77,22,32,53,5,82,8,88,83,17,8,54,10,48,19,84,47,73,82,77,2,77,88,2,88,23,40,11,25,1,12,38,22,23,56,59,84,73,74,62,59,76,46,64,71,44,30,9,41,42,44,31,15,34,51,32,32,33,84,21,31,20,21,85,86,29,65,4,11,70,38,88,4,15,73,24,80,50,70,48,55,47,86,59,11,11,60,73,56,73,28,65,26,19,76,61,48,45,30,87,61,63,61,21,8,73,39,59,43,83,80,57,17,84,11,37,88,14,35,30,55,88,55,89,16,9,45,22,77,28,27,81,65,64,88,71,49,24,35,66,16,74,26,57,6,1,54,39,8,16,15,50,35,30,82,82,6,85,54,82,30,46,48,57,24,4,41,55,48,45,60,2,56,38,54,31,89,17,78,6,84,35,14,63,10,38,77,21,53,67,21,46,22,5,14,56,37,83,34,14,45,13,4,9,16,71,40,6,17,18,49,52,54,60,62,48,5,88,45,4,74,50,31,37,32,24,77,61,69,83,76,48,35,62,78,27,78,32,59,78,87,37,76,1,12,79,13,57,85,37,36,59,32,88,6,86,74,39,55,71,8,37,68,85,11,6,42,60,62,30,73,3,78,37,37,5,39,52,82,84,51,33,81,58,56,79,28,2,32,38,43,19,15,30,80,26,22,36,38,10,87,60,82,61,72,75,26,37,24,78,73,48,43,66,72,9,52,24,61,72,42,62,72,82,3,21,38,4,78,9,34,73,16,4,37,80,55,50,20,18,45,48,47,55,15,67,8,21,39,49,49,87,22,51,54,11,29,42,45,42,82,11,84,88,75,18,38,69,71,85,13,66,64,37,39,75,27,40,5,18,74,87,34,88,12,58,18,21,85,70,25,87,43,45,85,63,69,47,19,89,48,46,86,46,81,5,62,71,28,29,58,8,13,25,39,58,7,51,7,81,3,89,88,71,49,14,76,15,50,79,85,43,81,69,52,42,49,51,46,72,23,22,1,26,8,62,48,89,83,88,8,42,89,6,37,76,84,82,41,7,25,58,60,35,38,30,13,40,82,74,62,84,70,51,32,1,51,9,21,31,5,70,72,43,5,30,52,83,47,75,78,33,39,8,46,26,69,20,49,85,49,69,38,26,49,60,1,10,71,46,13,58,17,52,16,56,70,89,57,5,54,63,65,7,22,76,22,59,71,49,23,14,8,6,31,45,62,42,66,11,51,64,52,8,54,36,37,78,11,85,4,15,56,76,52,51,3,79,84,51,68,28,22,11,22,2,76,47,63,40,32,54,83,25,36,77,41,66,10,68,39,61,87,1,12,16,63,87,89,37,89,60,77,44,32,27,16,62,55,61,44,69,47,59,88,63,9,33,37,62,60,9,89,58,6,25,85,44,84,73,15,30,31,34,87,40,64,26,84,23,36,80,57,65,77,65,88,81,18,39,47,45,83,68,55,61,21,3,54,85,87,89,56,65,89,33,57,45,53,72,27,60,9,23,4,32,22,63,64,78,75,87,36,25,6,79,47,73,82,27,4,86,70,84,87,67,64,23,28,68,32,86,68,49,5,67,59,36,36,17,3,57,57,72,45,83,64,13,51,25,44,5,46,14,28,6,5,55,1,51,80,25,66,63,77,25,52,28,55,40,64,4,66,42,75,65,73,39,33,41,54,65,82,25,75,60,39,37,83,89,35,87,41,30,37,55,60,40,69,11,46,32,34,22,63,28,54,79,68,30,3,73,13,72,61,39,69,66,17,55,8,49,78,64,23,9,62,75,56,36,50,6,86,81,55,78,14,45,62,27,22,35,9,33,23,75,87,7,68,40,15,7,80,68,58,31,86,43,52,37,47,21,87,51,39,67,32,43,28,62,24,71,8,56,44,77,70,81,8,66,72,70,27,32,33,89,13,61,17,15,3,61,70,71,68,54,27,48,87,56,18,5,4,88,55,49,7,19,59,4,11,11,64,81,66,83,9,75,18,89,21,6,43,8,4,18,10,84,13,30,43,57,71,64,55,61,53,52,26,32,57,70,79,43,47,66,11,5,45,59,52,47,5,74,50,11,80,33,64,64,32,29,66,65,27,43,10,40,25,74,1,38,15,84,6,23,14,61,86,86,22,38,64,13,52,69,18,56,83,86,12,14,81,61,10,26,70,68,1,41,74,6,65,6,48,50,59,87,35,64,38,28,1,70,60,29,12,81,73,21,1,43,21,56,39,68,23,37,5,69,24,50,87,82,84,9,30,17,60,38,4,62,20,77,40,33,35,32,23,32,78,11,73,61,8,83,49,45,23,66,59,86,61,56,71,35,68,30,3,40,88,4,38,72,74,33,37,36,16,77,58,83,55,4,58,17,86,72,35,10,79,42,30,68,45,12,84,50,74,66,86,63,50,48,88,42,87,74,34,43,39,36,43,87,11,47,34,36,56,61,42,84,19,65,47,42,26,1,84,50,42,70,39,12,78,76,25,27,27,76,21,59,59,48,74,43,49,33,75,53,83,66,62,61,39,4,24,43,2,65,79,74}

    Returns: 55909

  38. 53

    {14,97,57,22,16,42,33,38,20,79,65,96,47,42,66,42,29,31,54,18,72,79,97,22,27,73,44,60,24,55,70,11,85,100,39,66,21,1,68,58,5,6,2,2,87,40,58,52,19,3,5,72,48,11,77,38,28,38,71,43,4,42,3,68,25,34,35,56,42,8,52,8,62,85,91,40,46,43,81,81,29,100,25,41,2,84,87,23,63,79,23,28,20,60,47,92,19,43,14,62,15,54,26,34,49,78,1,11,7,12,51,15,84,42,68,61,53,66,29,67,13,66,74,62,20,93,56,9,100,30,83,96,30,44,51,37,98,2,74,65,75,96,100,91,21,79,41,32,73,15,4,55,15,54,74,63,90,46,60,43,23,8,78,55,74,57,29,66,32,90,79,51,75,95,55,97,57,55,13,65,35,47,50,78,94,50,4,78,72,13,56,25,49,75,81,86,3,20,47,33,19,71,82,88,75,46,36,93,2,98,39,62,99,28,97,58,27,5,63,70,99,75,20,31,63,16,62,72,32,15,48,60,41,76,45,58,38,32,85,61,79,31,20,20,17,87,52,7,23,38,84,24,59,25,48,44,18,28,46,53,59,5,30,44,87,71,51,32,97,17,17,83,84,13,80,55,65,62,5,6,35,78,62,82,80,15,20,42,95,72,8,62,3,93,59,53,81,16,51,12,54,9,99,34,58,100,72,57,98,64,63,12,94,35,22,99,44,27,87,7,99,47,85,90,76,97,22,40,27,45,40,6,7,40,46,12,97,35,7,67,35,68,6,88,68,92,2,33,27,74,89,64,71,93,26,76,77,52,91,91,78,71,51,19,99,82,56,85,73,61,8,77,60,31,76,58,47,30,64,45,58,19,90,42,30,15,50,24,10,47,24,89,38,25,84,80,93,78,52,65,94,59,92,62,56,32,75,87,52,65,31,40,8,26,44,61,40,36,46,43,27,71,81,8,79,5,50,85,70,5,68,7,75,11,75,28,64,41,9,90,70,26,45,23,2,31,88,44,97,70,88,7,100,94,73,33,93,66,46,66,60,58,42,37,51,90,96,93,58,7,35,57,14,42,60,81,59,41,47,53,50,27,74,50,11,75,28,1,59,19,57,94,86,60,50,94,94,72,81,87,59,78,52,13,5,67,44,96,52,53,82,51,38,32,97,82,74,86,92,71,44,70,72,94,41,98,54,13,74,74,15,80,60,41,7,98,84,23,23,72,95,8,51,92,56,86,38,21,76,69,45,14,21,74,40,92,91,83,78,16,36,18,50,35,84,86,25,71,46,67,37,1,60,60,96,27,48,31,80,69,49,14,47,33,22,17,41,89,96,34,12,44,100,21,36,85,69,2,70,41,98,91,27,43,9,72,61,45,19,60,51,91,61,61,12,9,1,23,80,57,62,92,38,1,93,6,74,36,70,91,26,22,47,36,48,35,60,43,27,33,79,36,93,40,36,34,97,62,42,89,20,54,16,49,79,28,100,41,95,94,90,10,8,18,4,41,3,22,74,52,81,66,8,47,54,89,99,89,30,50,71,38,20,81,6,16,80,9,42,2,66,16,41,38,89,21,24,10,5,23,67,35,100,12,45,81,4,99,41,100,48,85,8,3,18,44,26,2,7,86,82,64,21,92,22,65,66,48,61,8,63,7,49,78,70,78,7,26,78,11,20,56,74,78,39,35,22,52,66,25,74,16,48,9,14,40,23,12,34,94,56,79,92,6,84,42,22,64,27,97,42,57,70,93,7,1,12,34,39,43,88,52,95,40,94,73,97,42,64,70,2,10,44,94,51,47,82,11,97,52,18,86,90,4,56,49,46,90,58,7,19,24,24,55,59,87,70,98,30,89,43,69,21,16,89,16,2,12,4,66,34,21,69,37,53,14,32,42,33,52,40,49,32,46,5,94,37,92,30,31,7,65,21,66,43,22,47,99,97,20,10,79,88,81,59,51,51,39,43,75,26,17,24,51,66,1,5,36,100,55,60,31,12,43,30,65,4,93,43,3,90,39,12,40,64,33,92,5,52,33,40,62,92,2,76,30,48,37,22,79,79,3,29,9,96,17,1,56,32,21,87,43,70,13,67,1,85,60,72,10,68,92,24,85,30,4,83,91,97,13,77,23,37,1,70,94,86,52,24,83,81,37,6,58,26,29,88,50,80,38,87,83,73,21,17,72,11,18,1,5,92,63,34,46,72,69,80,15,15,64,25,33,88,38,6,3,30,95,82,12,98,68,26,47,44,22,53,2,57,83,29,15,75,96,58,22,42,32,53,23,70,20,76,58,54,44,50,69,49,50,13,66,46,45,23,61,28,8,98,32,29,46,1,74,74,16,83,50,21,99,26,20,81,66,24,10,54,79,74,32,81,99,86,99,55,39,18,67}

    {19,25,51,28,26,31,7,51,26,36,9,11,37,31,35,17,10,43,26,7,39,40,11,9,10,37,36,38,37,6,27,35,30,12,18,35,26,47,35,21,35,5,34,48,23,52,35,46,14,27,24,25,29,1,50,50,16,53,8,12,32,25,41,12,2,13,19,48,20,40,22,11,52,3,40,5,6,36,41,22,42,41,14,41,51,15,27,1,38,22,21,46,32,10,2,46,42,36,47,48,50,45,50,18,26,29,14,20,10,20,31,1,29,50,30,43,24,51,2,47,14,50,3,25,21,41,35,25,36,15,41,15,53,6,43,12,52,15,8,11,26,6,32,3,25,18,4,12,21,14,31,43,36,37,14,2,42,29,2,2,27,4,30,24,34,47,53,25,41,24,45,33,22,21,12,51,48,50,24,25,34,30,39,42,18,37,7,37,1,5,46,39,30,14,24,33,6,21,36,2,34,37,42,25,3,41,3,23,9,24,11,48,16,46,26,44,28,53,17,3,51,46,30,8,8,20,25,9,39,22,5,27,8,15,6,33,42,28,23,42,18,30,13,11,48,36,13,14,35,52,52,26,47,52,45,41,33,34,48,3,2,10,50,37,3,31,37,39,1,36,12,33,17,25,10,6,35,1,13,27,1,49,43,2,19,23,37,38,28,34,1,38,15,32,36,21,4,45,22,50,9,15,42,35,8,35,20,16,53,40,7,2,27,51,23,15,15,23,25,46,53,16,50,4,5,35,17,27,44,1,32,5,3,44,20,48,26,49,44,25,28,8,42,29,44,1,5,33,21,50,21,52,23,46,49,44,29,5,22,21,10,4,45,52,12,3,28,3,25,35,31,49,2,37,24,22,43,11,25,37,45,38,6,15,25,26,38,50,10,18,12,19,32,26,50,3,47,48,1,2,39,20,14,4,42,5,3,19,53,25,43,12,6,12,34,11,5,37,13,29,36,40,11,28,50,45,10,12,45,42,37,2,40,22,49,23,9,34,43,23,32,18,16,43,8,9,32,21,6,25,36,45,19,49,42,50,27,47,45,51,41,4,50,27,16,6,2,43,26,38,2,10,27,2,41,19,41,3,24,53,41,14,22,29,13,27,14,43,7,36,51,33,41,45,4,33,19,48,47,33,2,35,16,9,37,46,23,22,13,53,19,6,38,23,38,15,14,2,2,6,43,6,14,8,4,45,11,45,4,53,3,36,25,40,38,29,43,38,6,49,15,50,47,31,11,50,13,24,35,8,4,25,19,31,26,42,6,42,14,49,4,3,16,53,18,33,32,4,4,52,31,15,7,51,19,1,22,8,5,13,40,1,38,7,21,50,47,17,40,40,12,48,4,13,33,2,49,35,11,19,19,30,12,23,47,49,5,3,13,5,52,52,44,1,26,18,33,41,47,16,45,4,38,31,32,27,26,3,18,51,51,11,28,15,46,27,17,15,9,42,8,43,30,30,20,37,25,48,14,42,13,41,49,9,40,7,4,7,29,46,44,16,37,19,6,24,47,20,30,15,17,34,18,51,18,20,30,47,36,1,45,31,7,53,17,50,41,50,6,23,13,32,20,23,17,25,6,34,37,40,21,16,1,18,11,43,18,11,49,10,45,18,6,28,39,36,20,6,50,44,5,46,4,4,29,39,30,14,6,47,11,21,31,23,52,5,1,17,28,34,14,35,16,14,18,3,2,13,48,7,35,18,45,13,42,1,25,48,10,53,37,48,46,29,27,21,40,12,42,29,6,26,50,36,15,31,43,8,35,23,5,53,19,25,47,17,53,44,18,4,16,9,53,41,36,36,6,32,35,44,27,18,15,39,15,11,19,10,25,48,18,10,21,36,29,25,28,25,52,25,43,7,45,21,29,38,33,26,49,33,50,44,27,9,8,23,15,9,9,16,1,37,12,42,45,23,3,53,30,43,36,37,49,11,34,37,26,10,13,8,33,35,9,15,11,17,48,1,31,9,20,32,3,10,39,7,31,38,30,29,51,23,8,19,11,29,15,50,42,15,32,36,28,30,47,40,50,17,15,50,34,17,47,52,34,51,29,19,34,53,26,2,1,49,1,6,51,30,31,23,53,10,17,43,30,47,28,10,12,27,13,19,12,33,19,12,50,6,45,38,45,10,46,37,30,6,16,20,43,4,9,53,52,9,51,45,20,9,33,49,7,2,50,12,3,9,45,11,19,16,42,35,14,1,39,12,30,11,28,25,32,51,18,4,6,28,40,52,40,40,4,47,50,47,44,29,46,53,44,3,31,45,17,12,31,40,32,8,48,49,53,53,23,45,4,11,32,3,18,38,13,23,53,5,7,22,10,51,25,49,24,49,12,18,6,31,48,18,18,25,21,4,20,30,1,16,24,40,7,28,52,33,3,38,23,27,27,47}

    {27,19,42,47,31,26,12,44,48,43,24,1,30,8,21,27,34,13,1,15,42,35,31,48,15,8,10,35,50,32,24,41,35,14,42,11,39,8,46,36,28,30,8,23,15,5,26,23,41,52,23,43,19,31,43,51,30,39,1,28,19,20,13,51,32,12,17,11,5,44,34,5,12,36,27,23,19,39,6,40,51,10,28,52,45,6,2,23,4,44,51,6,23,10,43,7,44,39,38,38,10,23,29,41,44,35,37,43,53,14,41,11,19,15,47,34,40,43,2,12,45,10,21,36,9,47,40,46,48,11,31,4,51,49,40,49,7,1,9,16,45,43,20,23,8,33,51,12,32,28,11,12,22,20,38,41,4,13,33,20,23,36,8,40,1,15,37,41,48,28,8,45,3,52,20,1,41,22,35,30,7,24,41,49,51,14,50,34,18,37,3,42,25,43,52,24,47,41,13,15,19,43,23,11,37,39,53,48,14,39,10,52,39,26,5,16,41,34,31,48,15,10,11,25,52,51,47,11,27,21,6,10,33,52,16,33,18,18,39,47,50,50,1,34,11,50,13,47,5,1,43,28,13,21,20,43,35,43,6,51,12,33,35,12,38,42,44,50,3,38,8,22,21,8,15,7,33,13,43,14,52,47,39,42,26,7,48,6,51,49,41,10,37,23,43,37,29,42,20,47,22,52,48,36,27,8,14,19,31,8,3,31,29,3,5,50,29,2,20,42,21,43,29,51,15,25,12,4,19,50,15,29,50,13,3,49,2,23,12,31,33,7,12,25,27,14,5,35,33,23,47,43,3,2,31,3,34,31,44,10,12,16,46,9,42,34,27,2,8,29,26,40,51,45,5,10,45,7,27,1,23,31,47,22,22,39,35,29,28,30,25,17,2,4,38,14,26,36,46,17,20,35,37,9,20,8,45,51,44,15,7,38,11,6,46,51,20,18,36,21,43,5,52,41,25,46,10,39,13,37,21,29,43,20,22,16,25,9,8,34,8,39,13,19,49,31,37,13,30,24,16,30,49,1,11,36,23,13,3,32,10,40,18,17,25,46,47,45,4,30,28,30,30,27,35,13,43,27,48,45,45,5,48,6,14,42,36,45,33,23,33,34,6,33,24,33,2,7,7,6,51,15,46,35,25,29,36,8,7,28,19,42,8,8,38,39,10,13,8,10,22,21,45,25,13,7,39,30,36,35,12,31,40,16,18,45,50,47,33,31,9,40,11,33,23,7,16,23,51,32,36,4,48,4,50,42,27,34,24,32,14,9,47,43,10,44,21,38,50,52,14,8,29,28,50,23,5,1,11,28,6,32,41,10,17,46,4,1,42,48,25,34,43,39,13,23,28,32,12,14,46,23,45,10,33,15,47,22,21,30,48,48,2,6,47,25,32,27,18,50,35,6,38,42,3,7,47,34,13,26,12,8,10,41,9,39,18,40,43,28,18,37,52,20,41,42,6,19,12,48,53,44,10,8,53,4,25,19,12,34,51,23,49,2,23,37,46,33,13,22,42,19,34,12,29,27,6,5,8,19,20,33,3,38,9,10,53,27,19,28,2,29,36,26,53,10,25,22,9,49,34,3,24,23,2,44,49,29,47,27,26,39,13,10,46,48,19,24,30,23,18,50,9,28,13,9,34,19,51,16,35,33,13,44,12,30,48,11,31,33,30,53,51,27,33,1,15,38,15,15,12,3,48,18,40,5,50,7,10,48,5,42,22,23,42,20,9,29,47,31,19,14,3,46,18,40,43,19,40,33,53,24,52,16,24,30,21,36,30,52,47,13,28,27,22,6,9,10,39,9,7,21,41,3,42,29,19,4,35,29,48,22,12,33,14,42,19,21,41,29,27,21,53,18,34,34,8,37,33,20,52,17,21,11,45,38,2,2,49,18,50,31,14,46,45,17,19,16,23,28,22,45,17,24,11,38,1,34,22,14,13,28,49,23,38,1,50,8,26,11,31,36,53,44,13,19,22,41,39,9,34,1,45,51,15,18,5,25,11,5,29,45,42,50,14,13,8,30,51,4,3,37,12,42,28,4,22,2,4,19,53,10,47,44,39,5,25,5,3,39,32,42,37,27,33,50,12,35,42,8,43,37,50,40,53,22,38,41,49,2,39,6,41,37,16,30,32,7,44,40,19,14,40,12,26,44,1,37,37,52,6,31,3,31,2,32,32,1,33,31,17,1,23,27,4,44,30,38,29,38,39,43,26,15,45,9,47,28,35,53,36,17,24,16,45,3,18,43,38,47,37,7,29,53,50,27,42,6,34,46,16,34,32,35,37,37,20,31,17,20,19,30,47,17,47,48,5,26,51,6,36,19,39,53,4,17,35,46,24,14,35,15,31,19,49,30,50,21,7,41,53,19,10,17,37,3,8,45,49,9,53,18,27,14,46,2,29,49,41,36,16,14,5,43,33,48,19,40,45,46,27,38,34,3,29,13,13,13,2,19,19,8,4,36,3,41,2,44,23,52,33,11,26,36,10,48,48,52,14,41,6,7,46,44,11,19,45,6,46,37,45,35,11,30,37,10,28,15,27,27,52,29,18,46,37,12,28,49,21,12,17,5,5,45,17,38,6,17,9,44,39,51,16,24,15,3,12,25,6,41,41,38,33,37,39,30,42,28,7,42,34,50,29,50,33,36,40,21,31,17,17,37,38,16,23,31,45,24,46,37,4,13,31,51,13,40,21,14,52,15,24,42,25,43,25,25,6,49,50,36,11,26,3,13,34,46,52,1,12,44,5,43,43,28,22,2,9,44,8,38,52,26,46,32,40,2,30,6,46,19,6,44,49,21,34,1,28,9,47,53,44,34,2,4,22,9,50,44,49,33,32,31,32,2,18,37,23,38,49,5,38,24,37,19,53,45,28,45,21,37,5,31,13,14,26,40,21,44,53,19,34,21,5,38,27,29,16,46,47,24,14,23,42,35,10,18,27,10,23,11,3,49,31,16,38,36,49,6,30,36,34,53,26,20,42,34,12,19,47,4,22,3,5,52,34,2,25,32,49,32,32,49,17,24,38,3,46,23,38,33,17,10,25,1,23,9,5,24,22,50,13,30,5,46,7,40,33,11,16,29,50,44,13,5,19,26,35,25,26,45,45,28,3,6,13,20,11,30,15,42,24,23,17,6,45,46,3,31,20,23,51,49,33,53,21,13,22,26,16,10,47,30,36,26,47,42,42,36,29,33,17,10,7,19,36,35,35,25,20,52,39,50,15,53,43,46,43,40,32,7,11,34,11,10,52,34,36,30,3,24,41,49,6,29,38,44,37,9,14,11,40,14,45,34,48,53,35,13,18,30,9,28,49,3,9,13,17,41,6,32,23,39,20,4,42,1,13,41,1,34,44,52,16,44,20,52,37,35,31,26,16,1,41,29,29,30,49,27,31,46,17,46,24,41,11,27,21,53,51,27,7,25,5,12,20,47,14,52,25,12,17,34,23,8,15,36,27,38,19,17,44,40,24,20,27,1,27,31,39,26,13,31,20,1,33,36,27,10,22,40,4,27,18,21,35,1,27,43,31,8,21,24,19,10,39,36,5,27,31,39,28,27,26,44,4,25,22,6,30,15,48,2,23,16,22,31,31,20,26,27,11,32,40,52,52,3,34,34,4,11,23,6,43,4,22,36,48,47,34,24,13,38,11,3,13,1,30,46,45,37,44,23,1,2,45,29,35,42,17,23,16,51,43,17,29,5,36,35,35,27,40,9,38,43,47,38,27,33,3,30,48,10,19,1,34,8,52,43,16,12,22,41,25,20,22,24,25,40,26,18,2,23,41,43,34,19,18,50,34,39,47,47,5,20,53,23,37,4,43,10,44,26,47,24,14,8,24,21,16,1,43,15,49,16,45,47,14,48,49,16,32,52,20,13,46,35,53,39,9,16,48,41,26,14,18,2,31,31,14,19,5,26,27,22,40,26,3,49,53,49,19,48,27,38,51,1,15,15,13,18,44,49,45,35,24,17,23,50,18,15,23,30,46,18,47,30,8,22,25,47,51,30,8,26,9,49,22,22,40,27,50,36,8,2,16,14,33,8,31,32,5,16,53,24,24,41,29,14,47,4,23,35,5,27,34,45,13,12,8,32,7,2,29,9,14,26,23,12,35,3,51,3,18,15,48,42,37,22,17,46,3,48,7,53,9,52,46,22,19,23,44,8,44,35,45,22,15,46,36,9,21,18,36,31,39,4,43,19,43,11,30,42,22,46,24,31,22,9,6,6,34,5,16,34,26,12,23,32,44,30,31,7,19,40,13,44,43,21,53,32,53,22,40,8,8,40,51,18,5,47,17,32,23,21,35,36,33,40,16,9,45,22,2,45,28,18,15,53,37,50,37,39,19,51,8,28,38,41,12,3,28,18,3,27,13,18,34,50,36,49,40,44,32,14,39,33,29,14,29,19,17,33,29,53,52,49,47,1,1,23,21,12,9,15,28,7,52,5,11,32,14,37,32,37,53,51,40,10,49,12,3,51,40,2,16,11,21,19,13,31,45,27,1,9,12,21,48,17,26,36,24,3,37,12,25,39,7,32,29,52,34,41,29,37,40,17,50,27,7,19,9,35,29,25,2,18,11,46,53,31,10,43,36,40,39,6,29,24,2,49,9,33,1,9,16,28,35,5,39,26,36,19,2,43,46,2,8,47,50,13,52,24,7,4,45,20,31,40,23,44,42,2,32,31,37,16,52,51,27,39,47,17,27,33,37,51,12,50,19,33,41,30,30,5,9,16,6,16,8,1,13,30,37,20,30,12,2,51,47,46,19,50,13,22,33,8,37,35,3,7,40,53,52,39,16,15,24,13,36,9,31,11,6,20,53,50,15,48,35,16,24,19,48,24,11,7,53,31,46,29,26,53,30,25,24,5,8,20,10,21}

    Returns: 52990

  39. 100

    {2,22,79,87,44,68,81,62,27,58,91,19,33,9,10,89,65,63,8,34,25,99,51,13,73,31,37,85,55,21,12,54,57,94,51,32,54,24,41,55,74,14,28,17,40,3,56,35,64,55,26,73,88,43,31,57,10,47,53,77,98,44,24,30,60,94,18,95,71,90,23,14,41,67,57,91,81,29,34,2,48,97,65,82,10,62,50,89,7,47,93,80,62,81,64,54,21,40,79,36,87,81,21,28,65,65,23,85,83,49,28,2,84,91,36,61,47,16,51,12,12,59,13,24,4,89,78,7,6,27,1,17,23,40,33,78,72,12,88,51,10,94,55,9,35,11,14,85,35,49,94,78,57,34,79,45,24,25,67,16,31,72,15,2,32,11,95,8,84,64,27,99,77,82,15,91,75,57,37,9,2,79,13,73,81,66,80,45,85,83,48,100,89,78,27,69,28,35,59,24,45,55,48,71,84,76,64,59,31,33,39,99,12,100,96,28,77,16,56,80,65,61,41,35,6,26,58,62,42,68,78,15,85,44,41,41,77,55,16,50,44,53,97,88,32,16,92,51,57,83,61,75,24,49,84,42,9,96,13,51,99,29,28,98,99,88,44,42,31,21,63,26,57,74,12,62,21,2,41,89,51,83,45,59,6,41,64,8,34,7,65,34,22,67,50,95,56,43,45,15,64,23,29,5,28,43,11,59,47,84,27,10,22,67,62,26,59,78,83,20,47,84,75,50,61,61,18,23,27,85,99,82,69,10,42,13,69,85,72,4,32,46,62,13,16,49,5,29,87,10,44,36,100,51,28,25,48,36,34,24,47,59,77,50,75,4,33,62,12,3,80,68,14,66,91,66,27,73,66,85,17,85,63,74,99,48,1,43,77,13,43,3,94,53,34,34,34,7,61,54,93,9,100,43,41,74,20,60,94,96,14,17,2,64,5,27,12,72,51,34,5,73,76,10,98,98,10,8,29,24,62,8,67,79,86,55,88,30,76,96,20,3,11,18,39,58,45,4,93,47,31,99,83,59,24,26,72,89,45,76,10,16,23,16,49,32,2,92,94,37,82,97,18,37,40,34,21,97,57,98,32,15,31,52,8,93,21,96,69,35,31,79,56,75,83,18,72,37,76,58,36,72,67,37,76,65,68,78,8,14,25,73,30,52,39,86,6,22,73,67,64,30,80,16,56,30,56,7,81,39,80,60,14,46,95,6,60,61,27,72,24,61,80,82,2,14,36,70,32,88,92,65,64,58,20,93,24,68,79,55,43,17,32,9,71,81,22,91,23,20,23,2,81,50,61,6,2,98,6,68,1,24,70,91,36,8,19,1,32,90,88,71,85,64,19,56,32,25,72,86,60,91,69,13,24,13,2,24,73,41,80,81,42,74,68,41,65,29,27,16,70,84,20,73,62,88,56,45,73,81,48,27,71,40,47,17,10,97,43,98,25,32,99,15,75,41,37,57,39,1,51,20,32,30,29,98,38,47,58,95,12,66,61,53,56,35,88,31,98,73,71,93,32,59,4,79,19,51,60,93,54,33,49,56,26,26,47,24,6,99,45,7,24,93,83,85,38,58,82,42,78,77,76,14,65,72,52,100,16,55,21,19,46,89,52,2,8,38,46,26,23,85,70,96,84,80,31,45,6,41,12,93,15,73,42,77,33,79,53,67,90,47,95,37,47,32,11,69,46,77,48,55,74,31,70,44,31,83,70,79,84,24,14,94,22,47,56,94,68,59,41,5,22,9,70,32,70,4,66,27,1,4,41,41,60,83,44,87,65,51,45,27,25,46,58,63,61,13,47,92,20,8,55,60,55,80,88,41,16,17,43,56,38,50,35,18,13,54,55,15,57,15,37,99,32,54,56,86,63,61,47,54,87,5,64,25,25,56,12,53,2,85,77,20,64,76,31,83,33,12,57,10,94,89,41,91,4,36,1,7,74,14,79,82,62,6,98,82,13,6,22,28,23,65,56,70,87,41,25,68,51,77,50,95,47,7,76,16,1,87,20,36,32,20,64,92,11,56,18,69,25,18,32,45,31,33,93,63,98,11,27,48,19,57,56,22,57,82,9,63,44,91,62,94,64,68,66,24,75,37,7,77,94,73,29,76,44,86,23,19,87,82,14,66,22,1,18,75,59,83,18,84,31,36,1,67,4,23,46,89,92,33,79,65,14,34,49,81,76,59,22,91,74,30,6,91,16,76,34,1,15,52,68,1,83,46,78,99,46,95,53,28,53,23,26,8,87,74,63,27,98,81,55,69,69,94,60,88,93,75,5,67,89,26,17,42,14,43,51,7,17,23,35,11,73,97,77,62,7,16,99,43,16,42,48,1,62,71,98,29,68,45,13,44,32,6,47,1,24,37,85,9,69,95,76,45,96,98,93,61,63,4,83,84,79,95,82,46,27,44,56,20,95,45,23,7,2,30,20,21,20,30,59,99,8,80,57,17,18,92,77,33,68,1,8,32,13,79,14,49,62,38,58,48,99,21,13,74,4,89,59,2,62,59,96,22,38,99,44,64,38,59,19,47,10,6,27,18,76,67,27,39,47,92,13,67,49,13,25,57,57,54,53,42,27,53,28,99,37,10,98,57,37,7,56,78,37,3,71,65,44,40,95,59,29,62,45,97,37,85,41,44,87,38,85,87,12,19,75,54,51,25,14,22,74,20,66,6,55,29,93,68,10,85,87,7,35,48,35,54,96,82,87,9,39,76,93,23,46,55,55,82,19,46,81,77,17,21,80,30,62,70,34,81,27,20,80,22,4,47,2,2,40,5,59,37,24,35,46,83,39,85,19,37,20,31,71,100,91,67,25,12,97,82,17,48,56,40,12,75,47,25,98,30,24,18,80,87,83,45,51,80,52,20,8,42,46,83,48,21,51,62,85,52,24,34,66,43,53,93,48,2,37,25,33,61,32,79,71,70,77,60,84,70,87,44,37,29,100,65,6,34,90,7,94,73,32,83,49,48,73,78,80,45,15,89,27,71,95,95,56,54,5,35,46,32,11,25,4,99,20,36,33,39,61,58,52,46,66,63,44,43,7,65,45,36,24,12,80,50,23,98,93,99,47,42,41,82,1,51,24,12,22,20,93,10,24,26,59,34,82,14,34,36,34,51,76,92,73,18,77,79,75,54,20,10,29,97,86,3,10,93,86,98,80,91,44,84,31,89,87,56,23,18,25,2,5,27,67,41,24,59,4,30,41,91,37,20,13,18,36,8,64,86,41,97,16,89,68,74,17,39,65,84,25,76,87,63,50,76,74,73,93,48,8,94,62,55,9,96,16,12,45,23,81,47,5,17,29,59,39,16,33,43,98,65,46,2,26,78,13,5,32,13,96,3,61,40,61,85,88,72,50,79,42,98,17,5,96,26,40,16,7,29,94,43,4,56,20,41,74,67,3,83,8,25,4,31,65,88,13,26,73,2,89,46,41,36,33,65,92,63,65,30,7,9,56,66,77,4,34,17,6,61,83,20,63,34,25,25,78,13,29,51,80,44,63,27,67,63,93,92,16,77,11,48,3,44,15,71,82,31,36,3,87,72,70,67,57,75,24,89,57,74,72,22,50,64,68,3,14,100,79,26,42,85,4,25,43,52,35,16,69,56,59,15,37,87,76,35,63,71,47,97,38,67,94,63,75,72,14,30,28,81,41,15,32,66,31,92,48,53,96,48,9,39,81,33,26,95,54,48,19,33,91,62,32,5,1,74,48,71,89,74,7,87,63,74,91,67,14,47,27,51,74,20,62,52,98,49,90,31,92,12,95,83,81,42,50,18,37,50,44,46,50,68,35,1,57,76,52,49,13,64,6,59,39,37,67,67,32,33,74,48,10,18,91,6,86,65,56,83,3,44,18,66,40,96,37,96,88,60,88,39,40,39,1,33,82,19,55,82,57,32,5,17,99,61,59,23,52,81,34,76,93,44,39,14,29,96,62,42,11,67,42,27,13,46,94,40,65,98,93,57,58,88,78,42,75,94,46,94,63,40,94,54,56,78,36,49,84,100,82,43,48,3,84,74,30,33,52,49,96,31,43,92,2,84,77,16,60,98,69,40,27,92,93,53,87,43,78,82,54,88,31,97,75,22,1,49,59,33,60,46,34,42,56,13,52,17,21,87,93,78,11,94,81,11,85,19,37,59,78,85,91,70,53,77,50,40,100,95,68,5,84,77,9,94,89,93,86,89,28,55,60,93,37,81,35,55,97,62,55,52,18,20,92,96,88,41,51,69,44,14,71,95,59,10,79,78,38,99,59,32,10,98,49,1,47,8,25,33,23,32,50,58,3,98,63,88,75,72,48,79,11,79,99,28,99,28,100,29,10,58,77,47,89,15,35,29,42,98,1,14,55,24,78,48,37,61,12,100,81,29,99,84,76,74,100,22,35,45,32,71,7,51,3,83,44,98,89,81,24,37,39,50,30,5,57,91,26,84,64,96,61,39,68,53,21,56,59,26,76,44,62,85,47,31,86,26,75,34,4,50,16,49,72,26,1,68,6,25,8,10,5,63,36,100,67,46,70,40,48,83,96,47,54,95,98,70,14,21,99,21,57,77,5,95,54,42,41,11,5,69,100,5,46,42,98,22,34,74,44,14,99,22,47,3,29,96,49,25,95,17,67,16,90,17,17,1,43,12,63,37,88,49,80,42,17,84,41,81,17,86,49,79,100,73,93,4,61,84,92,32,60,40,4,12,16,40,14,4,13,87,75,87,52,53,89,2,80,36,17,7,2,82,81,6,20,100,76,25,5,34,46,27,89,86,85,28,53,58,11,31,88,13,49,88,99,13,56,9,75,49,17,92,53,44,61,26,52,73,99,93,51,86,91,89,70,40,19,36,79,67,26,99,3,5,21,37,98,7,53,87,83,6,75,22,83,4,95,44,93,50,39,73,93,62,35,5,76,26,72,6,16,26,48,36,89,45,19,98,71,90,70,39,17,87,1,43,50,21,56,77,36,98,85,87,36,15,1,70,67,74,11,76,37,53,35,34,82,15,8,35,11,49,21,56,44,45,34,40,74,2,94,13,96,26,98,53,19,88,47,3,23,15,67,55}

    {97,48,38,27,60,46,68,64,17,82,67,44,18,21,24,47,83,30,69,2,53,53,100,54,67,9,4,89,93,4,36,39,89,45,40,83,3,92,89,30,58,5,71,86,55,69,37,83,84,30,8,67,33,95,84,24,66,12,37,52,80,62,87,59,30,81,35,38,78,35,1,10,63,79,77,18,19,22,85,11,54,52,92,41,97,83,50,67,64,76,41,44,39,52,15,56,65,97,17,41,49,12,17,45,30,66,8,40,40,68,85,24,63,85,64,32,69,97,69,95,97,91,53,68,9,66,2,76,100,62,9,29,11,63,13,88,71,9,98,45,55,62,35,51,19,89,58,8,84,32,71,98,42,53,89,21,70,55,14,90,59,19,1,31,55,12,23,85,70,36,42,73,77,59,21,93,34,59,66,13,57,90,53,31,88,79,17,59,13,65,15,46,67,63,28,87,48,65,66,79,74,90,73,97,84,68,49,85,20,12,15,100,83,89,16,30,42,54,38,98,56,17,17,35,56,34,62,5,43,40,93,37,5,86,66,27,35,41,100,77,11,96,76,97,61,7,31,56,52,91,7,25,63,94,40,94,97,45,36,31,20,15,66,1,99,86,64,42,13,74,9,45,7,24,4,92,40,45,23,54,57,29,69,48,2,64,11,21,59,28,85,49,41,8,51,72,69,9,33,45,93,46,74,25,40,40,87,50,92,12,81,54,67,48,28,61,26,31,79,30,88,9,27,11,37,77,45,8,96,57,36,46,30,73,81,72,72,3,40,46,9,46,1,75,60,11,33,41,71,95,59,16,17,6,47,82,18,46,29,53,36,73,38,66,77,93,66,48,16,95,5,28,29,47,38,76,9,35,96,64,93,57,2,56,97,51,28,18,10,60,35,94,67,17,32,71,27,73,90,26,76,61,90,10,79,46,4,14,33,76,31,49,15,34,82,30,55,43,93,65,12,57,53,34,45,73,92,29,79,41,50,28,19,69,26,76,52,89,71,39,74,53,15,30,10,7,22,66,73,15,76,82,83,72,49,98,96,80,51,87,32,47,3,85,72,96,48,25,2,58,12,10,96,87,86,47,3,88,32,17,99,38,20,97,54,65,17,62,29,84,1,82,95,43,28,16,37,37,11,30,68,4,62,33,11,71,51,65,2,20,78,52,79,43,95,76,59,70,55,6,72,20,25,68,36,92,3,47,40,44,15,26,22,13,5,29,32,58,30,19,49,94,75,82,9,68,49,26,99,73,62,87,41,15,46,77,43,98,11,37,97,85,71,24,39,96,85,22,47,81,16,80,3,97,8,5,25,33,73,19,26,14,61,52,22,20,3,98,20,72,70,39,11,32,78,45,1,4,45,58,19,97,73,56,41,78,69,78,2,38,5,45,54,13,53,57,88,62,59,80,100,4,91,91,92,71,39,89,12,65,85,44,16,49,43,1,86,50,30,16,93,88,44,83,91,23,87,26,37,27,21,72,86,81,57,15,98,36,87,15,51,48,52,15,57,65,89,65,65,3,37,13,83,39,99,2,5,3,61,25,53,61,1,70,23,12,27,61,9,72,50,60,43,55,52,22,89,70,62,65,87,57,21,86,69,72,62,88,3,25,46,71,99,4,87,4,82,91,70,60,20,24,31,73,58,33,85,50,92,30,88,70,41,27,50,53,71,95,100,95,47,96,35,54,25,40,45,43,83,78,17,13,59,42,20,77,30,13,5,59,98,20,85,30,36,17,91,23,65,62,80,15,84,11,20,92,12,83,52,24,32,7,44,95,34,21,23,60,12,75,14,48,50,14,99,13,43,49,6,25,32,23,16,83,10,33,86,14,30,74,45,15,90,18,77,96,1,60,24,86,40,37,65,47,70,8,75,76,85,100,66,47,52,99,33,100,54,89,41,56,29,19,98,87,62,18,23,76,60,51,69,31,36,68,6,32,63,53,43,60,32,73,2,17,1,80,73,85,88,1,62,93,53,38,24,27,19,59,23,52,75,88,73,47,32,31,36,67,47,33,33,5,35,99,63,93,88,46,8,45,63,35,68,93,78,45,6,69,32,52,37,4,14,1,54,51,14,40,97,67,97,46,16,1,81,49,18,88,12,20,93,82,69,81,24,94,74,57,44,47,44,94,46,14,26,21,92,34,94,58,82,93,24,33,70,48,66,88,69,15,43,37,29,13,17,49,63,6,94,20,40,79,59,30,82,21,30,65,15,3,14,4,73,62,77,10,65,58,7,36,94,63,29,47,69,24,57,3,32,41,89,64,90,71,61,33,88,10,37,43,1,39,63,96,4,94,68,41,86,66,63,72,19,88,30,32,31,40,6,6,73,66,43,86,23,53,51,16,95,18,92,100,21,88,26,13,46,72,21,30,66,82,96,49,5,41,73,63,48,31,10,100,14,80,42,50,45,30,19,59,27,69,50,75,89,73,59,86,21,39,52,36,53,54,44,41,74,11,33,68,40,31,31,9,4,20,54,20,18,65,30,73,34,35,61,83,52,31,82,10,37,7,65,17,1,63,31,15,43,99,45,30,6,95,58,61,50,86,52,16,67,88,46,79,47,20,100,34,94,74,7,87,48,1,81,97,85,43,91,22,1,13,32,15,50,66,37,44,2,96,44,90,2,25,62,15,57,67,4,60,75,80,84,85,47,26,89,58,40,26,24,24,93,91,62,16,24,85,38,81,46,62,41,31,72,52,78,75,23,97,44,83,84,4,73,32,70,55,21,57,24,6,74,33,48,50,34,29,2,4,35,32,32,98,47,1,45,83,87,59,99,64,20,98,25,15,40,26,41,47,51,69,14,39,37,85,12,55,81,50,73,49,20,19,18,44,65,80,8,70,90,63,93,43,82,84,28,58,84,78,25,87,24,54,13,57,84,36,24,16,3,100,64,84,34,82,51,19,43,55,93,35,43,81,48,36,71,42,80,44,83,72,22,50,7,50,97,15,19,78,4,13,26,75,86,18,33,49,63,3,35,19,33,33,19,42,43,12,92,53,83,62,64,59,78,95,62,87,75,58,57,89,76,40,82,14,4,28,68,43,93,37,88,3,38,23,99,66,27,58,7,66,41,14,4,67,15,76,48,36,83,15,27,4,6,77,19,4,36,9,98,9,42,51,55,29,96,84,93,48,77,72,56,10,65,81,54,42,2,89,49,67,94,19,3,4,71,90,28,98,73,49,24,61,42,20,35,94,3,39,79,63,72,68,98,28,10,7,81,11,36,33,22,51,63,49,57,43,55,49,6,68,21,28,50,62,57,41,39,69,13,16,66,5,4,10,86,37,30,16,47,76,56,1,74,70,90,2,36,92,67,79,34,77,80,46,70,27,10,33,72,33,17,27,92,38,6,75,58,18,67,47,3,18,80,97,63,63,6,84,71,5,78,28,86,75,33,71,72,44,29,71,50,27,45,77,35,84,8,32,57,25,53,15,12,48,63,79,24,92,97,28,1,22,97,67,61,27,72,15,83,33,21,34,41,32,93,91,60,27,20,59,76,19,49,2,100,63,90,20,21,34,34,41,28,83,59,11,40,57,42,32,19,17,75,88,21,75,77,74,78,49,32,69,29,32,3,68,24,38,85,1,19,99,44,72,100,75,46,63,67,26,13,47,78,27,82,84,71,61,8,91,46,87,51,76,43,52,30,89,74,40,44,26,90,74,99,4,9,4,26,93,58,28,74,1,47,25,88,90,85,23,96,73,77,15,53,77,79,34,25,17,92,66,5,67,33,85,31,75,25,90,27,27,31,11,58,32,37,61,65,44,8,6,79,51,84,54,62,61,79,36,94,73,24,11,26,21,33,95,69,20,46,87,24,76,65,33,86,69,44,45,13,31,3,69,70,7,46,100,60,44,30,79,15,54,87,51,4,11,28,18,7,40,80,27,62,77,83,28,36,64,34,49,84,85,37,18,42,61,1,90,15,29,65,36,20,75,72,63,8,91,15,64,94,100,49,92,94,70,56,8,46,35,54,38,29,20,94,57,24,73,61,77,36,91,76,39,1,28,67,61,40,98,76,2,48,40,16,11,56,90,35,85,25,44,65,17,74,83,15,69,31,79,54,42,54,82,66,19,52,72,98,60,25,8,27,56,96,28,39,76,53,93,14,23,11,100,6,10,21,30,61,23,18,42,89,27,30,74,12,64,19,45,11,67,21,32,94,22,38,19,52,92,82,2,5,7,31,80,76,59,69,31,98,1,55,37,51,92,81,9,64,7,86,1,62,93,57,31,16,8,40,59,68,43,71,79,48,44,5,81,46,54,64,96,18,56,29,56,12,95,41,89,61,35,89,72,44,96,92,56,68,3,43,94,9,92,50,19,46,87,65,94,92,85,77,33,68,86,75,40,81,8,35,87,81,28,41,60,33,39,5,13,13,68,12,24,57,99,46,76,16,82,99,5,59,14,98,21,21,45,25,34,60,40,90,76,4,17,99,43,63,85,5,55,80,57,92,62,35,66,95,10,77,42,25,22,44,81,64,16,62,70,87,71,45,2,66,92,12,73,41,17,21,8,69,98,61,55,3,34,13,6,89,56,52,46,86,19,4,29,7,78,97,36,45,77,36,88,7,18,6,13,79,57,70,33,2,61,39,45,53,97,34,45,45,21,6,63,70,19,96,56,28,26,99,35,92,98,81,81,23,94,51,43,90,7,100,100,27,31,42,5,79,82,67,34,96,9,98,100,58,88,35,93,97,14,67,83,77,65,43,88,98,50,46,14,79,86,96,54,91,55,10,21,13,61,93,100,9,67,65,72,98,62,77,1,77,35,13,47,83,69,92,99,20,65,18,10,56,36,40,57,10,55,7,30,68,45,98,13,30,56,30,8,92,100,34,3,74,51,78,2,34,69,18,64,33,55,44,58,49,75,30,31,24,69,38,90,56,99,12,85,48,46,31,69,28,54,5,35,9,43,72,9,16,23,76,10,23,78,90,63,40,89,33,16,87,18,4,67,28,89,58,88,94,43,84,97,18,71,38,18,21,91,32,23,36,45,53,66,19,74,87,75,17,45,50,68,77,93,78,60,39,48,32,99,55,32,59,92,74,22,16,65,89,80}

    {18,93,87,54,25,25,16,24,66,64,27,22,64,35,76,5,35,36,73,7,72,17,51,90,4,4,45,66,5,80,21,10,46,86,44,27,26,77,5,64,49,65,100,46,46,26,74,26,97,73,39,61,32,35,87,8,64,28,28,95,35,27,13,76,13,37,85,97,60,22,70,93,8,41,95,28,86,24,93,33,82,56,49,34,97,24,97,95,29,31,100,49,97,26,12,5,90,48,11,35,8,24,8,86,63,8,24,53,72,26,21,41,74,100,98,4,22,81,57,69,53,30,66,100,80,59,44,11,33,72,35,52,92,96,43,6,57,60,20,82,24,88,48,93,46,25,68,92,70,21,33,91,91,73,48,56,45,46,24,45,49,24,90,13,64,51,7,19,60,75,91,77,34,89,7,81,28,69,49,91,8,53,79,96,18,57,68,94,80,19,16,29,66,100,58,77,11,89,55,42,14,56,19,46,27,13,36,100,1,27,80,20,26,68,58,48,79,75,41,23,72,19,9,26,45,36,27,68,88,96,93,11,89,83,62,21,55,64,74,23,12,18,21,3,82,57,86,28,65,89,6,69,12,23,17,20,5,80,75,61,75,82,45,76,67,98,100,49,6,3,71,3,16,72,42,75,76,59,11,36,8,27,73,83,22,91,14,37,80,99,72,6,64,29,29,19,61,17,92,19,46,10,34,98,46,49,47,6,42,21,3,25,4,99,97,79,4,44,81,79,99,4,16,59,61,75,74,4,42,59,66,9,84,70,89,19,3,74,15,59,68,100,82,58,66,49,81,91,19,58,87,90,90,4,85,60,24,23,50,39,5,8,31,58,57,82,74,13,74,7,70,69,46,75,58,90,95,23,2,63,87,92,92,41,10,80,21,15,19,64,29,78,54,97,15,64,51,2,54,57,74,30,73,46,35,90,10,75,76,65,54,54,16,38,75,46,98,92,35,18,100,39,70,34,15,12,28,8,33,100,59,86,14,60,43,4,64,27,80,100,6,40,33,78,51,91,87,1,59,3,39,91,24,18,25,28,67,33,49,100,20,49,56,45,92,96,2,13,48,93,92,37,40,79,29,59,51,54,30,45,66,35,5,52,75,1,81,58,9,86,36,53,65,36,33,66,12,75,37,83,34,44,4,32,65,52,56,22,93,57,59,50,87,41,39,1,31,57,9,93,42,31,69,80,74,97,19,65,25,68,4,65,72,22,78,7,99,60,99,100,97,10,11,33,48,13,97,43,40,72,59,92,80,69,10,16,43,84,24,70,96,95,39,77,10,28,75,94,13,60,92,69,76,75,60,97,4,7,7,28,29,33,61,49,89,74,88,68,24,46,2,73,98,59,3,64,17,13,80,93,82,12,14,8,16,68,91,91,48,93,33,15,42,35,66,64,46,56,16,87,12,44,47,3,28,20,56,73,22,96,48,51,56,45,20,87,77,81,6,2,41,38,51,64,90,7,1,36,25,41,26,63,60,89,2,31,49,76,44,58,91,7,75,75,61,59,86,76,16,32,53,63,66,5,58,56,42,71,55,83,9,82,31,52,21,99,6,92,58,84,22,11,20,55,96,55,21,42,84,79,44,37,77,99,6,78,3,30,25,24,89,86,24,89,16,22,6,92,56,37,78,98,98,11,55,23,6,32,6,18,88,93,98,16,100,83,54,21,44,52,65,37,70,63,2,93,45,24,80,91,98,10,75,34,98,7,38,83,8,70,6,20,91,98,46,9,23,29,37,50,26,7,37,94,29,55,69,26,7,92,71,68,47,49,3,57,64,24,75,42,84,71,32,82,63,64,13,31,55,4,73,36,92,13,55,42,50,54,49,31,69,64,11,100,19,8,65,4,73,85,37,6,95,2,35,63,18,86,29,45,65,66,52,36,12,65,74,73,73,44,8,94,69,34,1,59,5,15,12,14,77,73,74,80,97,56,58,93,22,46,14,61,62,28,39,42,39,99,28,28,35,70,10,7,30,18,100,23,59,40,57,100,74,1,65,77,93,29,10,43,12,95,68,58,99,44,5,59,90,87,82,32,23,34,6,46,93,57,37,13,12,2,18,35,4,28,87,69,5,34,60,24,50,69,9,37,95,28,81,8,54,51,22,46,64,14,42,82,84,38,53,53,14,92,84,71,62,74,8,52,66,26,65,2,96,19,18,95,98,87,39,54,23,5,57,47,33,10,98,19,97,40,63,60,1,23,9,74,50,87,12,37,49,65,18,54,9,72,17,21,55,85,94,58,47,20,55,36,85,11,46,45,11,12,48,53,85,10,29,94,39,13,41,70,8,94,19,29,71,19,71,23,20,35,38,54,18,19,1,67,16,91,41,22,25,64,64,92,66,66,4,48,64,3,67,78,53,50,77,51,39,23,16,79,78,9,90,50,72,90,75,3,49,30,25,89,21,95,87,39,80,30,83,45,48,44,85,32,46,90,29,37,18,55,6,6,2,77,81,60,25,31,70,97,43,57,69,3,55,37,73,44,58,20,2,16,39,10,37,42,25,56,94,44,64,54,98,64,32,70,53,52,26,12,14,96,24,20,33,91,61,33,50,56,20,4,96,84,82,43,56,76,48,51,43,41,4,11,44,78,73,71,93,27,41,72,34,76,49,79,47,37,99,28,29,64,92,6,43,54,14,54,35,2,64,50,97,5,92,82,25,90,29,25,89,22,56,30,40,89,88,29,29,89,10,95,48,55,42,28,31,28,81,57,23,57,17,28,53,40,81,23,99,28,51,80,3,37,12}

    Returns: 83082

  40. 64

    {54,34,43,19,97,8,86,31,1,49,4,52,41,81,18,47,40,59,22,31,27,23,47,79,11,19,48,83,86,59,5,11,54,38,40,35,63,89,98,78,72,97,72,16,31,37,38,56,27,3,9,48,90,93,11,34,71,46,96,90,77,38,74,93,71,67,83,66,35,73,78,85,75,82,79,97,27,86,53,91,19,93,15,16,100,44,28,16,2,1,57,52,14,89,51,30,42,92,96,81,8,62,37,73,9,60,5,97,63,100,67,82,8,1,48,68,87,76,1,12,34,67,70,44,22,78,92,54,35,91,8,60,61,30,9,62,60,12,14,42,20,30,4,67,69,49,53,1,92,42,82,20,34,18,41,94,2,57,57,96,61,91,26,64,16,37,12,55,6,31,28,94,88,75,87,38,77,56,96,56,38,65,59,51,28,22,36,13,7,46,8,50,98,23,26,12,20,62,56,52,60,40,32,100,58,76,41,12,55,10,70,13,24,99,66,55,52,69,90,46,45,35,18,55,54,5,76,99,54,72,57,92,26,35,97,52,38,34,24,24,37,65,28,14,48,93,17,73,27,23,46,58,8,21,18,100,38,57,79,29,69,4,91,14,89,45,30,84,91,52,82,52,64,64,37,13,52,99,67,16,56,4,21,33,21,60,60,59,76,31,39,75,41,79,66,48,26,28,54,91,99,9,23,56,1,83,67,50,92,95,98,63,50,88,92,7,22,49,13,49,34,71,64,66,58,41,16,29,45,85,3,65,56,49,27,55,79,5,90,48,39,32,29,89,76,34,10,23,65,35,74,13,76,1,77,1,26,21,26,36,43,100,54,66,81,3,70,18,66,20,18,37,95,14,49,18,34,42,38,9,43,42,12,27,45,28,66,80,5,20,82,55,94,7,74,17,58,30,82,86,56,39,59,5,42,94,83,97,53,28,15,83,46,34,37,33,68,83,53,68,66,24,39,73,65,78,95,15,2,89,24,17,93,51,95,65,10,2,68,100,16,26,45,83,37,87,86,98,88,76,86,80,76,43,25,82,44,44,20,78,47,30,90,58,6,86,94,63,80,92,73,55,13,21,8,25,51,5,45,95,18,84,60,95,5,72,56,31,12,29,44,12,62,16,42,35,85,17,43,92,97,22,27,93,10,95,2,77,27,44,87,14,19,57,65,86,63,78,90,80,23,21,5,1,94,61,57,83,70,80,99,48,21,47,86,27,51,13,3,68,58,72,40,92,13,55,49,87,53,15,98,94,18,61,65,25,26,8,10,83,67,24,76,98,99,53,10,52,83,22,53,15,67,51,78,70,5,5,17,76,61,59,62,55,61,58,3,4,74,13,79,33,97,78,51,83,56,97,79,73,4,77,79,82,14,40,38,83,46,90,52,86,61,71,94,5,1,30,49,64,96,72,70,51,60,52,96,39,21,92,29,56,36,2,25,55,19,30,60,56,8,53,55,42,49,88,90,3,61,71,28,27,38,59,74,85,26,58,36,45,74,100,9,7,30,58,17,49,17,96,56,50,93,34,18,23,2,29,99,24,47,40,41,34,94,98,47,67,60,55,28,99,11,60,65,67,82,56,54,39,34,84,99,8,61,32,17,44,63,39,19,62,87,78,62,82,98,55,9,77,59,25,73,15,48,37,56,47,89,78,20,12,91,14,41,49,87,84,35,73,47,50,27,79,89,48,67,94,38,61,78,44,21,65,44,45,34,99,84,75,21,33,19,49,29,8,55,66,43,78,100,61,79,65,17,63,32,2,84,9,97,49,24,62,41,13,45,32,5,15,58,72,19,37,45,28,65,55,100,64,1,89,61,8,47,74,81,21,78,67,66,3,19,29,43,38,27,93,93,78,51,82,75,57,22,12,63,56,65,84,13,20,64,35,80,46,90,93,2,89,4,70,97,27,96,78,66,61,42,89,24,47,12,72,34,70,13,19,30,22,51,75,25,59,23,61,52,50,5,22,78,75,70,68,13,78,85,62,86,99,74,37,27,87,100,11,70,27,98,7,27,78,24,89,4,71,36,53,48,76,82,36,70,21,100,21,57,88,45,75,12,15,28,54,99,76,46,77,15,94,100,95,25,42,22,24,21,33,35,69,88,22,60,96,77,93,99,82,51,44,9,14,50,21,44,79,31,1,70,24,80,91,88,71,74,29,91,98,41,78,56,99,33,10,14,88,27,96,85,8,100,30,65,69,3,39,44,49,10,51,78,35,71,16,21,23,15,7,92,51,39,71,94,49,5,4,61,86,8,11,54,7,16,91,77,43,3,2,91,94,53,45,83,94,17,99,30,94,19,75,26,84,42,16,83,53,33,39,96,35,10,59,68,99,71,30,23,93,65,73,91,57,67,77,49,90,38,78,8,55,51,67,89,8,98,97,4,4,19,87,48,71,2,95,63,8,70,22,61,5,65,91,9,47,28,91,68,37,24,100,43,13,57,85,48,27,61,25,14,15,40,38,67,51,24,16,87,81,53,57,16,81,44,40,6,5,87,80,49,28,49,47,61,36,79,51,41,48,17,30,100,5,57,20,28,23,15,3,64,22,22,10,97,63,37,45,17,3,7,10,44,10,4,91,3,10,92,86,10,9,14,64,63,8,71,23,71,6,61,86,78,65,92,27,40,76,29,94,36,67,15,66,92,81,58,66,27,12,67,20,47,36,41,36,22,2,84,70,55,9,61,30,88,59,64,50,67,91,29,80,37,24,89,28,93,18,47,74,25,18,63,15,77,25,8,67,43,78,97,99,41,66,35,55,61,87,29,53,78,30,81,75,18,71,58,69,100,27,75,9,79,29,34,24,57,47,71,78,97,17,29,74,5,98,36,67,36,7,93,12,70,73,87,24,67,75,43,77,43,16,59,9,34,23,74,71,6,81,69,92,38,3,65,19,69,100,7,29,12,13,26,98,72,10,65,64,58,96,7,7,75,97,84,34,94,37,75,53,54,69,92,73,13,55,20,86,59,57,48,49,56,33,40,94,10,6,25,72,66,29,42,50,42,11,90,65,50,67,20,72,23,98,71,78,86,90,35,32,91,78,15,90,44,39,92,34,100,98,74,34,11,82,71,35,82,76,81,35,28,96,93,89,27,8,98,45,100,3}

    {2,25,49,39,29,9,14,58,3,49,41,6,30,25,17,42,56,33,26,43,40,48,40,32,12,2,1,12,41,61,34,52,1,25,39,51,64,27,57,63,11,56,39,63,37,1,34,16,1,62,14,5,62,61,63,48,16,38,34,58,16,47,5,22,48,58,49,59,27,31,8,10,45,45,42,13,52,5,35,50,24,33,40,3,62,54,6,24,22,47,24,3,63,64,10,37,14,30,20,57,21,46,42,38,62,62,29,21,34,54,41,58,15,50,11,60,17,26,37,36,46,59,44,43,47,34,52,8,10,51,9,29,33,33,56,25,31,52,54,2,3,58,32,46,24,27,59,8,28,9,37,36,6,44,23,29,38,54,23,25,32,10,19,7,31,63,44,23,36,42,12,36,6,32,5,2,37,40,52,1,35,61,50,27,15,44,38,10,28,27,28,59,6,54,37,17,7,49,43,52,60,30,1,29,45,50,51,48,30,54,30,23,5,3,47,4,57,64,49,35,58,23,25,60,37,12,24,39,43,16,26,53,55,8,61,30,11,46,1,42,37,51,3,43,59,18,15,34,58,46,18,26,36,11,46,15,46,39,47,42,5,58,7,37,23,4,55,45,25,58,41,22,42,43,35,63,52,44,8,36,36,42,2,54,16,55,61,20,43,61,44,47,18,61,33,3,44,17,14,11,24,53,4,30,18,41,16,59,58,10,18,22,19,31,49,54,54,17,45,38,55,9,59,4,6,17,60,56,8,26,50,21,3,20,27,13,42,37,24,56,42,35,55,33,32,61,62,8,6,40,61,9,50,63,31,7,8,29,48,36,63,15,32,9,20,16,60,61,41,2,8,35,54,55,51,35,46,34,53,13,53,27,38,31,17,24,62,15,62,22,56,55,57,21,40,15,17,30,41,22,9,34,53,44,3,55,31,10,64,6,35,40,23,29,17,40,59,34,55,36,48,35,47,29,15,60,11,17,53,3,19,25,42,61,28,6,7,49,58,11,35,4,52,41,9,9,26,31,54,46,64,7,52,24,21,51,61,13,31,46,31,44,38,4,5,23,17,55,7,18,45,33,35,43,42,60,44,11,36,30,32,3,38,13,46,1,41,24,38,36,15,51,21,30,34,56,50,61,54,56,25,55,53,34,27,31,25,47,48,16,57,16,64,38,10,1,29,55,15,64,31,28,31,36,23,49,12,64,61,19,18,40,60,18,10,30,5,16,60,7,47,14,3,63,32,49,60,32,57,11,7,37,19,9,9,30,2,30,34,23,10,50,39,5,64,19,38,21,41,57,21,33,20,24,12,35,57,59,28,35,37,2,54,60,52,4,36,62,1,28,45,11,8,28,34,4,56,49,16,51,16,55,33,42,27,5,18,11,51,14,21,16,42,23,59,62,55,4,33,31,17,14,27,43,55,54,26,44,8,56,58,41,20,40,21,32,23,35,43,18,45,46,28,43,8,29,27,10,45,13,15,40,20,63,40,1,63,24,29,8,51,40,56,10,49,34,52,38,16,59,58,39,30,48,14,40,19,33,53,6,25,40,61,35,48,45,29,36,16,46,10,39,9,40,54,62,49,51,46,45,42,43,47,33,62,35,11,52,35,36,10,30,43,44,25,48,8,43,23,22,25,40,4,44,25,10,15,8,37,54,19,31,36,5,31,39,3,5,55,14,15,41,21,12,55,32,53,59,56,10,42,48,12,51,45,44,56,21,42,18,46,53,20,45,30,7,35,36,49,9,53,48,1,8,51,53,15,31,5,10,43,23,4,32,52,14,51,33,27,45,41,20,18,29,19,28,54,34,16,13,50,51,4,4,16,27,28,15,26,23,3,27,61,42,46,57,23,42,47,43,56,64,39,1,40,64,9,44,52,10,54,59,7,55,34,47,50,54,37,30,13,19,17,13,46,64,24,18,45,17,15,26,3,9,13,16,18,40,50,11,63,34,57,12,63,57,64,41,56,46,30,61,38,22,55,31,36,42,47,46,34,46,25,21,46,32,44,8,63,59,18,26,47,42,46,27,9,15,12,35,29,53,56,56,62,6,41,57,61,11,16,1,47,25,54,5,5,26,47,36,10,45,7,1,35,7,21,8,14,23,63,64,38,3,55,56,44,39,38,10,50,33,61,60,55,49,14,26,18,63,27,6,32,7,39,17,43,26,25,9,30,35,11,29,15,12,3,56,49,39,25,53,10,39,46,39,6,21,56,22,18,4,28,58,57,50,53,61,5,34,34,24,43,41,13,43,9,13,56,21,60,55,30,11,29,63,41,23,10,25,54,48,64,34,40,2,32,34,34,24,39,52,62,33,26,18,15,19,13,33,17,37,60,57,63,24,38,47,44,36,49,29,3,3,39,50,46,2,13,5,29,44,25,60,15,12,25,11,37,49,53,45,29,32,59,57,24,62,35,49,47,59,9,39,49,14,12,35,17,39,10,7,56,32,31,22,18,20,18,47,10,29,44,26,11,31,19,55,59,34,14,13,42,61,52,20,22,7,34,56,63,52,48,37,19,40,53,50,50,43,35,61,30,1,47,26,61,31,45,5,43,43,23,6,49,42,49,23,11,53,18,26,9,11,46,16,37,11,24,8,41,48,46,32,38,63,26,5,50,32,20,49,37,7,62,26,36,35,42,8,55,38,19,57,25,19,32,32,9,58,34,28,56,54,49,5,35,47,5,62,61,15,16,62,58,13,51,12,36,51,32,2,45,45,11,61,46,44,57,24,34,45,52,24,37,26,57,1,55,35,54,50,12,62,29,51,58,40,7,2,36,50,23,21,30,47,13,6,43,45,60,56,9,30,49,43,22,42,23,13,30,62,28,26,64,46,39,49,43,18,48,52,1,48,35,1,15,9,27,63,57,57,4,32,19,10,7,3,44,23,53,6,45,32,33,27,22,43,28,36,20,30,27,37,49,52,57,8,46,58,60,62,54,31,26,3,32,5,10,14,62,3,42,10,46,25,6,41,29,52,15,56,22,26,16,52,58,10,15,13,42,41,37,54,51,13,36,43,61,30,34,18,24,12,45,28,3,57,16,4,60,56,34,42,22,52,34,57,4,35,27,64,35,48,48,55,5,20,23,12,22,21,64,17,15,60,15,28}

    {29,13,63,13,28,16,29,55,61,52,44,44,61,12,35,40,61,31,61,35,53,1,39,54,28,45,62,40,59,6,12,55,33,28,27,2,25,53,10,33,47,12,44,57,41,39,18,5,6,54,22,26,10,39,58,26,44,33,2,7,21,14,45,2,19,15,47,31,36,50,58,32,13,49,2,14,21,41,39,27,5,32,16,5,50,36,9,21,45,51,18,53,14,17,30,54,61,23,31,62,38,31,13,8,13,36,6,63,39,58,38,24,8,37,58,35,21,43,43,59,36,12,18,53,14,38,25,14,59,6,41,41,12,10,28,48,21,28,8,37,51,50,1,43,19,52,54,54,55,9,50,41,57,56,11,34,18,29,56,16,37,27,60,3,27,7,30,60,7,30,13,15,49,48,31,20,16,52,26,45,27,64,27,19,15,61,52,43,50,29,11,34,6,33,32,60,29,17,38,58,28,30,29,56,16,61,4,6,15,48,31,42,49,50,18,39,35,8,63,14,58,12,2,45,38,30,49,27,27,59,46,5,20,47,34,23,19,61,58,16,19,8,38,15,29,20,5,62,1,36,5,50,15,17,34,20,29,19,40,19,39,49,49,4,42,9,17,59,61,61,16,26,55,63,5,30,5,60,7,29,12,10,56,7,36,30,10,59,4,5,50,48,53,8,23,48,42,26,41,52,19,59,46,54,26,10,44,38,54,53,4,9,14,53,41,57,2,12,15,24,34,36,27,8,5,28,48,47,5,40,2,12,38,23,46,61,35,59,17,8,19,43,2,37,26,19,28,57,26,11,33,32,61,50,7,6,32,7,61,63,1,4,38,27,52,60,18,58,11,53,55,64,26,35,54,38,8,59,46,9,49,23,62,52,46,7,57,3,30,27,16,45,54,13,4,26,20,48,59,41,5,55,58,11,54,1,37,21,50,56,12,37,17,15,1,47,10,27,49,40,3,53,48,33,22,5,36,20,53,30,63,4,38,44,52,16,31,37,28,30,11,39,49,53,19,9,49,52,26,40,13,46,40,31,28,52,13,44,62,31,45,3,2,36,43,23,42,38,12,14,43,51,64,30,6,16,47,2,45,25,34,23,10,28,53,62,14,31,42,60,17,38,21,27,44,40,8,7,16,32,56,23,63,63,51,39,60,15,43,26,36,26,60,63,10,40,42,22,29,47,30,35,16,11,58,46,35,57,5,32,28,44,48,64,3,38,56,13,8,51,10,33,23,30,59,52,42,21,59,22,36,17,5,30,36,12,22,29,25,21,48,44,32,4,59,1,17,22,42,51,40,23,19,53,51,15,42,36,49,51,59,61,63,45,6,21,50,63,37,10,49,42,31,9,2,46,3,58,56,41,20,3,52,51,43,43,57,62,12,8,5,35,18,6,19,13,58,14,63,34,61,13,41,8,62,27,59,11,33,36,13,23,32,35,5,47,55,13,54,24,60,31,52,44,10,45,46,24,46,51,24,53,62,56,26,28,45,16,39,52,41,33,16,58,28,5,43,11,18,40,3,46,15,1,15,39,41,63,46,28,40,36,17,33,19,42,9,63,53,64,37,47,12,15,27,25,18,62,51,13,24,41,38,7,16,58,19,54,26,53,62,37,10,23,19,57,59,53,3,17,4,8,12,41,14,50,45,17,37,50,56,6,53,5,50,8,5,58,31,7,40,45,31,41,57,13,53,5,43,20,14,41,63,10,40,11,3,47,51,64,11,15,13,42,17,59,1,42,10,20,2,49,7,36,7,3,30,17,49,25,59,44,43,18,33,46,16,20,38,17,51,12,17,20,44,44,3,31,58,62,53,11,15,26,48,10,9,56,42,15,23,8,34,36,29,24,45,58,63,12,55,35,60,51,40,50,2,56,24,50,40,2,19,50,10,44,8,33,14,20,61,54,36,23,7,8,17,39,44,57,13,2,49,27,39,40,20,48,64,53,39,23,34,10,47,26,31,33,30,45,39,17,7,40,22,17,31,61,6,55,60,51,46,31,7,14,46,13,23,44,64,20,60,8,2,50,36,17,43,20,49,56,32,22,14,60,33,26,23,7,17,9,51,47,64,63,59,60,15,44,55,30,60,58,9,38,43,36,15,49,23,50,12,31,49,56,49,20,36,35,23,27,42,54,16,15,47,40,62,39,58,16,23,58,16,50,45,22,33,47,62,59,62,40,49,50,55,28,12,64,63,33,14,8,11,13,55,50,37,4,32,60,26,32,22,21,19,45,15,44,47,45,62,11,41,49,19,42,63,28,30,42,42,22,15,39,30,64,1,48,11,52,24,11,36,22,2,35,56,24,59,40,32,55,50,20,23,41,29,34,30,63,9,32,33,52,2,35,63,31,34,24,26,43,13,19,60,60,35,63,8,64,34,4,4,43,54,44,20,59,15,45,36,8,28,36,40,2,31,10,10,43,18,18,63,36,2,20,40,2,8,9,33,7,23,14,8,1,32,47,37,17,39,55,16,12,47,13,16,25,61,54,54,47,19,57,6,29,1,61,20,28,45,12,17,35,45,22,29,49,64,43,2,32,30,48,27,27,17,58,25,51,49,61,11,46,59,29,33,41,32,34,32,53,50,61,54,53,23,44,48,43,61,32,26,62,42,18,25,59,2,23,32,2,59,57,28,35,25,1,53,11,17,7,11,49,27,3,55,44,34,40,46,24,58,12,48,12,36,48,31,50,1,45,21,30,5,27,25,12,37,55,61,46,7,54,32,61,39,18,6,56,55,12,31,51,16,13,4,43,37,22,63,29,37,5,19,1,48,17,42,10,59,4,60,26,39,40,59,51,50,21,56,16,55,46,12,45,22,13,11,2,12,56,19,30,12,27,49,17,52,55,36,12,49,22,60,14,8,63,27,9,43,43,40,63,27,52,50,35,56,2,56,26,64,55,25,16,23,35,58,59,10,32,2,15,52,14,30,24,8,13,8,19,21,46,43,17,47,34,15,37,31,58,21,4,12,44,32,23,51,22,34,34,47,40,57,41,55,19,64,6,45,45,4,24,33,16,25,62,19,53,54,7,42,63,46,15,12,16,60,50,57,25,24,23,46,24,20,41,56,56,41,43,20,44,13,47,11,6,31,50,21,17,55,14,55,63,6,17,36,35,27,44,23,45,32,39,3,30,37,4,10,56,12,37,58,2,50,49,18,64,36,33,23,61,19,30,56,15,36,60,10,52,22,16,14,54,2,52,2,13,1,15,56,54,27,7,7,25,53,62,59,53,64,40,4,46,9,3,30,55,44,11,33,48,36,54,62,6,6,35,28,53,18,20,55,25,35,64,53,39,63,13,38,64,63,2,19,39,40,8,14,21,3,52,38,64,17,27,63,8,2,22,41,7,55,40,33,45,4,31,61,22,34,11,50,5,55,12,35,36,55,27,47,4,17,51,34,60,11,9,18,43,55,58,5,6,47,29,10,31,42,33,31,60,45,17,47,50,45,24,30,20,46,64,57,34,63,30,62,43,57,23,25,42,59,30,5,19,28,62,29,64,38,19,49,37,14,32,37,3,12,15,46,41,60,28,38,27,26,18,21,20,44,40,37,30,60,35,43,56,15,29,14,30,10,61,63,41,5,57,37,34,38,40,4,52,29,6,36,7,54,39,35,28,23,16,19,27,7,54,61,23,40,49,25,39,27,39,2}

    Returns: 69347

  41. 68

    {90,77,24,18,62,75,25,4,73,50,40,65,82,94,90,39,83,82,67,65,42,46,31,13,1,27,59,30,56,48,76,94,24,68,45,76,88,8,49,15,34,46,54,36,77,39,85,42,19,24,15,45,13,94,53,19,58,5,1,78,80,84,64,9,91,49,83,53,14,22,40,6,23,45,36,6,31,74,91,85,54,62,92,1,31,29,31,47,31,57,33,46,78,19,8,29,44,27,95,15,6,35,58,17,37,36,85,5,20,44,78,86,88,45,66,73,70,81,100,29,93,27,48,31,34,86,7,70,44,59,84,6,27,100,10,67,96,4,83,71,21,47,93,48,64,31,53,24,64,64,87,42,82,49,66,69,4,51,34,86,36,30,100,7,66,61,44,39,28,68,92,69,52,50,65,10,54,86,13,24,48,49,16,100,95,95,48,60,57,40,53,16,53,63,49,20,96,40,66,87,79,46,81,24,30,27,26,7,81,97,85,32,27,62,37,83,8,51,31,22,55,94,56,67,41,48,39,72,53,47,88,78,44,41,69,90,60,28,70,68,56,19,37,29,70,5,89,85,26,15,88,67,49,45,27,18,15,96,45,52,42,14,96,48,26,55,4,36,46,69,18,31,40,45,48,52,25,3,79,82,48,26,12,1,5,20,30,50,32,28,99,69,68,52,42,92,24,25,52,65,28,46,30,84,37,94,10,73,66,77,88,37,69,11,26,54,53,69,23,1,97,72,12,30,90,39,71,71,33,85,28,45,45,77,22,34,11,39,59,90,60,39,5,21,100,58,23,29,61,21,95,45,90,2,7,53,4,29,56,51,89,56,40,81,19,68,23,100,20,43,26,50,57,15,84,61,11,23,18,77,35,56,32,99,16,88,93,99,46,83,76,65,17,58,60,100,70,2,46,27,86,31,19,90,12,95,26,14,6,50,42,4,43,15,3,49,85,84,54,29,24,32,7,94,22,46,28,67,51,58,93,32,83,84,26,14,26,99,86,66,16,20,46,95,62,24,72,9,15,27,62,84,75,63,39,84,94,72,66,22,10,49,80,69,52,56,42,82,15,77,4,55,24,30,39,61,57,48,42,97,54,76,26,99,41,21,28,78,43,78,34,46,76,87,84,23,41,22,26,35,1,32,63,20,8,92,47,25,78,71,13,41,42,61,50,32,81,53,56,78,57,1,98,51,73,77,24,25,70,41,80,37,34,67,73,74,12,55,100,16,80,97,71,13,77,71,32,23,95,60,34,34,87,17,28,91,56,30,59,97,22,56,49,48,32,55,76,3,45,61,42,99,82,79,5,76,28,55,74,76,85,85,19,48,54,100,23,3,71,4,16,15,55,6,55,20,48,36,76,89,99,14,62,26,32,73,42,69,55,57,30,66,31,23,55,19,85,10,56,74,46,72,39,8,46,76,47,12,67,41,2,59,99,82,61,11,11,15,11,12,66,69,66,78,1,52,47,96,69,6,50,23,96,10,64,68,52,65,85,43,22,38,85,58,71,26,32,36,56,25,32,32,91,17,57,55,78,97,56,70,41,86,72,23,66,13,22,98,2,74,36,56,34,4,68,49,37,45,74,72,11,35,29,24,88,62,1,90,16,11,14,80,94,44,61,36,92,39,65,76,14,34,13,19,88,20,35,34,41,53,24,38,99,42,68,23,66,36,58,28,24,86,73,55,9,64,68,75,85,69,16,48,29,41,19,39,16,97,73,5,93,79,19,68,21,88,23,14,42,95,23,3,67,87,74,69,14,28,36,100,45,4,44,46,82,31,34,14,24,20,49,16,36,92,81,21,85,58,59,63,17,1,11,92,99,12,38,30,71,55,94,26,95,75,67,30,90,71,14,97,29,21,21,83,49,54,28,4,49,16,52,66,75,32,78,2,19,75,91,91,80,65,82,64,49,88,75,55,63,79,24,99,30,75,67,6,66,88,7,24,99,52,22,33,16,6,58,74,50,19,4,87,17,63,97,86,90,88,84,64,52,66,88,2,2,22,45,17,17,86,57,65,48,63,97,93,4,46,35,18,46,46,67,93,89,57,64,14,91,50,9,2,6,9,70,8,10,18,74,57,9,29,92,91,59,54,7,23,48,55,31,71,20,78,80,12,21,89,39,32,45,92,70,65,67,40,78,9,56,100,40,70,11,39,14,67,97,71,89,100,1,23,22,81,4,45,73,87,63,5,27,30,30,23,9,60,81,67,93,84,44,89,29,30,85,54,43,21,100,48,32,87,89,63,82,10,25,88,52,34,23,36,33,63,95,100,50,2,44,18,23,15,78,8,85,88,27,28,85,9,80,89,37,30,65,61,48,73,15,98,70,8,26,14,30,41,70,24,69,30,59,10,81,38,72,31,92,46,39,56,10,24,48,71,6,94,84,62,10,93,35,77,17,83,100,9,65,48,8,55,98,49,33,42,91,9,2,55,77,55,25,24,67,24,60,72,56,17,6,75,32,84,39,16,44,67,82,92,72,75,42,52,48,96,88,15,15,1,68,96,51,38,13,84,16,75,97,23,58,86,24,3,90,58,48,10,7,37,52,22,27,86,72,37,65,35,1,75,8,24,89,12,56,42,100,54,90,37,60,88,97,44,17,2,36,61,58,93,33,100,93,57,18,10,80,92,98,74,71,82,98,73,20,50,55,7,26,44,81,62,95,65,66,23,27,59,98,27,70,91,19,80,75,96,42,53,64,64,8,4,8,2,86,94,99,14,33,65,67,5,49,17,42,17,73,92,60,2,88,63,49,15,49,27,60,38,31,35,1,19,89,70,46,31,81,82,9,71,35,70,58,6,56,44,11,24,84,44,14,27,46,59,97,63,42,54,41,68,94,58,34,95,19,61,87,34,49,2,77,62,19,35,36,30,31,27,81,58,87,94,34,61,9,16,67,59,16,99,96,77,97,94,83,2,38,29,62,14,95,32,86,59,39,18,18,5,48,2,23,93,74,16,87,35,1,7,86,13,88,10,75,90,54,98,82,33,49,30,24,10,64,38,24,27,53,11,89,47,44,79,49,28,61,90,63,97,49,60,18,100,90,56,7,35,56,46,42,6,42,91,60,11,75,62,48,32,54,69,30,44,48,94,89,41,26,89,7,39,22,67,38,76,16,63,36,31,11,5,34,30,43,4,33,3,68,49,80,53,30,56,60,46,44,88,88,69,67,78,68,57,5,12,42,8,91,78,73,96,27,15,8,94,96,42,46,37,91,92,21,35,40,18,9,99,58,6,31,10,96,47,75,31,82,34,75,37,63,48,90,87,98,7,23,86,60,1,34,21,96,96,99,60,30,85,13,89,64,24,91,50,49,66,46,30,58,9,87,59,29,38,20,64,37,43,10,32,34,68,76,42,75,81,33,41,54,91,37,20,23,4,7,19,26,62,7,42,98,55,17,36,72,65,95,75,19,75,63,59,9,14,36,9,9,99,30,47,44,24,19,13,41,66,78,67,54,29,51,37,95,67,91,31,36,57,3,72,52,43,46,91,45,9,28,19,49,80,97,51,79,100,44,34,55,92,93,70,76,50,11,42,60,78,62,67,18,41,72,45,81,79,33,60,70,66,8,55,22,1,92,97,4,59,36,38,44,54,77,53,63,60,68,48,39,34,56,11,89,53,81,85,2,55,67,51,9,10,85,1,54,83,85,2,53,94,84,50,64,61,63,49,54,19,71,45,57,11,62,85,37,76,89,74,18,40,50,63,29,66,63,91,32,11,55,76,11,92,85,62,6,42,99,73,16,22,95,75,80,40,30,99,41,99,97,98,8,95,52,4,22,78,7,70,76,80,8,69,96,15,16,61,85,43,62,28,37,25,17,13,9,71,5,9,58,3,33,79,24,83,50,4,100,54,32,96,48,65,17,41,63,92,30,73,46,54,18,32,38,3,19,78,97,53,82,6,50,74,57,44,15,11,88,56,25,29,16,55,77,15,94,64,40,47,77,47,5,63,88,71,9,26,12,57,90,40,88,21,24,35,96,11,75,93,65,84,57,62,45,3,17,74,80,39,82,46,53,46,2,32,50,79,74,68,93,70,93,30,83,63,4,13,5,97,15,36,46,32,32,48,71,39,21,30,66,45,54,72,66,79,93,97,67,37,80,34,21,43,61,16,97,76,25,21,47,63,62,62,100,77,61,64,9,95,52,80,32,12,41,20,38,47,56,96,29,6,9,14,17,20,18,73,81,23,53,68,3,71,79,39,62,76,57,36,45,59,4,28,20,16,76,23,19,21,27,19,34,78,19,66,96,92,95,65,88,97,27,99,10,75,16,50,16,26,87,30,83,15,62,7,22,2,99,2,41,39,64,88,85,54,3,19,15,53,99,79,81,58,34,52,11,29,82,80,12,59,44,69,5,14,79,20,4,30,38,36,85,34,24,57,11,49,82,2,53,83,5,79,61,87,96,48,46,30,40,31,100,52,54,76,61,66,80,16,41,50,20,64,77,82,84,36,24}

    {12,10,68,9,38,47,64,17,49,68,68,41,54,23,43,63,52,65,30,60,42,60,54,64,64,65,3,7,53,45,32,57,6,26,22,32,43,51,16,28,15,20,30,21,45,22,35,35,37,36,16,31,9,59,39,66,1,4,6,63,25,2,66,4,29,21,42,10,54,64,47,44,66,32,9,24,58,3,59,67,38,65,28,56,18,60,65,52,46,38,21,8,11,17,57,53,12,1,12,36,26,57,64,38,44,55,7,19,49,12,54,37,9,49,30,18,61,31,15,65,7,18,18,28,47,45,11,13,23,66,38,57,28,68,5,30,65,33,16,35,44,39,2,67,41,30,45,1,67,53,19,13,49,3,55,36,12,1,51,30,35,35,23,28,60,27,47,6,41,64,47,49,64,52,41,39,65,21,14,44,65,18,68,10,27,28,33,48,37,4,55,45,41,28,17,15,21,3,17,54,48,49,26,24,63,46,44,11,57,58,10,47,29,20,39,39,62,24,24,21,43,28,66,18,63,49,23,41,42,67,42,47,28,17,67,32,26,45,45,37,38,68,66,42,6,23,18,59,46,24,64,63,51,45,44,23,33,2,44,27,8,28,65,20,44,12,65,63,5,44,55,6,44,19,12,60,65,10,25,45,49,53,31,31,28,47,30,33,30,48,63,7,59,3,50,24,21,50,59,41,50,42,40,41,27,24,19,29,53,24,28,53,61,28,22,44,20,23,65,51,67,44,49,32,15,61,8,56,39,29,10,2,8,30,48,29,58,55,64,18,50,20,37,29,22,19,58,55,39,12,55,61,17,6,45,16,44,5,34,17,33,5,54,16,25,48,19,59,60,6,27,25,23,64,25,40,11,48,21,48,23,46,63,60,51,53,68,13,54,2,22,18,55,60,40,55,50,5,10,50,47,55,8,61,48,21,51,53,39,46,3,57,27,36,1,41,53,24,29,28,55,64,18,31,7,67,25,20,22,47,38,17,26,18,52,34,61,61,10,61,60,27,5,61,15,16,23,61,15,62,6,56,60,26,26,24,7,6,50,46,23,61,6,13,63,11,22,3,45,39,66,31,7,4,52,29,21,1,52,55,45,2,63,63,4,15,61,54,20,29,58,22,25,18,47,15,20,44,38,31,27,35,26,65,45,68,59,59,37,57,67,1,38,53,15,60,23,54,58,28,52,66,38,68,6,54,12,33,57,39,45,63,19,40,8,46,22,65,44,44,2,57,6,44,59,8,21,50,66,25,19,35,19,61,49,17,3,25,57,38,2,67,15,16,50,56,57,31,31,44,34,54,8,59,17,14,50,42,52,66,65,49,37,8,44,15,62,64,60,36,20,33,18,60,21,33,8,18,32,1,30,44,41,36,39,26,58,60,43,17,39,17,68,8,57,14,20,53,12,10,44,29,47,14,6,17,68,64,45,63,66,20,32,27,63,18,8,35,44,68,37,37,53,32,29,31,6,23,11,29,15,14,30,3,3,7,41,19,67,15,45,13,17,11,33,35,31,57,14,32,23,52,39,68,14,4,40,46,2,31,49,35,47,4,21,47,63,66,5,62,33,44,61,16,28,25,24,31,48,64,68,7,22,20,45,48,38,29,27,30,32,60,25,33,60,57,23,47,22,1,61,42,32,63,25,63,12,46,26,15,30,60,41,49,48,53,45,15,45,54,9,3,65,48,1,66,35,49,2,29,54,23,49,22,6,5,11,53,39,24,4,35,42,33,40,21,41,5,41,46,6,16,34,38,36,19,64,56,60,67,66,35,58,32,57,50,16,34,47,20,64,54,65,3,48,21,50,52,39,26,18,16,60,59,68,19,58,2,57,46,15,27,45,21,41,20,62,58,43,31,10,31,6,33,1,3,8,13,5,37,35,19,60,44,44,33,27,26,35,37,16,44,20,49,45,40,45,7,53,45,59,46,8,41,53,13,65,10,63,56,4,36,37,61,15,13,59,17,42,55,41,58,1,11,18,44,66,41,18,2,49,17,60,18,41,24,28,24,4,33,61,58,8,7,25,34,60,53,24,50,53,33,40,68,22,21,55,53,44,16,47,42,54,66,43,59,11,68,68,55,7,61,49,1,28,37,49,12,54,23,13,16,33,45,21,55,42,10,31,5,47,35,58,52,34,66,2,3,24,66,24,45,38,42,31,39,54,39,13,56,1,30,43,18,29,47,27,2,1,35,17,23,9,22,17,48,47,67,3,63,30,48,35,37,7,4,20,8,8,16,14,30,53,16,35,20,12,55,53,34,64,61,38,10,34,29,5,37,53,22,17,9,22,41,36,67,23,57,37,30,45,1,23,38,49,35,52,58,17,27,38,59,60,44,12,58,21,41,42,48,4,9,24,61,48,23,23,9,48,11,60,56,67,11,51,4,34,9,11,52,28,25,6,16,39,32,50,67,6,14,60,66,30,60,17,32,38,33,1,44,53,26,54,28,55,21,1,6,32,44,30,43,18,56,18,25,20,2,21,53,26,59,35,31,20,12,7,55,56,10,11,60,48,52,23,2,24,22,8,23,55,12,40,47,3,67,8,59,31,1,13,5,14,33,63,4,44,48,54,29,21,12,50,25,60,44,10,2,57,28,51,39,53,37,21,52,47,21,47,56,32,14,9,25,42,27,46,4,42,37,42,35,60,22,59,30,67,46,44,43,11,31,53,19,14,48,65,40,10,68,4,37,56,3,41,10,43,63,9,64,65,42,13,32,66,57,9,12,12,31,34,17,65,43,2,52,22,21,30,21,64,40,46,46,31,16,29,33,24,5,24,42,8,36,41,26,11,17,2,41,38,22,29,21,59,18,22,23,53,41,44,16,67,58,66,33,22,50,47,59,20,35,16,46,18,34,60,5,14,30,42,6,60,27,9,11,66,62,48,56,61,41,62,64,44,3,9,27,16,64,53,22,4,54,60,7,53,45,43,10,12,58,36,5,39,65,36,21,41,51,2,19,18,31,57,30,5,16,18,54,67,10,53,47,13,57,19,3,61,39,65,29,63,7,8,64,60,67,20,58,22,10,44,3,31,3,23,53,50,3,43,10,46,16,6,17,23,45,11,4,37,65,45,43,50,53,66,18,26,67,34,14,11,34,30,61,8,63,64,54,17,33,21,15,22,41,18,39,37,24,12,23,42,47,44,15,21,27,40,12,50,5,49,6,9,27,10,45,13,28,25,9,29,14,64,46,44,25,10,39,66,22,16,30,19,10,42,39,63,53,22,6,38,17,11,49,67,62,56,56,33,1,16,36,42,55,60,62,19,59,13,57,49,48,15,6,47,40,63,29,61,37,40,40,50,2,13,15,13,16,40,44,32,67,17,22,17,42,35,2,66,17,10,19,66,15,54,23,59,3,59,29,15,63,25,46,60,17,5,30,16,35,49,20,19,21,23,17,45,37,53,17,21,35,54,60,23,67,43,61,59,14,66,8,38,54,55,9,66,8,67,56,5,67,59,30,68,52,23,29,8,16,6,25,34,45,14,59,37,60,49,55,13,52,54,4,28,63,19,16,30,36,12,47,59,18,37,63,13,22,49,46,14,34,20,41,30,10,67,66,17,67,5,15,30,61,51,14,37,41,37,47,19,46,36,42,4,1,66,54,48,55,44,3,23,2,9,47,9,41,63,6,15,16,40,42,14,2,22,41,48,24,11,54,42,57,15,15,38,53,1,35,48,49,21,37,37,14,50,7,14,49,61,3,43,35,14,8,18,56,34,17,37,1,18,60,24,31,55,7,18,3,35,35,62,31,26,11,41,26,31,47,58,36,61,52,53,54,18,5,64,31,29,16,52,68,34,67,10,34,24,4,57,44,51,57,12,43,65,15,22,13,68,30,54,53,32,35,62,46,13,2,55,9,21,14,44,60,13,55,48,63,67,34,43,25,16,17,18,47,30,57,7,20,48,36,51,46,16,38,26,4,25,51,38,56,45,63,46,8,55,57,9,44,41,16,2,50,52,25,56,61,67,45,51,18,8,43,66,55,59,66,65,10,17,42,13,20,43,16,33,11,49,57,52,33,60,27,62,14,40,18,53,23,66,1,35,49,60,36,6,21,7,50,35,47,55,18,25,24,50,14,4,47,6,35,4,38,33,43,27,29,2,8,53,28,52,4,31,54,49,56,13,28,10,3,63,31,11,32,9,24,53,34,11,14,5,29,60,54,37,41,55,63,13,18,65,27,59,25,67,53,60,4,17,68,19,65,7,62,27,11,55,67,68,2,1,51,23,12,60,57,30,46,3,61,68,27,5,24,10,46,45,2,42,1,42,47,47,10,30,17,56,63,8,16,36,60,21,1,49,58,22,3,50,62,62,24,30,7,47,19,27,64,18,8,4,18,61,64,43,5,31,43,18,37,42,46,68,31,17,42,13,47,67,57,31,15,2,29,8,40,51,32,7,42,8,21,21,64,6,34,52,17,39,42,53,60,22,68,39,58,10,39,1,2,26,17,35,59,51}

    {67,43,25,11,40,8,43,10,49,59,58,11,49,60,24,61,33,67,47,48,68,35,1,14,20,30,17,53,36,14,28,47,26,63,57,26,13,44,12,28,36,52,15,46,4,47,56,21,50,33,47,11,8,11,35,5,42,16,21,32,49,40,59,40,20,30,63,12,60,14,3,20,44,62,19,62,18,65,6,2,35,14,17,60,33,63,13,21,1,6,9,13,15,40,14,1,58,20,28,59,5,61,57,53,52,60,29,26,14,62,17,5,6,1,63,64,24,48,59,13,9,68,30,14,36,33,53,59,10,45,56,53,42,25,1,23,46,41,40,58,47,22,32,1,57,64,55,59,53,61,22,60,53,28,39,4,15,66,32,42,12,1,38,7,8,48,49,58,56,48,62,24,24,21,27,63,33,40,42,37,4,16,21,32,37,51,11,38,68,7,7,22,13,48,6,67,36,24,55,48,12,3,37,24,48,27,55,46,28,47,13,35,31,65,43,19,54,68,11,13,56,34,21,1,10,41,36,66,60,28,12,21,20,33,51,14,41,64,29,26,23,68,8,31,4,12,47,30,56,48,67,41,37,59,32,19,34,9,26,42,24,15,24,46,44,1,18,57,51,42,5,6,15,30,43,1,68,42,4,41,28,7,5,32,33,41,65,10,15,37,43,24,42,4,17,26,11,1,60,48,44,23,4,55,24,31,51,49,55,28,36,4,29,40,37,40,37,59,45,12,4,24,67,44,21,15,21,49,9,55,19,67,41,20,54,50,55,39,49,21,14,21,17,65,54,27,12,9,24,50,49,53,3,8,26,27,60,18,51,7,17,32,10,1,15,22,45,47,3,25,46,15,61,4,11,60,54,32,43,19,56,46,38,61,20,28,57,33,42,36,9,51,62,63,36,2,61,29,12,59,55,35,34,21,56,2,46,45,25,50,65,3,55,16,7,50,66,8,31,54,67,63,16,40,57,12,25,3,49,49,19,58,20,11,3,64,39,14,45,26,65,31,18,18,12,3,19,1,43,57,43,13,6,67,4,30,61,64,28,6,40,28,5,51,34,40,33,12,2,14,39,46,25,66,46,1,67,1,52,12,45,48,50,4,38,5,10,26,10,26,19,44,41,13,42,54,61,2,67,20,20,53,65,18,1,38,44,8,65,54,4,6,4,23,52,56,39,66,10,32,15,15,55,26,40,57,6,66,20,55,44,41,64,29,4,51,25,48,22,1,19,31,41,60,35,8,27,58,9,40,47,43,58,2,45,68,3,68,9,68,2,49,42,25,19,18,56,46,45,30,21,55,36,35,28,66,39,44,25,44,41,5,23,56,51,52,10,38,14,22,36,45,20,41,34,9,14,17,5,53,57,7,44,38,64,5,51,37,17,35,59,12,38,2,68,31,45,39,22,55,28,53,1,9,57,20,6,14,67,34,63,37,51,14,1,62,59,25,9,2,51,19,28,35,54,1,30,4,46,61,25,66,50,17,32,58,56,45,9,27,34,67,34,2,44,44,15,59,37,26,41,2,32,48,59,51,44,25,8,13,56,49,9,41,54,23,18,27,66,67,43,5,45,30,56,58,55,10,60,62,4,60,18,30,21,19,48,5,33,17,14,42,63,11,1,62,65,36,57,50,66,43,12,27,5,32,7,33,41,63,30,16,38,42,62,49,10,65,35,15,42,58,68,47,44,16,4,3,38,29,46,51,5,59,41,56,63,68,4,59,40,40,25,31,54,50,13,38,42,7,58,3,15,63,23,4,56,68,17,65,46,29,23,61,4,68,62,57,15,58,45,6,68,27,41,19,57,38,49,47,10,53,16,32,48,45,39,39,4,50,13,13,57,35,62,17,21,50,30,3,13,51,6,34,35,41,22,47,1,35,46,4,13,18,29,39,18,37,35,27,36,41,58,14,18,23,39,45,17,55,17,23,63,24,62,68,8,14,60,14,14,22,33,5,54,48,63,64,43,55,54,36,8,28,53,52,8,39,35,20,66,57,53,31,23,51,32,36,24,57,2,34,21,35,58,22,20,14,58,27,12,54,30,23,43,45,21,41,13,36,2,22,5,31,54,51,20,5,43,63,53,65,27,10,64,6,2,22,26,3,60,56,11,58,43,41,36,60,19,30,50,61,62,63,62,44,32,10,7,25,48,63,43,19,13,53,35,34,18,47,26,7,38,18,22,21,58,39,43,10,54,10,37,65,7,33,61,30,58,31,8,52,44,28,58,31,14,25,24,61,43,32,50,48,58,27,43,50,8,31,16,63,24,12,27,55,35,6,11,47,35,57,48,63,30,4,15,2,1,52,18,36,64,49,50,36,63,6,26,32,41,4,33,7,15,18,38,2,13,18,33,16,32,41,29,42,60,3,57,39,28,40,16,33,3}

    Returns: 73527

  42. 70

    {93,13,33,47,45,39,67,87,29,93,39,73,48,67,92,40,27,26,19,37,66,40,10,83,12,20,26,46,67,34,48,91,36,36,32,94,17,62,31,15,41,26,100,13,41,64,63,58,95,47,43,97,3,36,81,32,90,10,30,50,99,50,23,60,15,52,91,76,98,71,3,36,47,22,37,84,77,76,5,52,29,29,8,80,34,43,16,60,23,1,95,86,84,49,87,30,49,33,18,94,61,99,69,14,61,43,38,43,79,84,68,36,23,49,53,81,39,28,33,58,68,44,97,65,80,78,43,5,67,38,36,74,96,48,77,39,45,73,43,79,88,19,84,12,3,52,87,76,16,55,70,56,53,26,69,59,58,92,82,66,61,36,94,28,7,97,64,99,62,2,64,31,64,24,90,1,92,97,10,83,88,1,17,8,45,67,36,28,26,21,23,16,53,66,9,33,49,31,89,99,55,34,28,16,25,43,72,10,92,21,70,60,47,100,72,22,42,39,73,64,77,75,66,65,3,10,25,32,69,1,3,84,56,23,51,95,4,34,45,24,96,27,30,21,21,12,12,99,92,16,83,68,54,70,86,23,25,96,3,69,94,3,42,4,15,30,27,57,29,6,43,14,29,2,78,77,58,20,8,6,35,45,8,46,52,72,34,35,42,31,35,40,25,83,39,94,55,12,52,31,41,79,46,83,7,59,45,5,45,44,45,73,71,43,59,34,35,80,82,26,59,50,84,75,71,71,71,80,51,27,68,21,16,77,29,24,22,1,64,37,50,88,80,10,55,19,73,44,85,19,74,82,62,95,42,40,96,38,20,19,42,69,28,70,33,37,31,14,59,10,37,83,80,7,21,53,14,20,97,43,72,71,18,48,40,21,25,70,1,72,70,46,53,33,98,40,55,45,54,26,26,68,44,68,78,3,29,38,88,4,94,46,53,20,94,58,39,19,81,23,24,92,20,68,57,91,72,30,33,3,88,68,24,91,63,99,34,41,51,91,1,37,75,42,86,31,86,86,33,74,32,59,66,72,24,64,52,7,17,7,48,13,56,46,25,2,24,65,26,97,68,54,53,15,55,43,84,48,49,20,24,40,34,42,48,4,62,21,70,71,43,70,63,94,87,57,92,14,84,43,85,21,80,25,39,11,38,54,83,20,89,67,66,47,71,77,84,74,29,94,3,56,98,33,8,12,17,1,8,52,28,50,84,36,7,32,88,46,23,78,37,51,74,78,15,25,60,59,86,71,51,84,62,6,89,41,92,50,7,17,44,91,94,4,55,57,16,29,37,87,33,34,41,73,71,100,3,59,98,53,90,18,29,49,57,41,22,100,34,94,94,53,46,22,26,20,27,28,81,13,22,68,77,8,77,51,5,53,39,68,20,2,10,26,1,38,2,97,78,42,20,41,63,51,39,42,46,25,92,100,56,71,91,39,29,23,84,2,46,29,29,8,88,53,13,82,39,45,45,80,2,11,92,42,44,63,74,71,62,2,96,19,82,52,56,36,37,45,55,51,14,25,31,97,6,17,25,47,61,95,24,53,27,71,51,63,35,89,82,92,84,56,48,45,16,60,54,77,53,99,60,1,23,86,23,76,58,41,54,92,74,54,49,49,14,46,95,71,51,44,66,19,84,7,71,100,84,76,42,88,92,20,88,37,32,89,8,77,71,21,47,55,43,54,7,96,26,79,73,48,96,40,10,82,65,6,54,32,59,3,17,46,14,30,21,47,37,43,36,34,2,26,64,20,79,60,89,88,21,16,74,29,59,11,15,49,69,80,54,12,68,36,58,52,28,31,31,79,78,11,53,9,54,55,83,22,56,47,52,61,71,22,33,64,39,43,65,64,95,95,1,52,20,58,93,32,29,31,100,6,77,68,74,43,13,19,24,85,53,10,94,5,7,12,65,4,94,41,10,12,55,55,44,46,58,60,90,50,54,93,64,37,92,74,85,38,11,39,5,71,24,98,61,100,88,16,21,18,9,19,77,10,49,12,14,45,40,86,84,65,58,11,88,33,11,77,68,58,16,85,19,64,84,69,81,74,99,62,79,24,98,17,12,26,64,12,15,46,43,5,7,95,32,1,62,63,56,38,47,56,42,22,33,78,26,74,15,87,65,89,44,60,25,31,36,14,4,61,38,11,90,4,68,21,26,32,17,76,19,85,63,30,93,96,20,86,67,69,39,42,100,82,88,63,53,88,37,83,36,21,99,14,7,11,40,1,8,72,77,3,26,87,75,99,19,35,8,79,12,39,50,19,76,35,4,87,14,29,77,91,69,21,7,6,99,39,76,25,51,60,29,81,17,60,84,10,12,84,61,43,44,67,98,32,15,32,95,39,11,22,32,52,52,5,55,12,57,56,59,81,35,5,18,3,61,89,81,60,13,50,76,71,42,6,39,19,12,64,78,43,36,7,52,85,5,94,29,48,84,82,65,56,79,14,66,94,87,81,24,53,56,94,17,89,22,95,16,46,79,63,20,25,22,55,50,77,65,85,56,66,51,6,57,54,2,33,23,9,48,43,33,81,26,26,62,15,6,89,66,43,10,61,95,26,12,58,12,72,64,62,61,22,76,36,2,47,3,27,36,62,4,83,17,21,50,40,82,41,8,16,50,66,84,77,71,44,61,45,33,88,28,40,63,68,27,68,18,45,66,74,44,72,33,35,26,66,13,65,46,38,56,61,8,78,76,32,14,89,53,21,83,59,7,36,87,78,51,78,38,92,97,92,1,40,66,15,18,82,90,51,46,88,31,73,40,60,10,78,27,77,56,30,88,99,21,56,4,81,30,47,4,90,77,86,20,49,47,91,67,78,16,67,49,39,35,100,10,46,20,64,4,40,89,42,46,92,39,14,96,39,56,4,88,45,44,20,48,91,20,93,81,19,70,33,76,90,78,46,81,83,52,21,15,65,21,74,63,10,80,77,50,38,40,96,31,39,5,20,58,11,36,31,52,45,89,78,3,91,1,50,65,12,79,73,18,54,95,21,14,53,35,29,64,4,37,86,11,27,62,91,73,90,92,53,34,31,10,16,91,82,14,1,7,82,47,72,87,13,75,26,30,15,23,65,96,50,2,69,41,59,72,72,10,39,88,18,39,61,27,51,35,42,61,66,90,80,46,60,76,66,20,67,10,72,65,8,25,46,68,24,83,27,30,6,54,29,14,1,62,34,86,8,43,77,15,50,65,96,3,55,99,91,79,70,58,2,83,48,40,8,51,76,91,36,76,38,51,35,60,17,32,91,94,90,40,21,93,75,8,2,2,62,40,82,16,52,44,22,28,17,57,21,79,100,80,3,24,41,33,16,52,73,84,67,58,52,92,70,96,95,97,64,27,9,88,38,59,80,94,56,31,74,56,83,44,34,21,78,23,65,59,16,10,44,58,73,50,10,63,39,78,23,23,78,37,8,94,76,67,64,96,24,76,24,52,69,84,31,55,91,37,4,92,84,35,78,27,94,95,72,88,41,36,90,14,25,54,40,54,67,35,70,42,62,6,64,78,31,85,22,38,23,52,5,89,28,20,20,42,22,82,88,77,95,27,31,97,59,86,68,19,99,12,58,87,55,43,44,3,15,9,20,12,3,10,82,30,88,83,62,9,6,6,34,44,57,9,88,75,18,73,73,31,65,51,50,38,11,44,66,73,100,53,34,93,33,64,69,56,38,28,24,88,32,29,15,57,75,9,47,32,53,52,12,76,75,80,13,63,45,74,96,75,75,21,14,91,32,62,96,46,11,33,53,16,26,68,94,19,74,13,95,67,92,56,7,72,97,1,79,31,99,7,9,24,26,34,28,57,8,52,80,10,46,56,49,58,81,11,50,65,59,81,2,46,24,34,56,78,13,13,81,70,82,52,55,85,58,54,51,42,55,15,57,12,68,71,19,78,12,53,54,95,46,93,28,84,6,89,67,25,13,58,17,58,34,6,53,4,40,44,88,1,78,25,24,15,84,33,51,45,31,60,74,21,21,11,58,51,100,58,20,75,3,96,42,33,18,27,6,82,70,40,18,2,36,25,17,52,9,57,18,49,57,58,10,52,20,75,60,1,30,96,56,8,45,2,78,28,35,36,45,57,73,60,66,75,16,41,6,26,18,31,3,57,35,44,42,86,35,13,65,30,70,4,83,26,19,87,58,34,67,43,96,24,16,33,100,77,29,8,20,24,19,53,52,84,98,28,13,49,46,91,80,55,50,68,13,92,13,49,85,91,39,98,71,73,56,50,46,85,34,32,99,70,55,88,50,93,37,96,35,38,76,70,14,19,93,33,28,82,30,42,25,92,13,67,88,55,3,44,38,17,82,69,61,93,25,55,22,20,13,93,16,4,75,7,44,23,72,93,59,75,31,76,21,25,2,33,9,70,22,95,88,70,90,34,4,22,42,37,61,20,76,44,16,51,24,65,89,80,98,16,3,59,94,42,27,36,11,19,13,85,43,60,79,95,39,30,31,11,97,16,79,48,27}

    {61,20,46,47,38,19,69,17,59,39,45,3,39,57,7,2,30,58,50,10,17,61,57,64,8,67,58,50,24,58,37,64,27,58,50,47,4,13,59,61,45,50,16,46,20,61,63,63,66,19,48,42,57,19,60,30,40,55,69,37,55,54,70,13,57,51,70,62,37,53,51,43,3,38,35,26,52,22,4,32,20,11,55,58,27,16,43,65,62,57,41,60,62,64,20,14,56,12,69,2,39,23,60,29,36,45,42,68,15,16,31,37,69,39,54,59,30,2,29,28,65,39,12,39,68,20,13,10,10,22,41,14,29,46,7,44,68,38,61,23,49,39,22,45,4,55,40,68,27,12,14,5,57,34,25,55,61,33,64,5,32,29,44,32,46,10,2,14,33,24,42,33,40,69,29,63,50,40,61,46,31,63,54,59,53,54,35,20,53,39,27,69,7,3,47,42,6,34,18,30,11,36,49,1,40,7,29,15,30,36,7,25,40,57,11,2,10,17,46,65,18,32,45,4,16,51,1,18,64,35,66,46,32,6,65,52,5,54,31,48,11,50,35,50,57,65,26,24,56,48,58,31,59,29,47,13,14,44,67,15,11,8,46,34,35,66,10,39,36,55,4,15,61,50,40,2,58,52,20,6,43,17,26,26,25,52,22,54,20,51,26,66,22,60,27,5,62,30,63,35,10,54,18,32,20,48,50,62,48,60,58,44,23,15,53,27,67,61,41,55,29,70,28,31,21,17,61,48,38,22,22,15,1,18,63,70,63,58,8,14,63,37,30,12,45,3,37,52,9,42,9,69,32,2,40,19,37,56,8,44,69,52,11,38,12,14,24,48,16,6,65,21,50,49,47,43,34,35,34,5,8,45,67,36,34,57,70,62,33,68,20,20,52,51,8,26,12,33,19,26,25,70,44,29,47,16,18,62,46,14,11,24,32,22,32,45,33,54,66,16,12,40,45,31,3,50,34,57,54,62,59,53,44,66,49,25,24,19,10,23,40,24,37,10,62,45,45,56,13,5,39,33,18,21,67,69,54,28,66,38,67,17,1,41,50,36,35,32,30,1,1,36,27,50,69,10,30,42,43,61,19,11,68,10,6,41,70,42,48,64,45,32,7,55,17,2,60,14,31,53,2,46,65,6,19,61,37,62,48,40,23,52,46,39,35,29,9,48,27,68,56,10,39,34,35,55,18,25,25,24,27,30,13,41,21,6,5,47,18,54,41,15,42,4,15,66,12,46,46,69,40,8,12,24,4,57,6,34,17,59,25,18,19,37,44,58,2,27,1,67,4,23,4,28,22,18,44,30,41,20,47,41,18,66,54,68,55,11,27,16,12,63,58,50,3,58,63,54,64,28,59,44,38,46,19,35,67,59,33,4,57,54,3,9,57,7,49,62,47,32,55,56,31,39,60,39,54,7,41,7,30,3,12,55,24,17,65,64,22,68,50,49,54,1,66,64,17,7,47,41,25,53,66,9,52,1,10,44,6,34,59,2,38,70,66,19,32,65,62,59,35,11,15,1,48,61,35,12,5,46,45,65,48,18,41,14,13,43,51,1,54,18,17,51,69,12,27,28,6,12,67,18,12,26,50,58,65,68,51,48,56,17,57,64,45,55,32,6,43,70,4,26,52,48,54,2,44,23,70,64,35,38,7,17,5,20,64,40,68,55,47,41,25,70,58,59,25,25,38,31,22,36,14,47,9,19,10,27,11,14,61,16,19,34,50,32,51,55,62,14,48,66,58,32,66,53,11,45,34,4,39,10,57,57,26,4,48,11,21,7,5,43,23,68,54,20,18,63,30,57,47,11,64,55,56,46,7,31,61,37,54,16,46,6,70,61,48,8,34,58,19,51,54,69,46,43,60,27,6,66,36,27,15,48,10,13,19,63,69,46,37,55,65,53,29,31,38,2,12,12,54,5,10,58,5,1,17,40,58,56,39,44,62,56,32,30,46,43,6,4,68,33,29,67,46,52,6,68,31,33,2,5,8,8,28,64,58,50,60,23,46,65,30,8,44,18,50,12,49,32,50,21,28,42,66,10,3,28,4,48,67,61,10,5,58,10,29,42,62,41,18,1,30,40,26,34,13,45,26,61,3,40,64,24,46,48,28,46,8,10,38,53,49,18,57,67,43,62,20,9,20,5,70,8,4,8,66,56,31,33,49,4,56,5,45,9,36,67,60,61,48,69,45,46,69,18,58,38,32,44,60,2,44,23,33,28,20,5,38,19,20,17,70,17,25,32,13,37,44,68,28,23,31,8,34,37,34,29,45,22,53,27,1,8,58,12,19,16,59,58,64,61,27,69,3,59,52,61,45,39,26,57,36,4,19,61,53,58,4,61,65,24,55,23,15,44,1,18,52,1,64,47,45,3,7,69,43,9,8,48,38,41,63,27,60,19,60,54,29,17,64,22,26,33,18,35,18,52,47,43,56,67,64,69,2,51,55,58,34,42,34,22,53,69,30,1,9,10,39,67,46,56,65,6,41,49,21,48,28,17,10,24,3,2,25,54,16,47,18,52,35,35,59,19,48,66,59,20,25,70,27,53,12,21,20,45,32,66,37,49,40,34,20,39,69,12,9,30,41,60,41,2,66,40,25,34,48,39,30,12,18,41,31,43,42,64,28,10,44,60,38,52,64,42,25,45,51,61,67,51,15,24,69,66,15,15,64,61,47,8,69,23,67,52,35,14,17,6,64,28,16,5,34,9,44,68,18,49,49,57,5,5,60,21,11,47,49,45,63,9,8,50,7,52,69,19,54,54,6,48,13,2,64,42,69,15,69,62,64,19,55,63,15,69,2,11,53,43,63,39,16,57,10,8,52,35,29,68,3,57,69,30,58,61,8,35,22,42,41,37,70,23,43,33,58,62,22,18,7,66,56,62,42,47,70,52,70,69,24,8,2,64,12,32,44,44,38,57,52,37,66,14,58,32,11,57,35,5,70,39,13,26,37,57,5,10,45,7,15,10,37,66,64,61,66,19,44,54,68,50,18,45,18,49,41,25,35,62,51,65,65,43,67,12,17,8,52,17,55,18,16,7,30,41,15,8,49,59,36,49,14,68,27,58,32,10,47,39,69,20,59,39,41,65,53,33,15,50,61,43,63,56,69,70,23,14,60,19,8,3,15,12,25,40,28,36,35,56,34,25,34,35,15,27,32,29,5,56,21,29,7,54,54,54,21,9,57,16,39,6,46,18,57,64,27,48,49,2,62,26,20,6,66,29,51,16,46,10,41,60,33,1,69,53,6,9,64,16,33,10,22,38,19,21,43,41,57,58,32,20,31,29,28,39,21,69,37,40,51,30,23,35,55,43,55,64,25,15,58,8,55,13,23,15,27,36,37,61,51,19,35,56,30,3,44,55,31,20,63,70,57,3,17,10,34,5,33,66,8,46,60,33,29,38,7,64,11,15,49,68,8,50,36,56,52,64,68,66,43,51,39,1,64,50,64,10,26,64,70,14,21,31,28,2,41,50,46,40,63,21,28,11,19,15,28,48,37,29,36,42,68,37,5,70,42,68,38,50,31,20,60,21,65,13,36,58,56,6,20,23,60,9,5,56,43,26,63,52,65,5,45,14,23,31,42,32,56,6,12,60,56,23,58,65,2,57,19,60,53,55,16,66,10,50,52,27,49,52,39,4,9,24,30,52,25,56,56,39,62,26,18,49,53,48,69,61,54,19,14,64,43,60,63,30,2,3,49,4,32,35,58,48,45,35,26,57,56,46,8,61,5,49,21,1,17,21,1,25,63,49,14,46,27,38,9,62,23,56,16,12,49,26,35,10,61,60,20,51,5,25,13,23,1,17,67,2,28,32,49,41,31,50,39,66,43,67,54,46,15,14,59,20,64,57,22,5,63,16,33,6,8,16,40,36,43,37,13,26,37,9,52,41,37,69,15,34,26,61,41,50,9,9,42,17,14,28,63,9,35,44,14,28,32,39,49,13,14,49,56,32,10,32,50,18,45,9,30,45,32,64,19,19,6,40,51,43,43,39,62,20,32,16,23,10,34,62,10,68,56,68,12,67,30,42,28,49,70,47,29,39,54,63,57,43,3,16,37,26,44,30,23,10,5,39,21,64,5,30,68,28,54,35,18,42,59,53,22,50,14,35,41,29,7,26,6,23,52,30,29,55,63,7,26,49,69,67,17,69,26,57,39,10,49,22,57,15,70,33,29,50,13,23,50,12,70,39,50,40,43,15,25,37,17,68,6,19,14,19,34,62,64,9,35,38,31,42,65,68,54,12,15,50,25,45,38,19,2,32,4,55,1,58,34,12,70,32,48,46,29,59,12,36,62,6,59,23,33,19,51,69,52,70,68,48,2,48,43,57,12,9,49,33,52,18,64,56,27,63,64,43,32,46,15,19,53,39,37,43,40,46,25,70,56,56,20,5,5,56,21,63,39,29,63,32,50,14,64,61,29,52,45,37,15,60,36,40,2,20,10,14,39,39,19,38,1,34}

    {47,59,7,5,11,26,50,35,8,68,11,17,33,53,69,58,23,38,29,21,37,26,61,56,1,35,38,50,5,55,37,26,44,22,10,10,49,5,9,70,8,64,58,55,46,9,57,47,51,46,5,64,67,65,70,31,62,70,28,31,44,17,56,5,56,38,11,12,7,61,57,62,16,52,56,29,7,50,36,64,44,43,39,47,40,61,66,18,41,57,67,49,38,56,41,2,22,20,20,30,57,26,43,16,34,18,28,8,2,67,50,45,55,7,7,3,33,16,22,29,69,50,3,38,34,13,64,67,23,67,13,69,54,37,61,35,37,50,57,23,30,39,50,3,57,38,70,10,58,66,69,67,47,40,59,17,55,29,5,24,11,53,60,26,11,62,40,47,19,15,38,42,22,52,18,45,23,20,50,23,65,17,29,9,41,53,22,4,63,20,30,43,41,8,52,21,42,68,51,41,51,1,69,31,38,54,24,49,26,17,70,16,20,11,3,52,8,47,1,19,17,67,34,50,25,23,70,56,30,2,65,33,15,27,26,30,41,49,36,55,10,41,25,57,15,25,6,65,21,45,8,26,14,61,10,61,7,36,13,31,23,64,17,58,42,36,59,41,57,26,13,53,64,62,54,64,34,16,35,6,23,4,45,41,29,60,18,43,19,50,66,68,12,27,24,36,6,54,67,2,56,48,28,63,14,23,44,60,22,14,16,7,21,43,1,41,22,36,34,3,39,28,14,3,5,30,56,6,67,10,13,54,1,8,45,19,17,19,68,29,40,22,46,57,18,4,56,37,64,60,19,25,30,2,32,22,55,6,54,25,53,1,65,62,52,32,10,30,46,3,62,69,21,1,28,52,25,63,51,19,56,16,12,46,63,5,24,55,20,18,56,16,49,9,42,63,17,58,14,16,28,69,17,69,24,19,17,69,34,43,68,60,34,26,29,65,45,4,33,19,40,3,67,59,16,54,69,22,9,68,61,8,67,52,48,44,30,61,26,35,62,69,46,20,61,60,46,24,21,9,36,18,59,4,15,59,64,22,69,42,3,49,68,25,50,56,54,50,18,69,64,39,16,45,43,33,5,48,6,52,69,38,38,68,53,16,70,70,42,63,28,15,40,48,9,59,55,18,31,65,8,70,44,27,62,67,31,37,30,15,47,33,14,53,40,47,6,47,9,4,55,31,10,1,28,34,20,61,54,63,53,16,33,42,61,17,26,13,48,15,55,19,52,26,56,32,30,11,36,67,61,55,14,57,40,61,47,55,24,27,10,31,57,35,1,4,62,36,9,52,33,50,5,35,55,5,26,4,55,46,55,34,21,25,51,27,14,37,52,63,9,22,34,10,69,39,60,57,19,18,36,59,10,44,70,6,31,31,55,22,40,58,70,14,65,61,37,49,39,51,1,37,33,15,26,36,24,17,70,25,48,62,3,25,29,13,13,37,63,35,67,19,31,5,18,42,41,20,27,34,19,41,5,56,53,18,9,28,26,62,5,14,61,9,66,65,36,55,24,60,25,21,69,28,49,8,29,58,34,28,25,60,41,14,13,33,32,18,13,19,66,3,18,18,61,17,58,19,55,47,63,68,59,22,29,4,22,53,22,14,43,20,45,56,62,35,61,36,12,12,25,54,34,24,39,30,34,33,53,58,28,1,50,21,20,60,59,7,20,1,70,62,22,56,49,65,45,28,60,55,51,48,48,33,31,48,17,24,7,53,31,43,29,5,12,48,56,69,47,59,15,23,26,57,13,33,46,28,39,11,15,8,47,10,17,65,2,51,40,39,39,50,57,19,2,51,28,34,16,26,16,12,8,14,4,65,11,39,62,15,65,69,54,36,60,48,29,1,7,36,54,52,32,59,49,33,3,16,57,70,66,50,4,2,37,65,30,40,63,28,64,46,22,62,54,50,29,47,20,26,31,28,16,26,46,67,59,38,53,12,69,5,62,12,33,70,57,53,1,16,24,69,40,68,29,60,55,62,66,19,26,19,10,19,1,30,65,67,13,16,57,52,36,68,63,15,27,21,53,5,6,33,44,57,20,33,17,12,60,50,62,32,35,46,27,67,38,41,3,51,26,61,44,16,33,39,16,38,26,63,27,3,32,9,13,70,55,44,30,3,65,40,16,3,4,27,22,61,41,32,64,28,30,52,56,51,58,46,23,32,67,65,4,25,45,52,6,38,67,45,68,32,31,7,32,13,27,55,21,3,31,14,12,53,60,44,65,12,20,46,67,26,17,27,52,25,10,19,46,67,67,9,6,25,25,66,45,67,34,34,26,13,33,21,57,70,57,50,40,40,20,31,28,36,45,1,48,20,5,3,24,8,41,7,21,66,13,53,66,21,69,28,65,13,54,49,18,50,47,46,43,33,22,34,7,4,68,34,13,60,1,63,57,23,65,12,64,22,34,30,18,9,17,3,46,56,12,5,37,1,49,67,49,54,27,19,26,20,57,57,46,3,5,53,23,48,16,9,43,25,33,47,8,55,64,6,57,36,28,29,55,6,8,37,70,41,63,63,37,15,1,69,2,14,19,11,25,44,1,38,24,57,67,50,63,43,35,7,42,57,46,61,70,58,25,43,19,46,42,68,8,21,35,66,15,19,7,23,30,53,32,55,33,49,33,22,15,66,27,47,64,39,14,54,70,62,35,57,8,49,64,51,33,34,29,49,3,31,26,23,15,2,70,22,15,65,48,5,43,12,1,42,18,45,30,70,49,54,7,36,33,16,32,33,42,34,23,53,21,59,26,34,67,66,21,4,12,8,6,59,35,14,19,35,1,2,4,37,37,31,9,29,28,37,56,8,5,21,62,56,4,51,6,10,69,19,16,16,24,52,61,43,19,4,17,41,59,54,39,19,17,63,18,29,5,62,37,11,34,69,40,40,16,47,66,37,49,54,25,15,14,38,7,28,55,59,6,48,28,42,66,10,59,15,25,53,7,8,37,53,62,47,57,5,31,11,36,3,38,27,38,62,6,7,7,42,1,57,20,40,19,36,49,24,60,52,16,22,69,17,34,9,44,62,16,66,6,31,50,45,34,34,55,2,59,46,8,30,68,59,3,31,17,51,68,68,56,38,43,14,64,41,50,14,29,69,19,12,46,35,8,37,37,36,29,6,53,24,19,50,60,2,68,55,46,60,8,61,64,10,33,47,54,63,9,32,42,3,69,69,23,30,34,10,46,55,25,10,46,34,44,63,37,43,5,24,16,24,23,44,13,30,31,12,29,67,42,7,49,54,7,68,55,69,50,23,62,44,63,7,21,14,48,22,11,9,62,31,63,12,51,66,36,68,43,52,13,16,30,32,17,60,21,41,20,22,63,55,45,44,32,18,2,22,2,46,9,56,63,39,6,52,30,13,19,24,36,40,47,63,9,38,54,32,60,53,3,8,44,53,28,25,51,64,49,32,9,53,15,12,25,3,10,5,11,16,67,67,28,61,51,9,35,2,13,1,27,56,51,60,43,2,34,2,9,33,51,29,46,43,4,3,2,16,3,18,60,36,19,68,48,68,52,36,63,21,16,15,65,41,25,29,40,1,17,54,21,39,41,55,55,45,53,42,37,45,26,8,50,25,20,34,54,49,9,59,50,63,26,23,21,69,24,56,16,22,25,56,8,40,27,57,61,10,59,56,52,45,32,9,28,38,68,2,69,67,12,8,18,7,53,48,39,35,59,19,53,26,34,9,49,25,53,37,25,8,32,4,29,8,64,45,34,9,60,20,62,39,66,51,48,61,41,33,65,15,23,40,23,26,7,25,61,17,4,7,68,18,52,7,16,42,19,17,12,38,11,1,50,24,43,3,24,66,45,54,56,63,27,42,66,38,43,51,54,16,48,34,5,12,37,10,61,35,68,37,21,60,58,22,11,42,69,3,21,14,3,55,3,33,60,6,39,34,53,35,46,31,53,16,24,66,18,21,38,47,39,65,36,29,16,1,27,37,17,28,5,24,24,30,43,49,8,52,29,66,8,40,9,66,3,47,49,60,13,15,44,14,11,68,56,42,50,34,19,16,68,47,52,52,56,3,23,70,48,36,44,52,6,15,31,43,70,17,30,30,51,65,46,31,8,49,10,66,49,33,61,50,29,59,13,44,68,32,64,50,70,13,4,68,64,19,13,31,18,9,43,46,15,8,29,22,1,21,36,31,61,32,15,22,70,1,41,27,30,17,26,34,42,9,24,27,9,28,6,69,18,6,54,34,54,27,33,59,62,7,7,9,50,68,21,16,6,29,19,18,62,18,37,64,23,27,23,16,3,51,13,6,5,45,55,47,35,2,59,65,41,49,54,60,10,30,22,31,3,47,51,14,31,28,55,32,2,69,43,2,50,48,17,60,43,28,2,47,63,58,63,28,41,30,56,29,42,1,14,54,29,17,59,1,11,44,20,46,19,33,27,64,1,1,18,65,70,45,58,70,38,17,41,23,61,3,59,59,16,64,22,18,38,17,35,55,60,20,10,34,35,53,39,68,70,15,33,62,14,19,4,45,1,59,59,36,13,40,9,70,28,56,34,51,17,27,22,28,11,38,3,4,26,9,2,70,34,4,28,3,64,59,6,65,2,62,21,25,32,44,66,25,26,35,20,49,64,13,47,38,53,18,5,35,17,39,29,32,69,30,18,26,52,2,62,29,64,20,16,56,33,52,26,7,26,1,34,30,48,39,3,55,2,65,49,12,9,21,54,42,51,32,39,54,39,9,37,19,20,51,50,48,66,3,15,33,54,46,57,22,5,33,33,67,54,1,16,2,47,45,51,70,5,58,70,36,9,3,54,47,63,6,6,18,39,17,21,20,41,43,68,32,43,69,27,57,20,31,16,24,36,70,60,13,9,22,43,70,5,21,67,44,63,2,45,2,39,57,59,54,13,37,62,37,69,33,43,62,46,27,30,39,63,14,16,43,40,52,6,50,64,33,16,70,14,67,38,48,27,24,16,46,25,41,14,62,14,9,49,44,20,19,51,33,33,6,21,61,56,67,32,32,38,57,61,48,13,13,2,35,45,22,68}

    Returns: 94882

  43. 75

    {66,2,91,16,69,38,81,76,10,55,71,35,22,96,12,25,18,91,84,83,8,5,22,60,26,84,82,32,95,97,23,89,78,94,60,44,47,41,13,80,91,40,30,49,6,92,76,5,69,99,98,52,67,63,46,75,65,93,86,22,47,88,98,96,84,26,46,25,56,58,14,63,59,66,64,21,17,29,42,85,53,90,53,38,99,39,65,91,69,39,75,66,45,95,17,72,61,52,57,73,32,1,31,51,91,67,66,9,84,39,14,95,69,18,82,56,7,39,63,1,63,64,82,47,57,89,80,28,86,22,93,49,19,64,48,51,76,2,21,100,83,91,79,64,38,55,45,30,46,70,38,54,14,83,12,15,48,18,5,28,90,83,10,33,58,9,47,59,71,14,78,42,51,20,82,82,67,6,90,75,30,20,76,73,89,61,27,32,3,46,11,61,27,7,2,31,21,60,95,86,76,10,34,7,7,91,15,90,30,46,60,14,70,84,54,99,46,99,43,50,70,30,21,43,66,37,15,95,52,39,59,17,37,66,57,71,15,77,41,83,75,80,10,21,42,99,64,54,52,57,63,94,22,18,96,36,19,64,77,82,49,15,42,89,76,61,26,19,60,78,34,52,61,34,57,78,63,10,63,40,20,98,30,96,58,65,93,100,82,28,62,25,58,83,50,95,40,33,92,85,58,44,56,44,15,68,54,68,13,62,51,49,76,52,7,29,16,85,49,64,10,40,74,36,97,67,79,12,78,57,79,3,81,45,42,48,16,10,84,93,65,18,73,11,46,18,79,83,18,22,82,29,8,36,59,37,12,51,27,63,48,56,92,93,17,48,29,3,5,20,88,3,50,93,40,56,73,76,84,62,38,47,29,85,57,50,36,4,41,28,33,88,41,29,64,69,49,32,93,40,15,80,6,71,44,28,85,13,58,33,66,99,95,78,2,64,61,12,62,49,23,80,42,54,33,9,20,73,60,19,24,36,34,4,56,76,77,73,36,21,23,92,53,6,68,29,66,13,12,80,15,22,17,82,89,85,63,45,69,29,66,32,18,6,86,76,30,17,73,9,18,73,2,48,63,42,46,82,51,92,92,81,5,34,52,29,20,12,38,3,19,30,66,85,98,11,39,13,13,57,12,86,77,87,55,2,33,10,89,84,84,98,91,93,8,11,2,92,23,59,57,7,23,43,30,87,56,95,44,53,38,80,12,87,35,93,8,9,71,75,25,66,43,11,57,42,27,72,85,91,94,44,65,86,40,44,99,81,25,46,85,67,50,87,46,21,62,54,20,45,35,13,66,94,39,71,60,29,77,27,88,3,27,9,30,62,31,75,19,99,75,80,72,96,12,6,77,41,77,5,69,2,42,79,54,40,27,77,98,76,98,7,16,88,25,76,47,50,71,28,92,51,28,56,42,16,22,33,21,77,76,26,71,6,89,1,26,78,36,5,9,7,84,13,65,44,40,27,63,97,95,49,64,29,8,8,97,22,64,95,30,12,83,26,19,60,13,5,8,4,25,63,23,45,51,95,23,81,35,6,31,32,62,76,22,48,6,9,63,44,78,39,8,64,24,67,45,15,68,55,35,89,67,61,31,34,14,53,95,30,74,54,86,50,48,96,32,100,77,56,70,81,61,49,46,6,27,5,13,62,30,27,89,44,54,10,81,96,6,63,48,68,33,56,50,18,59,23,87,41,59,80,64,70,87,82,85,5,53,54,35,51,24,5,73,22,32,46,100,1,6,27,91,70,41,30,57,6,78,12,98,1,20,84,39,64,57,31,1,91,40,83,5,38,80,98,2,38,55,77,39,68,3,55,71,90,43,25,6,44,26,90,87,17,22,3,99,54,68,19,16,44,84,30,72,47,10,87,19,15,71,61,48,90,80,61,98,63,86,52,40,3,59,12,29,92,23,88,36,100,17,10,40,10,38,44,24,72,14,98,41,59,24,100,66,88,24,93,94,33,35,41,47,3,78,44,99,81,89,23,42,99,18,49,27,44,39,54,3,90,8,92,23,53,91,63,48,78,64,83,68,6,11,20,87,39,77,76,58,2,45,53,44,65,51,24,65,73,57,64,51,6,79,92,58,79,36,39,6,80,27,24,14,31,51,19,44,45,5,47,57,66,41,51,61,52,38,58,87,92,70,62,67,26,62,22,87,68,94,7,85,37,26,73,37,98,2,99,8,69,60,11,67,38,47,3,87,81,35,24,7,71,70,70,3,43,46,82,47,70,76,37,56,68,70,75,2,70,31,8,71,81,4,11,32,27,76,17,100,11,63,79,83,3,84,9,75,63,1,40,40,49,5,9,38,40,99,18,8,38,62,63,58,9,4,97,57,86,22,61,97,21,45,34,4,69,27,91,5,46,35,56,22,8,67,68,47,74,42,8,86,92,44,49,80,87,3,51,6,53,36,22,53,26,90,39,1,24,76,34,87,75,70,25,23,37,100,92,61,62,7,68,26,33,36,54,9,44,4,47,36,10,18,95,1,11,82,100,84,18,73,8,73,49,48,48,91,79,96,94,22,25,89,70,22,94,18,23,83,6,93,36,52,64,37,91,46,100,7,16,3,33,51,2,91,3,59,27,59,33,36,44,55,84,1,83,54,99,37,35,31,27,77,52,88,61,74,75,93,35,100,44,37,51,83,14,86,52,93,86,38,75,45,16,12,59,42,50,77,36,63,11,28,49,53,46,13,18,93,28,13,96,18,90,4,45,59,67,82,59,25,16,36,1,77,66,48,97,77,90,55,65,80,40,69,82,97,41,58,80,39,27,17,36,37,19,98,92,87,58,72,30,13,46,100,5,17,27,14,20,49,27,5,41,1,40,76,6,82,21,79,10,50,66,75,40,74,98,52,16,19,18,36,31,30,38,84,70,21,32,78,3,12,37,71,74,5,30,21,8,19,31,28,95,8,83,41,19,38,59,22,54,100,8,78,34,16,7,43,94,65,66,72,69,97,28,25,100,98,41,81,38,23,18,66,80,7,25,18,19,100,87,4,45,46,36,93,83,59,67,52,36,32,36,64,20,89,41,94,90,7,43,16,85,7,81,91,30,46,35,37,58,91,35,65,46,46,96,55,92,100,2,46,88,19,72,52,83,45,77,3,73,86,1,69,89,93,61,93,12,51,60,69,91,24,64,8,75,83,43,34,60,57,60,90,69,66,48,89,86,24,48,53,96,64,52,95,70,61,43,36,6,17,90,58,94,46,7,58,74,91,76,33,16,85,74,72,52,17,34,23,59,50,54,23,95,96,14,13,86,11,95,62,40,80,16,79,82,4,54,76,100,26,62,56,90,50,7,21,10,98,67,75,58,96,82,87,2,65,13,85,9,52,20,22,45,11,21,20,42,49,75,90,44,70,74,97,4,38,24,49,82,29,49,32,17,96,39,71,75,83,37,14,40,25,41,33,48,36,83,95,96,56,50,65,67,55,63,54,90,78,86,23,80,51,72,65,19,76,98,22,46,39,20,79,33,41,12,56,72,77,21,74,90,70,38,82,69,13,44,70,39,2,71,52,1,88,68,84,3,21,76,11,5,56,42,78,55,44,47,5,78,27,47,44,9,84,65,55,77,56,20,97,65,20,17,9,81,26,80,98,81,53,37,54,97,82,61,14,65,11,78,73,18,42,58,89,8,29,39,67,64,74,19,87,100,25,97,73,64,20,59,20,94,46,16,64,57,5,68,93,23,61,40,93,27,60,43,6,81,5,88,29,89,60,64,6,14,23,12,99,98,27,92}

    {64,63,46,57,18,44,65,50,38,15,75,60,10,19,36,18,22,34,18,19,52,44,46,49,57,43,65,7,6,46,49,36,72,73,4,59,64,68,22,57,7,25,63,63,4,42,52,7,72,41,61,28,34,19,44,27,26,24,24,24,4,3,69,40,71,5,10,65,71,52,49,48,36,9,14,31,74,34,58,67,21,28,45,74,60,70,46,26,25,61,20,64,20,18,10,64,45,44,50,73,32,41,50,1,11,57,48,20,20,66,30,30,31,44,34,8,17,53,31,27,33,10,12,28,4,46,13,1,18,44,16,62,25,9,65,26,34,41,66,2,11,38,58,46,56,6,59,50,27,19,55,14,3,31,58,24,44,17,21,65,20,46,53,59,69,65,16,4,14,29,17,43,64,12,30,29,42,8,21,31,9,61,14,64,60,41,73,31,15,20,68,17,60,73,23,57,63,8,73,47,27,48,47,49,64,23,70,21,61,52,63,75,1,24,21,1,45,8,60,25,49,56,57,70,49,21,38,41,47,18,67,23,16,12,60,45,34,75,36,52,19,16,66,35,60,62,42,51,45,44,57,49,72,38,12,2,42,13,35,22,37,28,39,65,37,48,46,41,40,71,71,14,54,23,54,61,28,10,19,7,57,55,23,7,16,32,42,19,49,24,48,24,21,75,68,42,74,9,62,47,54,60,60,10,59,74,29,67,63,55,70,71,29,27,50,67,61,65,31,61,10,48,45,6,53,10,31,43,22,65,69,50,42,60,75,41,40,75,43,45,68,70,43,55,7,15,67,47,67,32,18,24,19,67,14,36,66,38,70,33,61,30,25,71,13,49,14,15,52,36,60,16,39,22,59,36,70,8,11,4,1,66,68,4,41,23,59,27,75,11,16,68,5,59,62,20,3,40,9,1,72,61,1,6,50,20,27,52,59,41,17,30,3,33,19,33,19,52,2,19,33,11,36,73,18,20,13,26,74,38,30,45,42,57,16,34,42,7,74,32,2,16,28,55,30,13,65,60,4,48,41,34,64,53,28,12,65,75,6,26,46,7,30,17,9,64,34,52,2,74,20,61,31,1,20,57,33,56,14,23,3,74,11,17,60,30,5,9,71,13,25,53,54,9,34,59,55,74,8,46,75,40,74,52,17,18,29,52,13,31,61,18,68,48,8,25,30,54,45,26,13,23,15,19,16,61,23,24,23,23,22,10,41,24,49,39,53,75,38,40,11,16,6,37,31,42,63,64,29,65,44,23,34,59,11,37,9,10,62,37,12,27,49,16,66,67,15,43,48,71,37,33,49,33,64,18,10,72,52,9,23,55,4,52,54,55,53,15,66,28,70,38,62,32,22,69,55,64,1,26,25,12,25,39,15,27,51,75,26,65,7,4,2,19,43,72,69,75,50,20,69,3,61,18,13,15,1,65,4,25,16,16,53,28,35,54,9,15,73,62,25,62,63,48,36,68,49,13,23,41,36,57,36,67,25,41,54,46,59,64,58,45,10,32,54,29,20,5,39,27,55,61,57,71,58,53,50,35,32,1,71,72,67,19,46,23,57,69,17,75,40,56,75,73,7,14,75,59,66,6,38,65,19,59,33,9,44,70,67,8,31,6,40,22,72,32,42,67,55,24,42,33,2,47,26,1,31,10,59,65,17,39,41,7,21,27,22,40,73,11,17,46,57,34,25,10,5,65,17,25,29,22,54,30,10,13,43,65,50,74,75,61,25,26,18,59,18,9,39,32,67,59,24,71,46,37,43,65,36,12,5,31,65,25,19,48,28,24,32,1,14,37,56,10,63,65,11,13,67,10,9,5,20,56,25,1,51,66,64,23,69,17,6,37,1,38,57,21,39,9,59,5,61,44,64,29,60,17,3,42,9,49,40,3,58,24,14,56,15,66,1,35,40,66,12,72,19,20,60,16,52,69,2,3,71,59,66,4,54,11,22,72,1,11,52,53,74,35,7,21,1,74,5,47,2,52,47,15,67,48,70,55,36,55,47,49,55,70,14,60,65,60,47,7,10,37,10,75,52,31,20,47,74,43,43,50,5,2,1,44,34,38,6,29,40,65,2,5,48,4,26,65,56,6,71,47,14,38,41,29,39,23,69,23,46,9,6,48,1,31,13,69,34,19,8,9,13,65,58,57,15,42,63,57,75,3,43,44,55,47,33,10,59,24,40,39,72,24,71,38,55,7,41,70,25,49,49,50,35,45,65,49,74,48,69,18,24,42,54,11,28,70,8,62,45,67,22,24,52,60,24,22,66,63,53,14,48,68,16,10,31,50,32,44,68,75,55,31,65,28,5,41,71,29,62,5,13,16,68,15,43,61,37,29,15,8,17,14,33,6,38,68,28,5,34,70,53,54,59,22,52,13,59,27,16,22,29,42,38,1,39,67,1,22,26,2,21,20,49,50,7,50,1,58,69,2,6,37,53,33,41,27,45,14,49,68,46,4,52,21,15,46,3,24,75,16,11,17,30,18,66,16,11,35,64,22,51,17,62,51,63,61,26,46,14,56,41,75,25,10,63,1,37,9,42,75,17,6,44,55,58,25,49,11,40,50,64,32,49,11,23,70,66,11,42,52,7,28,5,72,50,25,19,8,56,2,9,33,34,54,4,33,65,21,31,39,3,21,69,30,49,50,1,26,1,26,73,24,42,66,37,54,43,15,11,35,69,66,55,3,12,29,12,63,11,45,27,44,74,49,40,63,4,5,39,45,36,5,33,2,17,65,73,33,34,66,22,60,39,31,45,3,33,2,36,72,71,14,51,23,13,30,53,14,55,5,58,5,53,12,60,3,14,34,71,8,24,74,71,10,48,53,45,64,5,61,48,24,49,5,15,14,6,35,74,17,26,18,57,25,38,24,75,40,17,13,61,42,74,67,1,41,25,58,3,44,1,71,39,23,10,45,10,35,24,40,61,6,56,53,28,53,44,4,38,74,32,15,64,55,58,17,47,13,16,21,49,59,69,56,62,53,26,52,14,27,24,45,9,18,58,74,38,20,23,58,72,73,68,64,36,2,17,44,56,37,25,45,63,40,10,65,66,42,25,33,58,53,21,63,12,75,16,8,32,67,53,22,7,75,65,17,43,13,18,38,12,56,18,5,12,50,53,71,42,13,23,69,50,59,28,56,44,2,73,5,32,58,57,38,60,55,69,12,16,5,27,56,56,59,27,37,5,28,66,23,52,36,10,24,57,35,13,33,61,24,47,32,46,1,66,16,49,37,44,36,46,5,27,53,62,75,45,68,69,68,50,6,35,40,72,16,10,35,27,24,43,19,10,16,10,42,48,30,34,64,8,33,22,34,7,19,1,45,13,46,15,49,57,34,21,31,8,14,25,1,51,67,57,75,58,6,35,24,65,47,14,46,36,29,37,9,36,44,2,10,56,35,2,34,48,19,56,18,24,46,72,52,8,71,40,10,30,50,4,48,61,49,11,2,55,58,66,42,69,46,2,14,57,23,67,3,74,53,71,35,5,60,37,37,26,61,49,40,70,20,14,66,55,35,26,13,36,24,35,9,61,23,1,32,2,62,50,68,22,39,74,37,24,18,19,13,35,5,4,36,5,52,8,30,44,24,12,52,56,34,57,30,31,38,42,65,45,39,62,21,57,12,55,32,28,20,63,66,67,25,50,3,18,34,30,50,7,20,18,53,70,7,21,2,65,69,57,21,66,75,70,35,32,32,66,14,5,63,43,72,43,32,40,52,66,8,42,49,72,59,47,1,11,38,10,45,39,23}

    {6,71,34,32,24,42,15,15,62,13,45,27,7,33,51,13,18,68,70,71,40,30,53,15,39,58,45,3,71,44,74,49,15,15,34,42,4,19,42,6,3,8,21,54,43,8,43,6,64,28,61,59,45,68,29,22,70,14,21,31,38,61,44,26,33,11,74,51,19,28,74,20,1,58,16,10,73,62,48,47,40,40,29,49,25,17,10,43,52,64,18,68,13,54,1,26,67,43,49,54,17,49,2,69,37,57,12,42,72,48,36,13,52,4,29,1,69,50,66,21,14,48,66,74,12,59,52,43,55,64,20,67,32,5,75,68,8,60,34,17,27,66,15,23,2,31,26,10,63,41,7,38,12,21,38,70,20,6,4,36,18,44,43,59,25,38,6,19,67,25,20,56,42,63,75,40,49,56,36,13,60,1,74,70,29,14,61,75,26,9,19,60,73,29,19,36,32,45,43,74,10,41,14,28,5,53,74,4,39,55,60,41,65,1,66,52,50,42,40,62,2,62,14,37,28,4,18,12,35,69,39,12,30,34,8,42,26,59,29,65,71,66,38,45,69,42,71,41,73,44,33,12,48,74,54,71,31,69,15,57,7,23,32,4,69,22,19,60,72,71,61,9,44,72,49,30,20,19,4,16,67,2,41,54,40,54,9,33,51,29,22,1,39,41,26,60,6,22,38,48,63,22,69,50,38,56,3,67,41,75,75,10,23,75,40,35,31,26,65,64,43,64,16,53,46,17,13,6,19,37,3,1,72,8,19,68,44,2,24,22,70,8,70,20,28,2,36,72,15,33,46,50,64,59,33,7,14,65,16,12,68,71,6,60,9,7,25,70,9,58,33,49,38,32,74,21,50,22,60,5,66,13,30,9,23,4,59,56,38,25,69,17,64,10,1,44,7,58,8,59,52,50,17,57,67,73,17,72,48,18,34,67,61,64,10,54,66,43,6,36,5,33,1,63,64,46,57,58,68,16,31,5,27,61,25,19,18,45,61,64,24,21,31,73,10,59,28,67,60,9,24,44,50,63,53,54,30,72,20,67,38,72,74,60,70,53,25,74,22,4,34,10,14,70,26,49,39,22,20,2,12,35,58,28,47,14,26,61,62,69,30,5,41,16,36,39,52,34,11,48,65,15,3,60,36,3,44,64,11,7,61,46,46,53,49,66,28,36,7,39,43,60,74,70,39,24,64,43,16,21,51,47,34,46,42,4,39,23,23,70,67,62,26,56,32,64,59,67,17,55,8,18,58,15,15,48,6,34,72,53,37,19,51,11,11,14,25,71,33,11,1,65,64,68,18,62,52,56,48,10,29,60,52,12,6,64,4,9,48,39,36,71,26,16,69,46,64,23,29,22,12,50,18,55,73,42,70,38,64,5,47,63,18,44,75,19,52,61,24,56,17,31,68,49,2,5,42,16,44,74,9,60,39,75,36,26,9,15,10,70,33,59,43,31,67,29,51,42,54,67,41,3,43,31,4,66,7,15,62,63,18,33,19,34,56,62,32,17,19,69,26,14,5,52,42,37,73,39,3,54,50,25,29,56,35,70,39,68,41,20,65,13,31,62,74,18,9,9,29,53,64,30,42,1,54,20,64,11,46,17,24,54,26,50,18,15,24,31,50,11,14,10,66,4,45,19,32,72,73,21,75,34,56,69,18,56,14,60,15,29,57,60,12,74,66,69,1,61,3,40,50,16,21,7,43,7,47,2,21,31,59,26,17,7,71,51,44,43,67,56,30,67,57,71,39,43,74,4,16,67,10,53,66,15,28,30,56,43,17,13,55,62,53,43,36,12,1,32,3,71,62,22,72,4,1,34,48,56,48,42,25,56,75,51,35,26,35,68,13,39,2,17,49,33,14,15,12,20,28,16,72,25,63,19,18,12,10,5,27,55,59,33,24,68,44,44,17,64,31,10,59,7,52,12,2,36,72,38,22,41,14,37,46,11,10,10,46,67,12,45,53,56,35,25,40,58,15,4,56,69,33,33,7,17,21,55,42,17,14,9,41,24,14,34,36,1,1,38,4,9,10,25,47,22,7,71,55,26,46,52,55,11,12,39,52,33,71,69,54,36,70,38,28,4,75,44,49,10,66,47,64,64,60,51,5,47,4,55,32,23,29,62,48,6,43,10,25,3,65,55,60,16,64,60,36,38,42,35,49,9,35,19,50,36,57,75,21,44,36,58,35,28,39,26,37,7,41,4,68,29,26,16,29,29,7,61,43,13,62,67,25,63,29,57,59,21,48,59,29,47,26,71,67,57,15,74,5,29,28,26,71,46,17,50,2,15,39,27,21,74,61,11,12,53,64,38,46,13,52,3,8,1,58,28,72,4,1,56,13,33,50,62,16,32,46,13,14,32,10,60,24,14,54,45,55,10,49,31,36,50,42,68,67,33,42,6,37,19,14,43,24,39,37,55,44,16,52,29,26,8,57,58,4,46,35,40,32,15,36,63,48,14,22,39,11,56,5,64,39,4,19,25,40,38,55,61,18,38,71,39,36,29,2,22,5,74,30,13,35,50,25,51,38,35,49,16,62,72,15,36,74,35,64,73,40,6,56,33,75,36,41,42,56,55,37,1,18,54,19,7,8,10,26,51,18,27,47,61,19,43,59,11,70,39,65,2,74,69,15,13,2,67,75,65,25,24,8,59,64,60,27,49,10,41,58,9,33,62,17,27,5,5,7,4,59,30,54,18,18,30,14,32,47,14,6,65,55,46,70,31,8,71,10,73,48,69,15,43,16,10,38,68,48,51,51,30,72,56,75,40,7,29,52,37,38,66,72,4,4,27,3,57,61,4,60,68,69,17,6,6,31,30,66,55,42,31,33,36,47,12,22,20,71,23,7,56,6,9,47,23,59,51,53,72,23,68,27,27,60,52,36,35,13,24,43,51,33,28,68,12,65,5,22,45,10,38,9,7,8,46,40,25,51,38,65,74,55,6,58,68,5,15,6,72,49,10,36,60,70,15,63,38,72,54,10,17,43,65,74,59,49,55,41,37,69,12,61,36,31,7,36,46,16,4,33,1,6,69,15,15,10,70,1,54,72,41,74,23,45,43,53,22,14,65,1,55,43,27,5,56,45,69,8,6,32,64,33,34,75,3,20,20,74,71,22,20,42,53,68,52,7,18,56,46,71,2,21,69,17,21,50,3,32,44,30,55,64,62,9,61,59,67,51,73,15,25,73,27,10,63,69,26,58,21,70,53,48,58,19,22,70,74,41,11,6,11,38,36,2,14,47,67,33,71,58,38,16,24,21,41,4,15,29,3,71,30,40,17,23,20,30,19,28,7,15,10,23,64,29,35,48,67,33,54,41,70,11,18,43,6,18,50,26,68,41,23,16,42,50,39,33,51,60,28,22,46,51,30,5,43,42,13,40,46,72,38,46,27,74,55,29,62,55,2,33,39,34,49,51,71,68,62,30,60,48,46,13,16,58,1,40,39,8,54,68,70,12,10,41,18,46,20,15,72,59,58,19,63,74,73,22,28,12,58,6,67,61,68,8,35,30,11,19,8,59,34,63,59,50,50,32,10,20,25,1,52,11,46,44,73,16,20,31,64,60,7,55,62,66,62,5,49,25,73,47,14,49,57,74,17,71,19,36,24,7,47,43,59,7,51,47,46,3,43,56,33,4,47,14,34,13,52,17,39,10,48,45,35,47,11,44,24,66,15,34,26,35,9,70,44,39,53,62,48,72,14,29,23,45,38,14,14,18,56,53,42}

    Returns: 80272

  44. 66

    {64,18,60,55,69,41,42,37,3,75,51,46,24,26,22,49,95,87,24,8,22,7,46,68,4,93,47,69,47,30,88,10,92,1,53,90,67,57,68,71,61,4,89,62,81,40,47,47,43,18,20,61,50,43,12,58,53,13,5,49,47,3,83,6,76,32,100,97,90,30,13,17,40,98,82,77,37,71,82,73,94,74,87,47,74,92,93,19,7,20,8,31,13,65,28,100,38,50,92,42,79,49,14,78,58,2,37,39,68,7,19,11,19,62,75,89,82,9,69,18,2,10,96,80,96,85,53,42,78,73,46,16,2,63,68,98,89,9,99,70,25,84,16,63,7,57,100,6,32,76,56,43,41,23,13,64,53,51,57,30,3,87,31,84,99,31,35,28,37,59,29,26,47,32,55,18,91,10,71,84,15,68,15,76,81,52,88,23,59,33,74,89,66,63,11,76,59,86,64,6,38,60,7,84,85,58,19,38,12,74,52,72,42,31,95,90,45,83,59,77,53,74,67,76,38,3,24,89,16,40,43,69,87,40,61,61,56,45,5,83,95,66,49,98,54,91,89,71,61,56,8,48,5,3,47,9,5,6,70,21,75,96,70,90,90,21,19,46,30,82,52,43,66,42,15,19,55,94,28,67,31,50,29,9,7,82,19,21,85,63,39,28,60,1,58,34,38,18,89,67,27,13,94,12,76,5,90,85,79,55,89,58,14,96,18,66,90,59,46,38,80,72,57,4,83,15,59,47,13,62,60,81,50,19,49,75,65,36,52,37,72,52,33,59,43,14,91,52,70,70,47,84,38,85,57,91,52,6,11,68,10,53,34,82,41,16,19,27,41,49,11,26,4,26,73,38,66,76,22,59,9,47,16,11,55,73,74,10,84,73,19,56,94,30,72,44,59,87,21,14,90,70,13,58,5,19,52,65,6,88,8,83,12,58,62,49,91,20,73,19,60,93,48,60,72,73,83,82,83,29,51,98,11,46,75,61,26,33,65,87,55,9,64,5,44,76,83,90,19,40,90,92,99,86,53,98,95,26,15,42,48,35,55,51,68,71,46,83,25,10,91,21,83,82,35,90,69,64,53,89,93,24,7,31,52,21,29,70,88,47,94,13,93,94,45,67,78,45,88,12,78,48,58,82,80,99,37,11,22,95,50,94,45,4,46,92,28,30,83,91,100,84,71,66,44,21,21,11,17,56,92,16,17,24,28,27,23,87,24,2,98,87,91,100,3,45,96,51,45,55,37,55,78,69,100,18,18,6,36,78,53,81,6,18,86,65,13,32,57,16,81,35,69,71,6,26,39,69,56,75,98,21,51,15,74,49,45,19,55,93,71,90,4,18,97,86,32,19,10,82,19,45,32,17,30,81,32,23,38,92,8,38,64,34,76,99,66,30,7,66,70,84,47,7,22,44,36,55,16,76,66,4,69,74,89,19,60,68,27,100,95,96,14,50,18,97,25,40,14,55,74,41,32,63,48,74,98,95,7,75,44,92,62,4,59,37,15,26,21,39,21,77,33,20,38,14,90,59,78,41,34,2,4,78,73,52,88,84,98,67,41,73,33,52,31,51,21,9,11,14,71,24,79,70,49,78,93,8,31,88,1,56,1,5,23,43,13,87,84,73,21,53,76,53,96,55,88,64,80,50,38,49,8,65,96,86,87,5,14,91,16,65,3,2,76,11,60,57,20,19,65,30,77,95,41,15,51,18,1,43,94,60,53,12,36,30,19,60,29,19,51,39,68,4,6,97,55,45,93,28,84,44,4,47,3,65,67,98,60,15,73,11,18,67,76,54,61,55,87,4,21,22,98,98,2,1,46,15,50,19,32,16,26,54,75,79,87,70,19,52,87,32,54,90,95,43,84,69,100,7,3,90,13,11,33,68,3,4,100,76,87,46,21,23,26,13,32,37,33,85,58,29,87,53,85,100,66,35,19,93,35,76,24,48,31,25,94,12,22,9,34,52,33,100,65,6,79,64,17,6,42,4,22,8,13,65,53,76,13,31,37,36,69,86,84,3,76,13,74,83,2,81,81,7,52,81,86,10,73,51,92,86,16,28,39,33,59,98,84,23,23,47,70,26,25,41,36,22,38,24,44,86,23,1,37,51,74,19,97,41,95,76,91,58,98,62,62,90,12,77,51,82,73,35,15,88,63,85,20,97,48,29,1,57,79,35,88,34,3,100,10,47,61,72,8,75,23,52,23,93,45,11,17,34,49,23,53,48,19,92,58,48,44,62,37,73,74,35,63,47,42,10,60,34,70,11,100,80,4,36,24,13,26,97,94,17,85,76,90,52,74,85,72,51,67,87,39,82,48,55,3,63,43,15,61,3,85,25,16,47,42,29,43,14,53,57,29,79,21,84,17,22,47,73,31,92,83,94,10,60,24,100,67,96,86,54,85,15,36,65,57,46,54,25,68,31,15,97,23,47,100,70,8,30,14,14,13,49,27,15,14,95,79,95,54,86,80,70,60,80,50,71,56,37,37,29,58,57,81,88,61,25,77,31,32,1,43,10,6,93,75,67,50,92,49,85,54,9,87,56,5,68,7,84,85,83,44,13,28,66,7,76,79,19,63,98,93,36,70,17,24,18,38,22,51,6,45,52,21,12,78,28,78,48,22,63,84,97,97,95,56,59,74,18,52,83,82,24,100,63,86,90,49,93,82,96,100,100,10,64,76,74,6,26,57,53,42,46,22,2,19,47,20,31,50,35,5,93,66,94,51,16,58,43,3,45,74,72,83,26,82,46,33,91,10,39,43,66,86,22,72,29,90,23,56,68,74,3,49,43,68,61,55,33,66,41,41,60,55,41,58,32,4,73,43,87,42,53,86,37,90,36,23,26,33,15,42,64,69,55,48,69,100,13,69,81,75,15,67,13,30,68,52,96,37,96,78,47,15,27,42,16,96,16,8,7,18,37,10,68,75,19,3,98,98,54,65,13,27,3,83,22,92,88,84,81,17,85,22,81,84,89,48,21,47,25,63,15,97,25,79,53,14,74,66,16,11,19,22,34,53,13,53,27,70,24,12,16,23,100,3,5,46,63,26,26,28,40,5,12,64,71,12,8,74,37,76,72,13,8,38,12,24,15,99,93,91,27,3,7,79,90,39,53,64,19,12,72,9,50,41,100,35,80,6,63,20,69,25,96,48,53,74,97,11,52,22,41,86,47,32,68,74,11,16,15,25,45,10,5,34,90,99,55,55,47,94,29,28,8,43,50,86,100,20,73,79,87,40,99,100,26,3,75,15,75,86,92,10,48,67,43,22,88,83,4,34,63,88,69,51,30,9,99,21,21,83,38,7,58,64,84,47,14,98,52,95,17,92,85,98,77,79,62,96,46,56,7,5,48,32,93,1,32,94,7,77,54,5,100,28,80,85,7,73,14,46,75,97,98,20,6,97,73,19,9,40,39,45,78,3,5,89,79,61,41,17,64,53,63,3,5,96,47,98,96,55,50,20,8,16,18,72,9,87,44,88,41,77,46,73,26,77,2,50,12,23,45,39,31,83,24,33,88,79,85,44,57,21,58,64,54,3,70,69,54,5,62,98,91,75,99,15,22,19,74,70,63,45,56,71,13,30,39,85,47,78,4,78,48,94,7,31,45,46,5,72,91,41,92,69,50,75,66,81,88,28,57,23,75,41,90,12,57,96,69,94,49,64,100,64,85,66,39,66,42,63,32,35,69,67,36,63,86,50,44,18,16,85,43,93,85,90,79,15,75,61,2,85,47,53,59,95,71,89,39,92,72,27,37,79,76,91,9,31,81,78,98,48,10,68,61,78,74,72,100,70,92,50,32,35,41,91,8,31,52,96,31,41,83,16,31,95,91,28,40,99,94,54,4,17,50,81,78,27,27,30,41,21,17,22,77,64,47,75,69,78,92,52,87,95,25,84,20,62,78,5,96,65,48,14,29,84,85,12,37,100,37,55,75,100,43,80,15,55,99,97,56,71,77,16,80,60,60,62,2,6,91,89,30,28,46,93,39,19,49,18,7,49,18,98,78,92,69,16,43,90,78,5,90,1,50,43,47,64,92,81,87,67,9,37,54,44,7,5,18,42,4,31,65,32,53,5,57,21,47,71,64,18,58,2,34,54,58,1,83,79,26,18,43,7,1,72,43,3,32,46,25,75,4,91,4,45,62,81,10,64,56,25,4,44,88,60,62,84,35,17,59,64,46,72,69,28,6,85,54,31,91,23,73,24,88,5,58,82,100,69,11,86,99}

    {8,27,32,56,42,33,1,4,32,43,29,19,43,61,16,29,41,53,13,22,9,17,57,63,21,43,12,46,47,12,5,16,40,49,14,45,49,55,63,7,52,51,64,46,38,56,41,37,24,13,53,20,25,20,53,8,54,27,15,49,49,4,58,50,34,3,24,3,17,6,53,44,24,35,59,29,4,8,47,39,44,54,11,27,49,46,2,19,40,58,58,53,12,16,24,43,12,34,24,57,28,58,39,28,25,33,6,56,21,4,53,21,22,4,23,60,51,23,9,26,14,17,62,12,54,56,38,46,31,57,30,20,52,62,11,39,44,42,32,64,13,39,36,19,45,7,47,63,26,23,23,36,30,31,62,62,58,45,3,35,21,65,14,4,56,17,32,17,40,1,62,53,28,30,56,7,7,48,27,61,47,10,56,29,36,62,9,30,31,35,48,10,14,48,5,58,2,29,61,60,21,47,34,62,6,45,49,7,50,15,12,4,2,13,28,1,29,48,66,1,6,54,7,43,17,11,24,16,57,26,2,12,13,3,61,25,27,20,50,9,41,46,27,27,9,41,10,26,25,49,46,52,40,29,38,10,9,52,22,32,22,17,31,63,35,61,18,36,40,21,20,44,51,33,25,56,61,19,36,3,47,24,65,3,18,51,3,7,44,19,44,62,41,30,13,41,36,42,66,44,21,55,35,13,58,4,54,38,7,5,57,9,1,12,19,41,9,7,57,47,22,20,6,35,66,12,57,39,32,42,8,21,60,45,16,55,65,53,44,46,21,27,41,20,25,9,5,36,41,10,59,42,13,38,19,34,2,4,39,9,12,58,45,16,22,64,13,6,32,26,9,5,23,2,30,31,2,50,28,3,27,62,60,5,8,24,5,29,62,61,54,28,47,10,32,29,2,9,39,5,30,19,65,37,53,65,13,5,9,51,56,48,37,57,14,57,66,65,49,32,21,9,36,51,22,51,4,32,16,9,54,52,9,27,1,17,52,63,8,30,58,55,29,66,55,4,35,4,39,49,53,59,6,54,50,13,49,36,59,5,28,59,32,48,45,14,59,16,66,50,37,36,51,44,12,53,21,62,9,39,16,1,57,52,38,43,6,16,30,59,57,57,1,2,39,51,15,57,12,28,4,7,48,48,20,21,37,37,20,3,13,19,10,42,49,9,1,43,53,63,39,25,66,36,29,55,10,16,6,49,38,44,65,43,49,4,45,47,25,20,26,14,30,5,43,33,62,4,15,28,64,18,49,19,29,11,20,29,54,21,23,16,35,12,5,16,62,45,65,32,60,15,56,50,66,32,65,30,16,17,30,31,57,28,18,39,43,46,60,21,64,35,37,44,60,11,58,32,33,30,28,2,11,19,11,14,36,22,4,25,43,58,42,59,48,57,45,10,57,57,64,65,62,50,54,39,10,45,35,30,12,57,65,51,38,14,3,5,45,51,46,38,38,30,50,19,42,14,24,9,57,12,41,61,32,12,63,15,30,51,22,53,29,17,14,52,48,45,25,60,35,27,61,29,10,9,39,59,47,38,38,47,59,21,43,58,39,50,11,18,23,59,30,61,46,11,22,35,38,50,44,46,44,59,47,13,1,21,36,63,40,9,36,60,60,44,62,15,28,50,44,57,33,32,6,41,62,4,34,63,48,37,42,28,12,40,55,11,6,16,58,28,8,55,3,61,3,7,16,51,42,42,51,53,45,59,46,47,36,11,34,54,66,20,6,60,8,40,62,2,56,9,7,56,12,33,3,28,21,12,14,42,51,7,10,4,8,35,36,15,20,47,33,10,23,25,2,60,3,58,5,33,43,26,48,33,66,8,43,20,40,19,33,33,11,38,20,35,65,12,35,36,48,22,5,12,59,60,64,28,64,54,14,10,26,10,3,50,38,25,21,40,59,25,27,6,51,42,27,2,12,47,14,65,44,45,44,20,21,21,39,21,29,65,11,38,34,64,30,54,19,26,20,45,45,44,32,57,37,65,18,34,26,60,7,38,6,27,4,30,28,28,40,6,61,1,54,48,3,57,50,36,63,57,27,43,51,53,40,62,62,35,40,39,24,41,18,4,9,19,17,37,64,33,56,5,31,59,25,37,2,43,60,43,59,17,58,1,13,8,11,26,35,48,38,18,27,11,3,12,30,42,38,33,55,55,41,45,33,28,7,57,17,20,62,3,30,26,41,46,30,15,36,43,10,10,35,60,15,62,10,15,49,66,60,65,16,21,24,2,4,62,15,27,6,55,4,37,43,18,47,9,65,55,59,13,6,26,3,34,60,20,62,50,38,1,24,2,33,34,28,49,5,23,64,20,45,17,10,50,9,1,66,47,55,55,6,38,39,12,10,15,14,49,65,45,33,45,6,24,46,48,16,5,3,15,4,42,20,56,30,12,26,17,10,34,47,40,66,41,42,44,61,2,8,13,58,31,18,42,20,23,62,35,47,18,59,30,21,20,5,43,26,44,9,42,55,13,12,40,58,55,59,3,10,49,43,49,14,51,32,62,45,65,39,30,48,4,7,55,38,8,58,17,56,3,66,38,6,9,5,9,16,12,66,30,29,22,53,32,66,4,22,61,60,14,60,59,6,39,7,4,49,19,29,51,35,1,37,23,13,64,17,32,49,65,4,4,29,22,59,42,5,53,50,25,34,30,58,23,41,31,59,4,22,58,54,8,44,21,26,24,31,12,42,16,29,14,27,23,23,40,6,61,1,40,43,62,61,31,22,57,34,6,56,24,62,52,64,36,60,7,41,46,35,2,19,54,20,57,38,54,48,22,14,18,9,54,34,54,56,26,17,44,61,17,65,56,19,54,52,21,36,41,37,58,53,54,2,18,60,48,38,50,28,20,46,41,50,20,13,42,54,66,28,13,57,66,13,51,18,6,9,55,57,3,43,63,9,15,1,30,30,23,25,27,65,22,61,5,54,27,1,45,65,21,13,18,19,43,64,61,25,38,20,51,57,49,43,49,52,3,57,17,1,12,46,17,1,4,52,20,42,19,3,13,18,25,43,33,31,13,15,11,21,5,44,47,14,37,6,27,44,7,48,12,64,9,63,47,4,62,26,12,64,28,46,13,46,23,62,1,40,57,29,8,62,16,40,51,21,35,62,15,49,29,56,15,51,16,35,58,37,30,11,43,18,24,32,16,56,48,55,28,44,62,4,12,24,66,43,49,57,49,37,41,50,47,17,60,63,38,21,47,9,41,4,57,23,54,11,47,56,2,40,63,33,60,4,46,24,11,56,15,26,36,59,34,12,60,49,37,20,37,25,24,9,49,11,36,65,54,63,11,23,30,8,65,17,47,59,34,1,18,33,18,19,58,57,50,30,19,5,64,27,23,2,49,22,27,30,44,12,26,14,65,59,6,11,44,59,27,37,40,36,49,66,66,60,63,10,2,23,34,30,11,24,39,6,28,65,45,53,22,20,12,8,24,31,4,2,59,9,64,1,10,39,15,2,46,3,11,3,54,52,10,18,30,51,22,21,49,9,45,18,55,46,40,58,28,25,15,29,32,33,24,52,46,30,14,62,6,38,15,44,46,48,16,3,54,62,21,14,7,4,17,45,9,32,1,59,40,19,60,34,47,48,60,57,46,54,60,29,51,25,38,27,62,24,25,41,28,29,25,66,41,3,2,24,31,42,22,31,27,36,61,14,57,24,57,50,10,41,25,31,3,34,66,40,14,39,50,48,31,48,9,59,64,32,37,11,10,10,47,32,15,53,65,61,18,40,18,65,42,15,57,27,56,43,37,35,45,50,46,38,15,18,1,38,31,2,62,53,57,52,44,39,37,52,10,16,35,28,66,41,38,49,30,25,8,51,49,31,20,35,15,63,28,45,31,65,30,13,31,20,59,46,17,27,28,28,48,9,58,62,8,13,42,50,59,4,12,65,57,21,21,12,10,22,51,13,23,17,58,6,43,57,54,36,45,12,66,13,16,16,62,1,34,52,31,9,52,28,42,57,45,7,5,66,5,28,50,34,48,3,8,27,31,57,29,56,66,35,38,40,53,32,40,7,42,31,50,18,58,3,15,47,22,4,5,63,64,56,52,43,50,64,11,50,58,8,56,28,13,35,44,9,40,62,24,26,45,57,25,23,48,26,14,21,30,46,16,51,50,8,31,19,63,27,59,8,32,29,56,17,30,4,33,17,53,58,38,10,56,4,57,5,35,37,56,59,41,25,30,1,20,57,11,12,44,29,49,44,42,27,35,37,42,22,39}

    {35,10,22,20,1,49,13,38,19,8,8,13,63,57,26,40,37,20,57,60,46,10,30,48,38,28,18,65,6,45,49,22,11,50,17,24,32,35,49,31,11,23,49,63,4,23,34,33,2,63,12,60,26,8,20,5,65,62,49,19,45,45,10,31,64,49,54,31,7,41,33,21,3,36,30,40,8,41,24,43,27,40,50,43,49,11,26,31,49,3,24,1,5,29,55,27,54,12,47,52,44,47,35,17,33,50,36,8,25,33,8,15,34,35,52,10,59,23,14,25,57,15,61,43,14,11,23,38,21,45,38,9,25,3,51,57,55,45,35,17,45,32,26,2,36,66,55,47,58,15,38,1,50,27,32,54,7,61,41,7,4,55,61,52,53,55,61,20,30,52,17,62,33,52,16,17,28,61,60,58,36,21,44,42,52,15,31,62,60,54,11,47,13,8,25,41,57,59,48,49,36,49,5,65,64,29,32,26,31,59,55,47,50,61,26,65,59,36,4,59,10,11,32,47,18,3,3,34,17,32,30,1,59,6,29,61,23,48,15,30,28,23,49,16,59,4,3,8,47,18,57,14,14,14,50,28,16,25,20,56,66,31,38,27,65,7,37,19,44,65,45,27,37,6,62,17,38,52,5,29,48,26,50,17,15,51,45,45,51,56,45,33,15,44,52,62,28,66,34,63,39,24,9,61,7,65,64,12,35,39,15,58,52,12,4,55,64,30,49,46,56,62,5,55,25,32,17,42,35,22,30,56,41,13,22,19,63,60,63,30,61,18,59,33,58,57,57,65,15,58,37,10,34,65,12,10,29,54,2,17,12,40,6,58,29,20,62,43,40,65,9,59,49,54,50,13,7,16,48,1,17,18,38,32,66,37,16,17,39,8,54,8,65,16,35,4,40,50,24,26,20,7,45,31,36,52,36,52,58,58,34,52,43,17,61,34,62,65,61,20,66,56,62,21,40,48,12,2,28,50,55,63,34,36,54,22,28,45,16,12,35,17,35,21,15,62,46,14,2,18,36,64,62,2,40,1,26,63,8,39,8,60,39,44,37,66,7,65,10,51,24,65,59,26,64,33,28,16,16,58,48,9,37,49,8,13,20,11,16,65,35,50,14,38,35,4,38,55,1,55,49,7,38,16,29,39,29,14,50,28,60,23,26,26,12,38,17,28,40,25,47,56,29,57,10,40,63,15,48,31,50,56,7,45,39,27,31,28,62,39,42,60,62,45,36,35,25,48,62,54,8,5,30,53,55,64,19,18,38,41,36,11,23,39,1,3,15,46,37,10,63,39,24,23,42,61,30,38,4,59,46,2,46,56,47,44,53,40,63,30,57,59,45,64,63,30,22,65,50,32,26,5,56,51,26,63,50,13,59,10,32,35,21,15,62,7,21,33,7,42,58,4,36,14,56,61,27,11,29,37,35,15,45,32,30,22,59,2,12,2,18,55,4,34,31,11,61,1,45,34,63,29,57,50,28,44,63,38,6,29,66,21,54,21,29,37,4,30,34,54,59,65,56,52,11,64,35,38,11,39,19,15,61,23,41,58,25,63,34,42,65,5,58,55,61,31,32,51,28,52,24,35,2,28,25,38,27,24,44,52,54,7,14,58,22,21,1,40,48,23,30,1,62,5,23,26,37,11,9,19,16,20,24,46,27,38,57,15,6,61,11,40,16,47,4,4,44,55,25,28,44,61,57,66,22,18,41,8,23,33,19,57,50,20,46,46,8,63,39,42,57,13,2,31,42,25,2,46,24,7,14,54,10,66,21,47,57,59,31,6,53,5,37,53,41,51,41,38,30,56,33,8,46,60,54,49,4,65,22,4,56,32,3,12,59,53,17,59,37,47,16,60,24,26,57,20,4,57,34,9,8,14,46,20,3,9,48,31,43,49,48,23,48,8,41,2,42,32,44,52,12,11,5,30,49,19,7,61,15,45,5,16,38,45,18,9,24,37,61,7,8,54,35,14,25,60,19,30,50,20,65,29,51,58,20,57,36,49,14,26,57,29,62,22,49,63,24,23,47,13,9,50,31,16,38,48,43,42,41,50,65,4,24,8,28,28,17,51,10,57,21,45,13,42,24,21,62,25,28,63,50,12,32,34,61,4,45,36,58,30,23,28,30,52,65,3,28,18,10,57,50,13,21,12,1,46,24,39,65,47,55,6,66,57,40,4,16,43,17,16,11,30,34,22,4,52,55,24,36,4,22,38,51,13,39,25,6,45,55,22,45,20,43,15,8,17,62,38,9,32,10,6,59,47,56,9,60,50,40,25,41,1,48,7,26,66,63,34,55,27,14,8,28,19,47,25,51,37,20,56,1,61,49,56,28,24,27,1,12,15,55,65,23,52,38,44,32,33,66,44,8,48,14,46,10,21,60,50,32,3,54,43,64,25,25,65,15,6,34,36,8,23,28,28,24,22,22,1,43,33,31,4,32,3,52,3,33,18,52,41,57,13,60,26,65,50,62,4,64,50,58,64,23,52,14,17,40,14,65,10,43,24,6,35,31,11,32,50,14,27,18,24,3,2,44,63,29,2,48,29,13,22,66,38,25,63,66,37,55,4,26,25,58,45,35,24,16,19,62,32,54,41,52,57,24,49,30,55,52,11,40,6,65,6,55,24,32,27,46,25,31,22,8,33,25,22,42,20,35,23,42,57,34,8,38,4,22,34,47,35,39,17,18,54,64,1,43,6,41,44,47,33,44,18,18,23,52,48,63,56,47,37,64,33,25,10,12,54,57,46,5,10,47,61,2,46,42,30,18,22,53,2,46,26,43,8,55,35,54,24,29,49,15,10,29,22,49,10,20,65,42,7,47,20,55,63,34,43,50,8,22,1,41,58,29,29,18,46,1,28,51,35,30,56,13,36,20,12,60,3,58,54,56,44,55,14,8,13,59,27,18,9,4,3,1,6,5,22,53,66,5,31,29,25,4,4,20,32,14,35,64,57,22,32,9,18,44,7,16,44,13,43,10,37,7,18,24,50,31,63,4,21,12,38,12,13,29,45,61,49,24,44,7,32,11,62,54,58,29,54,39,66,63,26,52,2,47,46,44,8,61,11,47,26,45,65,19,56,45,59,36,53,42,59,59,54,48,6,18,57,48,47,50,2,6,48,26,45,8,58,17,53,9,9,52,60,37,13,39,42,51,41,23,66,18,12,65,4,21,1,47,46,5,49,17,50,63,41,57,22,13,41,26,16,23,55,40,18,9,15,19,16,54,28,9,47,35,61,5,21,32,42,2,45,54,59,36,25,52,8,44,56,22,62,30,26,50,40,50,35,1,10,6,3,38,63,28,66,48,4,2,25,34,38,7,13,10,49,9,54,19,51,16,61,43,16,10,47,16,22,32,43,22,54,35,40,10,23,58,26,38,19,21,59,22,14,11,62,35,27,16,16,31,19,24,60,21,47,7,20,17,33,13,3,14,56,38,30,2,3,59,58,44,50,43,38,35,3,34,43,9,39,22,1,54,26,1,1,17,8,40,28,5,48,22,13,29,60,34,7,18,59,33,16,14,52,59,59,38,16,35,56,57,3,15,56,43,3,23,50,1,41,45,12,6,34,29,48,30,14,1,19,5,21,36,43,9,63,19,55,36,39,48,5,18,7,21,12,47,54,62,40,62,2,23,31,44,10,30,42,37,15,33,33,31,62,63,22,20,28,53,66,51,31,23,8,1,44,64,50,2,37,20,60,36,16,13,13,61,66,19,49,27,50,49,53,20,19,34,53,3,32,55,62,65,20,63,51,25,14,20,43,8,18,43,4,13,61,11,45,1,58,46,28,42,6,48,51,35,61,43,64,65,26,7,47,38,4,31,35,10,16,12,19,15,23,61,61,64,29,36,30,31,58,17,42,61,40,49,51,43,42,40,55,63,28,54,50,13,10,18,56,45,61,27,57,4,58,1,38,56,3,23,9,64,19,52,9,9,28,47,34,32,1,53,13,26,12,9,62,33,35,47,27,14,58,16,4,38,25,19,5,6,21,49,42,14,53,55,64,53,34,58,55,13,14,32,49,54,10,51,57,19,1,52,51,33,27,3,54,9,45,22,52,57,57,63,44,9,66,38,10,57,55,36,42,30,66,41,24,36,35,59,33,48,58,5,14,42,54,24,39,59,4,2,49,13,16,14,27,19,5,54,49,38,60,17,14,66,3,1,41,54,20,26,64,61,49,62,56,9,3,7,43,22,45,48,19,6,11,8,30,38,54,24,2,51,37,9,48,23,28,46,42,66,34,14,44,54,38,2,66,16,34,65,52,17,16,50,4,60,61,7,3,10,51,37,1,20,60,30,4,53,28,37,6,9,57,65,35,6,11,56,53,37,23,20,10,53,59,19,7,4,7,20,34,41,53,8,10,48,41,36,48,46,38,14,36,48,35,5,45,39,39,56,3,58,43,61,29,57,22,15,23,58,30,35,63,29,46,15,24,20,26,55,11,57,59,12,63,47,12,40,14,55,10,34,20,17,10,29,18,43,21,33,18,52,11,40,16,42,18,54,15,15,49,16,21,28,33,16,32,54,24,62,20,55,27,56,19,22,9,50,54,44,16,41,50,43,17,58,10,47,30,10,32,2,64,51,23,49,20,3,40,1,66,25,34,8,39,8,31,64,33,46,48,46,4,26,24,33,17,1,61,55,57,44,52,21,29,24,41,43,6,2,19,22,14,64,23,6,7,46,60,3,13,4,12,19,30,62,44,24,13,4,56,17,32,2,43,49,4,66,4,2,53,37,43,57,30,54}

    Returns: 94514

  45. 57

    {47,34,41,52,78,86,43,28,25,93,1,47,71,71,32,2,59,45,75,22,4,3,57,42,6,29,70,5,72,34,17,49,34,63,85,86,36,73,29,74,6,14,34,61,58,83,96,85,5,28,32,37,90,83,90,16,94,79,40,19,18,8,79,19,90,62,79,53,68,70,13,3,18,19,45,80,32,31,14,38,77,78,96,24,71,60,56,52,1,46,97,25,98,50,25,48,41,83,36,89,52,18,95,20,79,54,36,17,21,4,63,54,36,26,58,25,60,50,15,23,62,64,42,83,27,25,37,31,11,41,32,26,29,16,84,63,29,75,3,14,38,22,60,28,16,35,68,45,50,98,88,25,43,99,36,50,59,48,70,60,26,63,48,26,93,71,55,83,3,1,23,80,37,92,77,45,47,59,77,93,15,40,30,72,18,17,4,27,35,60,78,20,53,51,28,37,6,70,43,64,18,88,76,54,70,84,94,3,96,25,17,55,34,87,33,22,76,65,64,42,70,14,80,31,54,83,64,84,28,75,57,52,87,31,86,100,91,38,60,52,44,41,94,92,44,37,56,28,43,91,87,47,57,92,34,93,77,29,10,69,88,53,16,24,65,88,85,18,65,90,98,67,81,26,17,60,12,7,72,11,41,77,69,49,100,48,52,74,61,97,15,10,67,14,16,69,11,33,11,85,23,28,17,35,29,69,42,53,35,99,46,58,63,8,40,62,69,74,31,13,70,2,86,100,11,93,17,3,78,31,21,19,19,71,63,77,86,9,47,81,68,77,37,47,78,56,95,82,80,91,7,49,58,61,73,87,70,41,60,6,32,41,34,72,34,71,88,91,3,46,33,60,71,86,27,99,58,93,47,93,6,66,46,79,46,13,81,85,59,51,5,81,89,35,1,41,89,44,44,17,77,69,43,34,86,80,69,48,31,35,4,91,2,53,42,37,37,62,5,8,46,7,92,44,85,59,92,10,91,25,3,36,75,15,15,27,37,88,65,44,62,97,80,40,67,61,59,2,47,48,91,28,68,51,35,35,62,100,19,16,99,44,8,81,79,52,51,7,54,94,69,75,50,90,20,47,23,42,83,25,68,44,26,60,60,89,33,52,87,92,76,36,22,32,36,84,59,83,19,84,24,51,10,16,65,28,57,64,20,12,6,85,50,68,40,67,29,5,12,17,94,40,4,5,38,48,97,45,73,83,77,35,65,16,49,8,94,70,89,17,71,90,36,75,9,38,53,98,31,18,86,62,43,71,86,55,31,36,54,23,81,52,19,45,28,8,51,50,21,80,90,59,3,64,29,1,67,33,27,44,92,45,46,36,18,11,64,76,68,2,69,53,2,98,47,84,21,96,90,29,34,19,31,45,44,83,46,13,5,91,58,24,40,6,78,50,41,84,81,14,89,20,73,93,79,44,77,95,58,7,72,65,46,57,42,36,26,76,36,67,51,31,82,92,69,46,100,30,9,39,49,79,27,57,61,89,77,64,55,25,37,62,91,92,57,11,88,26,17,89,45,98,89,91,18,69,29,78,23,13,64,1,38,87,48,30,13,67,8,32,6,62,36,37,2,49,24,7,76,95,78,56,48,30,95,7,21,5,35,60,47,49,83,47,97,26,27,86,38,55,75,14,15,13,42,47,24,10,70,72,84,88,43,87,6,4,93,99,73,63,8,93,69,47,90,5,97,45,36,4,47,24,45,67,15,98,100,58,67,31,9,44,14,12,27,85,53,37,41,94,94,24,34,41,24,31,2,84,92,70,64,23,46,55,45,74,19,68,86,19,85,26,100,13,75,68,55,90,98,98,42,71,75,23,55,81,52,28,91,20,20,41,63,99,57,34,87,4,65,56,10,27,49,64,27,82,84,6,22,44,62,18,77,33,44,7,80,73,83,80,78,55,13,82,16,81,65,67,10,89,88,46,38,8,52,96,100,56,100,93,72,82,36,18,64,96,45,21,22,62,53,83,44,37,44,85,27,20,85,28,59,35,22,69,47,29,33,1,83,57,76,26,2,47,61,64,45,11,56,14,62,97,43,46,76,46,91,29,47,90,63,23,73,52,22,25,94,35,32,64,50,60,39,52,99,37,38,50,90,12,21,72,36,82,45,77,27,43,30,20,11,50,89,85,15,13,11,28,21,4,63,72,60,60,96,26,92,64,62,3,39,82,13,80,46,45,46,99,14,52,57,53,13,17,50,90,14,33,58,79,76,40,18,41,62,56,61,82,34,53,76,9,56,46,18,3,100,37,50,84,26,51,22,6,93,74,93,2,40,81,70,60,68,74,94,64,24,65,16,42,10,53,59,78,15,97,46,97,76,58,9,14,71,7,2,50,62,97,28,42,100,7,20,57,38,9,42,84,84,65,83,39,67,80,28,14,10,33,72,39,4,1,93,69,37,24,92,92,42,11,43,78,58,2,97,5,60,72,46,98,28,53,32,71,70,85,78,28,88,33,90,90,83,26,77,41,87,15,23,43,38,64,49,45,84,79,74,60,68,4,25,75,98,36,15,81,86,43,34,66,11,49,4,75,17,57,53,66,70,7,3,99,28,39,56,88,27,83,12,95,3,70,57,10,13,44,12,53,85,74,35,64,37,23,35,95,81,5,74,90,66,69,83,67,85,76,63,30,10,19,79,22,91,91,35,95,28,68,21,44,78,77,46,30,34,37,63,58,2,19,15,53,49,56,54,95,20,28,79,65,51,10,3,34,42,7,37,23,11,23,53,39,69,5,84,47,11,78,81,39,76,54,62,4,80,90,59,43,50,42,73,75,13,81,42,84,73,64,35,7,44,39,69,22,36,50,83,8,76,37,86,64,8,70,27,35,20,60,38,73,93,61,37,74,76,67,85,73,63,19,18,32,52,70,31,82,41,62,72,67,26,22,89,17,67,57,87,42,73,47,96,58,85,53,90,78,28,41,71,77,23,79,42,30,59,36,84,41,57,92,85,22,52,11,49,75,81,80,49,16,50,75,92,31,26,67,90,94,96,73,45,89,99,63,11,77,63,86,57,4,27,56,93,20,75,16,36,67,46,54,38,52,62,89,61,42,49,10,84,41,86,16,26,95,96,80,74,20,39,84,99,41,47,26,63,88,5,77,17,58,64,41,10,84,34,51,53,51,12,50,80,93,59,5,6,65,29,49,56,24,71,23,28,83,66,52,41,88,27,86,67,56,6,70,95,52,43,72,99,44,17,48,38,45,24,98,75,77,98,25,6,47,1,68,13,54,26,94,57,98,7,29,4,45,100,90,58,84,92,58,7,73,55,12,94,8,64,27,70,65,87,66,76,42,10,12,80,22,11,99,61,16,30,55,50,48,43,40,88,10,92,88,78,17,74,72,1,27,81,81,45,85,88,15,24,75,20,69,40,79,31,85,82,93,59,71,19,7,38,44,14,99,80,15,48,77,75,87,7,23,69,17,76,15,57,12,34,81,21,88,44,37,30,59,6,88,16,65,26,92,57,39,43,18,66,92,53,87,28,75,41,62,9,88,78,78,80,26,76,35,29,88,64,64,15,61,88,47,98,46,24,36,29,19,26,24,88,21,26,58,15,66,41,46,92,100,55,81,83,20,79,51,56,23,96,28,14,29,85,11,4,13,64,93,55,10,43,71,11,31,9,39,4,77,96,36,69,98,78,95,48,31,29,9,23,72,92,81,55,91,11,42,100,57,83,21,40,67,22,50,41,77,1,9,38,23,17,89,16,69,78,44,69,86,3,100,81,51,12,59,76,79,21,85,1,71,14,93,58,94,74,49,64,70,21,91,55,42,33,29,38,78,72,31,26,33,16,5,65,49,7,7,52,74,23,44,80,3,21,27,45,98,61,39,10,21,1,93,33,49,8,42,88,20,12,81,84,2,97,91,77,96,20,37,57,71,3,88,7,20,61,48,1,54,82,90,51,24,4,72,58,17,94,91,13,8,58,15,18,90,94,36,85,48,19,99,37,69,90,86,100,4,70,72,38,10,89,1,9,52,67,25,19,76,92,58,28,75,75,43,63,75,98,81,50,1,52,89,27,91,35,53,18,74,76,9,36,6,26,70,99,84,66,3,24,50,55,18,11,10,59,88,91,46,97,99,84}

    {19,13,42,41,13,13,24,37,16,17,4,19,12,53,43,56,33,7,29,27,3,2,15,15,8,48,18,6,37,27,56,14,34,1,25,51,46,55,24,16,7,40,55,20,27,18,49,17,25,36,41,55,16,43,21,41,44,44,47,50,31,48,28,23,16,27,50,28,56,15,6,20,11,7,52,35,50,27,2,50,26,41,11,2,19,52,27,29,55,8,44,3,4,23,14,31,19,41,1,47,31,49,16,20,2,29,46,55,47,23,12,40,17,29,7,30,54,30,41,38,56,27,56,14,8,57,47,4,28,6,6,4,2,35,47,10,16,2,42,49,26,43,8,26,40,36,40,7,51,36,12,28,56,27,12,57,22,46,36,13,54,18,12,49,25,48,40,23,20,38,33,26,30,38,24,28,16,22,48,9,51,42,20,55,51,48,48,54,50,14,7,13,15,39,4,9,9,52,18,48,23,5,41,55,15,55,54,53,32,14,2,24,30,28,9,28,21,14,50,18,18,19,17,26,25,38,55,12,6,2,57,29,26,41,17,19,37,28,32,6,9,24,29,26,37,41,57,52,13,28,7,42,21,12,27,3,20,43,8,54,9,20,48,35,56,8,24,6,52,47,44,9,21,48,35,57,48,29,28,38,55,4,37,10,13,46,14,41,22,21,15,29,47,19,48,52,27,39,48,29,11,4,3,1,48,19,30,32,14,43,42,15,31,49,32,12,28,56,41,38,17,18,12,5,7,14,1,22,24,17,40,49,34,6,4,32,40,1,3,26,33,49,39,3,31,10,49,32,18,39,3,54,17,14,3,54,45,4,10,54,31,38,39,12,21,51,23,53,40,1,52,1,25,38,49,7,26,51,42,46,37,33,10,1,33,24,24,43,40,30,31,41,12,31,19,9,22,8,17,16,44,18,55,52,48,34,15,33,12,2,57,23,56,39,43,26,46,49,52,9,25,26,54,9,7,21,39,4,50,15,51,37,47,57,3,55,1,14,33,1,1,26,45,53,3,29,27,3,3,33,57,35,21,18,3,49,19,9,56,21,25,22,34,8,37,37,41,56,24,56,33,10,29,48,33,32,4,13,30,1,56,8,52,21,38,6,51,15,19,34,52,10,11,51,31,15,18,56,28,3,4,52,48,56,53,54,16,49,57,16,20,37,7,26,1,52,45,23,45,46,31,21,46,14,20,53,39,38,31,50,12,50,3,8,35,41,48,4,49,44,10,2,33,52,35,47,18,22,7,38,17,15,5,46,21,2,48,22,41,2,33,24,39,31,18,9,6,29,48,46,50,50,9,52,21,40,2,15,10,29,55,48,32,16,33,43,21,5,23,1,32,10,6,24,38,24,40,33,45,4,40,57,36,48,50,33,47,52,29,1,25,34,32,12,46,21,29,38,46,38,39,45,56,31,34,57,48,19,16,5,9,37,37,2,12,13,51,29,43,8,11,21,34,49,36,24,17,46,29,52,17,36,49,35,20,44,40,36,23,2,48,38,37,11,55,14,4,29,5,42,40,19,44,41,22,2,57,49,12,7,10,30,30,34,12,7,51,38,9,10,35,52,40,57,46,55,43,41,36,14,26,46,8,53,25,46,31,7,28,12,2,39,54,51,11,13,14,51,56,20,39,25,39,49,42,12,42,5,7,14,21,36,15,11,57,5,1,20,48,26,8,17,9,25,20,57,5,53,45,49,44,35,15,42,55,29,40,47,43,38,21,33,55,14,20,36,22,10,17,45,19,5,29,8,33,6,23,41,20,42,35,49,4,38,38,50,20,39,42,55,19,50,36,50,40,4,43,3,33,38,43,19,50,15,29,18,3,29,19,27,8,20,57,33,27,54,14,17,51,2,9,45,18,31,42,29,19,40,32,28,17,4,18,15,54,17,9,27,19,8,31,2,27,35,48,41,39,21,49,32,43,3,30,11,16,45,9,54,49,49,2,22,10,14,34,30,37,36,49,16,42,57,41,38,14,6,48,20,10,38,11,50,16,9,52,46,15,2,28,5,52,10,50,5,28,54,14,26,55,4,43,21,1,42,24,28,35,56,54,32,3,2,16,14,27,14,26,9,39,14,50,39,6,8,56,37,11,36,33,50,18,26,23,42,19,55,36,5,33,9,5,21,9,7,10,22,33,18,6,6,30,18,53,6,43,23,7,47,7,22,26,21,15,25,40,21,32,47,47,21,46,35,14,48,25,8,4,21,3,22,44,37,44,50,42,19,51,12,11,19,27,20,24,47,38,29,3,53,54,51,4,38,42,5,30,26,33,13,27,8,37,42,25,43,3,12,13,8,28,15,27,22,36,8,5,17,46,19,44,56,45,14,31,7,51,54,45,49,49,10,43,32,50,20,52,34,35,29,41,37,45,34,15,25,4,39,46,54,1,18,43,15,33,46,10,13,30,15,15,34,15,18,53,28,32,30,25,6,29,18,44,57,9,52,43,14,36,12,26,24,25,25,23,13,14,52,35,45,21,11,32,21,50,36,34,13,50,51,48,29,56,15,11,25,2,2,3,3,2,36,39,22,55,17,45,54,43,12,26,57,45,39,54,24,28,15,15,13,20,34,43,24,9,1,25,22,2,40,37,11,34,52,12,17,38,23,57,6,53,41,37,40,4,16,43,5,25,2,44,56,20,40,13,57,1,30,6,5,31,31,53,45,12,1,29,28,8,44,55,23,25,11,10,11,4,13,8,46,43,28,11,12,43,48,25,23,30,28,49,15,18,17,5,48,38,47,39,24,25,42,9,8,9,39,4,50,57,53,4,10,31,55,41,15,42,17,46,25,7,2,21,6,30,23,8,24,1,28,33,14,56,55,56,54,40,23,31,30,31,28,30,22,33,2,53,48,4,1,14,36,18,43,41,30,54,37,23,14,25,52,12,38,53,50,57,55,15,48,25,32,8,39,57,48,9,8,21,48,21,11,38,19,40,49,57,37,22,15,57,21,10,32,17,50,33,4,40,8,35,6,56,42,37,55,13,3,15,30,16,36,51,50,49,12,4,40,3,28,25,5,43,17,44,28,17,54,17,15,22,46,26,25,39,50,7,54,8,46,50,21,30,20,17,51,26,54,52,27,32,2,24,6,15,11,32,36,23,19,23,15,21,27,53,11,31,6,56,55,6,30,38,13,57,41,52,8,14,12,1,8,25,21,33,14,15,22,28,18,1,38,30,19,18,57,28,48,26,10,11,56,22,52,44,37,1,46,3,51,41,47,28,42,17,17,34,18,16,11,56,2,19,48,5,41,56,47,52,16,1,3,1,41,54,48,1,7,7,21,40,34,50,15,47,45,22,52,15,14,23,49,16,29,13,15,7,30,5,33,34,33,18,43,45,57,18,32,10,10,5,8,24,41,12,18,27,57,31,40,24,37,24,52,51,57,24,25,13,39,29,56,7,37,18,32,54,22,50,55,38,49,9,33,26,2,3,3,23,19,34,45,14,32,12,33,21,43,49,43,54,21,36,44,7,26,6,14,26,5,21,19,24,20,33,43,12,56,4,4,5,4,51,18,36,23,16,37,14,47,16,29,9,28,9,12,11,18,43,45,21,4,32,11,52,50,22,31,47,21,7,49,39,26,9,16,55,12,37,25,19,8,11,14,57,29,47,30,22,28,9,12,35,22,13,26,37,49,19,1,6,22,12,34,24,16,32,26,2,15,54,2,12,43,55,15,43,31,41,46,34,4,16,35,9,50,26,46,40,20,12,11,37,37,49,5,20,51,55,39,16,38,45,50,53,21,11,27,11,38,38,3,27,2,35,37,16,56,1,21,35,37,19,48,18,44,32,49,13,27,35,18,13,27,18,28,1,7,20,21,8,24,47,31,24,31,47,4,11,52,10,31,28,15,19,43,45,1,37,45,41,23,50,54,15,52,8,27,45,37,39,21,8,42,40,20,54,39,41,33,50,1,37,14,24,57,7,9,30,10,17,39,45,5,18,24,27,48,21,47,41,18,21,21,32,51,12,15,11,9,27,55,9,22,43,9,57,25,8,17,50,48,47,14,24,49,3,5,56,30,56,24,17,45,45,30,50,48,10,43,41,26,4,27,4,42,2,29,17,31,55,27,30,45,13,21,32,11,18}

    {20,40,25,44,53,48,16,18,7,50,55,23,35,11,52,22,20,30,49,50,54,33,52,9,5,39,54,25,14,13,14,47,18,39,30,4,16,16,57,45,42,17,23,24,43,40,51,52,25,23,26,23,26,17,12,25,4,2,55,11,4,25,57,33,39,2,27,26,38,19,1,12,32,32,53,30,21,48,30,14,23,42,8,4,52,16,8,37,55,21,3,33,51,37,3,3,38,9,18,27,49,10,39,43,5,36,1,54,49,10,22,57,22,29,44,27,45,39,32,18,37,37,17,56,38,11,43,17,11,25,23,55,5,36,21,35,2,24,48,47,50,12,47,43,6,28,28,35,4,3,42,22,7,56,55,39,43,25,12,23,45,22,24,52,12,16,12,17,5,41,12,44,32,6,52,55,45,35,40,8,38,32,17,32,15,33,25,33,15,28,15,39,21,11,18,50,17,41,19,8,52,11,40,40,7,22,37,2,10,30,17,33,55,21,26,1,7,51,32,5,42,9,50,43,33,27,45,23,18,6,14,7,29,41,5,49,41,10,20,40,51,31,9,11,44,17,35,18,11,8,13,24,7,7,41,5,11,15,45,48,7,50,23,54,33,55,1,14,23,24,26,34,2,42,47,38,19,41,3,33,11,49,4,55,55,30,52,43,47,16,27,16,44,51,7,16,28,8,52,6,28,32,19,12,1,18,29,21,46,42,52,54,47,57,33,3,42,35,12,21,54,21,11,55,51,36,44,20,8,9,7,46,6,22,36,50,35,15,19,42,47,33,33,10,1,56,19,50,36,38,10,22,57,21,53,39,32,41,3,41,20,49,21,53,54,1,33,14,20,11,46,49,20,16,3,36,19,12,34,39,26,16,52,29,56,56,51,31,12,43,41,18,16,35,23,30,27,23,44,45,5,30,30,23,48,30,43,23,31,42,5,16,44,50,43,27,4,7,18,4,50,22,23,45,18,10,50,45,57,45,5,44,46,44,9,45,32,50,34,45,34,12,56,38,22,18,25,3,32,20,36,23,43,25,46,56,57,35,35,46,25,39,52,14,41,13,40,29,15,9,7,53,42,4,15,4,56,52,18,14,11,40,43,48,47,34,1,45,22,46,50,41,2,45,30,29,38,50,52,48,1,6,9,41,51,53,13,4,6,39,3,43,29,33,42,33,1,8,11,10,25,48,10,53,23,31,49,38,33,25,6,40,18,14,25,1,21,20,15,7,17,46,19,45,35,7,35,44,15,54,25,28,56,55,4,48,48,31,24,28,27,45,2,43,28,8,39,3,39,42,53,12,29,18,1,57,7,35,25,43,8,44,54,57,34,29,24,31,53,27,26,31,22,33,12,51,14,40,49,4,45,29,12,47,50,4,22,39,21,16,44,33,32,50,17,39,52,19,41,55,16,11,28,31,45,6,18,46,38,50,39,17,23,31,5,9,30,57,46,22,50,17,8,46,40,37,14,18,10,19,50,9,36,5,51,56,11,26,56,50,10,33,18,6,41,53,16,33,49,33,26,27,4,56,55,27,22,46,26,40,55,11,56,56,7,35,53,52,54,48,39,22,1,48,29,24,15,45,20,17,52,29,26,14,14,21,39,23,24,30,42,16,17,32,33,44,51,14,51,9,18,17,6,47,48,11,42,22,4,32,54,20,5,41,10,9,43,52,57,38,28,6,21,52,46,16,4,32,47,24,36,36,48,27,28,32,31,19,41,18,2,25,20,46,4,34,46,13,27,30,36,24,57,38,45,52,21,2,19,18,38,1,8,54,55,46,23,44,24,3,17,48,36,57,16,13,55,21,9,48,31,46,3,50,27,10,22,20,43,3,38,32,16,52,32,15,43,52,43,31,30,22,16,21,44,9,52,17,45,56,44,41,18,28,36,34,52,46,43,34,44,13,55,11,14,44,23,23,6,11,55,14,16,56,46,40,54,22,11,50,8,52,12,8,31,18,55,54,35,23,55,7,28,27,7,34,37,14,54,13,2,37,29,13,19,46,48,57,38,9,22,11,4,28,38,27,51,54,31,55,7,17,17,33,42,13,39,51,5,10,55,15,15,7,31,39,42,4,51,53,2,33,46,12,20,17,40,47,33,12,29,16,32,16,1,2,52,15,44,34,4,19,36,28,1,36,1,44,13,16,5,8,44,21,53,23,49,56,24,6,24,36,48,26,55,56,35,33,1,46,15,23,29,11,44,30,12,52,43,3,52,44,20,48,12,2,36,41,13,5,42,14,54,12,39,24,11,20,7,4,51,44,10,17,31,57,16,55,39,24,5,5,5,16,55,47,47,21,43,43,47,24,54,36,56,22,51,21,46,23,44,14,44,24,22,48,32,10,46,57,49,21,24,21,24,51,19,32,45,1,51,11,55,24,32,52,15,14,55,34,22,17,50,54,3,5,27,45,33,51,43,11,30,9,20,22,14,10,55,39,56,30,25,33,13,53,20,55,22,7,8,53,54,38,54,43,17,17,53,52,42,50,21,43,54,55,47,9,14,36,42,36,1,26,48,9,14,7,41,4,8,15,38,10,44,57,7,38,30,3,34,3,7,33,17,41,13,36,32,40,14,17,25,30,40,52,11,13,33,45,13,28,48,51,28,49,18,33,43,15,45,24,13,28,47,26,15,41,50,46,54,4,25,38,25,26,39,6,56,24,52,40,25,9,6,25,5,17,30,26,16,54,46,17,31,28,13,34,52,41,34,16,47,23,35,49,47,45,20,24,9,33,28,26,55,35,46,56,31,48,15,39,26,30,10,31,18,8,34,31,10,12,27,38,49,22,53,3,32,51,57,29,22,34,46,21,48,21,15,5,53,21,8,52,33,53,26,14,44,26,50,24,31,30,12,13,53,46,38,4,1,7,11,43,36,37,28,38,1,13,43,45,51,5,23,11,17,20,49,16,16,36,40,14,53,25,45,3,51,30,21,22,43,47,23,2,54,37,31,3,14,10,9,44,29,30,14,51,20,29,52,10,18}

    Returns: 80862

  46. 87

    {55,45,9,24,36,57,59,24,18,53,91,96,49,45,98,71,36,15,27,96,98,38,85,31,13,80,19,53,10,50,45,32,20,75,3,82,19,97,60,76,80,52,52,21,92,70,41,24,52,49,90,48,29,2,29,36,17,35,4,27,25,18,19,6,51,40,61,27,26,74,41,55,43,88,84,83,6,18,33,74,82,79,28,28,51,41,99,36,30,100,62,89,36,95,41,7,59,57,59,41,8,91,95,44,95,45,38,57,34,9,16,39,32,13,19,92,70,88,98,65,83,97,74,9,55,63,20,24,91,3,100,2,34,88,41,91,15,80,35,7,82,43,10,38,62,24,91,91,60,20,47,49,35,75,93,52,35,44,9,72,18,28,23,89,54,64,63,67,9,50,33,10,36,24,6,56,81,79,55,91,41,94,33,77,31,58,30,12,6,39,19,80,43,7,43,17,83,24,73,53,79,58,22,87,9,15,89,42,70,1,45,21,80,9,90,100,76,100,58,58,29,95,44,95,34,3,8,96,19,54,1,54,10,33,39,75,3,21,80,22,26,43,95,41,13,84,97,57,42,79,38,14,76,98,23,9,88,66,88,13,78,15,7,32,90,30,11,12,14,88,7,45,38,6,37,43,1,80,7,27,93,8,80,63,40,87,24,19,10,51,83,43,55,69,25,71,48,53,21,55,38,34,3,49,82,60,25,68,97,23,98,96,38,72,15,71,64,98,50,5,26,62,63,80,14,27,21,63,21,11,4,19,27,4,24,59,42,10,83,55,54,73,48,63,14,96,8,41,94,30,71,36,16,23,25,99,1,18,87,19,43,91,59,41,48,48,95,97,58,74,80,10,43,6,41,61,84,28,82,92,69,35,86,3,73,72,83,38,78,91,52,7,64,57,97,71,82,24,82,32,100,89,27,2,10,24,87,8,67,57,74,61,18,34,99,70,90,80,75,4,90,36,24,12,87,79,2,88,43,29,83,46,60,46,98,89,45,90,82,80,92,48,16,26,99,63,35,57,68,96,2,13,49,30,52,25,36,85,31,36,19,53,55,25,79,47,85,57,86,90,76,10,75,6,40,66,50,35,66,47,48,20,88,42,50,12,16,55,44,31,23,94,45,54,53,79,91,84,67,96,43,17,81,14,24,67,7,32,72,32,75,14,76,90,65,17,5,83,41,62,75,8,46,63,90,68,5,87,98,49,8,95,47,82,96,40,65,7,58,52,37,24,33,80,81,8,88,21,9,23,36,23,57,64,66,81,85,34,4,59,61,66,83,63,27,48,55,41,96,85,4,59,16,7,11,96,90,85,64,26,25,41,57,18,52,59,34,62,59,49,31,36,29,47,26,75,10,90,11,75,66,4,19,43,40,74,12,46,60,5,20,52,98,52,1,41,47,34,7,67,11,47,100,5,82,75,3,44,42,84,31,30,78,96,77,27,77,3,27,79,36,25,85,54,91,69,14,34,69,20,89,83,6,4,26,40,3,9,9,18,44,11,24,72,17,45,4,72,41,73,20,63,38,92,4,26,50,27,32,56,22,58,1,49,89,64,25,72,76,20,94,96,85,100,97,20,2,13,62,2,20,9,36,67,71,88,71,38,90,35,49,62,61,53,67,90,32,98,29,86,9,45,13,82,80,79,26,46,67,14,46,59,37,45,34,66,57,1,89,93,8,42,1,21,75,46,38,82,5,78,35,31,79,70,93,50,16,70,61,99,61,97,20,77,30,18,41,72,94,17,63,11,22,40,82,50,5,22,32,44,62,84,75,68,3,38,39,43,5,92,51,53,78,59,71,87,54,83,42,89,45,43,3,39,29,85,85,73,87,27,97,52,70,31,11,40,39,80,53,95,55,98,97,83,12,87,87,45,18,55,81,94,43,49,65,82,98,45,63,14,15,27,12,78,44,26,54,60,4,71,84,74,72,39,29,62,32,17,63,83,40,75,98,42,27,38,9,65,80,71,22,5,34,78,96,57,22,43,13,32,24,16,1,55,87,42,5,90,85,26,29,85,25,4,86,97,100,41,87,14,46,99,30,23,53,30,54,76,57,31,60,95,4,54,92,17,2,30,39,37,28,44,7,92,76,34,74,88,19,37,56,65,49,67,61,53,89,53,46,88,32,39,31,87,25,89,88,64,68,46,56,22,78,92,91,31,22,37,33,87,95,98,7,1,13,68,58,72,28,84,75,52,11,75,43,42,66,53,11,70,84,24,63,12,91,44,50,62,75,24,13,20,38,57,35,4,44,20,19,65,21,8,7,100,2,80,41,8,54,79,46,50,23,65,54,44,65,21,57,59,13,43,96,92,8,4,17,47,68,63,15,60,98,56,14,26,53,34,67,87,30,18,42,58,81,56,37,76,70,96,48,13,86,90,83,45,4,5,30,96,96,85,28,87,5,33,39,99,71,87,57,6,53,64,36,6,53,97,84,58,99,40,97,58,43,54,99,38,72,47,80,46,7,66,14,71,76,64,89,6,66,9,59,9,16,14,97,14,33,66,7,40,46,81,24,24,97,83,29,54,39,7,71,82,65,54,94,37,18,77,53,13,19,72,82,74,96,49,5,75,38,5,64,84,13,94,24,13,96,75,72,28,76,49,82,57,54,61,67,52,32,98,45,59,77,54,63,58,25,43,47,58,58,27,79,25,32,14,19,4,38,93,27,6,77,39,87,8,41,85,49,83,48,80,69,71,70,67,65,65,87,93,39,23,36,53,1,37,25,73,43,80,99,10,100,21,72,94,84,84,64,60,36,88,97,52,13,99,57,9,95,35,43,77,78,72,59,72,75,37,76,67,43,76,86,73,37,4,60,49,61,6,44,27,99,23,94,96,64,87,93,47,51,69,71,38,13,19,92,27,45,7,40,40,10,65,27,94,80,9,71,54,79,52,26,33,89,83,63,48,56,57,24,20,92,67,47,86,44,83,22,24,83,43,67,1,32,51,66,69,55,73,47,91,83,66,36,53,85,61,69,24,30,30,5,65,35,97,32,35,47,14,37,68,39,32,55,61,79,4,5,17,73,95,52,21,40,89,71,36,51,36,90,70,30,62,47,74,72,89,3,61,21,35,23,22,15,50,33,94,100,7,53,48,69,40,11,51,99,20,13,81,31,87,5,38,22,9,79,74,18,52,96,78,60,18,92,97,73,85,59,29,60,37,12,54,55,71,63,31,77,100,67,35,57,23,8,87,32,19,49,27,80,18,75,50,56,73,30,53,54,87,51,64,90,68,80,25,8,7,49,73,69,18,19,11,97,54,54,10,16,45,40,61,53,10,36,23,18,78,73,45,38,43,38,99,69,93,83,92,73,99,23,95,87,48,28,41,8,71,18,83,52,88,12,25,43,35,22,80,25,17,6,74,12,76,43,6,29,82,34,93,100,38,81,91,18,5,39,45,35,58,93,43,59,56,74,69,7,100,76,25,95,57,91,80,80,70,79,10,84,58,11,62,97,84,28,25,12,31,16,32,19,35,98,86,33,61,76,42,28,60,6,88,85,41,12,46,81,18,85,11,82,99,67,49,19,27,54,54,91,1,10,21,40,13,26,97,22,28,29,29,7,80,91,59,17,12,57,37,50,96,72,15,92,64,55,60,72,58,51,66,86,59,43,86,78,83,4,96,15,40,46,99,87,32,93,47,23,54,11,58,86,64,6,2,2,48,92,23,45,83,43,57,1,77,21,36,5,31,87,17,58,99,16,88,97,13,12,56,23,70,87,43,61,89,11,10,52,59,36,82,72,51,47,19,93,35,73,5,96,68,74,10,96,17,92,100,19,87,55,97,16,74,70,59,39,97,94,55,86,18,92,9,12,7,59,66,88,35,15,79,71,100,45,62,46,32,16,37,89,53,31,21,13,11,100,48,37,43,2,62,38,90,46,49,55,77,58,72,16,31,31,44,58,7,32,54,81,48,56,54,14,36,76,71,79,8,64,82,92,12,97,34,28,33,19,87,62,69,47,47,70,87,93,57,83,62,5,33,53,99,81,36,18,11,100,70,6,40,26,52,69,46,63,36,99,78,49,36,14,6,10,27,95,65,97,44,81,61,90,11,35,38,50,5,14,41,54,24,18,31,76,75,88,89,28,12,69,30,99,57,1,84,94,96,96,29,20,22,41,92,10,98,83,54,36,46,95,46,35,55,88,70,6,32,70,65,26,22,11,97,84,98,29,46,22,31,76,82,17,51,65,13,50,45,37,10,65,64,61,97,2,60,88,62,8,27,18,75,66,6,55,41,34,63,49,95,26,67,97,24,24,1,57,73,48,26,30,12,86,57,58,34,24,90,66,97,99,72,21,21,43,69,25,56,68,1,22,19,7,99,66,32,2,54,42,43,11,34,36,92,67,30,52,7,54,61,40,46,74,99,72,59,61,100,86,68,7,24,95,48,18,96,44,76,99,23,2,80,53,10,33,30,13,13,26,49,23,82,25,81,79,92,31,68,89,6,29,69,99,49,12,38,76,47,85,45,35,5,38,11,67,95,98,90,9,24,95,62,66,15,79,26,11,49,92,54,36,77,71,61,82,61,48,71,93,34,95,11,14,48,64,51,7,100,25,84,87,42,55,41,65,57,77,21,43,71,89,72,61,74,91,40,61,11,63,89,39,19,21,11,66,52,18,31,14,13,65,66,25,15,54,16,23,46,13,26,77,64,24,73,91,43,80,96,13,24,91,50,24,72,55,55,7,93,1,70,46,24,93,43,62,85,87,17,60,92,18,36,15,81,14,85,86,52,23,40,23,50,42,7,9,11,81,60,26,66,42,52}

    {45,62,3,16,36,41,11,61,31,33,10,25,52,71,63,6,5,50,87,49,34,20,33,11,35,63,21,9,85,55,78,38,52,20,22,47,71,21,4,13,84,33,66,35,38,12,9,27,19,77,20,72,42,47,60,45,7,5,40,32,19,60,18,28,77,66,54,53,62,62,15,39,42,58,45,46,64,23,49,1,36,56,73,6,81,45,70,86,27,81,43,29,73,69,73,71,84,67,56,13,74,6,74,71,44,44,58,21,8,4,17,66,53,24,32,3,80,51,63,80,57,83,19,70,37,51,55,20,34,73,17,83,25,58,34,53,37,22,68,24,56,27,50,33,40,11,5,65,3,19,38,39,37,17,75,13,39,3,56,59,58,27,58,47,6,70,46,48,73,17,44,26,25,58,68,9,28,29,7,33,5,69,35,65,22,11,83,4,54,39,30,36,31,32,37,85,17,67,16,13,31,49,45,69,15,60,64,10,50,81,13,21,86,72,37,51,79,76,35,53,44,60,82,42,42,22,41,9,68,13,29,34,41,81,69,29,46,14,55,23,7,23,26,3,36,32,64,11,39,51,74,62,37,59,7,46,19,71,31,77,46,29,24,55,77,63,4,1,48,69,66,6,3,52,78,35,5,53,26,86,48,16,26,53,50,8,61,87,71,20,34,7,32,29,4,72,75,8,45,14,65,85,43,84,86,3,86,60,49,76,36,49,4,24,83,63,33,31,15,39,58,3,86,12,38,71,12,82,5,82,80,30,34,85,51,68,9,54,73,87,52,65,46,47,75,35,30,66,14,74,65,15,71,33,37,32,21,34,43,52,37,22,60,44,27,17,57,43,60,63,62,37,11,44,28,64,3,36,60,5,83,38,9,8,50,47,63,25,11,14,54,6,37,61,41,43,71,72,82,21,87,61,80,51,1,66,3,15,9,20,42,12,62,10,28,73,34,56,71,27,79,41,11,37,49,35,73,63,4,63,34,46,23,65,10,36,71,33,5,26,59,63,35,49,53,7,87,14,7,65,85,57,77,1,34,82,2,7,27,16,33,40,74,63,84,4,76,16,73,58,64,58,26,86,31,3,60,77,54,45,15,3,46,39,85,5,45,73,62,25,50,54,24,59,53,74,32,15,41,66,41,67,43,55,45,63,77,61,68,83,20,84,54,28,61,16,16,3,47,13,38,4,81,86,16,66,14,45,26,58,79,13,64,30,9,39,23,85,69,68,49,24,25,21,56,77,73,28,21,27,77,82,33,57,8,18,75,50,21,18,17,86,21,22,9,40,27,54,36,3,81,31,85,38,75,16,82,34,74,19,53,18,7,65,72,63,12,6,73,61,8,63,32,53,9,78,48,68,55,31,57,60,34,45,74,69,84,24,7,18,72,22,55,28,58,18,12,48,64,43,18,58,81,87,47,35,48,12,78,84,41,42,50,55,71,54,66,85,20,54,14,77,86,22,85,5,40,4,84,56,57,86,50,56,66,3,55,25,4,64,29,30,36,36,86,14,3,83,13,54,71,82,59,79,78,10,28,34,84,19,61,51,42,27,30,18,36,14,70,8,68,83,23,73,72,44,50,11,77,46,67,29,43,3,65,66,69,64,27,84,11,33,22,7,54,41,17,47,63,46,63,63,23,51,32,9,58,52,58,14,34,15,18,80,8,31,41,9,30,12,63,27,18,44,81,23,45,85,76,62,13,75,8,44,5,20,76,83,52,72,36,7,4,77,71,76,10,78,53,29,48,74,80,40,5,78,65,26,14,19,13,27,42,38,38,74,75,70,17,5,23,59,3,51,42,35,75,7,54,24,40,31,77,55,46,58,48,25,74,16,67,20,8,24,74,29,12,12,70,29,58,68,80,23,45,22,27,5,74,73,36,13,7,48,65,24,33,43,23,29,20,72,73,55,50,3,2,81,65,71,85,83,58,40,21,81,34,57,18,71,15,2,31,70,53,3,13,74,62,8,42,22,63,34,32,76,85,73,81,55,38,72,22,19,78,60,35,3,71,77,28,61,1,55,8,2,87,19,50,1,51,63,30,69,18,69,26,56,24,29,33,78,77,18,28,51,84,7,33,85,86,17,74,24,34,40,78,20,75,45,21,62,53,48,30,33,5,54,25,56,17,40,11,37,18,1,86,20,16,14,51,49,61,87,80,50,58,10,70,71,58,32,39,7,71,65,87,48,80,11,60,42,70,46,11,63,30,33,64,2,55,43,58,44,13,87,57,12,1,18,3,69,15,44,25,51,80,57,73,58,54,52,68,84,17,52,87,68,41,1,44,74,43,13,50,23,10,59,52,30,38,75,54,56,85,40,48,36,61,40,51,69,38,79,22,40,44,4,78,9,79,63,63,11,51,30,78,9,19,87,26,3,69,38,26,39,49,28,79,11,64,78,53,82,44,28,83,62,16,37,38,80,3,31,58,47,19,31,41,30,51,29,12,28,21,41,55,21,31,63,31,48,26,27,55,38,54,52,75,64,41,52,86,65,60,81,82,10,17,58,14,1,55,56,42,58,70,84,37,57,13,14,72,84,51,83,61,56,12,26,27,3,15,4,18,3,50,87,28,39,17,37,85,48,18,85,3,22,27,71,34,66,72,36,16,39,10,46,32,77,19,31,45,9,56,45,70,22,14,26,68,24,23,9,33,81,80,9,37,47,39,48,85,17,14,33,29,50,40,84,14,53,26,78,22,7,3,73,45,4,55,56,68,19,62,30,76,82,63,46,9,11,19,30,47,46,6,5,61,24,12,42,23,73,72,28,78,69,71,4,39,71,17,1,75,72,8,21,74,66,67,53,35,70,42,14,68,76,84,70,75,1,74,74,44,72,17,51,54,74,43,63,44,34,56,86,32,72,50,55,54,63,46,8,84,81,80,30,25,70,37,71,41,14,75,81,47,3,87,74,78,20,58,51,20,5,7,33,50,57,42,76,68,36,6,62,25,86,6,22,47,34,9,83,41,60,66,44,28,21,41,19,20,78,18,34,67,70,86,6,82,23,10,58,69,85,62,19,54,39,68,24,83,55,79,60,42,1,27,24,66,5,19,75,13,72,71,86,17,69,46,16,56,8,70,25,69,53,75,47,6,71,70,5,28,5,31,35,40,16,65,14,64,46,18,27,36,15,65,59,82,9,3,41,37,34,20,84,60,40,7,19,82,1,55,84,41,50,24,73,57,24,9,76,23,11,82,5,47,65,70,72,57,67,69,80,52,62,86,47,42,53,40,11,34,83,62,74,9,52,62,84,69,87,84,57,85,77,86,30,45,66,55,65,15,85,10,57,31,61,35,37,74,35,18,35,19,29,66,84,85,40,4,75,38,61,37,29,69,75,56,22,68,63,15,63,66,47,51,6,29,9,52,63,82,2,40,56,6,71,31,22,24,83,39,6,62,32,18,57,79,69,82,2,41,62,37,40,59,62,54,19,34,7,67,58,47,22,37,33,61,21,81,68,25,22,45,4,21,14,12,66,84,4,74,54,78,70,41,50,81,12,18,37,59,59,71,24,26,52,62,64,57,30,68,44,20,1,14,85,22,86,76,2,48,70,65,49,26,69,60,50,25,7,86,16,77,54,8,23,31,45,79,33,9,42,43,18,40,66,70,62,6,37,65,4,73,40,13,86,69,12,25,75,45,82,45,27,74,33,45,21,17,1,39,65,82,68,52,65,72,40,65,7,65,74,6,1,52,29,58,86,57,19,4,10,84,1,67,25,30,34,73,6,60,39,58,40,15,42,31,48,28,38,76,36,86,78,40,15,34,53,20,12,66,67,26,79,21,37,84,80,6,50,23,49,37,52,19,3,43,40,86,26,85,42,44,19,31,2,53,55,87,39,51,33,31,49,18,49,27,38,52,20,2,15,18,37,26,81,52,73,16,13,87,82,87,16,52,25,58,40,17,40,12,45,82,4,1,36,23,18,64,80,60,50,1,63,33,32,30,17,1,22,16,50,68,80,13,53,10,77,57,33,5,76,36,53,3,18,78,34,3,17,14,5,28,1,38,30,10,47,71,17,42,13,43,59,48,55,36,9,62,27,80,19,58,76,49,49,24,18,19,21,11,58,10,36,39,86,34,21,80,19,43,76,17,53,64,83,36,13,77,41,58,51,7,37,65,86,72,43,21,46,87,13,43,33,3,10,80,13,78,47,26,60,26,53,7,67,5,22,69,20,77,26,84,48,20,24,29,27,63,15,37,75,5,58,82,75,42,32,64,49,42,20,67,38,8,66,56,14,20,76,2,45,32,51,66,6,48,7,72,69,87,65,13,33,15,79,70,67,63,16,54,1,1,46,24,47,66,42,8,3,86,79,20,2,51,54,2,46,26,47,45,73,67,57,72,31,61,7,1,36,40,36,68,61,57,26,55,30,49,68,58,11,57,71,40,76,82,10,38,54,81,38,22,85,6,70,37,84,15,11,29,61,72,82,79,6,22,82,38,35,59,71,21,49,3,24,4,22,13,46,51,33,49,42,32,2,39,86,15,30,34,63,73,14,62,20,48,2,75,27,6,52,6,40,12,8,39,22,24,57,54,61,26,32,51,47,77,26,3,53,47,83,51,40,63,33,21,86,46,17,43,7,3,49,47,10,23,44,15,31,19,31,11,66,34,22,60,82,81,17,56,49,39,10,82,32,20,44,45,21,72,60,21,16,46,34,6,64,39,32,87,37,74,14,57,16,42,46,80,17,40,84,26,39,65,72,29,47,80,18,61,47,47,80,44,58,21,43,34,14,87,77,9,29,42,28,49,18,20,47,16,76,15,64,80,87}

    {76,25,14,20,59,20,39,20,62,52,58,35,71,71,58,52,19,16,11,28,73,1,37,61,62,78,64,59,72,21,63,14,7,22,62,13,6,30,28,32,64,43,59,13,17,28,66,30,71,69,28,36,77,46,57,2,10,76,15,85,27,5,79,30,85,2,35,22,2,77,19,18,12,82,9,1,7,78,23,15,17,81,44,60,49,84,7,27,15,49,70,13,64,57,62,66,47,47,78,84,51,20,23,67,33,58,4,72,38,6,51,31,71,84,14,36,76,54,50,70,61,37,36,21,20,48,60,60,25,76,25,5,23,59,1,11,38,2,24,60,74,68,24,37,30,61,69,68,81,53,31,25,12,53,9,46,67,34,32,36,55,34,26,30,35,73,28,83,9,63,47,31,5,40,77,19,6,64,18,69,41,45,76,67,8,79,58,75,60,17,24,38,34,27,65,68,69,44,19,24,62,78,8,66,42,29,83,23,50,6,12,32,46,29,74,28,5,77,22,40,46,69,7,82,59,36,20,54,44,55,21,47,83,35,40,74,23,1,30,30,63,1,8,65,42,46,63,27,40,28,22,66,2,47,86,44,80,3,13,86,86,48,78,75,3,33,39,54,28,30,71,29,74,20,33,9,18,40,22,68,77,78,41,58,38,25,42,10,16,24,75,51,38,50,33,53,5,2,39,40,75,39,69,29,16,11,45,38,54,5,29,6,54,9,46,83,4,45,20,26,69,46,15,62,36,62,52,11,57,57,83,63,85,6,40,86,49,43,68,56,33,59,16,68,32,36,40,83,87,78,20,61,8,13,3,43,57,59,35,68,78,1,27,42,51,16,3,6,32,28,5,85,72,20,59,79,27,61,60,46,25,78,27,63,48,47,46,38,17,19,9,24,32,67,67,56,53,68,30,31,63,80,78,52,24,53,85,20,29,81,9,20,8,67,65,45,6,25,2,8,64,46,14,14,53,34,64,24,31,83,54,60,84,24,77,43,41,28,32,87,44,4,46,65,26,71,20,19,50,60,63,15,20,11,20,53,62,13,28,10,19,21,47,32,27,62,21,53,25,33,37,71,81,18,26,51,23,63,4,34,71,45,27,58,62,69,35,39,22,35,8,36,50,20,51,59,70,59,54,15,63,34,30,72,58,13,19,1,79,33,42,70,38,82,80,41,42,76,56,40,29,16,12,2,81,26,47,70,46,77,17,33,13,6,50,7,87,75,60,22,83,64,45,26,27,72,33,4,30,68,51,79,7,83,22,55,33,71,28,74,3,61,4,20,67,64,61,21,87,49,10,80,46,10,66,10,9,15,56,41,27,68,47,26,16,60,52,39,21,33,2,24,6,60,60,60,28,27,46,37,21,71,45,61,75,48,56,25,10,74,45,58,33,85,59,39,74,14,28,78,84,36,22,34,42,49,83,1,10,38,42,39,71,86,43,27,37,49,71,36,27,56,52,79,60,52,48,63,75,43,63,64,28,2,56,27,38,17,2,37,18,71,18,13,51,77,29,56,13,10,75,50,57,35,46,51,73,45,75,55,6,82,38,35,71,4,60,80,76,6,74,84,77,80,38,9,63,64,35,23,1,67,17,55,63,53,37,14,44,3,38,46,77,83,86,43,29,37,70,30,15,72,57,55,38,73,11,42,38,26,72,6,68,16,26,51,42,5,53,44,27,72,37,62,26,41,49,57,4,62,52,41,14,13,71,64,7,40,70,23,86,27,31,16,9,71,5,34,31,72,46,24,78,25,77,59,81,41,3,52,55,84,41,70,18,75,83,47,17,71,17,53,83,17,49,22,66,74,49,79,50,51,3,71,22,2,39,56,38,66,22,40,54,70,31,49,68,27,21,11,73,65,8,44,64,80,17,66,19,35,80,6,64,3,70,87,36,51,30,33,14,3,45,26,10,64,77,5,6,85,2,49,39,69,41,62,28,19,72,72,38,1,45,36,54,53,3,54,19,48,55,13,87,14,37,84,59,64,48,20,83,26,53,17,69,30,76,77,26,86,70,5,76,26,38,67,22,46,39,70,39,62,63,9,45,65,74,14,44,7,36,47,18,71,37,32,22,1,85,87,8,86,29,69,69,83,8,21,23,1,41,69,15,58,6,63,32,80,17,62,70,36,67,2,82,45,26,19,23,26,47,87,41,63,82,44,71,82,19,36,37,63,63,82,33,45,19,56,80,33,86,16,48,9,26,60,24,39,3,77,4,40,40,63,32,58,6,47,61,79,1,74,39,49,62,84,68,84,2,59,10,61,51,56,26,69,30,5,29,52,28,70,51,57,12,3,69,55,1,85,32,81,51,65,12,53,69,38,82,43,11,8,56,76,20,66,36,20,40,4,34,84,66,33,77,29,14,20,15,41,3,78,19,43,56,87,56,34,33,50,57,82,63,13,25,8,30,10,40,33,17,5,30,83,16,73,35,80,8,65,70,2,70,66,56,52,32,31,2,30,36,14,42,22,47,79,49,74,87,65,76,62,19,25,37,85,28,35,69,56,55,86,59,20,2,13,75,28,61,76,11,47,7,79,59,42,9,16,54,16,64,86,76,71,48,33,8,26,49,51,79,61,86,47,34,52,29,56,78,41,57,62,54,64,67,73,20,8,18,81,34,20,51,43,56,17,14,18,25,13,9,78,85,59,41,51,45,76,39,7,79,46,8,2,28,44,24,11,22,38,57,61,80,5,27,52,62,31,66,1,74,12,17,58,13,12,35,44,87,81,50,81,64,76,52,19,65,72,24,5,50,47,24,39,3,58,84,75,56,16,74,66,20,66,73,17,13,51,14,72,3,87,5,1,57,21,59,38,87,65,1,25,52,10,13,49,22,29,57,74,84,38,6,59,34,31,48,11,27,45,56,34,83,2,25,38,40,36,17,20,66,34,26,31,34,73,8,15,73,12,50,22,25,56,57,13,5,15,42,6,68,78,69,62,52,35,69,69,62,16,4,50,57,19,61,35,3,74,36,54,24,63,21,15,67,15,34,68,15,63,63,41,87,65,48,60,64,73,65,50,27,48,6,5,70,41,86,19,22,46,82,28,73,38,7,59,66,45,44,68,44,38,81,64,37,4,77,42,75,50,44,76,23,15,24,33,59,80,78,38,21,43,16,62,45,46,12,53,59,81,9,44,62,38,10,55,45,77,22,57,20,70,50,30,66,8,21,4,10,78,4,8,68,80,78,53,9,66,15,61,23,19,58,30,38,66,70,78,83,76,13,55,5,26,64,29,34,56,68,29,62,38,12,29,50,85,69,60,56,15,74,72,80,71,74,70,72,54,25,8,10,64,86,27,7,33,41,34,68,64,79,49,28,74,41,39,75,59,47,27,85,15,29,52,34,15,48,73,15,7,24,68,73,19,23,87,23,8,50,78,27,17,1,42,81,37,54,9,26,72,2,43,64,66,4,14,61,22,21,40,79,77,60,75,29,25,75,46,76,51,5,2,14,52,23,7,61,33,34,71,86,30,68,23,31,15,57,24,26,35,42,50,66,51,69,17,41,36,60,63,60,71,29,83,58,10,27,40,25,15,6,68,80,62,73,13,51,51,34,53,42,39,64,8,19,77,43,43,21,29,51,87,46,42,51,22,65,67,18,12,39,80,73,69,44,72,54,82,87,20,48,30,5,87,40,21,20,21,80,42,38,71,35,28,85,14,37,53,72,78,54,43,71,13,45,46,39,83,20,69,85,57,24,80,23,1,31,17,14,66,28,16,62,81,32,29,40,67,68,69,65,71,18,39,87,71,43,5,76,87,80,37,68,27,52,14,80,57,84,79,82,26,6,55,65,30,63,64,39,17,6,65,14,71,29,42,78,43,86,52,57,5,78,64,84,24,57,49,75,34,42,17,49,68,6,61,66,87,50,1,84,24,51,12,87,29,87,74,23,77,43,41,1,14,19,43,86,34,26,75,51,22,65,7,68,76,26,23,16,1,4,25,35,79,12,86,27,37,2,2,49,50,37,35,34,24,12,41,11,43,68,72,16,42,56,37,86,70,58,47,64,68,53,43,40,45,83,51,24,39,39,38,84,83,18,2,46,54,43,54,52,1,75,31,42,29,51,63,44,40,9,61,47,38,60,69,37,62,76,66,42,5,22,36,66,46,30,49,73,10,48,61,79,62,1,68,44,11,28,20,83,70,75,72,60,37,52,18,63,17,57,20,45,33,24,40,74,30,2,81,1,18,80,86,48,69,85,35,8,55,5,24,87,37,15,82,80,38,52,48,53,86,62,31,61,39,31,60,55,66,60,78,71,74,74,33,73,14,49,31,70,54,59,80,24,39,87,40,52,44,24,51,21,67,85,3,15,83,73,44,2,36,11,55,27,69,60,52,4,86,54,54,14,59,32,62,50,52,18,65,86,40,16,34,78,54,6,79,13,14,17,58,71,43,50,40,4,8,57,66,73,42,29,31,83,26,32,75,27,52,71,6,59,46,59,7,42,81,55,72,40,12,84,35,19,13,24,73,72,74,69,16,72,85,68,43,2,20,6,47,18,66,58,56,28,19,6,59,28,47,6,41,32,17,84,84,61,27,10,53,38,25,21,33,46,18,58,43,7,2,27,42,21,73,18,7,55,44,85,22,10,17,35,32,52,51,59,28,6,53,52,47,70,83,65,32,38,73,29,41,79,77,80,75,74,15,50,83,52,13,80,33,25,18,36,1,54,42,84,7,65,58,10,87,30,25,31,13,40,27,8,37,69,64,44,28,33,2,87,63,85,38,20,64,33,35,4,32,15,13,86,68,34,46,30,5,50,29,38,50,44,74,61,80,14,49,50,33,66,15,25,73,85,85,13,6,78,19,6,42,9,37,34,28,60,38,85,55,80,72,83,28,37,68,15,67,43,85,66,1,38,70,66,8,25,79,17,27,24,21,84,43,31,36,61,61,40,69,61,7,76,35,77,15,6,4,66,18,47,4,37,41,57,53,23,27,24,20,67,86,14,67,8,70,25,38,7,83,81,36,33,77,27,10,3,50,64,6,22,13,58,36,43,33,69,13,49,14,42,46,6,78,80,70,7,40,18,21,16,35,29,87,47,59,9,22,86,36,68,63,45,64,48,48,35,12,12,39,77,27,29,69,12,2,32,18,40,81,14,39,32,11,62,77,8,44,85,27,32,3,45,60,21,19,9,35,46,38,69,77,67,70,12,50,27,56,70,9,49,85,84,24,12,58,4,87,21,29,54,23,31,45,25,85,84,81,56,16,59,12,76,23,15,60,24,35,66,70,24,51,63,77,45,41,68,86,42,12,66,64,87,8,30,23,82,64,33,60,24,42,77,34,87,20,70,74,63,35,34,79,5,53,54,75,26,45,32,64,86,36,36,86,1,48,5,60,36,23,71,27,51,47,44,82,81,69,57,20,65,18,1,60,39,15,81,67,20,8,75,58,10,87,60,21,27,15,59,30,51,33,5}

    Returns: 105850

  47. 70

    {91,51,74,53,30,94,10,90,8,60,30,74,76,28,1,62,80,61,39,12,14,75,6,39,55,42,14,49,88,31,48,66,21,100,79,1,45,8,75,24,31,1,80,51,98,32,79,56,6,98,33,23,35,64,19,99,84,23,90,63,44,55,27,43,24,9,24,29,69,10,34,82,87,80,72,12,52,19,48,36,38,29,94,27,93,75,50,66,52,81,14,65,55,98,23,98,30,90,72,79,86,20,6,39,27,35,7,46,30,12,33,41,75,3,19,45,68,55,29,60,46,81,9,20,90,85,41,97,78,86,97,27,97,60,43,40,75,23,41,97,90,37,45,22,41,27,26,45,90,53,77,80,10,38,1,8,89,45,49,79,98,34,62,15,40,61,3,20,64,85,29,92,25,34,94,64,74,31,55,71,61,40,80,37,6,89,69,62,44,40,10,95,18,34,36,83,21,96,28,56,99,28,93,85,50,1,35,49,52,67,85,7,6,58,93,15,82,90,22,31,2,19,40,74,99,66,23,48,74,44,62,37,50,40,8,42,28,55,37,29,33,23,85,51,42,91,58,56,81,45,8,70,97,92,86,16,93,13,23,95,52,68,87,59,63,26,23,35,2,25,79,32,31,65,83,28,82,58,64,70,63,52,36,51,3,33,36,11,23,18,17,97,34,24,89,54,100,69,98,71,72,66,65,92,7,11,66,20,57,38,11,71,58,76,32,2,14,12,45,74,93,69,78,58,61,100,37,34,4,20,71,41,80,96,68,100,92,18,99,23,59,15,20,35,44,53,18,73,52,42,99,18,21,97,1,87,99,68,5,63,87,4,46,99,32,68,4,85,30,1,75,29,25,47,52,89,47,10,13,21,92,58,90,41,97,14,67,86,26,71,6,56,46,62,16,59,36,53,19,21,52,80,83,34,25,65,59,20,67,16,64,25,18,21,26,46,65,63,25,76,39,34,51,4,99,12,95,24,74,56,13,49,67,43,9,69,91,94,62,7,33,59,97,23,7,44,58,78,31,2,4,40,93,93,44,17,52,33,89,35,91,61,82,36,86,44,56,58,68,96,47,85,75,38,95,78,27,45,43,96,96,8,41,89,61,56,86,1,87,79,85,48,13,90,86,54,66,16,91,1,80,46,94,29,30,96,4,65,72,23,19,60,16,8,51,62,21,86,22,52,76,17,68,34,90,96,44,83,82,17,17,79,34,24,25,65,65,64,57,82,15,64,14,51,82,34,100,40,66,12,94,84,21,85,61,5,63,78,52,37,17,1,70,87,44,39,77,4,33,36,32,92,88,64,80,9,28,5,25,96,41,59,38,70,18,83,89,65,56,18,28,25,90,2,43,91,77,73,8,2,44,68,26,87,85,84,43,2,66,31,60,61,3,10,87,21,44,82,73,88,92,51,79,23,96,63,29,12,25,56,17,46,73,6,61,70,97,29,91,17,43,45,1,21,7,88,17,80,75,62,42,14,40,50,99,82,79,71,95,30,10,55,94,67,81,31,10,75,59,45,74,76,24,56,86,34,19,63,5,46,22,74,78,80,75,44,82,55,26,29,80,18,100,4,100,69,70,33,54,5,37,54,43,78,98,32,10,78,48,92,17,21,96,26,78,68,77,58,69,53,88,47,17,98,63,44,61,96,59,16,55,91,27,98,99,64,14,8,55,16,14,68,23,84,100,94,46,81,44,74,17,23,26,62,77,27,38,95,97,11,84,16,63,83,91,24,77,12,38,8,49,96,25,14,31,87,36,62,11,45,37,26,94,51,81,79,44,98,33,56,73,11,27,52,43,64,6,81,56,50,33,10,57,66,95,83,53,81,54,80,62,35,45,13,95,92,67,43,11,75,51,20,68,61,69,4,29,86,47,52,83,99,71,22,81,23,77,97,90,59,7,55,21,22,80,38,85,25,96,26,1,53,37,27,82,53,59,7,100,39,89,2,36,39,65,86,1,77,27,4,46,33,45,58,28,57,91,74,74,30,20,49,17,35,51,31,59,93,27,79,88,30,42,60,2,2,25,14,35,52,84,63,65,31,29,66,59,63,8,53,5,93,3,26,10,42,67,94,35,8,100,68,99,7,100,15,86,85,41,38,17,1,88,48,94,15,70,17,68,67,11,82,73,35,16,29,78,46,97,15,15,87,61,28,72,87,24,51,36,96,94,93,15,52,10,90,71,37,91,5,48,47,19,84,73,65,56,83,88,25,40,67,72,36,22,18,57,29,46,95,8,17,86,24,58,78,20,27,38,5,17,85,29,11,8,58,65,63,94,83,24,45,55,77,73,63,28,25,14,16,100,94,42,98,98,13,100,92,65,93,74,83,94,15,86,95,57,77,70,78,42,39,56,69,57,13,30,95,80,16,46,69,72,21,69,72,75,37,3,64,85,26,65,14,19,13,85,92,10,93,87,60,54,42,40,89,45,15,72,6,91,10,49,89,89,98,43,96,31,50,47,71,50,99,86,70,12,47,49,1,71,87,40,16,41,57,38,82,47,31,49,79,60,76,91,16,12,51,97,19,84,85,63,61,16,83,17,19,3,47,44,2,21,27,42,85,17,43,66,90,97,97,54,93,74,62,18,21,78,89,25,72,16,85,94,50,16,26,76,27,43,39,98,58,62,61,94,45,72,95,65,32,30,30,74,33,35,40,77,17,44,3,88,87,48,64,80,41,69,67,88,81,48,11,43,42,80,29,99,41,66,10,100,35,7,45,66,25,13,83,73,99,73,94,45,35,59,78,65,71,17,63,68,36,59,94,77,86,41,8,12,38,51,84,80,87,63,8,56,94,19,62,46,5,40,28,10,96,9,41,34,78,81,54,34,85,35,81,58,57,7,72,1,2,13,29,4,23,83,4,65,52,11,73,76,6,54,12,32,48,3,48,72,96,57,43,46,60,63,58,18,60,78,86,47,3,45,12,36,31,97,32,58,8,17,83,8,22,23,94,3,84,71,32,45,75,18,8,69,56,2,67,4,62,61,16,61,43,41,29,2,86,5,29,20,3,90,7,8,55,25,97,89,54,77,47,15,26,52,30,58,75,41,97,45,42,59,73,28,12,18,94,8,2,27,13,56,68,82,8,38,55,18,61,84,32,52,74,73,91,29,57,74,99,95,89,40,68,91,78,74,66,62,59,91,20,74,58,15,12,46,18,65,10,69,33,97,8,52,47,93,35,77,86,18,91,13,78,77,1,35,50,64,30,94,56,88,13,49,85,42,32,64,89,82,57,7,59,51,99,41,12,25,70,1,72,96,17,23,53,70,15,92,21,14,28,70,67,35,16,68,90,53,48,98,68,66,22,3,17,20,1,96,8,98,96,18,61,8,89,90,45,29,51,80,76,43,38,1,12,89,85,9,84,31,61,66,97,58,80,77,67,83,43,45,71,57,70,14,46,55,45,11,36,48,93,53,21,37,71,94,74,75,80,90,68,58,43,45,34,58,49,27,30,5,90,22,65,24,7,32,59,83,42,25,98,20,70,40,69,43,71,30,39,55,72,60,25,58,41,97,5,62,100,81,91,46,52,49,36,78,90,87,70,43,79,52,54,79,79,15,55,89,48,51,61,29,71,29,49,79,19,19,78,11,93,81,22,88,29,45,97,68,23,94,27,76,45,63,68,68,36,88,79,27,34,87,59,55,91,12,82,87,12,24,63,70,46,84,41,96,74,62,29,49,97,38,12,30,97,61,51,26,56,22,70,3,55,97,35,96,22,6,91,94,16,37,34,30,19,95,84,95,90,36,14,35,83,53,26,95,47,1,3,3,48,76,74,50,41,44,15,92,48,86,63,9,97,25,79,39,29,20,11,80,42,77,90,92,56,35,96,66,95,27,69,6,47,73,70,7,53,84,19,58,71,31,25,11,24,51,77,53,90,45,32,46,99,71,30,39,37,81,11,31,71,36,35,61,60,90,10,63,36,94,51,5,71,70,91,50,31,44,94,14,71,44,57,43,3,19,52,88,60,47,80,84,11,69,30,3,44,77,86,25,1,10,22,87,89,56,34,72,3,7,9,55,91,4,80,58,58,88,42,5,73,34,12,61,52}

    {14,48,66,4,70,11,10,17,3,62,50,22,46,57,49,61,29,44,19,20,60,52,17,34,70,14,60,37,1,22,3,39,59,9,44,21,5,43,56,58,52,15,29,4,17,25,40,15,67,22,37,43,67,16,34,54,25,7,53,34,69,5,35,40,9,37,49,20,13,46,36,70,48,1,7,53,35,14,48,3,35,20,2,20,70,51,48,27,50,36,69,42,22,8,26,26,4,21,69,10,35,16,69,24,19,26,52,30,21,36,59,53,4,18,4,13,34,7,26,1,23,21,10,13,32,3,36,13,22,43,52,4,33,44,20,52,42,2,58,38,13,27,60,15,17,4,45,60,19,43,17,23,57,21,7,13,25,31,58,63,39,7,68,37,43,46,6,51,21,10,25,26,45,68,14,15,50,22,14,61,32,18,36,26,12,13,2,40,60,13,12,40,9,48,12,59,24,7,4,1,59,11,3,35,35,70,6,67,69,38,19,30,26,15,33,14,14,33,55,3,18,3,29,5,66,50,12,59,15,19,38,17,69,70,54,49,52,33,50,2,27,19,37,21,59,47,19,59,69,61,36,67,15,36,65,11,41,23,23,70,19,68,38,7,26,37,25,1,34,46,50,27,26,43,9,63,60,60,3,29,55,56,30,40,58,62,7,44,52,3,66,39,57,44,60,37,44,14,33,69,10,17,69,56,2,70,11,50,16,18,10,41,8,15,68,30,1,44,19,60,61,48,61,9,16,50,39,22,34,68,65,25,2,60,43,29,60,10,32,66,51,13,54,15,2,47,10,8,7,66,60,32,70,30,33,31,17,24,48,61,16,39,5,56,68,51,12,40,52,23,50,23,25,39,54,18,51,43,7,12,49,42,50,22,66,19,53,22,18,15,9,17,30,54,38,69,27,47,12,1,20,60,42,23,62,62,46,68,28,63,67,19,58,1,52,56,48,36,54,66,8,52,62,33,64,18,16,69,33,23,64,7,17,56,32,35,46,44,70,18,21,50,65,50,17,45,58,16,1,53,20,29,67,34,32,4,64,31,36,53,49,40,27,37,27,2,69,10,48,40,63,30,1,34,48,7,5,35,62,42,27,66,49,30,29,53,38,55,41,45,50,70,40,19,37,8,29,29,20,9,58,54,61,2,10,20,62,19,46,70,22,43,6,53,11,24,3,38,68,53,44,39,58,17,39,15,57,66,23,24,13,8,35,31,63,4,4,27,6,35,48,8,37,55,46,15,2,30,69,45,65,50,25,66,34,9,27,23,64,47,59,32,50,60,21,22,50,23,70,68,56,66,37,44,67,6,34,40,34,25,62,5,24,37,55,35,12,3,33,12,50,12,16,44,66,62,14,10,27,15,28,23,59,26,61,54,4,35,51,28,33,69,6,53,44,70,11,7,47,58,52,42,42,25,21,17,67,25,54,30,8,35,33,3,65,5,38,2,53,10,29,1,58,24,1,23,40,65,43,14,61,70,34,55,66,22,49,46,15,18,52,36,23,38,4,41,39,3,48,19,3,29,63,69,48,62,63,26,39,26,14,38,43,66,51,25,59,44,26,67,68,47,56,58,68,53,47,12,2,33,3,4,61,33,31,10,14,4,46,56,67,16,68,2,70,39,44,63,9,68,26,65,13,38,46,29,4,14,57,51,60,28,44,13,18,69,11,42,23,68,7,33,64,68,40,67,61,2,17,49,42,2,62,23,31,31,20,47,37,37,44,20,24,50,37,43,48,11,5,9,9,32,21,7,11,49,57,31,31,67,35,46,40,35,31,29,21,54,39,30,19,10,45,31,27,20,6,34,49,57,45,57,5,25,24,31,21,35,51,5,23,44,32,34,40,38,35,39,57,12,69,15,31,43,64,19,44,33,13,36,59,3,18,64,50,68,12,46,14,60,50,61,55,42,53,18,26,21,12,27,22,3,54,51,3,26,23,20,56,52,65,36,48,56,17,67,45,59,57,68,49,41,2,32,11,38,28,1,17,58,17,66,28,39,7,49,50,41,11,56,18,49,31,18,19,68,65,7,42,53,56,40,38,53,31,32,37,20,49,56,29,9,32,14,20,51,52,56,60,23,66,33,61,17,2,41,54,38,5,58,61,3,55,52,39,4,19,18,59,9,37,58,63,36,1,55,21,55,54,4,60,70,37,6,11,70,35,52,17,6,37,48,70,1,39,22,6,21,34,59,68,33,54,69,29,21,23,2,47,58,47,17,48,1,29,46,35,3,56,64,63,37,4,38,47,54,8,18,52,13,16,2,20,40,10,35,48,34,7,8,37,51,43,52,54,48,22,48,63,59,59,8,24,6,38,58,58,15,11,43,16,31,37,64,22,43,5,66,65,4,35,47,18,15,69,38,68,30,1,52,48,32,47,19,24,35,27,19,10,20,53,43,45,70,13,35,54,9,1,29,43,11,53,31,69,21,17,35,66,6,31,18,50,65,54,38,39,37,5,47,43,32,16,8,58,41,4,47,48,29,64,2,29,57,62,24,23,63,62,61,47,50,67,43,45,5,49,61,55,47,9,5,37,39,25,18,11,38,32,23,69,34,64,40,40,51,51,45,35,50,58,8,23,30,69,26,38,25,67,66,19,8,19,7,41,49,55,20,24,55,61,63,10,5,25,38,18,30,12,32,38,24,61,60,20,39,59,66,53,8,4,7,25,70,51,41,22,41,51,56,53,12,63,65,10,68,5,22,30,38,51,41,63,52,41,17,34,8,53,18,70,70,67,58,23,64,67,34,51,2,59,6,53,70,38,5,52,44,52,41,54,34,18,27,8,53,21,25,64,27,18,68,47,47,40,19,41,39,35,63,15,46,31,55,33,59,35,15,63,63,54,11,68,19,2,6,68,4,27,10,37,65,53,44,35,52,51,5,1,52,9,39,51,69,61,58,48,35,3,69,37,15,13,56,18,43,64,18,50,20,60,18,17,48,21,21,22,69,16,33,40,48,16,21,14,44,18,34,70,26,60,27,32,55,61,38,3,19,69,38,41,30,11,35,17,27,53,27,16,54,15,46,12,27,33,7,9,58,24,63,25,69,18,49,44,22,9,8,3,49,14,49,42,30,13,16,43,18,4,45,62,54,54,22,61,29,46,3,40,15,53,44,45,52,50,50,41,47,23,45,32,58,36,56,43,7,40,14,4,64,58,36,12,61,56,35,10,61,64,55,16,55,23,43,48,70,32,12,14,6,65,44,35,17,5,50,41,15,21,38,3,38,14,46,65,30,10,48,42,43,1,9,66,17,58,19,28,25,37,26,44,27,51,9,9,32,50,63,6,68,30,5,5,18,61,53,12,47,64,12,59,53,9,63,17,27,64,65,19,11,62,12,37,43,21,19,4,40,58,24,7,37,14,57,17,60,33,45,25,29,7,41,36,26,41,8,23,68,15,33,69,23,67,8,38,59,55,66,2,10,21,60,6,67,21,51,8,46,8,33,68,68,35,55,55,32,7,16,14,48,59,17,30,28,19,65,2,15,61,49,20,13,54,38,15,26,28,57,47,49,17,28,31,29,49,61,63,14,12,61,7,27,70,12,59,55,31,10,68,22,67,5,21,47,14,35,64,17,69,21,54,12,49,24,13,68,41,45,8,31,46,48,7,43,68,14,19,24,26,3,20,48,52,68,58,70,42,63,47,10,28,16,39,3,4,70,66,51,59,3,54,28,50,27,5,28,16,63,16,8,47,60,15,48,63,28,12,64,5,11,2,38,8,16,29,69,12,16,29,42,58,9,47,43,66,16,59,14,60,31,46,33,32,13,6,41,2,29,41,42,3,32,63,68,20,33,64,39,6,38,2,34,54,2,52,17,53,37,38,15,22,44,11,20,12,45,19,57,70,26,9,2,57,35,7,29,42,3,15,43,2,64,12,53,70,29,65,34,2,41,24,61,17,29,22,38,65,60,30,41,24,24,41,41,23,33,7,65,15,29,41,68,54,63,26,66,47,69,15,24,69,57,20,40,50,33,35,6,57,44,66,50,69,61,57,61,10,22,5,37,14,14,15,21,16,61,2,46,38,23,8,40,27,3,35,51,42,9,53,50}

    {20,43,46,22,63,10,58,53,14,13,23,68,15,20,21,18,43,11,55,10,2,18,63,57,15,41,1,22,37,1,29,24,35,52,62,25,69,11,10,5,20,10,66,7,53,21,10,53,6,39,70,7,70,16,39,30,14,18,61,48,68,32,67,6,6,14,28,16,54,54,52,13,47,65,3,32,6,44,9,70,39,9,27,53,5,53,67,57,65,20,16,7,44,23,43,62,19,2,43,67,51,25,53,31,52,60,26,26,16,21,39,11,57,30,27,4,55,2,47,7,55,43,42,2,29,54,18,50,6,5,24,29,2,24,38,44,36,61,53,21,3,8,65,16,54,41,5,41,39,27,50,26,12,58,18,40,10,2,46,40,4,69,15,39,62,64,6,37,35,5,37,37,27,65,26,1,22,26,35,2,68,8,66,21,31,50,54,35,63,68,68,46,10,33,12,63,61,2,41,49,45,32,15,22,52,17,21,37,19,35,32,49,22,45,58,6,66,18,56,24,52,46,38,65,61,49,24,21,53,47,19,33,41,1,24,6,67,66,20,37,53,19,28,32,38,63,31,36,33,54,3,59,38,25,69,47,60,3,4,60,29,25,42,15,10,69,41,4,17,33,19,26,52,29,47,54,16,64,44,30,57,20,37,45,13,51,32,38,27,7,16,18,70,59,33,62,5,25,16,1,33,3,70,3,60,11,61,8,1,50,41,20,47,15,9,12,66,15,11,53,29,58,63,12,34,16,69,51,1,49,47,26,52,20,41,41,30,42,47,38,9,33,32,11,50,20,23,61,8,55,11,37,51,7,2,2,22,5,12,24,56,11,31,28,3,70,40,40,55,19,44,41,15,56,31,54,2,46,12,38,67,61,31,52,24,23,45,69,27,70,9,68,63,55,15,62,28,16,68,68,58,1,35,25,33,34,65,67,48,24,42,8,57,33,12,1,16,38,4,12,20,28,29,66,14,70,21,59,7,42,52,20,58,3,44,62,68,22,1,18,43,63,64,32,35,51,19,55,18,37,38,12,49,31,43,35,67,30,13,41,11,62,29,55,35,24,44,53,16,10,15,61,50,21,38,46,69,33,12,56,20,22,5,55,11,24,12,56,5,64,34,4,15,55,6,10,20,14,25,66,3,27,32,50,18,4,4,27,19,20,58,60,50,64,31,67,2,58,38,11,40,56,4,22,30,70,33,18,62,5,8,65,41,40,21,63,33,52,29,39,39,42,9,52,4,19,40,4,44,66,36,42,24,34,24,28,60,41,30,23,11,49,6,7,52,14,29,22,28,35,35,23,44,13,20,27,66,36,5,24,57,67,57,43,11,11,5,22,65,31,36,12,3,32,2,21,52,66,22,37,6,6,59,11,33,58,51,28,19,26,4,52,42,51,69,10,62,60,6,27,16,13,2,57,68,61,14,50,61,65,22,67,60,65,45,23,19,17,7,49,44,65,19,53,10,10,31,63,68,55,38,53,34,16,3,23,28,41,43,1,50,32,54,15,69,41,3,41,30,21,39,36,1,43,24,54,67,59,60,59,16,55,14,17,66,70,64,64,41,25,30,46,27,58,41,56,39,27,46,3,6,31,22,40,51,27,26,33,29,20,53,68,57,10,10,20,54,43,65,13,45,31,47,38,8,31,62,67,42,24,16,25,47,26,30,38,38,13,56,47,27,67,26,21,32,43,43,27,63,43,12,56,63,13,11,58,13,17,1,57,28,21,54,12,63,1,58,54,13,51,28,15,19,62,53,13,65,53,11,37,5,5,52,17,28,61,51,8,64,21,55,56,13,25,51,56,57,47,45,14,69,27,46,16,10,29,5,56,59,27,2,2,3,62,12,69,50,56,47,49,70,48,67,19,68,36,39,8,19,32,48,42,56,32,25,45,19,8,22,62,45,27,55,43,12,24,1,50,3,46,30,22,14,42,63,28,45,41,29,50,39,3,21,68,15,47,22,63,56,12,4,57,55,54,15,47,8,67,61,67,32,6,37,61,4,54,47,23,26,23,14,29,20,38,24,25,66,57,39,65,50,55,41,60,20,67,29,55,68,34,34,66,35,37,53,44,2,5,10,38,15,64,60,57,38,49,37,48,38,54,39,29,4,65,18,45,32,16,17,42,32,21,11,44,68,26,49,38,62,25,40,36,67,35,57,22,21,26,65,70,24,50,60,18,29,28,9,67,61,44,63,57,31,61,31,2,70,15,22,63,12,47,17,44,21,16,52,18,4,11,57,68,40,43,62,22,39,2,53,57,46,64,58,34,54,48,3,61,23,37,68,9,10,36,36,20,10,21,44,23,52,28,42,38,62,62,68,26,33,15,23,41,65,60,60,43,19,16,67,21,62,33,43,66,58,41,1,20,20,31,70,17,60,22,18,62,67,30,53,29,40,44,2,48,40,55,39,61,67,22,67,6,41,67,13,49,26,38,8,38,14,38,28,48,64,32,52,45,30,57,50,5,6,17,41,15,17,26,64,52,49,48,14,59,26,5,26,1,39,18,45,60,17,38,15,33,69,31,61,25,9,52,67,28,62,43,15,1,41,43,13,51,59,53,9,50,40,42,36,41,53,5,66,12,69,43,43,67,51,57,21,11,35,57,23,56,22,22,45,65,50,15,3,66,23,55,48,6,24,64,55,26,64,34,68,64,56,39,59,50,32,20,59,54,14,31,51,23,35,50,33,25,70,1,67,66,66,4,50,54,45,1,50,62,66,70,62,42,55,34,53,35,38,11,1,45,9,6,50,10,57,2,58,68,2,58,56,47,58,38,41,19,8,68,56,57,20,23,51,56,58,47,36,25,9,2,58,34,42,52,16,14,34,34,12,53,61,32,56,63,22,47,13,26,37,28,34,66,55,44,29,17,3,55,45,6,64,48,55,62,47,47,53,23,49,62,28,19,39,70,42,44,58,31,69,1,17,27,27,13,51,18,64,14,21,14,20,62,29,23,16,24,67,22,45,28,49,25,16,11,55,24,49,70,20,44,40,20,3,39,47,70,13,41,58,11,13,54,47,22,23,4,58,31,34,39,43,58,21,20,53,65,1,68,3,19,39,34,15,58,17,32,59,66,44,10,69,45,2,45,67,31,10,30,32,18,61,15,43,23,41,46,25,69,42,69,65,12,18,32,55,28,64,4,42,41,54,67,39,31,25,31,8,19,6,36,7,11,55,48,64,59,62,35,53,59,25,29,11,27,52,17,2,48,34,50,6,43,42,17,13,69,32,48,23,27,18,3,19,47,44,69,28,61,68,46,27,49,19,49,25,28,32,15,58,25,37,10,22,11,55,16,33,63,18,33,27,66,1,60,32,51,31,66,11,59,37,56,70,10,34,36,48,39,25,60,70,33,60,62,62,30,14,22,55,2,32,22,35,53,46,39,69,9,5,47,17,67,59,43,35,17,42,54,47,22,53,44,9,70,52,58,63,40,57,29,9,33,61,24,23,57,19,35,1,15,47,19,61,7,57,27,6,54,5,66,26,56,25,3,52,44,42,2,12,55,51,41,30,1,6,50,11,62,65,64,57,58,22,58,43,7,8,51,39,48,2,38,52,44,32,69,55,64,46,62,50,46,39,68,2,54,20,19,35,30,6,32,25,38,65,43,2,15,48,38,66,70,19,65,19,67,37,15,14,40,8,31,25,55,70,57,26,8,27,30,57,59,13,53,6,6,37,40,34,61,30,20,24,47,32,26,61,53,70,19,63,1,27,67,53,48,46,66,69,50,29,25,34,57,43,32,64,5,42,2,14,46,12,37,4,68,43,20,68,25,16,30,64,20,47,55,38,57,10,21,51,3,10,23,9,2,56,25,41,65,55,44,43,36,63,43,61,68,65,54,70,20,58,9,57,2,58,33,58,69,29,64,21,65,62,34,5,8,45,62,12,10,58,45,64,19,15,50,53,17,48,29,64,19,12,32,25,61,20,5,59,69,26,66,60,35,49,44,12,50,13,51,59,44,53,23,62,27,69,7,44,1,38,23,10,39,11,68,28,1,34,54,64,28,45,6,9,24,50,33,48,5,32,61,66,38,21,51,65,61,28,41,38,20,68,27,48,31,16,55,9,2,27,51,46,53,52,15,37,56,51,67,50,37,45,45,22,12,39,44,33,41,9,22,65,31,7,57,36,9,49,63,26,66,17,8,29,60,27,18,49,51,9,1,38,40,35,21,51,9,68,53,33,48,55,52,22,70,42,64,17,47,13,49,23,42,49,40,67,29,1,21,18,21,68,26,36,68,2,43,55,59,34,16,17,28,46,64,7,43,69,12,65,27,34,59,34,13,7,47,31,62,51,66,47,14,25,55,69,12,21,60,63,17,66,25,39,68,46,67,49,23,9,31,19,21,37,19,54,8,69,63,40,43,22,70,42,70,5,28,41,2,47,69,42,52,58,35,66,62,37,56,59,10,64,39,68,2,47,37,67,5,68,43,7,10,41,21,22,55,30,29,53,45,9,3,5,26,11,28,19,31,22,15,19,50,24,8,28,53,17,27,22,23,55,35,32,64,1,61,30,5,25,2,33,45,1,64,64,22,45,39,40,27,5,4,34,30,49,30,28,41,20,38,40,27,37,6,53,69,34,17,61,64,61,38,20,34,60,15,20,39,14,2,4,66,59,51,64,45,4,61,37,5,41,56,5,52,20,46,68,22,32,12,11,23,41,57,39,17,37,33,2,62,37,22,38,4,59,1,17,14,3,31,23,70,68,22,10,68,62,21,25,67,20,29,57,66,43,60,68,32,48,42,27,3,8,47,66,59,65,69,2,14,58}

    Returns: 91844

  48. 72

    {45,84,17,78,10,2,25,17,77,78,95,12,85,71,81,30,31,37,57,64,19,38,48,9,39,33,30,53,1,34,62,56,10,88,21,63,16,46,51,63,29,7,27,11,77,64,8,43,10,96,35,25,68,13,7,87,66,59,73,85,57,80,38,29,76,15,8,4,100,70,69,10,76,67,6,76,44,76,72,58,87,26,9,11,90,24,61,47,78,80,85,24,83,42,33,84,19,33,54,56,39,70,8,49,54,83,6,52,27,89,9,84,33,96,57,9,58,53,35,99,52,2,8,73,60,44,9,50,10,26,4,56,34,98,2,3,74,13,18,97,19,49,81,92,5,22,87,80,16,1,12,26,2,3,92,98,52,35,29,16,52,68,56,20,69,90,49,18,3,29,90,87,85,96,86,17,88,64,34,69,57,31,100,91,76,28,47,40,32,37,87,43,29,30,59,52,92,23,94,81,78,29,86,34,98,28,2,80,61,36,75,29,11,29,33,66,84,11,16,44,38,22,63,3,88,5,54,91,23,95,40,67,41,68,78,36,4,89,53,46,90,46,75,77,74,6,92,97,42,19,76,27,45,9,96,43,44,59,24,77,91,32,81,7,100,19,55,47,7,81,97,92,46,64,56,70,44,10,51,75,46,24,62,58,70,91,92,75,8,12,78,39,85,16,64,85,17,53,61,79,93,99,45,14,46,11,92,16,99,72,48,55,75,2,20,71,97,82,52,83,44,39,58,16,43,43,70,56,16,53,60,22,57,94,99,49,20,71,23,96,89,71,87,78,9,48,78,97,28,90,21,71,49,94,66,96,57,100,27,89,22,43,22,91,77,59,18,28,6,35,5,20,56,32,52,35,81,30,50,31,61,22,71,16,55,70,26,83,6,77,42,40,18,49,35,100,99,42,13,52,64,62,75,7,80,39,63,45,48,54,58,7,93,1,3,65,61,68,63,87,15,91,61,45,36,81,44,62,50,82,56,90,20,74,45,90,51,82,39,65,93,63,85,18,43,22,72,44,88,6,7,44,38,44,54,38,64,46,12,8,79,71,25,9,35,65,23,43,64,22,3,20,44,58,48,46,6,20,45,97,57,41,28,53,62,5,26,100,85,75,9,35,22,39,69,21,92,46,55,34,35,86,98,61,28,42,97,24,30,76,76,49,94,28,91,49,48,14,45,24,35,88,25,81,90,72,98,63,18,7,95,7,53,84,38,47,40,96,44,19,17,37,11,97,63,91,36,86,80,12,12,11,93,74,4,24,81,40,100,93,26,8,96,85,47,53,76,53,41,70,9,47,48,64,14,20,17,27,87,61,53,99,36,92,88,99,12,98,23,66,81,20,80,93,35,98,80,25,6,100,88,7,100,2,37,10,23,19,79,39,80,51,80,12,47,69,36,45,21,50,36,8,28,54,88,32,48,36,73,19,81,16,75,88,6,22,9,19,25,79,47,80,24,82,26,31,33,89,4,61,22,4,23,74,7,79,21,83,8,32,49,59,60,13,11,5,29,70,97,48,65,61,25,37,77,17,63,12,95,32,94,54,64,65,81,59,71,59,53,85,13,63,99,20,83,97,16,55,30,47,73,18,66,11,74,28,55,79,56,39,34,39,50,93,14,38,42,3,3,58,30,71,6,80,87,93,65,1,47,62,5,27,95,86,89,2,98,36,65,85,66,7,60,50,3,43,48,80,39,81,85,96,61,8,20,59,62,77,20,41,46,24,88,14,91,49,8,93,40,55,59,18,92,26,27,76,23,27,60,68,90,16,85,22,35,64,46,86,4,1,6,98,9,83,69,33,52,63,13,23,23,70,15,16,19,55,92,93,11,6,5,97,19,12,73,16,67,94,27,56,1,66,99,24,94,22,54,35,66,95,42,20,93,63,45,88,6,51,98,64,8,90,53,9,90,19,66,13,60,59,77,3,38,10,89,76,35,85,30,33,64,100,30,41,8,34,27,57,94,58,87,81,30,71,87,33,72,17,86,58,100,63,24,56,19,3,1,74,94,27,73,68,2,14,86,34,38,57,57,27,38,3,30,34,31,80,5,61,30,30,59,77,74,19,80,17,12,67,45,79,39,79,68,85,58,83,4,30,96,59,35,73,64,37,92,10,88,74,67,48,38,65,25,82,10,42,35,62,24,17,83,6,34,48,62,50,60,10,81,52,93,17,71,58,54,82,9,8,12,43,51,30,18,66,80,93,47,58,75,75,89,29,32,50,70,40,38,84,39,32,79,57,18,92,13,74,52,16,6,84,84,42,45,77,3,10,43,92,24,47,26,100,93,34,81,47,9,1,15,22,7,17,99,96,41,76,6,9,98,75,26,24,16,52,56,60,31,13,48,98,1,9,22,17,20,33,40,56,61,93,73,98,52,88,83,5,46,75,73,39,85,90,88,37,39,65,49,54,52,68,54,67,99,53,1,52,18,47,12,63,78,87,5,58,73,75,44,17,83,4,21,45,43,36,78,72,9,87,12,59,73,9}

    {67,14,48,9,16,71,1,56,66,14,59,62,63,66,18,63,16,1,35,15,53,37,34,11,38,48,36,57,28,32,14,69,21,65,54,59,7,58,45,2,59,66,8,52,63,67,2,7,42,20,66,56,16,68,34,45,55,10,7,8,33,20,18,17,39,2,23,62,17,17,19,70,34,34,67,52,58,36,23,26,70,36,30,69,12,13,23,55,58,43,33,32,7,49,34,47,1,52,20,50,36,45,9,53,59,46,35,45,3,36,6,6,14,19,45,49,46,59,4,54,33,13,29,34,16,64,1,21,63,24,70,6,17,50,28,34,5,40,2,61,25,12,27,70,67,38,27,65,43,5,72,53,11,14,24,14,67,22,23,34,54,61,15,39,51,6,24,27,69,26,36,64,61,51,16,71,36,21,49,7,36,34,3,67,20,59,61,43,32,11,70,63,49,53,23,68,54,12,62,55,11,71,9,10,21,10,41,43,66,32,6,2,6,51,18,67,53,71,43,30,45,37,60,62,15,62,46,34,54,72,12,42,2,14,36,54,38,30,39,20,12,69,11,60,31,61,50,13,61,47,28,21,40,39,34,14,63,61,14,53,58,54,51,4,44,70,55,65,22,54,2,16,52,13,22,14,19,52,37,65,29,14,42,5,28,66,54,57,58,36,42,13,15,9,29,44,58,4,8,18,18,16,26,28,25,40,64,69,43,44,18,3,3,11,46,26,36,43,55,66,47,44,13,51,6,13,6,6,62,51,37,44,5,48,31,50,8,35,30,61,29,11,33,48,57,8,3,32,61,58,68,38,53,67,40,46,23,30,13,9,5,67,52,69,11,53,61,37,51,31,11,39,58,36,35,32,70,68,27,22,47,16,37,64,35,34,8,58,59,1,51,63,58,43,36,46,17,19,39,34,67,22,66,63,23,55,39,34,21,20,49,71,14,34,3,31,72,72,5,69,64,27,35,68,47,14,7,56,31,63,34,28,34,11,7,32,35,44,9,29,7,9,7,13,70,64,28,65,8,57,43,33,68,70,39,38,68,39,71,6,35,59,50,36,1,71,70,24,41,18,35,44,9,62,50,3,7,32,62,52,28,45,15,9,31,21,58,64,32,65,61,51,20,9,43,2,31,65,19,9,54,43,37,63,13,33,42,23,66,1,39,42,47,3,39,29,4,16,11,72,25,20,58,40,40,62,28,62,26,40,68,18,25,43,60,9,26,63,20,46,61,58,72,22,40,65,10,56,11,38,38,36,32,72,69,48,71,59,68,41,70,50,17,29,31,3,5,37,24,56,24,11,40,11,10,1,41,8,52,30,32,47,29,63,50,41,1,69,22,26,55,47,3,6,67,31,43,23,35,50,68,36,13,22,22,32,25,33,3,42,43,2,69,56,38,63,58,48,27,15,69,34,16,2,12,46,72,17,4,50,58,31,6,13,15,71,41,26,66,47,51,42,21,7,14,8,61,13,24,41,23,16,50,11,10,55,23,61,21,13,70,51,18,24,54,22,15,58,68,26,46,51,20,12,36,15,40,29,52,28,60,44,35,26,51,71,38,5,50,22,46,36,70,56,66,72,28,22,63,54,19,30,51,2,27,1,20,51,8,55,27,10,22,5,47,11,59,4,43,41,46,51,10,11,69,15,23,16,39,43,57,69,69,68,67,42,49,25,30,46,30,49,41,39,1,18,48,27,70,70,1,56,71,66,53,57,19,17,18,44,47,49,29,61,48,7,71,43,23,18,13,62,60,23,46,66,25,56,51,11,72,20,33,60,45,26,69,6,60,43,61,31,9,49,35,29,12,16,14,26,43,11,11,33,61,5,44,48,7,11,58,37,45,1,23,36,14,49,1,14,65,3,65,38,54,68,52,60,33,39,25,31,57,46,33,29,60,23,50,35,68,43,35,4,52,45,58,29,15,43,4,42,51,25,34,55,18,7,39,25,12,14,60,64,30,26,13,28,70,37,71,56,7,10,62,63,59,72,10,38,17,3,55,3,49,32,49,38,8,11,17,21,8,31,6,5,40,27,4,7,32,32,30,25,25,66,56,61,57,62,7,72,40,42,9,66,43,61,60,38,52,71,26,30,19,6,12,25,40,46,23,34,62,53,71,23,20,52,26,5,68,24,55,72,59,1,33,52,22,23,50,61,50,4,21,41,60,23,52,21,67,54,70,34,67,53,11,24,47,63,53,38,15,62,42,5,12,16,55,59,29,53,9,20,31,21,9,29,44,44,2,2,36,69,9,65,32,35,42,69,19,20,69,8,50,18,43,41,34,27,17,35,29,25,61,61,2,26,54,41,46,67,37,62,59,32,54,44,32,71,8,27,55,50,26,57,26,3,68,33,64,21,4,14,70,9,43,45,24,5,18,72,8,20,18,10,60,58,37,59,45,59,68,24,1,28,67,10,7,8,48,19,44,3,32,11,39,31,28,59,21,5,34,37,29,28,72,26,54,58,3,61,8,64,4,21,34,64,9,67,66,37}

    {21,67,62,1,1,8,67,8,2,39,57,68,48,40,49,15,40,19,31,19,72,21,33,71,64,65,7,55,15,37,45,16,14,37,20,14,69,21,59,29,58,20,49,66,57,60,39,39,65,65,8,8,47,6,31,50,42,32,43,27,34,69,33,69,48,66,36,13,70,46,10,49,38,22,43,55,26,45,54,27,44,51,16,36,54,23,68,63,44,50,14,44,8,52,17,14,31,29,3,61,23,17,37,32,25,32,39,42,44,40,18,59,72,9,64,29,25,35,6,21,12,22,59,71,8,69,24,45,37,65,43,10,27,31,4,68,43,5,42,6,23,64,5,58,65,15,66,24,44,45,1,42,60,43,36,64,5,66,21,53,51,30,13,42,43,72,36,67,19,72,5,47,67,7,44,31,19,70,11,1,65,40,12,12,17,46,55,58,25,58,17,17,25,30,41,4,60,27,47,56,62,38,6,52,61,61,7,50,2,6,65,21,14,17,63,32,1,24,10,57,43,51,29,59,17,52,59,65,63,21,2,56,31,60,7,29,8,71,22,23,18,54,54,21,53,41,5,18,70,2,4,16,29,63,6,21,71,34,18,12,10,36,57,55,66,42,70,25,9,1,38,67,30,64,36,63,65,17,30,43,38,8,61,57,19,16,48,50,33,34,38,14,57,67,65,65,44,48,7,60,58,50,60,30,12,39,39,22,32,68,40,42,25,5,7,51,63,4,72,67,34,46,6,27,69,68,38,56,6,32,64,10,67,64,36,43,4,35,18,11,55,61,43,44,28,48,15,15,33,7,1,32,62,63,50,17,19,64,53,52,11,70,34,10,48,53,59,7,54,16,57,32,48,18,2,63,67,31,18,22,44,52,38,23,51,2,32,52,46,71,28,31,16,48,44,15,34,71,69,36,23,3,12,13,14,36,45,71,9,26,70,53,12,35,30,37,55,16,56,53,21,21,21,53,60,6,64,20,10,49,20,52,69,36,28,63,57,17,61,2,44,63,15,15,33,61,66,24,23,26,67,69,2,8,47,51,35,7,16,16,10,67,59,50,53,4,4,45,53,56,21,47,35,7,24,67,56,12,17,18,4,65,40,62,53,35,51,1,47,12,35,33,19,12,67,15,58,70,8,10,55,61,41,47,32,19,16,19,3,70,31,67,30,68,44,4,14,2,46,31,8,71,37,61,24,30,27,6,53,33,57,19,68,36,19,39,19,33,14,58,60,35,33,32,1,33,33,57,7,3,57,53,38,22,16,53,32,71,31,38,10,8,69,44,63,22,20,45,30,44,30,37,39,21,43,59,29,58,22,55,20,51,72,57,14,1,10,27,13,21,35,60,36,40,40,36,4,56,23,8,4,49,32,23,62,31,72,59,5,42,57,14,23,57,23,56,12,37,5,34,18,2,49,17,27,25,29,9,39,5,56,43,12,11,3,52,35,43,39,66,49,44,65,6,16,27,68,66,35,20,2,11,25,38,66,2,49,8,12,67,60,69,48,60,2,51,19,66,6,48,69,43,42,15,7,58,38,65,23,11,58,53,30,67,12,27,8,1,25,1,48,29,4,68,71,40,62,21,56,65,37,30,14,64,37,54,46,63,39,41,43,27,11,25,38,14,59,23,43,6,14,26,25,61,24,55,16,57,55,15,29,5,20,41,69,4,46,32,24,71,61,60,22,44,1,67,16,54,27,25,68,14,2,37,4,48,31,2,10,21,66,50,72,62,15,72,46,50,55,27,24,24,10,15,16,51,42,22,60,49,51,6,64,28,2,4,1,55,50,16,62,14,70,43,32,57,34,17,25,70,61,52,19,11,13,29,44,9,30,5,30,37,41,32,38,22,26,14,9,11,9,59,7,1,56,23,4,51,56,20,24,9,51,29,50,38,8,41,39,72,11,55,11,35,69,35,62,53,2,33,36,69,63,57,52,61,20,7,7,15,58,38,39,17,5,54,47,30,70,62,47,35,42,12,5,20,50,37,37,42,72,38,8,41,60,16,43,59,52,30,42,30,69,3,34,21,55,43,45,69,34,23,71,24,71,65,72,52,17,35,47,68,44,33,66,3,37,22,38,56,4,55,32,72,20,6,21,26,17,40,42,3,71,61,15,52,48,22,54,5,56,45,19,38,8,2,5,55,20,38,44,18,46,42,54,25,50,61,12,15,23,38,33,5,66,42,72,27,56,35,41,18,43,24,45,23,44,34,30,30,47,5,55,49,12,35,23,4,35,30,67,71,10,37,53,2,9,32,51,56,24,51,57,36,47,18,1,30,11,24,19,8,1,39,38,60,59,55,39,53,71,6,59,22,35,46,23,56,52,68,21,65,41,68,64,17,26,49,53,16,6,44,30,62,36,63,5,38,54,4,33,66,36,60,51,32,13,31,49,43,11,19,35,67,32,53,40,12,56,14,20,58,47,17,28,12,10,39,37,41,50,25,4,22,45,4,24,68,66,23,19,72,28,37,12,25,35,23,16,48,61,37,59,42,70,45,68,3,20,71,32,1,71,13,63,22,41,41,2,20,13,35,9,54,38,29,7,24,61,66,51,23,3,46,72,10,72,51,63,7,13,23,54,37,48,9,57,51,1,66,32,69,39,61,53,15,36,66,56,20,41,27,17,63,11,17,58,32,2,69,66,3,70,17,42,11,68,36,9,51,67,56,55,55,9,25,16,58,12,37,44,45,14,72,39,21,33,17,66,14,15,66,10,21,56,17,52,21,62,25,66,9,66,58,70,16,26,36,50,68,36,24,26,69,38,43,27,8,68,52,5,35,35,56,26,67,7,1,6,58,18,47,39,65,41,40,37,32,72,12,62,66,15,59,58,26,51,67,15,6,2,5,60,50,50,22,67,61,36,17,36,43,65,57,38,57,18,58,9,6,20,40,70,24,32,39,45,66,39,15,8,1,18,21,46,42,66,1,55,14,35,25,58,14,71,20,41,30,2,71,65,48,37,42,66,41,60,14,41,44,70,71,2,64,36,51,64,55,8,40,39,6,46,64,5,56,53,53,69,34,64,71,53,2,57,22,42,47,57,69,66,29,72,16,13,14,16,56,40,20,69,28,22,30,5,61,10,28,28,5,3,12,14,10,60,11,68,57,40,15,72,7,6,36,48,50,55,42,9,19,59,36,2,48,9,11,72,29,36,24,27,1,7,3,29,34,44,8,61,8,67,61,16,48,42,71,26,35,67,51,67,41,8,25,8,31,13,48,51,59,17,67,50,56,29,63,3,13,57,30,62,42,36,47,19,50,12,46,29,67,66,23,35,28,21,38,60,71,70,34,46,49,25,32,48,5,41,72,63,30,54,36,42,30,8,2,25,30,17,2,61,47,41,48,9,42,10,25,40,39,61,8,63,19,23,21,61,20,5,52,31,21,10,31,65,26,23,51,39,62,37,58,35,68,70,3,16,23,8,34,31,14,56,25,49,23,62,38,10,69,8,3,47,7,49,3,10,59,18,6,41,49,71,21,18,22,33,50,4,27,20,10,62,71,24,40,38,66,71,33,24,41,48,54,66,58,25,6,45,8,52,50,62,13,1,24,50,26,52,68,62,64,41,37,3,29,68,31,7,49,21,53,50,28,59,37,12,64,49,58,29,2,50,7,58,49,58,27,57,65,26,37,15,8,20,28,62,68,34,64,59,18,34,30,69,58,23,36,34,14,25,50,16,41,59,65,17,3,72,54,3,18,37,9,40,45,52,69,71,10,62,20,33,64,11,37,33,54,30,72,48,24,7,38,59,72,28,72,20,33,51,23,55,61,57,31,8,45,20,9,23,40,18,53,70,39,65,49,44,27,66,36,25,5,55,43,25,9,30,16,23,42,40,18,44,8,39,2,66,49,43,51,35,28,12,65,54,64,39,10,39,9,38,61,3,11,47,18,12,61,4,2,23,59,11,8,31,38,16,65,10,32,5,19,59,67,3,62,67,64,47,64,3,62,30,57,55,19,12,47,59,66,18,45,22,60,55,17,20,69,11,72,52,67,40,60,30,45,1,20,10,30,28,15,57,28,2,48,43,20,47,57,23,70,41,17,11,31,15,16,54,23,29,5,15,58,28,12,36,12,65,60,19,17,38,19,50,10,10,32,55,59,32,55,38,61,27,48,45,44,1,61,37,23,5,58,57,2,40,6,6,63,32,64,54,11,52,14,46,11,16,65,57,66,23,20,4,4,13,7,45,62,64,8,12,47,47,16,50,52,16,8,58,30,62,30,63,32,8,13,29,24,71,11,70,6,1,30,8,44,23,7,55,51,22,39,15,19,54,15,50,24,29,30,4,49,40,15,34,44,1,72,58,62,15,26,6,38,7,48,59,4,59,71,5,40,34,58,30,72,6,31,4,71,2,64,25,66,12,17,58,18,3,49,16,68,58,51,25,48,7,15,54,53,35,24,5,54,33,38,26,32,43,31,38,5,4,40,64,14,59,25,51,19,27,33,11,56,9,49,47,64,61,26,38,22,25,54,1,65,49,28,18,69,70,1,54,14,5,19,41,71,44,14,72,24,20,1,16,56,43,38,72,37,4,29,72,43,22,70,33,29,34,29,68,8,20,56,56,18,66,37,68,11,29,31,11,40,65,63,27,3,32,70,17,7,15,43,23,38,66,11,70,21,6,39,21,16,69,5,69,59,51,43,48,5,57,7,10,28,26,12,19,5,62,16,71,66,46,31,39,34,45,28}

    Returns: 55108

  49. 62

    {76,58,65,21,100,4,99,77,7,7,11,100,41,28,61,89,96,54,91,72,23,23,87,67,86,12,32,80,13,53,28,6,26,12,74,68,38,4,33,19,61,30,23,80,40,9,33,10,76,40,72,45,81,12,1,56,24,43,94,58,96,23,96,96,43,93,67,30,79,17,66,43,63,40,68,80,19,81,76,75,40,32,58,78,44,96,69,49,78,62,51,68,43,23,82,62,17,59,23,38,53,21,84,56,10,39,16,98,49,30,100,19,8,78,34,100,71,76,32,57,24,78,49,4,74,92,5,17,59,23,49,70,77,69,92,94,94,52,7,35,56,68,92,62,91,10,48,17,21,67,68,89,53,29,41,18,35,16,81,45,41,66,55,61,93,26,52,13,42,1,34,65,75,27,57,46,39,68,100,29,14,48,38,49,24,64,91,100,63,26,71,65,62,70,65,41,43,30,39,98,94,86,58,21,18,73,83,10,25,39,69,82,12,38,52,66,56,38,92,81,74,34,62,9,45,74,44,91,62,78,25,5,100,2,45,12,82,53,30,81,47,35,46,38,26,91,72,37,35,45,20,60,78,88,66,28,46,59,55,26,96,38,91,21,39,78,25,67,74,57,46,91,57,82,11,70,48,21,29,9,49,68,6,61,14,44,51,23,99,52,40,9,47,83,55,51,73,43,80,97,56,14,7,26,14,44,18,89,9,50,71,76,49,52,37,5,15,83,92,6,84,65,22,83,46,53,36,32,15,12,57,86,30,8,79,91,66,68,19,85,61,84,32,2,35,11,80,18,98,28,45,73,17,47,42,30,41,42,34,71,29,2,3,10,30,20,12,3,50,52,6,2,84,8,30,76,65,50,27,60,74,9,57,17,66,71,9,56,26,8,41,5,51,71,28,73,56,95,53,14,25,43,76,36,15,12,90,82,90,21,79,73,91,36,86,60,92,39,83,2,75,10,74,92,38,81,93,77,17,38,88,51,22,59,28,55,12,37,86,3,17,94,33,65,91,9,58,2,18,17,80,75,20,66,34,22,41,90,20,10,13,24,1,87,27,29,77,48,29,52,14,46,91,67,17,8,6,44,42,10,17,92,3,12,42,44,86,54,2,63,26,62,33,48,71,33,82,68,3,93,27,50,91,88,6,83,35,71,65,28,55,21,33,55,95,59,92,69,76,78,77,13,92,68,82,86,83,59,16,70,10,59,8,73,69,54,41,89,38,70,34,1,85,74,19,10,25,86,32,61,55,5,84,63,45,71,30,93,71,36,98,31,31,24,65,59,92,20,22,10,29,47,83,59,50,65,3,4,89,18,10,95,45,80,75,40,68,13,91,14,77,8,15,90,33,26,72,16,55,32,2,50,85,76,70,86,69,31,83,88,42,96,51,87,19,14,35,82,43,53,21,32,49,80,78,5,71,30,86,22,11,60,77,20,6,84,55,5,68,53,40,99,53,61,79,6,11,54,3,85,8,5,45,33,48,42,50,44,50,28,82,46,84,72,18,87,89,14,41,61,6,90,83,67,87,62,59,11,50,66,22,60,43,5,9,97,95,12,100,7,21,62,8,100,20,36,32,56,28,94,36,25,30,35,12,48,8,93,68,8,17,48,10,28,88,3,54,18,30,3,82,71,95,67,70,9,57,40,47,66,39,48,38,22,47,96,10,83,12,51,90,40,30,70,57,29,71,76,16,42,7,19,40,62,92,49,35,11,22,50,23,21,8,17,55,90,34,1,63,81,84,21,34,98,52,33,51,66,79,71,57,41,3,70,36,49,3,75,66,80,48,76,86,37,65,18,37,54,59,32,97,26,72,86,83,52,27,59,24,66,38,69,10,97,66,23,2,63,89,100,80,77,26,81,91,23,85,21,46,36,36,78,47,10,100,60,57,20,35,6,22,70,27,76,57,28,73,62,24,46,94,13,26,21,74,98,3,81,12,49,36,82,2,20,50,90,95,47,13,47,78,98,9,47,16,41,31,23,21,90,41,19,90,6,98,86,29,86,11,33,7,9,75,18,21,35,57,73,43,29,61,19,88,95,82,33,26,93,43,14,45,41,79,75,47,76,61,30,77,4,61,71,24,46,76,29,10,28,77,23,68,72,13,100,63,79,25,97,17,12,26,63,58,30,98,7,22,42,13,37,90,7,17,36,6,18,66,62,89,88,45,94,41,62,49,91,19,64,80,28,100,12,21,89,10,16,79,45,80,96,64,97,4,77,48,19,14,3,71,61,64,70,12,88,8,63,10,17,84,34,44,50,72,64,70,97,86,100,22,31,38,73,45,99,12,70,35,87,75,25,32,17,26,100,60,35,47,4,24,38,96,9,92,59,81,33,43,58,14,42,78,15,29,47,39,58,83,88,8,33,51,7,39,49,78,10,47,8,46,87,45,86,45,29,23,93,8,46,95,93,10,8,1,71,100,56,39,61,15,88,5,58,48,49,100,10,89,87,70,47,12,20,25,23,26,68,37,13,84,79,34,93,40,32,31,48,25,44,29,43,99,98,62,68,32,35,25,16,69,64,59,24,100,81,7,31,28,72,31,26,24,77,25,61,13,17,92,36,51,41,93,84,20,71,15,100,81,55,43,99,76,19,92,22,68,96,47,19,36,22,17,16,90,91,17,81,90,50,25,65,69,51,44,34,77,60,43,78,60,63,36,92,40,8,37,46,58,54,57,64,72,18,78,14,76,47,93,8,30,47,43,20,100,79,85,60,25,18,24,86,22,54,5,26,14,24,19,53,2,39,76,66,48,97,35,84,20,34,47,86,54,21,7,93,18,78,89,18,55,25,21,72,27,67,61,67,56,74,12,10,52,90,61,39,52,66,46,37,46,22,81,89,31,77,30,50,92,19,5,57,81,32,94,74,98,12,31,68,28,91,52,78,37,86,12,20,58,68,30,75,16,1,36,91,98,31,8,26,55,91,92,36,68,43,32,68,89,25,5,46,25,59,83,23,40,53,13,5,56,68,13,47,27,48,38,59,94,51,75,46,94,17,77,78,72,13,16,51,88,46,93,93,25,74,22,42,8,1,2,11,14,64,3,45,15,17,79,63,34,31,77,71,72,10,34,41,19,69,5,40,41,21,17,99,71,24,48,25,80,85,66,60,61,28}

    {52,10,61,33,9,18,54,50,51,42,42,22,58,9,58,42,26,59,1,21,13,8,43,59,15,25,27,53,39,57,59,41,26,1,21,24,55,60,2,26,4,3,29,9,45,29,40,38,57,48,2,32,8,10,11,62,18,23,7,11,38,1,10,4,9,61,4,31,55,11,28,26,40,44,32,28,23,58,18,5,2,13,37,7,17,21,38,27,24,51,23,44,8,60,55,9,35,32,24,36,9,45,34,33,35,15,12,29,47,53,53,55,57,23,55,12,7,38,39,56,1,10,20,41,32,52,11,17,29,44,22,23,57,4,28,56,42,38,20,20,9,23,18,38,32,24,42,50,25,9,9,53,42,23,20,22,1,52,42,9,1,38,20,7,50,5,10,19,58,5,46,7,28,36,45,20,54,57,58,31,34,12,36,45,15,4,46,24,21,41,53,44,18,61,60,6,26,55,56,34,62,28,20,2,52,8,57,39,48,61,62,7,16,7,24,38,37,54,62,58,18,3,44,19,1,3,16,45,2,6,51,10,3,33,8,53,30,53,61,55,37,56,40,51,26,38,54,1,38,59,55,23,47,43,29,57,32,48,60,32,42,14,52,25,42,52,50,47,47,54,22,43,26,36,45,26,13,24,8,58,20,53,7,6,55,24,50,61,57,11,11,40,19,21,53,21,23,30,22,10,26,42,61,44,21,3,51,50,33,53,25,10,14,39,8,39,29,18,5,5,42,61,13,31,24,58,5,23,56,29,60,62,19,48,51,35,5,14,16,52,36,13,37,54,4,5,12,58,49,38,61,14,19,33,45,38,37,16,48,55,13,6,14,14,4,19,31,10,55,55,23,20,50,47,62,24,46,25,39,7,25,28,23,8,18,56,7,54,56,34,2,13,24,42,37,29,16,5,20,12,37,62,60,17,61,26,23,19,24,62,25,7,28,56,17,53,24,20,3,52,47,53,3,47,62,28,3,2,42,51,28,54,62,14,7,31,36,35,8,49,53,35,60,55,3,25,23,45,3,48,26,32,37,55,27,34,37,54,61,10,59,37,26,54,25,39,3,24,31,1,62,4,23,24,15,48,61,24,28,26,13,59,27,9,41,11,56,49,34,62,28,25,18,40,49,43,35,48,32,53,52,26,43,22,26,59,1,2,45,5,20,21,13,20,62,26,62,34,11,58,2,14,36,26,40,17,6,7,45,56,14,44,5,42,58,53,60,49,25,45,32,44,54,17,1,37,17,56,41,48,6,47,23,11,13,59,61,7,10,54,62,36,34,10,31,56,50,3,51,32,45,47,56,44,24,16,47,20,38,39,15,31,4,54,33,2,53,59,51,41,26,48,58,19,36,37,47,19,12,21,20,9,32,19,24,32,11,41,26,46,41,6,43,23,42,24,59,53,58,11,9,58,47,57,27,40,21,38,48,37,38,49,14,46,53,23,25,18,27,38,50,2,43,21,15,32,37,52,33,23,5,51,24,33,24,7,48,28,19,20,58,32,13,13,59,13,56,36,31,4,13,38,49,38,19,23,43,14,48,25,61,57,58,32,50,49,6,46,1,24,6,51,23,36,1,29,54,20,48,22,47,8,54,26,49,51,11,55,60,50,48,19,21,37,3,33,2,20,43,44,39,42,33,4,42,13,34,7,7,9,28,13,34,39,39,8,29,51,17,5,51,52,27,34,46,49,62,17,53,49,48,43,16,12,51,50,47,59,31,4,21,35,16,24,27,26,24,37,48,43,12,52,51,31,50,50,29,51,56,1,26,47,35,39,56,37,4,59,61,6,50,49,2,5,17,39,23,10,51,4,5,54,47,13,44,21,18,40,17,59,5,49,23,5,16,31,14,61,3,4,33,26,56,35,51,60,15,22,9,45,45,62,46,46,57,61,49,9,62,58,53,33,58,43,36,18,26,19,11,34,10,8,5,16,16,3,13,35,36,60,8,47,37,18,49,38,54,36,50,7,28,35,45,31,13,21,53,22,43,23,53,43,44,37,39,48,9,5,28,51,42,26,10,34,30,31,55,48,22,20,52,18,29,24,10,3,20,32,7,42,48,47,36,13,22,43,43,35,44,50,44,11,27,8,45,11,3,39,38,56,24,45,41,16,16,21,38,39,9,16,36,21,40,4,16,52,55,57,39,25,8,54,33,39,10,62,30,51,57,57,54,46,2,13,9,2,56,62,5,6,56,60,30,34,60,26,1,4,13,52,20,22,17,7,26,1,32,52,57,26,16,60,42,62,37,61,7,13,60,8,6,12,18,58,50,25,54,49,62,2,35,9,3,58,24,19,52,42,55,54,16,29,40,9,7,25,57,16,21,28,26,47,36,19,1,4,21,53,56,22,31,60,4,52,36,53,9,14,20,13,58,39,46,12,8,12,32,12,3,35,44,10,44,17,18,18,23,52,5,61,12,22,20,32,26,58,37,40,58,60,58,37,21,6,61,56,34,8,2,44,6,30,53,18,17,55,14,49,14,31,46,28,58,7,23,42,57,3,21,49,24,34,52,31,59,57,46,33,9,20,20,19,20,32,52,42,6,21,32,42,14,36,35,15,9,12,31,44,41,38,29,2,5,41,22,54,2,10,50,38,25,58,28,29,35,16,12,20,42,50,25,41,10,35,28,40,34,58,38,25,5,61,11,53,42,49,1,46,52,62,14,16,9,29,16,14,50,49,9,12,8,7,36,23,41,55,15,30,54,17,4,43,44,8,39,22,7,28,2,22,25,59,47,39,50,45,45,48,4,23,11,1,37,11,42,30,12,12,17,41,12,41,10,18,5,20,33,16,9,53,56,28,39,7,35,32,8,54,46,25,31,17,46,34,56,41,5,13,10,44,15,48,51,19,8,49,4,10,6,12,10,41,25,53,33,50,9,9,55,52,7,37,51,3,16,60,28,61,61,59,22,4,15,15,4,49,8,59,20,57,4,18,9,1,46,20,53,26,32,22,2,60,45,28,50,51,28,33,25,24,41,19,42,11,8,26,37,40,40,7,3,3,13,57,60,59,54,36,54,31,44,57,2,52,3,18,19,1,48,32,1,32,62,17,1,35,62,9,52,33,7,3,61,58,54,50,59,51,20,46,25,6,27,12,29,26,56,37,17,15,13,25,21,62}

    {40,28,43,9,29,43,22,44,62,38,58,58,17,38,18,59,47,9,22,62,57,51,28,24,7,7,29,16,14,6,28,23,50,43,52,62,41,32,53,30,51,44,44,52,50,42,14,15,22,14,21,37,26,37,6,8,17,23,25,14,24,53,37,41,37,47,57,33,23,19,17,47,40,3,44,7,53,24,5,38,5,2,12,38,51,40,45,46,50,37,11,44,26,23,49,61,34,53,52,51,12,11,28,41,34,27,59,53,56,59,32,10,37,12,25,30,52,49,9,37,41,22,14,21,17,20,40,12,25,42,52,50,22,4,61,62,37,55,5,48,44,28,6,34,20,61,26,29,32,37,58,45,5,47,30,52,44,9,62,18,42,42,20,28,45,45,51,24,9,11,40,9,56,46,28,7,12,50,35,2,20,31,2,7,8,59,44,15,57,12,4,39,47,57,47,1,4,55,57,35,17,35,37,24,49,48,34,26,50,1,3,7,39,11,44,12,10,3,17,27,34,9,59,35,2,52,57,36,27,47,19,1,41,48,10,32,21,8,15,49,45,1,19,58,13,2,35,30,54,12,60,52,47,42,16,8,22,36,23,62,2,44,20,52,32,16,45,11,35,47,8,16,62,30,42,59,9,9,1,40,19,62,10,34,46,19,4,11,47,19,9,52,7,15,5,50,53,43,16,41,61,4,35,47,7,62,11,60,57,17,53,41,23,9,16,28,22,37,6,37,23,57,47,48,16,16,19,46,5,43,47,23,31,8,1,35,59,51,38,39,50,16,12,23,23,13,20,52,1,33,11,55,44,4,25,7,50,24,14,9,41,52,6,25,23,14,38,53,12,58,59,9,29,34,31,9,60,49,1,7,57,9,59,59,1,10,27,42,43,54,57,62,14,54,62,30,36,40,59,46,55,24,52,13,48,4,2,53,19,58,44,51,29,29,46,8,4,61,5,51,18,22,46,57,48,15,20,4,20,42,10,23,16,49,35,10,60,20,28,9,24,43,56,56,55,40,50,29,3,14,25,48,49,16,8,28,13,53,41,41,54,58,14,21,48,13,3,31,2,42,44,57,44,1,58,12,12,21,46,18,51,33,34,13,37,6,35,45,9,61,3,38,35,49,33,23,33,7,15,33,14,1,10,61,12,53,51,11,23,24,13,60,22,36,9,3,4,18,53,18,52,37,1,53,5,16,44,16,48,48,43,21,2,34,57,9,20,35,27,3,46,42,49,60,24,37,9,36,34,6,38,12,34,51,55,6,6,57,41,60,46,48,26,60,12,53,33,19,30,29,57,54,46,22,18,9,27,61,41,44,36,48,1,23,61,42,20,11,61,17,56,8,49,51,62,54,9,17,52,4,40,48,23,13,44,8,6,18,61,16,18,39,21,9,52,14,5,5,2,48,56,14,8,39,41,50,56,38,35,31,2,21,15,43,43,47,11,62,55,55,58,15,32,32,30,13,37,31,5,6,56,11,4,52,62,35,4,6,4,50,16,23,11,28,21,47,48,30,14,11,36,11,19,32,29,44,1,12,13,21,44,26,13,32,21,27,13,25,36,7,47,20,16,61,41,16,62,30,57,47,10,8,30,28,13,3,54,61,36,40,38,42,47,5,12,6,61,48,51,24,39,8,46,45,14,2,15,42,56,14,30,60,29,3,51,38,1,10,17,7,61,2,50,53,49,34,50,2,47,40,52,15,56,19,29,61,62,25,62,24,18,18,49,12,61,32,18,54,52,44,31,45,52,22,9,27,15,51,47,10,9,40,61,1,54,3,52,24,30,59,56,53,4,20,17,19,17,22,9,57,14,31,25,20,38,9,49,19,38,5,50,9,61,8,46,18,41,31,55,47,49,43,15,32,13,56,55,7,22,51,16,9,8,61,51,43,55,43,28,3,1,17,18,54,12,35,48,39,5,24,2,57,33,4,42,16,26,27,49,60,37,60,40,8,5,9,49,23,46,30,29,36,57,17,55,6,55,2,23,9,1,2,18,23,30,30,15,10,60,15,12,31,54,21,7,33,42,49,60,32,37,55,57,56,15,60,43,17,36,60,21,32,59,46,60,14,28,20,48,32,56,58,38,37,3,48,12,6,18,51,30,62,8,12,18,19,29,52,26,49,53,15,62,7,52,18,26,25,20,50,32,57,24,3,11,40,36,45,23,55,58,3,47,43,36,47,7,42,22,44,4,16,4,24,36,24,8,45,15,9,31,33,2,57,23,58,22,9,31,28,30,58,38,5,52,3,9,30,60,6,32,43,33,10,25,8,44,35,11,28,31,36,27,56,18,39,28,49,50,22,31,52,26,56,40,28,47,59,48,33,50,43,36,29,48,49,15,12,17,35,46,35,28,50,35,5,3,46,3,8,36,21,29,13,3,14,28,10,25,45,9,19,24,50,22,47,4,20,40,19,28,9,54,21,18,62,24,62,33,47,50,22,33,16,7,32,29,22,28,15,20,32,55,39,3,13,28,5,30,16,8,29,4,21,57,5,16,56,49,47,13,27,10,36,57,50,52,42,22,19,20,46,5,52,5,14,45,53,57,46,44,62,52,29,5,5,60,8,3,31,44,8,62,37,20,52,24,5,60,19,42,28,26,58,38,22,62,27,10,39,23,4,7,46,40,44,31,12,21,16,22,59,60,30,38,62,23,25,5,28,13,35,44,35,29,43,3,4,3,10,27,31,13,57,60,40,57,9,23,29,25,9,43,53,26,52,13,39,40,24,1,59,12,19,8,5,33,13,37,30,3,5,46,53,7,25,62,13,9,39,6,9,45,13,34,37,15,10,15,11,25,41,51,42,33,33,28,43,16,55,53,19,46,9,21,6,54,55,11,55,5,26,2,34,24,42,43,7,37,2,36,46,42,57,38,41,59,58,50,6,16,37,11,14,26,16,49,31,22,17,49,59,60,60,19,62,29,54,48,52,30,24,55,50,30,5,7,45,41,57,51,2,53,1,29,58,4,12,34,23,48,25,38,42,11,53,49,61,2,46,12,54,52,44,19,33,9,56,6,57,6,42,48,37,4,21,7,34,26,56,38,17,14,56,35,43,58,13,36,37,3,47,8,26,56,17,15,7,59,52,2,56,49,36,7,48,43,16,14,4,38,59,38,46,28,7,26,40,25,8,23,9,52,52,61,33,52,50,35,38,5,12,62,45,36,54,4,13,58,5,6,18,51,8,61,8,52,21,53,1,60,29,26,9,37,49,56,62,37,15,56,56,45,25,53,55,3,35,40,17,61,12,58,51,15,36,31,38,43,21,45,22,46,55,34,25,15,48,38,36,60,55}

    Returns: 66541

  50. 69

    {45,75,61,53,10,55,79,36,96,71,79,44,40,86,5,65,79,13,63,57,48,13,40,49,47,10,57,47,1,74,42,90,89,20,10,1,1,3,82,37,25,48,87,65,56,51,60,54,8,90,65,62,51,53,15,38,14,39,30,92,65,3,83,68,58,48,93,60,53,15,14,57,80,17,88,49,49,70,46,29,74,27,39,36,6,77,18,37,77,75,93,27,53,11,29,6,17,51,55,53,28,92,13,59,92,74,84,61,47,22,80,69,46,84,29,71,87,95,19,25,44,42,9,8,9,51,89,35,75,96,74,26,50,34,42,74,22,13,3,61,48,68,37,67,91,85,14,1,89,83,53,73,83,53,100,63,99,30,4,78,53,17,25,95,93,80,22,51,80,21,19,60,72,99,52,95,54,26,83,70,42,36,74,5,56,20,80,56,66,65,60,24,70,25,65,22,95,75,10,41,69,89,1,2,34,6,45,83,60,90,45,12,33,46,39,97,78,79,16,87,20,68,23,24,62,42,58,21,9,60,87,97,60,64,83,70,41,75,69,32,39,5,51,73,66,5,11,89,98,49,9,7,48,56,5,14,17,67,7,79,60,84,82,7,84,8,63,21,19,10,91,52,77,13,51,45,41,30,90,26,7,13,10,67,48,81,49,64,40,61,27,8,47,45,9,41,52,100,27,40,56,78,84,17,97,72,69,30,58,17,76,29,75,23,48,83,95,94,42,50,43,59,30,21,54,57,43,40,3,47,88,26,82,82,59,53,54,77,10,27,43,20,41,80,2,28,92,35,21,24,53,51,59,6,43,35,92,40,10,11,72,31,66,94,60,55,9,48,67,13,85,50,13,51,43,45,7,34,37,84,29,88,98,73,82,19,52,92,71,29,4,61,87,75,84,10,17,83,92,88,70,28,67,61,42,8,52,10,32,81,10,17,31,26,22,98,27,76,60,16,88,23,37,48,88,38,84,52,90,49,22,17,85,32,66,36,80,29,10,52,78,50,10,18,6,58,17,51,25,25,85,84,47,43,2,65,76,32,81,82,96,6,1,20,29,21,36,54,71,67,11,28,59,94,60,61,85,70,56,5,34,22,73,28,100,26,69,38,75,64,32,64,35,74,65,37,35,26,100,9,15,93,7,91,89,92,97,28,67,19,60,1,78,94,38,64,13,35,4,56,40,5,31,90,12,58,63,94,9,89,4,48,44,27,39,33,87,32,81,60,50,71,78,92,12,23,29,37,61,6,14,32,65,85,35,37,84,97,54,68,3,63,96,36,29,85,95,51,13,13,26,19,95,56,8,22,11,60,18,3,44,7,13,71,36,7,8,53,37,34,30,67,18,31,29,45,11,60,89,39,22,80,64,88,12,55,29,20,84,61,21,27,30,31,18,83,99,95,94,61,82,14,73,46,31,62,90,62,49,23,71,5,49,76,27,88,68,5,67,22,13,50,34,7,19,9,67,8,56,57,15,90,78,2,25,38,45,82,52,35,10,51,54,8,18,23,56,23,26,36,80,23,18,5,100,28,40,53,64,69,85,82,91,37,82,30,88,15,69,72,51,32,64,80,74,31,72,31,36,50,7,27,70,45,45,67,1,38,67,15,45,56,85,56,87,45,23,72,51,74,15,95,92,29,21,80,67,69,34,23,56,75,71,93,27,38,80,82,72,46,57,86,76,23,48,4,87,10,99,35,40,48,29,44,75,25,82,61,82,46,87,95,94,70,35,90,81,100,91,60,43,50,23,2,68,23,52,64,90,16,1,83,91,39,40,18,52,80,19,99,4,56,86,95,26,19,2,51,100,29,89,62,3,88,25,89,24,59,84,70,31,89,61,82,54,81,38,18,100,78,81,85,20,30,85,29,58,87,27,45,95,90,17,12,94,12,85,27,5,63,82,81,29,84,28,74,14,22,74,73,26,16,25,10,90,29,1,91,90,16,2,57,63,17,66,33,23,92,29,39,25,1,10,16,60,84,65,68,43,38,90,93,98,16,66,58,62,56,93,18,97,44,65,3,45,36,15,10,4,38,59,6,72,3,50,25,50,41,70,66,74,66,65,36,94,66,62,43,97,4,70,71,38,47,38,58,18,10,92,76,27,55,41,10,48,15,23,83,2,27,28,8,5,62,100,12,85,80,16,55,32,17,27,44,95,14,88,17,4,13,66,27,42,16,21,93,41,77,35,7,41,19,85,41,17,93,9,7,34,91,7,37,54,85,99,87,28,38,13,81,9,28,58,51,82,62,73,53,15,30,48,98,83,4,42,18,32,40,57,34,24,57,44,94,12,56,48,70,62,34,50,58,87,69,84,99,96,32,63,56,35,45,74,12,36,15,84,17,82,37,2,1,17,7,44,13,44,85,65,58,93,89,16,8,25,31,18,66,25,11,37,75,5,73,95,50,22,82,24,88,12,32,79,17,24,1,43,20,39,93,12,17,27,26,66,92,55,59,78,5,80,4,49,57,40,29,10,78,20,21,81,26,4,68,95,13,16,19,18,56,10,62,68,47,38,2,81,59,98,51,44,63,70,44,91,12,58,92,7,68,42,37,74,64,28,100,62,92,47,72,46,78,11,51,25,37,49,28,75,58,19,74,96,42,33,7,69,28,1,37,53,69,30,55,47,96,18,22,44,5,8,44,84,91,58,39,84,44,48,11,35,65,17,16,78,90,10,74,93,13,77,87,20,98,72,82,22,24,68,36,36,46,8,54,73,94,93,89,96,98,16,25,82,49,40,62,87,6,27,100,91,54,30,93,26,58,58,84,64,26,63,29,66,82,74,43,68,64,60,40,16,38,90,6,54,49,20,82,87,84,19,15,58,14,32,37,9,84,44,96,86,57,23,90,18,96,81,90,90,52,15,25,89,59,48,71,21,88,35,64,47,68,66,55,15,43,5,63,21,6,56,54,73,66,83,40,91,67,6,47,12,15,55,11,53,1,16,64,16,3,2,56,10,45,58,7,9,19,63,29,47,46,5,52,25,43,90,97,66,67,2,6,58,70,78,68,77,47,3,24,1,6,82,39,76,53,90,89,24,12,78,87,53,34,38,21,35,91,30,57,16,85,7,85,34,63,57,55,17,61,64,79,51,67,21,29,20,19,74,46,29,76,81,85,55,54,12,43,88,25,79,7,28,74,68,42,85,83,56,44,96,38,78,69,64,22,16,92,30,20,82,84,39,62,73,1,14,8,84,75,80,86,72,60,57,33,97,14,74,79,53,54,18,85,65,85,99,8,95,1,71,70,8,12,15,57,75,91,56,11,40,13,71,94,12,12,100,97,46,78,85,18,2,25,95,30,12,47,34,19,39,100,74,34,63,24,73,52,92,71,21,11,40,71,57,17,88,34,2,67,14,44,55,63,10,1,10,51,42,89,58,93,11,11,52,63,91,97,32,33,12,24,27,28,86,85,68,65,30,75,77,58,72,63,26,72,46,56,94,29,91,85,74,20,22,46,36,53,5,17,80,87,18,20,74,26,25,54,94,15,79,1,64,73,17,70,28,28,73,27,39,33,19,94,42,75,21,64,42,39,57,32,65,55,41,82,54,4,66,86,28,53,92,55,4,4,54,43,83,91,3,85,31,21,47,24,36,75,4,40,58,100,27,25,14,87,19,53,8,13,32,91,45,49,65,42,38,51,93,97,33,74,76,27,2,74,15,33,31,65,54,61,61,98,38,17,73,34,98,10,84,3,26,78,100,51,82,40,35,80,80,90,96,48,72,90,21,50,67,45,15,27,100,52,53,41,99,93,76,67,47,87,45,86,33,97,49,8,92,32,46,88,53,69,45,66,38,93,95,66,57,94,25,12,11,23,26,69,69,49,40,13,5,31,79,32,38,86,97,14,9,72,79,9,15,29,17,20,44,6,6,1,91,98,5,1,2,40,54,66,48,75,74,20,46,80,49,89,79,62,75,80,35,63,100,38,42,100,34,14,69,38,68,29,77,47,97,84,75,24,1,96,93,49,31,49,77,70,65,21,10,24,38,29,12,75,59,74,8,65,67,69,100,55,9,74,18,31,47,74,81,74,69,66,59,66,69,89,53,59,77,81,6,84,85,23,97,74,46,1,39,95,11,50,73,25,79,88,15,76,46,39,8,16,52,13,64,89,45,93,24,86,94,99,81,26,11,100,62,85,62,86,92,14,90,17,18,75,85,62,8,18,87,58,93,71,34,12,80,25,33,49,1,47,34,5,36,88,79,52,18,79,24,2,59,87,88,5,51,96,47,50,28,100,52,11,59,58,98,20,49,24,65,64,52,99,88,71,32,71,19,19,66,78,91,75,92,31,2,25,74,45,79,32,86,87,24,78,78,15,67,30,23,7,100,84,22,90,23,75,84,66,52,12,73,95,17,65,59,58,25,90,6,99,2,86,84,12,24,83,62,45,67,65,30,16,14,29,71,15,96,100,86,15,36,53,71,94,24,59,22,34,46,72,44,14,73,100,44,46,69,46,69,91,19,83,66,90,19,63,50,90,4,48,55,93,45,56,81,72,6,97,39,71,87,73,41,19,44,2,73,95,61,68,46,34,49,19,9,66,7,81,91,60,49,83,8,15,61,15,64,71,58,23,93,36,48,33,12,32,45,13,45,15,94,43,88,13,29,45,61,3,10,24,27,26,40,4,52,66,2,28,100,16,23,59,46,96,97,55,67,1,91,28,8,60,97,86,31,74,45,57,11,36,3,19,33,2,8,30,13,61,69,43,79,70,72,2,15,74,66,57,68,73,17,23,24,51,86,97,57,46,77,86,32,52,13,45,1,90,56,25,77,24,19,32,37,24,3,52,78,41,87,51,6,82,34,84,25,69,59,40,37,34,25,34,88,87,64,22,27,85,24,38,67,100,66,83,97,3,71,56,99,32,44,43,14,69,13,66,97,78,1,58,93,44,36,40,82,54,44,26,34,7,89,72,36,81,99,21,49,6,38,88,84,77,53,65,91,20,90,68,90,64,21,99,83,31,79,63,18,96,98,30,14,52,83,77,91,67,39,60,49,62,48,45,59,74,67,22,64,34,6,43,56,13,15,81,17,69,26,93,93,58,45,67,1,71,41,65,39,50,5,67,45,18,31,73,71,68,7,73,69,17,56,27,1,96,52,71,92,55,70,93,12}

    {64,15,16,39,53,47,41,42,10,11,44,17,32,20,10,13,49,10,23,37,65,54,65,53,66,56,68,39,17,45,39,22,55,30,32,67,47,24,39,4,53,8,29,63,59,32,57,3,67,22,67,7,36,41,28,61,35,51,59,65,2,61,63,13,57,5,66,22,61,2,17,11,24,6,13,46,64,21,45,8,18,6,68,24,8,47,57,17,13,55,3,31,56,19,29,35,15,68,67,25,2,44,11,48,42,43,67,8,25,46,29,8,67,21,57,3,7,10,65,15,56,9,46,21,3,1,11,15,53,27,27,29,3,9,10,39,66,52,49,55,69,9,28,60,7,51,6,59,15,20,43,34,35,48,18,19,3,63,34,64,8,38,59,41,24,32,2,52,63,12,27,63,16,30,2,61,53,59,56,45,2,51,44,10,21,37,12,35,31,8,65,33,16,46,12,12,36,53,37,35,43,48,40,24,41,22,65,7,54,59,66,6,35,53,48,67,47,31,6,45,61,65,22,64,14,3,64,23,68,56,33,61,48,6,5,59,42,34,14,66,37,3,16,25,3,57,58,12,45,60,64,18,2,5,5,46,18,37,30,9,4,51,14,27,19,64,63,46,59,63,55,45,7,18,7,26,36,32,63,6,58,62,62,26,52,60,61,57,68,17,59,40,22,68,19,68,26,67,39,9,28,23,24,46,49,54,2,65,54,20,27,25,69,51,56,30,48,9,41,67,59,26,43,13,4,32,25,21,30,34,26,56,26,69,11,42,21,23,3,28,20,30,31,16,48,18,51,29,62,59,20,65,69,32,3,42,8,6,33,10,7,13,21,46,51,50,30,9,28,25,33,32,1,69,19,14,17,60,54,11,57,34,45,6,12,53,17,41,63,29,24,9,28,68,61,41,36,12,53,23,25,42,3,13,44,68,41,57,64,46,14,2,44,17,42,41,5,67,21,10,51,45,12,52,68,29,29,9,5,21,60,14,41,62,2,28,66,23,35,54,27,50,49,54,37,54,12,16,56,6,46,68,19,54,31,37,48,4,32,38,50,12,43,33,22,16,64,11,36,16,35,21,26,53,8,48,46,6,42,12,47,41,52,17,30,7,19,37,28,16,34,68,41,67,16,40,29,68,7,44,39,49,59,49,48,67,7,65,64,43,51,15,11,67,62,28,25,61,45,1,9,1,66,2,50,20,55,1,36,39,60,10,14,36,2,17,26,11,26,15,23,49,43,10,12,15,33,31,48,21,20,34,20,36,26,33,30,41,1,54,33,9,54,33,54,9,45,14,8,4,65,43,27,11,23,30,41,63,24,24,12,50,31,62,20,20,62,16,62,2,14,19,63,46,8,31,42,7,29,19,1,68,50,52,62,13,15,7,2,21,29,49,27,6,11,4,27,8,65,48,69,28,34,15,10,21,48,50,57,47,38,9,32,48,28,10,62,38,7,64,56,52,43,53,59,42,42,30,48,68,14,12,32,35,26,69,21,58,59,60,42,40,13,16,27,32,34,55,60,65,4,54,16,31,4,36,15,54,64,3,38,20,60,45,14,40,29,13,52,36,53,46,36,7,22,68,48,32,48,13,18,40,12,26,7,17,24,12,63,38,67,52,7,28,1,54,60,7,18,23,47,10,63,47,17,31,55,4,66,27,30,17,14,13,47,7,32,64,21,60,59,53,44,47,3,21,30,13,54,55,60,66,68,21,64,7,34,20,44,67,21,19,54,60,31,5,26,13,42,38,59,40,38,62,13,66,56,43,31,62,67,63,69,60,30,66,40,52,7,44,39,65,51,46,32,29,45,39,14,12,27,12,12,22,21,68,3,48,53,61,20,9,39,50,69,49,4,18,2,30,36,59,59,1,32,63,16,51,56,39,8,33,45,53,4,39,60,56,40,10,64,66,27,21,26,21,49,48,50,36,27,35,33,3,23,23,45,59,32,8,1,40,14,25,2,25,43,69,10,31,29,18,42,56,16,18,53,38,56,47,6,41,34,44,56,41,52,55,26,43,66,56,29,50,5,7,66,34,11,24,18,57,56,26,45,36,18,55,50,30,16,29,47,27,62,67,51,3,21,61,54,51,4,41,31,14,31,23,64,61,23,46,59,57,23,10,46,31,2,25,16,38,65,7,22,46,13,23,15,9,28,53,40,38,68,45,22,63,3,51,67,24,35,51,41,25,54,55,40,55,55,9,63,58,65,12,50,5,32,59,42,6,55,42,46,53,27,46,48,24,46,69,33,67,33,52,1,64,29,42,37,17,9,15,54,43,33,21,28,32,10,53,42,21,58,14,11,25,18,20,54,52,44,61,10,35,21,17,36,18,23,42,63,6,62,12,32,61,39,48,57,32,68,33,27,8,4,57,37,45,63,46,29,32,24,46,17,7,35,22,48,20,13,38,44,20,33,50,30,53,49,45,51,14,26,62,5,59,65,17,6,49,30,26,46,42,12,59,13,13,30,4,56,23,5,8,56,8,19,55,49,23,62,22,58,30,55,65,21,14,2,14,44,62,12,37,32,67,38,67,14,45,64,13,45,42,52,31,32,55,24,56,47,44,60,48,46,55,45,28,17,55,11,62,33,55,43,11,43,10,25,59,26,17,15,6,38,59,7,54,47,36,27,3,12,62,41,69,49,26,21,69,50,2,8,59,36,21,37,56,7,62,42,66,67,23,6,63,45,26,48,33,60,49,69,39,58,7,69,7,57,31,19,48,42,8,21,4,59,64,15,33,28,59,11,3,58,48,16,3,32,11,59,14,26,29,7,4,53,50,69,27,56,45,60,17,35,30,67,17,21,34,6,48,26,25,68,7,15,55,65,55,48,25,52,31,21,12,42,15,19,53,47,52,26,10,60,69,48,9,23,40,34,67,42,61,11,42,33,33,54,12,1,25,16,5,60,14,39,62,35,11,7,67,61,59,14,16,41,2,17,63,21,26,65,35,19,3,26,5,3,23,58,7,60,67,29,11,46,65,14,9,65,14,48,31,57,50,24,11,10,23,31,11,9,20,42,65,3,40,47,9,1,16,59,38,65,25,46,38,36,57,67,38,52,60,56,22,15,32,62,9,69,37,35,15,43,45,35,18,56,31,30,65,53,6,18,21,28,29,15,46,64,15,10,50,11,10,29,55,30,24,57,44,48,39,31,68,20,2,50,38,25,36,50,41,4,23,26,31,66,12,10,9,61,25,44,4,51,66,51,32,1,4,12,69,63,57,16,55,3,6,36,6,25,15,37,36,44,20,52,66,5,66,46,49,41,25,17,1,43,64,47,53,29,17,24,10,52,30,17,29,62,45,62,47,53,27,19,7,12,61,42,49,24,58,51,35,28,29,18,45,67,29,23,52,2,20,59,46,16,58,62,29,5,11,12,21,26,31,33,42,22,33,46,43,9,23,50,33,1,18,22,22,46,49,64,10,25,24,7,8,3,41,40,53,20,7,2,66,45,48,55,18,7,5,6,2,35,21,40,4,57,63,29,48,21,40,58,40,41,43,39,40,44,31,57,43,24,68,43,51,59,2,16,51,35,49,53,30,25,13,1,11,47,43,20,63,26,67,2,9,20,63,14,30,32,44,50,32,61,27,9,19,24,51,40,47,30,10,58,26,56,31,10,24,56,9,62,13,51,5,41,3,28,27,2,30,32,33,38,22,33,20,22,16,11,47,14,50,48,50,32,44,60,12,11,24,65,4,25,29,24,36,44,56,34,41,3,68,63,9,50,34,64,47,42,20,61,45,66,36,33,36,52,43,20,10,34,48,58,49,65,21,13,62,25,26,18,56,23,47,28,50,66,18,55,28,14,12,49,68,34,14,64,58,8,6,56,63,69,48,59,2,26,31,35,37,30,49,17,32,35,9,9,43,47,2,17,20,39,2,56,33,44,69,69,53,51,1,31,20,40,45,66,52,35,66,18,31,39,38,60,1,17,1,26,1,48,43,7,27,5,4,62,31,15,10,42,8,22,55,17,3,63,23,60,67,3,4,59,43,27,26,44,67,20,21,24,49,5,61,8,49,2,24,1,12,65,68,68,42,8,49,6,55,37,43,36,54,44,16,5,35,40,52,45,9,32,65,13,15,26,34,37,67,55,69,50,33,51,27,19,19,11,33,62,19,6,35,49,19,18,22,20,54,8,55,23,8,11,35,13,4,68,4,65,48,20,34,26,43,8,29,32,5,58,23,1,46,63,20,3,55,46,4,67,24,69,67,32,14,63,23,29,21,60,29,18,42,44,18,48,30,68,13,28,57,39,4,61,26,56,2,8,23,24,58,24,37,3,4,24,22,19,56,28,30,28,20,8,14,11,43,46,47,41,68,18,26,57,34,61,67,3,17,63,22,34,43,27,47,67,33,29,23,68,62,14,23,43,68,22,40,36,55,38,48,51,50,8,69,32,13,38,20,49,60,40,38,27,19,1,58,54,53,60,40,26,65,44,48,37,41,52,36,17,25,19,16,20,37,55,4,10,22,65,66,15,31,16,29,64,66,39,54,27,27,48,46,63,51,62,35,62,17,25,63,23,53,2,43,60,46,4,61,12,58,18,3,7,42,15,27,32,63,33,17,28,46,66,32,13,56,16,62,2,52,34,16,17,21,3,11,61,44,60,67,30,67,56,1,4,53,37,50,62,31,23,30,20,11,17,29,66,64,69,14,5,25,31,33,10,6,49,46,46,44,8,25,47,54,9,62,15,4,34,30,66,10,65,55,46,7,29,6,41,67,68,18,22,62,20,17,16,38,65,31,5,10,28,22,4,14,22,52,50,38,43,33,55,26,64,1,68,14,44,63,50,66,60,69,64,4,60,2,38,65,50,23,6,58,15,14,57,9,56,21,35,51,66,23,57,3,26,13,23,42,37,17,1,19,68,16,58,68,12,61,61,18,66,11,62,50,18,47,29,61,14,67,19,10,23,39,51,34,54,33,36,19,56,43,31,22,31,50,64,11,59,14,66,23,40,19,4,35,7,5,47,59,25,66,62,28,11,64,61,58,22,49,32,27,59,23,41,18,22,36,26,26,2,60,59,11,58,35,68,22,2,4,23,34,64,52,61,26,20,36,55,30,16,32,54,12,59,12,20,4,13,33,31,12,26,38,55,40,66,18,50,34,10,38,55,26,62}

    {10,44,19,17,5,37,44,20,46,62,67,34,37,56,63,7,21,23,27,24,68,6,60,59,60,53,53,61,11,50,36,33,9,11,50,41,26,25,27,16,64,10,57,29,41,17,47,43,12,54,67,41,61,64,29,16,55,50,4,14,32,1,32,12,1,20,1,36,54,23,25,39,27,22,20,36,26,41,18,19,58,41,15,67,42,35,43,52,14,21,57,7,14,65,16,58,21,66,16,51,27,34,59,55,37,31,32,30,10,38,37,61,16,26,34,58,45,67,19,26,53,57,52,40,3,39,54,44,43,6,22,14,5,19,26,62,17,10,60,1,20,45,18,47,28,58,48,59,57,4,55,68,10,4,43,9,64,53,30,60,48,25,39,50,43,36,37,59,69,64,2,38,37,52,8,24,43,42,61,55,32,18,21,6,14,42,5,15,14,59,2,13,49,9,14,4,69,46,20,25,13,47,8,23,20,62,67,23,59,20,68,47,56,6,67,41,36,43,26,63,18,39,23,1,56,42,28,4,68,19,28,61,50,33,3,28,23,20,25,32,26,60,66,4,57,55,40,3,4,40,41,53,14,13,45,15,64,28,32,10,62,50,12,59,63,40,44,44,42,46,25,46,52,13,1,47,2,11,27,62,14,39,65,1,62,1,54,7,52,8,12,6,53,13,22,12,33,45,9,67,31,53,36,9,63,61,14,19,53,42,15,15,64,35,28,65,14,68,7,38,7,25,38,60,43,67,22,2,3,25,67,66,63,16,12,37,46,26,17,47,42,41,51,36,23,67,41,38,37,44,3,31,28,67,52,1,69,58,52,56,43,7,51,39,28,37,66,48,20,16,38,14,5,15,11,64,23,65,60,37,37,16,45,30,36,28,19,69,59,62,6,30,35,69,29,12,42,25,41,20,32,52,37,11,38,3,64,34,45,69,52,21,12,18,39,56,54,37,23,66,41,33,42,53,27,14,63,62,40,9,63,69,33,56,11,53,37,16,67,59,1,50,31,37,66,3,9,46,17,33,42,48,28,29,44,32,48,26,54,5,9,55,9,53,40,62,54,16,3,64,60,10,48,23,57,49,30,47,56,31,19,64,10,62,55,38,68,61,14,34,12,7,34,63,24,27,47,33,12,4,20,58,42,4,13,39,30,6,67,14,55,37,22,35,35,40,32,29,48,28,60,58,11,28,13,60,25,22,19,38,58,48,49,6,19,19,14,56,65,61,53,3,67,15,65,38,19,56,23,18,67,63,66,20,11,53,10,36,44,52,40,33,38,25,4,23,16,3,60,37,51,39,6,46,69,62,9,1,44,49,61,19,27,35,25,55,50,59,7,64,46,61,66,8,13,7,64,12,29,8,19,61,54,46,55,34,55,34,55,47,28,43,51,5,28,40,17,12,35,67,15,30,29,39,41,3,54,15,30,48,65,54,8,42,51,39,7,7,5,13,43,43,11,45,32,30,1,67,60,9,36,9,1,66,8,1,30,18,55,51,9,23,64,24,50,12,22,49,40,44,24,19,5,62,46,21,46,19,50,40,48,36,43,21,30,36,22,64,18,62,50,28,15,4,40,48,20,14,66,67,27,32,1,31,46,38,39,35,18,61,53,69,52,58,17,66,18,5,10,58,15,28,60,46,69,43,38,14,24,2,41,26,60,8,55,13,37,50,23,57,8,30,42,43,16,3,29,61,53,36,55,40,27,54,27,4,40,19,35,54,30,47,63,65,13,32,24,29,16,15,28,63,57,49,40,57,23,34,69,9,39,3,26,12,53,17,43,55,57,39,66,27,13,68,39,62,29,8,14,36,50,6,45,18,53,3,63,33,25,22,10,29,53,43,61,62,29,69,45,41,34,33,27,38,31,65,62,1,57,9,61,33,51,48,4,9,34,43,62,50,8,56,6,38,25,58,31,37,59,23,6,58,53,51,36,17,58,27,54,24,19,61,21,20,18,59,44,54,15,65,25,66,30,22,8,17,58,66,66,69,49,65,9,56,62,36,68,7,29,62,50,5,7,22,31,49,23,20,42,69,49,37,29,6,8,11,55,14,5,12,50,9,48,37,60,29,9,16,6,46,49,60,18,47,2,20,18,13,8,27,57,49,20,65,24,1,66,66,37,22,34,12,39,52,52,43,59,63,69,44,64,11,61,69,37,26,33,20,52,68,10,6,34,3,17,68,63,29,10,8,15,18,27,67,5,66,29,43,64,4,45,15,51,14,20,60,15,52,6,23,33,49,62,7,3,35,21,18,49,50,58,42,19,18,45,63,10,51,37,14,13,33,42,57,33,6,10,57,40,46,29,13,8,63,40,29,26,31,36,55,69,25,4,67,64,7,39,68,51,51,12,55,27,16,51,33,43,3,35,13,60,27,1,50,26,8,10,64,16,58,24,10,37,22,50,42,44,29,66,27,61,26,52,36,31,43,27,36,22,64,36,38,67,5,43,43,15,64,43,30,62,10,62,36,63,54,5,18,60,18,45,21,69,5,36,13,20,25,59,64,47,5,61,36,15,25,52,22,11,35,41,59,12,43,40,24,64,18,15,57,9,59,69,64,28,63,11,45,58,60,7,1,27,30,42,36,36,21,25,10,68,19,4,45,34,53,62,67,22,50,1,24,8,41,58,56,5,26,49,27,27,62,47,11,34,65,65,69,53,34,64,52,42,57,30,38,25,1,35,46,52,15,13,16,20,27,42,29,45,31,53,26,8,23,65,3,39,8,44,53,31,35,47,56,17,8,58,32,5,52,39,57,2,35,44,59,41,12,49,58,55,64,60,4,64,22,33,65,67,68,28,47,31,40,9,62,58,63,46,52,45,33,17,34,34,10,4,21,30,46,12,65,41,67,13,54,31,43,55,24,36,14,46,36,16,31,55,49,44,32,21,44,65,24,46,5,58,48,58,22,63,30,35,41,31,64,27,23,28,11,22,56,16,27,35,9,15,38,15,32,10,33,19,64,11,56,57,23,67,18,7,47,28,10,60,17,1,27,62,53,9,65,36,7,33,54,63,55,24,30,17,36,19,20,31,65,33,44,4,42,21,14,3,43,11,9,29,50,38,36,12,33,27,5,29,37,21,9,19,62,68,28,36,30,49,17,42,50,69,8,32,22,11,10,44,45,29,9,69,20,24,41,36,37,29,9,17,39,1,52,3,58,3,29,18,68,41,35,18,38,66,38,61,49,36,17,27,38,42,26,63,61,42,57,61,21,19,55,26,47,68,1,55,8,23,20,15,48,28,61,43,37,4,65,58,54,65,49,31,46,58,58,14,53,26,30,7,14,22,45,42,35,54,60,28,52,13,69,1,33,8,4,67,47,20,67,64,42,58,32,3,25,42,51,64,15,63,65,19,56,6,20,33,10,36,53,37,65,21,33,40,36,41,4,10,1,53,15,25,52,62,18,66,61,61,27,58,46,7,53,28,16,21,45,5,57,26,55,25,66,65,29,64,36,18,61,24,5,62,46,57,2,54,58,35,19,18,13,16,63,23,1,28,44,14,45,64,48,35,1,39,14,12,34,15,5,64,34,12,43,62,24,35,34,8,36,37,50,35,60,10,52,32,37,11,6,9,68,16,1,3,8,37,51,44,47,63,24,4,68,64,37,27,26,30,46,48,59,58,1,19,10,45,50,6,18,1,44,17,16,16,32,38,21,60,57,18,3,28,1,4,68,10,9,26,12,3,3,64,47,54,24,7,24,41,11,8,51,26,44,45,15,1,51,35,26,7,57,35,34,47,28,68,30,27,33,28,60,69,54,39,27,3,23,48,39,27,35,34,67,49,25,49,42,26,34,11,12,46,28,47,7,25,66,32,29,18,14,69,7,22,52,48,27,57,18,23,62,14,60,19,33,43,53,38,51,4,24,48,8,7,59,35,25,68,61,52,31,51,29,25,63,39,48,61,61,13,40,50,65,20,53,56,40,23,45,63,47,11,22,31,12,40,53,8,66,34,4,18,58,48,61,19,3,39,54,46,57,42,52,61,44,49,17,29,1,20,62,11,46,62,27,41,62,44,64,2,40,68,16,4,28,46,37,19,23,9,21,20,18,59,12,34,19,8,10,68,47,11,9,43,44,32,28,65,60,5,30,44,12,50,33,63,30,65,9,9,35,12,46,43,49,8,36,19,54,66,44,8,54,62,34,12,2,22,12,69,21,18,9,52,19,30,53,24,57,54,16,34,4,2,45,31,2,21,14,56,15,57,1,27,4,16,51,67,69,38,54,25,63,41,15,33,49,51,69,5,40,3,26,56,39,67,58,55,23,49,10,39,44,9,55,58,28,22,42,38,46,43,19,18,4,13,10,26,32,1,7,45,31,63,40,36,8,10,31,56,19,55,59,1,2,62,65,50,47,44,20,9,50,22,32,28,4,63,50,54,60,20,34,24,63,65,1,36,69,34,12,39,40,27,44,18,45,1,34,43,53,11,28,12,21,61,5,8,65,40,43,31,2,42,52,24,21,25,66,54,49,16,40,27,51,63,6,46,41,37,19,46,57,54,67,11,7,39,6,38,12,30,61,29,28,32,34,4,21,45,68,22,13,19,32,18,1,6,65,67,33,24,2,1,68,66,51,47,45,16,23,30,63,60,61,7,56,41,43,62,44,18,33,26,15,13,47,37,52,51,2,28,37,1,44,50,1,44,59,50,65,24,26,54,21,30,32,50,34,66,47,3,65,47,18,58,16,10,2,65,57,64,37,19,62,69,51,48,35,31,42,18,20,11,43,3,8,69,23,59,41,4,39,48,2,51,42,64,15,23,42,50,28,18,40,46,10,66,33,69,6,6,37,68,31,12,48,29,46,22,45,23,53,26,30,29,20,12,27,6,68,32,13,12,65,36,62,32,1,27,40,26,6,67,51,30,61,56,67,31,61,48,2,26,10,13,62,57,27,22,43,18,39,46,1,23,30,37,65,37,35,38,42,69,17,12,34,17,28,24,39,60,50,68,38,65,29,35,28,28,14,19,5}

    Returns: 110047

  51. 61

    {46,80,87,97,24,6,31,13,60,57,53,85,59,8,78,3,19,32,66,79,80,24,32,29,44,95,79,1,10,23,31,36,18,90,41,39,6,11,46,46,92,69,36,4,36,81,85,6,22,23,43,19,2,69,6,14,60,98,5,91,40,58,34,75,47,85,95,35,51,14,91,88,81,44,16,33,49,40,80,43,56,5,96,69,50,93,3,88,93,58,39,57,11,99,80,3,15,8,52,55,2,45,7,66,34,85,66,46,84,54,86,28,47,15,7,6,6,60,83,19,65,86,5,7,52,43,25,38,25,89,24,26,9,86,38,20,50,6,63,45,22,73,63,85,60,59,69,73,67,32,37,86,60,68,43,18,56,93,6,33,37,74,44,3,57,21,96,60,55,12,21,92,83,35,93,51,39,54,19,64,98,34,79,46,68,55,51,75,39,80,27,97,22,65,19,73,33,11,70,41,72,3,39,62,95,97,85,17,79,85,1,39,5,42,51,28,61,78,50,42,12,5,82,40,47,1,97,78,8,3,44,68,2,3,82,30,81,99,4,82,18,93,43,61,28,99,66,45,100,94,73,54,90,12,97,47,79,52,67,64,49,46,49,21,42,17,80,71,79,38,28,41,61,84,71,54,66,53,67,36,54,51,81,36,20,83,97,76,20,45,75,61,50,51,35,16,23,10,59,98,83,85,28,94,21,66,42,99,26,21,13,33,53,80,2,50,32,59,1,77,61,10,75,77,99,65,75,72,72,10,89,12,7,12,73,78,88,12,99,41,96,80,93,48,69,15,94,60,24,82,36,39,67,57,98,26,57,73,83,26,99,41,67,88,79,50,62,30,30,43,58,27,39,78,62,95,6,33,41,27,60,71,87,67,84,73,50,79,71,22,69,51,15,74,15,80,58,77,80,67,3,40,19,68,21,77,1,24,39,20,61,28,1,11,57,72,68,42,28,38,11,76,9,17,65,10,8,50,72,20,74,3,3,82,92,32,53,12,8,92,52,68,50,2,61,80,66,98,48,1,73,35,27,92,48,64,97,83,29,27,90,90,65,74,34,3,64,48,71,86,4,48,25,85,46,15,83,89,67,67,99,6,37,60,34,22,20,8,45,90,44,89,7,42,75,5,99,83,78,52,26,81,75,57,27,47,19,56,47,55,89,51,60,36,81,7,28,36,4,68,46,49,6,67,66,56,81,89,27,56,42,44,12,95,34,32,47,55,87,56,93,98,6,70,57,13,95,54,13,80,89,20,77,71,80,78,96,42,1,2,8,43,63,76,11,12,100,5,40,36,52,31,82,56,27,12,66,53,45,59,67,45,82,75,17,74,100,79,81,81,92,34,72,22,9,69,68,87,21,16,7,54,69,51,67,35,18,82,92,37,42,86,27,77,28,82,39,6,40,52,50,74,90,47,78,5,88,45,88,59,2,31,96,55,37,36,7,81,45,73,77,12,43,58,95,97,60,56,20,4,23,7,93,30,54,63,33,54,57,93,57,95,73,77,24,35,8,71,86,68,37,63,32,13,68,28,79,57,73,31,81,69,44,16,5,73,60,72,42,14,59,56,92,49,68,15,31,31,33,52,72,28,84,37,96,13,47,81,47,11,23,39,52,78,24,67,48,74,93,67,72,77,81,44,12,56,48,26,56,38,23,54,99,86,55,35,15,94,91,59,20,25,55,15,54,6,88,48,49,11,87,2,50,68,34,70,38,41,27,27,36,52,41,29,64,41,39,22,50,49,91,12,75,97,47,21,21,87,66,49,11,49,79,77,82,52,67,12,13,62,41,14,33,39,17,16,59,52,12,86,11,2,36,72,83,11,86,1,32,90,21,99,55,48,85,48,95,75,95,5,52,74,29,27,84,22,87,95,29,67,34,61,14,60,59,53,70,13,69,62,78,24,3,18,90,2,12,64,10,20,63,50,14,15,52,38,80,5,57,48,45,60,63,71,59,81,11,76,2,14,28,73,47,72,25,100,2,86,81,20,38,1,26,51,100,24,24,69,62,11,95,58,10,8,3,7,42,81,54,20,95,15,75,96,40,38,63,21,71,51,92,47,92,63,61,80,73,79,74,36,51,48,47,23,91,83,65,18,85,50,87,97,49,59,80,37,10,34,89,64,10,22,96,21,41,27,97,64,11,58,38,7,95,8,72,6,67,73,67,37,93,4,84,51,11,10,69,26,23,84,19,85,38,36,4,95,73,49,74,96,75,34,64,100,51,75,12,97,15,30,48,28,38,57,75,84,58,50,49,22,48,47,92,87,63,99,19,58,94,2,33,73,11,83,55,93,79,77,80,14,8,34,12,54,63,22,35,5,7}

    {8,35,22,42,49,45,17,4,42,55,15,26,57,9,38,41,17,15,43,44,27,45,9,30,60,60,49,9,20,4,6,32,15,20,54,15,10,49,32,25,39,56,23,25,57,1,51,30,61,55,52,3,6,10,27,12,47,43,55,3,54,30,43,15,57,14,53,43,39,20,31,32,56,19,6,35,3,43,14,50,18,49,28,6,11,15,4,39,14,22,22,54,24,5,45,46,2,59,16,42,25,23,22,26,9,48,47,5,25,51,47,13,37,44,27,52,45,57,32,54,31,55,6,42,42,5,37,54,24,4,14,2,19,53,32,21,16,15,52,44,26,54,2,40,53,34,51,3,6,9,1,59,23,53,23,22,19,50,5,9,27,31,37,6,38,48,4,13,36,33,61,23,8,35,12,5,10,12,30,54,46,9,52,23,20,15,7,11,55,3,16,22,58,50,45,32,6,52,15,17,16,38,26,41,44,27,6,6,42,35,61,37,31,12,12,53,11,44,12,40,61,49,50,24,60,17,31,60,14,8,18,3,40,45,28,3,34,43,38,58,46,10,51,39,1,31,56,31,42,2,21,39,61,16,31,25,17,23,36,25,56,12,34,30,21,4,25,48,7,18,22,46,19,29,47,47,18,19,52,57,29,45,61,32,22,57,58,8,38,39,1,21,9,18,44,20,8,32,41,35,28,14,26,60,31,60,32,41,49,16,12,58,19,6,35,57,9,15,36,29,46,32,55,35,4,59,25,53,21,46,3,12,52,13,40,13,38,14,40,45,30,11,13,18,32,15,58,31,44,9,57,23,17,45,35,1,19,45,1,47,30,29,22,24,32,27,55,2,11,12,48,58,20,53,12,38,45,39,5,59,47,5,8,57,60,43,46,52,33,13,46,17,1,5,19,11,52,43,45,23,22,57,54,16,52,15,36,54,46,45,9,26,28,16,39,43,22,19,8,55,15,17,58,41,25,21,30,10,45,42,17,52,40,24,5,2,14,50,31,50,52,59,36,58,2,4,16,24,21,53,11,17,47,42,39,53,35,34,54,23,11,41,20,40,43,37,26,52,21,18,22,45,9,49,44,28,27,47,24,36,22,27,7,16,37,50,23,21,19,49,17,5,6,12,47,23,31,61,8,28,11,29,51,37,22,18,20,42,25,33,33,59,33,13,15,25,60,42,15,19,14,32,15,5,33,18,9,21,45,61,59,6,39,25,3,16,48,45,48,35,39,36,2,38,19,22,29,61,38,14,16,11,51,19,12,7,59,47,36,2,30,59,57,58,20,47,61,3,25,33,6,50,15,42,5,37,5,59,4,36,51,49,53,9,46,60,41,33,54,48,56,50,2,16,5,58,47,36,17,31,28,28,33,44,36,52,58,53,21,15,44,58,45,2,46,9,26,51,2,21,45,42,61,60,6,40,49,46,53,2,60,31,2,3,15,13,12,19,32,18,53,8,51,11,55,44,60,61,55,17,15,15,58,9,26,53,9,54,8,1,32,41,56,29,7,16,16,11,61,44,2,7,15,57,61,8,5,13,12,53,54,37,60,13,19,24,19,27,6,35,27,53,36,47,61,57,44,27,45,6,52,36,4,26,40,22,52,58,15,57,16,54,6,1,58,9,40,57,32,58,10,21,21,46,3,1,1,21,26,32,23,47,13,5,50,7,56,47,2,5,59,4,6,5,51,60,33,49,38,18,58,58,2,9,54,21,24,24,28,7,60,23,10,28,12,53,34,58,42,40,34,17,54,40,39,33,50,46,39,2,50,9,12,31,15,58,53,53,22,20,52,51,21,36,25,11,46,25,27,57,1,24,14,5,33,52,16,49,17,11,41,9,11,36,28,40,50,32,37,36,49,6,2,58,50,18,50,17,12,27,28,52,7,12,33,25,24,29,18,37,15,48,4,43,35,51,36,11,8,39,46,34,54,27,61,25,35,28,6,16,55,34,42,11,23,26,40,28,11,43,49,40,10,2,46,27,38,60,33,34,9,21,32,38,33,34,42,50,18,15,39,50,18,21,54,13,37,3,40,51,23,12,43,59,43,58,1,24,54,4,60,12,43,43,2,44,1,6,20,38,9,41,26,15,9,28,4,20,37,23,7,55,6,18,5,9,52,52,38,25,10,30,7,53,11,32,2,22,61,45,45,45,2,38,20,55,59,9,41,41,52,4,56,30,2,37,42,5,15,26,11,53,10,34,55,32,28,37,45,22,36,43,4,20,58,59,34,6,49,58,45,58,37,21,11,42,53,44,52,56,44,6,41,33,16,18,19,12,59,1,2,55,51,44,48,46,48,1,22,10,14,41,24,36,6,34,39,3,43}

    {26,9,11,29,20,53,45,34,6,15,8,47,54,46,25,8,48,1,14,11,61,45,31,35,40,3,5,50,9,59,58,14,13,5,39,15,46,22,2,23,31,54,61,39,59,50,29,23,54,9,58,56,59,24,10,53,23,26,39,7,28,16,20,21,29,28,35,13,15,19,25,33,36,51,8,20,35,50,54,31,29,7,8,57,30,24,42,22,33,18,7,28,12,6,12,61,44,27,31,35,22,45,50,27,23,21,47,50,50,25,38,15,29,46,6,35,14,48,31,30,45,54,27,27,17,8,5,13,50,43,49,29,49,37,60,6,43,23,9,58,61,20,26,60,33,11,17,30,12,47,13,32,56,21,38,55,18,54,27,56,19,53,49,52,32,11,47,36,56,11,16,22,14,61,49,18,28,14,29,40,5,13,6,60,26,23,35,1,25,20,49,29,56,11,6,29,61,53,47,36,7,55,39,33,26,14,4,31,52,17,15,28,36,29,52,23,11,6,61,29,19,52,58,25,26,27,8,14,57,4,16,12,27,39,33,16,26,15,56,41,11,19,39,12,19,30,31,11,15,8,49,61,33,21,37,34,42,8,3,43,60,20,10,2,50,40,21,9,21,57,59,39,49,11,7,41,35,9,47,61,34,59,31,4,61,34,3,10,61,53,44,58,57,57,33,37,42,49,12,32,19,23,47,32,32,10,50,14,42,45,27,7,55,35,6,56,47,51,22,35,36,61,8,38,3,28,7,52,16,21,55,37,20,35,57,17,15,45,59,52,28,54,10,6,12,13,59,51,5,53,34,56,30,39,57,10,35,50,12,60,48,53,61,50,29,29,34,44,56,37,37,40,54,34,24,51,60,36,12,32,41,57,16,9,37,44,16,30,44,23,45,37,17,31,17,26,16,16,58,31,41,3,32,31,4,26,42,44,12,11,7,1,14,13,24,18,58,27,53,42,37,30,44,2,18,28,18,25,17,49,28,43,21,25,26,61,33,23,8,8,5,49,3,32,16,28,19,4,19,60,22,8,45,5,47,52,11,41,22,33,11,27,45,20,6,53,31,37,40,26,5,6,36,33,19,46,6,53,4,31,60,20,52,48,32,43,61,49,17,54,38,49,47,1,7,16,24,33,2,10,21,43,12,20,44,50,29,23,8,15,56,10,55,33,47,44,9,42,9,53,46,47,29,1,28,7,17,27,11,45,22,29,4,51,37,23,26,43,57,47,25,18,13,13,53,5,58,60,39,35,54,32,18,28,13,40,51,33,13,13,18,32,6,17,1,27,28,7,29,35,36,3,23,24,21,6,12,30,56,35,16,50,30,28,20,17,56,60,44,8,20,3,13,27,37,27,39,4,39,26,49,58,58,15,57,21,9,14,30,24,33,50,4,45,43,18,24,44,34,27,11,45,57,21,58,40,42,24,20,8,43,14,57,35,23,52,41,36,20,4,43,32,47,54,45,46,45,46,47,39,29,16,61,29,56,40,13,9,32,46,23,22,11,39,51,50,32,33,31,35,23,22,29,17,49,39,45,47,48,56,17,46,55,19,20,17,36,4,57,19,53,20,12,16,3,23,48,12,14,11,20,23,32,41,39,15,22,36,37,53,32,57,32,25,58,14,37,34,59,49,53,45,34,16,51,1,26,39,46,19,25,3,7,34,8,10,7,15,18,22,32,19,2,42,11,30,46,51,43,22,6,14,36,14,10,28,39,32,35,53,50,56,27,19,15,23,7,38,56,24,23,4,15,44,52,3,40,42,46,38,20,30,47,53,38,6,58,16,15,43,12,9,57,16,37,53,56,6,55,44,31,38,27,16,9,30,24,8,60,57,29,48,40,5,29,57,58,46,6,25,51,7,50,31,58,42,50,11,3,40,18,35,17,14,39,57,33,31,32,52,55,14,21,15,20,21,32,52,42,25,11,12,34,44,36,45,52,32,48,42,14,35,59,28,30,53,5,48,19,7,26,50,15,30,49,60,29,36,28,17,57,12,49,57,14,1,17,19,17,8,7,9,3,60,50,54,13,42,39,53,46,16,45,27,38,53,49,47,15,28,50,10,5,24,37,34,23,18,28,35,13,19,57,31,37,10,57,52,45,48,2,18,41,61,52,10,13,12,20,57,25,28,59,11,12,1,27,40,24,15,1,18,5,52,38,49,17,4,31,23,3,47,7,23,42,9,36,11,58,44,24,35,15,43,18,23,42,36,52,34,5,50,55,16,56,27,49,28,50,13,15,17,46,51,33,52,54,14,1,10,52,5,6,48,44,58,39,6,18,11,48,52,16,13,6,19,56,45,40,45,33,54,50,12,1,46,31,32,38,43,37,25,42,31,3,27,58,50,1,4,14,43,31,60,51,14,53,33,8,43,27,33,58,25,45,49,58,27,55,1,40,25,31,11,53,22,4,59,45,18,25,52,39,26,49,14,60,55,13,47,33,13,11,20,28,56,22,28,10,31,35,50,27,14,17,15,29,48,57,27,36,35,7,31,20,50,30,54,37,12,39,12,16,60,47,26,25,8,11,54,37,16,58,37,46,3,39,47,47,48,43,2,50,58,61,25,37,32,4,43,5,13,9,26,4,33,12,30,26,31,26,13,33,47,52,52,33,58,37,22,44,19,58,35,59,11,18,32,34,43,43,31,12,25,24,41,5,42,6,16,55,43,47,14,59,25,35,32,1,42,57,25,55,53,30,28,27,55,28,40,27,34,25,12,25,15,19,12,54,5,26,32,46,5,29,1,7,24,14,13,61,21,38,45,40,12,16,43,30,30,21,15,26,6,32,55,17,56,43,1,40,61,37,24,32,43,40,34,15,50,18,27,29,19,48,20,26,15,28,24,14,59,42,10,28,13,23,25,13,33,20,55,47,35,44,50,38,25,47,54,49,42,28,12,30,29,53,31,25,21,54,14,13,19,41,55,29,59,18,52,25,23,6,34,28,4,61,15,50,13,32,19,39,30,44,44,15,37,53,14,24,50,42,26,58,61,60,59,54,6,47,37,9,27,32,5,54,28,40,43,8,57,50,60,38,41,42,37,23,10,2,41,59,37,9,54,54,42,51,35,14,52,57,33,8,20,33,43,20,23,53,60,44,7,7,36,25,46,10,5,41,9,43,7,48,13,54,27,34,17,34,26,5,59,15,23,20,16,26,45,48,8,3,10,20,5,58,28,34,20,1,33,46,22,25,58,17,5,15,35,59,9}

    Returns: 51233

  52. 55

    {29,4,41,42,89,45,5,78,58,5,35,35,64,38,72,78,83,59,15,40,32,81,23,8,50,92,91,27,26,69,11,86,41,1,70,45,36,64,37,16,51,17,48,68,24,43,78,16,73,93,98,13,41,42,43,47,24,49,81,11,65,4,96,35,36,96,28,94,17,92,16,72,97,2,64,51,50,34,72,40,33,88,89,55,2,97,29,4,43,61,28,63,51,9,29,47,38,17,98,45,33,82,99,67,56,73,85,97,94,11,87,49,34,29,14,40,94,32,23,65,73,35,40,98,89,76,61,2,23,38,23,34,45,62,47,92,76,42,46,70,74,97,15,90,43,70,88,13,86,81,18,55,45,48,70,76,5,51,26,4,61,38,27,68,90,92,73,42,96,74,89,80,52,2,11,11,75,5,56,98,71,99,15,89,64,28,1,16,46,8,57,40,86,74,61,45,30,47,17,99,73,80,67,13,37,14,21,40,81,58,41,25,26,58,16,60,50,45,62,32,93,51,27,74,89,88,71,93,27,21,42,17,28,20,69,73,15,11,36,81,48,98,36,91,95,61,28,43,95,34,67,91,98,39,17,62,38,39,96,43,36,64,59,53,24,44,74,67,100,97,77,50,34,83,8,33,98,92,3,34,57,47,77,7,57,39,10,91,21,50,87,20,29,37,77,7,66,47,24,93,12,69,94,20,26,23,28,43,71,83,99,5,68,23,93,48,92,1,6,43,15,92,53,61,39,93,73,94,23,61,29,71,84,3,97,5,14,77,34,88,18,10,62,91,75,85,66,75,75,55,67,85,80,88,32,56,39,84,93,43,84,57,95,93,86,69,14,57,5,64,13,74,98,11,44,95,99,65,39,99,65,43,80,86,76,41,85,21,31,96,76,16,26,86,68,90,80,69,67,95,52,7,6,25,39,32,34,23,27,48,11,77,70,68,53,56,12,85,16,86,73,3,99,54,21,41,20,42,96,97,79,60,10,99,42,83,65,96,17,44,19,50,25,13,46,66,32,9,8,70,20,17,22,50,58,49,55,33,44,93,42,33,3,89,14,96,98,46,61,99,68,72,51,11,83,5,6,12,41,57,94,62,52,56,12,63,55,40,82,12,86,5,23,54,78,20,93,32,80,19,56,27,55,76,74,23,84,99,62,44,52,21,27,72,20,91,43,75,35,34,99,96,90,32,100,70,5,17,93,59,32,95,31,3,80,14,5,70,90,80,95,12,74,71,35,12,11,48,11,90,22,52,44,33,81,17,69,92,57,26,40,16,67,64,56,54,38,89,34,9,13,82,39,56,75,96,86,71,31,9,50,59,1,3,21,86,65,20,58,14,5,47,18,22,27,37,46,10,3,35,69,62,32,26,2,7,18,88,80,24,77,59,4,93,15,73,54,42,51,63,64,35,75,44,74,87,65,9,50,18,39,26,92,41,29,82,4,12,36,58,72,55,35,46,26,91,84,57,58,50,11,10,98,88,26,63,55,59,53,35,56,92,37,9,50,98,55,53,44,86,17,81,11,15,97,81,100,96,59,93,39,80,49,58,69,12,57,95,57,88,14,36,30,80,75,61,66,91,20,90,90,85,24,53,13,100,7,54,86,83,93,43,23,8,5,71,83,33,32,43,12,16,83,30,69,56,6,76,81,89,4,30,95,11,42,89,53,56,35,76,94,60,39,86,3,24,87,21,74,84,42,32,91,97,86,89,93,47,67,71,8,92,99,51,39,34,35,31,81,4,66,49,79,4,77,35,13,74,13,68,59,36,80,35,39,37,50,17,50,70,14,21,28,77,73,68,90,47,50,92,73,100,27,57,65,16,57,91,33,11,96,57,10,70,46,22,27,59,36,58,51,5,85,17,100,73,58,37,3,37,23,21,93,8,27,86,90,5,76,8,7,88,40,41,62,57,76,41,36,97,95,26,30,91,88,50,94,58,63,96,27,89,32,91,89,10,31,65,79,93,79,91,1,65,72,34,42,78,3,19,62,11,54,58,28,41,7,22,61,83,18,26,52,13,55,14,15,30,55,35,44,48,75,18,72,44,88,80,17,58,28,89,50,27,23,98,3,93,43,73,17,16,31,39,70,92,69,83,69,90,85,45,98,43,94,86,71,30,33,58,80,31,29,44,46,8,24,100,66,74,70,48,53,20,85,85,71,58,63,35,67,89,21,63,10,34,54,81,66,16,4,4,44,30,94,14,83,42,56,61,36,98,27,75,77,46,46,95,53,97,84,42,34,8,52,28,74,71,65,77,94,94,71,58,79,97,69,66,84,58,71,76,28,84,22,77,76,60,4,41,67,67,100,25,24,36,48,9,4,29,46,51,38,88,37,42,58,23,44,35,94,70,86,16,63,100,76,1,100,86,39,18,81,59,96,96,63,28,82,6,60,65,81,39,21,17,6,56,41,14,52,75,37,43,16,35,1,37,77,84,78,84,8,63,71,64,89,20,19,80,73,63,91,97,86,97,37,81,90,7,75,74,4,36,98,81,28,4,99,98,70,29,57,44,61,88,37,78,71,6,95,38,60,13,9,19,12,5,98,65,36,53,22,23,42,66,29,50,30,60,98,19,67,20,58,8,76,41,42,30,77,24,48,19,93,45,88,24,65,81,9,82,73,79,14,32,17,41,78,14,73,93,33,17,83,51,71,22,30,96,81,26,77,43,33,75,60,99,80,67,60,37,72,28,94,99,31,90,96,12,48,2,87,48,63,56,97,88,63,7,82,62,69,32,93,94,72,64,23,82,69,46,87,38,6,72,55,77,1,90,90,90,79,3,39,54,37,44,37,50,18,53,90,21,57,71,39,66,47,58,98,13,37,8,16,10,98,59,1,79,33,42,11,43,50,80,16,85,73,50,94,21,98,48,51,89,75,50,93,13,19,71,45,88,66,81,16,52,82,53,19,43,69,11,50,25,15,11,30,35,69,52,55,80,31,20,61,5,93,12,87,2,73,12,88,77,56,34,7,88,35,93,15,85,59,85,82,28,58,57,55,28,40,2,66,61,26,15,9,39,18,7,21,70,88,66,64,39,74,54,32,35,4,78,13,16,66,57,97,61,74,52,83,46,74,26,15,40,4,89,89,33,4,1,13,21,26,97,89,67,25,58,56,1,54,81,87,98,98,43,53,49,74,22,5,83,17,41,48,37,70,38,40,60,97,95,57,37,55,76,60,54,52,23,87,5,48,79,7,13,55,17,57,65,18,22,24,30,86,98,2,56,93,38,9,13,99,77,23,18,91,38,66,89,52,44,29,25,40,16,17,64,11,77,69,80,71,10,81,77,100,54,64,40,20,23,38,13,56,1,70,49,70,56,42,72,28,14,52,66,8,90,40,3,16,33,34,38,86,28,20,46,37,67,61,58,19,81,85,50,78,87,91,88,37,50,34,59,61,34,92,60,95,61,1,74,26,19,33,65,7,30,66,44,28,14,70,8,33,76,57,44,80,43,76,82,67,14,100,29,2,42,75,83,94,85,80,91,53,32,66,90,2,14,35,47,54,34,53,58,74,99,76,29,43,22,10,5,11,70,21,79,1,74,64,5,41,78,89,39,46,97,55,100,20,94,65,100,91,3,17,98,34,35,68,69,8,90,86,28,61,46,58,40,48,44,33,61,41,97,72,93,93,52,75,18,71,90,78,54,63,25,3,27,22,68,78,89,93,37,49,1,48,82,13,19,48,48,67,42,22,55,34,72,50,65,8,4,33,43,58,18,30,50,95,64,27,96,10,45,30,94,62,76,55,57,30,71,17,3,84,24,6,51,93,12,94,69,21,85,86,59,61,40,96,22,57,76,3,86,86,3,33,88,100,43,70,46,11,88,5,99,84,8,10,34,51,63,98,30,77,4,63,75,50,12,42,48,94,42,88,42,43,54,89,16,67,93,43,94,68,22,42,82,21,94,74,89,4,19,41,28,56,100,34,49,50,3,90,91,36,31,35,3,42,54,73,50,38,11,91,26,84,21,10,62,6,77,6,42,63,59,31,80,18,8,13,77,31,11,82,91,52,19,77,70,5,80,89,58,24,93,10,72,19,4,40,44,26,67,63,2,7,31,58,69,76,91,91,36,17,46,93,9,84,13,17,47,87,20,36,57,68,79,21,21,22,50,34,89,92,37,44,15,60,42,76,14,7,86,88,49,21,37,65,97,10,17,37,21,58,83,97,87,62,24,39,1,79,17,13,89,19,92,22,55,93,89,3,54,76,88,35,76,97,58,65,92,27,14,35,53,21,41,56,17,85,87,66,86,87,86,87,80,16,67,91,29,49,4,50,66,95,48,85,33,28,86,71,38,65,72,94,6,48,82,40,65,74,44,11,18,42,28,55,74,17,48,41,16,98,34,75,99,100,1,41,31,35,85,81,26,22,79,62,91,48,7,83,52,18,27,33,69,68,96,23,11,24,18,57,26,9,32,61,40,59,20,9,43,2,5,48,68,24,5,68,38,53,32,18,76,70,94,11,12,56,47,54,47,84,27,47,85,55,89,19,99,98,93,87,97,44,17,38,90,12,81,61,95,34,31,89,17,92,15,35,32,36,80,39,58,86,89,91,45,40,78,14,29,58,25,65,91,84,67,15,51,54,9,69,53,40,98,98,57,25,85,28,51,75,9,93,73,84,4,13,21,49,33,24,57,75,65,60,35,60,59,52,89,79,99,91,90,61,30,66,36,77,71,89,84,94,52,80,31,47,3,87,48,24,43,11,52,84,59,69,17,62,55,63,89,40,22,5,46,16,40,25,23,41,68,62,15,14,50,55,61,34,22,57,70,67,81,30,12,48,28,54,95,87,12,66,80,97,98,8,20,74,99,34,23,40,97,26,5,30,14,42,96,86,92,90,48,68,52,56,76,16,70,46,14,23,34,63,51,32,4,79,94,82,87,18,96,91,16,21,19,100,86,25,95,58,66,48,94,55,64,32,67,97,87,77,46,57,52,52,99,84,6,67,78,41,93,39,14,100,58,87,78,73,39,76,9,62,66,93,37,68,34,56,48,72,37,36,60,8,33,62,98,5,20,1,87,85,15,79,33,77,1,33,43,26,89,96,58,41,46,7,100,66,5,78,18,17,13,52,7,83,7,12,92,56,93,30,32,3,4,62,95,81,55,32,14,42,44,91,41,71,99,46,16,51,100,30,20,64,45,98,44,62,23,94,16,7,14,84,52,72,25,91,55,85,75,40,63,3,68,67,65,80,69,12,64,20,95,78,82,74,26,22,70,7,33,84,40,82,47,63,54,27,40,17,30,66,6,40,83,6,74,55,5,99,3,55,23,39,18,3,79,50,67,8,95,91,94,76,40,14,89,48,88,43,24,26,76,31,44,8,72,15,44,52,86,37,20,98,64,49,75,2,24,57,71,51,30,59,98,43,90,34,54,42,47,59,100,57,88,48,26,12,37,28,73,100,88,76,8,87,57,92,97,17,76,86,40,69,7,11,32,18,85,82,83,27,87,5,100,44,27,22,47,25,18,72,33,77,79,95,42,64,7,58,14,87,84,29,97,29,16,7,54,6,81,42,77,57,76,78,55,77,71,83,99,75,47,25,69,25,74,24,37,72,12,69,58,30,49,84,43,9,74}

    {2,55,11,39,2,29,38,37,13,1,55,49,3,20,5,13,34,10,50,9,5,6,42,30,41,47,22,6,47,18,41,8,5,10,18,41,25,17,9,51,28,14,9,25,25,36,48,12,11,26,55,43,10,49,6,1,43,11,11,34,32,42,47,5,38,8,42,31,30,24,20,53,41,9,23,10,10,31,3,9,1,17,31,4,32,9,35,28,53,23,20,46,54,37,19,1,38,26,18,42,28,35,22,37,44,32,33,35,45,49,20,22,49,18,35,38,18,6,38,48,16,39,50,9,44,20,50,45,42,12,46,32,30,40,10,14,2,25,11,41,29,8,53,33,53,17,38,21,1,19,18,33,32,1,17,23,44,16,51,38,50,14,34,42,41,19,44,7,34,5,26,54,31,24,25,45,16,34,21,1,53,46,48,3,46,27,39,53,20,1,28,21,14,45,21,48,9,5,12,8,40,49,47,28,51,37,55,44,48,44,27,50,17,9,35,42,38,12,28,9,16,33,40,29,14,17,18,36,7,48,5,7,20,7,36,40,10,50,44,27,49,36,10,22,28,52,47,1,10,12,9,49,44,1,17,19,48,21,23,41,53,25,48,31,8,9,52,55,43,55,41,49,4,15,25,38,10,31,5,39,44,40,6,30,47,54,20,32,16,11,7,37,41,19,15,31,25,39,37,42,22,29,22,1,25,28,46,50,52,7,33,27,37,34,10,5,42,54,24,34,36,2,4,53,29,46,44,7,48,28,7,35,33,52,11,14,18,41,24,22,43,40,7,5,12,13,3,27,47,29,48,52,11,3,16,38,30,19,38,33,43,10,32,4,43,52,43,45,23,38,1,18,23,43,49,48,44,16,3,18,36,38,21,43,28,19,28,3,54,2,1,21,15,22,9,55,22,8,46,36,20,37,35,25,9,48,50,44,42,10,11,37,5,47,45,55,10,16,41,25,38,36,2,52,17,9,5,50,16,54,49,21,24,1,13,18,42,37,22,22,40,24,24,13,6,42,12,17,36,4,7,32,26,30,49,3,2,25,54,6,22,47,35,35,24,39,37,23,43,4,31,15,6,27,14,42,23,44,11,37,9,28,3,51,13,4,20,11,30,8,33,9,39,27,12,34,52,19,52,49,54,43,36,29,47,36,21,34,30,28,25,51,13,2,25,25,42,10,10,20,37,5,37,40,23,37,4,44,43,21,34,14,6,51,5,41,26,21,50,41,11,20,33,40,9,8,25,28,28,11,9,2,9,24,9,29,18,3,42,5,38,23,32,29,47,4,6,5,16,41,25,40,38,40,12,43,48,44,12,6,41,53,5,20,5,19,30,33,28,20,11,1,15,55,54,30,6,24,22,32,1,11,45,11,48,16,9,6,52,19,52,18,45,10,20,35,24,45,32,48,17,43,6,19,12,30,27,29,24,17,10,42,25,28,36,28,5,23,8,47,4,27,21,53,51,50,15,4,3,41,9,45,24,34,36,42,45,22,42,48,43,44,22,27,28,5,33,30,27,2,32,6,27,38,15,30,46,29,18,43,44,21,24,30,21,8,25,5,27,25,5,16,29,42,15,8,29,24,28,50,36,33,30,8,49,35,13,27,2,39,48,51,46,51,17,55,9,46,38,21,54,37,27,2,37,4,55,46,40,48,54,18,14,23,12,42,28,2,50,34,10,48,54,15,22,19,2,29,11,38,34,34,18,5,45,32,19,1,43,9,2,33,6,10,12,6,19,55,23,45,16,39,29,36,30,50,33,30,8,34,28,51,12,20,26,55,16,19,26,4,5,51,4,45,35,30,54,25,5,2,4,13,13,33,53,43,41,10,34,41,31,48,3,47,6,52,52,18,10,46,48,45,9,19,22,19,6,8,2,20,7,20,13,32,24,16,2,14,29,53,4,3,6,16,30,3,45,36,40,23,45,51,24,8,38,16,4,18,25,50,40,9,50,9,54,51,22,23,18,28,35,6,35,18,2,46,14,41,6,14,31,45,44,23,32,42,51,2,22,9,42,25,17,7,12,4,4,9,50,51,3,9,34,9,53,20,3,4,13,25,43,48,20,33,22,51,3,47,48,53,51,46,20,4,13,14,3,52,26,20,27,6,51,42,14,24,47,10,20,15,41,51,29,54,48,39,23,49,46,6,41,42,42,21,55,48,40,17,35,9,15,14,20,35,18,49,11,5,32,41,10,37,49,12,8,37,41,36,55,51,24,48,45,41,2,31,26,1,31,2,39,53,35,7,25,9,29,29,46,39,32,39,18,49,33,10,1,15,33,26,53,19,22,34,19,25,38,54,20,32,3,41,10,6,16,45,46,52,25,33,20,1,17,34,8,44,41,2,41,55,31,48,13,4,54,37,48,29,28,13,5,13,28,4,47,49,54,55,12,43,25,45,15,46,23,12,39,26,32,17,5,8,53,37,30,35,7,12,39,41,19,24,8,27,31,55,27,8,18,45,47,15,23,46,47,16,7,11,5,24,24,54,10,16,15,29,26,27,43,23,34,27,39,51,40,2,11,5,12,44,52,35,35,9,11,27,9,19,48,47,12,12,35,49,55,47,18,42,30,36,17,50,52,14,24,20,21,23,34,6,54,27,41,5,24,8,7,23,5,28,12,23,34,5,34,20,52,49,40,36,44,25,14,33,42,28,43,45,8,48,35,36,24,24,26,23,35,41,51,52,44,43,51,16,34,2,24,5,49,6,34,44,29,37,18,26,24,46,38,23,45,27,12,19,52,37,36,1,5,29,47,7,16,50,23,37,46,5,22,21,18,12,34,46,7,43,35,52,18,17,13,54,22,32,11,54,54,25,29,13,6,30,55,3,15,48,23,29,38,42,54,24,44,22,53,19,24,32,9,13,46,53,25,4,2,18,26,5,32,46,26,22,49,3,50,28,21,31,44,30,24,48,54,4,32,7,3,55,6,54,27,7,33,45,20,10,48,36,9,41,14,40,31,12,3,23,26,42,24,46,42,38,14,27,55,32,36,12,6,6,25,8,47,50,3,48,10,16,25,20,13,29,55,53,21,10,28,19,2,36,8,38,10,36,39,14,3,50,47,8,6,9,16,38,15,33,9,26,49,32,13,31,14,47,33,38,8,31,30,17,40,55,53,41,18,45,16,46,31,4,19,25,1,46,12,19,7,20,21,52,54,24,18,10,28,24,14,9,53,14,11,15,4,3,10,53,36,21,28,40,25,41,16,41,15,11,4,43,46,17,52,22,25,36,31,55,11,10,17,28,25,16,45,33,49,24,20,37,2,35,48,13,35,11,41,30,23,3,36,35,48,19,21,50,6,54,44,37,4,2,22,55,33,13,49,14,20,12,51,41,6,39,22,41,35,25,53,37,6,38,40,45,54,29,14,44,5,46,20,10,11,22,39,23,42,4,12,16,24,12,2,5,50,17,13,11,30,38,40,45,15,45,9,9,39,19,6,13,32,17,52,24,54,35,29,41,6,13,9,27,20,35,41,22,44,52,33,52,10,47,3,11,36,38,27,11,1,34,44,8,47,22,30,7,29,43,6,1,4,50,17,21,37,45,17,5,31,13,46,34,30,32,11,43,21,31,32,10,24,17,53,15,32,27,44,53,5,34,40,34,14,36,17,19,9,23,50,31,46,31,55,28,23,20,41,22,2,23,32,27,11,45,40,30,16,7,27,51,54,50,52,30,28,3,50,7,18,40,25,36,41,49,19,1,19,49,8,22,46,45,12,10,39,25,44,37,8,2,20,1,31,55,12,10,13,53,20,28,53,10,38,23,42,51,17,22,45,45,18,23,55,8,10,42,19,3,36,54,54,14,5,3,29,28,38,7,54,36,1,15,1,17,37,55,49,27,36,47,36,29,37,20,32,1,50,17,23,2,55,30,30,42,36,46,27,21,15,26,15,27,7,20,38,41,16,54,2,5,51,36,37,19,11,43,20,52,28,43,20,34,36,30,4,6,43,32,40,10,54,5,36,35,54,21,45,33,12,44,34,48,1,45,36,52,54,20,2,17,1,30,16,10,24,45,52,26,43,25,16,34,22,22,4,10,12,12,26,55,53,23,31,35,7,37,28,54,49,39,36,25,46,16,39,4,23,44,45,51,29,30,15,15,33,12,24,24,24,4,45,54,20,25,17,14,51,4,35,55,27,22,24,14,26,2,25,30,27,29,46,45,46,52,20,37,9,54,24,23,3,33,11,31,2,15,17,18,54,26,38,33,10,16,32,36,28,23,55,54,5,3,7,37,50,9,34,31,28,5,34,42,20,21,30,4,24,27,32,54,17,31,23,41,42,1,30,39,46,19,49,15,10,1,34,2,7,41,31,21,24,35,41,40,51,32,55,40,48,41,38,1,23,54,50,32,54,47,29,38,3,43,29,36,27,31,1,44,7,9,23,5,51,15,18,26,7,52,36,26,49,36,46,18,22,18,52,9,34,37,6,30,16,43,3,32,5,18,6,38,2,51,39,11,14,24,27,35,2,53,46,4,54,1,14,21,17,20,41,38,28,14,11,33,5,49,41,54,2,49,13,1,1,1,3,53,15,38,3,11,28,19,17,27,17,19,46,16,49,36,45,52,7,49,19,24,38,36,17,39,25,19,6,32,6,25,10,55,53,24,46,25,29,38,1,21,55,29,5,38,23,12,10,44,11,5,2,7,24,23,46,12,42,8,42,4,8,14,14,2,15,45,12,18,41,22,45,1,23,47,10,19,50,30,43,17,37,37,31,35,32,28,30,32,9,13,49,22,8,28,22,49,10,49,4,54,23,53,39,19,43,13,24,33,26,51,8,37,47,2,45,28,8,24,13,38,24,18,17,31,43,41,29,45,55,3,39,32,26,19,7,15,7,35,49,16,2,47,18,43,51,38,35,45,13,28,36,38,47,33,42,32,9,37,19,53,49,35,16,19,45,38,28,19,18,47,11,50,11,50,2,41,31,4,9,14,26,38,11,38,29,28,49,39,49,53,40,10,44,51,20,50,51,15,17,29,32,29,46,50,23,35,7,51,51,32,31,40,39,34,3,43,46,46,31,1,22,21,10,3,21,15,41,44,43,37,50,16,52,15,24,21,20,49,12,53,45,47,3,49,55,52,15,9,13,10,19,3,17,14,36,8,25,25,29,16,45,14,9,54,12,10,23,48,37,20,36,12,6,16,54,7,45,51,17,37,12,21,14,51,24,1,35,31,22,25,28,25,24,48,49,19,9,36,52,28,42,13,35,25,27,49,22,42,32,12,45,28,31,29,45,23,34,10,24,38,7,16,35,25,25,42,42,25,40,12,54,24,1,17,37,38,17,14,37,25,13,53,30,5,48,54,20,32,9,19,38,13,3,13,52,5,1,43,23,40,45,48,42,17,14,10,15,23,48,49,30,48,23,4,35,22,17,40,22,26,15,39,11,27,24,10,35,35,38,46,48,15,5,28,21,16,16,42,43,48,44,43,10,36,26,49,3,20,31,1,33,5,47,36,54,49,52,18,16,50,46,33,1,27,5,39,39,3,49,5,38,46,42,4,44,31,6,50,22,30,7,9,31,38,32,33,30,41,25,6,33,26,5,23,32,50,37,32,29,15,51,15,51,24,20,13,13,52}

    {49,44,12,45,40,18,11,8,9,25,16,8,19,5,20,19,32,11,16,31,8,51,7,44,45,34,18,23,17,54,20,33,11,13,25,29,43,40,1,43,31,4,52,42,35,14,38,44,36,44,50,13,41,50,12,2,2,52,3,15,23,19,32,50,19,52,35,8,31,10,2,5,13,41,46,14,5,47,49,12,17,9,11,7,39,20,39,17,51,22,44,34,32,52,40,19,46,13,11,51,18,42,42,2,38,51,34,27,9,27,49,38,7,45,32,50,25,7,37,25,5,6,9,18,42,20,39,38,11,23,30,49,23,24,53,13,38,48,22,22,49,26,41,17,52,9,27,10,34,22,37,53,2,33,21,40,8,7,50,10,21,1,16,37,35,32,14,26,32,17,8,16,14,48,21,20,9,43,43,17,32,23,39,37,35,36,40,51,37,50,4,29,12,20,37,23,49,40,14,30,1,35,5,18,46,46,39,37,30,6,18,31,11,15,15,31,53,27,6,36,47,55,32,28,19,12,18,6,52,34,38,13,40,2,31,25,45,12,50,9,6,14,43,27,41,9,40,1,15,13,3,4,42,54,44,36,11,44,13,2,34,25,54,31,41,13,1,20,3,17,52,38,18,7,38,31,7,37,53,9,10,32,41,54,23,40,43,11,24,2,50,30,5,22,52,25,42,4,16,48,29,4,25,11,34,43,49,1,24,27,11,31,19,34,29,19,10,28,13,20,21,2,46,4,30,19,41,20,39,41,6,26,1,16,40,1,53,2,2,1,35,14,10,7,55,9,28,49,39,33,34,41,52,44,16,19,51,55,14,22,41,55,51,6,54,17,3,25,51,19,23,1,28,40,26,12,10,3,25,5,47,45,36,4,35,13,9,50,9,1,23,31,15,39,49,16,43,40,14,36,46,50,8,19,51,9,7,8,45,49,52,16,3,33,55,9,49,22,15,48,25,37,6,19,23,36,6,22,2,33,28,38,9,54,18,9,16,53,30,40,21,49,43,13,43,10,7,12,40,54,44,53,47,26,1,23,34,32,11,11,19,37,21,51,17,32,47,28,18,33,30,15,28,10,34,41,25,53,30,8,23,53,51,37,11,17,54,42,30,30,7,40,6,55,11,32,29,14,4,40,53,35,45,39,7,5,49,30,19,20,12,23,38,41,53,46,8,35,23,46,8,20,4,16,46,42,28,33,5,12,50,5,35,16,26,54,34,49,53,33,52,35,13,54,55,15,20,20,28,55,5,13,7,27,49,44,23,22,51,40,41,43,17,35,42,52,52,40,22,40,25,26,28,8,44,26,3,29,20,12,51,49,7,21,31,2,24,21,48,47,11,47,23,46,38,18,24,5,5,10,36,42,55,55,45,47,16,39,41,18,31,38,39,32,12,31,41,3,31,7,14,9,31,35,9,45,46,24,21,26,30,16,18,33,5,15,11,49,46,20,5,14,52,52,49,34,7,16,19,7,52,9,44,22,8,17,20,43,54,8,15,25,23,10,23,53,10,45,50,38,49,55,38,50,6,36,31,7,25,41,43,8,25,55,19,32,52,44,10,41,9,22,6,38,2,46,24,36,12,2,30,1,10,15,10,21,36,6,33,40,33,32,48,18,39,5,55,7,43,4,10,18,44,8,2,55,10,48,12,37,8,48,52,30,53,20,6,2,55,22,21,27,2,1,40,29,41,33,2,21,35,40,24,33,26,29,12,27,21,47,49,35,48,40,7,29,19,39,55,25,13,55,53,10,41,1,47,46,7,29,5,27,11,44,28,10,7,38,10,1,29,33,11,28,25,40,39,39,2,1,37,34,23,21,24,46,3,51,28,18,12,54,33,21,36,51,7,35,17,30,11,40,46,48,50,26,23,7,18,33,14,23,47,29,55,9,24,28,29,9,24,6,36,40,20,11,44,36,37,2,43,51,3,3,47,16,35,8,25,53,25,48,50,55,51,46,30,15,7,13,16,18,37,34,10,3,32,48,17,1,16,47,20,54,2,40,47,25,47,53,18,1,27,5,2,26,55,47,35,27,13,20,26,23,37,11,32,44,50,46,13,23,54,2,3,43,7,19,29,24,8,48,55,1,3,37,27,11,19,44,13,7,22,4,55,22,42,48,5,39,54,13,52,39,4,25,17,11,29,46,41,17,38,12,2,3,22,3,47,19,46,15,53,7,43,3,27,55,37,23,43,50,55,12,2,26,54,22,35,1,18,25,41,10,2,54,15,16,21,11,34,22,46,1,53,15,49,37,34,39,29,32,25,45,35,27,41,43,2,28,27,20,28,51,27,14,8,10,36,50,19,15,35,47,13,46,40,35,43,4,30,4,49,43,31,8,16,7,25,47,43,47,16,15,13,41,14,15,31,26,27,13,30,33,42,13,46,51,24,24,16,45,36,12,13,41,30,12,22,41,29,14,21,19,44,32,12,53,30,13,2,11,43,14,31,45,46,14,46,15,20,51,39,33,31,37,27,35,19,33,10,38,17,13,18,15,38,4,28,51,10,11,11,24,45,15,11,25,47,17,39,24,29,42,33,14,21,19,55,20,11,45,28,43,26,16,18,11,22,46,26,29,35,26,32,30,14,45,24,29,17,12,14,31,43,20,51,4,9,46,31,5,32,26,3,55,34,2,33,6,11,49,1,30,40,5,50,39,2,49,43,29,2,9,53,28,51,44,22,13,37,53,52,3,33,30,43,35,53,16,14,37,30,3,2,18,24,20,34,53,53,20,43,33,55,52,28,25,11,40,4,37,22,30,22,33,23,54,30,33,29,23,55,54,35,6,10,33,4,47,28,17,17,37,46,5,29,21,33,31,55,34,10,2,42,24,34,27,5,25,1,55,18,50,7,16,17,8,46,40,29,30,51,9,36,44,10,5,41,6,6,1,46,17,15,52,33,45,45,26,29,28,48,55,1,14,34,11,4,9,17,1,3,10,46,1,6,19,15,31,15,28,17,9,30,40,30,29,54,38,9,1,47,41,9,47,36,3,38,1,24,55,19,19,55,54,27,20,36,7,11,24,5,52,28,6,42,49,25,11,7,39,22,24,48,29,2,16,39,16,24,16,31,25,44,8,55,29,5,49,45,41,35,4,44,12,46,23,33,10,32,36,36,9,38,7,46,39,34,55,27,1,42,44,2,33,39,26,19,52,45,47,35,31,40,55,1,15,16,1,35,45,36,8,7,19,44,9,28,40,11,31,34,4,37,28,55,26,23,22,29,13,6,44,37,49,25,47,2,11,9,31,9,33,2,1,41,52,26,1,23,50,33,27,43,20,32,6,24,51,8,38,10,2,8,26,28,26,10,33,43,25,26,47,30,54,12,23,21,54,1,40,20,55,49,30,51,55,5,23,47,43,36,38,12,26,36,53,21,3,23,51,55,18,49,30,3,12,39,20,42,40,15,6,12,2,16,17,26,5,52,24,53,7,13,22,6,16,45,10,5,26,48,3,37,33,43,11,39,52,8,1,1,55,38,16,53,23,17,3,47,21,11,19,52,2,52,53,31,18,37,27,4,39,40,31,37,32,27,26,34,47,36,8,23,45,37,31,52,8,13,43,22,31,36,49,37,23,5,15,20,6,27,34,51,24,13,38,41,20,53,33,18,45,23,52,19,53,18,24,19,22,36,31,19,24,32,55,16,5,52,45,32,44,33,48,52,35,22,42,38,9,30,9,32,55,28,2,29,14,14,47,3,25,30,8,4,35,37,36,8,12,41,48,42,19,23,29,4,29,6,48,39,10,2,2,16,25,7,38,32,34,38,48,36,33,18,41,46,20,11,53,43,51,49,50,39,48,35,30,5,48,24,49,11,26,3,38,41,46,41,24,38,44,52,16,36,32,15,7,22,32,27,30,18,8,23,9,17,19,43,23,51,14,4,32,33,11,31,32,2,21,50,42,38,54,52,47,5,3,13,54,9,17,33,9,2,41,42,33,32,27,55,23,19,47,13,9,34,8,40,52,47,12,52,6,9,51,14,26,11,25,30,22,27,13,17,31,12,54,39,1,6,52,53,54,49,23,36,49,34,18,53,44,18,47,8,11,7,15,4,44,32,5,7,47,11,27,15,30,10,1,36,23,39,36,14,22,52,20,45,7,20,5,14,6,18,46,5,30,31,52,36,53,18,22,54,8,25,50,26,22,39,47,55,41,7,30,42,39,13,14,34,26,49,13,43,20,51,49,15,9,34,4,55,39,36,28,44,44,40,8,50,25,32,24,1,34,20,23,30,51,23,30,4,15,40,30,34,12,4,4,50,36,38,51,39,37,32,6,50,33,10,28,32,53,22,5,37,35,50,5,41,21,51,23,19,14,15,25,52,31,29,17,4,22,54,14,4,46,5,26,24,27,10,33,36,14,38,3,53,38,20,48,51,28,14,2,5,29,32,4,16,38,11,8,2,10,15,44,28,27,15,42,37,31,6,30,49,54,15,22,20,30,21,7,28,34,14,54,53,44,7,20,6,46,24,42,49,46,47,3,9,6,48,35,47,26,23,15,22,46,43,10,30,49,41,15,33,13,46,50,24,44,10,35,34,47,48,9,20,18,45,20,46,43,9,54,50,52,54,7,29,22,31,44,18,18,39,47,52,21,44,28,42,53,4,12,47,15,20,41,54,2,29,7,2,37,45,6,43,36,31,41,5,10,41,32,55,46,37,55,13,19,4,39,22,26,54,29,1,27,6,2,20,11,18,19,27,50,19,50,43,16,39,5,45,2,29,39,36,23,55,6,31,30,2,4,22,18,44,11,1,12,13,36,45,43,36,27,35,28,24,29,11,47,40,44,1,44,47,19,3,52,8,36,11,39,14,29,17,53,20,31,18,17,24,33,14,23,6,22,33,43,51,10,18,16,2,48,31,3,11,52,29,19,3,25,37,20,15,15,10,44,46,24,55,37,53,43,13,36,6,37,17,47,38,6,30,17,42,21,2,20,33,1,12,55,43,54,50,22,47,1,45,16,24,53,2,31,46,37,21,30,28,8,47,22,52,2,40,22,25,37,13,28,8,44,32,19,15,8,45,5,17,18,21,6,18,1,53,1,13,22,50,22,40,37,8,43,43,34,55,12,9,38,47,11,22,33,5,41,34,2,2,11,13,22,7,30,45,26,33,31,21,53,27,42,45,10,43,17,53,17,30,11,46,27,22,47,19,55,10,40,18,12,51,24,16,55,28,18,45,4,10,18,15,40,24,37,6,53,13,43,51,23,47,17,40,10,23,44,23,32,30,16,51,4,46,8,27,30,20,24,25,19,37,7,7,12,52,14,48,9,6,14,2,23,3,7,19,1,50,29,48,43,32,32,52,27,35,9,27,39,32,24,4,43,17,5,35,3,42,22,20,34,52,10,8,30,37,15,22,36,3,21,19}

    Returns: 124989

  53. 100

    {77,91,72,43,5,24,95,76,84,34,38,47,23,81,23,5,85,100,81,95,60,35,50,47,85,16,84,17,39,70,95,37,20,78,59,60,52,99,56,39,86,77,34,67,60,94,65,41,40,92,26,23,77,4,68,67,40,1,20,85,40,16,38,22,78,54,90,6,6,33,79,1,34,32,1,96,42,71,83,34,48,70,93,12,92,12,35,32,89,24,35,48,39,56,85,64,63,10,3,74,90,64,33,83,96,37,12,48,60,77,91,74,87,34,12,85,32,58,25,97,9,11,27,88,12,98,90,46,96,36,91,39,15,70,96,51,71,89,26,22,45,36,92,85,76,49,44,43,53,26,46,61,12,16,84,28,97,59,43,31,23,61,16,53,27,65,53,15,58,86,59,20,71,33,30,27,95,99,9,74,4,86,39,82,31,73,74,51,7,72,31,89,52,18,47,77,68,10,10,65,51,96,81,67,75,34,57,39,47,60,43,96,98,25,12,19,27,82,50,44,65,21,28,40,19,24,27,28,74,53,44,20,59,52,38,78,5,29,44,93,24,96,71,19,22,93,98,97,21,11,88,68,65,98,3,31,75,96,68,56,89,93,63,10,55,65,1,36,97,9,97,83,15,86,17,34,63,88,36,1,52,29,45,53,58,89,63,32,3,89,60,43,9,74,11,78,41,73,35,97,70,57,13,36,32,74,24,23,67,52,75,89,61,58,44,16,62,79,13,56,56,53,15,34,49,96,77,11,48,5,96,27,51,69,51,41,58,40,14,2,14,3,7,38,98,57,81,11,2,90,43,13,19,25,33,81,33,58,44,89,53,75,56,55,26,7,35,18,29,5,65,83,29,85,22,6,55,26,64,89,65,38,41,76,2,37,94,26,15,18,57,73,28,2,47,58,7,60,78,96,32,48,10,58,4,46,93,28,25,36,69,2,91,13,33,85,51,56,70,94,18,89,16,100,7,48,34,66,39,51,32,27,32,61,71,21,60,42,78,28,83,86,24,18,83,96,42,63,90,42,68,27,3,50,96,17,82,95,14,96,16,48,64,22,26,22,6,98,23,60,55,64,94,84,22,65,40,84,76,71,80,40,95,29,62,89,89,33,27,27,33,7,35,18,54,8,16,93,95,15,29,77,73,93,48,49,52,5,23,54,44,75,16,86,51,45,33,62,76,1,38,57,38,83,64,94,22,15,14,45,35,84,54,31,40,61,18,47,61,23,36,45,91,47,34,47,40,59,44,91,18,17,6,66,47,42,47,73,78,87,67,8,75,21,70,27,26,24,39,42,37,51,41,66,60,86,53,84,17,24,81,73,74,54,15,71,44,66,24,37,95,15,8,43,65,77,24,66,94,84,20,78,19,10,91,33,81,66,41,37,48,9,77,23,50,12,58,21,6,58,77,96,14,1,34,46,35,8,41,92,55,59,75,85,29,80,95,22,83,11,2,35,3,76,33,35,61,100,85,10,44,25,11,66,62,38,10,67,1,59,56,75,55,75,82,9,37,98,100,57,33,89,88,37,74,84,59,79,31,38,70,25,80,86,43,58,9,25,88,62,88,80,70,10,75,79,64,70,40,72,2,20,94,38,43,91,10,8,38,8,9,87,13,12,41,1,34,3,37,1,68,68,88,63,27,45,65,85,100,38,75,30,86,79,21,12,64,21,89,97,25,4,10,4,55,68,80,32,32,98,47,4,68,100,37,8,18,36,1,36,54,42,52,87,84,51,64,54,92,41,6,48,59,39,91,18,24,61,28,22,49,78,77,57,27,78,16,6,14,19,66,99,36,100,12,42,62,86,12,95,24,88,86,2,6,68,38,38,7,72,62,5,57,9,57,77,36,74,83,57,21,20,56,80,85,73,16,96,28,73,54,73,53,87,30,77,28,41,87,76,46,64,99,36,14,11,81,13,84,88,21,8,56,76,10,65,73,47,49,96,75,75,67,87,34,38,78,13,76,44,72,9,53,74,28,47,8,5,9,5,35,44,23,14,53,90,69,89,44,41,59,7,35,89,25,63,69,24,98,54,2,68,86,51,66,30,45,33,38,83,93,67,36,22,89,29,97,7,55,22,66,30,13,5,69,27,42,58,27,52,5,41,7,91,82,62,6,98,34,56,4,7,25,2,36,96,58,16,73,20,81,94,18,9,83,97,75,27,33,78,77,14,100,45,8,98,87,72,85,46,60,79,38,24,11,32,41,20,59,91,49,93,75,27,96,70,56,63,28,85,98,28,57,71,35,15,25,23,49,42,18,39,90,20,48,18,75,62,93,18,92,79,80,18,46,11,46,6,70,33,39,17,39,83,61,69,7,53,5,8,5,34,72,57,43,39,92,81,81,64,66,15,27,9,37,87,57,87,24,43,67,73,38,36,96,89,52,72,70,17,59,98,73,24,34,38,61,41,78,4,86,87,97,81,37,24,65,99,37,67,74,98,86,8,92,69,8,82,4,26,76,44,32,52,74,23,11,45,4,10,89,4,10,92,38,9,48,19,58,85,8,80,41,54,65,71,35,85,5,38,64,46,44,3,96,86,72,39,44,61,74,65,25,67,41,13,29,14,17,7,67,63,46,30,4,72,83,65,30,54,14,47,43,25,48,73,64,39,48,49,60,4}

    {63,44,84,20,60,43,4,54,37,6,29,12,57,92,27,16,10,63,57,33,3,6,28,77,32,37,34,56,88,6,37,75,21,9,58,28,86,42,14,84,67,49,23,77,89,31,52,13,2,25,25,75,41,48,21,91,54,17,60,13,6,70,3,21,57,81,54,12,57,74,80,27,80,30,46,95,59,39,98,30,2,44,4,60,83,82,8,23,49,17,36,47,87,56,54,31,58,92,46,1,27,67,71,74,43,59,23,49,10,2,99,81,78,15,88,54,88,76,41,6,20,2,23,30,54,21,1,52,40,72,45,98,92,98,3,10,26,57,32,42,95,96,62,59,83,31,83,97,53,45,57,88,55,1,82,51,65,61,40,36,14,57,3,77,40,2,68,61,20,65,62,6,81,96,45,89,40,99,14,4,75,78,16,92,66,28,48,36,29,45,48,2,88,14,30,7,25,11,85,70,99,86,92,22,80,26,71,11,46,90,65,7,40,87,64,5,57,38,20,87,52,65,100,36,87,7,48,96,70,10,77,94,94,45,94,76,7,18,59,84,16,3,38,9,37,79,26,88,12,100,78,46,3,18,20,2,1,71,61,60,88,24,70,32,97,78,67,39,62,9,78,14,32,64,40,66,94,49,13,13,13,96,25,84,10,9,48,92,55,27,55,27,36,29,24,72,90,48,86,64,31,54,36,18,37,43,92,2,39,12,69,26,79,53,56,19,81,79,35,88,8,7,21,47,87,86,81,63,98,81,86,17,26,69,84,95,36,1,66,36,90,43,31,34,35,88,47,54,43,59,64,59,74,15,4,48,32,3,44,21,63,30,67,29,34,98,49,37,38,57,49,44,68,50,17,13,97,87,77,42,13,54,97,77,68,10,77,2,5,17,77,46,57,63,20,71,1,2,95,58,9,84,25,44,32,79,44,51,92,3,66,74,93,38,44,62,80,10,38,23,33,8,34,75,100,77,86,62,39,79,1,49,62,29,88,1,45,28,64,5,100,86,44,1,89,91,57,49,72,26,35,87,8,32,6,58,18,36,34,90,56,3,74,61,63,56,75,64,57,1,30,88,14,30,43,63,50,49,55,78,98,18,15,79,94,82,3,52,22,34,64,68,15,93,79,7,65,18,35,23,22,75,83,86,37,53,17,65,45,84,64,20,52,80,93,65,45,72,54,52,9,85,40,11,10,99,96,97,71,49,4,91,34,5,70,88,92,92,79,59,49,7,89,10,41,43,58,86,60,51,32,33,92,34,44,39,78,26,7,88,15,88,25,19,88,41,78,52,70,34,72,62,68,100,13,25,78,10,91,82,53,32,6,31,51,98,53,2,29,69,98,70,74,16,81,23,72,77,4,89,86,67,60,98,77,65,14,68,11,13,15,34,59,58,20,39,14,27,47,36,100,86,98,68,99,33,53,43,73,24,38,78,79,51,48,57,96,9,8,93,63,93,68,42,57,85,92,30,57,94,39,36,36,81,33,74,80,51,11,32,22,11,83,2,23,23,18,91,77,43,26,44,8,10,4,12,17,92,42,9,36,6,27,64,2,30,10,2,25,10,23,61,49,2,89,7,67,23,3,28,25,13,5,26,66,72,13,86,79,18,42,88,37,47,74,72,8,14,26,69,72,27,90,52,77,48,21,93,4,42,76,7,45,55,7,95,28,96,72,83,52,17,97,82,57,36,18,54,68,92,97,2,24,62,7,40,32,56,46,22,59,1,68,49,7,73,71,79,98,86,18,71,36,51,41,34,3,19,93,29,81,88,22,63,6,16,52,50,80,93,49,57,6,49,9,43,42,41,74,18,70,42,46,66,78,95,68,68,25,81,92,37,40,10,62,13,53,47,93,17,89,2,70,24,9,92,98,64,58,35,36,35,20,95,33,49,44,73,81,59,67,86,43,70,57,91,46,86,17,20,29,6,22,54,69,99,85,41,93,9,88,88,34,26,35,58,85,15,16,20,70,34,44,36,13,24,25,56,10,97,2,71,44,83,40,18,17,15,99,89,28,66,57,64,47,83,51,14,15,43,23,65,13,97,49,66,40,76,99,12,48,71,22,3,100,92,49,60,6,9,76,13,58,2,73,66,34,32,34,18,36,92,86,44,4,77,76,51,86,86,99,64,2,3,90,8,43,62,57,69,93,71,46,98,22,78,52,64,18,2,68,35,88,24,98,31,2,3,78,49,17,25,43,61,64,31,23,11,45,47,64,98,61,43,4,89,41,87,56,49,19,20,85,90,85,48,19,4,11,2,43,61,11,28,6,57,10,51,77,37,56,81,73,42,9,22,5,66,30,25,64,13,87,29,9,57,89,93,4,24,79,28,97,22,83,70,95,4,62,38,8,8,99,62,29,34,65,100,79,47,43,74,67,51,82,30,24,63,10,2,55,51,26,4,32,13,41,70,64,73,65,9,58,63,75,59,81,68,29,29,69,11,39,21,85,90,64,49,78,18,26,57,89,75,95,2,61,99,69,17,37,89,100,99,59,99,4,50,70,46,32,1,2,51,76,95,13,45,18,32,100,76,35,20,48,79,28,41,95,94,27,25,70,1,14,70,73,47,80,76,41,52,29,66,75,49,26,36,87,98,92,62,49,16,27,7,15,23,71,10,47,49}

    {6,29,73,79,37,50,61,63,29,79,49,11,65,71,76,20,83,81,99,76,3,84,48,83,87,70,53,97,18,57,63,80,77,98,99,74,30,8,39,86,57,77,2,45,94,4,20,13,85,22,98,92,69,65,44,98,97,62,39,58,69,52,25,81,84,11,49,93,67,51,69,92,99,17,25,39,90,80,36,78,50,38,99,15,12,69,100,30,93,12,34,63,60,15,74,15,57,6,30,80,67,97,97,98,46,87,56,30,40,89,20,19,100,25,36,20,46,44,14,73,20,34,58,81,7,99,90,81,87,10,80,84,74,37,25,75,21,17,51,98,26,23,14,22,67,40,80,53,88,75,92,56,7,88,11,64,92,43,5,13,26,40,84,44,19,24,25,66,89,42,11,6,77,14,27,12,8,20,68,22,24,83,85,66,89,57,5,1,41,38,46,54,17,39,19,96,94,81,88,15,92,88,26,63,62,100,90,54,40,27,54,24,6,50,43,99,55,41,28,94,19,95,90,67,46,31,14,5,63,32,93,35,7,89,50,15,99,17,29,64,11,18,92,83,67,59,95,28,14,87,25,61,56,52,63,59,19,2,45,26,88,66,99,89,28,18,99,58,94,16,67,54,86,34,36,28,64,75,62,8,98,39,11,60,99,5,44,39,64,6,54,83,90,18,69,2,77,57,73,76,1,98,52,2,64,25,72,82,48,33,85,96,78,10,8,44,82,57,7,99,61,98,85,79,24,83,11,98,37,77,1,7,11,87,2,37,17,89,73,86,57,67,80,99,14,85,99,34,29,97,88,13,90,87,55,31,87,45,48,63,9,57,20,33,59,15,88,64,54,43,72,45,31,53,27,50,20,46,20,23,73,5,68,75,11,21,45,22,51,39,15,26,100,19,67,91,69,42,31,1,14,18,73,94,59,81,71,4,69,20,67,4,14,81,86,46,70,93,12,89,13,36,78,74,26,88,4,15,5,93,27,50,75,73,77,100,45,56,57,63,7,54,30,17,84,93,85,39,17,68,38,31,81,52,74,86,50,85,67,97,70,27,1,86,4,47,35,74,100,15,86,25,3,19,59,31,53,61,65,23,70,45,89,39,77,83,88,96,39,37,37,81,6,24,79,76,9,20,28,25,64,76,98,55,18,31,40,41,50,57,80,49,82,36,11,54,66,63,42,78,48,11,37,73,41,6,93,22,42,10,72,27,45,10,78,88,2,2,13,99,13,34,45,9,50,71,47,54,16,50,18,56,29,83,57,81,42,72,4,26,3,92,44,9,87,38,90,48,17,18,7,61,64,82,81,15,42,31,76,55,75,34,100,42,63,23,2,81,10,68,56,85,87,42,41,87,68,55,32,98,80,34,94,69,7,99,71,3,46,4,79,53,76,73,46,95,21,5,60,4,86,75,45,6,47,7,55,98,13,72,19,15,36,4,80,47,55,3,54,63,50,66,33,73,72,52,80,8,46,48,7,51,89,26,30,51,81,94,76,76,38,93,91,88,54,27,13,33,75,53,35,92,43,90,28,57,86,66,16,20,64,76,24,32,79,47,49,99,52,96,27,49,20,8,43,39,49,27,21,26,66,8,27,78,46,71,4,71,97,32,96,52,15,10,46,31,44,21,78,45,24,28,9,55,89,18,86,76,25,46,66,66,58,100,10,1,58,88,22,38,39,22,66,64,12,75,38,95,10,83,100,13,29,3,91,89,45,80,23,61,51,77,37,34,33,41,23,63,41,86,56,94,39,23,67,46,27,40,88,45,80,29,11,99,57,21,3,75,3,82,63,14,54,8,54,80,79,50,74,48,15,76,3,73,68,20,57,30,97,82,32,21,95,63,44,40,68,91,73,60,59,35,48,33,40,2,6,72,62,5,83,92,93,74,32,16,21,6,52,18,59,74,4,41,19,58,18,2,36,73,77,35,85,100,12,46,41,91,14,76,22,24,40,98,26,52,47,100,26,20,100,51,9,91,4,94,54,51,19,4,12,46,19,80,48,30,64,78,89,7,8,56,6,66,98,60,85,20,80,99,71,2,72,94,85,57,100,49,73,56,95,54,14,4,36,33,46,47,95,57,5,29,47,100,8,59,83,17,64,35,4,67,63,77,85,43,77,2,48,100,87,4,84,19,41,75,26,88,88,36,6,33,28,60,48,72,48,56,35,37,4,32,78,43,5,70,44,64,57,50,41,29,27,12,69,19,14,62,100,16,76,68,73,28,57,25,47,90,72,8,70,19,48,75,13,87,5,35,11,52,42,33,82,89,57,70,46,39,43,14,66,6,28,45,20,10,22,96,89,27,73,74,67,24,18,47,64,38,3,17,2,23,77,28,80,28,14,59,31,78,13,22,29,39,23,75,35,91,83,45,30,37,44,43,86,28,16,48,43,94,31,35,7,15,41,19,76,19,64,92,85,10,1,32,20,83,64,68,95,47,48,16,79,6,49,93,100,4,54,34,64,21,89,94,32,32,82,85,86,32,95,79,62,83,15,93,53,13,74,55,27,76,22,27,55,31,27,62,64,24,4,66,10,89,52,16,70,5,79,14,80,17,24,15,88,28,62,27,2,56,16,41,89,60,74,94,77,21,8,59,100,93,78,96,21,26,5,4,95,71,18,39,74,20,37,2,60,9,33,19,2,62,31,71,78,72,39,82,64,20,72,87,11,100,27,74,14,2,90,21,85,92,11,100,55,25,49,84,74,86,22,38,86,98,12,30,60,95,35,79,83,66,17,97,22,98,72,75,21,37,95,3,60,87,20,32,30,15,91,15,71,8,64,82,31,72,90,65,30,73,11,97,100,59,61,70,39,12,53,59,60,37,54,94,58,92,21,81,97,61,22,51,21,32,1,43,40,74,59,29,91,84,15,97,68,71,64,15,40,66,10,52,23,44,79,4,27,50,88,36,43,38,68,61,14,62,70,5,48,49,16,60,65,38,97,38,39,65,79,98,89,37,84,49,92,30,18,92,43,19,97,96,67,64,79,74,96,19,21,61,48,92,28,68,21,99,22,55,96,54,29,1,73,39,42,52,85,94,31,79,58,8,66,54,28,62,21,41,11,34,53,56,45,67,27,66,34,37,22,55,18,70,99,92,65,21,33,18,17,2,1,79,67,41,10,14,18,53,84,26,83,62,84,59,40,57,27,12,70,99,66,45,60,73,68,34,13,5,64,48,95,42,60,63,5,39,24,24,59,65,20,22,14,27,37,52,25,26,67,81,86,9,53,82,65,72,54,12,54,35,3,89,34,9,46,37,64,32,93,43,26,77,7,93,11,86,54,54,22,25,80,67,69,91,39,47,2,81,88,83,53,57,4,64,98,10,85,57,38,100,28,23,95,81,32,37,36,28,41,60,28,2,86,97,91,15,77,43,23,93,18,60,64,27,63,34,65,99,94,63,97,25,19,27,15,71,5,79,81,83,29,14,2,55,9,84,89,76,93,28,49,80,26,10,19,38,94,74,22,35,15,33,73,86,26,66,7,57,97,87,73,70,64,1,63,100,19,97,75,88,79,54,81,26,85,85,44,76,29,83,78,62,67,75,90,64,80,57,87,6,98,9,96,62,23,64,20,63,6,58,67,9,16,52,35,71,27,74,92,99,51,12,9,22,28,31,99,82,22,17,10,3,8,46,41,80,55,53,30,8,63,64,46,90,20,25,2,94,46,83,14,44,41,23,20,84,42,16,56,61,61,68,49,44,47,33,86,7,44,87,73,75,15,34,36,46,13,78,33,9,20,34,40,53,57,69,41,3,47,71,9,11,55,83,86,46,90,65,95,34,98,54,57,53,54,83,17,60,18,65,50,98,65,1,98,31,39,1,42,2,31,55,23,42,24,43,42,89,32,28,41,24,70,27,47,77,11,13,51,100,82,65,80,56,2,53,46,24,33,100,72,82,17,49,23,96,78,25,16,82,74,72,63,8,88,7,20,47,48,41,42,73,21,84,18,74,62,41,44,25,45,31,30,53,60,92,64,9,82,18,68,45,33,99,35,99,30,95,42,74,76,46,19,95,92,75,9,35,9,98,35,3,19,26,51,94,87,42,24,3,34,56,6,32,80,79,73,36,6,81,75,49,97,36,40,90,89,96,59,44,87,65,60,59,38,90,28,34,46,58,24,87,78,85,19,63,4,89,55,49,80,68,3,39,76,48,27,16,63,77,72,79,98,47,1,3,53,35,51,58,87,13,77,2,36,46,17,92,93,82,79,56,2,13,86,10,28,72,21,11,70,25,9,69,99,92,37,61,33,30,72,45,73,23,50,77,65,93,7,97,53,75,31,75,81,96,43,67,42,93,68,66,43,48,73,92,26,91,39,5,47,89,1,24,4,12,65,18,45,25,90,91,39,65,92,69,69,15,52,31,20,69,21,28,82,3,21,4,45,8,78,8,61,74,16,54,76,94,15,15,82,53,86,60,21,73,61,15,79,2,79,28,47,22,74,17,85,76,95,93,25,34,69,21,68,25,11,35,61,82,12,81,47,85,79,35,67,5,6,92,25,73,35,15,84,65,21,80,85,76,88,50,39,65,29,81,43,21,59,40,12,23,52,16,31,41,89,71,59,44,42,100,83,89,53,21,85,44,37,62,28,67,25,77,84,3,67,39,15,57,1,73,96,57,13,85,32,86,74,70,26,70,28,5,87,54,90,20,40,15,83,4,63,9,74,7,37,86,2,15,73,53,71,52,45,5,75,36,59,100,48,13,7,94,97,3,39,36,63,25,45,38,43,70,71,43,84,61,22,42,92,79,93,82,29,16,40,71,63,34,72,57,32,30,39,29,3,12,52,6,93,11,94,100,75,90,4,85,42,25,17,66,8,54,91,31,29,60,18,85,16,20,34,44,26,85,69,78,2,93,14,11,92,56,96,60,99,39,57,51,59,45,72,23,14,48,99,80,17,89,96,57,84,100,99,97,5,91,89,51,47,88,76,63,64,16,19,24,98,32,71,11,82,62,60,77,84,4,68,6,37,7,34,62,45,56,21,62,45,52,97,4,17,91,70,65,35,16,58,41,58,49,45,60,25,58,53,45,41,88,95,19,83,19,13,51,52,78,85,84,68,23,89,7,70,36,48,46,4,75,30,23,16,82,89,20,36,34,21,73,19,86,76,15,58,66,37,85,1,30,66,20,15,3,64,35,12,20,44,40,26,48,87,95,50}

    Returns: 57710

  54. 56

    {66,76,14,54,39,50,37,85,59,68,86,69,96,27,32,14,73,45,47,66,79,6,40,71,70,14,98,64,64,83,6,16,75,32,67,14,87,83,88,72,89,40,90,83,67,23,75,65,62,58,3,44,92,94,61,27,73,69,91,46,18,12,35,27,100,52,66,8,70,13,74,96,52,61,77,47,46,82,54,70,100,42,81,37,54,45,13,41,42,32,14,59,49,72,31,27,72,7,55,87,40,56,21,74,55,48,65,26,78,72,30,54,17,42,41,90,59,37,2,37,94,64,27,91,96,11,57,37,23,71,58,72,40,26,78,57,50,33,43,14,66,28,16,4,88,68,3,86,35,54,57,23,68,51,26,30,20,2,4,86,40,38,5,1,42,56,69,38,37,87,64,89,54,67,88,74,1,5,91,11,84,11,95,5,36,34,42,40,1,74,17,36,36,51,80,5,92,35,76,74,1,57,44,96,38,43,21,21,46,70,94,42,43,10,14,30,55,59,63,47,60,68,42,28,51,69,100,6,95,68,43,41,62,34,1,49,98,6,51,61,20,82,58,55,82,8,8,47,32,58,75,60,3,20,100,50,79,43,17,45,12,68,2,10,59,45,9,62,63,4,58,55,74,58,99,63,15,27,14,100,15,55,36,14,97,67,85,37,16,38,43,24,95,69,35,52,60,66,82,7,86,98,83,17,70,39,38,79,41,72,76,44,20,92,69,39,65,82,90,91,36,57,5,88,34,61,46,62,85,69,85,95,63,9,56,46,69,33,74,3,13,85,37,79,66,86,86,50,8,27,52,25,92,9,17,20,39,58,72,15,71,85,62,76,64,88,65,88,46,95,65,34,23,23,58,21,49,4,30,68,51,39,28,36,38,90,85,67,42,84,8,40,48,95,96,76,88,9,35,19,23,16,45,3,23,56,60,90,36,72,44,62,18,36,91,4,83,96,33,87,24,86,66,26,46,48,92,50,57,91,45,48,39,53,66,40,65,93,88,24,80,99,73,16,27,46,58,8,64,56,55,28,71,74,51,45,29,4,87,60,15,37,59,61,30,74,57,57,62,34,9,20,67,33,77,24,10,69,33,74,46,93,88,21,50,81,69,11,49,97,78,87,70,13,92,70,45,29,17,64,86,45,25,99,85,44,82,9,65,55,85,49,48,10,21,10,14,57,54,49,27,29,85,54,51,32,91,3,85,52,28,1,78,60,18,94,18,20,46,61,22,15,45,93,93,1,14,98,28,78,27,4,62,84,30,88,91,84,51,9,63,78,93,1,89,8,14,69,60,4,59,10,46,50,29,2,80,82,55,23,24,84,69,67,58,74,48,95,40,71,46,94,93,97,2,81,52,58,78,54,66,40,58,18,54,9,86,57,90,57,32,55,78,46,31,26,87,1,18,70,95,84,95,79,3,22,20,48,64,1,31,13,17,61,77,96,65,72,73,89,7,100,42,23,14,51,65,43,62,50,21,26,63,94,42,81,68,89,3,40,7,51,91,34,14,86,17,47,69,56,54,82,69,65,9,64,34,17,73,60,50,7,24,50,45,73,76,28,82,81,34,85,89,65,41,44,96,51,37,34,28,48,21,87,41,22,40,96,66,31,92,23,1,98,87,81,43,37,56,85,37,70,88,90,5,1,22,46,87,64,80,77,96,62,45,77,20,17,3,17,47,14,96,35,5,57,95,20,97,17,81,21,37,97,26,52,35,87,49,87,62,83,15,64,63,19,49,8,57,60,26,31,27,5,27,35,69,18,19,55,44,53,73,84,41,66,1,94,54,29,54,48,42,22,9,99,34,59,4,25,5,28,25,96,90,79,49,98,32,31,96,24,3,15,86,16,19,66,2,27,72,30,54,57,13,77,21,71,18,68,58,76,99,11,55,99,18,83,28,65,89,100,37,87,82,47,44,84,43,23,21,40,7,47,42,30,68,80,24,41,56,37,77,61,53,61,88,56,58,100,38,95,49,58,63,39,14,33,4,41,100,65,34,6,66,62,3,37,78,83,48,68,66,46,28,4,84,86,11,35,35,39,90,40,19,49,58,36,19,99,37,5,28,29,23,24,70,86,61,90,87,54,55,45,12,70,66,49,67,55,58,4,72,43,84,50,6,50,57,53,82,26,44,73,79,78,11,78,86,83,41,58,26,14,29,72,6,7,70,78,4,35,58,9,51,34,95,99,54,12,49,61,72,97,88,53,6,48,26,24,2,22,66,8,61,86,98,47,28,42,81,61,27,53,11,72,84,74,71,40,95,26,16,39,66,67,60,18,78,26,93,5,8,52,69,72,62,75,84,83,71,26,82,26,25,78,95,13,21,50,67,79,32,13,83,98,15,59,59,99,15,42,46,82,20,5,40,32,95,73,66,54,16,82,93,54,92,33,86,2,77,92,100,79,47,42,9,40,30,79,7,86,53,96,68,1,15,19,91,39,39,87,82,61,25,37,97,3,100,30,12,31,85,10,26,86,32,72,90,37,83,67,84,62,27,3,53,77,100,90,49,49,35,95,43,25,70,82,88,50,3,32,33,17,72,56,46,87,43,17,90,39,51,60,91,69,90,67,98,7,1,49,72,94,52,20,84,5,71,53,41,68,60,33,37,22,68,13,36,79,83,40,8,3,71,92,31,81,46,79,18,8,81,61,95,66,79,41,34,44,76,35,18,14,87,77,73,4,28,11,5,77,9,65,49,45,22,10,26,23,14,39,80,74,78,51,91,35,48,16,6,32,51,100,84,59,28,82,95,95,89,61,67,42,62,23,41,30,41,22,48,97,16,4,73,69,70,59,69,88,73,39,23,2,9,57,59,28,60,11,46,93,46,21,53,29,25,17,65,66,51,64,84,44,89,61,93,36,71,9,90,95,25,20,63,51,51,42,92,75,15,52,56,91,57,83,37,69,100,14,10,44,25,93,18,28,22,25,59,31,42,16,6,97,18,86,26,75,41,18,58,76,31,25,68,28,72,90,95,68,23,57,62,88,68,13,48,44,20,61,53,90,32,7,32,23,37,11,31,47,3,11,83,52,27,27,92,58,82,68,77,37,84,16,5,38,27,13,15,51,93,32,82,14,45,75,34,28,73,72,37,1,41,67,91,16,2,82,81,54,1,97,20,42,95,44,59,54,26,39,69,32,62,71,68,78,31,56,50,60,97,24,91,56,88,32,78,41,64,31,30,30,69,91,74,85,62,76,37,50,25,92,53,77,4,81,63,70,3,26,30,49,55,9,91,56,78,63,12,61,75,44,7,91,80,19,55,3,95,41,25,43,6,40,14,91,13,57,88,56,71,28,4,21,81,82,90,42,41,56,54,87,29,51,2,5,31,40,30,96,41,8,95,42,78,72,41,30,84,30,96,61,18,27,74,40,47,63,10,38,28,5,10,58,52,6,3,9,9,65,15,80,39,46,33,47,17,58,22,57,29,46,62,84,81,78,31,69,27,22,90,77,53,84,99,7,26,70,100,24,85,47,13,68,99,24,99,80,24,51,36,26,13,59,97,34,75,37,98,66,97,77,58,39,72,53,59,63,40,21,10,12,47,96,59,64,12,18,9,46,4,6,59,94,17,57,86,93,26,75,99,93,45,27,22,20,73,95,64,68,65,91,29,47,55,14,11,99,79,61,47,8,86,18,99,50,27,5,57,1,44,42,46,61,23,3,95,27,2,65,75,23,54,25,11,14,15,60,43,79,68,4,90,94,47,99,64,78,45,24,62,70,7,30,62,90,12,49,38,92,11,78,14,64,66,68,63,34,82,40,84,62,97,11,75,28,78,70,42,35,25,84,99,19,83,84,19,4,16,27,31,22,25,16,64,51,19,71,81,14,94,17,70,63,36,71,74,88,64,81,12,68,40,29,46,35,65,23,10,41,82,42,68,58,45,57,87,96,61,32,93,21,20,53,20,82,44,45,8,81,100,53,85,39,67,24,27,63,41,90,35,96,44,100,77,75,64,35,78,4,74,53,41,80,38,69,47,50,21,29,74,54,18,53,60,91,97,28,3,16,82,31,24,87,88,85,67,100,19,20,38,49,97,23,82,99,41,36,83,17,91,47,11,21,50,81,11,25,78,91,82,11,62,96,76,40,51,64,97,48,60,26,70,65,75,34,12,20,65,85,36,42,8,65,72,19,15,99,100,15,75,79,61,31,90,60,29,11,39,14,74,100,49,46,3,71,39,12,20,91,41,52,71,33,88,36,44,93,23,67,13,36,56,19,92,15,87,81,49,18,67,81,67,88,79,2,43,16,99,79,64,67,72,34,9,90,65,65,71,94,13,18,18,28,7,72,65,64,68,68,48,13,32,51,61,16,26,35,43,50,75,35,75,33,39,79,65,87,72,99,17,16,11,51,54,77,69,33,29,85,60,90,29,69,5,61,20,7,14,7,5,21,44,75,77,54,29,6,98,72,46,47,48,47,18,49,41,21,98,52,27,45,45,95,52,92,49,26,89,62,18,35,2,94,17,17,47,48,84,32,88,98,64,16,38,55,14,29,16,89,59,83,60,64,25,65,23,66,66,92,7,62,85,49,24,99,36,67,86,90,86,47,50,72,94,85,7,88,95,3,93,58,31,54,80,24,9,92,16,17,62,14,59,82,76,71,58,4,5,3,22,28,54,94,52,32,80,90,72,6,34,80,53,33,50,70,100,6,36,74,13,99,44,63,44,32,45,26,79,7,31,83,39,42,77,86,81,54,45,43,35,38,64,84,49,61,68,28,34,54,6,48,72,14,36,54,68,31,31,72,78,60,10,84,23,10,63,43,14,76,26,74,89,65,87,96,47,61,45,72,63,57,56,35,18,47,27,98,68,94,83,56,11,15,16,59,47,12,21,57,28,48,29,96,52,18,9,26,85,84,57,64,25,66,42,19,61,37,34,85,56,55,5,99,69,94,37,26,65,53,62,81,27,16,9,99,21,15,100,7,58,98,35,77,23,29,61,48,40,60,1,81,90,4,28,1,81,85,15,73,43,13,27,37,1,19,77,63,62,16,76,14,33,94,29,26,71,50,89,57,87,50,16,67,68,64,8,74,34,67,28,99,7,20,43,62,99,19,32,3,12,100,14,10,80,21,96,6,55,80,45,22,22,35,53,84,48,74,47,99,22,51,89,69,25,50,96,65,40,53,19,34,14,74,80,15,35,46,8,75,24,28,86,34,68,4,46,17,98,14,43,9,21,53,67,3,5,52,40,19,38,8,6,60,74,2,93,100,90,35,96,44,1,94,19,2,97,97,74,96,60,48,56,93,87,92,43,85,20,97,22,75,62,28,92,97,47,62,6,7,96,65,8,2,25,38,44,76}

    {52,9,52,17,28,49,7,18,45,5,45,56,37,28,20,53,7,22,24,3,22,13,11,53,4,30,55,37,7,32,10,56,26,40,35,29,43,48,10,31,5,9,14,48,17,41,56,13,12,56,23,38,26,31,8,4,19,12,23,29,29,5,27,48,40,25,19,5,49,34,7,10,8,35,22,19,1,27,35,38,54,46,39,38,6,32,3,36,21,40,36,39,6,20,2,9,26,40,15,33,20,19,23,8,29,20,20,48,50,14,15,9,32,40,11,9,55,9,21,53,20,4,9,29,45,21,34,41,49,39,33,55,46,55,27,5,18,45,37,40,44,54,3,43,17,54,12,50,10,43,48,34,22,29,29,54,20,30,36,45,17,37,48,13,6,6,55,51,33,25,11,43,6,56,56,22,27,45,55,54,23,37,53,26,7,11,25,23,16,41,13,48,31,40,41,2,43,8,16,33,2,29,22,10,43,21,2,34,41,8,28,37,40,3,18,23,34,53,15,37,56,41,12,35,16,36,46,48,42,44,7,12,7,55,46,35,28,16,17,46,37,38,35,41,11,41,47,35,25,20,25,2,11,47,35,19,38,5,56,14,18,36,39,22,8,39,50,30,20,47,34,40,28,7,17,38,7,51,27,1,5,11,33,1,26,40,19,10,21,52,41,22,21,14,39,44,47,51,48,45,27,1,19,41,16,38,11,29,19,12,50,51,27,51,24,47,13,28,52,10,32,53,46,48,44,9,56,50,5,56,3,31,7,54,22,7,5,51,29,36,39,56,44,1,50,28,18,33,51,10,52,2,32,40,21,36,9,23,10,9,49,21,27,18,51,25,26,55,31,39,2,2,56,52,49,34,6,32,43,16,12,14,8,32,21,43,50,31,42,14,36,16,32,39,24,18,19,35,37,37,42,32,21,34,4,42,1,54,38,42,21,29,49,30,20,6,33,54,46,32,40,56,41,46,19,22,32,6,33,1,10,21,9,8,38,53,56,24,26,3,35,11,53,3,29,18,13,14,36,8,10,47,31,14,15,52,55,20,10,25,28,42,23,9,2,55,18,11,46,18,27,32,12,26,48,49,43,39,25,51,13,5,26,30,43,18,12,29,46,45,36,19,47,5,10,51,48,32,1,11,16,47,15,54,9,33,39,20,37,13,7,35,52,32,52,15,49,50,40,31,55,38,10,24,48,6,17,46,15,34,8,53,54,13,52,4,50,24,5,46,17,46,27,51,6,48,53,32,32,2,13,34,51,52,51,35,55,42,22,1,56,30,15,12,31,33,51,37,13,14,50,10,44,42,40,11,9,14,42,40,12,14,4,38,2,17,2,49,52,2,46,24,11,16,55,29,28,14,33,27,14,31,31,56,13,8,12,39,53,4,18,42,30,56,5,14,44,19,20,20,50,33,2,51,1,20,55,13,43,12,2,21,19,10,39,37,15,31,52,44,20,44,35,41,28,20,38,40,48,29,3,43,4,18,8,37,22,3,18,2,54,6,14,46,33,35,3,46,36,43,1,21,19,23,56,20,38,54,54,43,37,43,37,54,29,26,34,46,3,53,6,31,35,5,19,31,23,36,30,13,8,1,43,45,1,6,51,39,30,9,14,21,5,6,20,46,1,48,19,22,49,46,6,18,49,18,15,29,22,4,36,35,39,19,43,42,7,9,46,13,12,25,45,46,24,41,21,14,26,19,52,18,21,28,2,49,9,18,32,6,22,53,5,1,43,5,17,30,39,5,24,12,29,8,43,54,39,5,48,38,18,32,15,53,33,15,38,14,21,53,32,31,51,45,38,6,1,54,55,37,55,3,4,4,3,22,24,47,3,24,45,32,24,54,11,31,56,18,33,30,11,22,35,38,41,16,24,4,12,55,39,27,33,27,24,19,40,12,36,29,33,28,19,16,56,2,38,19,54,33,47,52,38,23,43,46,39,53,52,28,17,51,43,16,54,56,28,35,20,4,31,8,13,27,10,11,47,43,55,29,9,37,6,43,1,2,29,56,53,22,55,36,49,53,17,29,55,33,38,51,46,25,35,14,5,12,23,3,55,24,13,38,25,11,53,3,37,12,3,22,8,33,26,50,45,24,52,20,55,51,20,4,2,46,45,20,48,38,31,32,17,30,15,25,49,21,23,2,39,56,26,4,9,26,29,27,2,6,35,18,46,5,26,41,33,47,54,42,30,38,36,15,39,9,31,18,56,37,47,10,20,43,22,47,54,38,47,28,49,26,54,27,22,25,27,14,17,44,41,33,29,46,52,34,10,17,30,52,26,47,51,16,47,45,48,29,35,47,18,5,16,15,23,30,13,45,35,55,18,9,19,14,41,41,28,15,32,41,9,13,39,17,53,54,27,8,23,22,44,39,56,54,31,29,5,24,28,45,14,51,12,42,50,46,8,27,16,50,5,56,38,17,5,34,30,14,54,31,20,48,11,46,4,4,10,31,34,5,5,30,33,20,25,38,51,54,29,19,23,44,31,31,36,10,11,9,16,28,56,50,28,21,36,25,21,35,1,23,15,22,6,28,36,4,9,51,49,2,22,42,31,6,26,21,11,53,16,17,50,37,5,37,48,40,54,27,53,18,38,22,26,28,29,41,22,28,1,51,22,19,18,25,46,12,38,34,33,9,13,34,28,32,35,45,48,21,29,51,52,45,7,1,16,17,1,10,15,16,26,35,15,39,18,3,37,11,4,37,2,26,27,19,11,37,14,40,34,14,40,21,37,21,38,6,28,9,20,21,42,7,12,30,3,17,37,38,11,47,33,20,37,29,18,15,50,51,21,37,28,33,50,54,6,3,1,6,39,1,33,19,23,46,48,13,42,46,46,53,35,36,30,26,46,3,29,38,18,53,3,12,6,14,26,22,26,37,37,45,35,31,48,40,1,27,52,1,42,35,39,10,4,13,2,24,34,20,3,38,25,29,4,5,14,3,14,11,56,26,31,5,54,42,15,10,3,6,56,46,6,23,9,48,28,49,49,22,38,44,12,38,50,7,11,16,18,32,3,27,13,44,2,9,5,34,3,4,17,24,15,27,53,5,40,19,3,23,25,25,16,41,46,10,49,52,50,16,48,55,33,35,13,56,51,45,21,12,3,18,51,49,5,1,14,40,31,49,26,21,4,2,27,44,50,45,12,54,56,35,28,19,32,26,21,45,48,7,28,53,20,32,25,50,5,26,43,51,41,38,50,13,25,45,42,56,16,34,36,28,52,44,53,54,2,32,5,37,5,17,10,56,10,35,25,28,16,40,16,23,38,31,48,5,29,31,39,36,49,29,22,41,52,7,23,13,56,48,2,30,13,44,54,9,6,1,2,3,31,41,2,49,53,28,28,30,21,26,11,1,46,9,56,39,37,16,6,21,16,21,28,49,26,34,30,44,27,54,51,16,20,53,28,56,11,39,7,38,35,33,30,35,3,50,19,23,6,39,12,46,37,29,55,46,50,5,56,5,4,31,28,35,35,56,15,42,21,42,52,32,47,38,4,29,10,5,56,18,29,23,49,29,11,12,6,39,14,32,35,37,1,1,23,41,5,33,22,2,15,6,55,43,18,1,51,54,24,32,44,54,50,7,34,42,45,33,40,44,41,38,36,9,55,29,5,13,34,42,41,25,13,44,27,11,11,46,3,18,55,30,31,49,24,28,46,55,14,46,14,10,8,31,32,22,33,55,47,46,52,11,43,23,8,20,18,14,34,37,30,9,31,24,17,41,23,42,42,7,5,9,24,9,18,34,25,32,5,15,52,30,37,2,27,23,36,8,41,9,11,11,6,37,10,17,25,44,17,22,29,52,9,20,4,31,42,15,33,42,14,28,3,16,25,40,37,36,35,36,19,32,1,10,51,13,12,20,21,32,2,18,24,40,8,7,10,30,26,11,27,37,36,46,2,37,23,10,19,45,56,18,26,23,21,40,30,23,38,36,19,40,35,8,35,18,22,7,24,32,10,31,53,38,50,14,42,52,50,19,28,8,36,27,29,56,14,42,18,56,45,9,23,13,53,40,52,15,6,51,40,37,39,41,27,6,27,45,20,21,22,39,2,48,35,32,47,21,38,45,51,24,45,2,50,45,51,52,51,15,36,21,4,44,31,7,56,39,37,50,36,47,41,16,2,30,43,32,36,51,35,53,55,23,54,9,44,34,38,44,12,46,8,16,40,39,48,17,40,19,31,4,46,25,33,50,7,7,14,40,17,11,53,5,16,45,49,51,38,1,18,40,13,14,23,6,31,45,29,22,15,7,35,44,21,41,7,27,21,50,41,27,49,4,37,24,53,42,4,9,45,56,34,5,48,50,54,7,37,29,31,34,8,35,21,36,18,49,56,46,4,45,29,45,42,4,27,13,1,7,40,32,18,20,7,5,35,26,28,44,17,34,46,13,22,20,13,42,34,13,31,26,5,2,1,29,42,53,32,43,12,1,43,5,49,26,31,39,6,48,22,12,54,1,45,37,23,30,39,20,45,9,12,53,15,50,32,3,22,30,31,37,54,45,11,44,25,10,15,3,20,1,34,10,40,44,46,43,14,8,46,47,3,4,15,6,10,45,18,25,15,51,45,14,40,6,30,47,21,55,12,54,52,10,47,1,52,18,23,34,48,8,49,41,15,37,44,53,5,37,30,29,52,37,53,23,24,17,41,43,41,25,51,42,48,17,44,8,3,47,55,8,51,53,13,12,28,28,47,22,8,21,4,18,45,33,34,32,21,7,9,2,45,48,46,17,2,40,50,26,47,8,37,28,32,15,31,39,43,45,53,32,50,41,5,52,28,25,26,50,12,28,50,43,55,5,51,18,46,10,2,20,35,28,27,16,41,5,14,44,47,25,42,12,53,27,3,14,16,8,28,43,9,40,16,46,43,50,29,55,50,54,46,38,56,1,41,8,23,49,5,22,28,20,1,18,3,32,55,24,44,2,28,35,37,48,45,1,7,10,22,35,15,21,44,8,38,53,37,41,19,8,11,8,3,50,46,8,9,43,49,7,6,29,47,47,3,17,55,38,1,43,2,51,43,22,6,50,38,33,17,43,1,11,8,55,47,44,56,16,1,30,30,22,53,54,29,3,37,43,46,23,13,16,17,3,27,36,25,15,31,7,35,22,39,9,24,11,19,4,47,12,48,1,28,27,13,41,21,35,6,20,14,7,25,15,9,23,42,36,56,3,12,52,56,48,50,10,9,22,16,26,3,50,19,22,14,11,41,31,37,20,41,50,55,17,31,40,48,15,8,8,52,36,36,1,41,18,4,55,51,3,6,46,56,40,43,25,43,14,10,8,41,30,28,38,30,30,11,32,12,53}

    {52,54,42,4,43,2,55,24,35,53,5,33,56,5,40,36,22,12,56,26,4,10,9,54,16,30,17,34,45,10,3,14,37,13,10,22,52,7,27,10,28,37,44,52,46,29,54,15,54,54,27,6,45,54,22,31,42,15,54,35,27,39,2,48,11,21,52,43,44,36,28,49,33,11,51,41,26,14,16,43,39,43,29,5,6,3,21,8,48,27,4,5,13,43,2,16,52,50,30,25,42,16,33,6,53,23,9,38,51,9,6,19,30,19,14,44,36,6,9,43,50,24,49,19,48,42,50,35,28,47,37,56,52,37,20,23,30,56,44,55,42,28,43,38,34,54,45,13,44,28,54,40,27,8,5,2,15,55,27,6,47,32,52,32,15,30,45,22,9,56,28,29,16,36,47,40,20,34,17,36,45,36,41,45,39,2,53,15,40,36,16,48,13,51,55,35,37,4,52,11,43,21,32,50,43,3,48,33,45,5,2,10,6,25,41,49,24,36,23,45,3,40,7,4,47,29,48,42,26,35,34,4,51,56,19,52,52,21,15,47,11,31,52,48,52,7,40,34,8,40,45,38,34,24,16,16,22,28,33,42,13,27,40,21,32,46,43,20,44,2,29,53,40,13,17,52,8,8,3,31,32,26,27,2,50,44,47,3,7,13,54,8,40,10,28,37,6,13,22,42,40,45,34,52,38,24,41,16,22,34,15,21,1,9,50,9,51,21,6,38,52,29,40,38,1,40,11,6,31,46,22,38,39,50,39,26,41,44,21,15,23,37,41,25,36,53,50,45,29,29,31,24,51,49,43,13,8,17,48,12,8,14,7,10,49,3,3,56,29,37,20,33,37,16,42,32,7,44,11,41,4,29,45,45,54,13,48,55,40,14,31,35,55,24,37,27,17,3,13,12,27,56,28,39,7,22,41,4,31,49,12,32,23,17,53,10,44,44,22,42,50,4,36,21,9,52,40,49,5,22,28,47,50,13,18,10,28,53,37,1,32,8,56,47,51,12,5,32,4,1,30,33,38,50,26,13,54,40,47,51,32,16,30,30,11,29,10,32,25,35,53,45,40,55,37,14,1,6,12,47,53,9,28,41,20,6,12,22,19,54,41,50,51,47,19,9,33,16,44,19,16,28,17,50,5,26,42,19,48,37,8,53,36,41,8,38,13,11,54,20,42,21,55,29,52,25,23,11,49,49,51,5,44,5,3,50,13,26,3,11,7,55,52,34,26,24,50,32,32,56,7,7,7,24,52,45,1,33,13,29,24,35,18,10,16,32,34,43,14,17,40,34,17,22,20,5,2,14,38,48,49,56,4,32,6,12,43,20,32,44,48,18,37,2,2,18,5,23,12,25,13,29,23,16,2,34,42,19,36,48,24,5,19,1,51,6,33,14,3,38,24,38,51,22,25,17,41,39,54,55,52,33,46,52,51,30,46,51,6,17,55,7,30,7,33,2,40,34,27,39,12,56,40,36,42,29,4,55,27,11,6,40,50,33,8,51,49,53,52,48,15,31,9,4,41,25,36,25,46,31,37,45,34,6,48,21,52,13,12,3,42,47,10,15,45,47,54,52,44,31,28,3,34,6,44,53,14,49,9,20,25,24,18,28,28,34,49,52,45,45,18,8,31,35,40,7,36,19,1,24,21,7,5,16,40,29,29,32,2,17,50,15,35,24,23,23,36,16,53,47,29,24,7,53,53,27,34,16,40,23,35,41,56,38,11,41,32,15,36,56,22,55,24,54,12,15,23,55,42,50,10,35,9,41,29,2,40,28,7,18,48,43,38,28,29,22,14,38,44,14,10,18,48,42,9,35,23,25,19,50,29,55,34,29,13,24,34,45,20,27,49,37,53,42,38,8,15,30,44,14,8,44,50,43,12,45,30,14,11,32,3,43,43,12,33,20,16,21,3,40,18,36,13,3,34,52,10,39,18,53,45,32,24,31,52,9,50,24,29,18,20,5,39,4,41,36,13,47,48,39,32,44,23,39,51,20,14,47,20,47,4,23,28,1,29,1,20,24,29,13,16,36,29,8,26,16,49,30,14,51,40,19,46,19,29,55,47,35,19,56,53,12,54,35,6,47,34,1,10,27,42,26,15,26,29,39,37,18,36,17,56,32,9,42,26,53,33,3,14,13,43,13,21,53,29,12,10,54,47,34,30,22,22,39,18,55,4,4,52,12,38,33,41,42,47,48,27,39,50,25,1,29,41,10,7,27,34,56,46,6,4,7,7,36,40,34,15,49,32,24,42,4,14,44,10,28,34,14,42,39,19,32,16,28,37,6,21,32,1,34,31,6,53,32,53,48,1,11,30,12,16,48,12,9,47,40,18,31,40,42,46,42,19,4,17,48,26,48,48,35,9,16,4,24,11,11,10,32,31,8,12,38,36,20,1,23,4,32,23,49,14,56,4,22,38,17,30,17,1,14,3,15,10,54,30,4,9,18,24,20,26,22,14,45,52,21,41,3,47,4,16,43,44,29,54,7,45,3,56,55,53,30,30,4,5,30,49,37,37,27,8,14,16,3,50,46,4,23,19,30,43,52,52,54,22,51,33,48,10,30,51,17,31,10,33,36,27,25,28,38,1,40,20,14,23,31,28,19,48,52,51,41,45,31,12,7,39,18,35,39,5,38,28,52,9,52,7,54,9,29,15,8,19,11,31,15,56,53,25,35,10,29,39,17,5,52,52,32,25,9,14,50,32,36,6,5,26,3,44,49,10,56,32,22,6,2,53,13,55,35,21,54,45,17,22,27,13,49,10,10,5,3,29,4,34,27,31,1,23,53,21,48,12,48,42,9,56,26,50,21,30,7,40,16,4,33,31,46,31,25,44,34,42,6,56,44,36,14,41,44,6,45,25,9,54,22,47,50,49,5,33,53,30,16,16,4,10,42,23,31,46,34,9,44,20,19,28,10,11,9,27,18,6,43,12,4,1,56,22,23,9,28,55,55,24,34,26,25,23,27,53,50,11,11,19,32,11,23,12,54,52,11,38,34,49,6,36,23,45,15,42,36,18,8,2,26,20,52,12,37,48,4,56,40,14,8,14,41,25,33,53,40,47,40,32,15,31,47,50,22,53,15,16,39,43,25,7,38,28,11,39,38,11,8,53,32,28,46,13,8,12,56,46,19,35,32,22,16,53,24,52,35,41,8,17,17,47,5,43,45,33,40,54,1,50,33,17,43,52,46,50,11,35,1,55,43,29,19,14,6,42,51,22,25,48,51,40,16,6,35,29,45,45,26,52,1,29,33,47,43,56,47,6,34,20,6,39,56,11,44,9,42,3,5,41,26,32,27,21,24,55,19,12,27,48,37,32,6,22,12,46,1,43,50,16,16,14,38,42,16,54,36,26,27,6,7,34,20,46,5,24,32,26,20,24,53,17,43,25,31,24,52,26,38,13,41,53,30,15,21,50,36,17,32,20,28,15,15,29,49,46,40,56,49,13,53,6,4,9,31,24,13,13,29,42,53,1,31,30,32,34,28,43,35,25,28,48,54,16,53,39,11,49,54,2,28,54,8,31,28,39,22,35,50,32,20,24,21,19,53,20,10,15,44,51,11,28,1,42,15,45,56,11,26,18,11,33,19,47,34,36,38,33,3,38,26,49,38,13,34,1,2,1,37,34,17,7,5,29,10,7,30,1,14,18,32,49,38,8,11,21,37,14,11,11,24,10,41,8,18,25,17,56,54,46,5,18,42,1,12,3,31,44,26,43,14,15,10,7,19,18,55,28,38,51,27,10,42,25,14,5,32,36,13,54,32,36,38,36,48,46,25,47,21,16,11,41,21,54,5,15,24,42,24,47,40,47,33,16,52,25,22,29,21,35,47,9,16,54,32,39,9,28,31,41,6,49,42,54,55,12,40,11,36,17,47,14,15,2,18,32,9,7,49,48,42,46,42,39,24,7,44,17,50,1,27,54,10,53,23,30,6,8,54,43,25,26,10,38,23,48,35,30,47,41,17,7,22,38,46,44,28,50,19,44,18,54,46,30,56,35,32,36,5,41,9,16,34,55,24,9,8,33,10,51,40,38,4,1,32,27,15,28,55,14,44,13,6,18,30,3,10,33,39,46,42,44,28,17,4,45,7,10,1,24,12,20,8,26,32,12,22,16,4,36,15,24,50,50,6,33,52,30,3,11,37,20,29,1,24,36,51,16,15,9,52,41,39,34,48,50,27,6,6,18,38,50,43,11,33,48,15,5,53,42,25,47,9,9,6,25,35,37,43,28,15,19,11,22,37,45,42,33,28,32,44,18,52,10,23,23,9,56,51,26,34,33,35,30,32,37,12,2,48,44,18,1,23,45,54,35,43,3,4,38,11,9,15,25,9,20,21,44,42,9,10,37,41,50,33,44,54,3,33,32,25,18,9,41,19,41,46,43,15,18,39,45,9,23,14,9,42,7,52,54,55,31,40,45,55,13,31,37,15,50,15,46,39,21,46,4,53,3,28,35,1,25,49,18,20,26,43,32,39,9,38,44,2,27,40,39,56,18,42,12,53,38,9,49,43,14,4,24,24,10,9,47,49,31,1,47,48,2,45,53,30,26,55,45,39,13,5,14,1,19,19,54,33,1,45,44,37,49,32,43,32,4,34,34,18,33,49,47,34,20,13,20,32,7,38,9,52,17,52,24,28,38,40,51,4,41,24,27,34,37,30,33,25,34,50,34,18,9,49,42,38,40,50,49,18,5,55,28,31,44,14,11,9,53,1,26,43,22,9,51,27,24,54,3,5,1,13,13,23,35,43,8,35,54,8,36,2,24,38,21,9,4,53,53,12,8,47,53,3,7,36,21,41,45,47,27,40,45,2,55,4,28,30,11,4,25,20,29,46,35,34,41,21,42,4,56,45,5,16,6,3,28,44,9,21,34,40,50,53,42,16,13,19,50,26,25,40,3,52,41,38,20,14,38,14,48,9,27,46,13,10,54,42,49,43,27,14,41,30,1,27,12,6,5,36,28,28,41,19,38,25,1,53,13,44,34,1,13,7,18,45,28,30,1,8,44,21,34,35,8,42,24,45,40,35,38}

    Returns: 115682

  55. 100

    {95,45,30,76,99,72,2,8,22,38,2,26,10,65,25,60,41,46,85,79,46,15,1,12,53,94,41,70,6,51,24,42,35,3,14,17,92,43,25,30,82,96,92,75,74,35,5,43,81,86,79,39,81,84,14,82,40,34,100,64,9,26,74,70,52,67,46,37,69,70,10,49,81,12,15,14,60,84,25,81,100,2,28,31,13,30,30,1,3,21,17,33,38,64,20,59,100,27,9,72,6,3,58,37,33,57,64,93,97,17,1,44,94,3,26,98,30,22,89,14,31,15,14,39,53,63,82,64,65,71,45,14,45,14,92,92,59,17,71,38,75,35,86,11,12,66,82,26,97,74,22,59,65,19,93,16,7,92,58,24,56,31,23,95,66,50,51,79,34,51,36,38,70,93,19,16,48,96,95,48,30,9,53,18,55,42,60,67,87,59,95,12,11,55,25,3,72,7,4,94,54,69,65,70,93,79,96,21,72,8,58,63,100,46,33,99,41,96,90,2,69,10,66,25,42,4,61,13,9,31,94,55,28,37,45,39,59,23,73,9,78,42,83,90,61,14,89,35,59,8,6,88,9,43,86,90,95,79,8,54,4,43,5,16,4,4,37,44,88,30,84,7,59,95,55,37,6,90,10,9,74,63,87,30,42,57,47,97,33,63,77,91,33,92,57,7,3,58,99,75,21,33,92,34,5,81,5,7,40,64,49,14,36,71,3,82,29,19,80,59,57,99,96,43,8,30,17,100,96,3,26,30,71,83,66,68,32,18,15,17,88,25,51,24,58,58,72,71,6,60,37,95,36,83,30,13,97,13,48,96,94,66,28,56,96,46,73,47,31,39,42,48,21,76,12,98,28,83,42,56,74,94,7,39,74,91,18,55,63,24,72,45,66,23,19,18,93,46,6,85,41,23,72,23,9,71,54,9,35,77,98,8,6,65,49,75,96,23,38,58,29,30,64,81,87,54,41,94,21,11,32,22,50,61,96,100,100,80,33,95,28,13,100,15,84,10,57,93,61,79,93,59,69,51,69,89,2,22,7,90,48,65,63,96,23,36,10,4,25,77,69,36,99,98,34,13,57,63,38,74,100,55,29,80,25,68,44,97,24,79,75,87,23,28,59,35,48,37,44,70,22,52,98,58,86,83,100,43,24,66,32,98,78,67,72,88,46,40,25,85,49,91,38,4,76,53,48,80,12,92,12,20,91,52,55,59,4,14,19,28,46,20,42,82,80,95,94,85,54,65,21,33,2,95,50,95,32,80,74,34,4,30,89,61,75,40,76,64,6,90,62,81,79,50,99,31,27,61,100,17,37,48,29,78,8,78,69,66,67,18,74,28,36,64,14,13,60,88,31,99,61,59,13,36,35,3,45,28,13,25,43,12,61,5,78,11,80,79,25,18,75,57,73,24,96,5,16,53,3,90,74,94,58,35,52,4,64,66,44,40,64,5,64,40,13,89,96,85,44,19,20,15,66,93,11,28,23,92,62,93,89,95,28,14,43,36,57,50,66,11,23,53,30,27,55,5,68,41,1,63,79,57,45,76,86,89,88,42,5,56,41,77,3,78,88,6,72,54,42,2,23,63,25,28,94,100,49,49,77,64,18,73,86,66,27,94,69,58,40,36,6,7,60,8,40,23,46,83,91,45,15,80,60,99,1,87,12,9,32,97,83,26,27,9,86,38,98,82,4,69,37,38,15,37,70,96,28,38,56,19,47,45,58,53,32,63,22,24,76,40,87,12,63,85,20,37,33,13,94,36,35,78,4,61,22,64,24,31,85,93,3,83,14,12,37,19,26,11,8,33,100,31,54,86,95,40,3,38,61,35,71,29,80,86,76,47,17,85,46,84,95,85,14,86,53,92,35,8,4,85,96,71,31,37,17,50,44,7,9,75,52,27,50,32,83,22,63,38,18,67,38,31,10,24,88,63,92,14,8,17,58,4,23,40,92,36,27,12,83,20,38,81,33,98,94,57,79,48,55,74,14,53,4,1,83,50,47,75,33,1,71,62,93,82,37,95,39,47,32,18,31,56,31,73,88,72,96,21,98,95,44,11,51,99,5,53,15,64,19,30,82,14,2,61,41,78,35,81,51,78,44,37,18,87,54,94,9,41,3,42,82,15,71,69,23,35,29,73,39,2,42,46,7,20,78,37,93,60,20,88,45,1,32,79,78,54,22,76,60,43,63,57,34,67,99,5,98,48,100,99,19,14,92,19,17,81,32,53,57,4,93,36,7,48,32,23,64,71,39,32,74,69,89,65,90,23,16,4,75,96,1,70,80,82,41,32,74,73,36,60,46,11,57,84,62,34,85,86,87,48,64,70,70,89,62,96,15,99,54,8,51,38,26,2,61,58,34,76,14,24,8,86,83,53,59,65,56,5,5,7,84,45,4,31,97,7,48,99,26,15,38,54,25,100,55,84,96,26,95,11,16,85,47,37,40,41,49,40,73,10,68,58,7,43,33,59,4,43,42,67,40,74,63,51,23,55,60,7,9,91,58,35,73,17,89,27,95,22,64,87,70,1,23,84,40,50,32,85,31,30,40,76,41,70,88,73,49,36,29,8,54,94,18,91,3,11,89,35,18,96,43,9,38,52,32,60,40,23,57,45,32,50,36,56,86,21,63,81,55,74,16,48,56,49,15,95,81,28,31,87,76,63,57,63,94,10,37,82,1,21,32,20,16,85,38,78,15,27,76,71,49,50,21,11,100,4,36,84,93,66,63,60,75,92,79,24,90,68,47,77,45,82,65,2,17,97,19,80,10,47,26,43,14,90,89,26,27,33,47,99,18,49,49,10,13,13,61,66,52,60,50,40,39,20,93,80,87,28,83,4,59,14,23,98,59,68,40,20,65,50,46,84,35,48,56,33,68,42,50,72,44,85,57,96,36,55,46,59,15,36,61,67,55,62,11,57,97,46,15,89,81,42,43,14,55,20,62,40,4,19,24,66,52,54,64,88,39,61,39,97,71,44,36,54,20,83,15,13,43,30,60,97,63,39,66,48,76,73,86,68,11,85,51,74,100,68,38,85,92,42,94,74,75,20,80,34,49,10,17,95,37,58,21,5,16,97,88,6,63,61,50,7,58,69,75,5,84,6,36,24,98,36,77,76,93,81,32,7,84,26,55,71,1,11,73,16,98,15,85,71,59,97,59,56,85,14,31,62,41,56,42,67,55,38,69,14,50,22,90,66,10,95,41,62,4,47,75,48,68,70,16,18,11,98,8,3,3,17,75,76,28,61,31,92,29,51,55,66,80,73,33,96,79,15,16,95,73,58,42,40,67,86,23,66,30,49,19,33,38,3,50,60,43,88,59,100,37,61,45,35,91,71,63,90,52,9,22,70,8,63,47,68,19,16,68,53,72,93,95,56,84,14,70,99,55,31,75,59,67,43,13,46,62,73,80,90,78,23,98,57,40,10,52,3,61,58,80,42,41,54,5,66,89,36,30,56,73,28,64,57,18,80,66,56,58,76,75,59,83,64,4,20,1,18,56,76,96,94,40,46,26,70,92,16,67,36,45,4,29,16,8,96,66,19,35,97,78,78,50,69,100,54,74,57,28,31,69,85,71,54,87,81,50,66,4,30,30,37,8,87,93,97,75,1,54,43,96,40,19,54,63,26,10,14,83,78,84,9,23,17,79,2,41,45,61,42,53,27,47,9,77,4,12,40,36,56,8,75,6,84,75,59,2,5,18,70,51,97,12,35,87,93,88,51,64,18,27,93,99,82,30,93,88,14,67,99,2,66,79,4,76,72,53,60,75,24,46,87,61,54,8,50,28,50,96,2,39,90,79,46,56,6,44,41,88,75,67,69,87,47,4,33,60,30,15,87,36,35,58,23,15,62,19,17,82,34,8,4,72,16,57,28,27,46,39,88,97,98,58,50,100,33,5,56,74,34,53,14,27,42,6,14,1,79,73,99,60,28,37,47,23,90,97,61,61,23,12,47,97,35,61,50,59,16,96,60,37,98,76,62,47,45,2,79,93,100,27,79,70,99,35,72,62,48,39,74,33,82,90,27,38,83,36,5,28,8,30,50,40,90,33,30,52,8,16,54,77,85,41,86,72,74,47,11,48,99,53,45,57,78,38,80,77,22,67,30,81,25,61,2,36,69,56,44,71,47,95,47,98,97,76,61,54,37,84,51,33,73,97,72,16,74,100,67,39,70,78,89,94,3,38,35,58,56,27,42,56,59,14,23,32,81,27,40,33,58,35,19,93,100,3,58,21,79,49,57,3,70,68,91,58,29}

    {16,13,64,17,75,75,47,54,44,8,87,55,64,64,82,36,85,98,83,13,77,34,91,100,78,42,11,97,74,20,15,10,1,74,100,83,92,36,71,29,53,24,25,33,13,17,81,78,76,68,15,76,32,93,67,23,10,87,8,91,60,74,28,54,16,77,96,88,79,13,62,59,24,44,13,72,53,84,95,97,82,63,63,34,49,64,38,16,26,94,98,17,27,43,66,84,88,80,79,35,14,73,6,18,4,74,91,41,43,34,76,37,13,64,96,93,51,100,2,67,32,1,35,49,55,7,18,74,65,42,20,82,45,58,11,16,78,63,77,19,72,35,87,19,42,12,28,21,16,94,52,30,39,100,31,76,60,55,34,15,59,45,99,64,10,21,2,76,60,32,86,17,33,86,56,19,61,45,2,77,4,20,78,13,74,80,92,39,86,37,89,94,10,47,98,27,80,78,45,16,23,31,82,20,22,80,51,68,56,62,93,60,14,4,3,82,12,99,81,89,15,32,72,12,76,59,15,94,29,83,86,79,38,25,49,63,67,86,84,72,11,10,36,91,68,8,42,86,42,78,3,69,6,52,98,20,52,46,13,57,27,40,27,65,52,97,88,26,75,60,36,65,38,100,84,12,13,56,82,21,44,22,15,24,58,60,51,79,5,50,80,91,59,24,20,7,83,81,47,53,6,84,8,82,30,45,86,15,58,65,95,6,100,60,63,34,95,17,46,46,44,43,26,93,68,39,86,61,39,22,61,99,79,20,100,57,36,21,93,94,24,20,62,87,35,20,43,73,83,60,16,90,13,3,99,49,25,97,60,24,71,54,34,3,89,1,10,50,68,58,84,23,30,61,40,73,66,20,88,93,62,95,31,24,99,14,28,20,24,21,65,76,38,9,30,83,64,37,63,96,27,50,28,56,99,2,42,84,96,90,78,33,13,21,33,72,79,93,87,61,99,75,3,52,11,50,2,57,34,53,60,76,58,98,56,58,85,70,41,39,17,15,73,53,45,78,3,49,85,38,91,62,66,17,79,31,89,27,37,89,39,49,58,20,27,70,70,58,36,73,8,59,48,6,82,89,6,21,49,80,92,10,14,6,96,78,45,55,50,60,33,61,46,84,70,30,23,90,74,19,70,92,68,94,94,93,40,41,21,16,19,33,38,25,25,66,7,68,69,74,21,45,93,69,3,85,89,30,88,53,24,50,83,97,82,84,28,45,26,82,56,62,42,78,58,90,65,16,82,100,32,11,75,87,54,43,15,87,45,38,72,61,12,28,81,86,56,35,5,16,95,86,3,43,91,83,57,44,29,75,14,52,49,59,55,55,29,96,40,88,77,68,7,88,71,51,37,57,76,29,90,15,40,96,95,94,73,14,98,42,91,65,74,38,13,95,17,68,88,90,21,39,38,52,12,67,100,17,70,94,59,51,25,97,78,96,44,7,42,81,14,51,42,9,7,16,66,25,6,100,50,39,29,49,20,92,24,5,25,24,52,87,45,46,7,86,63,32,100,45,40,98,55,76,61,39,48,18,94,54,52,12,10,24,41,26,4,33,46,22,72,1,42,71,97,98,2,19,19,35,43,98,59,64,50,15,1,41,66,1,48,73,89,8,88,45,41,32,42,61,29,10,81,56,39,95,40,40,77,15,4,88,92,49,33,83,97,30,15,18,35,28,89,86,6,21,99,87,44,71,51,29,74,27,24,58,65,13,15,78,60,69,91,3,45,75,47,95,83,51,91,79,26,72,60,44,17,14,55,18,47,1,47,5,62,5,72,36,70,98,64,52,25,74,86,34,42,71,84,42,20,1,21,54,29,42,78,20,58,19,88,11,2,64,92,50,4,95,65,8,67,86,35,16,1,63,59,11,49,94,81,50,12,44,96,38,91,43,57,98,10,90,97,90,20,51,73,12,20,24,22,34,82,42,19,39,6,81,6,95,74,40,24,45,48,68,22,49,90,48,53,91,44,85,23,1,90,86,3,52,45,85,69,90,43,53,6,40,9,78,37,64,3,38,59,89,15,79,59,24,27,9,35,90,94,74,46,8,35,35,46,96,55,54,96,75,79,39,66,44,9,27,86,24,64,75,32,39,40,29,93,31,46,79,78,21,56,73,10,13,86,42,71,8,19,24,32,37,57,1,60,59,51,74,43,36,14,43,55,38,56,67,27,9,73,71,87,51,7,98,72,5,78,91,28,85,81,69,56,24,36,85,72,83,57,2,23,83,51,11,91,23,92,17,96,35,94,38,38,95,52,49,74,29,80,88,50,90,60,37,21,62,46,73,65,38,85,28,46,47,50,27,72,65,88,76,11,10,39,69,53,66,98,15,40,83,42,72,78,93,78,56,14,58,99,99,67,19,14,24,49,22,31,32,38,29,39,41,27,78,9,28,93,39,50,10,6,39,73,55,14,48,15,78,30,28,18,92,77,80,56,60,24,45,40,18,98,61,56,59,33,66,12,3,77,48,35,28,60,88,38,73,98,97,89,41,83,47,94,42,97,38,87,71,76,55,67,94,22,1,59,3,74,43,40,82,32,1,42,22,23,15,83,82,9,87,54,55,31,31,65,91,94,3,8,59,15,79,81,85,55,16,96,77,86,18,56,65,57,22,4,18,41,91,89,59,91,23,32,20,32,33,25,50,76,33,28,4,57,37,91,55,54,68,77,34,70,49,19,86,24,25,88,40,14,95,43,44,6,43,65,59,28,76,55,41,8,16,77,15,71,81,37,58,54,96,45,35,81,86,20,70,98,99,17,72,42,62,42,94,10,16,94,86,41,4,80,61,38,76,36,96,32,48,2,6,57,29,66,18,45,35,60,11,76,33,22,39,99,53,12,75,56,65,62,91,11,58,46,79,60,1,2,43,11,46,46,68,48,24,41,5,2,48,37,77,66,55,9,12,30,52,66,67,16,20,41,57,47,78,32,44,93,100,66,63,85,63,75,94,28,26,52,21,75,37,67,40,78,1,58,42,78,86,71,2,40,89,88,93,8,34,78,36,92,86,27,17,74,2,23,63,86,55,23,54,61,16,28,25,45,9,46,20,29,71,55,23,26,59,19,4,6,75,44,24,78,77,25,90,99,37,65,54,82,22,15,20,45,65,29,96,66,36,91,51,87,85,29,70,26,20,17,74,39,8,87,65,98,30,100,89,72,98,58,45,65,59,39,74,49,18,6,55,81,3,26,71,74,62,35,90,71,14,56,81,41,100,71,15,10,94,78,59,4,79,1,36,10,85,97,30,93,80,33,72,65,59,96,71,50,17,26,72,20,9,56,37,67,5,98,71,83,93,79,28,43,74,25,94,83,92,47,12,90,70,78,40,45,78,81,58,65,85,63,7,44,99,64,49,95,19,64,42,40,31,52,78,34,32,2,32,31,58,98,33,66,77,60,55,51,77,40,37,30,1,38,74,19,29,52,10,54,52,37,36,9,21,36,39,4,44,84,98,93,81,18,92,95,60,50,16,80,54,85,19,19,89,31,51,58,41,48,10,85,36,71,77,9,42,40,9,78,51,68,5,44,44,84,4,75,57,89,58,98,63,78,49,88,89,77,47,62,54,90,74,14,51,29,48,54,21,58,96,7,74,80,78,55,98,39,49,12,26,29,5,55,4,51,69,26,97,72,67,96,58,2,28,59,75,44,59,93,33,100,94,35,79,92,20,84,79,90,44,46,10,5,47,35,39,57,94,28,40,94,93,89,41,100,87,61,64,1,33,61,38,53,69,85,57,53,19,90,40,17,53,84,28,25,48,21,38,38,24,96,75,58,95,65,37,17,65,40,54,39,27,65,35,62,87,67,30,58,66,73,15,20,3,74,89,95,69,96,46,23,75,58,3,86,71,89,2,58,17,71,86,87,75,92,38,48,52,14,92,33,100,34,5,81,42,96,33,56,28,59,77,52,33,20,21,10,100,49,11,80,1,90,64,18,48,43,87,30,80,48,61,47,88,72,92,55,11,77,93,57,78,75,30,20,42,38,91,95,31,55,85,91,67,27,25,31,53,86,79,97,91,60,66,51,17,89,73,87,45,35,89,49,6,40,33,51,4,17,35,93,95,65,39,83,70,55,49,57,44,44,16,84,30,24,55,39,17,37,24,51,3,45,41,1,67,80,12,95,17,34,60,13,36,37,55,80,6,75,81,91,64,3,95,84,12,34,28,37,13,77,83,18,13,36,6,46,38,71,85,47,29,88,100,26,76,8,83,20,81,20,84,45,17,39,7,84,90,61,96,15,93,71,68,45,52,100,50}

    {95,83,75,100,23,73,89,85,95,94,66,58,93,80,20,37,52,85,72,23,50,45,67,24,9,94,9,90,46,43,30,5,15,53,60,10,20,74,58,81,46,16,86,94,52,65,49,88,85,4,90,75,33,100,50,62,97,76,10,57,94,43,17,47,11,77,35,98,15,95,56,13,86,51,44,22,10,76,59,62,37,6,26,62,77,54,93,54,28,62,41,55,22,53,27,3,81,32,10,69,30,3,94,90,43,11,52,17,34,15,14,13,2,74,12,86,85,8,39,74,78,7,41,95,55,10,94,56,90,24,23,62,2,5,19,57,91,45,63,30,86,16,37,78,41,25,80,88,27,25,12,77,27,83,62,2,24,79,55,41,69,54,88,19,84,46,7,43,69,62,20,19,42,96,10,71,92,94,18,36,50,36,24,60,81,25,30,57,83,23,66,65,52,16,60,82,81,29,89,39,15,86,26,4,26,35,100,23,19,40,47,29,30,81,8,55,22,91,27,62,69,94,45,46,23,16,29,18,7,69,92,95,21,31,47,43,80,84,13,37,73,78,30,37,38,67,79,39,76,51,10,31,72,48,32,88,99,19,39,65,64,63,13,47,24,4,37,36,43,92,72,66,85,40,100,56,36,55,17,70,16,5,40,9,37,91,82,72,30,18,29,99,52,89,17,67,12,31,83,55,73,62,18,20,86,54,20,97,95,72,73,52,83,19,51,5,93,42,80,73,35,32,1,39,2,30,52,38,65,8,85,91,80,30,38,2,43,58,58,90,42,44,7,20,31,86,31,67,98,31,78,8,48,22,17,63,29,23,2,52,8,77,50,42,92,71,19,59,28,26,96,22,29,61,44,57,5,25,39,64,20,11,65,100,1,40,12,58,18,31,55,39,100,32,20,7,42,27,22,66,10,28,60,98,26,60,57,27,32,85,37,9,37,1,52,76,30,97,41,90,30,44,98,14,47,39,19,19,83,64,88,30,71,17,74,21,41,39,80,39,52,88,55,95,61,58,90,84,99,63,44,3,33,99,41,54,31,93,31,100,24,50,63,26,48,32,43,4,67,88,34,37,58,97,78,62,90,63,9,37,59,80,41,39,60,33,60,96,75,94,92,32,96,60,51,49,99,33,56,6,49,57,95,9,72,97,55,91,83,42,83,83,21,15,50,87,94,52,74,63,27,45,24,68,38,6,93,95,94,57,21,88,80,34,71,27,46,16,37,12,64,8,18,95,69,23,29,51,67,33,33,17,69,83,75,57,12,93,67,72,31,6,14,99,21,65,12,8,77,64,41,53,42,28,72,96,78,51,45,54,2,45,46,28,55,28,1,95,41,98,18,27,81,48,65,88,42,81,45,3,64,90,35,2,69,13,90,97,78,49,66,52,64,1,23,81,69,60,59,7,72,72,7,4,50,55,61,33,98,67,32,10,73,81,49,96,10,39,70,70,26,25,81,87,43,26,49,95,9,23,36,49,64,76,92,24,73,60,77,6,18,41,56,8,38,69,13,40,48,87,54,39,15,6,42,57,62,61,79,78,2,49,98,35,3,28,30,94,32,36,34,55,27,72,23,26,85,72,19,47,5,12,44,100,98,41,30,11,11,85,58,97,33,8,58,91,40,90,1,38,92,10,73,11,91,9,4,23,77,60,7,1,100,32,39,66,46,17,52,73,98,60,70,84,12,91,86,35,51,69,64,48,73,92,69,29,85,48,89,7,89,43,77,52,17,49,2,34,27,7,55,91,40,10,7,57,54,6,22,76,31,47,33,74,41,34,56,40,90,15,71,69,4,84,28,27,12,89,49,80,6,36,74,2,61,16,65,71,91,6,36,46,4,35,82,23,20,13,84,41,11,76,54,47,37,38,14,77,36,70,65,76,79,85,96,39,31,40,67,93,7,41,94,54,59,57,65,94,40,38,99,2,20,78,91,12,84,21,38,36,87,96,42,38,23,100,52,44,20,75,7,3,1,37,60,57,21,49,80,34,95,83,50,1,30,2,37,84,89,93,60,16,84,69,48,88,78,49,41,19,80,17,25,18,67,92,23,75,30,93,35,19,46,48,19,82,85,58,36,66,51,74,32,19,69,39,10,57,50,82,66,99,54,65,96,43,9,9,42,7,63,70,57,60,26,37,75,43,84,89,31,7,36,85,66,84,36,64,37,95,36,35,9,46,7,41,60,45,73,44,24,94,65,41,20,34,89,68,57,42,22,12,92,93,36,11,12,47,76,6,53,19,88,44,18,73,81,44,62,55,9,82,21,91,19,49,93,42,73,10,78,34,61,74,81,56,32,90,80,33,57,50,68,85,80,95,27,90,82,19,26,91,56,41,55,71,28,52,19,88,93,32,57,28,24,43,34,13,98,27,68,73,23,40,62,73,21,91,3,78,82,59,48,9,54,99,68,59,34,77,22,88,58,95,72,73,18,17,65,27,20,33,28,44,21,54,4,15,79,50,8,81,55,25,24,79,73,43,93,76,52,99,27,99,10,54,43,68,73,57,7,98,48,91,52,34,53,91,92,35,37,24,94,36,33,96,86,81,82,47,61,25,38,44,19,77,93,94,37,96,15,55,66,73,62,42,87,36,48,90,15,15,74,43,26,12,85,45,84,38,27,74,15,90,71,25,15,58,44,86,98,81,63,13,5,83,79,3,64,58,66,71,46,95,64,91,16,86,30,32,73,59,47,2,67,66,73,88,70,63,8,70,1,77,41,59,55,10,65,1,68,68,25,5,54,87,8,93,99,39,65,36,42,15,2,77,71,11,43,1,5,32,81,66,38,75,32,78,47,67,94,44,20,60,46,4,47,21,88,43,23,79,22,93,54,42,43,88,20,26,23,50,56,76,76,2,18,35,41,81,69,17,12,3,91,42,36,40,35,12,48,45,66,88,52,78,20,66,87,69,72,55,83,75,54,63,16,75,99,51,91,80,54,11,37,32,39,54,86,85,21,57,92,86,81,90,32,100,95,50,36,27,97,18,40,24,26,23,48,35,45,32,44,11,86,43,86,4,68,7,94,79,14,51,19,28,63,55,96,25,99,71,5,93,55,60,89,29,25,78,84,89,5,10,47,60,32,48,15,75,16,49,21,25,72,32,75,34,41,15,92,28,64,20,89,96,95,31,73,16,80,99,73,37,21,79,95,30,6,6,1,75,71,59,64,2,64,49,31,6,100,13,66,62,4,28,42,68,74,90,68,30,73,86,85,31,53,52,34,25,45,85,32,21,2,56,56,12,63,57,87,61,20,75,67,59,11,14,93,72,13,30,98,93,44,80,32,52,44,42,77,62,27,99,32,56,23,47,94,41,56,37,4,27,46,9,80,52,76,62,76,49,69,35,69,82,16,86,11,25,89,79,45,5,96,1,12,14,81,88,89,58,91,35,53,58,79,23,84,29,39,19,93,96,30,56,41,35,49,35,65,49,51,38,43,28,27,91,38,9,67,77,41,29,34,37,98,85,99,75,32,96,55,23,100,72,47,17,7,81,16,65,79,51,85,2,52,100,4,56,32,47,50,67,44,57,66,58,1,81,100,43,62,88,92,52,16,18,77,38,12,93,8,24,96,78,96,45,46,97,35,31,94,69,45,11,3,56,94,64,45,63,68,24,22,82,54,96,58,13,61,93,91,69,58,6,56,95,19,41,41,38,82,91,48,13,95,24,97,36,92,14,93,7,65,54,36,51,24,62,2,51,23,87,30,36,97,3,66,25,26,1,62,43,18,55,18,2,83,76,43,23,65,29,68,96,53,57,80,38,40,97,68,40,90,58,57,83,28,88,87,2,53,28,38,25,16,32,22,60,70,4,6,4,41,87,52,88,34,15,91,50,84,36,28,30,48,6,52,9,31,24,57,60,59,8,21,95,52,80,98,52,58,60,18,91,83,42,19,15,19,65,98,87,11,80,48,65,11}

    Returns: 89751

  56. 2

    {5, 5 }

    {1, 1 }

    {1, 1 }

    Returns: 10

  57. 1

    {3, 10 }

    {1, 1 }

    {1, 1 }

    Returns: 13

  58. 85

    {94, 21, 99, 27, 91, 1, 64, 96, 32, 39, 84, 71, 97, 53, 73, 20, 7, 13, 33, 45, 5, 85, 7, 87, 94, 37, 48, 30, 5, 85, 47, 62, 91, 18, 71, 37, 7, 25, 75, 17, 40, 19, 89, 85, 86, 87, 45, 12, 61, 71, 32, 73, 63, 89, 25, 51, 60, 76, 32, 2, 69, 78, 28, 32, 74, 44, 47, 11, 82, 5, 2, 28, 54, 35, 67, 44, 35, 6, 70, 66, 77, 7, 60, 67, 33, 66, 21, 91, 76, 75, 16, 79, 20, 24, 91, 31, 2, 50, 11, 19, 93, 49, 4, 7, 55, 9, 95, 39, 54, 12, 48, 38, 73, 100, 57, 97, 44, 2, 2, 51, 40, 4, 51, 3, 95, 93, 56, 88, 60, 98, 67, 7, 99, 46, 71, 75, 24, 82, 87, 29, 92, 92, 81, 87, 34, 83, 58, 46, 79, 53, 38, 32, 97, 41, 65, 10, 54, 81, 42, 37, 76, 28, 11, 50, 13, 29, 15, 99, 73, 72, 2, 81, 39, 75, 1, 54 }

    {72, 69, 19, 25, 3, 65, 10, 42, 37, 76, 29, 34, 41, 14, 46, 46, 37, 55, 30, 32, 84, 57, 74, 16, 10, 48, 67, 31, 44, 84, 11, 59, 67, 63, 5, 31, 28, 71, 3, 21, 42, 21, 61, 50, 5, 79, 79, 27, 69, 33, 47, 70, 76, 70, 17, 73, 28, 64, 77, 84, 9, 6, 63, 71, 17, 71, 40, 9, 8, 16, 76, 76, 6, 53, 47, 10, 45, 31, 78, 55, 13, 35, 50, 43, 32, 78, 78, 44, 20, 56, 24, 43, 80, 62, 72, 16, 5, 72, 67, 29, 11, 51, 64, 27, 7, 44, 59, 1, 40, 71, 64, 63, 67, 81, 72, 22, 73, 59, 21, 44, 3, 18, 9, 75, 72, 43, 13, 44, 79, 42, 58, 49, 81, 44, 42, 41, 35, 81, 63, 74, 42, 79, 42, 39, 45, 49, 18, 73, 53, 36, 80, 34, 75, 57, 10, 79, 79, 33, 48, 18, 81, 3, 69, 36, 37, 49, 54, 29, 17, 81, 83, 13, 8, 69, 5, 84 }

    {39, 29, 15, 5, 3, 65, 29, 64, 60, 21, 13, 10, 73, 75, 44, 84, 15, 61, 26, 49, 31, 27, 83, 24, 16, 55, 60, 74, 71, 53, 68, 15, 75, 15, 36, 4, 47, 9, 77, 45, 63, 32, 77, 84, 8, 68, 11, 5, 18, 80, 36, 52, 42, 59, 79, 83, 81, 29, 43, 70, 29, 19, 68, 5, 83, 60, 71, 66, 62, 81, 85, 39, 42, 40, 69, 60, 34, 12, 2, 4, 31, 36, 81, 33, 71, 32, 68, 5, 30, 59, 61, 10, 71, 49, 63, 30, 62, 83, 35, 56, 82, 2, 14, 59, 68, 74, 32, 31, 3, 28, 38, 54, 38 }

    Returns: 4369

  59. 10

    {1, 1, 1, 1, 1, 1 }

    {1, 1, 1, 1, 1, 1 }

    {1, 1, 1, 1, 1, 1 }

    Returns: 6

  60. 2

    {10, 3 }

    {1, 1 }

    {2, 1 }

    Returns: 10

  61. 1

    {3, 5, 2, 6, 4 }

    {1, 1, 1, 1, 1 }

    {1, 1, 1 }

    Returns: 15

  62. 2

    {3, 1 }

    {1, 1 }

    {2, 1 }

    Returns: 3


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: