Statistics

Problem Statement for "ConvenientBlock"

Problem Statement

A city has N intersections and some one-way streets between those intersections. The intersections are labeled from 0 to N-1. The roads are described by the int[]s from, to, and cost. For each valid i, there is a one-way street that leads from the intersection from[i] to the intersection to[i]. The meaning of cost[i] is explained below. There are no self-loops (i.e., streets that start and end at the same intersection). There are no duplicate streets (i.e., streets that start and end at the same two intersections), but there may be two streets in opposite directions between some pairs of intersections.

A walk in the city is a sequence of consecutive streets. (I.e., each street in the sequence starts where the previous one ended.) Note that a walk may visit the same intersection and even use the same street multiple times.

Intersection 0 is the entrance to the city, and intersection N-1 is the exit from the city. There is at least one walk that leads from the entrance to the exit. The police have just learned that a criminal is planning to pass through this city as a part of his ecsape plan. They would like to put checkpoints on some of the roads in order to see everyone who passes through the city. The cost of placing a checkpoint onto the road from from[i] to to[i] is cost[i].

However, the police doesn't want to disturb regular travelers by checking them repeatedly. Hence, they have a rule that each person that takes a walk from the entrance to the exit must encounter exactly one checkpoint. The police now wonder whether it is even possible to satisfy this rule.

If it is impossible to satisfy the rule described above, return -1. Otherwise, return the smallest possible total cost of placing the checkpoints.

Definition

Class:
ConvenientBlock
Method:
minCost
Parameters:
int, int[], int[], int[]
Returns:
long
Method signature:
long minCost(int N, int[] from, int[] to, int[] cost)
(be sure your method is public)

Constraints

  • N will be between 2 and 100, inclusive.
  • M will be between 1 and 2500, inclusive.
  • from,to,cost will have exactly M elements each.
  • Each element of from will be betweem 0 and N-1, inclusive.
  • Each element of to will be between 0 and N-1, inclusive.
  • Each element of cost will be between 1 and 1,000,000,000, inclusive.
  • For each valid i, from[i] != to[i].
  • Each ordered pair (from[i], to[i]) will appear at most once in the input.
  • There will be at least one walk from intersection 0 to intersection N-1.

Examples

  1. 6

    {0,0,1,2,4,3,4}

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

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

    Returns: 6

    One example of an optimal strategy is to build the checkpoints on the streets 0->1 and 2->4 for a total cost of 6.

  2. 10

    {0,1,2,3,4,5,6,7,8,9}

    {1,2,3,4,5,6,7,8,9,0}

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

    Returns: -1

    There are 10 intersections and they all lie on a cycle. We need to place at least one checkpoint. Now consider the walk that starts at intersection 0, makes two full cycles and then another almost full cycle to reach intersection 9. Regardless of where we place the checkpoint, the above walk would visit it more than once. Thus, in this test case it is impossible to satisfy the given rule.

  3. 10

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

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

    {1,5,5,10,10,10,1,10,10,10,1,5,5,3}

    Returns: 11

  4. 14

    {0,3,6,2,5,1,4,7,10,13,9,12,8,11,4}

    {3,6,2,5,1,4,0,10,13,9,12,8,11,7,11}

    {3,1,4,1,5,9,2,6,5,3,5,8,9,7,932384}

    Returns: 932384

  5. 10

    {7,3,2,0,0,6,7,9,5,4,8,1}

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

    {94,57,66,83,97,31,87,90,66,71,92,78}

    Returns: 97

  6. 24

    {17,8,5,14,13,6,17,21,12,22,11,1,18,20,20,4,11,11,21, 3,19,21,17,2,17,6,12,7,19,9,14,4,22,3,18,20,1,3,6,21, 14,0,4,16,22,11,16,20,16,22,14,5,17,15,7,13,5,20,10}

    {6,19,15,6,2,1,0,13,18,16,9,12,23,9,1,20,15,2,1,5,9,2, 7,17,10,14,5,2,14,22,10,2,14,18,16,11,8,20,3,3,18,3,15, 7,4,1,23,4,6,12,0,7,2,2,17,22,0,21,2}

    {7,97743,40693,8,7844,2,110,13507,735,25,24,264,1069, 92,7908,11971,142,2242,287969,268562,112,4,14064,184, 9,17,2610,61,188,26978,7,1542,133,2,75,1,191,43893,73717, 2174,2,21668,87095,4434,128,1,13257,35,791118,11,669682, 637153,163,15968,217527,50,168,72694,418644}

    Returns: 14326

  7. 100

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

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

    {37128,1,86,7856,942,55,504,4,1663,25142,3166,2881,24238,5,53, 1773,1181,64,454734,5406,29022,4,67626,5641,256489,13,37223,340, 3,2585,7462,85,1,83751,939915,741519,13521,36879,1776,274509, 571821,70003,794,129,1168,1336,127592,5267,8,315,117243,493198, 523,72676,2,10727,113664,102,1,24096,170,41467,1,2011,7,868987, 140027,382259,107,12,2306,138785,156,450194,896034,4,755,950,5, 4,1271,5,89,7011,1,50657,200,16,159,637870,8246,334324,621,74, 54163,3089,336,3800,1,507181,48093,3215,216403,7,6131,42182,151, 2,155,1,4436,2498,59158,11,628510,218003,1,16383,258124,1294, 226279,16,27,470171,282834,11038,767,563224,112001,227,11224, 94,213534,664932,1128,1280,337,11,52709,536,1,25,646,2091,110, 2570,40543,113183,317,901,4628,1420,14525,201865,265135,86,1, 8541,10023,10871,61,47844,2,26,164,13417,30084,13,6923,2,57796, 466,1,1988,4100,119,362,8,160708,37,42655,88,12288,73,746447, 851216,36,4740,2,11,7381,1837,522217,1,384368,1,70,1,43,2,6, 260,275200,11,1182,7,450764,583480,38,565,1064,458,12,128090, 3,548913,19,35,19990,6,260815,112,174,125452,184178,12497,2, 12069,568226,8,122,10,5645,395,1883,7,153,5243,1,273,34,52959, 25,157,74650,14987,1263,4491,15476,4,924077}

    Returns: 4455

  8. 44

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

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

    {45,1841,193539,47,39802,1,409638,1,13841,99968,151322,17659,6,19,90,2,1532,111,9750,73452,5,14882,52647,480,435,24,148,1,3792,53,14,92,104837,2,244,985,72630,2,3599,322849,464,12091,6401,77823,130708,244,3362,2318,4942,8,920,810734,516983,1,18,546166,29261,8,2,44,5,6,35,40614,62,1654,15,208,38071,980,86,742805,39,44269,5,278,21,432711,622252,5122,1,496687,126500,56,70,6,54287,33270,474943,7,6457,196989,155,105,135,138757,61,1335,14,22826,252,8,12,439925,5,336,72,12,50,533233,56,3,28,84,45,3655,5,60607}

    Returns: 38407

  9. 46

    {21,3,12,1,40,35,19,28,20,31,41,44,24,8,4,34,38,4,33,8,3,20,0,44,41,41,38,2,36,1,42,17,37,1,28,15,18,22,7,42,19,9,24,11,22,10,32,14,8,36,29,6,18,27,25,11,27,36,12,24,0,29,8,29,3,36,32,6,27,42,16,28,0,40,35,27,0,34,8,19}

    {40,35,17,42,18,42,12,5,12,42,14,22,2,42,9,3,40,42,45,24,34,42,27,23,3,42,19,4,31,30,8,42,21,25,0,28,9,33,16,32,45,0,19,42,39,6,42,39,5,15,18,17,17,35,45,43,30,39,11,10,40,16,39,0,16,43,19,29,13,41,40,40,38,39,45,0,45,27,30,21}

    {2365,11,2,79143,787504,168,1512,10,84615,1,1,13411,1,1840,231574,1,28068,1,455,23,156,22343,1285,58530,2,27529,297192,1327,24,2,13788,1,10422,21,91,103,4,4827,2,16564,119922,236,26,16,19,3943,57,483,324493,5378,160,5,2,1,3809,13,1088,273318,2,79434,57,286,73,415955,36991,6381,2989,7070,12,9,80,1393,36,10,2836,2366,283087,1774,83610,361729}

    Returns: 405845

  10. 100

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

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

    {1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000}

    Returns: 99000000

  11. 3

    {0,1,1}

    {2,0,2}

    {10,1,100}

    Returns: 10

  12. 100

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

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

    {612369,606137,662898,662397,666015,569355,652040,651538,612266,633509,638782,601812,641110,615362,650611,576459,655725,613317,665403,599095,642105,579797,601368,575794,646479,623598,626315,634491,640432,579696,662500,620866,579016,590445,652107,620514,654758,663065,608550,603252,587388,581919,630526,646454,601859,566878,614312,603802,604197,655159,45435424,650233,617240,590197,650021,571318,629132,637269,663482,602149,649999,628427,602045,645985,602582,644327,651230,602327,633102,625815,644580,662200,659614,662659,630792,640546,759375,590725,632210,567441,604162,568675,575094,661027,587834,646028,622275,641575,654104,33554432,624365,601557,578906,616594,574187,649867,587820,626896,652516,610129,585730,574210,662269,628056,657317,607097,596476,619601,617761,603011,573542,666494,634980,655127,567773,627260,659607,617557,661947,650881,665285,637982,657101,568932,626192,659248,596181,610407,652243,584773,642962,646742,647358,652205,644391,620108,164916224,616506,630575,624567,631239,595421,642288,632697,615997,639270,609872,567187,590302,656776,626331,601849,593703,644395,579637,612083,605592,592261,653582,596355,573141,60466176,625022,666316,631266,583646,597573,664945,651274,624532,635190,606389,575899,647177,588138,568774,642736,650575,650325,652427,645201,579375,573841,590285,637480,646976,658406,578535,591089,620825,639480,647475,569844,629103,576683,573829,616658,656489,601601,663411,610091,661453,577200,579701,649071,651489,649696,646567,610863,570892,609033,627949,649187,584509,582480,653396,588212,616769,626554,588292,371293,620632,578194,621992,581509,593918,567393,648526,610864,607502,635439,607724,606367,626052,598481,636057,586629,586973,617671,243,583457,649014,607262,589487,592499,599879,603485,657603,632909,643628,582934,617250,610582,606641,636459,589227,617076,575789,659993,572086,161051,17210368,614972,52521875,613171,654075,587839,639951,604665,659747,642748,638208,653907,590993,617125,587353,580862,600175,654897,656500,594824,600342,652066,665478,16807,613669,664172,580344,581834,583339,634129,623456,577275,663299,664501,576379,637058,614962,608961,652329,608920,613948,588567,622031,645504,644640,584443,632133,632618,634730,633485,583951,617562,602258,636756,567562,579126,570619,629773,600893,615426,586975,583342,600109,628030,574095,566637,616147,587059,578070,662219,650259,635680,632024,571079,658215,639725,598768,578794,645305,649910,611707,646792,658155,90224199,662912,579455,596848,579731,593444,626857,611078,591479,243,627567,583518,602452,646969,651791,574308,584509,568364,628296,631602,657751,624395,601007,571679,635934,592772,570959,663830,586456,607372,595044,569428,582554,633263,648842,658438,568127,662833,571516,577974,622856,650987,573589,607016,586729,616855,593455,630102,660287,577949,643772,591271,649970,566957,579733,569563,3200000,582302,130691232,632617,611940,639837,651045,620774,633612,600198,627631,614619,586370,628411,620180,619370,586898,622713,591367,589441,615483,665263,631314,635920,629796,666529,592677,662040,624917,648630,589107,624259,628084,649337,636276,574116,627612,588711,577391,604159,603134,643091,575572,639830,568022,602439,659047,663357,664607,599717,593363,586029,591229,582725,589684,631667,603113,640802,614069,663349,598431,610181,601675,608467,636887,629329,579699,654113,602790,631225,623219,571512,643267,591422,589016,638624,600354,641592,635275,581104,586473,649851,570696,600236,610252,570290,652840,657926,589012,620496,658245,663456,649266,620825,575017,595447,644930,598485,568264,643297,576785,605551,570539,662915,612605,601249,586800,642781,628371,603003,611091,660609,630230,616069,614656,589446,566959,633612,653858,616448,590896,575756,644754,589375,598527,596296,652156,7962624,608118,611711,611824,576065,610161,625929,626262,592355,589078,651947,626520,634507,572915,643917,634982,658748,655457,590157,661994,585845,577137,69343957,630265,651738,654388,598243,618947,629481,594920,603931,631995,633787,632687,595260,624959,607534,581082,583990,623195,629843,631299,649199,608353,637797,665553,581408,5153632,612844,625543,605770,568157,613174,661911,634817,621805,596562,591025,663283,635444,650735,625591,589751,629887,634378,648010,621059,629686,647642,614493,659698,600724,567162,647396,572834,629730,576181,586276,638821,651029,646206,571902,599869,592422,573155,609919,574087,587661,592777,642887,640606,569006,653013,643013,603069,602603,655438,604471,631266,615264,604423,666034,592752,604895,644522,605054,579528,641539,599927,608907,596959,759375,582149,574883,655139,638015,658913,659233,666185,589369,617272,622394,583268,599362,608349,598990,606515,586359,658691,567111,603602,576374,620460,662925,592223,614886,595935,636897,654967,664131,312500000,654992,637041,634463,574359,665363,621775,623740,658059,642065,575753,7776,586652,627058,601079,627667,607812,570264,631452,579156,575302,621918,184528125,654779,650786,647446,612076,658214,611133,653575,635473,658475,663035,589268,647439,585762,651732,603033,571012,634143,1889568,537824,646842,631695,11881376,615766,658735,570494,632635,611345,590014,567413,572479,597145,4084101,578682,626260,592437,648717,580928,656324,596508,596580,571824,1024,581195,621939,601862,646315,581738,570994,578352,637168,578218,583847,649947,644706,598634,624849,631637,609635,587867,588389,660235,637036,566727,632829,632972,628546,605228,613623,610427,613223,636072,642389,576794,575866,600840,587534,641304,604382,665504,630758,568828,591026,593811,655578,584297,643644,663159,608857,611695,574976,572055,205962976,644143,648231,606450,45435424,664861,634319,14348907,575458,571016,650217,619879,597397,584278,611515,635016,625883,572693,635721,604886,637544,631122,205962976,621705,652926,574804,600787,649143,583125,581262,663022,607737,651214,657646,663839,567195,570440,617870,652159,631413,653627,613415,573191,582464,660809,657251,621917,587360,568921,603746,637394,639431,594780,577991,575645,567598,647573,571930,661492,648463,581770,622448,600178,581775,607121,613528,571841,594858,649275,637630,6436343,638741,592671,32768,602081,590474,650982,595225,629349,611822,626617,610801,569525,585692,581721,648667,601748,603700,636026,639684,656827,592066,624642,605755,617317,601232,664254,592808,608950,591507,580754,598729,592371,639240,633101,608117,590805,566577,625352,618289,584107,654093,647159,622888,574181,572025,577005,617277,652686,659503,620747,659452,653075,611008,620467,649410,629594,640102,596550,601282,586726,619834,586903,632971,651804,622355,603801,586136,569411,589469,607820,617165,627206,652991,578416,628684,184528125,664555,625607,649577,662349,635509,595305,599070,598404,580033,598204,566790,595715,581591,609327,629959,580292,595806,641528,620802,644110,596289,570144,625970,616615,649216,634504,571408,661373,609678,580740,24300000,587589,624160,634183,595810,599950,614148,640743,598520,254803968,658936,643417,631677,663489,573240,640252,587808,607392,641608,612607,642883,593784,592605,572792,646770,652073,659058,617193,656853,609762,606050,608847,632924,664484,633623,655971,28629151,632242,624652,590380,248832,570077,652654,616801,632234,666070,654181,602951,615831,647841,617681,611278,613930,572144,617302,661204,658610,618509,653276,638269,653598,663182,570362,665320,608150,597153,658367,657122,254803968,607132,571953,612532,32,578866,572132,605578,631140,662179,654913,589754,629166,568649,631282,642071,593923,638303,588791,640795,591806,637366,100000,578009,572037,592013,623527,638291,590003,592952,595602,582685,620800,585203,649862,655813,666282,574264,614781,607567,607251,604397,602894,610468,655473,654197,659190,607385,624043,621115,643813,616756,663447,633834,613559,597158,631434,593989,632699,660363,658186,657772,616859,601613,626110,615064,577463,613544,630703,627243,572564,631051,1,638098,607444,591471,585440,609145,660249,594437,637863,578408,569162,664524,569301,662775,587669,625938,659558,662899,649497,7962624,625370,622153,647607,590087,537824,603062,626370,660744,640197,656469,90224199,600923,595504,569938,590797,619560,623640,641163,645696,596075,639593,657522,569816,567427,595389,593003,627535,581935,574117,586206,585026,655221,652508,619264,622091,611759,633192,638171,582195,659401,640543,627982,608446,11881376,631000,618416,573036,580177,601676,594595,574213,623040,102400000,658021,627832,569316,653750,615315,654859,638534,643629,9765625,660620,646529,580957,585020,648709,371293,618827,657668,665588,628423,639991,652910,574067,570332,650967,653205,614908,229345007,578361,612742,573893,606669,659387,583515,616361,659993,660450,619409,578156,646053,569949,650886,574682,609797,665179,608911,642249,631565,582348,594945,610297,656766,650131,598291,599938,3200000,654125,568160,626078,578171,574923,583346,654679,596408,624543,20511149,613424,644214,609803,599066,653212,60466176,640265,652139,645840,641933,661955,644751,661423,639891,580233,638761,2476099,660070,633764,585861,591206,605503,609767,566801,567009,621743,583941,619001,647055,629245,598514,623492,282475249,626749,601704,605860,653802,640033,637574,626650,612415,609661,652303,580961,605108,641627,626037,577247,573061,595962,623815,24300000,586539,575751,632037,665211,617218,612460,569951,604404,59049,625884,592660,603787,586167,612387,587954,591280,589934,639217,658514,588428,627079,610498,655635,597682,642116,610511,616991,578588,633865,661951,607998,596680,601072,630127,616645,598632,596852,652167,639211,596029,656629,622138,621437,579957,631450,591912,611838,588999,590953,653828,648200,615425,626579,655104,655808,626836,619996,601776,663980,643610,570738,639710,643256,661112,573992,605602,606087,604695,601688,586061,642485,624101,664696,614585,659846,645302,599078,597189,633745,633587,661199,631288,597544,607957,601591,660276,595279,608833,631412,643218,569400,654908,584981,603475,623717,614321,595121,621224,606550,638024,616797,653688,634540,615110,641026,656871,646884,602916,576376,627073,576580,653338,666457,657704,651168,606759,647075,649820,39135393,603301,659080,229345007,653125,577544,593575,659728,640510,584272,575749,617541,664730,650472,623264,613366,610646,639465,654375,644110,634306,597640,650042,622128,659531,1419857,584878,666513,573903,611550,641127,586092,570893,594516,640771,642596,585845,581377,637009,577948,623620,597800,595687,586185,657911,657251,597858,637872,566708,620269,632866,626932,587219,608849,663049,606282,617449,631988,643744,664825,596378,608226,599237,644617,612313,604745,578526,619321,629697,592682,660503,645248,610990,616895,623963,587599,591520,639333,652649,652987,601984,622095,651211,601018,604005,576704,645945,634929,581777,599978,591833,640665,589736,642785,656130,629981,16807,592679,614698,645932,579729,603239,1889568,603424,603218,569583,650669,569039,644663,630719,662123,639150,606655,616165,580771,614656,641481,657102,576958,599381,622501,600080,625516,629854,601422,590086,580398,643918,626448,643343,614625,615873,582728,592898,658415,639471,662767,639589,602439,639234,602120,598774,583571,583951,643899,650924,641933,631870,580609,638542,616442,3125,636159,580812,572580,631216,578123,629876,618654,579364,573007,571332,641436,608090,589972,603419,595199,616239,634127,633219,630366,660741,665363,628791,586329,637991,612748,591826,592815,606099,595888,652013,570571,580944,598923,598114,648445,624166,573377,658703,615260,577076,651083,598388,658202,591332,593839,588818,595219,655143,570518,664968,626704,655169,617239,569894,653344,612621,567470,654874,614190,567020,591197,79235168,574982,630715,633421,611679,664305,597372,649618,665020,568601,592839,616763,583542,571814,665040,597396,606855,613854,589686,570241,623762,575038,659796,586972,566865,588488,641922,627126,569156,604864,655640,607736,610260,644458,623404,579606,611926,646503,572201,654049,588282,606686,611801,4084101,612640,587678,655513,624997,645350,102400000,622180,598230,600728,648536,643787,647230,645560,645790,628151,634844,573454,610481,6436343,588194,594867,603687,599354,623634,662697,615176,661972,656400,575354,608598,570762,648773,585896,608525,607617,578763,161051,591655,576220,600379,608424,618370,573842,603317,664857,627533,615701,641407,599558,581833,577924,660835,586870,653692,575919,617357,571406,600386,588433,568550,635239,566991,645473,591552,620789,657932,17210368,590109,607027,570171,594864,578184,656431,580576,649924,568871,641566,661749,580769,611981,658277,661763,648620,617424,663372,650957,658236,654199,621703,645835,659539,596201,644960,588277,584346,638212,644887,32768,592832,633802,569293,663933,665665,1048576,640551,657979,571953,660739,619852,576645,569419,665206,666334,646709,617768,611912,657884,636966,641374,642926,571707,100000,574315,619019,657921,611443,614429,611883,642103,608030,589948,584648,656733,577162,594950,604925,600359,574386,616631,614145,632853,625927,646035,646868,618429,622759,574972,282475249,594046,625456,614897,591473,632916,609056,607154,575267,634937,628376,587071,580628,577490,609175,580989,645256,59049,639256,630541,661863,652684,568035,657844,603466,606903,646011,654206,646278,584365,615764,624942,593290,584365,588961,607823,629282,603894,654411,573854,655172,640729,660891,570574,628376,620136,660491,617051,660070,659946,567753,584083,650817,600367,638750,650254,20511149,581406,655828,607777,616307,640035,569480,572812,663413,660479,648022,656034,648473,615133,635782,644398,619932,595421,661313,567308,648267,79235168,659146,649396,664953,644851,568466,663201,576606,657411,611333,52521875,658119,598406,620336,646009,621567,573809,597103,622413,663016,616808,614285,624749,627984,590359,656565,645687,655120,573447,646776,603441,585201,631752,634409,579294,573185,651661,620828,578141,655495,573494,621109,603954,652423,579049,651716,640322,614801,595100,641465,629773,612228,590503,570970,617832,659265,648634,593060,632686,613657,585539,567320,572146,593377,598929,576574,653708,585512,596842,599881,663728,645309,39135393,622510,663958,581416,614400,581390,622547,576774,636975,614107,652230,573040,33554432,621304,606977,590549,630144,615317,627220,583158,662250,630608,627787,588557,573227,574148,617166,637891,657485,589509,652491,616723,624460,663289,635505,617983,602861,645223,611922,632803,571756,592654,619908,631597,630350,600633,662463,619903,248832,579372,634580,640324,573593,572765,573200,567885,569014,643404,666408,648041,651224,622920,584221,606958,633471,621609,610646,661022,610043,643273,574053,582884,631359,567953,599295,613937,636443,662249,628585,616369,598942,656218,637313,588434,645236,619287,645089,611739,634678,584099,618726,575447,631286,638350,611587,587569,69343957,567737,653795,652225,591024,659263,655008,1419857,624349,579764,635450,589041,647097,626692,601736,645786,663674,579990,602906,660220,585835,632377,606315,624802,585727,618634,640964,636158,619517,603091,623842,636397,649328,613667,584708,587562,572445,589049,581886,575284,588953,625399,653089,655680,588810,634203,644416,582845,589837,574609,569521,629051,588420,645084,620916,629160,614010,637526,606995,649342,661467,658173,597411,600443,664835,589389,600893,615838,629383,655070,627197,643196,623232,624728,592481,656286,589678,658040,626210,603377,577576,3125,585657,624792,579540,626733,649048,614099,603903,606299,618833,588308,599945,574779,643361,613690,621992,652874,569815,625220,588209,651955,598280,596239,606079,661505,604291,664852,618969,587787,580101,623636,588665,654538,594217,580401,609612,603167,663614,598253,592335,577620,312500000,596987,600147,656779,663881,636748,606972,598074,632039,660121,599444,648433,573396,622322,611792,660906,572349,629716,610071,642182,581262,635481,591818,657344,616700,646632,601243,600938,622606,645647,610140,2476099,618967,665583,627449,596901,653502,9765625,661497,659703,658242,664826,652488,147008443,611293,593680,628143,607872,638799,640005,597403,610018,634671,567451,625594,586038,639081,577634,581415,631870,659204,573091,636501,608917,625336,599344,632201,578222,567023,567536,604758,636936,568960,576090,639728,568930,575783,614810,595097,584240,638194,651478,612783,607575,626183,584371,599108,616495,605923,651537,567596,571385,662791,639452,581121,574397,583975,604115,574704,655737,1,571867,572482,575664,659325,642013,661053,649781,662537,609148,624443,585792,115856201,636881,658606,644004,652614,164916224,663594,597316,637154,602918,655987,634065,639118,638289,575789,602853,597982,1048576,643529,609055,648134,624118,603498,608492,641928,633126,627952,628782,609416,605260,638052,633264,633484,574572,658200,632876,624192,611250,617419,647749,588419,649480,1024,660622,609654,575524,583450,591720,603292,644507,28629151,643868,568358,641937,649786,662309,568510,621014,609956,664404,591614,569576,608836,580816,594593,611200,642116,629774,642766,620677,653786,594387,613807,603072,643991,617840,585866,665948,625774,633058,664611,625099,591819,584135,625024,609345,589731,588881,621010,625434,640992,130691232,595920,604912,571115,658060,588068,584465,585609,590061,659737,642397,623720,596569,646697,660162,599721,630567,588714,659720,602912,579106,649189,639937,631579,625305,636654,635672,665288,629798,583190,605968,594544,633344,657160,649988,628705,568556,601716,626936,580496,657698,605119,581651,5153632,666224,568561,571601,588966,592602,624941,14348907,566616,621823,657581,633759,627324,579886,645009,660519,620378,648484,7776,644317,600373,596844,568576,609261,644255,659227,594855,582619,600930,611532,656075,644570,657525,32,666509,596591,581949,640983,598040,609074,651239,590423,655703,610376,625471,574441,584890,115856201,661075,574999,619560,639785,598354,602043,605779,637966,626787,617310,571744,595437,653827,597053,587932,594690,630425,586466,662858,636362,602045,147008443,630346,602465,582978,584263,592253,666462,629595}

    Returns: 312420253

  13. 100

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

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

    {416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,520,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,1000000000,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,520,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,1000000000,416666,1000000000,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,1000000000,416666,416666,416666,1000000000,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,1000000000,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666,416666}

    Returns: 999999440

  14. 100

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

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

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

    Returns: 2400000000000

  15. 100

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

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

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

    Returns: -1

  16. 100

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

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

    {12,1681634,95286,87328,4,211,1354,15732134,5640974,1281516,11847,1400037,14771700,76427,14277,156121,1737845,99,78185372,44299011,77002,18,338,23962,629426381,36621,2371344,4,2,2710,176594766,58914,716811179,3,189672879,2176453,83921,1197630,1224568,11,10,2412,418,339031,27826,111,1307,58,1176,186762,5154363,79014996,40400890,5,309489,29370,68947,346,865757,46,12211050,5,92116,4692,688,6,1695,29195,1285377,24321452,107878,406012,1866,384,956221598,54982,432216,4,5682,30706,107371420,12,465153543,86756957,35383647,252,9,10,25757306,6730158,190094389,10555694,42342584,13146,12,8720,115640,476790,105,8290,64439689,42003541,2239234,42649065,1,3,2438,6,21056201,5,8,6688774,10594,379181,1019,10299,3,207560,144999,6673676,1,1708748,205279467,432127488,170856,308278724,119970,916586,623746,42453,919,39,569360,553837,4,955,46483434,39550246,107,2684,39356440,85907,1,200,9823,1,456,4726,122897232,83775,37443317,6,16,295550,1443065,114744425,2979686,10455252,107939679,2766,7,27959826,185,54548,819,41826371,175993,145995282,1595,66044204,1689,3110,65,833500,583187,55698261,166,9944700,43052,143,467274,222,4375,11,21346,22201,44706142,12652,249,188466246,106,53932378,2283,32115938,3038,593,127352,2546,616,94697352,357,1674252,1,30,180,37,41441,10,2817,211216,28,54038605,34481595,221,602921066,85,1313746,454943068,160108,734368,1879397,11676,2154881,194596,594595607,7745723,86300521,482669713,2292,766413043,250,37113883,920430265,73,7350200,9374,24,2503055,7,402,30692,86059,41686232,11,1,55465564,2009,482,460,12,66887,187592,16586605,38263,20817445,41043328,764379,23,5430910,9,522592726,4527649,38767106,458204225,14321,97631,4262,222,450789,39842,816,2089666,1805386,585,4820041,44,106565921,24148,16603,1063838,769713988,438,254617447,260,28,40767915,234926679,334711,50951,57752573,638532893,63637394,46,621,6,588696757,144516497,120068864,55066,180656527,1608444,6404,489463507,50,693313,25061,298073128,13572,8808,1,236763,22689556,717419252,272876023,426,31385,26684,45,1,144,1386657,212,5345,32725,11,73318330,86804,70686157,19,1301,337082,2193,2012077,1,31,27350649,422845178,113246,24497,22,702344,312,12546588,68358,3133,67844,21,717460277,6,3,1195344,102434715,8388875,6288,16855,8437048,848187,1882,101,237,163,655575,3,36250,38,448549991,497601,67,5160,16241959,11,343,842,756431154,83653,200538352,10744920,2387116,174460,162,5321984,22,39235529,361,76510556,7,242,140746,2355428,4537747,6,864,4,2122,986,117745971,1464801,497,1077884,14187,1586753,433134,43552,5,613,176557,223124863,6649915,6947496,4074,59,513377,37122180,2851,89,157,16,29821,29372396,23,37935013,12,78450,6,565,6617,14110748,1731,5158299,469,6489,1891,8,485019,8016812,103,2205,42412008,1961784,1333506,26470,22918,21464910,40443,98016,543,3,1052565,7039099,69,62342,1825,334762609,9107080,407,394953527,853,1777017,4003631,23,42,1713,5152,14979,8178,16581,1,14154,443888303,808130,33,258,116960,5664,8572034,25558,1326,34710332,41123947,315,83,1,5,2581,23361332,6,340250,24,50887763,6,10168,277474,247,198,21893076,405613316,3030,29,2,126407554}

    Returns: 7746518

  17. 100

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

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

    {9638,10907,5755,12541315,9,60275636,8669902,15593529,1,275,3110352,11,5,37,116130,215,408,1236,48,42570610,451323,3,162,993,15408248,1,827476556,41513525,14223741,28650186,809895,21661014,10525075,72,172,10,119808021,46034,157723,10463659,59061,367,1102,6,5,65,514,6345,3,95574,204,104,770627,697574,16067027,8261,37971,542687,3,3,73883,1,42,88889,55,33782499,44771,1,6,1,836,2,702,1960,9548,179253,4114,7,407,607694818,525,8184,706,140,28364,6828,5393739,131677,718,76557,16684009,5868651,58147,4078584,1113,746759671,216811158,53,46,964166,4537,670970729,105864,1457,44784814,15733,119890,59,4,75,675431,2156577,55566,35307,5826,20441,43661067,29401554,9214,30786,976,79632037,30351,273836,5,77520,128614,7297879,14253,2506831,527974,492,16974587,416631692,1697247,341675,3,23,9,1214730,97345,21,4,213,33,2,234,208328996,2228101,2,1956,1,151415031,88657,6848193,72,1622,488,5892,9,48147032,2576,4753070,19,1306,9873659,8,80477,123680211,365,109871,8714,1,137808,2729,3121043,185,1328620,890902249,249927654,20525,313311313,8093696,11661916,638171,1148,3003,5,3,4180031,90997292,227984,39,916117,1,1414041,597,55,148,1748287,444470,1,23,42,20714381,19416,76564,199,96,247,109,3,454,42437,419,221,14514131,943,59,34873,218,7277328,96,32884137,133,72511086,2086,27131886,5013,70703859,122891835,2225,19765781,124551,67347581,1,835,13122243,93666,542417,660945,100155,31805988,205357435,377,31128,923,20778935,163151,234337639,3005951,94,113,115769,158,17288,24877374,64,3,16834450,1773,21608020,8,131749,3,11,429263,7874,179296,217,1,1757306,4030,25112,48,867,413018,27559503,608641,111053,818512254,186856,125027,1275,6,358251269,226307,109846128,11951540,430,21,355,8,1,10,7316248,626,3298337,16,295428438,41300710,214630115,1,10244,109725,754586131,21157926,684194,2342559,41,823353038,302,4910560,11099957,674,41,168048,288912048,929800,765713,5,1,107756,365,21,220408,121445036,18903,38808638,300199506,240636,30906806,8553,22593890,6819524,20939,631,2208313,2,611736923,800363,1,96531,143,2856,1,2,131370928,20,91,1017,1169,2551,2,3,15183099,76914,29691,25748,280670628,225,5790997,29279,11986,151719983,3671,107552554,460818217,13505,3166,10744,3371,11057013,328025774,139,447419,393336,1635823,70134767,4076,11557444,2529548,3030254,583,39341286,53079,27,208088,5726,14495332,5235,20,9,193400353,6,24306,2,12766823,233054119,3530,19014499,389663,10437957,337727276,203,757187,27520,825407940,86,31809,368896,1,8734496,15096,5853,265,9766,1324704,125,2385,10,8694328,266,81426714,35,18941,89646,2073,5,580878397,705176,17540992,3008424,21350153,10467167,998977203,11223188,3,302,6,871289118,5,150489,1,52,84190,9,71087,671949397,1,6,43035660,11002134,323592,53743989,983870,9,988,123565793,14319888,6406,211794603,862,163,4015846,2879466,3183,1,214,1178357,2775,2877833,2868,111878,138980018,685138329,981512,72,199,25691769,789,42474216,229,55896385,1419189,822,3992,1946261,93812,9,25,1,47820135,22466317,21961664,713889,1799389,424,3062131,24771895}

    Returns: 206504799

  18. 100

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

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

    {60067,2913,81,86146,78005,907783518,26555793,365,13,1466307,99579878,2986278,3043,19,22370842,459,2,572221,6552502,5053,3,80293,4643927,174607,41606026,155984397,140537,15843349,7,9757,1,541780,347996,91400366,263351772,1254378,132057956,157988105,869361648,1601,350,1664,1268154,91859283,28,2199044,1,3443,78,220330675,2311347,10932078,3961,6276,3,42885,3309,4399647,21605,126747920,96779,6530353,5,4082,802161764,14,3567586,439244929,10201975,11,1820,204895213,1,1,759562,35,9361938,85,29,385,6781,184,9724,28,16003199,81024,6005875,481,122341,428603496,33697099,3893,107,1607173,524723,2,204359491,1,177879,1561079,14549,34994,872999,724,68,1624,19611114,1030035,17751123,1,5057,114013,35938377,7016012,23333216,51348300,336474,696,76390,6110344,3072877,54773,293761032,395,1049,136586,1084,1152360,49169198,1,4,2734311,15,11074,26,68,395,12402163,6058990,3,12187175,3292,624034,125203820,1997937,3,349,416553,174,7,13,50,404832,17194108,72505509,72,341552477,4,111,312,4860,54,13258,63474,58534,20876,88,356526,65922,97,2717,5603,480376,22940607,2407,1,333502261,60807,75556,6246,1148972,800,787822,136,25368,6046,2591812,98139075,50892938,69,5315937,30093789,86878921,49662,891525,6263,1116,6,154353206,593368,12,489,1688737,37308979,811,1505,6960965,78620,3623,36970,10057581,8423527,129,2,10,127361,16663,38407,2,400355948,2876,75424,6222297,529591467,19,16244072,16,2200326,66,99191463,8819,1287600,233666,50,1012,1,43823,131979,347684525,296596,58915,141,186110847,7,18,193332361,431076051,311120,11345680,742950534,853866166,620662178,3753689,390792831,373,8932892,86605,4760,1039,2,445450,12070,514,1308913,73448,68,1316,3376,7454,230657,1820147,239590,23854,2675,3171,4,3,4210,10,8986986,762876495,11178858,332446810,12807376,52,506525327,4368,410858566,1032,1123,1,29334027,585,136327,156,537925,839886,465485,3265,394884114,32218695,16059332,31764,541854436,3,65930093,168971655,3811,2493,350605692,1341,136648125,130344958,4822,13951,90146,7147358,1005231,354,78657,688900,42411,89496143,28,197475,46,935,904592,21878040,190,6,21782215,4015391,14389209,1,169701,67665,622663,11186934,230317,300691,407625,8954,13043534,551488788,85275328,12432,3612480,4,15,407966,32,90,651845,6912134,34662,1,6,113070,29354,608371750,190,3206,17848,4034,2187,520,5,15773595,2140,12977925,51152589,1714221,678950115,110466072,110,1,35185,10374,5,4,409079465,3796,8743265,119,35685,103092,4678800,8882,445,450994850,6577,20,116950,494492819,94918,104783469,55914233,1,997460180,1396406,1172,39974421,19,8046,1341380,39864,138439948,647994,22462,619482386,109,6601,71460,393963012,1638924,3877,204,440797300,15,159343118,17496,47,451,384545145,108,711016856,92,66293190,27,290934,469288,824,153,8,208291,3816,202913726,3337853,35,205,444587755,58247,103395744,10,246476,122474,103805874,180277450,174648,118,2454451,125682,12750601,822090565,83761311,1,2734,72,578177,662041305,378469,15745,3894,105144648,23130741,788212245,5490,156661,163966,545262767,3491257,335,4,16,16090692,14,163364926,6,138,15419,184885,3670713,187808403,1501427,16511,470453,4388,5,50674153,1890088,20938,2,28624,451677534,26218898,59299672,1012706,1719,71}

    Returns: 51711435

  19. 100

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

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

    {12855467,4215,20370,56702400,2,4778982,20867,166517,805,2280169,15062,4636,15140,569,1815,82,1471,6350,2721838,616664546,1279,172796840,15470,26,92826,6855666,4391,37432233,130,157867,84,15,735337936,33,141837,367043,400,359,73717,5414,31536010,23899,78,6,2,2510847,2621532,470632472,46991580,7,910904861,29850466,57461550,36,12543,12366,3183389,207012,165972475,1,8234347,4,1257,130447070,5909511,14,114784,11,679,36410,91,1869314,243924,4043,168996733,22560689,426,2894443,1,251,49623793,263,552,13087,148,3174879,26699,3412,2,13,173777,6,133,6140879,1824,1531803,247300,1167858,92741939,32382984,324039,1899,280485195,2529095,2102,310,32556,6231646,8,538,5,33,79698,2256081,422,10384122,15409,3504,22,3,6628,18337566,4842,615159,5006,57,1120292,14206578,31280,110,7339,55,1,776840847,3,7325,953315,37,98589431,2815,197,107710850,1717116,910545,2500,1751,48806327,1,222,92828,1560137,10419,615,1830,219,929742,33,3078,133547,1983686,357,103156,48,401203,379452548,3990164,110,6217,35,711516205,1,70058,539679,1,536,55595,610334,34,110846490,890183326,89850127,20947,27,4030,5,267591200,105191065,3209965,2384922,3935,54974942,5120158,91,2248085,404248,24028,21,18326925,3163501,6395,1364,4,413674115,2,1078,1478,50129,15,155,38206807,943540218,675943678,405989568,5666,9733948,74,788,25987,6180,3139130,114942005,28856138,746085,9645,100630,1,6511,4267150,19811,174657,411,715,8079,475821,6410939,186,287,416,11366,37772,21,1324,144491,850699,48943,7,1,356,15,69637477,473193669,7,875,30475473,4133,402259,659832,6,431,17561339,135,683046116,50,495,11881355,1529,9,414,88,57018,39,784873,5412884,8,51527,45088,261,165728423,49827810,600530439,10663485,3245849,5559,58118631,91,13765486,19,110539852,1707,11901399,1,2,1,122,439990,4807934,1420822,1019,104,386113,3097,39638,10982,534631708,975,290,309965142,8,2,1107721,1,396883818,563836,18,23,30273,22356736,496759948,260,79,1,1052497,458781,187,55722223,704361838,615665,310322750,3945,134,51,26602,69539799,742655217,20856364,1216491,188959616,291,1593544,229212121,28978,47,22540503,39073,64978,1,14,50454,1856,975009901,55738976,59,312329,5686,82238081,1,346654,460719271,167763,1022,1,11906183,31882,12440,247,4,29,1791,4797,100,276706712,4,18698,506852,2796,44757406,1,2415614,19733,238,530269183,68,60229337,2628,602,3987885,401427,83440,1162859,1793244,103872940,29316,1,31,4775,567708,3262944,3,5438723,132039052,2034250,5550,5417,1,3073927,1,5922,4,1874436,142528419,20534212,42461790,6,95779,885560450,6,79,2147,1224,70574,10398595,82721831,1517340,948947,352284841,1211772,10334,208327,772,26361,682091,800,9160492,62952,3,771053783,1,137345,706209898,36032,2434,3851,20,13235,15741208,290196319,47078,7,55501710,1,146,328,27400364,168739,332817472,3721366,5665,866419811,310505946,611854039,1174,1542590,17482,1,789100,335802704,2892147,8231,53,1008326,155922,199398674,2,743,8339756,7194,241,262671309,215258,338252,12448707,6312256,64,2501,8,331275369,126,167111427,389622,154142990,3497,42,43843,203593553,21,440103,11,907769853,25585717,5584}

    Returns: 603365232

  20. 100

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

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

    {482720,610234358,1980377,852532858,277378726,1027081,1068178,14,3,225,45,21220,4257,721881503,4546628,444403,835,132458,467390,23113962,95,3575,29,1233727,289199149,5,12873480,2073,52606,3,5243,49249,703576,767064,613236,13152,1500277,85450458,6,81,326773623,41762,10408,7409573,4445,36476,29,5553659,757314066,679850,159113709,848,1030669,27565,26,576004411,28802759,14308,538635,19007,136404,29930801,4345,190,4,4262,1414,42292033,3519229,483,33,15249,4,15,25,2,12330874,2648255,13,20604503,147,4104478,87573,96,347360674,389750,42616563,6545,140124,88373571,187,279,462297,20448,5166,5434,9127863,450999,453362027,228338,2,304664288,1594,643211,1397067,6,45344753,155049089,8510,69362818,3074,4,309277,42292,14,878,40662917,428,7401,11,8619488,14,99659,51374,10,5215265,7721,1,4962997,61733660,123915546,181341902,120,35445082,1854396,2529538,442502,3282701,1141874,20529,70086820,41,4790548,792250823,453,17,6,1,2503431,1,18258,372096182,17030,151576,4,53002,24456,11321663,14982,2280367,319,8518,4021174,323224,162038,66,98,23772279,6116171,763861,31827158,766,458162,24984613,71187803,890,11392307,124,10024414,503082,289209,29753,3510,920480,25,66,4108034,22441,52527,2343,218,658235,3480677,112,1,233737,88159843,69,29,4138594,8479,77,48397710,108,22713212,70,4291,542017445,73,2566469,23585,8807,18286,358,254661987,89540477,9,1842051,5193,9979268,7,1222,398,174557948,19102,4029,9,15345896,2152363,4055,212335590,110,205,193477,520,2258,2148,12375888,113205944,398696,66072096,76305810,641207280,24146797,88997377,711904048,139149,54,1495,3,8318910,4891,130,1,102569810,26593,16930591,14212054,6,145228,73734,195,3,1247839,81150,17408433,41,16492,634,264812625,1325153,26242,36784,560,12614,3,6236,120,23295,16,151,435672,2914,9179006,21,2954373,479353,27027841,70677,4,14108,278,1,68,2425,3554741,275737,2065696,83,108029382,5331,172219,214739,575594,32,464,5385,26140,10,1831,954294,560557,3039,7,72226,52080903,1013,758,2713,6021,43220,782268,345245,1,163535005,18476986,997481762,288846880,10061,72,25835032,58,161808182,372914574,96593,473,525166,1328,2618447,87,17106429,58612,160927895,18,20671536,10627,10982,27,332663,209461168,250867602,102,3,1982747,3635,2002410,129158,119,120062755,50,454342,30521148,443752057,466522983,281558,578,1248,15,4650,2367,137,45776,282777859,4,5082,710403568,5,1497260,117341516,18526,20549294,35771,8494655,30,58,206425,44396289,103180,4092,3290,306202769,525,6,1,27079195,25,1,113222860,9,1189338,327,3736132,145,589688599,44962,714,288078,5,1097,165855,54707,2,828846,4565,101670251,739448,3646,1,9266,5616,314,58973,1,25622,33,719,6,9131856,21,673053,327,169,3469,222,146,144701955,10112219,457162189,623,19055,113118,659,16,102861041,710470,12560532,40852206,150,66147429,13792429,136,14671,121,86,25104792,58715630,5037669,365810607,99,11842540,132896,436,3550,433653,42961936,122,2734039,11255592,18352,34,3548506,1,22532749,61,228661,827,720,374,903713,126373,196557547,1,475,346057475,341565,938213480,15723,264,957,17231,38964481,10697,73,4,98678134,1000187,267,2999,6972,756}

    Returns: 878674106

  21. 100

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

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

    {31911220,62940034,535101764,748392195,418133097,89178047,629153097,236521396,576626071,262872,2343270,531245399,24518780,249748157,66247208,46882032,7519,982138553,304858629,14326190,15731216,15977085,64059767,89179449,154289155,249138381,947464470,812536534,988185707,6654930,24054,6421467,544665895,748362076,15029471,60043660,251306602,243127956,212609546,44281697,125021558,302027613,129853219,133499479,460895877,186994991,927926897,140475743,56511299,52624,178277612,41125103,163041935,924203000,226067419,111214154,622568597,172758529,185489398,271304399,185714839,301140352,123237184,100622190,477916468,639453236,365289833,54989451,613177049,256092402,741927930,291356364,916843110,454178641,18397772,707396327,65671944,49314347,139765218,18513446,46878908,246421547,54241377,209098810,17155226,812587899,201921244,91357010,34531810,300346606,31709938,164829455,606761072,367347780,174619868,902043106,816264374,154867925,415596682,355393425,502020573,36703471,311526789,990054350,404459748,240198880,703448103,922160268,55043952,4036473,449505414,754221129,223719358,886923596,125517624,367642373,897700166,179711649,696341202,7939286,407369868,465526359,233891311,881316727,613166994,713470415,426972548,2308176,575215555,3978715,7195122,7333773,587322910,14639343,76974891,19313123,236273836,273342532,843486373,782344565,590875112,374640167,487489147,340085035,207605817,549541288,847100838,389448924,447116603,107991434,156183580,536414750,2604938,322110655,326201820,764174730,43381956,103543244,650282488,31094527,6143453,459297972,219797587,18949133,65065694,43968213,805477,35467,290614,9865301,68496196,86919744,11380756,242822553,864433361,736287721,208097278,757267500,291828522,83761409,242319285,496278185,922678892,103234659,215470235,357448818,6688775,97298774,760032071,76828931,10263244,20756988,861670025,896784008,598136673,20904996,733653994,162463570,398699005,624341291,9305523,141910395,967559533,175662604,9689961,824782595,366814176,52668318,550517882,84665302,331210882,578878855,175994035,278781782,2505067,599212879,257328045,286520050,610075179,6236997,229028728,174561147,3569113,359809558,360171260,61579631,66128424,120738728,444770,342337341,582734989,444971926,645611789,791229128,114485857,48479509,603647987,264431403,28193823,591642627,673751746,33941559,659458459,28809607,94518834,553225413,23336038,465637540,2000796,16787328,353975804,119262196,14840422,4050181,83298774,428090,154141449,246314458,25718455,148230197,418121631,6619915,604112111,437122813,147602766,87863259,903055975,680905669,24557403,169157057,195019326,119821490,893181450,740930092,25383943,124700625,11551154,357073842,59989221,250167005,148824515,58454258,59237724,256871145,41537752,516684989,99628455,262251353,53537023,183751224,24998832,793816510,404650095,589114699,442942915,29423248,17182657,35938416,4576404,755385329,1402918,840520331,47293847,176144099,154573861,572784601,238718461,15997838,51909711,461593619,172951450,87194069,434494298,121006669,10159369,795421241,797016484,3334172,14971160,119738763,452498444,428506881,235451371,355631095,256491962,13802550,832127896,142970412,630540029,171612526,48321861,640552107,780201050,262489429,211836737,3090108,3020080,200970420,649229127,768224492,98518328,34993461,398760547,349955745,2557335,184385769,199672744,27764344,973648003,121716780,33961784,220799948,409127293,133372129,135022695,195855925,10251043,5961245,3668916,126463507,35208527,9772,4926637,916149238,984444463,487487739,195761477,131276386,126463164,9971,989500165,13444167,564035111,655118601,255759983,975558552,208387,159553847,376979271,2890058,165965600,8578777,137438985,61593666,435625863,214656252,568645697,431276854,350283552,3398288,800134835,288076342,198529297,989650056,676054093,380639828,27598852,341356106,2200858,192559633,4925079,156242985,3827880,864433584,767762023,260557174,181932242,215415956,962239862,441132079,273018614,139579907,226698474,657292155,747107352,3115186,101825868,615560798,178928,395300686,968874056,942777890,3916433,50306855,297418113,115385214,8332243,145893039,936664208,15419826,41826951,789735341,68534507,571328208,3822704,633077750,246857908,284098151,541427787,94671114,166704109,79712707,54173323,40635642,67965188,66090590,608429851,740993,528710907,178059801,380754850,423331241,132996724,124582783,465366264,170726177,519620610,183568159,82472760,5592413,230943150,30898838,62866509,37759415,267358716,804030966,620345468,524123295,282200138,7735884,122758182,163456342,477415689,604774724,336703608,844354170,667394009,775588079,211640990,921637797,933993229,30528464,261579945,53581364,146656091,51933906,173618779,13606866,598003640,618091090,118548844,149299600,702633192,647049213,35112939,729808882,170505474,975046704,33920914,433074827}

    Returns: 2761254064

  22. 100

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

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

    {222736338,750166,961421064,278380325,834959802,360696446,44013332,745097823,797524388,599469474,12634884,530115196,33383596,343739119,838033938,866508020,528171437,946405366,17219019,297060866,809752202,13735001,743016167,751644519,168038306,590118223,215763383,78480551,474305439,217083802,404731973,79236822,634281116,797509177,66538952,296066211,52741137,2539038,495975838,311208392,781130026,761107471,123579719,132636193,997667018,38322680,198280947,661862767,50276677,803348080,175191689,64934290,790322706,23111826,164093643,57551681,147946264,107058246,538557386,731247172,133941814,337388073,134412294,10812311,624043126,33844944,380902199,73732013,214335600,1628954,263155606,27643110,252319227,747452,11497104,41265041,98107825,8911014,18474635,850166832,355779457,979943215,159016247,4852274,478861833,978155619,426194852,42562543,857744543,826321534,7095518,20923109,117636077,957910314,343361249,929527439,476546763,128570507,68105748,692443037,586134983,198893712,918421828,34088808,979336610,29533967,25486832,103866190,277723903,649734257,266252772,68655295,62591897,53290372,59388625,385397541,526438379,213236715,387026271,2166518,913897098,792407218,179915900,951358640,128311407,728277189,557897347,310189884,586921024,557902328,162779972,5938189,2528096,477299208,23881039,327633,262047380,62137483,258677514,310039516,174157607,361215345,43984924,848124293,63439337,98657577,33094222,130404361,226440698,464416711,247146968,585182790,54572793,864937309,15053388,298977355,351747188,12334226,282169109,37192448,24639483,375693609,58202528,74476117,272921604,822511,731480732,61643379,374389261,36402828,219157857,222425552,714907098,730168423,83168754,26408922,435024,208028968,46443635,845252461,662823996,19474924,291261999,542442266,824194951,6729760,21888612,652883304,595115236,100827868,152518013,286594927,358338416,477474203,104195972,31735201,201799812,49864581,754143332,65185170,1972021,5480259,452682307,61374047,174972518,18254110,968404691,66331818,282293313,487687790,708962839,424840900,14805951,473231671,38635633,39161876,4419744,21832110,205134386,917149873,252412930,1678764,102139568,476048667,71471901,30411900,11440164,165402429,740554284,544353406,56453613,147817516,102861209,27633679,129881712,120548888,160833040,260761824,533208775,313266729,384596559,297916621,331263929,12971993,873503345,6023529,254268028,2228165,27126143,701434717,29970429,75443,201243728,647714774,27926181,747362218,14732123,366540994,542360193,937994763,381155456,571366637,800291205,302552786,337488257,745965608,324813453,533741527,607323890,1670703,775230346,960303862,429739063,121937999,177254317,859981069,942203592,391665844,537104179,314291833,199900770,508410032,848026936,752099155,340698418,213846391,726013458,109243762,940884895,229643951,386944470,761621673,21859274,370039280,614385836,352836526,623205870,10884804,754330047,231220897,3406635,459358261,928557154,714832307,8680727,103825544,42153019,117647822,730076648,616667126,63190801,820636687,218960409,864347917,553559917,669818651,243015771,29575673,439362779,154515348,269551510,97671994,26239205,34059349,857989073,231157895,677875309,27069970,749249863,259236333,54323029,954742927,230042325,668590124,512406065,253246223,264203223,303935932,44318758,36323521,486601507,229312450,512872557,27233205,205165019,325083453,60292077,106737,349146736,713806720,10054540,452830022,4640,269548444,647428417,74845540,260474551,642373157,832306809,209685062,30307164,765170877,63480970,3800537,989029334,685490995,108334723,231144243,148221589,118806814,357027688,622583244,402888602,2882822,117488926,966874115,826297727,21655134,92282735,889077106,95762710,375480898,438563244,101262319,11879946,969770240,643813444,39971468,629289102,107310860,98171497,507939908,178693345,231327647,177999029,201311328,56814662,262772189,868438131,246721687,614716809,219380995,150010168,878085763,631335980,119770110,8550104,331304833,304408005,2710660,48188978,428300884,333890127,297719570,839741538,158197698,116075607,10977535,687220272,156171277,566329671,746582945,314358437,198655767,55208807,68182580,76541219,303337466,175354700,7424965,405191889,35896128,732066453,2699587,410256983,312736784,789923852,17672185,475182217,752732945,127493355,197338329,312703438,822307,110398469,21664882,2880121,136805359,322058999,610680129,533077318,831194686,208929693,50617985,288059715,264236189,297122515,988251708,20927347,502834287,869654706,421889607,875781902,47040183,205787610,1921484,25947531,833720914,234569190,244446804,113673,98768034,131522854,569199922,613349846,158269312,2583376,82901675,566103356,855033188,26825717,683957029,990491293,677419488,623478465,915281670,388049568,286087802,13409014,737215641,336475062,379250907,746160346,148279,58802285,587514450,561070740,51960035,620111166,144848599}

    Returns: 986797783

  23. 100

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

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

    {18033,32108894,78936654,997417331,442788437,1235020,30952699,68085565,70298918,11306966,615841721,160576180,116673975,586622790,20356875,53639224,359176457,9334917,23440223,164422409,28104583,1090712,801808456,180618404,437126218,238766226,738866762,187000632,1297957,640572870,75626965,107637545,122355952,416640782,81986043,323952570,61799490,1760827,3145462,323330377,37228444,765907613,239411057,86568772,199501980,297633502,101930408,14398532,6713708,241365182,218263982,520980552,38570849,413128105,361370349,9996385,121075905,1616250,22668707,508125922,37732898,407029695,103205999,29624549,238791760,41464340,814553,289013478,18346888,832365318,686624035,807322776,297126918,27722132,308203575,13209,115665,56433693,51501271,36481957,677945511,380123517,369614782,157615580,634642139,694331329,442993976,365881081,837607341,714679468,77893345,196163992,331559979,12618024,66790814,127866,819080882,62900495,1194574,125622319,51548614,474131151,266805654,50603935,68831896,503060751,61516820,621197746,596606168,67069128,674788343,811820079,615326497,132238393,313594662,915761169,112445568,708051746,6516503,314250553,195036375,687420936,134637920,196698001,900856856,622523449,527305193,442257424,868051662,792088365,470344932,851411289,314758856,403994904,80519741,20578034,796572447,551045809,287089707,434585871,817948011,133710001,2077507,8026731,411662694,762960401,413629968,41239579,357464427,44962959,932396727,117570009,480086759,918188569,125780560,233408165,392079143,168990234,263325021,689853,63558894,68305418,47996591,571839849,31007346,994467392,859119587,175602215,537896244,69288812,161010165,470186765,293570829,79732769,144739208,25230147,94235488,776099901,143620062,574470071,151562029,715835095,616434326,869313870,317734691,29933538,845873778,51371646,261840497,675453952,407587541,271969862,19734704,951814665,11514241,457250250,75106522,447045716,24918084,612209232,526158465,356726361,423610650,160848500,170842324,856207210,556834,71234973,102468068,474996717,674286949,86008475,186649764,238171828,1960507,694349717,634191383,13477895,242084632,371938172,838011587,337665080,513779618,591405505,698875941,120364925,766941127,471521227,416111011,9268716,193597532,846476461,408698553,133014331,6076,756353655,640208013,559876552,789548910,182491389,303826962,113322573,19041,466071252,497666349,534685589,64153203,973631758,716390402,372326396,177134480,251802215,662573882,590484010,523813312,587450244,77851109,967113723,546116486,45507634,52153,10813777,408118763,281121658,91449824,27709456,912141348,40548988,216184175,41300711,24795272,3567,382126113,30741293,345234852,523234960,855520577,882169391,128689841,151795034,504193238,919457599,145821523,539032688,729118273,189253340,928467175,359140252,2704181,171417610,4569186,171076811,763918449,51186609,15678475,118229963,783320153,739819067,816177930,560740662,417580772,203843049,19526710,567931469,1611443,754471045,394487096,288712515,88425749,11926762,400006264,55646467,36625788,795119808,449526035,579592730,4429779,913895852,83584388,3736620,838204978,464651893,4005564,990632033,356333695,15919899,59525266,62149562,707293675,900521406,1423226,13329516,6961014,463312784,597461857,431370637,86708781,50901884,59626199,630420973,2943285,652036121,706096629,747318531,300536662,1079315,55463776,914560433,50255763,684050555,4184305,23163428,59889550,387903875,165223001,333793271,10831546,20538412,230732434,449425983,254342394,12430958,318384778,816882409,25770193,314710596,251649818,683987716,26906958,570292790,70082698,157452262,174532311,769389890,561280002,107519901,709407964,119651308,599412372,357489851,222964113,168877723,374705177,78670209,308355606,140484439,401228655,4085534,215149508,158051335,509911838,351327,48376725,616968,760222977,319868362,315977985,583256249,402522625,183687573,4209824,37696,566078571,409315338,601808028,205557558,83233400,96886967,277269921,57065081,55326091,3645933,611206343,26305,400360260,723073867,911984473,690424476,130640800,256212346,31169743,589718820,300054076,601442832,42360258,301579799,96371229,138653459,87417428,78016604,882856743,969908380,180265025,774581205,105261283,655838920,182330056,316094798,23236526,816958908,149696413,308136422,49925487,650448713,163369793,569596711,45025716,165461637,844841044,82296633,233358992,312508163,124193229,812722058,123195174,707063744,211602265,30642776,652976899,664433331,363730021,34202165,191032100,740155662,170389634,390900001,966104362,950,28653239,317185594,775250910,341068148,886247043,270099114,710784014,59727896,29912918,6953,804890220,57008151,20885469,537060612,412912231,137580834,291758824,306875829,723109880,275068684,556017118,224676741,607757993,435851360,554655089,540167217,115591295,605853744,5897808,58556239,5681672,11657861}

    Returns: 697904676

  24. 100

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

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

    {337505900,888414182,310212979,633458591,758783190,17923110,10359923,47683821,680512414,500777851,217621486,779236710,310955047,16947643,31055496,613608559,125427077,771670819,276666421,258721288,122759375,474774927,576464228,195985462,172420130,54838672,841847877,85231784,5934781,746358177,293007660,682400105,136685741,269890817,49356456,813544805,3705235,895934054,60155111,394572978,3064009,6378011,471726387,195138708,673793120,736506200,927717233,883989106,52740132,4411966,33824261,240680949,79325575,74312103,60314813,264701463,19334605,381416656,436546,161929438,129390175,48874706,390888530,74025943,107284776,399461706,257107877,238455364,42849155,448419932,49209144,208226491,807688066,155300769,67606552,3168452,286156977,485228816,455783667,203138916,610622712,2895117,10797958,404916647,542371584,5885938,86119554,165323445,791946958,125440537,21234755,197057448,693326998,156508632,322240548,68349661,621361434,554151529,18228574,43924915,494892139,624624119,980512,54206914,34606997,561493287,193009003,348016936,296126333,242467086,917645952,2353330,945983425,114072219,299164322,21264582,953069666,328909314,13629770,659401360,127204738,312864676,648873611,119775352,600532728,38207416,257564621,640057192,448960,8602285,35086057,204162737,19770722,14951298,69246941,1939653,617268555,574412016,76399840,98544445,604494046,440998018,481049317,671224943,115536676,533602173,766785291,765544752,334627993,13869216,35683307,740163961,172127416,1380288,325706178,66684,723816325,40121982,255441992,946120153,378628826,285545021,235537435,4979363,260420690,7356913,353388694,19921262,78553988,862455239,29688103,9834794,353551992,343352018,14310545,412434898,856193128,955823979,11389038,165992015,71530336,106249013,299559179,97744254,468166122,103827965,448925071,536413545,142079863,997543695,265091926,312921217,182524869,182464236,49908615,383852111,69553862,498618554,822153108,778786061,380804595,7905578,41881072,5730817,92822616,253627591,317438088,123858951,573225207,147581606,913419459,490364219,856460739,300061373,478360362,4147642,508410649,1590299,355325160,362140735,195995072,347910140,281760076,733537097,41890733,320751391,89654813,93099497,6174451,739111983,347270625,821317072,95439204,875952338,114215187,221891121,895286020,720549919,244893242,7841611,104532015,675333,787543068,697237948,410379743,220849205,1096155,874978417,378383367,13573278,53272533,153185731,7900727,540264565,1785972,726744739,508696327,955949033,931337065,17482234,50674937,160358600,738227077,104422397,16161568,33828709,922198992,292758632,871319893,873728975,368417967,24430065,713796319,534665051,11086685,155684374,110618267,417408916,95797422,4428510,120925834,79746210,106333925,635118922,803780284,716787800,694909087,558684621,115523774,188117283,83201292,547841,482582085,500237,503497031,255368037,109644255,201336531,386711460,9067940,629591407,65448210,9163052,847029453,619994207,585646031,221779971,293485979,92029543,111685729,59678,806502666,925460011,667436424,36081224,432241035,172675071,285937897,172076193,323731754,107408130,512881982,238636873,937190065,891514494,785500628,6689409,690310543,22107815,861774168,598454882,309214119,26954910,596885478,94412778,591497440,559216923,695000852,6116958,196353878,890126,222231683,845893,1201487,328255074,42820668,17082754,703823884,411707219,255915755,570498301,3435097,655047,863990612,5006976,34278084,482074873,890521133,388017656,7979,578225376,112380403,348549719,255564631,32908884,32980292,25591763,973622953,42007542,207112313,630189850,632332526,1219918,52193074,973706540,747401221,74613234,410332124,5505398,457656884,214300077,136204351,91177072,45502640,306739442,21567069,67779251,84812500,683975951,861286654,24539231,252049820,50608505,5398064,31106218,992214152,450046716,958914637,433623119,444759069,979423643,544157220,79844428,392940333,732203701,114291723,903965284,443979479,3251104,53054782,214325320,227574109,2122861,492470634,634152515,86142866,91608963,23860459,993691674,759213937,421631770,102369732,224892619,10621954,11266203,644006908,496666847,328590444,84291883,233377460,96625695,311832587,14507234,465694347,172022198,917696628,22410526,10170558,980585790,20443390,53491422,675280496,97727019,537414464,741935782,57287534,45498214,305543,24304734,673974571,666992989,426488286,475361895,655614942,771249268,389108689,201953677,104762367,331559699,448269464,86245513,116643494,161141922,305019923,168399600,18785179,39522151,60975215,725195189,873061463,303627450,107881026,152345567,10868761,34582185,163147167,976994992,104945389,678752607,390546470,19520644,120932622,885215085,20754651,176326708,118206198,107529311,21362139,429474043,707536325,20425535,329598081,731637501,8445372,510387942,19274755,394715902,511484604,6114190,56467305}

    Returns: 2753538372

  25. 100

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

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

    {570981489,265707534,180776301,602503006,369714036,84913305,255579093,685652007,6471056,428816135,264314541,192102437,66168395,80443895,392561645,685714834,245985630,66313030,19206971,399592222,21118343,217963457,665315600,669370077,595764081,248604644,458909260,317323323,567483970,494212557,658536764,1119966,54517064,82801584,584543296,1729154,126227690,86856,151300634,163886975,957094603,120692135,379126362,21407465,946009756,32376132,401051317,653939,39927147,227834266,184719177,110862043,88424017,64916846,516187,75285231,254656080,738495609,334493844,134805877,278676715,395568175,70865864,129628321,293074276,890169737,35364135,229225429,505806822,15452678,400668885,832473441,850094175,464465994,81241,10885551,557989011,911369838,156712139,900365,175309185,272881227,86895010,658755751,3928704,174296211,460399087,995273378,400757731,143592327,531825156,271160149,453822619,300070311,635251547,237931586,389972259,504605340,532592484,995334237,491092698,102043934,225900205,480879600,970996052,608107950,4237364,449415624,952911574,297850439,111479926,236784,644798623,689321954,209099115,13105133,880086496,14115454,31651409,408181908,170482103,29218224,403107224,624830199,533734995,416421281,2501707,60390940,785199884,583460013,47132039,253296116,562115712,293098850,39613172,218915256,621705979,137686985,42263369,5716668,425286838,52776193,283594481,164026225,222355352,294284108,573830125,281517485,209687691,106465120,82129411,166552933,229435303,113570851,162431210,864080814,804584733,24837316,512446490,649082923,380428765,586553663,25870409,14180867,1035473,687422601,586698933,45174490,1334557,3107373,228654273,28377696,255405171,361229613,322454626,33776890,354976682,7134,102488150,258438626,868159664,704269085,3872133,64516254,494479436,177289171,654318745,745197928,180518978,559946313,139922882,309942116,495839657,626792744,113230498,284285262,374334378,405188840,122694,156681906,95373566,25176489,14312527,20758013,834838100,95439424,182777794,559301012,52607743,92368475,208771520,781621584,442776277,331958785,73817335,906789845,562171915,698257105,329398987,486540441,557677254,173052098,205476643,143579936,6415785,861192302,536459836,71902641,691870906,225923013,266633762,36720257,406593,23249972,998661980,40347860,260006469,31909103,336464,738785359,875323704,80663535,318275784,3238488,474695441,518972901,442869639,161097733,190100445,128817246,328377472,349527115,212336653,386570320,145550703,902696439,171820620,33320754,11166047,523570799,882695214,92300001,878103804,21766904,212668223,151846125,1787065,1576998,65384920,313799928,693833167,4980814,519205093,16596856,230365040,225040733,633020340,76355942,9229401,162703697,148754607,383877954,737595222,582472258,569827955,657723912,152355938,80737680,328450213,189663168,182867051,23450221,206292787,4638112,897223679,699519672,203345745,536626069,470686594,87386822,129279624,199978802,3887350,65236722,267025964,346152794,443546070,544124956,18722687,19294294,99331143,19309243,744201421,778181769,146414232,491692642,376122156,182398,746687590,838943048,82625266,809317672,1894972,46049773,33635555,371992923,95051609,54871867,588035079,89780304,12888199,66726205,838262451,457253519,426664172,7394518,83768692,172207033,27678502,764135681,219189918,38581478,473476192,607596561,262799847,852400754,200112868,3299579,334659561,701745702,654061095,665587016,669150139,727530741,937345,30732516,447423620,23046409,824754259,574715406,415938285,276559957,175345577,221510169,257125199,8678786,728133507,442625622,4885388,2866371,1803827,140412959,586183141,41765415,83376624,1850480,525904649,743208650,975658591,77769989,446196606,69959705,778974634,15232560,40083910,14489402,421084694,318977005,94162028,28491349,133697828,825464536,54424697,560721198,86474705,476004442,100359071,77703937,491710,59579943,480642490,599016376,26286165,700011335,311681126,868907434,708699449,6122037,792104233,80146265,702497262,863394531,38250210,34246293,2003403,39088585,998881622,621487817,388874485,127264062,478163266,491860785,311722585,448304417,76322512,82099278,1297645,78199943,368048900,9326819,979533203,700548762,224564556,220117024,6252510,721245527,18512306,111726075,237359139,26044395,795953901,60046413,240361248,666963002,868559838,176399561,334408529,859438189,21756691,777916097,628764504,9189906,607030778,685078353,211823231,244595488,11017965,125000567,395514322,234860556,53110264,121955038,68273952,927937096,1195482,777230340,37659789,52710480,173504314,50089019,39535286,157999674,174977451,403986716,40356848,536631328,5303584,1416715,199280982,633016211,11382812,663420066,109249999,544736439,683189219,438114894,217181198,343348,172971498,392871889,527207124,26820318,19432912,494966953,2011666,147355288,2430422,602903068,744149215,99670150}

    Returns: 236199617

  26. 100

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

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

    {633268004,478150767,174751708,513991014,719204365,760719525,933561988,884361355,156269541,678931180,777844510,738504576,803783205,733469749,21302123,313090973,375007126,173806289,159637837,855261012,776920870,716959897,244707354,703204237,348183398,81992765,120536613,936334715,965361597,63424931,598499213,988260058,823273852,954380989,474281109,743412358,511168536,664777581,443392673,757775828,409554849,636548697,252818806,777560512,64520527,279560026,17835811,964824049,513330085,714281746,461555891,135634094,611810197,317754345,341383495,7335366,955187654,211526001,671921435,284077818,738286924,546787187,94732228,271086730,782507572,861073649,54831675,960794245,285109479,558952382,505821375,327158227,986019851,596227050,470639196,947784848,371196337,677530011,226420042,906238185,831108651,811515935,440363476,692334300,20450458,807992742,598138376,702998269,651055952,220429452,898503695,90336037,280075393,613690805,608616457,746311790,364919159,867341274,894468673,242243193,720443794,795130933,45849479,133021884,80032439,774819545,308402565,902630776,141542539,305060496,710934080,747319704,220250662,402773275,124232926,761415914,14716143,267251582,929515514,11517315,288987975,139667067,946283917,517326447,515508290,579368709,567281848,264356470,194325466,938797454,57463387,674863051,844721058,47082855,677434683,965103430,90845313,840379891,37317778,538637151,175591594,620267321,644308210,397650686,166347782,179818915,880583356,832034388,482135538,855355371,683094096,467203207,654942285,285240992,820929669,448567244,222952319,847616014,651830671,807956812,385257043,608672789,470392175,712415656,646517874,320307285,752914456,411440728,133750083,204889136,32324219,471099007,117240456,506409300,666692814,952133525,585416600,580571368,85244029,291411137,823487012,812135413,950178518,518238476,515729837,796377250,837867238,686025758,367963483,607778297,892384635,658212507,323721476,266110230,548043131,881236100,468822604,939030092,663630056,904858144,75196647,131830689,459973063,79178196,117209545,278048967,470799126,421578485,898159703,941527638,139165191,292859,901152175,962909392,755513399,956974832,181636752,697247495,773887702,136038306,31417254,639008480,781559764,868880606,761979379,423472517,764691252,584418541,11137707,911975112,180621381,676223183,434814368,574373577,553172016,821794533,151383264,139198932,792715122,926540433,837233428,620164462,600716661,119895863,125324303,924393474,978276051,291632044,666699980,382394693,770981960,839988773,705342045,784277010,893354274,117194403,401032842,414621121,67216801,953892311,706302486,186937774,378340157,297210162,477334742,823047487,148806856,641740597,755416729,478304646,202205154,765737078,222405283,111689982,362433550,590581633,433807320,437402445,821902859,272776694,134709359,48962477,540342925,250836256,408669174,44469121,368439060,762282401,644239270,440673331,545970420,158125290,452901595,892285330,541727410,254946148,764945108,901476878,733148370,684437083,507571286,270755913,89175275,523912404,335786716,166245034,264795177,44138204,303903087,641891027,87665875,617989990,900742251,743554692,679679283,454376514,357277491,270557527,440233793,133926727,627740612,886753183,574333944,391091139,493502696,232854894,180724135,785168995,9376027,489624893,616078868,570362359,180427317,245074209,428615044,757026025,204619203,684927168,691997544,624351469,706489398,848133064,356729037,227459359,845663823,432940583,901859761,230053142,223410149,117323093,896656403,169261597,514611593,134109844,288406057,172092246,472798454,258013271,952318799,237729932,514613751,574393656,838096905,784788506,674976199,621458450,306909883,617772919,643174260,243633721,913387606,971899820,103372170,68725964,161088560,456915333,637092269,908660851,872270014,429304936,255432912,635243069,73690622,339321048,72546904,478395397,697378760,128529784,972101542,500803638,825655126,219960296,997567358,842789275,103478914,162100293,32439957,807059943,223591684,198535810,771329969,424814010,484693160,187474323,87237254,641409184,964142913,516711275,156162304,600466228,758873284,647512608,297004333,525309435,439205941,706137618,752589037,400634101,232428547,869436402,168641215,855290514,574449001,406372564,423459447,855144578,359404901,173873403,748135000,38580320,807263258,282370778,609442057,842517808,516481999,318782227,939644257,660460070,32829279,128223811,878247139,157062960,402528118,193935703,658327214,306294757,479605959,385840735,443277458,304815147,230757452,617719459,546773335,678059398,72821347,368531533,670376792,170585915,137836348,19852328,29322728,244532409,623685279,927220988,908325245,368899726,535677572,616714293,243507854,236267085,953015926,254792924,573758860,791417993,833112486,918414487,114997708,42937561,266775365,67475455,960846838,45298864,134492631,49169101,49891530,929600767,415112430,387643044,586544181,935763810,702032273,758137867,326461376,978734340,769372372,928781419,753472540,550609703,951492698,689982105}

    Returns: 3629386452

  27. 100

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

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

    {761193692,516721818,646296620,534752672,289068038,525279812,209823380,236028000,454247772,727760957,263384890,758978329,139691025,879106130,898385384,730603325,738988034,248970722,222905753,928151223,817988989,759517425,115624810,673927647,473769609,945473510,462941944,82926117,936201539,725602445,684045656,533897716,917474403,321341327,210898983,958502424,453692378,263658664,21429240,408968697,509882356,672808526,536761396,713637617,297156533,662239183,977958715,237960043,236666640,919375510,143842315,912893061,82159624,240988407,921940667,305170014,296032713,829321968,939191964,866481928,642748519,199131751,394952599,54596750,254782589,621491740,563997833,213027212,255277102,495016873,732001319,365862495,222135588,772430217,921221046,45770589,575047146,387368613,103928337,130158086,84592852,56825515,684523455,644627000,781654612,26924607,91692202,807031861,538265988,868326439,507644452,530193466,176327887,821068003,308702604,783068818,824921868,824705051,466214265,698164455,708227104,163468171,54440530,492869776,228434838,290380345,560192622,884698045,723020805,716166303,632468133,854820092,842879880,948454648,545849477,239843170,796559035,680702994,973962479,877133267,250829462,831915982,863989627,556361438,439180433,64766888,766274458,638247982,266987137,157167334,986949738,15569623,981280532,542956698,129389039,218151422,244813242,709159184,198862300,994104106,167913976,488841065,834969422,970977957,294553283,967912526,246223717,415814268,565102804,426622303,513647114,388270597,499648169,635006652,238537451,528166980,651456619,836664695,571688534,892029193,576928930,606058230,300489299,447489913,340362768,920898400,504162675,403683465,273382041,909303972,374572616,112828721,898311726,126701226,987489865,844366185,86634862,387177669,127750933,224607204,503814557,571176289,471145204,951803851,603275504,820575081,486997838,621507132,813320807,779958008,545536652,720034806,891475984,630831476,338463071,460331681,317255972,703974051,546484556,53735620,28307070,977167397,523650483,364978577,379736401,508799885,428343968,665443374,317347338,348542531,187616069,670291950,293672124,97088864,706617957,335037788,282982442,636943737,98321601,480395477,300665441,386438327,35696755,137287276,821266440,106815456,59909482,211382348,73113602,195963128,700678451,728824905,926442498,473452236,388275654,811009409,266863356,283526564,3171446,472074614,665710471,614343852,829128172,537011877,83262746,16337355,978821880,852399990,596947479,563078252,455693078,458116928,577118959,730839386,702602685,570821190,997747796,772212959,596051780,295573451,896136614,385040505,341657070,432180999,286272777,98766594,439044577,321932314,136689631,84140052,410159775,575925839,754086937,751839998,817125870,309661475,160919044,777981565,983083562,997534246,17468373,251899026,925639158,902795616,463227044,864810028,986655164,836135655,976136849,221434560,733901459,577173407,782805730,359815402,59020822,461747322,148501108,538526584,512217377,788133609,514332690,606906982,952416444,518215484,585537349,930341135,45156024,146665988,619355124,709689373,588027504,772153275,23197351,530112794,808174074,748281858,559197607,849566140,785240075,583589123,989513375,262508887,895409280,5628121,770528962,793587960,923308149,751713096,50422244,348970281,778598104,221579727,182642275,75639265,543782169,931999851,448657911,337692934,111006232,517274399,785394950,143510901,322222193,691501754,818270584,243597625,181036858,104430962,619620530,769093469,976064578,402757301,974036684,232339174,348436189,282719642,187535519,676244133,549042536,519393979,391801061,694674316,207845542,596251797,232525235,423229350,315768133,883690424,95299571,816985879,767085700,774831158,505494391,864580876,72720899,248148506,819842130,577351377,722942785,812843753,46598620,740432833,662599021,644235844,44947690,96558875,921717618,326681715,399283195,312482923,551093376,822179485,436042406,673983769,859787378,953863658,813122073,724940952,314144439,848769653,501145289,955670706,545138167,412292447,373365303,49252609,68999069,167696332,253029575,639007326,435091612,948495505,934792510,868958026,743776235,844448407,113902359,629706656,524679499,423647653,976247353,760222661,544556217,605651710,115207452,70572619,720704104,20473818,455159601,712893746,420735977,495594338,831660183,822388163,650401939,169804550,741828779,225589252,919882854,216884667,843065847,375985556,911907177,910628160,219716766,467235749,194710568,256626375,434648645,893401000,203227608,564516963,918020425,885093223,427655993,421629299,792096421,78913033,169603225,805901530,410998144,118874492,525909362,820065183,828111142,876863388,781282764,66517792,411096714,601819446,192519377,678199365,623760201,171572727,647519848,967842508,169771228,841338473,550325757,406443465,323488172,395689739,395683247,829259727,722815181,427172762,534898673,612763176,903629369,123983441,623850235,48591039,931611218,755975865,472185534,720947165,610969729,919714568,350231704,493714570}

    Returns: 1609142694

  28. 100

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

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

    {23155161,799416903,939341065,257742158,253526656,481409805,317366836,35449215,852681341,890352313,744027858,591641473,366718449,198628360,830000605,764695163,773468829,380702512,55677940,186487626,941459433,313949892,88409455,411164903,70762235,392748623,476248314,360823891,831060832,385582023,900483522,775452156,601264952,264962881,213063589,399719589,456753187,719657901,964288109,908452861,323739252,779418401,679280410,260146973,902860993,863615964,277145599,266955778,233488674,305508822,649076709,64095164,290808384,854421869,78466532,606439571,680594685,526595414,84880268,511862829,596123733,531174303,467739813,421546278,838640949,693279573,761877489,697747829,740764166,240135943,984906794,724881329,885262907,995919700,723421525,23966816,503275482,957687872,451403898,113686077,206546792,828435752,61024007,241073137,346209928,182853887,651473687,221895183,725823074,557024926,180117363,578173953,597364485,611027407,192560629,151108973,264269002,196167703,73419893,133624403,530824151,390342749,195469821,789702211,137536268,345434865,164883787,260658281,903758511,222273347,21094590,467426620,816788962,523424065,136181726,407455582,927850079,321965806,492090116,372249209,986005109,173933996,213293414,959854935,902200128,433049639,301408575,461530317,211774804,205731211,361945961,960152388,741357090,177287641,613686717,888745263,544178145,793577787,67155502,657805238,783188636,50177642,241125258,989949637,511942421,49363814,457117728,136987261,863241390,510979132,527503324,584579318,710418892,905903844,755196425,355860616,263424757,103747964,108311942,913574793,394991711,875902068,543291570,722661696,754764843,807876999,681661267,588814807,275492175,799254277,289454073,153640789,563035817,242886576,608254291,373922219,284426402,393955690,614164411,8873876,62908014,984867882,936405748,273992243,30627274,138908737,894325475,888071835,885243849,611277715,922708071,866460008,403969917,365533455,63474275,377555191,687181505,453307534,395329963,862607661,848998575,960597067,491530513,270223171,331343762,54443523,293356111,506760898,309089537,688094220,82793718,23157814,748343004,598315480,234836081,341911402,944690242,932647579,86383966,928901595,825081366,521980179,380691560,936896206,245963242,303072998,662609153,957293791,595343335,322041294,116654632,397626825,245926268,22804200,251843053,583796120,886429385,820727288,560926754,177663682,484076983,355661458,726286823,610573839,358153416,334950246,50870696,92002718,914783767,328446958,506815135,549854968,956033235,37158019,464533995,835930521,755955713,277988177,997913004,582269146,131115647,475259805,403702958,877863393,12272806,681689051,580986573,988707412,661521854,278963895,228922997,275611210,6509285,444418475,788495589,241111372,688426952,415788437,867037596,88758238,546186772,162763226,878270633,937020095,393106490,922755766,857106308,440827693,339037903,510243408,946367578,428750892,230908277,961011306,721614086,176387132,198095355,544754744,628460770,305281053,637534357,68729259,532621568,880275219,398583203,7215264,692371325,900325865,521105440,340770585,403153262,470702931,252877083,289662480,535730697,140230012,836843276,461461299,75348179,49669316,223899971,164481530,267140151,255142681,258483313,498034124,202055129,88206982,997051213,388645246,212688867,775665379,39528077,942872273,642068280,424609449,924687467,914652583,801991086,894452274,945335262,313033032,461210192,22008332,56977881,988644180,70573684,418530672,480327392,278558754,251711226,639711672,779808916,107682790,191443320,687279706,615805702,2022942,32372302,575693928,313927687,87265293,174717363,536903687,106265968,667266801,514380750,255677722,481207824,307735060,772369734,555796423,666451691,2890724,72002690,473373897,904340973,932272291,904752888,554579148,537210907,586801870,648470137,586802088,13259153,307245117,532638511,414055888,773853954,26781235,667370039,283507612,329444194,327597355,958610369,379810424,955645949,827176066,584276861,910222799,685616263,619549838,455644408,299542027,14674427,807480651,670155029,446135263,134667530,798642069,417547032,189872524,553596225,646663053,870386762,813651616,55863872,727976277,928244207,813545464,857638121,713096274,960987377,835144543,10870975,84807957,9321725,573417219,979410785,833290362,431444528,598044518,922755461,998921562,336299042,419111807,551509553,962920376,947310955,664707768,562561058,667469379,565918639,391387811,899356209,379044189,328443442,125060922,645932982,948932857,455677049,866481248,786901641,765208693,278849792,87122345,649710608,79138130,353255486,797919714,648964405,306345718,185498716,321531394,866157590,691462057,522151376,873920646,379070758,92723554,516891237,874605300,217393548,362913081,614475274,822964607,753318912,707548347,187806693,771474004,754169666,465660842,366954750,316135718,691244427,45154025,223044523,539910119,259942483,629038278,369965202,469214980,739474854,236091000,812168737,814982083,824072271,909975174,641184319,585226145}

    Returns: 2518751433

  29. 100

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

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

    {118800040,564372769,382823170,286346116,369145242,668246104,463894887,780138197,594639157,465362637,543267733,137196000,286585238,732096502,121642829,941545344,995551019,899254712,167631170,324650018,618310176,142298462,913731294,469814987,726682746,913659770,294968652,671354567,162474065,134219821,628783200,852653073,639050707,876104197,770911175,709180413,809313900,493058066,584495307,841844595,129769705,871740164,666220258,692476067,377898803,600035900,746609161,995645506,255991181,737454798,899441577,702332479,496201682,458730633,381552396,37357070,9965302,309051531,822847848,182855620,685554803,801833999,394979882,643660660,332476854,73062904,283440923,993402324,469526873,281938819,613846071,137435184,397883358,965809187,268487991,803727004,528938592,602293997,350074063,101275649,491191203,61761054,249753839,502679089,673862113,412181120,974304540,215686212,139041585,94794928,5805213,432699057,483837803,651713570,391502859,792459388,111881855,147552257,239872744,774346565,365325328,660802163,160802608,643588142,259254447,366172925,43025597,854202712,943795386,869620492,693498207,330728467,359922757,83296976,57775138,622420961,494464726,27593,73195599,998393843,219761975,879671727,855927390,821479828,410730073,777967213,772959328,367926747,103507290,858870164,500534411,329138994,466748288,479859200,19183165,421421205,552992089,932168894,427000591,697062098,214046571,811774161,507541269,512682261,23066245,408243738,813115745,184723268,953089666,862579339,194357066,678723762,338379830,436228140,338423491,554185127,909944649,786640188,740602477,501081755,545026475,374450307,459386031,321789654,292974411,824720778,269667895,442851358,338870741,493953147,370046116,502120401,956239492,135545308,860018725,725499720,114353649,851147645,975131716,974068966,925707053,393868603,901923260,687742588,676266022,518348551,931535069,412708482,547365451,562316091,142459291,804590371,93489617,356963023,134252956,281441379,504405970,792352625,984618564,708001983,474314300,72632671,9484424,778004334,334074959,844411462,811771416,425107717,208491936,134776100,105047647,614687375,32252934,270014505,373518338,832502421,544726128,261601229,712642118,689834946,200420768,836911583,251868319,394937215,891089377,930493073,441421381,51768154,124995490,915067558,784251699,812858913,908515900,532905466,974658256,704298073,959030667,389097013,124298939,710141719,767540597,172228539,504649247,769174763,734259505,812918197,357858673,360640320,322906503,626041648,64240619,776927832,753941540,395981553,217619053,232005458,74611616,227815476,211175934,145087797,590307145,216386018,82994796,541656697,463340606,137328345,319112902,766175065,980647751,305613377,967709385,647456681,203231438,41435000,295286659,554927189,932352750,235447298,175105862,202202461,114534164,829204466,972359340,719625124,603417393,279547396,551736679,373106980,20492192,920959905,986964354,60369900,788463429,281972703,249685760,53327017,359360094,599395467,931775387,519835418,392232046,675669573,181528404,583126038,986552119,984957809,862471662,988186709,639329378,317068644,803085210,220201128,316662152,255961798,691285422,5454403,101800063,749628026,376512191,417005255,601430739,266599444,828421456,940600197,268948506,175686116,215036302,623303574,858320116,467144260,97756777,544857654,967816523,382838700,455099207,620695836,760579496,376484360,127052432,282977327,633682567,829390636,750410049,478869521,458890928,403983998,976291022,945400043,396708002,56909745,383292392,633575481,536841088,986904146,812169849,59565089,319477047,712565513,532670763,389820256,889284479,105312110,4571387,626422387,872194652,241216030,645699602,148588242,427725124,465758552,798086586,153072687,197144904,601395525,611164758,392691734,608465345,406682433,198257036,248976630,975055813,229733345,806763208,144654111,415661372,868583730,822658254,49194448,554475996,462415130,227715127,735539735,616899662,323407278,638537455,572160495,730268772,132867378,774568964,411093853,727885985,299503598,918232672,256902437,492222188,443337803,118730945,516260231,863501656,456940867,407921988,557108731,201667297,119230315,550141465,658819223,51708510,705797272,960639207,508445081,421993735,32409408,73586123,441045644,307984337,752297602,348885948,799844513,902451329,947794129,184218911,146642889,348106277,951147997,956235736,402162867,833807977,594630670,708694191,133487755,18591400,199553935,935271314,632172622,446508309,83757744,984913195,185841306,784215379,828656194,807459894,926052690,902801007,978010166,481232539,849579357,940365396,924171404,810327436,703611323,279995197,882728739,755097135,214739993,313181751,985926914,834046840,414864492,144728171,798693510,3969809,933233213,872265964,472221894,884631951,667819688,160624282,873663723,619428875,453084726,573231686,302080326,491900763,256726592,80637755,460451362,175599948,367874459,575205453,788830142,142461761,250543545,265828125,178605528,664902647,601779540,690276166,506819996,832171123,131183650}

    Returns: 3709892520

  30. 100

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

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

    {708917157,895659905,621553793,51450305,70355604,942458587,995227342,657944237,171525762,938235652,623672608,970692510,649713644,503697199,708940778,146730189,591485011,83467697,624240735,634386470,174077555,422197271,10290106,479565995,91466041,134818291,726010659,117256054,517085712,705463313,942997976,366441526,32298430,851849409,586238097,271806111,323608900,111861570,276022363,552914742,902543815,851676278,949205455,812225446,444982069,483372341,93249838,157973815,520259188,399140760,347919646,547136934,533042366,567071769,898102069,375793630,370791858,584812558,718041884,456318112,730162298,204952901,174241290,671814627,542319722,559480884,256137470,290204880,649113112,13637647,78070217,104600859,271600275,148605673,467762406,930948789,466608197,997857942,870515408,198684774,853554013,632810118,784444672,315435597,638614988,978870801,875820172,402811131,476582449,609515962,693363351,665568920,783751639,412392006,186402308,10238286,51599660,857900253,893213638,481832520,355749964,590794434,295864181,875990434,822977298,40082957,697514823,54955178,238285109,518071791,662821755,595240407,995262621,478349668,789308881,942648095,967957063,3757964,545689198,761659602,544472505,353764936,171312773,596722829,487617463,329165392,486910031,629643312,848820265,502435301,74246038,827541011,976529248,111432656,812883734,688203326,419458129,147377217,336708654,6064007,958253859,527296079,712853428,712169518,451004703,478274680,442385954,574546922,736570766,890004425,482592664,690057762,339170982,13823263,697046550,323917487,517075429,374947624,432649190,11931728,277578510,802896426,488254823,223155095,344356966,308058649,529431557,245768585,143780984,79722514,243370233,988839813,779412661,779957942,339470602,355420758,751254610,341823885,376306426,862876144,21845257,971707301,447498262,130927102,667562652,369654156,975429558,393991013,587578909,914703589,215586334,492609683,393069567,537468549,312412942,241683168,747432702,900701042,776552949,928943023,636418280,83320656,319921919,457250792,425463980,869978857,643912084,73998769,220851027,274264117,339216571,736066542,223397693,226906273,832153222,180972643,423015884,225760710,799055106,296811142,290754112,503468066,606773141,740656465,456736896,404899929,948883727,617899308,164770348,853545794,865626448,782010897,452009060,415060754,612945414,646124307,834618870,724982672,303077255,617176413,584087031,610484316,855500487,32475765,888881789,867461365,845114799,203726750,14184584,567870470,736752034,908297309,464212021,440532728,891654630,536037894,702746313,943163043,493878823,921525131,749706619,485570273,992765422,975143576,824635465,978220477,562536917,853379377,166290853,808250673,543558319,859075238,443080535,34678461,308576582,493619331,935335940,356266640,654428281,255819574,606314536,581560407,924643903,451085378,189281041,383179074,709643879,683766300,801507250,983179844,148650671,953453025,301240114,802096872,743715093,157696521,764801179,672968466,186786679,663247815,270033632,839439993,973893297,309121050,746053135,631382477,165518655,825113016,452177583,536892347,633429611,646056677,46938249,458468529,388481419,128320069,160875953,527192728,368951,508030894,593179912,918921841,890351250,813539995,139432449,401422499,609075739,294812177,563057121,802533719,916696686,944064419,222505525,76801202,593836516,657054975,916199738,550894522,186687317,86721477,482578019,994581665,288819575,779285307,682546688,81171839,793777076,244515318,317077523,840621451,752861772,536767742,791211751,191446574,436093963,492176898,649839310,376053723,65241122,544022355,847664370,716509440,377651319,440982350,296628989,671935459,990036795,162446535,76889552,532182290,12807010,586792010,550282119,690234561,787823516,964676814,949903845,750797087,387786961,481894605,675493426,991749070,494590716,700184701,382282409,995209767,452199705,142572608,641035965,584919565,570835646,379785597,948638631,264622361,459223930,372945266,910036735,349419519,891204788,896468665,723288011,778740754,737275176,27519254,224149128,505332052,771060024,209207451,983389784,311072740,442251245,432002332,784792705,360000996,805659200,527577720,521377420,299496987,188010645,172742502,81838611,954009228,864295648,800182844,235948287,166529047,453276804,481598960,281337956,381516113,615026151,735497658,451609592,467646976,342717103,403564994,44092579,371860419,972952814,965771172,459811679,181524904,709555724,912803873,45647870,967610723,940338719,337486662,456561544,895781701,233693014,440351009,435076960,292492313,41504021,6603950,514936696,103224263,227916755,106958805,152341666,412570898,215394573,482517025,111828689,861423124,34824877,825265941,823803788,320497758,306567053,412933883,530604014,482062351,687960056,534581739,872205087,247970633,630161141,802965509,678956233,33650987,781809437,390892306,987972403,125649089,122170074,338726951,878605972,575154039,813409792,529694440,670380335,851217286,927401019,368761623,278615668,646899298,502518427,887935777}

    Returns: 326621956

  31. 100

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

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

    {999999993,999999681,938168107,999999231,562944801,999684965,999996539,999999995,999999966,998452007,999200324,999999786,999927208,999999918,841810516,999903491,937271034,999941239,994130928,999298500,999957228,999999778,999761739,999999979,999999937,999999976,998593333,997360206,999967134,999999780,997242622,999999994,999950634,999999983,999999614,1000000000,999962260,999999999,999941569,922347406,999998774,999885877,655086818,739011238,999999958,999921148,989189716,999999921,983421886,999999433,999983105,936092057,999999800,921611802,999881530,999713501,759639298,999999540,1000000000,959983188,999999979,988044517,995240682,998602457,999994767,999999941,934258474,999996049,999999967,999999978,999999986,999585980,999999295,999999929,999999841,999978309,999953052,1000000000,999999922,485572115,1000000000,999999998,999935475,999997722,999999978,999948085,999999853,999999931,999994867,999971656,999989165,934127722,867974154,999898475,994361304,993851243,999999805,968238961,999779530,975071988,999979606,906809702,667843308,999894358,999992274,1000000000,999999637,999997327,999999996,993839016,999506681,997687557,999999909,946940104,999554283,966129083,999999593,999999999,1000000000,999761521,999999991,999998775,63307159,999873313,999999932,999999877,996950100,999999994,560271713,999712486,998677813,999999973,999996622,999999998,1000000000,999999935,999942198,998339721,999988434,999968866,999998601,961957858,999999941,999947937,991225257,949515178,999999995,826901106,999947288,999999987,999999866,1000000000,999999929,819467614,371875175,999998030,999986083,1000000000,985370090,999999943,999998000,999998894,999978297,999997919,999864466,1000000000,999999821,822084848,804133663,999999969,529693625,999999991,999997529,998556655,999999849,999261831,998476271,999949485,998192989,977881730,999999994,996655808,999554604,999998473,999983823,1000000000,998652207,994213943,1000000000,999999995,876247255,997978197,999780110,976021585,999988487,999758372,999999997,999999999,999999999,999998367,999991615,898394429,1000000000,999989111,999906636,999999308,969962510,967150796,999704140,997633441,909773210,1000000000,999971231,999916871,999998826,994992754,999876025,998327670,998965218,999996850,995579176,465661397,998626459,989576962,999942525,999999977,999999968,429509110,999033927,999999987,999999747,999955396,999813567,999565173,999998793,955254864,719375856,999971421,999998092,996611670,999999805,635101514,1000000000,471059223,999999990,1000000000,261584488,998627044,999989536,999999817,947510914,974039623,222858839,999999999,891879269,999994660,999964755,999996867,999998705,999999587,970290970,999998900,999999673,985343396,999954739,999957664,999999959,999280538,999999961,999999481,999999879,999988524,999999856,943952131,999998519,1000000000,998763069,999616196,999998840,999984386,999999961,999984690,771887398,1000000000,996641408,999999833,999999942,658552891,999986446,999999613,999999986,761447751,999999955,901880494,999996214,999999797,955916005,999933749,840780345,999999998,999999367,999998852,968897394,970213828,965699456,893721141,999999806,992139528,358331169,999537192,936461826,992361621,991552846,994601212,999999998,999999872,999868619,72902696,999999703,999901039,999999998,889681520,998161431,993839205,999999924,999781681,999827326,999997215,998135416,999999858,465031006,998892697,1000000000,999999988,999999950,999888426,999999148,999996257,999985059,999833085,849246378,1000000000,999964867,926557752,973108764,999999053,999999993,999999772,999999988,999985956,999488202,999998016,999999992,999998112,997571995,999997758,991996571,965422812,999994279,998965779,918151728,998781088,118597129,999974415,999999376,999837681,999998719,999998640,999999993,999999784,971860069,999975017,999999751,999908784,1000000000,985727287,999999511,999999694,64031303,999725583,999999038,999999907,997045309,911368102,999999984,984198989,999999997,999999321,999999911,999977546,804016261,999999996,979893099,999999891,999465535,999999580,999988017,997994754,999999833,999999695,999999997,999330661,998222018,999999786,999992358,999850508,999999857,999999996,999997234,998583943,359498257,999996541,1000000000,999999979,817084363,978216160,999678575,999951423,999968987,999999993,998995335,996537084,937326916,999999984,999983132,995322343,999985343,999999894,999955979,982121753,999999997,999963793,998168553,999998358,984789060,999998144,999994627,897440029,999997700,999901255,1000000000,999988375,996745506,998429005,999935877,999994572,999384761,999999343,999999999,999999908,999999875,999978456,999999891,999999825,996373024,999232877,397957419,998911781,999998123,999967613,1000000000,999999266,999581399,627144053,999999653,999984038,999999975,349001014,999999513,999967898,999999922,1000000000,999999898,998535098,842348030,410578440,999999996,999973638,999999999,999999098,999999983,999803931,993199909,999999995,752436171,999999992,999999947,999991968,999999972,999859719,973372285,952226297,999947181,950043906,999999775,999999037,990665390,999730148,999952661,999999997}

    Returns: 1918554323

  32. 100

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

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

    {999962741,999999867,999112264,752799536,998380929,999999740,999364380,999843254,999985755,999999580,1000000000,999994747,1000000000,999999992,999999937,999999998,998255412,999999268,1000000000,992637667,999998279,990525789,999909090,997987867,999999498,999981878,999909642,999994083,559021090,999947143,995896294,999999895,999991196,999974869,999999504,476605917,994418592,992482999,243503673,999997999,999999974,990220850,999999987,999999576,164864749,11430379,959612360,982091305,895264343,999999645,999997714,999999549,999999999,999999983,999999856,999999839,999998932,1000000000,999999735,1000000000,735288651,999997015,999999704,999857236,653151934,999999939,999988219,999998988,999911445,999999995,999951408,978331956,993703044,934515883,999998282,876127817,999999345,999999980,1000000000,999999443,1000000000,958536716,933260760,599236542,999063398,999952084,999999921,999997205,999996996,1000000000,999784618,976146058,134337785,999999975,889203009,991114447,999998660,750799453,999999995,999992480,999999974,999983134,998171872,999999965,999994637,999999787,997745741,742440726,999999956,999999788,999894839,994308735,999746001,703438597,754586307,999999915,999999153,997870182,999999681,999998192,999999362,999984885,999935614,856791495,928167147,999999999,396055721,999995291,1000000000,999999990,999998796,999867243,965447884,876507575,999513921,999998797,506952593,999989463,999982132,999457067,999660949,999511430,999994857,999999757,997975439,993773971,999968569,999999265,999999840,999994360,999999963,998669135,981245743,999999997,999841614,999999997,965783917,999999785,999481718,999998044,999999930,999999941,999999994,1000000000,999996951,989283640,999998475,954446533,999990810,932329439,999886346,997346126,977201004,999999141,999999982,961800597,999999999,1000000000,999987378,999938987,997410968,999977030,999999819,999999997,999999997,999998406,996467360,999953102,999994486,593148302,999999441,1000000000,999999885,988450888,999999613,821614362,999999960,1000000000,999997582,461660932,996884180,999999030,999923110,999735309,560952932,283787526,965163674,670918844,999996250,742156317,999999972,999993356,999902730,999999838,998214014,999816742,999999968,996230156,999999997,200637609,999999885,999999585,454914023,847000243,997775597,993669223,999997418,999948805,999996406,999999950,999999959,961097523,996976169,999999996,999997538,999999999,999953718,999998047,999953811,999952358,999999971,999968493,999999955,960537097,999995773,999999642,996314380,983399554,999926056,999985558,990608686,999896066,999999988,757898055,998863942,999999702,999991909,999998913,999999991,319481400,999999876,221859499,999993423,999999970,999999921,997833883,996500841,986687934,999914592,999873815,999998750,999999999,838016570,999999813,919888577,999995794,999447653,999971364,999999252,436491525,999999933,954052213,999999772,999999616,999998782,999999976,999999972,995020302,999929807,999990386,999999995,987346914,916395646,999956266,999999971,942331828,999999988,999983424,999643946,997531796,999998252,999855844,537575818,999999922,995657475,999999992,610363431,999999997,999478755,991476351,999698309,999799024,999999996,535441369,984076565,988152151,999999977,999999505,999993938,914191848,999995863,999999994,999477984,969560623,999989450,999999812,999797353,1000000000,996251225,999979916,998219250,999999903,999753160,999999998,899123473,999588031,999955908,999999332,999999703,999997335,999989734,999999015,898491571,999999997,999993961,999979876,185658494,752562729,999881781,180688497,999999995,998563583,995395507,998893710,999951871,999999931,991379876,999998500,942551256,999985736,747050633,999999846,999995545,996953785,999999989,999999997,999784918,993759638,999999989,999999941,999995175,997317345,629361150,999999659,999999892,999988584,999998200,999999979,999976853,999994355,999999976,999977032,999434210,999999989,999970797,999828354,999522466,999992129,982395919,999974680,999987651,998591755,999506288,999998754,524105976,999999964,999998261,999999964,999999990,999830003,999999999,999999993,965844354,984372957,876427804,999996514,999963770,1000000000,999919516,999999966,999999995,999999998,997610271,999999921,999999101,999999965,999999919,999908796,993644536,968478318,988184209,999954863,787914184,999999590,998841309,999999855,999999978,999999710,999541668,999999991,999998918,990251151,999997123,971015892,999999944,988804160,999997402,999999992,999795089,999918891,999999776,997232990,999999984,997632369,974961836,993764884,999999808,999999996,612146575,988634853,980213592,999220079,951804151,981618469,997854954,997257830,707873967,999999952,813667914,999993410,1000000000,999999763,999999630,1000000000,996067759,997315120,999992010,999999962,999988980,906702828,999956677,999999625,977590910,999999752,999999990,999999179,999999985,999831936,999869040,999464077,877354526,997030915,999672807,162862091,855296846,998692828,999929965,542575427,632415755,974982547,887061726,999986364,999421465,999999851,999999995,999999994,999999989,999995320,999999986,999905181}

    Returns: 2964777241

  33. 100

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

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

    {966124941,999987935,999823965,982141523,999997473,827727276,987893449,894795169,995052629,99091497,946725471,429036095,999999590,939958228,999951760,999994716,999709487,995268084,999999955,999999493,996004495,999998615,999999918,997173345,999999552,999382853,999998334,999915137,932117612,999762025,999996526,999999994,999999919,999992998,999999933,999999957,999987579,999999990,999893465,996297455,999980681,1000000000,999913058,998479723,999989310,982237361,980680773,999997353,999999973,999999425,999999988,999999949,999999839,998750943,977269429,277776040,999930170,1000000000,999954023,999999996,999990039,999933118,999998082,998894342,743386710,985839379,999998941,697970756,997704774,999994778,999966490,999988561,999978927,999999003,996869632,999998971,999999956,997950769,999999994,999069408,999999915,999998984,999999655,996880979,999479919,990974102,999999030,999999999,999999798,999998965,999990090,999999991,999999924,999632894,999537182,999999836,999863937,998200806,996660295,970454336,852176957,996950882,999996254,999765207,999994998,999849561,861743138,999999528,977872049,987611947,999937869,999975870,999999999,999999848,895039893,997458871,998624661,999390369,930657795,999907612,1000000000,838923148,997272020,999999672,1000000000,1000000000,999929910,999903688,999910602,999969091,822350737,977112059,783270920,998943031,993696309,1000000000,999999815,999974648,999999416,999999986,999997781,992624574,999999989,999999973,999963797,999999692,941195212,966336219,999999110,475545393,999820487,999508726,999864210,947621301,975865800,999858652,999995534,999917949,999983796,999999999,999999933,859937507,999907841,997640408,287709655,999999999,999988548,999998007,999714003,901740287,798251711,575168705,1000000000,999933014,932248029,999689971,999999223,999999927,999633045,991839411,999999998,999559379,999943536,999910080,999999963,981042318,999997552,999790877,999998556,999999996,999999967,999971095,999999818,999999965,999995522,999997208,999940863,968168302,989127395,996462335,980822964,983984319,999994496,999971110,999999964,994981830,999718029,999994017,999999750,987366522,972296091,999999994,999973195,999999973,998571482,902217366,975232735,996287215,999780988,999685001,999999937,941500463,999999993,849590198,1000000000,999999989,999217676,999999995,999002468,999999981,970946942,999999998,999999995,999974015,998633379,999991834,999762027,999999999,996089567,999999748,999995316,955401018,998965477,999999910,1000000000,869716910,999999073,999999692,999999190,998934020,999996308,1000000000,999999770,999976465,999958936,997153306,999853607,997040680,991879565,999991232,999998322,980579639,999910060,999999008,981434584,993532868,999999879,990078241,999675858,990741451,999999995,999997863,955898220,999999144,999874562,999999714,996791454,999999937,999999942,1000000000,834912469,998313400,999996390,999999315,999991158,821806614,999676815,999934924,999999577,999983854,983243553,999999718,952752046,453118939,998639107,416079475,999999847,472160091,999675026,999996426,999999832,999999989,999999997,999968455,998914183,999999998,999999999,999999988,999999908,999997235,999999864,302231690,981227854,517064680,999997371,917575254,999999998,999658606,999999899,999999374,999905969,951097668,999672100,999464859,999938149,999733356,999999162,999999999,999999972,999983069,988759526,999997683,999992697,999999558,999999969,999994830,983848133,999999394,845656288,999999962,994480269,101849365,999999953,999999946,707962625,976206012,849748053,999254602,999998740,999999996,999987349,999999919,999999985,993745846,999735445,998307628,955164938,995445904,993652908,999999037,927188325,999999997,999800114,999692811,984889987,999999895,999999844,683736133,999999686,999989223,259911000,999968860,999999998,1000000000,999999317,999890976,988543462,999932140,999994951,989175394,999998951,944086774,999813818,999920080,986015556,717163205,998262333,1000000000,999996486,979289923,915222563,986667138,999999978,986796091,949278951,999971423,999998892,999996634,999999828,999999777,999988669,999998119,993530305,999999973,984342441,999999990,999999676,999290283,999999281,999999826,999999977,999999972,999999977,999999665,981867787,976460513,999999431,996577675,999999977,731228169,999999997,432800852,999999996,999992655,999999964,848700085,999604983,999896808,999951169,999974152,999964185,999999982,999999889,999999805,999999999,999999993,999999999,999225427,999999995,999138371,999999959,999999961,999999942,984116148,639284825,999997240,999999998,999999972,999999986,105225066,1000000000,988910725,997714237,959064610,718737473,999999888,999995943,999961177,998306002,1000000000,999663147,248744753,999978934,999999976,999999123,999999579,999999813,999997448,999998866,999928479,999999988,999915325,999998578,999997646,999999566,765016121,999999972,987090626,985715098,999895296,999992687,999972589,999999987,999997056,999999996,987843846,998258006,997036879,947098919,999700408,999997828,994139852,999999824,999999975,999505631,999963123,999996510,999999770,999956597,999103402}

    Returns: 4999738155

  34. 100

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

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

    {999998747,999999952,987627794,999997116,999999996,999999760,999999963,997582515,998518036,999999460,853396254,876044846,999997463,999975418,999999156,1000000000,981700793,999999999,999999956,999999999,999985792,999999965,999971074,999963958,999999995,907657993,1000000000,999998357,999993331,999858018,999999998,999982554,999956063,873964253,986788470,999999966,997612368,999209509,999999990,912360607,999999881,999999999,837024109,999999614,999999999,999925554,833125203,999999993,999999970,999812099,244750962,444618956,993053079,999999334,999206188,999767389,999997838,1000000000,999999953,908863050,999999880,999999708,999957157,999940484,934005227,999999998,984074452,999992031,999999357,998654584,997218629,207162194,998708359,999999719,999999892,999999695,999999955,991506815,999999989,999999970,999826451,999978808,999998631,999968608,999999996,999937865,999998883,972449412,999999982,835499010,999997592,999999984,960164348,911822409,998154386,999933001,988874989,999991598,999999995,997755216,996707853,999807662,957965717,682550934,999999841,999999475,702905814,747641571,999996407,678331104,999934289,645175353,999999915,999995108,964334162,999999997,999999999,999349582,1000000000,982371181,998624213,989231669,967884142,699068234,999999987,999971901,852662160,999986508,378484693,999569495,805480158,999999991,999280643,999999996,999999969,999999903,995462476,945402154,997977277,995439086,999997692,999674060,999999949,999999923,999429503,999999990,999999752,999999992,999993148,998734681,1000000000,999675188,999999999,974044681,999344231,999988786,898414303,999999865,990997056,999999735,997654471,896693741,1000000000,993638368,999999565,999999990,964800581,996655506,999999999,963547954,999999884,990754399,999999996,999999868,859809981,1000000000,999865717,1000000000,999999998,999999994,999921069,993042262,999999998,991278392,1000000000,999127985,997357518,999999958,998821122,999999999,661275052,999378137,999999997,999999625,999999951,999534130,999871912,999999957,999911966,999999824,1000000000,994420029,999998046,771062263,999999967,999999995,1000000000,999662099,999885402,992664997,999999805,999999773,999717520,999965042,999999613,999999798,999891015,912778149,49996866,999999998,999999998,995823300,967368403,4752302,999995062,999984071,962548722,999929607,999999943,948287011,999999821,959283980,999999999,999978212,999999887,432581501,953991896,999999998,999999962,687950378,865891334,999999999,994688999,772454414,999966144,999999990,999953869,999999999,999999995,462323414,999998413,999244268,1000000000,999994139,1000000000,999999343,999999594,999998253,999999836,998391940,691349459,999840963,858832597,821562602,515766061,924889705,999999889,999994196,994864231,999855626,996369412,999999706,998350765,999990432,993377188,999518325,999999944,999645084,999613359,999999931,992937267,976439196,999937745,999999804,999999967,999998442,998847954,982395351,999999996,999999471,1000000000,999979222,981515196,912440243,972232440,999993123,941914146,999962778,997561764,998250161,965589536,900639748,999156149,860554421,925967445,999997978,999999970,999595998,999809612,65995239,999999932,905936446,991805443,985872459,999999992,998106407,999999926,996241531,999997317,999321631,999692091,999999923,999897189,999997685,692436274,999803318,888040219,745018349,999999935,999999870,999955437,876797627,999999990,999767869,999999935,999995856,419602282,997190290,999992758,994288931,999953253,1000000000,709422229,999998454,1000000000,999967107,307471385,998684358,999989355,999998622,999999982,999930432,999993247,999999601,999995041,999995954,999999458,999999958,999907642,999014938,268982978,999964105,999994624,924415958,316295068,851954437,999999991,998808347,1000000000,913789155,999999930,999983973,578940662,999998474,999948036,999968261,999999987,989398594,999667342,986255425,999999841,1000000000,951101398,999998757,998545145,999999938,999999987,999999998,999999886,977555231,902149462,997149463,990307116,999999993,999929478,997840874,999812157,999999994,999999519,13642371,998780463,999622214,999475248,999999840,999912046,999999084,999999726,999987341,999996541,999999999,945249454,998870168,999999898,983334211,999999549,996809630,449490953,998706929,957073836,999995393,999999995,999999999,1000000000,1000000000,999996489,999999990,999993402,998397451,999955557,999999999,849616740,916466539,868622097,999999718,999999944,999965152,999999023,997685318,999996602,999999973,999999868,929377179,999999991,999999999,999978288,825354199,999999957,991301740,999970138,999999956,999995861,999993886,999928587,999999986,519707007,999999832,999999819,999999969,999999845,984172157,997986073,998735312,992438400,785600105,998783389,999999962,509296557,941695234,998257524,999923194,999999930,999996348,999993852,999999999,999997375,999997721,999999978,650547397,999876845,999998265,1000000000,999998605,999993812,999999993,958226748,999988540,1000000000,999144861,982862047,999999907,999999560,996915891,999999995,999973654,967423070,983550400,995353245,999999947,999038400,999951531}

    Returns: 5945212864

  35. 100

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

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

    {822147575,999999995,999391631,998807929,1000000000,996138693,854423686,999987827,999998663,999491778,999999999,915466002,999327860,999987570,999976798,999987906,994627173,999963983,999367766,999999614,999999995,705199404,996938994,999999535,999997166,999999955,379677710,631002743,784084651,983462731,970016401,999387499,999094420,943815132,999743872,982746759,999878496,409806426,999999856,999999994,999965319,999995176,999999980,999973953,999932346,999998337,939868488,999999999,999638374,995809019,988342730,999999454,999997544,999992888,986530911,999997934,599819380,999998150,999999988,996574555,999999998,996349256,999999959,999998144,997971379,999493375,922186241,1000000000,999999993,921706329,999993637,999050418,999999995,978220337,999455458,999999299,999999973,999219188,999999457,999998638,999999985,999999925,999999996,999922109,999999935,999999977,996013681,999999995,999421242,999999978,999407805,999985885,999789360,999873074,999992849,999999992,998646387,999818032,999999995,988385086,997620189,968574725,999992985,999977681,1000000000,995889138,999999957,999685035,983204152,999999787,998577578,999999978,999999949,999999992,995966911,1000000000,999999997,812876249,990485308,999999998,999999996,998226174,999999815,999996177,999995468,999999579,999999996,999999313,999927046,732517768,999907056,856725389,999998748,999923624,542436270,998482316,999999960,429541886,999997530,999999994,1000000000,999453472,990588515,999999978,999549100,996533230,999999327,885072108,495764612,999887745,999999998,999996270,218351236,999996127,999999117,994070474,999999884,995352156,999999095,999897850,852752170,999999901,999191787,997044661,999999955,999999976,999997950,999999938,999747715,999999947,999999982,999999993,999999285,999999996,999999979,999999866,1000000000,999999955,992495988,999400153,611458572,999999578,999999950,999999950,999999927,999999174,993247380,999999795,999999977,999999324,171243597,999584010,999999979,999972837,999999999,996027381,999999160,984817862,315105998,996497127,996128945,999990846,998832089,999995249,998935768,999980035,997103450,999999996,999984107,892780974,999999633,999993323,999961423,999999479,998569104,999998506,999940621,992135405,997746728,999927462,999999832,702164879,999937645,999934805,998732171,999873862,999999145,999996172,403488110,999999995,999767720,999999646,999999987,634656738,999999979,999999773,786521841,973123227,999999999,258229937,999999932,200989956,999941385,503215972,963967761,999994491,564134625,999999868,999999638,999999998,999999872,999999798,999894428,999937234,999583475,999999994,999999996,997121982,999985228,999924312,999999992,799647395,999998708,999999604,999981602,999935929,932052404,999941234,1000000000,999999996,999999991,999998993,999956452,994500984,962475944,999999996,999856022,977561371,999358662,999999679,991707733,999998087,999937230,999967517,999999999,999998583,999977602,999999942,999997790,999989098,999999115,850064779,999922748,999672739,999998514,663769122,999997369,999525874,589832961,999999630,368441160,802881296,805605740,999999889,860836877,999999716,999999874,999999889,685617392,999999215,999999991,999999111,999894301,999402704,998493182,1000000000,995505127,999336846,999999992,999999998,949495913,999999986,999982466,999999687,999928492,943160447,999999611,999995291,999766879,367454811,995194160,976020108,999999839,999231889,999991351,999996879,999999992,999911973,999999665,999999974,917285035,999999866,999614621,559930311,957283872,999964133,916406119,999999998,999999594,999972068,999998552,1000000000,999999934,990833370,999908068,992004451,999999995,999999259,999510762,999999999,999991800,999554483,963628945,999998974,996519517,999932646,999999953,998981221,927193809,999992607,983256490,975077255,981315460,999726932,999999145,999999979,999981574,994885104,999978534,999980289,999997817,999998112,999713717,474970479,1000000000,918001529,989699079,999997058,999882490,994845372,983876807,999380015,999712817,999999943,899867294,999858651,999882172,999999992,999999900,786921243,999999962,969827524,996295126,999999868,965811560,999999996,988758440,429470450,999876323,999999943,999974960,971404824,999999793,1000000000,319602831,999999969,999979780,999999258,948736156,556328420,999889144,989779840,999950415,999997452,838575410,999987868,999999875,999999989,999929025,999999962,999989991,889659417,999999970,944212662,999996710,999980503,970948693,999995407,999999721,999999577,999996118,999067015,1000000000,999999973,999800666,999999834,874328095,994754971,999998081,991997420,999138060,999999999,899748617,894077729,999898685,999999978,999999988,999999968,887148096,999941210,999949403,999711509,980589615,999999939,808988264,999995386,999951544,999937658,836294949,999954307,999999974,999999813,997913262,999999993,999997064,867957914,999924632,818154178,999999863,989180425,999999738,999987300,981303200,908521741,992760950,680441233,999999995,999999931,999976404,948640619,999951968,1000000000,999990126,992863628,999999919,999999996,672340249,999999971,999999236,999847492}

    Returns: 918001529

  36. 100

    {98,14,87,7,48,50,42,0,92,77,52,98,22,20,32,1,2,97,9,93,24,29,76,7,74,27,13,64,27,52,33,57,2,2,16,59,14,47,0,35,0,2,95,61,93,62,25,48,40,38,24,13,90,20,87,29,40,58,97,9,91,91,27,7,1,52,54,95,0,8,18,91,1,20,63,55,64,42,76,0,1,35,87,77,25,70,34,17,54,42,65,1,79,40,54,16,53,16,64,42,7,77,78,95,25,47,15,27,46,78,19,82,49,46,4,40,38,35,45,57,3,32,63,77,76,25,13,16,18,68,90,63,40,11,78,54,2,76,14,68,25,90,13,85,35,48,50,59,0,42,97,97,1,11,80,25,1,14,59,9,98,11,92,54,24,96,38,53,69,63,49,57,78,54,50,13,44,45,77,80,54,77,13,57,4,14,40,85,54,91,78,50,98,51,71,19,79,72,58,0,43,84,37,57,86,49,95,71,98,35,98,24,63,79,57,40,57,55,91,41,49,57,63,48,98,78,74,16,35,35,70,18,52,50,91,49,78,35,63,2,16,23,70,34,54,59,91,57,93,76,58,63,20,82,32,28,76,27,45,10,24,56}

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

    {195730313,836774596,179,246177978,4257,9529,298,82979,12764,1,46616606,11808,8,53243,87906574,140,571347,75663,14,7998,3840,796650,568422540,1,1977358,12057,5,22655666,82727747,403,323,933890121,2281428,152,207,2497,586264,80419,202,1965321,111367523,118,6325,943501,37,2299,1,7317,37666,412,14120,1904125,1,5,10051692,49,559018,3,11,92586,2649,42032856,873,2044353,1622073,22852,3,119142314,568179040,114390,153,11200605,16,1,28,1734530,90,1187392,9834465,548803509,7,2488390,536,6,267827067,1,39381709,604,54,111055200,1156,35,8573,31664852,705,50,77181376,17,233965219,161,204644,1873579,568691,1080445,5,30411,882376638,807442,840398,3512,10078,374792,680,823,5,120968,55,874489,37999535,200790284,3511,6,6,6,1056483,140444555,805110,3396,1,1456,441807,42142,519,5432762,197447037,1990,1462006,340,336913,155879397,35,270188489,102,31818,608,20101,297,341521,4321885,849,141,7420,74349,1393,762769206,27,647319042,26,16496838,3248741,128605,53526,7671183,216,32190112,71714652,42011093,86106,5470666,3885,8970729,5846,1470,274245,2,51623,68,521660,1927,344,31005,171474079,101710,201108318,303,23,44,13043,1053,229451,1,12,33886,717941839,69606434,1,84888850,3184,530,40,4,111399158,22,2744,225,11035585,51917901,935,8,11115,63452,419071,850198946,332164716,3562803,3737,603481,26969,1348151,29557751,7954747,536801,30841900,6,11,6,406166582,34608,926148799,7583491,78,126600,332,75054,54829816,110,29479,236,18420770,3450,39100300,93,1,211366,192,1825191,8,8226,1272492,114534742,5827,6409401,5015695,33429,14556633,5744805,995691,692,388895,108238,113819168,245}

    Returns: 211407

  37. 100

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

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

    {304,2647,469939409,16,2130,5771,3136630,54815646,857403,14570,60479,2246140,6615,199589098,439891593,6317539,91320,11403376,39950,3263,28,1,2155343,19134752,4414400,4,1365151,105252,76584,641048,14555,184965,43,26,22764190,23651093,422353,721131,25635110,209200,700620,1,76994,59963505,1917403,1,173521269,193981,128346,307424729,3191,782714,2508176,4128,17506772,280548711,203,2653,319,67394,38328136,37181970,24,221,909591186,190137974,3667764,564808050,3,47852428,598,38,807400,159060649,23,50,8843512,931371,14773,102506059,204273610,55399647,30,325,135,221998,27577339,8930,7247,1080125,366948,189018,184835343,2187,1371,447400171,58520746,206822,2457,893,195118,396129,3517084,982482795,5461,967,1836949,15367,92097312,26404,2223119,4,211418,1885728,531986500,1,13,325,11862602,4783911,10,425561,656182611,1,126,4807,5,5,5,171767,3,58021,675386322,30079,217439009,12,1,465,2,7865057,79,32024,488,21495546,21,1713,84890,3,205220236,5222467,32396,2,464752273,2,2445270,11,1055939,53,83328,41460442,771,37,486,2631,778276,5720,498592065,56424670,53084,1442002,22,228340,765872031,77974,2,235000552,968,281819,338768830,10199814,3613421,99768529,2857524,16,208484,64282,8749466,124855642,10640,13,6,27088,1304,2320,2405767,27304318,452150725,1339614,301974,1518344,3170429,9429,24138353,311,24576,27702693,908519,3,299484,2031841,625,2349,2687921,26,153961,1943113,565422,6,276,397379,4159,64,366329,26713149,512,7608,4170740,6391025,320115848,416,383,77,89,1,590379828,45568864}

    Returns: 422712

  38. 100

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

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

    {163,10,116,2,7149,7910,1519,2,70044516,3,16119,16,365,6301364,501,892708058,28863267,4774366,273,90,1144,132354967,74,775,6479576,3231,265186,933978704,229898,528644012,371733611,847,107018687,15241926,22,210991332,14,26,52667,274,3535068,516121,6800312,1116,2,5022522,2099527,1606,1738684,123,1,1028423,1,436621,3184,211,3811,798,1,76,1443,149016124,835,292694,992526,297,57206,460,175823410,138170045,32254,550,137892780,352037,4025850,26251,2732647,164183,63751,12,6599,2823517,490,28465,1572,892665377,641,330532,871210321,3,3,466284176,32,13,4701098,1,24,10108,53,19855515,257023,145401550,12202,218381,2,57537,323,231946,2470,186,2305189,43,462,33971569,766,172611494,373,344,156,542556,767980,636,191785,3,361915168,361967791,2005393,6,46,700086035,1,18,11,1,168,527,1,353,76670122,798440,8095735,2,9116,7450355,24,5,305883,87468355,4019353,142,8,50227,5,47381218,11636,4,1298978,5783763,43712,2720,1,119,266,153,378902,196430,198,59033,21185,71365665,390632,55508,398167200,495176943,147,974577519,1,4,30,11,2142,136347511,862624567,1796719,7248,1,268,2,3,61530,13385783,601256503,2,24451,3860,508022119,27,4,214034596,2,10454,562,128,6,19,807,167615,1575901,14629,664828,579,396527418,236273178,20859004,231,883710565,438632299,64641,2036560,89807904,12689,338752,16223401,117615976,11017,4885,70818,12,46,25552395,2,259932046,2697,149489747,1,39,5,225205939,6,15154498,493624,502546194,30307275,7065,162,1078,607,6628,8341,52804,2,8974527,669707247,511,6038236,7206,19008193,8951561,165705}

    Returns: 13385791

  39. 100

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

    {24,92,43,78,12,9,86,65,82,15,85,57,79,94,74,71,68,71,84,29,51,93,29,89,76,45,60,29,97,11,86,89,67,68,85,49,49,82,89,55,89,61,99,22,58,53,11,76,82,25,76,61,54,32,60,35,50,60,80,8,29,64,27,76,98,74,42,8,23,53,11,79,36,67,93,16,51,52,65,8,22,89,15,78,39,92,68,71,70,31,44,86,13,67,45,86,30,65,16,24,71,53,57,7,84,77,32,99,97,26,21,20,71,90,36,27,74,99,44,51,90,24,85,19,85,52,45,80,64,58,71,31,71,41,27,61,74,63,35,16,57,15,51,52,61,74,21,29,36,85,41,43,51,24,67,93,51,64,16,58,12,30,34,27,31,52,43,82,86,56,12,57,92,85,29,16,52,90,20,67,13,90,41,62,20,63,7,62,99,22,1,76,19,44,21,50,78,25,64,54,32,85,51,25,31,25,49,92,67,38,65,7,9,12,14,27,32,59,57,92,67,44,99,64,60,66,10,99,57,24,78,65,12,86}

    {76669774,4,535526814,220812058,10476,1380,160455758,7,68700,27736771,108206,5,76912741,27,1180,38175500,63,1845350,842847793,1173,96233887,8,50,12839,7884,6,4906181,16103377,32042066,14262,216444,2,41453,9,12653,14157645,2336356,19575768,13,5664,21781394,28693748,193606361,4,9776018,14,27,1335075,103283,13,2793240,2,360259,26,3742460,104,1450,75137759,3611371,1009,495098,2130332,7,401,10968,7,47424201,8554,459624,1574083,383483509,792292,13321,6247,123736512,149,647,1760743,1651,551209,2,30,7433003,5805,122,41,1098439,6560,370433,2,97,4522728,188,33048,942773376,29,39450,144549,1439,2,284,1,4967,484754,117175649,4293085,324830,641,146434365,1746926,3438182,174398,5770,3808494,66270853,1,766,1972,3,11860712,1065,20917,293165,683969470,680014739,54,908908015,8,840,5279,520346,34777189,503812484,54972644,27,35,903296170,233,1380,141217470,1954,30311192,81,43972275,902625,1,2603,298246,321014,459830702,40,1696198,1973,1410170,289095,18,252163332,15093,535,15,12726031,1802,127,20040,195527,416,156340723,10820,3784968,19300,345008101,54498,36408,9,55106,92,1,150244034,4716,20,14,435386114,28409,6043851,52,394,3075,98399,10300,162700736,40269,12644470,84504,16,21395,7,2146,41191460,3001,74572146,176811,3,30665,14454,13,63480,24439322,85736,19,79242,16241654,3806275,12573,104,640195683,56507,333,6645,6373,60517,686482797,802,34881,351,305530,2370,288,16,41564,273550931,8016123,52129,2237250,8}

    Returns: 1802

  40. 100

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

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

    {93033679,70,45429909,19794810,7,139535,220246,254,58906,31274956,67,2,16895,8,1,204398,48,3737,180615310,1,2721397,3,6976556,675,3427287,13,52,256694627,6239,136468358,77831260,12,447415226,42063,704679521,198908,335522209,131,5603279,1,2665122,16033290,205244,7853681,18005,19598566,10362,1,1,8236750,19492,19545,196637896,197005346,136644,40603,3,7289367,20968609,5942661,318338649,2456,253229428,574863,33584,162566395,3825,2642880,543,1,7,186,691131,250,577855890,51852,121,190,11091,1,5260716,250191420,1425,42,24657012,2,26938,318,64085658,24,62108700,602,2310,3812,890452,8634,34393,52189,1928,29623093,836947589,13,385532943,72,98291,26563749,386528,148902508,17740,564500,861,57,289439717,16900436,5464697,7753631,300369,1241204,813263,617097881,805,2303538,119,126672860,157859052,41529,12639,15416,4,63,1,78,24755,227690776,22681,1,13501,92868,11457397,68,64182,262561,95,1,275424,142022716,60,2,157763515,687,30283993,330131,127,33808027,2,149,17988,5,150,80997,8,61302,1,821641346,3683,39,9385357,128,83482,74458735,5787253,894972509,2885,1639,42,5,370388,10,47593,1657727,2,8,8074094,34,9427717,4161,7661,351759,177173,10148945,19815,516273,172,3513,88,1,8089,613829,749863314,6799915,8,4783,689,2094251,1173273,71,3440,1,103238,1294,5597,1677,5458119,1,402653841,1,1,2,240,1792751,5893805,482,84794718,2786,6829777,8,97484736,1013554,5,103361819,1103,127098520,21,76996554,209354534,1271335,50,486833,19,65685248,24974004,3,48,5496732,762385,584,735,3,20226766,65,1304366}

    Returns: 119

  41. 100

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

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

    {999863190,941971605,1000000000,999999996,661594708,999998621,999998205,999999200,997523019,489189454,956069502,1000000000,999988580,998854248,999999855,1000000000,999940418,994317758,999999997,999835872,999962123,999999090,999999588,999992441,999999448,999989331,998986047,992175125,999245852,968141406,997578836,999986874,999999810,1000000000,999991164,999999999,554504758,999884296,999995939,999959149,999999576,945379528,999999991,725923930,999938641,995639388,999998372,999102971,999999407,999946769,999999903,999983908,999083317,430433361,940431755,998233920,998128165,999964114,999993734,999999996,999992439,999999992,995876944,616454410,999999523,999966136,991217394,962750705,999998919,999999998,999997730,999999928,999999961,990317842,997784772,999923515,951204323,997026656,999999930,761364465,999999502,999987724,999273904,999934886,999389445,999998169,999991766,999971035,999996884,996317293,999999998,999999983,999999923,999999600,999908424,999800909,999952166,998081128,999558005,999560231,999998591,999999491,999999961,999998922,999999523,999994295,999999991,999999872,999982736,999999971,999999997,999999939,722594129,999999679,999973241,999999723,999999880,999999982,999997163,999835911,998234057,998576590,1000000000,999968962,999999950,999973632,999999642,983268125,999851794,999999889,999717954,966750107,999999992,960102849,993455962,999999397,999999931,987786777,973999076,981177030,999999659,999671712,999999140,999429052,999999963,999988976,993560586,999999995,937580428,999999996,999997780,825906521,990937137,999969263,999999922,987810369,999999966,999999979,999999970,999999921,985596420,999999809,999999965,999999622,994211951,999044052,995849370,999794933,999887678,999945867,385567191,999929904,999999626,916518037,851132093,999710211,999421679,999977846,999936367,789799465,999997004,846089031,999999994,510693221,994973215,999965239,454124340,999999992,446259632,835217830,999970002,999999987,989614364,996373201,999946139,999999987,926288804,146894928,999931035,999994388,999999993,309743954,1000000000,999999940,999707642,999993206,999999916,999914194,999692870,999999999,999008555,808081086,999091036,845545599,999949194,853495020,999999998,999635544,992005387,999996948,1000000000,999996528,999999999,999998342,999999781,999996297,999999992,999999696,999999999,999999569,999999992,388038165,999952649,999984327,999998852,999999947,999993688,996392793,999976295,1000000000,999999932,999999751,931645090,1000000000,999896759,999938934,999999975,999393727,439948909,999999995,637096910,942796898,1000000000,999999996,999999012,999755074,923133047,999966764,637713891,999999928,998313521,999997010,999996345,944996608,464822774,999999999,994484235,596262506,999968053,994551153,996693158,796836864,999999184,999999966,999993676}

    Returns: 2988901174

  42. 100

    {0,68,1,45,2,47,16,66,83,51,37,44,64,70,57,78,11,37,32,1,66,25,3,71,32,66,24,66,93,85,91,45,51,92,75,83,14,24,6,30,35,71,94,45,44,63,79,95,20,82,78,90,85,51,89,95,36,80,14,21,40,94,97,76,90,35,92,16,1,90,76,65,96,53,16,74,70,80,16,5,86,31,94,59,77,3,16,95,38,5,25,97,71,77,33,65,61,31,93,84,93,66,49,86,89,23,75,55,78,94,36,61,38,15,52,20,79,25,65,81,45,82,20,98,96,59,36,39,45,65,4,41,57,44,31,41,59,14,38,98,5,90,97,39,78,66,1,39,25,54,53,0,27,24,69,88,83,98,44,44,37,77,5,38,33,89,90,21,86,31,51,75,3,22,35,65,75,89,3,13,1,95,39,14,98,1,83,82,74,86,63,4,35,28,75,53,75,68,76,20,86,0,67,78,4,87,81,49,54,52,66,19,97,19,11,45,58,62,14,0,53,36,45,86,85,63,95,58,85,39,96,16,6,53,19,38,74,70,97,65,81,79}

    {3,99,35,64,99,42,22,64,43,8,36,15,50,42,67,3,60,56,7,48,30,24,48,73,21,92,47,17,21,35,80,7,12,8,25,58,9,21,18,22,32,8,13,53,66,48,33,67,49,50,40,97,88,88,93,97,22,99,45,10,73,53,4,12,31,33,50,24,70,74,53,9,48,7,56,68,27,2,4,13,61,50,21,13,63,63,50,21,47,15,8,89,84,36,32,48,98,73,11,48,42,70,46,54,64,89,67,73,62,91,43,48,7,13,17,19,70,21,6,40,41,80,82,67,24,92,79,4,82,60,65,58,91,45,67,87,24,80,11,69,40,56,65,65,71,65,8,25,69,47,31,12,17,9,7,50,32,9,25,11,81,68,75,56,50,40,95,87,4,89,41,74,89,29,49,62,84,11,88,17,60,9,99,60,13,24,8,60,42,84,57,82,10,2,38,56,53,62,8,30,93,16,42,42,99,43,94,11,87,13,19,48,29,89,82,95,72,88,61,96,41,97,28,36,33,72,59,43,65,62,41,40,10,21,7,21,28,18,87,8,21,57}

    {999837001,197599612,999999461,953398711,999999786,999999989,999976713,723995463,999025179,818943933,999998292,993609654,999863152,999992391,999999629,999911957,999999998,999993147,999970428,963224298,999999882,999999563,999776814,866146642,999999990,999999818,999999432,996721792,999998579,997335901,999999998,988152566,999316075,999999649,999999991,999999996,512753274,972598419,999999616,999999986,999999811,817437793,993756974,999937064,999989237,995346705,990318663,999997674,862167455,999971152,999999999,648928127,999910597,993153001,999999983,454449121,998309086,990108295,843400882,999974042,999997989,999999947,999983701,999750539,999999985,1000000000,997947904,999848126,920280848,934608206,999995904,993793166,999764594,999870141,999999995,999848673,719359545,340233341,999999468,999956159,999999840,878523417,999057476,998529939,998760188,772313244,971924496,999345498,950431913,999999997,999996449,999999993,999998507,999999950,999999996,997984927,998878913,999983220,999999999,999999618,999963150,465215904,999999990,997510941,999999999,981579741,851627035,999947840,999908094,977108910,999999986,999999938,844656780,998129134,1000000000,999999883,999999962,992647822,882195078,999998751,999999986,999976449,753571700,724569786,999930197,999711352,108002609,985303010,999700758,999994455,999887471,664542593,998238890,999999980,165940597,961896997,1000000000,999877068,994038549,999849063,999688682,999997875,999999996,910655977,855469093,999999999,475006970,999798782,999999967,976635977,1000000000,999984986,586700404,991941497,1000000000,999867232,998783971,999999454,307789422,519734730,999999994,999954785,999996377,999873723,999999907,999996936,999986299,999357359,999990613,999999861,955125746,999926409,998061628,985209165,590655416,569107296,999899268,999999039,999999996,999993062,999201531,999603069,387321055,999999998,249755974,999999662,999999875,999723830,914295477,999995247,999999531,999862867,999999999,431124389,97988023,999997066,999999833,993913045,999999792,999999989,999999533,997866988,932874541,999999999,999997455,999999999,995066579,960553933,999759209,721215542,984903776,996455144,999999903,999991740,999999991,999998181,999998087,999999974,999999859,997619600,999999978,999998092,999961910,257810164,999999509,999992859,1000000000,999997300,402312651,999999984,902264095,907408651,999999652,999899634,622138082,964315868,999906722,999999504,999999986,999932756,1000000000,985112173}

    Returns: 1997703989

  43. 100

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

    {85,73,55,48,1,48,73,19,47,21,91,47,82,65,60,75,46,80,7,33,61,31,41,24,46,59,19,87,24,66,68,87,58,99,24,14,95,99,68,2,24,46,96,99,47,79,6,3,97,26,95,82,61,24,13,53,41,5,68,47,58,46,36,12,27,12,80,10,5,92,92,18,97,80,46,13,5,80,18,48,74,19,15,81,53,43,76,70,79,31,80,1,18,25,97,95,12,23,98,76,97,68,84,82,99,75,70,62,74,9,48,75,81,48,74,29,43,61,78,58,68,40,18,47,36,61,2,87,99,24,15,61,82,7,3,76,40,96,81,15,43,24,41,92,53,91,8,58,67,45,7,80,91,99,48,81,89,2,32,65,78,49,11,60,75,11,43,83,58,22,15,83,98,33,7,57,8,8,21,40,38,80,47,47,99,1,74,73,32,8,13,48,12,56,24,70,60,1,67,7,64,95,24,33,67,95,8,98,61,82,16,76,9,13,43,53,66,30,46,70,73,4,15,44,15,83,2,92,33,95,13,46,76,94,55,48,47,58,58}

    {983657121,999959609,999999949,956076072,971076281,969625080,936997792,999999975,999885267,894034827,849043519,998101270,148460986,1000000000,999999786,968072857,999967040,995405622,999095605,999999978,999948333,999958082,1000000000,998954077,994932223,999920498,964763331,999999999,999997695,999716435,999999998,999999859,999999415,999885463,999893272,961698969,762423331,999999949,991751395,999829603,999999953,999999979,999973527,731735533,999745866,999999995,999702871,999999919,999805673,970809375,999950876,825347575,999999965,999999776,999987957,999999996,999999999,999918929,998142097,999953111,999998763,1000000000,999999764,996406174,999658238,999999998,986501634,998419686,999410775,999998603,999999688,290789660,999997927,998992400,999993906,999991053,901111190,999999998,907167727,999999955,998093462,999999999,999999964,864502664,999883347,997343568,999996886,999999996,999999999,999801767,999998427,997813557,999990093,999986890,999994318,1000000000,1000000000,999767658,999999181,999999997,999999707,223177276,999949175,986403989,999999994,937264107,999050624,999999473,6063387,916800608,999999971,979730320,999999907,999999996,963954054,972251479,997749808,999999710,999999938,995565266,992170317,999999501,999660836,761682886,999417512,995319821,999996080,743703118,998423527,998470696,999999923,841212262,994079299,999971529,999999797,611939821,392849734,999999775,999998675,999999991,999989522,999999999,999989998,929755341,999934324,1000000000,999928367,999999795,999999891,999264277,999999999,999999072,999999238,984570493,953555793,999921197,999999997,1000000000,999999997,990795600,999995795,999997912,999993857,999999997,999126495,999977053,999926587,999999829,999999849,999999757,999261655,986901512,1000000000,847451486,999980536,999998606,999999995,1000000000,999999999,976998789,999999984,999999998,999859895,999998616,999682427,998768476,999982476,385666791,516275923,999828504,999999564,999879760,996425883,999998556,999909411,357408796,607186055,999997922,999965773,999999981,352990743,994086733,999999762,1000000000,999997612,999999959,976587090,721806349,988835882,999999992,999999422,949050968,88971849,996858737,999999269,999999999,999999963,125384674,970300976,999999622,887389603,1000000000,999864202,999990797,964462850,999893471,97425093,946447104,999923932,127104666,92551246,998544973,999999999,999999999,980581527,839786799,995672407,999999981,999990262}

    Returns: 1730504009

  44. 100

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

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

    {999978074,999945076,999933714,951513031,973393462,998961131,999999747,999999902,999984033,979489911,802485524,999999649,999999928,999999741,963291718,994164580,999999974,999946051,999995183,999999992,999999494,999198588,999825353,934702740,999999966,999999823,999996084,999999913,1000000000,996083926,999457211,999997161,999490900,999999634,944753056,999168372,999989537,779043558,999442771,999999769,999999147,996500031,999999987,999999966,999988102,837374046,930777416,998374948,999999993,990683253,999998580,981027147,999998599,999999512,1000000000,995685257,999999992,999999987,984655320,999994156,999999158,999999557,999999985,900999173,999608389,1000000000,985284668,927918189,999997393,925631381,999999673,908293285,999879153,999292944,999947165,995140257,999999999,999999997,999998918,996749608,999998005,999999865,999998012,970971626,999910585,338583938,999716276,880295234,995274132,999999942,999820110,842833456,999999953,999997609,949883635,999999580,999999990,999985042,999475487,997943671,999999996,925637793,940023952,71774197,999973617,861007298,999602271,999986956,999999995,919894761,999980064,998438388,999982676,993410805,999999998,998321118,982158416,1000000000,955275607,999999889,715884860,968931169,999815446,856886287,996627015,998019884,805007102,999997072,999999994,999999996,995320839,999743746,987118562,997762941,999720092,885128298,999999997,999996275,999841983,998308656,993469930,999751001,951924767,999076743,999099801,991690133,999994636,999999995,76388734,999999994,999997670,999952725,999999602,999999783,999642578,894936544,211915780,997268111,999999997,999999946,988063849,999982306,999999214,994514206,999992207,966838860,1000000000,999999970,999967443,999999994,999954968,976974955,999025304,999998077,999999430,998327498,999999988,999896825,997593489,995542656,999399627,999999975,999999999,990351295,706519629,999985006,999977820,998053955,999988332,999999989,1000000000,999999999,959296477,999998708,981612905,947996108,999995936,999988152,999999953,999989812,999917460,999995504,999955421,947748810,995869023,999999990,999368540,886336911,941979924,1000000000,999999105,977297931,999992011,999999997,999777091,999999670,998236674,218281222,998046898,999997191,999563280,999738750,1000000000,745441515,999999946,999999899,999989910,999999018,999999845,999999962,999998001,999999866,170232961,983135729,999990720,999995783,981652178,999583524,908133035,999872604,997193866,999737000,999999964,999968784,999999988,999999996,999999993,818052114,999979773,970771526,999999799,999940038,999999999,999994526,135423922,999996943,999999921,999990111,999973552,944966449,995905456,782435409,999999851,999988698,999999406,997003537,925213198,999999995,24873092,999999997,999888401,999999801,999983423,999999995,998226187,985875374,997075414,996256955,999999984}

    Returns: 999999989

  45. 100

    {81,13,63,24,71,27,76,20,21,9,1,45,95,84,63,85,74,17,11,4,50,26,74,74,69,58,39,73,83,52,15,58,26,13,8,86,84,84,39,67,70,46,0,40,78,40,64,33,89,78,70,83,30,71,38,25,90,81,84,9,2,46,68,1,60,92,32,36,10,18,81,78,77,71,66,94,30,58,46,34,52,91,97,60,17,5,41,26,11,17,74,80,20,30,82,49,95,64,62,61,38,11,62,12,36,44,69,5,64,44,78,78,69,30,14,4,89,48,29,20,0,68,96,78,26,13,45,44,8,25,78,70,11,84,11,79,4,46,74,83,58,60,40,0,78,26,30,52,70,43,50,90,50,24,60,1,24,34,23,32,78,52,39,7,18,84,78,62,94,9,82,38,69,79,78,79,16,43,96,60,52,15,84,73,33,70,75,81,33,52,30,64,96,84,79,97,49,75,61,93,80,91,22,83,36,8,82,92,68,0,37,10,13,13,83,27,63,38,21,1,77,0,18,60,79,63,94,4,66,66,5,33,37,27,36,75,28,89,7,32,20,59,44,16,80,11,70,21}

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

    {924662889,887462894,999999759,703886050,999968398,999999997,999989229,840797477,842520040,999899605,999998189,999999526,999842816,999788447,999997373,999967598,757985414,976607289,999995292,999995876,999999485,999986838,999999931,880412776,807627813,999872572,999999984,967441088,999999992,993634178,999925575,999882796,999999984,967146101,999999925,999626786,999999959,991655214,999999992,999825252,999237160,999995767,999999678,993386995,999999994,999938720,999996488,995142779,999998109,999999988,999957423,999999986,999999961,999993329,400505404,999999894,999998088,999658570,999999784,999999968,997857982,999999925,999999991,999994154,999990783,999984773,999999949,999888853,986957117,979266101,999999993,988198790,954242561,999996103,999999998,999999999,999991664,999999962,999834624,999999716,715116634,999931516,999999999,999872228,905016010,999599993,999995066,818732074,999996023,999999904,997648969,999999752,937104195,999678564,999913708,999997897,755144691,977572659,632256698,824504624,999999980,999940123,999982990,999683573,999990355,999999999,999666455,999999997,999989205,999999988,998885975,999999108,999999689,999999175,999629961,999999958,999067684,1000000000,999999590,999588161,583454113,999982372,999999993,999958231,999985797,999854193,999999909,25042216,999941500,999999423,999966559,956653854,946309437,999971605,999999802,999906224,316507679,999999987,999999963,999999989,687649530,999998352,999999996,999999996,988678787,997842157,993470659,999927153,589668194,999999576,999999909,999999414,999999898,961708316,999999653,999986213,780937189,947388131,992469628,999936551,999998507,999999994,999999999,940154876,409098913,999999976,956215459,999999209,995061201,999996012,999985387,999998909,999994605,999999477,999449099,999999923,999973279,999999675,814639429,999972797,982386204,999995335,999997613,999999865,999999906,999999786,990832949,1000000000,999944927,999974120,999999984,999999635,911342045,999997868,999999465,999951948,999637643,974485078,998437155,999997260,984961438,881833397,998429019,1000000000,999999996,999545630,999997308,999747381,999971850,999999710,999999690,1000000000,969895306,926521244,1000000000,999961830,999999910,999952806,999562186,849244079,999999149,996503389,998230001,999999978,980844005,954724744,998963191,999992864,994833911,999999999,1000000000,994408087,999999795,999999995,671561515,972718308,999989592,999997693,845385532,997079809,996353644,999577298,542782886,999962946,999999995,994348486,997823598,929021325}

    Returns: 1887460154

  46. 100

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

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

    {999999997,611018791,999999946,999900902,999999999,999999293,999999999,999997229,1000000000,999999847,971949767,999999593,999999927,999998445,682876470,999987158,998102787,999999999,997405868,961002128,999999998,664739729,999999999,999973710,910846175,999999733,999999985,999961177,999999912,995898807,994681569,999498398,994061889,999038899,999999993,995827845,998185626,999999960,999903768,578665902,968363132,992544834,999998161,971812852,995553557,999999974,999999793,999932841,374149686,999999991,999921384,551554987,973358594,1000000000,999999928,999374276,884182527,999999940,999999977,999999904,999961869,999981578,994650783,993477373,999999384,142476889,945337333,999991317,999999933,788141618,941116493,999999000,999987133,999814456,141307465,999999607,999999997,999999988,991236374,999986157,999999987,999841575,999999926,999998245,330530657,1000000000,1000000000,999084853,999999824,356327380,999994961,999999988,744519986,1000000000,999999920,999999198,999991792,999999998,57548939,974207546,917590317,999778334,996038467,999861556,634917472,999999843,839035264,974952370,999999039,999999648,999984747,993476806,999863387,979048838,999999964,808590453,1000000000,999999999,981073658,979927415,999998663,999999999,999999939,999999998,994073022,976234344,999999976,999999990,999999999,999910625,999999891,1000000000,999898617,999892780,999993765,999980469,999999903,999998624,977988623,999999998,999999811,994571594,999998654,999751158,890168396,999997065,999709327,999982000,998418480,999999999,990912504,337128573,999927810,991398797,999998555,915117129,598463245,606288908,991982709,999999909,999996099,625209945,999997935,999999387,999999991,999999334,999999994,999999982,999999954,999999999,999999767,998388579,999988412,999999680,999999854,999106431,999999661,999999936,999830864,999941947,999999750,490425242,998871762,999999885,999999384,999999468,999999968,999999819,1000000000,657362724,999999533,999997633,1000000000,1000000000,999998236,999992321,999815876,999638010,999175819,998533003,1000000000,999889922,999988128,999982109,488930878,999925877,999984242,1000000000,999999828,999917981,999999842,951113876,1000000000,971358005,999840054,259532933,997812034,996272738,998487715,999943004,995916431,999100999,999370060,999920613,993821416,999958934,998925107,999995489,999999894,999974844,999696016,951680037,994044596,999999833,999999802,999999673,999993292,999999990,999444859,999885584,999999985,999976944,999999798,999999922,445432482,999819618,990052009,999999964,999986622,997862183,999999991,999999990,999996947,999998436,14225678,990117536,998988925,997282088,999997199,999999993,999999979,999999395,999983583,999999945,999917296,999999997,999928451,753787196,999999082,999989908,999999994,999999889,999999796,999999997,944740848,999999798,776633132,999997433,999995913,999987078,999998666,999999898,999999975,999999971,991832550,729575597,999999995,999997931,999996044,999999680,961193462,961036137,999999109,999999288,999999861,999998507,999999883,998191883,871015878,829385286,380183629,999996300,986787509,996673909,593985565,999999898,974574041,999916106,999972557,999999984,999316080,999023837,999999994,999999518,980802382,999999826,999691533,999541769,914232686,999993837,999998307,986461233,999865601,999999387,999847145,103251188,664002483,999999999,999999999,999836256,999999874,999998920,999511302,999999175,999996489,999997939,931651214,999999475,995898702,999999791,999999603,999998363,999999983,999253140,999974721,1000000000,1000000000,999041730,999888535,999999995,992230959,1000000000,604812228,999997847,999999968,611797697,879489354,997376940,999951856,999998995,999999125,999999806,999998728,996364167,999999373,999999996,999826034,999999953,810667233,493426849,999999958,639777162,999999376,992377321,999999999,950882077,995793604,1000000000,999963631,999999979,781704899,999925010,999993569,173286791,999989615,999998556,999398265,983111866,998708532,999997233,999972889,1000000000,981024782,998815492,999999992,999999997,990655256,984331156,999999995,999999973,999978926,980506823,159792514,999961626,999977639,448281127,997900786,999999998,996541786,606666746,999999988,994026324,219914313,1000000000,970132226,985588332,999999906,999976261,999999998,999999999,999999196,999776552,999999700,999996099,999098001,999993091,999992684,997306698,999951043,999999082,1000000000,999999968,930514967,999999999,999999705,999999146,999692395,999999415,999950848,999999997,873096547,999999158,846524399,998398851,969869560,998611845,974878157,999999907,999999999,999999839,903745062,999999755,999999969,999999798,999548840,999998303,999887185,999985813,999999681,967346740,999999972,999999804,999999993,999999989,999237925,790457607,999999994,999999230,202943332,999998669,999981151,999999989,815356157,1000000000,914836549,999994869,999999995,1000000000,999069917,999999935,999999946,679727524,993309372,999999995,998182085,999999727,999999849,999557136,998525668,997726099,995005403,994051766,970391188,999986376,999860675,999999893,999967934,999999990,746658564,695765442,999972934,999988875,999958781,999999990,999999998,999975989,999988547,1000000000,999971422,591018677,999998560,999998053,999999972,410271623,998453749,996866420,999999574,999999984,1000000000,999999945,839881147,999999918,913179788,999966795,999999981}

    Returns: 6722247211

  47. 100

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

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

    {999999994,999918907,525970903,999201244,999978533,999998406,999919201,999999922,746135993,999399976,339400949,999485374,999997613,879305094,999996102,994821578,999999999,999998313,999994274,999999831,999980362,1000000000,999999279,158874738,999999993,992699962,999984214,1000000000,999999979,999913272,999993510,1000000000,964874818,996149928,741221370,999998054,999979606,999584039,999983183,1000000000,999963272,970507086,999958047,678596893,999825842,998143829,591038907,962264522,988113507,782413630,958406073,78296440,999982027,987742592,737481392,1000000000,999252522,999964032,999999989,999999996,999543021,999990212,999667336,999999995,240861171,998603406,999744507,999994552,404181338,1000000000,961828041,999388096,999895228,996873667,999995695,999999999,999345900,999996832,999989959,999999958,999999991,988879749,999989377,999996758,585220585,999999920,999999681,999999620,999999994,993334673,999972896,999916506,795890409,993618434,571899221,999111094,999999988,997033083,935157403,813260434,999999998,911381081,999999447,978674862,999999998,999999990,1000000000,999999408,999999994,999999944,810206253,998873736,999783982,460898857,999302042,119542489,999998693,997470334,999946694,954763214,999999589,999945080,999723716,999907976,999835349,974116026,975421852,162965243,999999925,999992515,999912276,998742322,999076478,999998485,982793263,999986347,999995139,999999996,999999985,1000000000,999942556,999923680,999108963,999998587,999783866,1000000000,991818577,977876731,953024995,990735384,1000000000,815194592,999841475,999991199,999979210,1000000000,999999998,998250006,615823804,999997810,999999997,999999977,999055171,999999839,999986401,999996844,999999997,999998097,999999963,993127296,999874268,999998487,999999846,999987949,999999861,994502564,999404368,869767660,999458479,856159676,999999228,985541487,999999127,999941305,999999991,997257691,999440765,999915884,980036445,999999563,999966368,999993410,999977513,993710162,992476672,997326721,825051640,999998959,999957842,804647813,680629685,999906478,996339414,197617449,999999992,998965998,999999979,999751556,999997703,996975244,982820366,999999998,677320967,995221348,999999821,999999818,999625152,999932863,247458234,998984418,999993826,999054767,998916789,999990904,1000000000,999999779,986838504,999999999,999999984,1000000000,999996857,999998208,898854888,999784679,900709930,999999969,999989368,999991692,407722219,999997909,999995914,972467872,999994678,990898176,999999597,994906643,999994929,999996339,991340514,999978894,999992222,909934651,999999931,999999999,999833868,1000000000,999830688,999999961,999999678,996267043,999999999,999999998,976664536,968557472,999931854,965735681,976822470,998676048,999997841,997536478,976123775,1000000000,999561299,999999893,591066393,999999283,999992284,999974153,603507980,999999999,1000000000,999005019,999684492,999999996,999758819,999801404,999984007,999939871,541745130,999678120,999999941,999857807,999999985,999917168,999996342,999966177,999912112,996725045,976950161,999941473,999999968,987450392,997055310,749792330,999999998,1000000000,974673423,993259727,1000000000,984829332,999999993,353518461,999999994,600126035,999999853,958445555,999999187,999976344,999993567,967763316,961114932,999856511,999999997,999214519,1000000000,999876030,963349730,999999990,999935359,999999316,999999939,999849874,999995099,999999865,998851582,999603017,992273296,999999784,999757549,977431294,997159790,999948060,801304084,999999814,999999989,998885552,993441488,999903263,999999876,900670330,999884203,999998833,989536364,998351346,999999953,853075359,994773003,945965436,998886824,999966895,999317254,999998338,999966735,918283974,999999083,999495487,999944876,999999932,473830761,999999988,999960775,999631807,999999993,999640186,999999965,999999990,1000000000,999771985,1000000000,998607535,999998705,988631468,999996039,999934732,999999990,999530254,999497134,999911023,998956431,1000000000,997364442,999999672,999002493,994828230,999372963,999995188,995373622,818988411,999999929,999999995,949175283,999995699,999996470,999999976,999999958,999999995,999975683,999999645,148282542,999320720,507018007,999993190,997996916,999999823,995239952,995802937,999999874,997518840,938319717,999999995,999733434,232155631,994772360,999999968,999999993,999999998,999999957,999985743,999998733,997761491,827320931,264422338,940121725,574609957,969904173,999884345,945187476,999999942,999999993,940421313,999999465,999180833,902772670,995370565,993531941,999364622,999999953,964913968,999501332,987379217,959116201,999997825,999999971,999999912,999855731,998723725,999999999,999999999,999979043,999878034,999999969,999999931,315329171,963947567,999984921,999999845,866859030,996294700,999976517,999936388,999999982,980890693,999900978,440230778,999008533,996475364,987903647,999951655,999482823,998177940,999997729,999999770}

    Returns: 3974577188

  48. 100

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

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

    {1000000000,999998360,999720797,999997229,999999945,995585249,998851642,999999993,999999997,999979041,999999930,999999996,999952341,999591016,999883262,999999250,1000000000,1000000000,999999919,999981060,999973618,977293745,999992277,999737480,1000000000,999999994,826790196,999977768,999999847,931209557,999999984,999996403,995588824,999966166,998011372,997321296,211445993,766222053,999999987,1000000000,999999468,999950811,999996275,470743885,996285713,999999905,999999963,999956418,999999984,999999997,999999791,999980644,695322600,999995262,999999999,999995207,996796788,997148610,724520106,994707415,992489110,998319883,999988606,992747786,999983287,999440463,865387142,999716182,954877899,999743939,999999229,999999809,468297480,992868458,999999980,995098943,999993522,999999988,999999308,999880727,999989946,999999811,800628801,999999769,999877625,999998870,999961817,844050845,999992302,999999918,999260295,997571147,768092430,932628717,999999981,998105141,998007374,999992264,999999999,999998865,950958104,999999998,717983190,999850485,999957958,853994297,999816618,703765944,999999999,999910997,999853435,999999886,591869511,999999747,999999949,999999959,999996423,998339374,994339086,992004209,999868778,938172898,999981872,999996655,997824087,997590099,999986642,999999619,999999954,999999961,999777048,999999994,999880601,1000000000,999999921,999999619,974100906,999956405,999581940,224310654,999983591,998837048,999999249,1000000000,667855160,1000000000,989183186,802055602,6573809,999999906,999999360,999999891,929981241,1000000000,999999973,1000000000,858008717,1000000000,998765592,999928752,999930485,999947367,999999988,999995631,999761351,956674578,999952768,902500097,992190478,999995711,999951270,999994770,999917316,997320840,999999998,992903439,986157842,993302850,994924793,999999960,999999803,999978009,999996224,501295241,999222396,999999827,900393680,999999995,999995672,996444515,986213817,994381420,998297253,378623462,999999974,999999844,996330589,999999475,999999995,999488137,812902248,42719943,361544612,999999995,999230767,999999832,999999985,999999776,909842517,342892151,999999961,999999999,950207347,998610352,999888183,999912867,998309121,948419537,999999719,999986026,999829934,978651753,999999958,999999990,986675772,998168505,999999990,854578259,999999969,977280561,999923792,999996910,985147345,999931256,972349223,978476637,999999967,983219078,998808862,999886727,876192173,1000000000,980999642,999999884,999999985,999999997,999997473,999951613,1000000000,999811581,930697630,999999571,999936462,999999998,999999951,999965270,999999595,1000000000,999999981,999999853,968301199,999999974,994990201,969444454,836864589,999999993,263944519,999999847,999997421,999999596,832347172,999997257,999999968,999969081,999962020,42658401,998793357,999999974,999966788,906783483,937412159,999999959,999995249,999874467,991321438,653288302,996664905,936084950,999999391,999996840,999999756,999999734,999598918,999829587,994583135,996968052,999999405,999944318,999987439,999999409,999493202,999804340,999101838,999201679,832730018,461166743,999999302,999987510,999992990,999999993,999999980,999999993,999999971,999992916,999999929,999993184,959147928,686405375,994183858,997338208,999408594,391126477,999993216,990741761,999999998,950165375,86895964,999999988,531353071,997791674,650134608,997744909,965537110,784563510,83609021,926237816,999440540,999999185,995515073,966520533,994125079,999960008,999982645,999999770,999999973,989318617,975396437,993685304,996649065,577736213,999994434,999985209,999999998,999983984,999944194,999376401,999999999,999950391,999978209,999999987,997437907,999265738,999924619,999696961,999999996,999999961,999986868,997558372,363676425,999999241,992042528,707083099,998829994,785284135,999999994,999999992,347120218,874324899,999999895,999999737,999999999,998220858,999998190,999999996,999995375,999999998,999999920,324804102,990444540,999999830,999893153,999999504,330621327,1000000000,999872786,926787467,999995764,805870395,995232170,999925395,997393191,999999990,999999983,999498020,999998782,999999998,1000000000,999995452,543531018,852966331,999999977,843389646,994977462,961799303,999999915,985859693,999980587,984331218,999989805,999998988,999996482,990744875,999996124,999568067,999998908,999131086,999999621,999799855,999999989,999999967,999999765,999993905,541335356,999980830,191471199,999999934,999985745,997934937,999999808,999999996,869960869,999969532,999999997,999969977,999999534,999999979,999946823,999888101,999986768,952279509,970166038,459746605,999999781,999999942,999938711,999975026,999999807,535089761,994605773,999999999,998504409,999999900,1000000000,999999999,999999756,919857523,983003433,999543581,999999790,997315408,999953741,999999995,996288666,863179833,999874883,999997220,997829202,949322897,996018633,999999999,999999994,999999547,999999461,937008375,999997750,999999475,984143997,999999873,999850441,999999921}

    Returns: 7208235950

  49. 100

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

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

    {999999888,999831636,1000000000,581601776,861340145,999999837,995937718,999999058,999631298,946284911,999999410,999976454,999999996,999999937,999943840,999954692,999999998,999900927,943408429,999997880,920639487,999999998,999999557,999992033,988637873,999999369,999999466,999559565,962437805,999999857,999999030,999885626,952008993,947274840,972425213,999999979,962808727,996617361,999998432,726403569,999754605,999999947,999999152,999971404,999999034,999998561,986182779,706136497,999979399,999999934,972163143,998326752,230922741,999998759,461252173,487186207,987809937,999999988,986759254,999996088,23901379,999064828,999999889,992203201,982411319,999998089,999549965,995103607,999210649,999999961,999999913,994385872,999969216,273562823,999997038,999998237,999796507,995015898,999499786,710310366,892766767,999999985,999999965,999727378,999996555,999995556,748485084,712475693,999999887,999845502,999997348,992621748,999999990,962602484,999999955,999993827,951537018,995163457,999993587,999006173,995930665,999999654,998944283,999984121,994455882,999999284,999999974,999999961,999999994,993592467,999871958,999999989,87149004,999933233,996457854,993772485,994004464,999998510,998299585,999322167,995426110,999999925,994951726,999963359,997613846,999999975,999998574,999871016,995927877,999815812,999992436,994916535,999983326,998872870,999982609,999999977,949328047,902392835,999999999,269306773,999999998,975241779,988954045,999998541,866906646,377009064,999999945,996412195,998832079,999668808,999999993,999821599,999999998,999997549,999998881,999991419,999999996,999999915,999946825,999965038,999999949,999999154,999992265,999999770,995705393,998002797,999034913,999999787,999999918,999997204,992374827,974995292,999966870,940063468,999999998,999999984,999999999,999999062,999999996,999882087,999999978,999988062,999669489,999999846,999981058,999994338,999999993,960611270,967876581,999999837,1000000000,999194212,999946896,999999999,999999847,999997141,999999911,973600126,999020502,999999859,999999996,997616112,999999996,999968060,946821238,999999675,999709419,999999418,999803792,999877784,999928888,999985115,999689960,999125196,999997695,999998913,999999999,1000000000,1000000000,999999999,952545763,999932206,997493917,999160026,909394035,999952813,999999996,997664272,1000000000,999994277,999978250,999999496,994026329,721466883,997627728,999999991,999999926,999895208,61492938,994441767,999999796,455217611,999999991,999999993,990564923,999999287,999685830,1000000000,340797871,902650641,999998256,999020144,749283568,853281622,999990226,994726883,989144891,782161468,965127639,999996070,999983440,999999935,957899886,999978026,966056510,998117168,999994121,999805743,999999747,999999713,290977016,999999999,999968329,999999995,881345714,999997565,928493270,999990465,999999969,999137954,999972428,999999755,927676679,999999994,999673289,999853365,999788843,999981589,999758240,945573663,998307305,999999994,999824469,999998550,999774520,999999999,999999988,999949121,999780327,296089166,999998519,999123524,999988986,999976514,1000000000,983599391,830107644,997671038,625568631,999999997,999998901,999999999,999991986,999982631,999999998,999991707,734034465,999999913,999977708,971011838,8716554,999993799,999999354,999464812,997676230,999999986,999988655,999997530,999573008,113162742,997628285,997489444,996208918,216271324,999973285,991207571,999973597,877419328,999999978,999968351,999999905,999999948,999982785,999999913,21318889,980270103,428216225,718499359,925131271,999992391,999999994,999999996,920835406,999999731,999999692,999996096,1000000000,999999998,999999842,999999936,999993413,999959501,999998002,935060056,999999879,992527481,994982300,999999564,999998445,999946684,999998480,999999525,999999982,793442997,996307678,991855314,999386414,855067534,590354277,999823789,999884263,988192744,999939691,999999992,999600514,999304325,999989326,999998081,905212984,995453498,999656596,154465018,999500133,999998916,999997914,997657261,924034152,999959504,999999996,999999802,999977129,999999935,999999662,999991965,999999667,999636457,999999866,999285347,999999955,808846454,999999777,944072703,848410904,999747291,999999961,984270769,999664276,719501997,653899292,999306310,935330348,999977369,999060628,873948671,999787163,998342030,999818516,999999996,995994443,999999981,986142397,999999981,999999924,999999958,999538630,987769279,996522777,999994833,999786959,999999991,999999549,999999999,999999995,1000000000,999999985,999999896,999999746,999855381,999999972,999995763,999743741,999011308,992077732,999759774,999999990,358125481,999999987,999999685,999979539,999999863,999999868,999998970,999998933,999946621,105908988,112585501,872139210,999999861,999997427}

    Returns: 9355544787

  50. 100

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

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

    {999901700,950023791,688914738,999999998,834304054,999999997,999977762,999999253,999999984,999999910,995229111,999997849,999929343,993072665,999999185,999999998,989651397,999838122,632061169,989993879,998578345,999999640,999971112,964136609,862838320,792641566,847381407,999999997,999095051,992930656,999973306,980807468,999999912,161309187,999998328,995998714,999999900,994881848,1000000000,999804066,998245422,835166609,999956579,984738093,999999995,999869448,999999977,999827961,999999990,979163144,962352400,999799533,999999991,237470138,800700807,999999809,999997964,999999625,997577978,999637316,999994355,999504360,996039780,999997203,999999998,999999559,999999996,999999996,999994766,468640641,999714471,964988781,999999966,998972581,999998869,999843337,658213363,999999969,999957864,999999988,999999989,999991885,931817633,990986573,998983425,985661999,999999968,999975282,996190166,956341392,999999958,999999646,999999435,999999980,299355305,994892468,999993826,999999135,999998903,999999966,1000000000,999999580,999999437,999745621,983361033,973466491,1000000000,999999985,999999691,936317179,999984899,999999990,999999965,999999775,994038031,997476795,999813087,999338782,999996751,999990364,999992605,999990059,785396280,999999997,999841325,611601017,906282193,999998963,997852816,999999782,999999868,998708591,999999925,999999979,999541744,999998794,928903606,999999941,999999962,999926935,999999185,999998087,348959177,997237722,999999698,999994680,999998718,999997000,999995435,1000000000,999999980,999373530,999976352,483308750,999999916,999999959,929809220,1000000000,999999629,999880182,999997379,997901941,843768109,999654927,999999455,999999812,1000000000,999999837,999979708,951173702,999999195,999999825,999999980,999695702,999991335,999631478,997747697,999999999,999130952,999999289,999997056,890265306,999999886,935071700,662170164,999990764,973763596,999999996,991529493,999999623,999951834,999999896,999999077,999991708,999967682,999990387,999999993,999999997,999763140,999997719,999985529,999629009,999999816,904783185,999978154,999999997,993423494,955998359,999995135,987044808,999999989,999918873,999999770,985318179,999999050,984897956,996587639,967057493,999999997,308456478,999997171,999582128,999999582,999999999,999999793,999985287,912284789,999998595,999999995,849992636,898877802,704321676,999999530,996974133,999988521,999945811,999987380,989645681,999994782,999999988,999991647,999999812,999996051,999998786,999986521,999988523,999999985,999999993,999999984,986392571,999999807,999999832,999999526,999825746,999996335,999999974,957538806,842293664,992723360,999998417,991259246,997600294,999999985,861538988,999484492,999999998,825389640,997818143,999997226,1000000000,999942342,999993857,999999331,999985145,443810869,1000000000,999988136,743753950,999999773,990215209,978347405,998976385,999963170,999999999,999925192,999909371,999843685,982541159,997955144,999996899,999999974,999999963,999996461,998556145,449698563,999983700,999999992,999999880,999831418,999990836,999999977,970681487,999999999,999999964,1000000000,999999993,999998227,999942557,987182904,999999996,999999614,944350181,999949703,999994135,999999996,998692682,987591591,999999988,999987292,903592365,999995605,999996248,999999963,999999970,999999994,999999985,999673868,999999843,995732624,927053024,777432918,999889539,999999983,991748775,999223839,844557793,999916441,877908927,899130344,999999998,293575311,992323325,889919832,999978750,1000000000,732501946,999999991,999999987,999672502,1000000000,971280985,881698030,851442657,227814296,999741400,101399237,902646478,999999858,999999880,999846279,999999882,970209092,999996594,999999759,999966773,999999990,999999556,999999998,998346648,997832513,992961749,999999995,999992763,999938411,880944299,999451212,999999996,999980109,999999983,997179748,999983128,999999992,1000000000,999923793,496189357,984162023,999638165,999999999,859037852,992083442,999985631,999999826,1000000000,999476763,999999976,996187793,998899089,999998861,382209921,999407500,999999993,998537028,999987620,999979125,999998554,999999892,967500905,999999989,999340475,999994263,999310848,999999954,999312377,999997335,927534411,778002387,872688868,955593628,1000000000,999999987,999999950,649917269,985413692,999989373,1000000000,999999947,999999397,999999974,999974729,999999965,554634105,999999966,999999646,999999996,986884135,993908039,991430012,1000000000,999986603,999992862,825429753,996941489,999999947,999998902,999999839,999872058,999999276,906606724,998270184,990972657,952172224,999991018,999870916,999999481,851801318,999558994,999996579,546871201,832943805,999999944,999999995,999187980,998641997,999858331,999999999,999951796,999995493,999999983,999480897,632564386,999661661,999979443,999992028,999999981,999999980,808804113,878887091,999999823,999999830,999880264,999999996,999902275,663192633,999839091,999162118,999999988,997525450,999983705,999999641,999151483,999999996}

    Returns: 7959204262

  51. 100

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

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

    {517,36258172,3208,2181260,21,600015,16,100,2,79428,1,22753050,1281286,82915,188,2634,497792112,3,122433281,2,147984,988354,1117,734600,187404307,35,23381,1826,198,16422804,355459,2731266,181949,22,572159,43,3,78,275616902,9,4173407,285773105,19,1,410,85392,100845,9148,2523974,88684184,119876,100156286,420012,321728,8758690,145074,40,61,58582358,902,140079,19,13,78,3,18024,724534747,11461,2,1539,4,1647,108403,3284026,7457,59,162900,1926,244942506,1997,60190,9678802,225784228,2,87878721,4,8524304,1872,3055678,56847161,11803,1330,7195,16645584,6311597,1697233,3,832234,2007165,14337,2502,8106773,95199,1506,8373,2578,202619,100989,229,4979,1060041,116688540,36338,1577,13806,108,11366761,2035,86438517,77813,3,49,3568680,226401,39846418,248703583,255858,16424198,66399,18,5445,3,66,1,1,222619031,116092091,6849,89222184,496,16093,6998694,2991987,70,451,72,2406,1183902,44729265,2757,36704715,522392,83626,3,8619917,2,18,8082888,884655919,2549,1768,44200089,58351,4,17575,13144142,150245462,2870867,256278502,131,71364958,7630837,9053,445467868,13831763,196314,2036,783638779,27893353,26792,119,2,16178418,2445,501344423,347863,12,2029488,2478,17240398,3,30,68932013,10,374272,150010,802392,272313988,24885822,138989745,20855,2397082,4796,170,1,4555874,1524142,1044,514871,834078459,136,135,68295385,1,332,74,790,1339086,50424,7362704,9085943,123993,869661731,58,770,1258035,173959495,1,380159,2570,5,253587,81,4211,1,4630,7029347,115383,575,102,15107,203549,4636107,7309380,8,1,963,21,60,1,1525,11320,1500489,17981,937064679,3530,1712,116049,3,348,24100510,4906437,1,278849068,425734,174691,262020456,111614,558933603,63,84,37793684,2,359271,47,5814,768025407,198508074,8467796,1822660,265,23918123,10603007,475,3,121009352,251230177,470701,3018619,34,43243,535,317,333,64551059,52,1279,371671899,74,36306711,7735,161,3321,18670013,43888,3413683,16725,3853,1044,29678,5,184069292,1,10,76852523,2231808,56850,38348073,27687227,88697931,423380531,1202128,89070,1091367,22413208,8,79,6515706,1237,1,130,22953450,60401,2421191,410900149,140,148875547,484956,104807,199,745436,101972,495448,2804,217,14206691,149329,3038,83,12094,2888,1,95,179249,10404,6931,182102,3573,2,2580167,817674944,122,94,57742,47334549,5,153410418,22357098,2,167018,430565004,14467,196095,1037223,952874,397036,159207058,16,3,2,199415,385166093,117,1890,1318778,9325646,9183691,5990997,578802340,41,95,5193,9,7490,1,3,3214,128006,244,7752,518982229,11,144308,2,4466404,28204663,179,510,4264,7265,3,858,6597658,319,1,18,1,285307,106981,5652190,4038,18,3595,41671591,53623,251479445,1167128,839437,10,89,21173465,979870320,1690,62245232,22880024,39179,2974,428786,137,20,34375,1623,327,924137554,5,5327608,61,14,335056,19488,842050,2289633,1,41535867,12123,200,2206800,820324,29,2608188,31574395,104,1565672,1,6591571,30909,1049080,80240,8,152,1,5610327,324658094,1258374,250557547,1053,50598303}

    Returns: 204778

  52. 100

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

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

    {2669,44972933,40714005,37874852,86698821,8414,79347215,44568407,3356977,28717,2682709,87,899,49130,120275,14,52910,409063293,277,108395,238541,68836,1,34,384501,66,111,1014,22,12955,115637541,1,3,6515,9244,284430497,80946,51643,4,842527220,484061,337226,1,88448868,484,13813,14219,11505,7,17,4801323,138,529826,6999,9761323,540297215,1107,322146,41854,105487311,6917,239820097,2,752152,15,270,190592,2881473,1271,15978682,2301270,65341424,165,1101,1599,1,167,4,171,54945,38,641262575,14,28509,6,2690241,246312291,7,8917854,488,10069712,5,1484,258724031,27255,104379618,4,1,579,87388086,362799,7078362,18391668,85,364,46544,308,25633621,16999367,202408629,236736,289681,59,71971,11,7,13162718,100804180,11507514,1,13,20,120545,4,39921679,5804,5754,96615883,89839,73620,93893,11,237002723,3,28,13424547,1,5642567,1033,6283837,22,1270,7614131,90829782,1381,7,67018,7,14,1,2122,61717,24549079,1,72565785,24124,712565,69279648,172,1,170,32245095,6467951,37,1092,1,61951,136,402100,4,1699,1,5536560,125229555,328248,819530,419861638,4140840,359,3,575,65,230997188,15795689,31,93,1100,5338817,9,28417194,22584538,27871165,1308831,571,56076,105274,1758,53,8031,325249372,627468530,889378393,62829470,137610,302,68812,8981,4112135,19964855,625,21011,1,1182,35,12,142566,663,71167524,22514127,10168016,48142877,18,2783,28,8,76080915,138943,53407301,21,2,60,1840,33,499649451,940,15525746,1303248,24893240,25038172,369,5826307,2,143662,1053827,20902,94,1565922,585535,1120848,6,4747,1487622,262448,2378,1,32,388057,1,86,161,337897,230545999,6,24,8,61,180,11676,1407051,901277629,345849771,44539,529208703,400297,4,4,45242813,10,267310077,185141,5689158,16540143,1952,237294,7,16636843,216012,36060485,2493600,202657,510,871707931,140,2525,1,329,40684,20,237916129,16592480,58171,1415,275559362,30,14113,26985682,4120,217,3,9153277,170489,239940026,28,32094,761409,37742614,94970203,40338,131409,1737,69174153,9040005,140,17450414,6879,15060264,473,3131072,187156,736449508,17879,649,260857,8441,1042265,1444,4242382,6566,55,72116938,405566,268,1433299,472932,563087,134714689,66391834,4,2543673,3723460,386911576,685,140827,452094,2,31,16,3175,23,23477,52848,6252103,186555,54154,1,873,179656367,99175383,42974049,3847,35,2,24829,11837050,6413040,51,5341,4703,92626,2891814,233842,55043,239227286,57,1234554,1444,1,339702000,277879125,259688666,36380268,384223135,1,10682709,330283,4296,7114,31070141,213,122560,139,35971418,105267671,10572945,20167,36,1,8218,80661630,59,66190578,1776,644306,2,6238,6427824,4035,15,5,457,23127,401705130,2510707,4,31,66970,9483161,1525490,942196,127740053,27159,5,35386592,154561923,224478302,8508,46,4920901,3202,79,16,297663656,4265862,24395,1233379,5959981,354,68927274,441281957,1,1737685,11967,747204,209908652,11,17345978,1065713,16332,1127,899627060,2,1125115,80577,8,324004,2317322,1102,218433936,24020,7339423,73,71773,14864464,37,13594851,112141419,198913650,87,765,913,1689,5,102,473905377,1220283,13218,825,2,21,10,1400,97223361,26563,32,1737189,6,96,300399380,1324515}

    Returns: 70776954

  53. 100

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

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

    {487,2992,101756792,406,139420262,7952312,218,31778,115,1,41395690,49024,3980926,23547,14141,604642,1216180,527709,411,855510638,24,108728,46,61,109724,6952750,694,1307549,3329627,3,26268598,315,481826468,3850214,167,503656,94,2844468,30425,826155774,1606,4471639,84563945,5371146,2706,19986,127156369,81445,168,31245,261787,131965409,177963,143090,19118,7,262,2,4,555,142742588,709929175,461,3149263,221,53437960,1105714,2901746,82058501,13,448572,1,813709,72620148,33598444,141383,3,50,40,144,5767299,4461,164759,56868001,106647288,11405298,6977,3260,458957449,1022331,1,998589102,61,375978174,47,50244524,55249161,8,5,2,25828762,15432,3275829,1,985987,1,49576,22482962,1230401,9824,69,786,28,1010,19,497561941,299658,2749234,57745615,66316,6718,35962,46539,262,372165257,1402,20975,10,10266834,2,2645895,83448,78824156,80722,51667,33,2667944,4351,2544359,1,85794566,137,316,216022,644,2,1,51,6285630,2093,11,1,19064940,856,8701,9,335,442,22,484098,1633874,832211320,73783658,4069,1322746,6025952,51,5526284,3,18263,929349,15482486,535634351,130257158,8,16151243,694663,2389547,3422355,1783,9210587,5613,313980,2164,5,737,534071,838,2653826,30919506,868895381,79679,164617,94731,251,84626043,201997368,29076062,943425,3,4,5,1,1043452,27486860,122,31163,4811522,5400,120818,117454907,4,9903,20546,580770532,36184605,154378826,1,8,17745,79968048,115059198,293,297,11215,1029885,25992271,2874624,57780,5,35,1254265,154,815008,405,9333884,1,8767884,24745286,171,14373823,4050,5369,600342349,629119,54,647900923,21,28014594,3228,34,261091,260575,5677,63634,11186841,40,17665790,4907211,314287528,339198150,4149,13322253,127581,75,1283748,478,8085,43799615,53,52558,66246597,3060,263,79088224,1407080,163,14,17,206448860,183,6823856,56877,12507036,71622,41,167923,1,759154459,96218,1827042,16,7399888,299561,7782400,1066103,18829,30084953,70850076,27952,292798218,8,8,1298,2,47,31,2363,1894538,105714,12964,8074144,1063850,3237,198,2349692,20662608,35,9199134,835,333137408,1,2,658627,106950701,32427,77592,10,1631976,13454,22529,3,3,306674240,6871810,70885,1,603,567,1814,18786360,57,28152710,37151792,516,104616029,10706278,3497,852,368013,5296,2427,1747848,1,6469,556,84675,103525274,1,2043528,3361124,55369,400275,27265299,573,7679139,55,142347493,135,10754644,87,45,8715,98470,65019738,126,74,1177932,115939,127259468,392,85352364,50627901,320,64439,58662034,16972528,7369615,104101,67416,732,3,186,30650749,1,1,6373,3681,448651463,175,36849,14,16926105,14331,1005,117913,44787866,35,115,32,6,230086,3798,1139,128,40,76991191,396,15,32,303572,317,16168,91506,37,2,17180,6488,284278867,3514,1126,7721,41625222,23001835,968672,74,77750,2202,57,34691409,298951641,2301616,77357,6744,70752842,12828353,29,10,1,5,2142752,462502,9494,4,492,4633,217395981,2017,1999,109092355,3290,1301,6216673,6,83482,22,1,35,13435,10045,10,12,5521,45239}

    Returns: 79876

  54. 100

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

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

    {52721,1,713,643,298661263,99033652,1271,866170724,28009,14,3201,2155779,3145,23682797,427194362,569,1248374,753578,38,202,105,2731,41664959,289,22555,71,37477,1,628697,25773392,1,405627,1932,69,155,686,10,18835541,1587106,297993812,1107,1264,1858916,296039,198130968,1127,3004378,3326,506,52,66099699,14,15350594,179095,1,5916,1609,828045,15407,82616,160871,23129,109,1,19,126922,21728,556871352,1791,249440,52521461,192,337,100,19,191715,79,170142417,1579,7891,6996,60801,30708,11,92531,433249157,976570,1982,113895722,220,1593449,8951476,634,13497602,33,18606,70995,5,4845,253385619,47564,2857610,13,923225526,217441925,399176,24700,5,67247,43959788,5266040,1,3,28280456,3,3,432,1,73169,56736881,665828715,1775583,538936744,7,4460211,192796224,90,3300,1464919,188,1,27959,3681,319,23247807,35,318,427,39344,469,25,124484574,534874072,101251698,22287810,1,318955,108,3082,8592157,6451,232623348,14198,464409177,137466897,6161507,339,2782,51,18932,43687856,2242,691,16,198171,130835534,28059457,668047405,20872874,113,63279362,938981,19,3577342,159,9,352609710,719,4978327,1012,558516477,1,276309,32441798,721,628884862,228626119,97,81946,2,1983883,31,2,2060,4475981,142576358,76,15472982,667,1763381,11763,44,1978,2423999,677,2192,54036186,1210821,4723612,6,64,2561713,192,209,2,804279956,2068,59538,1,97830433,5,3588,519940,4,23262330,327287,1088,86319828,174,44750319,206220,4371,2241,3898035,9373220,219986176,2056,639,83326,4412282,494660,813021,30193,68970,2996059,1188,20302,1340580,110631797,11214587,2409688,1474246,1,93,721684,73,1,33,101583,114,742869,44527859,397057373,1,2083,279139,164155,301,354,883268,2188,713,64,168896,7443526,1,356896262,93955,500475381,24304081,291990663,1410197,29130,34370,5625795,222443592,12775167,45514745,9,12276,878239,26,17,6537818,186606951,66822940,810000590,2036,18,142,54957354,54,1,172712756,275,91772012,564314,82593904,962,154334,273,84330,38702,11294,431195,43539,88,532882,17,216870,30,167,12907986,10080,11,2779,831908665,3608,75645,1,44521432,10846,15974,231993,25704888,26,8124,511016,9,29,133,483133252,389142,651536738,460941555,380,26402985,355,17809,25,1820,31941092,67294811,1,52,9,1297185,12842,6,504913,4973,84,27229,3,140258,68846,37739,26359,11720,576303289,26734,106235361,8,152208696,26751,348928126,883934416,11367206,34339,217,95,9,760,7,13522614,9579,11,28831,471,179,246324,1,1639,119480155,474,299512,14655737,8838672,91,854472,37279,21937,67658,15117137,96167,28282422,485,5300333,13607548,456177754,2887,827423,17,102,5350012,51163707,683688,3175,3,46,5254,1244,2961,137145,40009,262204,1,3945,1290063,153328159,3,4957336,735757557,122605117,450,3399,90749,727703776,279242,641,86948681,3357104,3829,100,416286,115,32126945,26703025,1,204022033,18459,675,98662,156591797,94103,72679,1,85834,32300,690195212,99623911,47707,185,5160,3868528,593018,21,2,27526668,93032942,645094118,49429,1810844,1101066,1706,12144214,140,143,627506,3093376,1923,11465125,52548042,16,206776,922,1364873,13153978,578061123,1906,2013422,1,124031,11137478,12606,1514789,2684,5194,66663,156757,2560,1,300,3964226,894424,1927942,132526268,9270716,5386212,578689165,2981968,101458219,859936,2,632805,750543707,55325,10354,10,1,139,3,6439696,156,136029416,393996909,48473349,4957,32698,1,26757}

    Returns: 71279

  55. 100

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

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

    {369,1060,28,665651889,190,2268866,118449,178548094,123,652577,61,496363449,2,130,87,354,192847,190213,81746,789,1,48,170,32033,2050303,14,164,91962,29587,99619295,24027794,5736943,36078,3,422671,33176048,774687,938112,45269718,69736,1434,40793,13632,362237,384,27,53083,150,6438295,20777,4,968837,5,5536,26182678,137,44189207,4935711,703,77323929,57186494,575166,266747,189006561,18293,2500823,16239540,8467414,1217,24,295,168650534,876532195,4409560,880452,11018,262,429,5828232,33947421,19167,2,5,70,16529,741735,14834,27,11005914,69230,108449,31486,8,14671,12,16571876,85,2439490,168199,9872,158,111575,4,70644620,154636,24,1,17,62978712,6,1,544527,4643,515484913,34161800,355,933,6,1844,1507,1116718,2220,350592684,1046392,291,33339,4009,131,1,14821,242361,490954362,165535251,11694861,454201,18697342,1071872,516,54182,4,109733,19,237,117528,1754145,55684,96,573707,28226868,2,32546,800829,55,116621,17,56820,1,1438776,192921218,8850,2,135741481,13955,3561540,857390,2889193,8081,12523364,37865,6,233655253,3345,2189641,343,6,81,71,13985,17363861,635,2,24,53641,3121988,42661124,3,62,410447182,4,241,406257,16234307,199648515,1281432,1135706,1294374,107138,499422,88,10089,389991,12748,462467912,11,21880,10471021,9537713,54,68344,2809,5142,6669,12693160,5855756,15,408757,10,79797,642,352,4657,935636707,194417293,142,1320,312969,150558,7863,40,1251431,123209126,2,81,47,1017,1832,25,35,19684670,30198,1041,143,2097,18379446,467534404,171855,173,42317526,21,48376,34312,2084596,386368807,41001097,1,14914847,5463,175980,1916667,150444,5,215161458,800750,248821111,80,6,6738,1,40746,312706,8683444,105,30069,118661,21,606725,25,2051786,61953,65,107539133,50693729,4768889,515,68753787,102013,92473,41,14765033,474,4418,1,4285,1,1,9577565,65907809,39345,1471,21218,222992210,1098380,289089,1563,901904651,24329404,40169,283,30,1,12017592,4,44,1,37,23806,28634,20,1,3431,160,8920,229,180,999597464,149993537,155917647,904,29,87,429782,32908,3,7176,64686335,1082931,11666192,2309350,33,1454894,17266718,26495699,6698155,839,15095,105,368310023,134842906,1441,151673163,2410,202,1277,1,2431,95399,13,659,110215,489,3957,334063,1808,64,2,1,173718956,507705842,3299553,454582,79,4764205,1,60475858,255632,9,270,2781,24,27072,1701075,16580,165,8093074,113,693388,1,6492,11333,49108,11595870,92,67,53821,4037197,13370646,42826006,1,138,67172156,395,163966,16666,39,484,4592422,2,2,647252007,185,38050,25,50155,819219,10,26,196668801,272543484,5,2373,6498236,720659615,197992,49035,680,2762886,27121,122141,1057005,650,642,40185,795,415265520,209409961,6266,95101657,1,39020,7,2367,25722,122,59699,94,9,43,12006844,7266931,87835,1504,983125404,710544495,35763,31433958,2318313,474499,36809,9,4420043,11,22425249,79320,84148585,453,23232,29,128950,302716,51,2842547,758596246,824678825,429511,6333,117373315,1735,209478686,25081582,19,238943,44,1,6}

    Returns: 13

  56. 100

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

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

    {260967481,143161157,143446986,714499127,744460284,178087801,736579256,999063736,872670561,813715578,764856639,941272609,108350760,892192362,304899394,877689047,693859742,738721206,35404543,73174709,374619085,167394275,744306371,829346392,710354533,390063689,100734428,179340652,170188727,460620213,653996935,232769713,45505940,764538834,137720711,487315592,899687655,308793781,165024060,967720089,602286919,681997112,215084413,764164918,946531168,828282318,350104119,542275485,141515998,725279000,654206347,941559195,933986741,260560867,595218337,552205273,335324289,980731402,746540496,572534056,791178445,159732548,926156676,630843883,892070900,155521794,551433323,571708108,444474064,967260719,621873340,926763350,962602096,251176706,796801939,385973918,834483192,915365134,60398810,576916953,495593152,373736226,175009039,344382139,653587930,895285780,307775241,959015141,405122566,337312076,906515661,395879499,662222986,851242821,975184576,557145085,438741762,687942868,751982800,898514748,226473374,345509213,214504535,262394780,613898359,648839614,650334849,389736431,331076865,768363666,637949373,356796023,119649835,862261100,167778238,878695781,572364226,741650644,219998086,562203641,149094929,317543558,858664625,848776622,224238599,949108344,661975764,894795956,93184051,797246689,851858087,716761198,30130541,535318786,94552464,531995098,902458055,470437353,898706614,169095491,776648058,901034275,849801434,502803800,926077648,268806323,546184814,680254544,745435258,485925384,692904834,141888766,601370315,582749271,804143649,673888977,199322754,737000737,884587874,648100180,265909605,712314570,248336852,609816263,380841822,152459975,450895440,264785296,547311774,54326109,733452476,713599719,798914254,647028620,892541830,204262020,269483086,754018439,237989894,614821316,298732064,281756887,714194930,158309774,303124125,590604338,417740908,784934636,949061008,217755972,810039787,871761400,311372443,576484013,529240971,683870638,308187546,888162431,358250576,562280936,511187468,838229809,506806790,835882055,320909814,630870574,386217597,429911632,50159501,960696229,25318254,696442933,744478340,581336988,399983594,26905110,664030557,787654249,802019979,423798522,594487622,717726235,402364132,892123293,84455043,915463036,122343016,777431363,285253458,535107743,998539418,456279632,243167373,293932796,471441414,659693144,494495555,425178838,395607098,709862130,638560828,260953400,477222385,988034749,172657664,450423631,755761325,713871816,785804121,394129183,304821522,808623624,145133836,624931864,183621114,555148526,785117828,792437662,696923838,803023773,552111019,19818034,787565268,211391996,614016843,499450751,73766139,596553758,924183920,492934407,906386186,453012182,258146834,502767430,951961268,371895486,642738398,542363695,689904979,568151895,564165129,590722124,702472191,852091261,183746994,202368775,982545383,987710854,287730929,679023064,906881605,798699069,383852278,249493589,345735620,976922438,905526026,552897342,190096168,590958203,195048727,792448013,382609090,4610725,538879881,491017391,382452627,709035394,828653315,227193994,981026555,557250645,364067236,222219272,139250188,600445499,195418500,959956540,844947352,242233732,388397076,815386340,495031059,379861891,233250077,868681186,109339628,973387309,461709647,146849441,757309101,983120733,814466389,638225496,827690148,918640488,285188877,228232331,348088931,808949710,480403215,506221317,70481401,904228732,915464153,589770395,210441218,867965538,316323520,676924441,60942263,393627034,253701229,299644161,470280340,981622346,866570942,990958878,560968144,834863685,327190190,272014712,316577254,146345980,686324756,483910182,247362790,556153192,570656349,360625789,641396423,792517442,273221119,978884720,790085851,552781005,341420041,44548250,445553084,16807184,95607402,698825793,831841223,399384491,435203803,88910101,840240489,592563057,976834290,715262914,494327447,924769406,358110744,233846931,814005768,621351276,956134121,574354011,419068173,915394244,515116387,850108167,217082639,959243201,768638230,945179310,114533818,110634025,801268773,549099690,302755309,549549383,660449361,306371752,279323960,943392185,14406218,192083039,541182839,863052744,883144392,807913530,464610836,75656559,331974044,635540875,327190856,99362373,91215228,889239040,266273905,971955659,887793550,534888993,18556483,634991124,37034961,503065291,505226915,146861878,596671525,308866742,401374845,751544610,556970088,479529617,767835806,425977452,451398098,823996340,217637386,30988023,210992560,326603660,952283313,80687076,88456530,396511212,79085628,751677024,366807883,355665500,514777545,880516623,133164550,354373215,74676483,381189458,544428672,216380703,438152023,120214012,33572175,358389332,227199634,207366706,367187404,123975643,357348734,538524277,489689144,388300469,575079744,143768746,287699646,713907060,144022754,398309959,91940589,633359130,735491}

    Returns: 5003727792

  57. 100

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

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

    {379450270,797923484,515540273,29870175,434990111,815468938,720850262,861641075,153898322,566648756,772013452,108065902,867602044,390642289,521909264,209414832,53608059,677806529,499053966,936210735,921146632,17218263,807160124,869449355,5343023,856093921,844438903,254597116,293984612,204559106,153507443,495553008,145861171,916529148,447084475,901387819,407709052,326357503,809052823,793004843,461880702,651200909,699602799,600166245,643358515,748063473,442131952,690248543,70871275,586020331,557371094,695086695,159484377,80721000,357003664,973987290,362961227,167390363,455428287,553104737,809422890,582214647,350139680,544600196,656825989,652950012,698301438,10365225,584511402,179849680,790633383,855189488,202612193,879300904,168007609,66050703,477356658,104867466,772073894,710887003,445695921,421175017,261232716,505359885,553292644,446768281,107634687,540074887,489076718,564716622,100690353,805974576,753477851,894775476,902081904,696726988,940678542,83999839,427463466,638563322,940529089,663658673,617984822,153313623,629134994,7596134,892856990,524843064,193809052,803469919,198600368,51796448,908876903,25092740,404254056,210586995,868785443,488233906,460228708,620281595,177057462,172934117,528087767,478002266,273659821,695699986,691570581,951382978,299831667,463622661,734248226,485932061,123707578,203173949,276370227,416624475,282452730,606170887,685864638,606347833,329869796,995353915,192641676,270733470,854994423,429110980,5610576,584654545,768779047,322339919,56080139,102179841,635059127,173008140,928075124,372533518,529238284,291347189,227913236,849644784,857524414,55998594,949426563,701405405,633894088,350461974,873533295,956052282,624977305,414871869,386945299,899560291,647354151,666575395,470634580,541758596,200107368,240891987,424417028,984674629,230390232,184403848,201640053,135472647,410295715,564539835,41798770,76296917,82854494,383494040,742164783,97542806,771039316,272513215,431939481,715503610,752175206,47487886,773766356,449050099,916722798,7079678,344318807,914906933,596869847,280749958,613885251,384331567,531319480,628869906,801034610,292997452,306025367,85788601,839468691,494131132,840428589,219048414,269271468,164795185,641516218,315575642,429277668,480880238,897092887,791842923,661317737,141598688,595518109,501544316,356257041,509247235,231559772,949077950,197617793,43949378,262843369,50667155,676577253,466203333,85356010,943610034,728533601,668506667,656693499,804275310,94284207,813774609,346331561,532161643,489170714,14048236,350382091,427042342,514980726,486623398,486981821,707504796,173919054,974390233,189879958,597774892,864013253,499930670,815430567,187045034,349969181,709857352,762105034,23603543,439275733,383091239,127713420,665625558,30379114,583068642,399591476,980798235,423018353,618719172,260824332,824699928,545643771,540395731,198874727,888588381,123868234,17896042,765422258,244942297,512398756,802498031,252087575,401617678,304131480,252496687,867816343,188420210,345422076,600511139,600407729,972929021,295386871,538177605,91298316,942929968,67310709,231249704,299380508,322430810,446084309,885843531,28680413,597492745,248057741,145821849,419658909,196055377,542817552,92107837,797386672,166463266,659197275,233139087,638331903,56069245,840757290,965579017,853263740,233886020,460384082,473695703,258524978,107009178,432642357,820698829,479675213,671087161,577988431,252360728,146178555,145791564,478746340,645747321,983754449,876901787,570206412,415056564,711589166,321818061,31840612,591415230,765518005,691198958,304934542,3554586,244111292,861269752,841694720,480360007,47569672,532580358,24763755,210424218,271330843,448248813,255189967,490429977,424701920,466747414,998421562,808345075,400836297,38865730,225703109,964464929,440976225,222784572,401993080,258854035,247589478,153544619,808796472,65956092,746063830,497118592,42197052,440050127,156168978,859372623,120330752,310585082,931023871,541860673,273287797,672589628,634308188,230385977,736460434,243561575,69656495,375364204,176197906,873739021,871671219,27849810,287571401,297410954,187736525,491424030,425509254,207708951,411184635,333136502,715744846,113507989,314161731,518879371,372892685,52904152,837994237,603192391,412593065,1200134,110234714,350750669,149002892,685923651,289743832,458261958,817981638,523887057,150660594,409592722,409777705,683890397,637035397,61444305,343635181,862693684,238654970,659855178,509287528,837363359,99186542,709722683,212299471,892565179,398563179,771281472,789421035,482048758,480578431,599197873,102129766,509756977,228823233,55055900,574489905,154549503,916897942,392071390,337410430,336153984,414384269,74574857,739019523,842428020,883293779,189427427,566266241,366978919,357508481,115453741,413946588,14153510,828906293,880304770,603803018,712339257,74175050,204929498,388425143,443062506,656299340,566459317,223884050,318564499,947689850,859584590,99763184,296751245,583703561,984408093,182748026,742016568,985203390,978463144,706684304,335286698,967716919,976296953,906532785,509729898,601927360}

    Returns: 3541424781

  58. 100

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

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

    {331217320,991839768,505122113,588010653,824971884,723374101,677275279,726928680,588701677,112060693,390553360,875814570,404642788,133427808,978233852,643593583,492470625,492608917,753669998,315790019,664934907,805199848,991423609,244033419,437941878,976387635,581587751,268646304,742819398,845425834,891726705,978732165,73477524,506477571,355803196,36448264,997366800,968000171,246176185,105922663,8859137,308765459,466225463,52385450,125872015,752257498,703655148,621687564,899404653,569782901,82255082,738362985,633517405,71508392,964342693,891953070,105907248,842296401,287009371,722651084,250314992,480248760,528060520,57025050,998167555,425573894,739672651,363815669,633020075,633470116,661288187,715891633,324182746,541758887,698417460,418419665,872157816,606880868,424750125,116361089,483137777,988624801,409615928,282363927,144946028,842890409,832088305,525143226,960098641,83993171,748448568,48268794,950588283,863211966,418662528,367353317,180616902,754844261,578408359,720822472,42352707,679084395,143623297,32466718,172981287,843962675,498637761,856081168,892963428,234007523,699196166,86984201,6864807,757615073,152588638,860638623,492490,135137544,648020908,690793701,751567120,379746989,900547305,227173346,739721536,277175347,663021315,870979559,681891606,886583995,714305173,835570900,514270561,264131518,871575540,899254225,690086982,257344824,111764282,59264126,175894700,304333713,317715290,793391251,737257468,607385675,983687013,251223512,983520431,789040470,363203947,248537383,825691376,252936595,922561992,969547407,906832012,348593637,588255382,871506696,917074232,870386307,718687072,861499410,113916581,449702111,47904607,984439601,73738070,200393577,860979938,334970645,884505837,175927794,508743360,708405535,764226767,91277967,382645343,418891748,785131978,171899247,987626829,892948997,42882201,670769501,287406248,463688751,603499413,161772825,984032712,637456589,865707823,110015180,906511504,800615908,193544006,746622161,975616511,793012650,656950614,935184383,221158580,176658774,498108089,660140220,269873245,741776895,703630684,226798537,901554841,391833973,143683248,123625047,802011264,593458163,935638164,791479551,797429997,173740197,40729500,457091648,233719318,760665427,804161600,131299543,46322006,78748746,119764607,959039661,478060851,830965322,865029002,900640856,926120408,477665003,134093400,340772155,947668906,720742256,770894141,549351078,920740363,119995378,812072508,746134415,779901259,14393063,875008494,417603356,788064119,883553267,580920801,414807670,783827763,380993857,276369165,781192224,607679811,724823669,995981948,268495114,130908459,976191682,302858842,416850426,239417648,80617710,948111113,690391026,55688522,203244423,797700240,746306325,770189153,415035129,19044908,555133087,294096052,404831390,290072493,671539140,678732086,366021832,197137456,102394758,196779561,639441741,184782269,257006111,515311407,389219038,115185185,960971429,766444755,77220111,425873509,278786455,70882196,122639399,510278454,10739349,607352153,450871739,860472293,157369183,536186242,735563848,81957958,114881188,955465165,124912727,588078441,596141867,607518711,29368650,673970210,892923842,493222393,630960464,363932675,538367084,640719379,303786195,419623664,609983960,131132796,517987821,109829116,873935349,90200236,427459466,735334419,123329632,121266329,323760630,317059702,542665392,694800765,71951237,299152191,787049667,303171907,250167208,293907686,30648692,945439752,907462840,455333477,940528066,226956433,218527928,199410648,808555522,954446448,580034500,447205320,539479375,613009960,474358934,616247230,606283416,490734159,571468751,799282859,134666303,379331837,507415278,81469031,600949565,786181559,715597028,471297173,456078091,228673220,379580887,511894050,704656387,131648383,652058174,874034526,701585398,522143928,352212657,838337799,473258830,22812331,951776126,790150685,211275015,297139593,435824414,971616705,179095984,144852547,466647027,280763658,434471391,343236260,289366,368844760,436557081,57263455,684641358,274154813,905257988,655216179,865163916,997928591,343692225,126506825,678475263,239194419,108211639,673064557,180978593,87763144,270703197,693275550,417238025,668881184,132575797,35888439,194750922,877994434,59470860,767456916,174684705,149646393,301001340,505845036,913279843,681753193,837830693,998667059,44793249,523765097,851448480,140347106,889160450,501128076,121221827,142178910,712801643,692343589,384959683,215899540,671805185,230454585,276076329,33266390,290823336,884448113,576176514,743986101,814717255,911905502,140300339,856168896,24657485,568269193,898813262,759759349,874522611,142612949,948808585,719633802,762919401,149388885,822552906,101695859,915046768}

    Returns: 1609427988

  59. 100

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

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

    {710901335,529699775,986866171,664517493,708868067,972967173,162831064,567877082,418440688,810459752,262515335,533170867,194165296,832994978,461010206,111540683,461326187,275045696,818720898,324546716,550793383,860875874,942917561,199585289,998993888,24967623,978453756,288286011,116918179,612978285,417580130,802263551,47978138,511746100,876292104,410395022,399024833,85328586,883575642,954758046,327758937,695965154,165626955,535692934,220243690,971045589,719876671,884305547,281335727,698433110,168520475,371002858,245203224,39406447,470153356,831517136,814821312,588096744,602647890,736789111,838817489,474230733,134927765,363651459,80108989,587843341,778025530,989664561,976432281,252340348,743556026,541549739,62479497,343547320,635235799,28210657,168163763,352481474,983836076,312534279,328372023,885672369,3756605,736785270,493702995,189254120,423646301,267433059,213950433,246510891,741962664,610155784,702317237,694136725,95342656,885631225,286111038,484051114,316182686,647657006,559771088,253523379,227601379,170048503,817281493,631527069,372938771,242453422,809596715,647419323,450150758,818426799,997229765,330425720,727454843,259535771,614291178,528290712,295680393,511308147,117927576,796935863,458138930,693714656,976150412,352028900,500688188,898090549,542751311,736619137,809603348,471692754,231468831,54011047,627023765,87454335,621290428,491426503,735156605,429804341,466019183,824146613,699646595,461621585,902995259,575529720,157184224,297830432,827847139,627891175,182180621,996278153,274163712,64511058,258883155,924721057,698727744,902378173,471637589,738145567,42380103,504762577,59344498,963321652,305655254,415790339,27965618,365199732,734940055,886039118,601263510,722524051,328593218,563495292,995440727,656144127,325931060,686408049,646863453,227888539,854108140,684889794,594602819,448758920,88949332,294434869,579262594,570739164,668988148,30609309,270769553,495037783,343164995,505250577,280396296,331680997,66887817,887511518,772394447,729608773,39501509,914971155,509513518,663990218,152305483,112499981,39850083,305325589,818962195,888513823,318956654,550798992,469042194,841539531,948684594,423955131,144357172,548468501,490169343,961956589,349223714,74035705,38676900,736443805,835658590,79220989,713039738,198562211,331108750,511560712,894135177,181680762,320426974,348274369,9850530,398705996,48308919,717594665,219699736,935666005,5366745,922706131,248404585,756700215,180153374,963127154,131722003,211269634,842132057,160367233,722387442,383964408,841021405,269783564,257696820,371779295,993729216,665715979,560455058,859450516,239151022,82427571,662103447,967675012,765718830,397504471,407578762,243875938,875633474,466068940,520507603,408780319,852891945,281910627,469146100,512436633,309483724,995379472,613215134,233528750,168619925,260008274,730376840,346039988,333248630,723101334,645581976,729548575,539325842,521227961,63704724,210159707,560973442,268125424,955005534,457981407,883245328,681951153,228450349,422559530,151267187,642110777,474714090,120537671,39577347,551107565,311014834,897347136,849774458,350038962,700922966,45949812,687202601,53240321,444305338,429919219,123215801,195124628,547407460,571624328,651558184,551405786,573719520,685563068,785426829,875206676,544564920,324818463,358226562,36027419,458807785,554101386,860417957,953481436,867289094,8374593,745932643,575167858,817110844,800826885,887920213,893022676,176784208,551668871,182178525,549278178,382805643,67932463,742257831,661639453,919126032,648036592,267833364,480354450,13461070,656288047,802463626,136913850,707279126,223255960,281127294,351322024,400909197,68076221,669498423,462294760,52203712,700951403,25209395,319730090,326926292,87662167,611208303,687712004,691508132,227395225,195305896,442624038,537536580,509221480,729483614,396348040,799638320,636880631,983897354,44215417,207288279,165918257,471799382,379956370,475177447,763816884,784065658,446198088,932016879,67320415,537859914,447892751,101572123,37934778,25151801,162599314,114035715,257445139,497725530,658133281,161555953,570906505,870208171,910655558,677472142,301289450,728452997,811488272,567995540,365907550,772189065,891503891,696271251,246292621,819909313,618895083,170167131,332495786,247095102,477774831,955866915,421492252,198097897,325074393,744963839,364173002,385995213,547782393,659575430,657568698,114658783,25757614,749307864,953546301,635747665,781672625,808499505,19780896,802843144,168079448,879834598,472578084,332325178,614651960,202110204,908220494,287471706,880549992,837572401,268089659,380709658,375249720,71054954,882201741,656415485,103328969,536449620,578319304,64175496,497190761,297198928,35251888,101697803,197707246,696174578,25519944,203123686,109169086,813860232,641975004,890346629,652412441,953287038,277587781,165281955,579701183,775410117,619118672}

    Returns: 3858384166

  60. 100

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

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

    {794244507,586717316,228702846,340412365,177552891,576195127,112921521,565930891,126487551,774780667,439971940,878295909,606447466,506002387,776245399,537026274,159099632,127807114,964753503,612186132,975543842,647349468,119278041,503801287,343761837,208749972,431085465,428039503,378548017,859035902,805396754,223562231,738571875,747515869,289914495,846270042,590281530,311508896,644880177,591878801,256624948,316621224,666166137,682214073,940195875,526701206,472163605,627554596,815915531,156039525,342517388,585173957,772674242,897953406,683449455,126297134,3083045,265896682,168467320,788030133,997757483,72745476,269272840,563988740,141183714,296922027,841174584,452485934,226009149,498208908,65424083,345043713,369022531,825299281,194339475,43879378,689868884,427326234,808639331,176470488,531735777,296944545,455715323,510326380,461704383,356328007,599201733,311973475,551454810,39115471,856810481,70808808,881085694,46359073,18560087,664950914,962918405,961967828,603977463,297939360,17692160,505781499,412439710,832330764,198673335,512741666,603638554,79770260,282746366,158595859,306631073,44507131,699418914,585001049,141127082,792965193,911666260,671082644,701090367,107620734,309924502,745296771,690403746,184796276,722873741,742695955,768837906,662580345,930420962,826730219,477531054,733126776,202363906,240736453,539325555,135036645,299320917,464503170,733555760,77371455,112521573,741172281,334758664,562462080,870301027,121443001,751839896,159866783,936848694,361201556,457635722,761911283,767848709,938936840,652199277,672315482,313304531,758456172,670438799,743876124,450382750,965625848,936926558,971273092,858073342,604199174,272354598,214217414,540574374,215943805,609574171,468093513,922668712,593945173,582591358,188176466,815846976,382150670,875271518,116296262,686451049,671665174,572379224,352113268,944558741,142083029,286977418,656528145,843549214,12382431,988989834,694764997,817072485,119277216,5594055,539401029,618461107,51575147,909627951,306442819,690373121,730287892,32037260,395255907,379320208,268735846,749897954,702328162,956278472,487308456,217901826,620998664,418949715,178496855,796724932,88986409,784596147,391710298,957135554,342015382,271545384,679969285,400325683,206102064,773044377,509717188,67406571,767235229,879030151,913173189,490877666,837072338,533397288,612880241,911293380,778110156,80251597,249584554,519798345,619058787,94292973,23097027,208369613,741374552,992177489,911542112,807657279,952809018,430909386,136079416,479231126,606332499,678759648,173705513,769067568,339513279,832445148,313418002,478861821,182118814,313820696,663401705,614569069,399245302,519293722,394446247,987943359,787758923,334616381,800160586,66459914,124824405,404174513,325603003,132372785,907269529,997544497,167572747,179146927,301447057,411164969,785376030,540027586,966573462,985823509,452511715,729526379,520674718,181454389,521416463,804423811,555976904,459327513,833567422,350869603,288333503,610463408,531230121,340104563,961894932,557181406,62196833,291783790,715370839,828106907,458743420,9606225,272379743,406572417,965119746,105824406,660640417,796715442,646644816,260555887,655679266,393412408,772227022,901014062,842261655,183346206,838754991,259334183,681104785,55935913,373131899,732704954,165989733,133629722,719758545,797785284,80134490,994805797,669075421,779658143,395164354,185130182,532994927,167679794,271267222,756096132,79305206,786562566,450212022,519217104,606671081,595559776,285688075,920172214,374196850,493939708,123056053,829224533,226995195,474267875,328638766,992089234,297911023,400125992,799584549,704073325,710187637,697810479,687283000,321525132,119494559,32864614,417605757,77464667,901180789,976266279,785377953,433530509,698751338,763050318,49837747,276773578,959167286,837579487,107366223,211894587,892881182,43506898,135709664,242720201,995112211,226353649,904311151,545304474,709209609,753234267,348645302,83530677,10271431,730065089,120278189,19015716,528171940,806501522,825391751,720383048,150927130,456395725,765256485,797571194,115996592,154232231,793749392,188676293,920536460,895259277,686671074,609679285,306934888,273442050,889048079,365851986,209095015,858689360,620953868,573678675,997945423,895253768,258332922,89395030,712283303,335003254,249692084,9776364,115390040,252994008,716750616,27026635,46337527,619413509,589791956,867845045,473206145,746995580,352271346,536672303,877557954,553600669,853494240,627644899,271443958,65072965,31458818,164688707,719111783,93257210,269466921,389510447,793669393,823992246,460576680,15473558,142254337,692374943,634272838,640242758,613968243,420388785,471044198,296617214,378270124,411588341,978236498,207574814,392110064,409658247,517990343,888000484,685615300,233012777,133866459,45569046,216728542,952239098,733387510,483353604,394729899,671935656,318198660,965331632,791363884,948661420,837359380,606005929,913470743,903452587,274850518,800285933,151775688,656642679,879844713,139898275,94424220,861632019,882987722,832236302,630504459,316672009,417238839,542223817,922957952,462791670,577057340,736807764,228530769,474481203,774185637,984658556,785044557}

    Returns: 4654341874

  61. 100

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

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

    {760839008,327501625,378349387,271083487,463132180,209939065,899208820,970654503,278295069,966940000,255295807,391808112,932943894,260112279,924468437,737716653,271123089,361093944,632151317,415046406,981823289,674404472,39702351,988140268,352617229,612765597,96498817,279167018,762315065,290855416,85161037,651485772,253722804,256059239,178054163,792746443,557429817,501929804,52504242,979063836,726358757,881190861,915119625,808398895,260257015,26701046,999296809,381499137,78989824,345407086,948537457,747373089,918569210,192190200,767280630,908073515,596653711,302229731,614136219,84960832,247820532,464978420,318003759,104198055,741628517,327069164,206381242,120236658,789389530,199745190,886731062,355367356,663932790,93895645,904163121,163216035,896496030,989331711,213541730,437816291,454749854,374309477,160831090,383434603,550817851,275863373,229727189,885758377,358103297,140732563,231832300,818497242,641958390,989542558,847380520,871161358,230131155,851244248,342443106,394422934,886109379,949600619,315063481,252632020,103951648,533439917,641130003,282604358,141066573,26314103,785159406,528889778,160175408,650027126,900614585,377961509,308801863,157110793,670813568,453727535,367594023,531550562,170188968,12446324,206580655,504196635,950816940,66854633,615438877,355283779,825688923,729089300,750034685,906462257,676217441,880652962,706648614,957815430,217239933,562362970,779451156,634325267,218062798,792819935,293216599,400128376,588767724,58443464,553850170,655079576,160917801,827008993,452367383,170140915,733263087,750159768,276556179,458928685,756658581,642958300,434659464,252647595,606432619,669064180,246989168,979000239,108156719,160161934,529451967,247900455,253261504,59829585,681088416,476120680,975796035,94599170,275378232,189176349,556450483,544687767,612218568,153545104,160353010,99097311,760046345,330031912,229808745,653155502,229732415,673150637,21964402,913943174,29953888,539954793,654557457,446125880,133895904,690396345,935548247,222796996,738903346,192909252,631530339,771484815,698771391,289334385,597601888,604656005,346751024,531239552,672700481,437612512,609154373,612816826,79980276,296954929,211415976,723228184,216463775,727444320,428952893,275616691,510240679,842218201,324739001,52880121,144405507,737808989,84928289,595204077,241048853,193097162,785174370,230881303,349653192,869870299,788284865,517400082,799981704,108890764,220351455,367711553,617329352,155438481,140392386,955046233,545555937,479218198,393433217,286408414,586962148,606582871,252823880,710848187,932796923,693131454,592920523,454680142,90617939,406536003,13925049,500328948,265220181,701355009,629590011,592469063,154474810,633423627,617963891,696953796,974978675,387263052,340608680,600271490,447176434,876059693,87077039,862151038,495321210,857619409,706571726,390410463,900862639,954994923,497129139,127195238,734956949,605870753,3322308,524288310,797671155,745059843,689528524,684440134,404282564,823796377,826141931,743943005,778659191,473075880,995989534,433053444,595039707,434640541,466442082,301526028,662342424,136384692,476084630,615389583,8375805,663972930,941043037,834457441,755924909,89901719,969028744,909806127,826801272,706919197,239815406,540508184,877042971,41526469,920257981,162590819,988573262,402862874,537696963,478289988,942092158,689121428,490054714,673087843,103789374,587746206,565952167,362886517,394636169,124324541,209089770,328198283,637162790,596244406,701614865,849907895,889660363,355557597,262528848,956906543,304849386,799376195,694124825,666342929,542593569,309373703,697141235,103693213,613566792,337787148,795584892,441948370,192134754,356075500,651079309,668651822,509110099,445356257,157380880,29252231,410277584,852157272,597347720,346321187,63288881,761390161,300865728,61473347,50134718,916943581,729284180,438019565,514193048,314165658,324635825,428069125,622272255,296812220,414416242,297471074,159828495,313478290,989079889,490977397,3357178,209041336,899061204,587629305,567009566,2278766,626025913,415315754,417022766,14745828,522959356,708298225,833824133,156061823,926897603,309248835,455562930,178114030,987928045,543870180,824168638,52964658,900969369,816803715,268184549,275973061,75104413,31869796,848020658,253419180,779398457,263565847,162689284,851210881,28373150,543315233,828727606,109543069,720064727,163047689,447701317,781521144,718297528,302333551,126250534,625159580,633756451,150757155,867097586,196442193,659930049,708076786,373750819,506135621,567300590,478461641,469777078,503442172,582965028,95097909,112203326,906257910,527190787,727585753,404095876,297572829,755377700,711822767,853368309,228762300,319022858,265290235,527284166,904712094,991408635,867162300,509731801,234700509,625666682,206974893,937793202,336360131,690863722,211121961,764075186,826795889,1034511,982408141,546218187,937110361,272475407,26095968,886437231,558687995,834005818,426804636,421531418,967269096,740116300,941373375,109840849,229634410,413666815,169993118,347455271,947795829,722944031,390132761,913348254,111050511,11687063,916979575,539370555,528368523,34538414,156506003,340242925,898222727,822526437,369065455,195652010,550249927,23682895,412728892,447529678,445328956,223897134,75523083,834768960,337483607,349615367,699666200,657450392,545729622,208139909,670182358,657818759,207465677,604776940,705820809,596107204,802140214,764188759,680657173,183427209,509656651,759169928,472571383,591259343,483500674,730549513,918398882,475283173,949105729,486253013,958310532,732598123,792406831,323703639,18741959,351753292,741260138,496015542,547967117,161287706,585375874,372866192,979594292,347197205,85399797,236523933,458483385,627956135,703819575,426764058,473337798,521516799,412052228,161359380,513450529,935700116,315016456,506680768,545518878,486634416,689153622,539738682,797875277,46142838,691022329,119135194,898245922,44495619,299594519,109675832,527861450,58951093,874414858,822401618,987599049,56880705,32207087,314163600,903935495,385208360,340665255,394956936,579712998,300463304,208890755,576690345,481546617,597699402,830482049,71448642,817171556,925994783,484960457,673137982,984313963,639475281,246282138,12328324,674725418,665483675,345731668,90529732,692958896,396584045,983867353,495089212,927269510,744770079,422181589,465270824,221399037,602552985,703624285,497659138,450668366,921137623,951105854,22928438,470933604,563007585,394280820,301647274,803742458,846562788,165936065,254336520,504907821,363306559,789878260,938887810,560342324,600016745,903443340,714214720,801840943,593544594,14191435,572336216,431829901,27489361,676188753,914316956,847442520,519865863,240914696,586982652,562051075,784703399,135626005,340237808,940793511,148964691,792919853,853225414,727072819,523051290,619588035,591125519,569232595,34264534,156008275,97101824,216726964,430356575,915078246,251829638,592345355,409635815,240238887,218189791,890382187,981929294,79713822,545024034,639163414,521102576,680585316,452417497,848828653,33104413,137481586,905076513,242307440,316667269,433960727,796796682,356715897,740414288,940170352,870987081,42655017,689030187,214825340,477465762,908611914,301910479,362453628,101101161,579448288,606489814,540649923,814245016,839715221,80730355,167058666,144498640,592814374,606548723,888460708,820788950,207672370,727847940,681058707,643936605,589467198,115831321,930255215,990324880,354614043,104869084,209803099,799202840,77533561,612257044,474510318,397672954,822062572,584825435,160463874,546174334,581523266,706987100,846169306,184823127,329687354,393520603,860134960,91620481,658329034,32876581,911905835,991040839,202210624,361019799,256671876,695843646,748420162,200814022,541010073,526554380,962249230,673821269,542524766,650825330,515462098,23944608,375019385,30488978,92287407,152771688,28808687,997459022,571077757,97124762,208975904,805268720,269516343,222102987,574526272,341386088,589334227,670124992,129503452,303483522,961451781,243460018,305414079,777457944,201311839,47494425,816756937,536010114,284023872,653567215,805962603,887784739,460934403,5037957,64533677,275278534,356701354,760241076,864338444,462813094,49489834,143400009,374211697,453665298,989212878,566545328,161869969,114088681,526013273,138951802,234736693,889010099,177310684,750968275,865620256,237518254,966856098,181434094,765628765,24590567,227018893,938703295,785239723,919242305,235935588,339034746,539868265,299650982,460564972,202917211,75140277,920197672,351877561,405067180,103056909,631025434,917348127,45981118,914404736,424510236,896476178,506541460,245185782,20420210,703219358,931722489,70822042,348017470,662248237,622028379,903855118,588587652,148486258,762551501,100136379,407228471,699413220,493045133,781930503,568715022,370996358,904422114,423765256,506495255,876335908,984700673,951654651,723279602,20135058,888233807,34409258,207556155,878585761,868048895,981331161,719035289,229181662,605166440,278071594,558951247,590938452,689838345,638173489,237345429,340602690,164618066,124607112,471651393,133590259,734356462,723931739,572471147,304117780,34006598,787129172,44798512,703207439,777141230,237364688,122046575,353363916,601396523,369377393,129765834,916242457,849153483,692239760,490462287,911220604,549487306,286630534,789170785,732880068,136682771,700423856,289678402,987322127,941049606,197031985,602362871,478482081,58932526,844925322,635425600,935944229,240788290,465301206,893434481,907671286,143199661,85524425,415558653,521441246,391867063,805994524,726044584,825826884,504007990,468597887,684694965,870461772,827887095,863067667,500448803,399924438,931111182,868879597,668876261,98629710,440760096,111576098,759006448,228200696,654742129,532393004,646236476,664212911,161337667,144977667,490890718,225301470,213473377,84992654,990364803,653567719,790030251,797528918,340801410,610794516,657985715,704156423,349334134,411288199,471165666,113223769,495112362,987707608,488507605,705319072,493976644,14168726,33420063,41851614,892512348,48484754,939534423,881502537,606248649,676778655,658295394,432999502,337571128,724747,42786327,557933037,821633374,768765709,465831635,864738819,214832165,66215828,119394199,365659884,21799903,369499632,144087736,720611284,167783219,410011342,306377647,627988665,122300699,100718128,576821909,479792185,551321295,280977479,820773386,914814407,680489813,115219190,968176826,829221588,577029699,664031106,586425110,931431871,666909204,686299082,428956909,229862734,86199002,195246700,220257843,915712896,432724347,460572357,750772627,727783381,169121964,425441062,36854728,153061983,569877652,425284424,341704243,285372793,399427661,572950502,759320443,129131773,537950130,808530145,76573776,164656981,937073287,36244786,690998404,661687552,395459499,212863653,814370640,871701763,143296196,250567870,440733086,61073334,717392425,117160850,471444956,774204074,514980506,797676495,599561962,84895468,445363707,519433019,884258745,494415941,88431389,153042879,711068731,495905162,247849567,365713756,266490658,320148145,910855483,314425936,859222323,85178742,61854740,667740924,191815607,650104777,847521919,150734405,525874149,364578963,722138662,10483577,964187687,577674525,340980637,48820609,843478284,565051776,872427559,798096507,234040816,374679262,354978508,999069398,590609924,619039979,125508173,806325548,177498322,267618128,262456570,617980860,775838800,304664071,654796365,626374986,928313982,168821065,933202897,511478003,214800130,383272974,560831510,891013112,783822219,412081483,261451183,988251069,898336347,491172038,802208421,582387150,661927010,590647102,531590892,58757738,274902832,623180308,656999944,323712682,988649213,273797665,351064744,100601844,679316054,8935982,633207186,254430749,247257105,500843472,652445700,247279547,67466739,158082612,166982407,776403370,825984919,632823123,54913582,910002450,572920055,837862514,896802199,564417170,884946901,940252592,687034144,515490599,246683831,107073039,162766571,153752598,315841361,37324145,852995912,634517376,451695279,948485894,407676746,76381303,953112410,288810055,846425442,822357618,491053669,931626464,812177537,567989087,735039079,506286864,465774685,774626948,498371473,222856668,989126785,983584487,40095839,367201293,639573240,532686492,342771616,942776664,730418007,659424467,68257946,410769008,624787912,319759998,787129333,276383025,85421167,430623952,135724214,148094811,640850604,932098512,859309503,646017606,590821063,79930287,252693194,776586162,268597419,873312455,425063828,160320917,951309944,152624071,778446831,446898706,592386211,438972449,506027961,931992595,836209487,751000178,986153030,993509771,476200636,179326414,189485727,264943065,930926061,793623197,568312890,864555583,969338282,153487930,851215197,847431279,301589200,272415462,127085654,158645288,132653354,883805722,969475636,468988203,489311327,46716102,48714171,446438673,888910453,438984775,538421188}

    Returns: 10549301510

  62. 100

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

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

    {450989225,848591810,125448366,194086684,775040181,771650414,424417978,406251481,163453259,267749539,18382147,395844560,950881505,232316597,33171431,324198050,655996733,486937990,386695179,510420463,607725224,137947620,12348398,797870495,846739973,719385252,681023217,413451865,883050167,603422751,505078554,283387035,404315375,22182426,120437504,667851079,486275099,188697785,618153103,624247555,581646117,956510863,17688825,512392657,108699003,713614695,272548445,671448012,17305975,538277012,200806531,282165526,734403424,589293089,607047018,417696563,500635913,359237680,630636213,264305119,142736500,495826606,98135745,963729461,708228103,736550042,720673341,890409986,441760706,713309187,924638836,51488043,418311671,523399202,833086527,251175715,550587980,779154330,64440299,85035739,871729308,229186029,575947581,863193143,210723518,998138397,35797716,610785222,527859200,856417069,233537254,508932077,149051264,593326057,209211778,362424624,26166337,569933265,533172592,473621301,206634959,520558007,335126747,667607635,400771573,255174396,357440249,580008630,478179706,514330131,54692409,699988852,477597019,846325606,576562579,566262594,315788800,17382124,537656246,464295019,525771952,35235846,516749702,716679786,679956585,379551534,748990013,857125305,733210572,424748034,800469385,592152499,94267356,210950598,698083575,57327890,89364269,285916504,957721045,946088159,397153350,322682705,747462183,163718798,454352847,706765998,805584530,261971532,961020359,625581538,672069521,435787127,109642846,95088423,33504086,637479697,438685695,786280786,68614877,158671060,666510081,835033851,419576595,244167979,57517397,9487736,127188425,234849964,873546845,547746892,741495288,205310727,954270450,778837694,175571396,810848964,648899903,858563332,326339454,732879000,137026112,360455115,140211395,85720300,815940277,244476154,251997199,476596598,603262668,427974069,826472431,695989128,373075571,425913299,682678496,492391290,159658371,187002351,85171983,689238883,722171237,60530670,770002129,193971886,118246144,937375242,516840541,499760096,111299814,208165566,662437701,88075727,106955921,138432840,11772911,208527344,641286231,403226882,299713801,415807647,41578002,872119790,416761683,343777277,734593931,475344963,657748506,747038571,899697097,99340770,932560238,533974726,747069603,337364695,402445747,999292106,93394404,505374708,704258491,504725671,900476976,423114962,787801749,158745222,446787593,168678124,705006941,766225366,413985428,293599473,989106461,906606676,868918561,213390217,148441141,346361095,778723378,736390179,73347365,562015437,70841090,466268295,49847442,837823605,197374841,668319115,919522212,160544445,485332243,514521472,366775920,535500746,82599867,557848422,658559931,720776640,887971815,710233392,219453628,238249147,231113355,449875723,928684226,929862485,608327052,488837019,760160429,275357684,666863613,716631186,918659134,304854876,925361534,469397841,665559052,224898333,456374827,377917877,75703181,70275018,755160470,6033256,420423613,465360006,696109625,648746156,324083933,585849159,629829581,323856464,754258860,206812547,538055642,60417521,289840443,769578534,277927244,311133023,691157709,934553838,945623136,440628500,442863022,970218250,747629659,718022647,921169899,114362718,663630503,896394802,884185947,199023551,523567800,903172710,69993542,76440647,748167277,483548983,136391,86429926,670284408,933282828,729029686,366001345,132718838,356556836,399501227,243751800,838971498,367123828,783353070,152195999,50270058,584672521,555664704,419726312,532658879,886411557,413394265,222027766,397039330,19768393,266922569,616303374,945671105,670256962,185891587,291905314,308768156,562175556,80983136,685222065,453135790,306654363,358127194,215777490,554918069,252421891,242625542,674063269,640473005,516981824,350800205,357111514,502135488,691989817,924098023,977016162,139830243,443229211,441903182,661960195,929793588,604467231,669874299,720744781,292902248,870771337,254659754,987965003,494954802,42100885,545076516,253015215,444845271,721685429,67492069,265404503,322036861,210876789,321585166,335849035,142208288,325802036,520768101,639528897,111119213,632296344,183613835,934723784,427593464,287715794,795508782,833563352,196504681,184411329,660108771,746077091,690470120,686538816,410947291,20304453,396206387,263875433,928597567,16304270,891645829,735668750,195352940,629103369,35537585,289894678,695082821,886738253,375551306,699789344,215398788,934298935,841852711,954905670,461981973,931441212,468388981,842911632,357861099,797962177,862192649,259440485,18027174,108446704,903367908,98836983,134267286,548437642,677629922,102385818,175247376,414648712,365658214,729830553,466924675,33397180,63979479,96592263,193465426,104513237,933282714,232920364,700824288,878278483,954065104,828509488,456127196,736091391,164989223,347782596,857984753,765108758,643365616,399250868,215479755,409689006,129443559,40374195,465157115,251447784,830815074,427417846,749722391,483231791,589629763,852239516,978687349,915918367,605995441,53046183,284508193,47089888,19659017,835505942,986832406,179671174,651399673,409669250,650562426,240025813,369390355,200600583,675864506,136486651,155859784,243465376,594556783,522877237,669991304,743888643,834049287,138792090,987509405,384295947,224858117,608237689,705282921,54853193,242419324,456036062,373611144,552365410,933043096,63392797,577286505,380062446,735669582,597000251,306514625,682546948,734363097,465584644,802506937,779985638,166273911,606712701,503282333,387419572,450738457,525738254,417412893,34081517,850226319,537824362,51848372,373698900,962660542,60350074,837144668,252265444,724602810,223775737,598939908,36655072,936766514,288774748,233476550,244565355,227130479,963394180,802878437,416460329,866289451,660407250,594060151,985973431,411875144,416207266,866566341,520407967,355428020,607345498,434651047,773200218,185417377,932308446,596130290,731833213,396913235,732675897,698517848,257534118,457641811,790894116,736700298,246978284,573316771,194780334,227638894,490363720,696643065,332267624,374153130,108357525,552410411,835413811,472065859,521560278,176476773,548229914,29064336,187815939,573135531,443069089,997966894,635610811,560657902,119473149,552607299,757959472,929516457,90122588,347233002,505637670,688765447,686350609,369156793,629101994,416093404,70827293,683480231,347938147,243169701,352205167,637048715,711324648,6939535,59814641,979941975,389435646,636288770,767879064,53965390,827805262,702074335,936593588,328813047,192801938,828413556,239490063,809199089,89031981,191923390,70917755,55818507,628654083,268973157,92278449,82926123,564675278,492248800,976880807,580306086,101618999,510185683,749944178,76334175,560455112,960474903,580461638,152310125,547997476,935602705,442036782,585052432,751105570,47752334,711321745,589107258,961824498,256167135,790710730,261267171,928012094,846319500,894492718,894751320,718975913,943289562,160557167,583422311,152084560,679924951,914938397,445086127,365935777,47700237,101732663,87263671,124594182,173908579,137790502,975704273,881499958,954359256,19011807,168232048,355463658,790975930,149433220,437450218,449440746,650727728,859126350,56892149,250018830,464583378,252292399,499248143,544185813,382593752,434658467,855787168,878370309,183080906,909665196,15443860,820405118,641276493,363927283,303173275,870900432,66931780,180802119,427497854,412587425,371147306,21008218,675057284,126956479,601869168,142324719,781189377,862788247,858463573,760377242,635212409,154130482,930067019,447807896,867412795,835215256,61277968,899206810,414359485,548678113,164773637,325498299,80015715,512889739,146704303,94970866,130169431,550393469,573667548,131014482,794559421,825711706,215778134,260717457,579156889,67237975,919955241,168788601,71134996,832992501,997076522,652508403,488660866,990840251,11850851,313297236,244552340,70840068,167991414,182238431,140725718,761685459,472748416,869308748,690020784,310438343,104181834,280531312,972716400,939635864,474453834,522373280,283281066,69132579,331184955,936383353,150944347,907123356,684889306,28426868,109972590,416137575,468354296,884497012,745393574,877134980,286818154,961411922,728732649,55956674,820164911,649512565,695933027,365189506,581853145,443446626,425588122,278803769,983745397,945557362,135507520,896865779,510306823,260183760,558004912,536645739,172225646,226297758,772989355,959641878,43790892,138087876,822608007,254059120,407774179,865068733,183661430,961352766,655366750,434799964,720839593,110134808,958664430,69739873,756223990,264473758,800040051,97377006,303295500,341561035,976116553,214269075,743041499,33399868,83821031,292238121,150738240,2009571,898456277,366746946,140885162,306933038,985221063,69348527,276020889,666512273,984977225,549415917,458384883,708961992,810890832,260977864,484113055,403200639,831443372,610853156,560801825,685203378,839231710,83561233,766716223,863139605,766430866,108288004,507966745,172161387,415669657,686549205,625095678,695006162,249081766,696371389,862806765,138802780,682536627,348053692,948725421,454913871,761527619,413473653,489259489,450834120,377487531,483285437,147250648,414131624,151042708,132903815,182984104,937058512,679939606,756828094,853677149,724720086,49173434,72473039,116659669,570306617,521067411,280470032,654200055,886202158,35874347,150591890,516380624,980300068,449479686,670713925,214808155,104219558,410299414,784796271,425744848,81178382,426206334,123327630,157166322,97269879,556433125,449122493,239975886,58649211,776471693,88875265,697404783,786669109,981243135,788763060,375618311,697457748,566281058,165730605,904472060,973570671,163185487,413080779,773056055,399682134,295593593,151817577,338494219,907334877,599056712,737351331,359642917,47645979,554208728,703254426,400185800,525734671,913614770,988472291,234027066,768131525,192419858,590774683,592196081,223311825,453340619,367765722,950882522,907442512,486110823,259274693,413965685,745394060,658887179,603040400,537590437,18690703,666514052,415476778,940159399,624150626,902532352,173793721,780265069,496270746,455645947,101544791,489051137,5418272,388658963,91237946,696898981,791106092,379304320,393048663,353457510,207157721,353706580,295966269,530737116,829671405,76150772,938195991,752791864,804337086,47920339,90741371,664057982,322900235,102237089,276098988,659830234,332526058,840142393,956977135,634368964,797493100,781844966,90692397,498533370,837486897,782233830,306868591,464429001,700232942,779920672,608341703,363154139,433844217,952403793,494108338,607077436,256548099,518534358,136916512,632116499,549077757,517762299,998963970,387732835,287151780,237514028,624375647,38139354,42647960,722753940,62959891,769808763,632539093,153357254,294099210,876585083,756417688,565962094,67953669,750421269,766295366,923917653,179514306,585327512,575163001,184155244,46299834,750889837,136912471,814326237,983610021,828904645,884785230,467524011,412286644,626604109,770183629,617344298,122136418,834205869,325912133,585877478,911835349,732853259,914086842,881676860,57963256,968018807,651036216,542820669,788075636,894452953,667182298,381676015,494083131,269024473,112882674,487788605,383162645,797711885,833611857,390598061,875631813,534078254,189999082,131108614,263611436,572146881,938047243,670732293,673647403,553233335,915873993,755113505,208843293,137777459,271578973,866252578,439861448,930956806,166619563,741741201,779158344,189838769,414932271,516743289,7990008,428121928,312901191,94407161,715701020,319838110,708443951,236835775,125935995,642767876,31382598,140674479,530639317,160724570,203499180,86986337,907390406,799522855,340311152,152731481,62088137,774915496,8401846,58621146,384972906,79439201,541638980,885062851,293402920,555461667,128432503,779905520,377597431,69819720,878994299,552105627,776232118,898909026,253580,637370992,673498352,329240610,886448435,789271361,742593068,349105021,91258878,103244300,541207589,871957299,667880420,640990965,949803074,169879644,602820703,942431255,397818645,751339164,708240216,565817632,727418644,511880875,783219901,353024629,953281489,671277518,861658820,577912189,965494590,78171434,786670732,977815559,26631004,893783171,928692669,556621168,981119953,723159542,999536041,183112694,821101883,632531001,718295132,529067604,541023235,445374552,801878203,957318332,937147107,507078724,697567294,914880385,95517163,169582084,797972549,778580869,953400120,755708446,420133637,241605232,560240800,665958990,998966371,961807202,554943553,909148761,747700449,1997107,310492321,128323182,729823205,756647663,902886416,409035016,73041177,471645436}

    Returns: 12069369834

  63. 100

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

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

    {597431939,319805609,133816005,837858833,24450135,454474269,788144088,224572948,650705417,351777120,357669855,729854249,716604558,730253565,195295690,609925440,465502122,757114801,901078800,252514824,309748860,660203803,787627263,990724147,359807707,373769480,249689803,707422524,74291622,100174088,315074012,308118200,426515186,809637861,145666627,840649396,10696183,352639627,806998244,212449238,43614562,538519527,219498007,918994357,606386432,84618148,14142242,149189546,374784352,656127006,799997230,344232506,254004697,530484513,253378542,84612946,254261976,160133909,807891189,715693299,354298266,898986789,125795055,807753891,204104062,752911098,247231428,374450019,930531550,44671676,558984000,223198277,677143593,973761214,798513331,720517039,796329368,485144407,639638587,539598105,547532691,950997323,409026419,309344622,279236313,408467792,705510736,834151554,74225927,133094521,272911171,745123218,48736935,45180648,645854018,319646561,929215453,704266617,353994343,889668903,424751763,183746262,896380606,234427270,82574104,695186644,211417462,742334425,607532373,162587216,957089841,704659794,934113638,352654236,927929651,237408532,127935359,435468126,143842080,403219535,742064964,804824844,385735113,558322730,545106881,406844789,956479510,299763949,346906626,951701940,683586344,524866871,907240649,523603617,534864320,45729460,770756015,777683021,220754944,765204616,975641643,20467898,448260217,464329928,250926334,341348170,523878819,74788940,273415821,755738404,910986072,194101378,372658430,734814263,60330431,957818344,679977320,227583864,307075103,770510045,671948435,900821363,247765732,732100313,774333823,695344900,465061528,830685128,720586687,615609660,872664707,92015405,922514183,290110924,732708959,609695467,204291667,189611959,61233046,760458682,638692191,532615811,968032654,306689737,711053551,797516758,255836073,437265202,656755315,126198991,618881129,155697896,954173618,966708636,860097678,626202086,469919508,269605769,632331379,564518069,121519794,691161006,916807697,41963493,545974233,12550344,484456222,278691683,98773385,633663929,520187225,187333686,314982742,285133807,884420844,906569401,4772055,385286631,534673124,3914614,883854611,754821432,378844885,875986461,914041232,209791217,422276956,211402205,214032323,941955326,157924951,61899215,843658296,13233946,337430920,813509979,637003314,521093185,20875074,775729097,615822771,923204283,38800411,99190320,283319995,418616815,498025147,661735256,868056570,782530163,625382505,62953678,93223897,573251110,650880531,656801260,547675582,237967590,810342245,602541101,628963383,439104282,907081114,542947330,247732443,157484228,798486190,204268397,565565823,214570704,179050962,217057466,302311390,227447627,911811858,710532539,742882169,870607363,70054270,5642275,602882208,11095071,469893736,120352465,20414387,9831583,950616293,90335914,144583844,426577018,628051684,937917886,565135789,804272139,382441304,250744265,51334713,467224287,581456481,656466040,294298468,583975793,180942804,830721191,474951719,764544893,929535596,339446934,602041302,532527219,263114422,100297954,61718801,586586129,310386995,816148344,944822914,772717603,521790771,307491407,178934915,831779397,928538666,101440485,633740566,32394931,203368336,413935625,68312044,397586891,555616071,534922872,366108593,513267544,778713483,854486064,960342154,406493898,720789190,737833093,59555760,909239462,866529577,587789973,324653954,666232635,197145498,702571994,230448094,913920428,470386871,902100530,509488314,320287336,869419538,108192591,374130142,143621052,101998824,148992755,676513388,968374508,844477025,171713151,560065938,41173404,227963029,283672362,503272769,577274529,296635175,189687678,553057298,997755297,414796783,997123484,593890896,547686016,608084752,116208044,981993515,297048553,774830884,578966383,836358257,62945301,818647031,775783450,950901534,341703458,482652083,611798034,638468353,863875886,391365546,814111819,984478841,46637696,850788060,469990765,665689072,350470921,320533660,731938840,367392385,633166729,409213972,295307505,246981330,53035756,948997135,18660238,931095696,22042047,754205285,825452843,112064273,613440674,879234219,776695757,437149104,237869370,592589900,568436190,603819387,184081932,362323184,910371278,136169420,685656841,869394482,775880260,811403698,154816223,315646451,381217156,324130859,1983309,965117840,627518588,464262680,266489451,204019197,199791822,452172643,197264720,160827302,493267571,263514600,186627543,783719455,601269468,960795546,823700554,33026708,407061304,492057672,304230958,172055331,144072972,993232056,511032780,892739020,259840442,21710927,300574906,197101791,972115398,200068440,11177325,625484098,263914196,545379106,263193804,405924151,466060891,444220140,990407261,960043334,794902730,464066105,98939207,740261445,109022486,203963842,356337681,686025338,877279754,678743389,978114042,662989580,836113105,92737206,641583801,545497692,257591986,598619353,967589298,94545745,954050134,289047738,255452150,976590904,196442627,105957173,220037910,197950771,312882708,26133167,462914887,912545822,987037628,734928219,730458716,458067939,243114511,610332047,455086219,459806060,430760517,484263848,187678340,950401795,18987527,665477967,887103025,317656707,740610991,523243517,768875785,337654183,250131480,921672748,925437026,138516746,294032497,54676374,842789007,590859915,191267977,488482196,11937370,340718516,984908658,767623147,177469108,397280933,742422446,953829782,686357606,264653143,151490860,193609263,973236321,547907226,259117522,306865838,91201930,567239839,821018008,355109172,120728276,623795383,562667098,658680507,242725972,929769193,458275739,87581700,77637557,653947979,74618695,819741074,43814425,574115300,950347009,24787739,22122377,725398819,648700258,197124945,898045744,147710852,750414323,43461797,393705629,34980859,125295898,772955551,315224069,476079719,737697734,642754361,648931852,723702333,376192620,540147590,763089030,155190227,183982082,353612785,448761357,109559773,434125108,282321799,562697655,116537882,948038300,475912844,759244652,590991389,47985960,874379775,663000535,972606154,76587300,842702981,115132196,858551429,28594111,587456980,954639002,323643977,117411720,155760319,523471011,687083705,559830344,761102452,469690274,194919574,657550913,91698665,187876877,52112843,904794962,164052914,240157766,639020303,564076511,952841257,888555169,630158459,321329560,566018004,690257794,838678751,675932004,73587210,759417951,192731959,126417360,135470425,119880194,933716962,20102786,332038199,877893189,857531892,857752627,311446669,105934285,11268980,227191490,991415059,36456970,85114059,573468491,805248476,877933604,528945414,216174470,549029089,920833450,866165963,904415806,415443545,852358495,848924534,993689594,114958186,383539719,503122731,859693971,603831905,637103182,486876484,360983435,613496185,636718403,13037556,828604848,351019338,631024630,419101018,796909550,71968437,471776258,320116865,629258431,402222755,393045889,282525906,227449608,983247526,256023121,117681576,249841182,28540849,857605219,912701708,691293104,555852276,599025427,894769779,642053712,201220027,646447950,191187512,191038973,92215763,745954801,871533003,691955606,500087145,121314038,914561114,793412782,803613378,700778616,577806133,743206356,326362537,826387693,285967819,782619642,228075944,6786407,3625344,527006004,713763984,594027490,643416436,852204885,419578299,720442461,495602201,325950320,590005236,868906807,745325547,394333772,770828001,164363381,212127948,593455794,794604812,659028588,203244475,651248,188513816,580605517,950883153,210925934,126549853,847616902,48444347,137344439,346431251,719734300,352686345,468086767,663477681,647843904,171438608,836142312,113919284,977926672,352979052,803159804,103456169,578568494,122510154,304065096,3736499,770651168,517688894,286129059,355563498,269091718,993622306,146079641,675709627,584161856,1562890,957733484,273727584,652312014,39403018,157490012,721346885,960991722,477988283,512459573,994834442,722159517,197692875,469004538,373267043,247032697,2844969,562367322,558406644,607021788,285354725,264930864,945352010,594772722,515348929,327199300,782625191,453045337,614344386,353985476,797705986,974389209,280776927,832557018,179229629,373888905,350760284,927642049,447579953,101689322,756225789,690088191,217169339,433918964,516215764,741800395,380954234,53472264,996614060,862533631,263948515,761502911,481269321,280866942,868595609,969194829,949942759,664637917,260786235,174265627,624511131,845906632,915990335,692797477,175336409,161440114,56493867,365197369,742089035,27842501,594656447,774562063,649027296,377471558,935239316,958009493,268960391,95441797,880857462,154032344,573237247,403532868,799468510,422288594,336016596,160196601,15271827,125351349,816219051,736382462,892340458,255070993,228780753,658111437,377951950,68657274,840744478,515420168,444350991,425399202,708228446,270454325,708610429,199415010,305480313,121964267,354702288,204552374,547544513,305209270,385174250,564332088,247867927,677666442,919288232,814919644,815765696,723489940,396079133,731371165,745432610,197540993,552013496,882548758,866107191,820303523,457471381,834719601,338588416,460902734,472958492,222486341,752794156,329620526,679097461,51510781,454105401,599909129,481540997,814292222,14321521,589476536,856712333,472510545,6781652,390129572,997466116,186674911,834323287,884853275,57464623,506246400,900357870,104355628,231936518,898700141,37528017,208997328,355031025,34733993,830349232,535668351,968141260,999606154,344611065,697840511,508585162,424440145,306874574,102662455,416093278,226386427,369848419,397504134,816396765,492683733,949099964,780626230,277702651,739239729,740581658,453046830,60359645,260248473,158570173,141232669,496654352,335884740,490665670,967082237,87315178,89616960,410219947,941478943,543861129,818918508,594927770,877643416,590876648,971545713,57497380,178533183,248720072,456869915,369657281,266727885,13468933,678713520,308093114,669548071,463590308,782351982,360288031,136452781,536601809,887039809,756020635,345390391,356575264,402559367,755597101,821060008,254426607,120713035,595681707,460882039,58310064,756596850,603654804,315755224,509302293,150260664,126781943,856746827,964227194,448985835,307497083,619665225,643669926,117820657,547060536,725868276,95383643,91572353,114883754,527448192,393755020,743250535,352297192,526154901,168607906,884192534,780036903,84186947,961134426,100760999,130089724,265015272,440325449,818838239,695722949,70132666,868186645,486328363,515937042,340732848,100950815,502105893,436697822,513977954,254523975,388140888,293858841,246742923,515353657,295440392,495096291,250563243,552863931,337206901,871819431,205531846,215843772,28527016,562283681,36042750,615558187,503797294,7313488,26130119,288271998,673242892,125000101,582997735,281510794,722275996,714487097,46829508,911358758,339220489,333992930,948965211,326513868,890457920,88301172,772351362,582983771,436170495,656764523,20962022,387780555,627880955,141956425,359858028,169326966,822500991,669850632,899076809,192223801,70597468,98562703,440359258,856641753,65842770,207740531,39532956,903612994,46969904,906247406,189545231,748083913,768855779,973612800,359909433,225002714,196749814,503358897,82236587,142618631,514052930,851954542,292667401,733049941,199952377,772835500,362654021,710367265,309668817,452568330,494002845,371138397,816421234,347872622,834776724,176728652,980123184,680988193,674799482,249385295,305562704,821153462,872084087,295897084,729115604,928407830,505078071,274534732,692703738,84055119,329580205,409132906,560661911,515255940,956415946,84613915,38715288,114559186,920178078,330438818,221590251,807157586,196261091,744736998,777780656,878790196,24283495,128406213,840175269,132954977,511157567,810150038,166402846,319846390,481083137,911125973,266457520,255969505,656551815,212636754,697400608,795979646,902500901,645604212,879737094,608047306,463418791,20162805,432605747,295300931,469571382,428919607,532511767,231284333,378276538,722755959,818007003,455952969,262536931,404638563,1792734,59760309,599359308,233413216,843044858}

    Returns: 12925861622

  64. 100

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

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

    {19964906,271390360,128184331,876960261,999202640,448434090,818805198,25737719,972412036,56000974,479587803,8239727,728992067,552515092,291383616,979174321,489143140,951510191,195386659,169776434,328385408,353525477,367427440,675055039,154735096,693842119,980563510,932609648,828605518,893792418,11994635,947591268,654607987,673222345,26477660,248845035,415039274,615571048,568538609,687138062,165783118,858541489,123374516,160186634,62366316,512614596,660493141,666576791,485566753,397489520,830708106,481561468,685583503,302250119,896809335,167258804,270002926,755510536,502664148,410715929,111156902,372283233,837483392,939096632,718548705,773263959,152077210,602703249,300500179,824845779,317450571,320274109,511297225,507103560,42540386,639937683,643920569,801886613,763565455,28693602,930468218,283931305,840924747,389343935,38294219,33498725,775784893,142609886,546282033,40660584,893306221,82911163,971010580,658096371,484397483,264315712,326389487,248943448,433981598,831883929,31151991,361651950,710930697,349499757,800066284,480197021,48092447,965436191,735791982,526036276,172355380,766355898,593543107,203765656,178399401,342409344,843402503,635659446,308583605,184007626,67011488,732064730,12570492,359356486,268982588,238609200,35394410,804902371,567964541,989114181,612503428,116569544,271965034,357656001,277504695,152277043,551074209,294231951,335494452,318086560,100207271,743011485,951513158,991404253,44828494,688092964,211242159,993958773,542004249,747307539,522012668,684811670,80556353,346634374,723017997,301108808,813491909,424211009,656494353,455971977,759715812,664873933,793163241,536412000,307690251,169065766,307194969,94387206,872419799,784328817,807029251,41971945,800096786,762645280,515217238,887544400,456771039,60698968,359651089,858413025,771104657,880309738,334849592,461667539,47504660,104699453,159279952,234890825,520875861,928512027,484122197,608067283,963550490,13908423,46999673,166185245,57549944,708048787,46520415,745453838,277347977,121367409,40729441,312478891,715918647,725412997,729002491,8353400,512780698,612447239,600374959,522669407,862887951,490085929,519475094,156077489,949598458,360981026,602250865,826857605,634992765,568476487,15208471,431013225,326882821,217479253,263222035,293840880,352826971,890941879,623452526,436125330,904645469,875171104,185045688,250822977,138347728,87895496,141683621,482644463,193483204,976753052,450453451,409162927,105523126,352151069,311094757,817590070,819467701,312593078,517289537,445443335,952490057,659822954,718530803,821385281,903309271,927375888,468320800,320860561,563762182,91919639,788567701,348474578,602308369,211212538,622622204,506742809,484675356,604448055,13444260,388075694,321843680,93433663,905218717,460472562,103645390,717476794,74381298,989397770,269058320,426657187,468348700,574328364,876746511,573096999,337174513,869610149,623374625,120132949,898875007,227656753,48954949,346281132,593056214,424033162,129836602,204606960,622217828,489873793,249996100,654752071,400958527,575165172,265968326,859539568,764245273,870357972,230786443,416452856,280789503,505838044,86424644,659600179,147462362,368290267,1385869,364763375,798707925,997038907,543355759,466596922,169869392,646545298,322825874,109372075,5784031,299850183,836086616,793282119,117732238,673446552,715176492,297936478,626449297,834092349,82296759,626581323,913831155,564080786,642864422,228125994,945843933,236483952,982494977,119747582,619051031,894379035,841576743,463502576,447272110,927705378,146607107,270871063,138683301,649151185,729330111,425885759,868055343,613343338,300620693,555923124,255040912,400391698,768590852,134948302,844829183,140955928,36296887,572589047,583637211,759787036,984935132,830356034,83526168,161072668,152656326,459923511,584618675,295169823,756244423,154284285,641362280,161262319,32227374,456812766,491077450,755254011,843648977,149776155,844385402,146677231,215089700,920739337,67177498,193528338,18970110,64382252,955928305,627877082,861837169,288108456,599745099,566014869,526485838,483082257,714903802,78138715,898011327,404441876,636412105,583020823,816897527,231321086,846621092,922399762,751563389,151519236,122171273,584023304,497818941,994225969,363880276,100346990,38542903,813238187,601567567,552890287,265428094,869393447,719494275,34091911,338520699,748612770,74034320,914291677,621924667,332016874,637519637,180565017,140873158,191212004,816134697,656528487,891038039,882199043,935085021,268123197,701608286,700566064,832359214,226577961,933161906,62194442,437591574,258749948,838549543,582003410,125027990,343477058,133684818,65819761,333890022,759420800,606977168,826808942,390835905,367415820,954533467,666517598,929705420,588287218,607496184,784729583,82224298,901768920,462390719,617022088,758860559,770839921,902521559,728905286,232110262,11492818,703909711,283309902,691269922,732967771,58371814,376954875,93506209,183013484,236983408,495683,968587343,929879212,33279333,698649585,34194326,28846963,166008588,764298788,36716903,185494030,319824809,919639473,239197101,33087232,935603189,378291484,631944197,864269483,332076798,267341287,966534801,563352852,490283279,907600335,905147458,822933455,908853100,326449548,333293687,793181923,901542753,335939605,203242230,195573123,600491542,328253275,993779427,639495650,984965401,227702125,625089826,29932502,461599903,189138267,47328243,323771993,728822462,168274456,887293086,500078118,180207084,38800361,25905876,268329029,30153871,866294314,428057763,634909216,171388330,370057600,442893532,332903980,465128721,703262500,205372496,765511682,108907087,859555222,462389030,262757740,954800041,408592349,706130699,64796925,359236893,187105777,423187304,389800015,817572291,661545219,583356055,555850419,762628680,778116901,939056649,601835805,149600650,916093420,258038287,808692603,462503888,924560770,897745312,986869033,7929942,218856227,927278304,376782273,685700934,447250932,9051185,393514852,606117243,325332246,182986878,411619816,690374820,620405736,227151887,467818320,967926842,583426325,987579858,496023630,483944613,579140123,649605648,327856435,181408995,325183784,466602895,74984328,543428317,254436187,63632075,52803712,152516585,953448786,224703405,333530794,756073998,897004470,616992859,59890334,782147463,2991257,903153960,944489936,654243648,668939495,562684896,666622149,24431092,683177330,689827279,710007154,153541281,182254407,106620788,816318032,840441770,142071485,30739270,437672855,504394695,364840408,602881776,557128098,604189370,936787707,130703866,751439156,738872747,299000233,569089238,935393651,822127823,350428282,589098230,373720210,773692252,574823709,347792551,182589743,740145594,489819337,325635797,231771573,787041355,924505728,530366447,142804855,280183794,91151117,755967573,846155311,885444680,952308705,86183691,797473477,228257989,453138256,141283967,689410818,756862957,812595392,711114368,465515642,4648737,221249546,744064326,283002977,785137896,392531360,445521178,963527235,759857559,227809230,875668161,953395484,255118589,235787165,845664975,94162774,266649112,872127929,110742607,472952442,272670918,788222322,793734546,173287505,655193093,333506013,955768862,256330736,924840998,438293389,158440424,703725979,526803970,357168028,274566966,411930103,76060298,935168074,922299272,593059504,568618521,301376880,492550379,888370006,729838060,273318465,711647936,712520103,583469817,551615569,532350514,406372469,816092742,673758040,93056008,214063987,791310208,321812100,351148482,47100053,762312470,639329767,804561323,203450904,891702172,679824880,944018451,935302950,431177268,477522883,107758495,127307836,705057191,954934570,810553952,397575483,902086157,989106917,376308424,383571725,391524882,664550188,312912737,758626077,405865102,673011309,697404148,236358491,439184604,143144302,570845547,350986663,15011004,887255913,877887477,977108882,115394110,273987223,311387260,341349160,321105422,938333481,411559289,154144122,822467039,29095432,669635433,560409677,479725496,367534335,163367460,652671547,135530225,815590967,528365625,427540146,724467043,603218206,184239869,895652808,830237278,868146026,733914836,263814686,750219335,41143789,924782224,726299158,862733027,783503550,631357132,180494863,556298632,616099993,343198586,771118324,224606203,388537810,7536315,697305892,382100400,454143458,517259634,144169675,429019518,789572793,583405667,593512564,617248590,91651606,340061546,824290503,435189877,170351846,588387960,407863935,420649004,160485754,702609766,378262984,382210099,300401405,601997301,472359981,152202385,872163287,333080690,135638814,664350571,563481035,355685509,784440528,563735943,444065650,595774915,469826025,943902095,494292719,214922424,176459561,413448042,159174248,668062158,766209049,902404956,489754987,366401855,764044076,825613877,900329212,674176484,129989232,354512126,911090063,954602250,861250699,994616933,621336032,532900436,409195209,137625415,607525494,549680387,412187911,33986927,576336778,664762304,11015109,438305619,812664820,589377086,810374337,522549766,805320887,380192018,20881234,120628929,422130120,539172566,969311281,616069464,40564166,184569982,206445290,749268057,917627651,998371893,869423402,228505267,730141909,954795433,341734708,247356667,753426042,92972535,159095818,127035798,732177575,438077184,388722896,595332414,136912548,778940552,694810500,74234198,997609019,496033927,448894329,586918316,32260135,887847202,624342063,815819878,501746885,401868661,526083628,659968718,697760010,600848958,173677797,391729881,486014902,165584534,99157289,211788194,826316882,61038372,46975192,600517959,547770599,375407302,311962444,848054141,97849412,307937299,415817331,381711042,109665838,23044887,486752093,966675387,654710686,609404310,773444782,918436329,889468182,339279441,315536042,556218896,632209095,109002873,930841408,395252636,892996603,643921622,852746613,962566031,205170056,45374069,773810618,551492073,909654834,664982421,526029043,799590655,201166226,879410530,67751212,829859114,291815034,376765305,466662896,572883413,359535941,102088654,829585068,329035991,208440287,402063589,181205758,820895534,955385646,710540899,778881652,3664381,736364248,753848855,322620892,543989827,816758805,310907311,582058891,619027648,408437472,741795211,269664173,537532243,833158299,560549577,77143458,181857860,425947152,119431942,160425621,737857920,369100648,48093135,344170719,510075166,687565709,202970881,573811168,283815780,850048428,225500615,471847139,412779429,699504094,669655401,69588781,760680285,635687236,599153642,769336918,822224305,297116132,444101468,473249826,544096169,772066713,459933700,996647284,234055131,536259209,965590489,361097653,609951103,965343865,450342660,698405952,894743676,942174189,851925903,809820486,127657287,986676493,607461354,594297776,545875353,513211339,645350815,983735968,56578145,568307386,611672470,177557908,50381149,217612480,126004370,26914664,238134675,817087030,116625682,587803231,569284518,729871785,889361244,672069594,90245904,518089900,594084061,465417429,781873282,216459337,91225940,80955551,783766047,964640040,376814939,39774139,349442399,84849910,565862953,668165446,107885207,930306833,208592177,597867058,169847421,191429086,885868127,772481432,566364107,504422587,979356838,47336966,251820176,265072752,626515750,837682692,501300556,672876989,322989001,286597463,653310985,173983349,139911436,836372971,476139770,761364313,824945889,651290245,127856645,316889915,593236137,903394957,769780190,420788171,592541420,901623457,295365305,220771218,699270798,978805186,93102957,481739205,717642043,778774273,566103463,188488187,210572917,605694634,294797555,96325864,348819047,560428458,684335984,458660442,998663918,230738824,634023205,838588132,570835941,178420725,906889491,124632990,987081005,341076220,732424584,934988087,657667283,645857245,135128676,698725822,583373727,653583701,819848810,963158987,26062723,769067595,917219747,851180372,822408031,903004183,552807471,227509631,616671848,964133668,381382512,194132540,602542925,981619624,249848929,76147589,131336880,206819227,691456553,985735957,409740574,715840386,203178014,635908229,985752227,252581455,545291621,798278299,619156679,778554875,873577796}

    Returns: 9731196142

  65. 100

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

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

    {688689945,324331336,920667947,386886066,877412074,260408718,600481138,216075152,895105625,663362460,425198546,183992571,215812912,487298814,973308778,45332217,694560616,689595477,62754097,751950180,268811579,956179075,455278710,958342502,170614557,654272898,26065089,29481980,744855755,289996123,770287255,163279680,968404465,498199586,865236967,511550795,460351271,122525155,772445329,934338082,677050947,821889781,892445555,194657515,99134257,238708390,334619358,83209373,131405677,276677492,803745141,669796696,434209398,55507883,895651403,573016925,189740508,851570119,919472473,557509288,568329039,528447784,695209237,393709605,54644724,879873848,278807873,498465694,235543462,322776091,395551813,165624755,118409785,52691815,964703957,677330616,338607020,83269980,975193773,25181241,785308486,898117207,517974094,342312109,977525613,24008747,622933996,886041512,636192223,689895497,576872810,402731184,341770765,161130863,57377314,536410742,870512357,287899005,663829443,593641685,850560682,77088023,707620586,557054127,102060516,244209166,456171997,595796972,512876273,104676837,949491304,376092374,607863432,552813317,395131554,773806112,2943060,880310290,592134769,110821844,589423972,435603235,700928882,81831227,465558670,965796499,710261563,709250399,765085200,928130055,945266697,253797353,53277069,813540997,375650263,426257441,630022073,198035032,36055150,502029468,521931747,670704992,788770039,553436542,388230246,108057654,844343224,287119458,741606588,214213796,654046472,291466832,687396929,586602083,116768192,387301116,741933522,823384499,976508562,968096316,862791197,515912354,924173664,124322079,972434628,730325305,285346777,885947905,650622030,181216371,227007510,768098250,307151966,148300549,248594870,890130548,517762092,163693035,93651573,337625087,634930274,740314599,508761678,931341855,889747553,959728136,869269968,510878323,481340496,432507874,730521430,828333284,251677897,533271800,344005503,178851521,697076019,767032589,898166828,702625163,684020684,623858402,899416261,944006896,265178540,324822574,872266060,192947162,347028956,599184458,658907882,654661540,524788580,92540417,284925115,32460000,912402209,802935042,920362303,243763020,509638478,38985148,293037940,366081740,5181649,844654387,417092994,534045187,203899013,277517099,83150346,732023413,21333030,492540752,726067862,400566097,617043612,668041991,13762653,9047596,62936164,915784100,447951200,631273962,30448795,576712139,650457221,999418525,749263759,550084910,85126911,910443294,387983616,131627219,120158673,137016653,253195334,748654914,528776812,532319477,888393891,942733459,346812060,464794515,267706419,361568603,321905405,615979080,543668235,477783434,522900177,504715499,560392119,68725535,351386636,92383152,498804947,84759351,584041576,773251228,327029346,318671100,469340088,920253176,128316963,926052112,667219547,228562897,165241320,80643518,898883169,382676492,452245661,306018742,932124754,29454925,532517145,551811554,945262961,732612636,523351570,343333272,84115857,959938017,290972173,469225421,147122391,704320312,821453824,772555241,700133775,85499555,740988474,53854690,156415250,781473645,18967192,731410991,527750174,128825738,463097810,851637879,933563804,713043010,307348710,745126915,437291626,847609636,203696838,91091432,500712652,399896944,479754466,700861997,373601021,411558194,231009224,312084601,581714746,516649464,148056650,363504881,671419124,658386615,650198112,753877186,229836506,515959777,86030844,429302602,243762231,628868012,698766639,759151421,297732548,825134285,168200604,303515576,299571286,162146117,243850494,330804809,583509278,841107482,875327997,528023955,25402245,108783151,725676393,754906985,660147382,560076781,73105889,330233777,788495713,692020333,566514232,830493287,209071246,257523694,28683681,690277929,549549097,973461539,33995886,285778653,851796114,724004931,944983826,790692365,645067863,148008555,705462506,593161899,226917136,794979573,438907351,265907977,899790494,300610431,164390604,874466522,958867332,654419855,410352693,162847840,403194004,875673492,11738477,370764040,509018885,518276842,138239468,893137326,590370275,288668947,476964922,318787787,337079661,440861101,335154783,615530119,53749395,126042766,429692592,238857150,462763785,121626841,220322758,370782596,821393396,533685239,292260467,517038086,905071160,226160815,953310564,216783788,212320020,458549639,704218971,462035212,149768347,767091838,189302288,426459916,348878996,305724050,756063204,752283723,277448242,596073176,396937624,329163599,479934445,346576541,610381416,831481974,818231680,433496172,294500533,472993885,457641643,565142898,410996888,317100301,201770790,999006338,953151748,985241570,688131402,225607705,854448803,1875262,414186016,674323468,941337138,159222922,558223462,201184652,209554273,579761158,258100487,709496681,977126723,537926637,577223064,242201702,64385870,545133709,801952603,810239509,234016050,387963689,364844145,931162542,319244827,943265865,672588100,616200808,9496890,787549059,682714956,948602093,371205718,997433429,504519425,44213659,698244721,890966092,724449801,149941415,240090509,241771737,577962953,123883456,967786771,36924295,893209923,400785126,143182086,780403921,259109420,155214082,933358746,436106298,303332125,551736303,636357044,894912010,142667909,881079144,203036126,311545209,54152833,960795515,780585788,520302973,118432528,108124074,555432935,235525401,240982151,774135974,419632629,349819058,394836862,35504254,622370657,37266292,542970524,183968564,89036442,918783331,387741289,853848999,149047658,485549193,361245261,747046240,92831456,312388325,786431030,499610113,8999805,588488197,619484080,80059532,158776502,220515921,90538262,331413450,180096071,5154844,864099624,104518217,599085915,980505458,27078985,545957914,313606422,255541574,550278690,252409085,223581481,858464162,825276163,726351340,982056923,803497412,940801464,280607115,142804937,445702962,979826917,909824074,143457883,694976014,961601975,301912838,816879536,733109181,289247684,505365032,690037664,273305192,213431824,373561435,384620468,773995393,923426642,539416930,74391718,310065700,144989366,873394913,183185517,846569571,771763676,802160632,643449010,597720354,128700681,192087927,415183984,993201875,991747002,471514412,248127620,23479972,18814717,253201994,884401608,279220041,337003032,916924220,271908903,311416628,545949973,488863355,576879922,402526317,422740704,663556597,523775169,52718231,843037658,474866408,808227994,454906300,35942089,124574630,638196762,902191090,411361539,196721513,140676002,833897407,318267381,741336188,381222443,599803040,243378126,570349686,166566613,448382884,770232439,282089743,906572488,770923858,53534234,514863290,51950631,106298543,571373752,289728785,850030134,477865162,165418463,541595785,167880421,561534723,324147638,751516479,300225342,408151744,316637750,535144088,25253241,666438051,457732616,412165564,801356365,423600995,453319215,99882858,81386678,45995143,749629543,663046314,198429526,592742214,801376712,487039607,955577821,279523049,263612060,260005876,976124509,446490608,68948441,286363889,100485999,875953874,973881844,562208,292886980,153709647,330816524,401968341,278612092,150447958,622854919,725970493,480861669,66531033,542841949,750525505,698711665,159082951,268084538,174688415,331009159,532271937,625831228,692867696,756239204,238148701,791389070,703273685,105966688,779779743,929508283,774899693,833653711,771126401,669557263,124964782,905397110,953453548,394882602,330110914,604623020,65578515,507724407,12584873,679917349,847179525,583966658,808126193,509148969,110691442,579982437,141154992,394090385,180920405,926131829,563052703,539182249,267678688,408778353,289107283,597498365,769340883,561964362,26719127,702512167,705762228,966954238,572358245,104571094,243366291,318275527,386086763,795154459,397751417,63917145,832946321,427971852,911052190,438869638,243353124,77183019,440658910,598801205,766889350,188627372,297277280,755990952,111760700,837582364,362368214,402169407,907774,717119842,730740819,999866176,750068733,686799056,393826850,952312862,168696883,713662589,724401501,201253291,415612764,329304146,486266169,885336181,690941707,681668775,653102686,47372060,185377152,487491604,921678956,454912494,58585789,13023332,252369643,145424198,588434897,911706690,531250778,903841867,357410260,220839197,489289308,301789911,956661337,894723772,906442802,905177387,41069050,462681374,585581861,2819750,233353210,379131451,16212330,335170605,45940413,665233003,601470036,354348430,817552008,256750591,598537511,579604567,837591908,512183026,69122748,364277126,23036431,497165002,580073593,794868091,383599679,36362596,964205217,554363869,836149696,155041015,129057486,224277679,931992451,498973381,607930326,982137766,703685823,887797804,186815160,22201106,668093682,666012680,119565383,364406397,795075817,549052556,13236766,616465012,646666676,89640479,89107914,591469143,802694342,862281281,970413299,998711345,616906490,236002153,149704430,476441368,832753929,122581099,145193447,294740929,944177346,580945789,618942367,702505339,26300777,806802189,288311169,127243479,392839958,859243965,35153271,110689254,187591133,297104129,998312605,750453787,152972334,279232342,541710627,951066976,192097501,583195207,438176978,577008915,400027269,814698902,997056491,335015087,680078192,97696929,885487818,721043700,528256808,831479854,78281533,772307909,470092801,987206661,583773171,82088799,962027750,176897815,359499384,521719994,346555378,700159327,955115714,556207627,785930685,534539279,659423917,979011522,695469733,92049315,785487946,522463361,765766733,553161729,619671437,187266738,692434557,298248537,38093531,597357888,264200954,317893433,526003736,384633788,409760352,48240612,540771030,143470867,913536094,550148200,471915696,434378667,145670513,648833212,506640444,191344986,878241239,593447377,408747771,263560241,777810117,440681324,716431627,632079077,375267995,507727462,761363018,492419154,662803721,391816474,955732524,511318691,376027910,381573958,93381914,697934862,406242389,882280221,85837917,43908922,401243443,845082966,372433852,594389048,756229439,192896225,790068384,970351546,957216485,363264613,411897209,178027480,221136903,805495782,717775720,730241719,662235733,242255203,785881338,917538988,450039183,225776826,920603110,729666231,912961449,359010630,111276773,563363331,966778197,379114785,43815330,617748396,689625483,469867295,415725304,179830512,361121255,125736271,476427485,947484400,145226058,567230326,725172873,666273002,655330704,816583036,776187220,31706998,993210688,614052967,743285954,569801534,507865308,930455618,41484300,299354319,758624047,776441370,457826587,577514536,225312924,3534082,63814754,888661458,160350867,539010623,16976054,538693462,211705234,701610667,398212120,964695581,404168898,506985094,354269925,20563070,482700212,635702792,563981316,334375360,932203621,571242070,147270512,440654274,149456299,842529952,282884891,249479172,8478704,420656810,232002631,166300797,126490032,531312892,306054493,984613761,933644116,349040725,602667173,251823789,251371207,37431922,806926692,692220441,208833707,288685374,295030428,678565685,643999805,924219600,7210787,130773340,620151993,541941185,99974544,272279274,422721633,672852149,669857383,359403896,792215601,170363572,203759055,83152449,274577736,671984235,739388478,369323872,451430062,281815902,425971634,671283814,440449378,652392310,131017301,665635758,283820722,825399824,273911237,122692416,69930118,605773197,115255807,500466126,943131815,799921681,346146504,63468141,744693192,384345336,9575975,471642754,171414946,757039351,657464737,114412499,576668915,311089979,835526319,777352525,518627253,68394037,361132684,10489464,666353286,173720432,942930863,496040387,652705391,938533399,448086934,614919065,935842268,386411032,328217325,716821090,107336633,326381048,155419949,622532423,506921813,230654126,483356756,589203843,384265778,232858104,442866417,949635868,657913284,706795232,673101844,421776068,265149191,938043883,80247730,687639594,670324446,185032490,300104968,314274583,721526105,402125975,360626825,637820208,631408828,841402646,251431992,385742128,59889466,282451994,954474213,826276159,671729560,438289147,575179038,180567551,800097635,670493805,991571049,267870748,405630954,314967223,4106315,88299433,300554540,141027689,986502808,871094903,857196094,445184274,630135701,980283071,566106495,150453627,596795554,752962799,267231490,80065081,502793168,767706949,713103843,581146705,276715834,296401270,824640201,832740172,334674904,905414650,262049738,759718064,355842893,443479819,939850174,629681415,813878579,226924893,222964659,720330264,556702697,116432225,36340434,577540105,528617678,808503632,585930054,187270285,614535572,494126218,341187312}

    Returns: 7363192147

  66. 100

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

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

    {1025363,21805479,631474309,1982,19907012,13291624,3004,292860,454,5606,62802800,89,403835381,26326922,492915,257,937,549114,34,868659,3864219,16873108,10329231,1028024,69234,1,4701,1629,1002254,144,5701581,513404,113,413486841,114,8,573390551,13214,8921,338375632,25355,3027610,465,213433474,6564627,130807262,33369129,1606976,92,72,1,324,234941,4209831,25811807,4,17915244,2715,1115836,231544,19081,65788314,1864,893647230,311985,106625,442426,273,4881043,878098,457,34861,825,40,50,2582,13569,7,98,2006565,4617571,54,145554639,191288,9413730,1,2960,1036,15437,2543784,144857,15,370230,576231864,13545,4397563,1020,1222,294262424,54,134186,1,14039,831,9,4,53,7,1423183,24643957,363477,10913124,263,2234,14,200158297,413,294074409,1878,2,133960,27057320,5135649,197431,5,4127,10134451,4353,94183401,1010199,104166894,5485,629,179777,110700,32807,101346,32,97,21108,3900860,326038,59481852,1865,8380,667,3,15241,501,1495006,22936115,1264,5227071,1,13714345,5310530,239017,583,326,6940212,204670,31577,1022003,16041073,1171,47908830,72983,1471,2115548,77,32977004,14852,1928,482,109619425,2749,1151835,456294674,21885,42682,19123,89,383,48285,69,2,974075926,425,34,180483,882672,2972,205,2,51,25429434,1452,82,1,68,4502,756,538008287,41218230,1839393,4552004,66069474,36081020,15646313,377,14,2,398,109,9137,1808,10966,172020865,600695301,133820230,148,939419856,852,1838749,1917245,275090964,9,28745,858,296,1138,80,54849795,1250,4763,1772,1926,2,42397,5538454,214,15072225,209,58535210,65366,7,1748634,3,591654701,20746,14959,104308,607059276,23,2813,42306,26,88,3684405,388986312,54855,231072,1056,6778865,346274884,90,824637,4428653,1,105,1090752,1,123339,62,72989704,73563534,4083139,14107,30804897,20109645,45,1886230,574178,13598,5,15825,1203,6,27695,4799,4412,426860,60346,10,17293,43390,870002456,12198323,1579,601238,9,3,26,1815588,6184,505509531,201908150,4296,198229974,3146,5,70622,739,2664,1020542,219693280,14907397,58787,297011654,414261543,67068,86693215,18,157111703,11831408,53715,79,510,472014825,95503568,213280,5767,12100,2552683,334,5853061,809287760,4235,642397412,36,43685049,1006852,3473472,590668,835,425452228,996373147,155854,133000,1715,73,1,626318506,16639946,72224676,81732115,245,148,7,5290468,9063783,1560826,280267800,35260721,3,83,24,1,139319377,79,393,25991,4018,642033,5032,123072508,1084,4804430,199983,13,15668015,809,342,31747,44,619919931,167485596,133748054,556074495,1563701,12,1860,3,838,72766635,45,31033,401907880,2821847,441,3125828,77,7,267776,12341925,780359,40154,51947,3,9529,20254751,5410194,174,45150705,189,1729840,31089832,295146,9419741,1453689,1181179,697602,672,22685,21305546,9,30,394,1734024,166254067,819,3208820,153113063,50001,49,9817671,8897,110,17,134,1797,189,4017,84696,14983,42370190,60547,9328,596601,1104052,4356,12764,7972,9600265,5,5,1169774,94630,283241564,393,155,31482680,2,3,53016,9,4,1,972084,1134903,453999947,501495,5,118123124,2421553,29,19426,116068,424015240,50568158,58389967,55489546,63,1683456,1833761,225,9797,30630,101447,2,28804276,6,1,6510718,5660488,236302,634917,44,1,7115,259410556,2490606,4140550,728,1,58497054,5483277,56,1418652,5,2714055,4667405,73,90198657,492943,56,838095668,10013788,604,51398,34071,81,9813454,4159357,35168,2049411,29462,2130790,140702781,8029226,706,182058089,47,38631,41339,625,22877,247028,2601,184416,33,1384,7,586211,52451,2012,184711,178571264,164,93624,15,1668,2071781,2689,163362279,4809826,278264316,62853609,137920033,3,16096,7,4417867,292484520,3,4162,6,2855,12,13,4789,23668504,2201,4916,2,472,69427,231710,577664311,8,20284164,286,58,175,37642498,4089,115836,11823,367,8061,18433,21,513118777,10382639,258,14406165,26,303,14,677,12916888,6031375,176,34025,436601,238772,126,461487021,889652,276762,8,58894,23507,266339109,33484897,1511,578707,3,5147968,644370261,476436219,4675,562107802,10,353117,7648,1,39185,2550931,47699,1,63659812,315002,4464,723,313574,6087,100507388,470,38516307,9063,1,361351651,33,93,42513,2150,179,11,268829219,4178769,147680,7645339,330134,22795701,12,28437,1621,33087,1909,200,197,5630320,1048,1,108781,21160,698856811,3,2552,155973729,403,7188353,642521,22541,38,1058,11354,2262,10225153,343,279964170,23443,10693,3,2,51869478,3142942,1313428,21756,508,22,24741,1,191236,17658,74,385687,849926,48,123580357,839,4,85,643,4,5674711,6267813,5,230481,275022858,2075761,76533760,2,13607,32659394,75562022,581283,759099023,124404878,1310,265,5638649,157701,4,2257549,61626904,33008,557136023,1,4678631,6632,18108275,26113,106359595,40438,5214,3441,158,335089,609,2542,232,2232917,37278,73591,861,203598,1534,324,40200,109,16497,3,38,113557295,1763265,10193848,5535,3074,11759,6,8,2457,536583139,322011424,184808758,601976,186919,149,18,225308,11825,2393676,125428,1891027,189148,8287,2622710,123,6142638,333287,45646411,210314,147672,15,3,3546,4,27583,390192,85658423,7468024,25,1086406,1192559,111,3,61836,2599,2761275,27,3,826710498,51,40205,11983,208025727,1527,3355420,99099,33,194525153,720,502775,244625,2817,60004712,597758,2,160157925,907,47980,203691,10504,56884003,7601954,4,4683185,43,99,72979,12399392,579,4764380,321727,118218401,60325,148938027,60,4013975,568004,322011,13140816,11,8602,177387031,2498,5932824,2716,1018,9080,15633,216801168,16148405,1,10158369,1,402423,2,615,400853139,34987,3,1,1,5,35914,92,1861848,657770699,414214153,1351,5296,2171,204,4855949,1739253,4171041,37779,58683,2,200862766,14845565,266099,21714,3807804,5187,3,8,708044,142,4345995,9680,40103,28193,24,173724353,999,37125,43206951,1,32455687,48521,400539,2294,1222457,4502,102395,1,408,69693871,83948,133081,451,111691567,5261,59,3098,65231840,917,116386,4422,8702868,3,514,1,18138957,11744,3334,24,35554,2,215,21114,4814484,326917,47,1351573,224760,279,49116,191,101528,53138428,116434,12276820,898,714959772,71,9,374896,156055337,6893,143928620,3,512818050,14,233423,5433509,953254832,103,393046941,572851935,113550345,181,367223061,1,384178916,15845,70,42,1,2379377,65846954,3135,696,21291,714647,70730,15,35337646,35055591,4,2934,115701,1,2,132737,2140505,2868139,27934905,15870900,61898630,207084,129009,3,595,80502,65,2978,31,1383364,5392593,802008,3,286174256,225868,270863473,11,497633,87028,239093,3,4113,166,8122,2167,17,317026530,7273864,14077,41724347,326667,6826,208,30854,779,2614,1400393,2309795,939300,1444732,527,4335,731065957,673,181,19,45,468557293,873610777,654,20343154,10147,105143378,3537556,33,24824,694909,17199122,366870,1,29,19940752,1,383568,4769619,260171870,308761427,253,1377907,6617204,10982878,5407449,516716955,909631933,12158,6039224,3134,261626,10693,2929995,163747,22176740,1047,1107,267,398,16532336,67732674,4085,79603,23,37093877,1818230,171298764,97,46493315,594052,96,965560377,872,41132316,14723,47,3517,740,12008,19,3817930,114,1219,1,1197745,5,6977,1,41215353,8183,688,577649747,1,12098806,218,15,511180130,322764,3,5914889,941263,165187606,14215,2013,35670,294015539,1,39243992,53594,189,3629,450,225,18288424,334327,1055906,6680648,355912,34192,317431,61,631915,189967,9,148,1,1,37733439,335101112,84593373,1,3,11717281,21454120,1965106,6282450,99378618,15323483,249674916,42695129,82,27413,17541981,35,255,143530,61,622190502,13,98143375,66,217263,1246753,10,1,87833718,947,95895534,5,55875221,9,343916167,28060300,93,501726,74941,207019485,6885,2394034,26883,29,5957520,124073,40,3248951,2424634,116,3250,894982,1690,15126181,17485,1659,2158953,220534376,120,453674,85450732,1262031,403341,8993276,5,32784158,984992713,526127093,9709167,54834,1,686668,3215,12827,852,17948,4454086,155504,7,1576077,93,2780029}

    Returns: 537497748

  67. 100

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

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

    {409368,574949148,165414029,7285884,1,84,440,281519792,253049579,93,47755,10195,38,318396,996,36721,86262986,1,3,4,111859071,132460766,10,58,4892,6581,10,5664716,134306105,8,3,89,22266781,2691876,41,14546749,8986953,76069434,66,2,2,905,7,6175706,26475,6,1,1099,646298182,2145,2914489,1,5,14,11295,91,111,88,40713,143734,372539382,73,657,1,3230,22,1,281102,2349,267970069,14539030,65,17333,465937021,808,432,312641,132410100,1928,15,991360,58,37363,98210691,201763416,2,42400635,848535,23,2,51,17210551,99739,523421679,3541632,45344,54023573,1586,56860,3611,70362,274778526,98474,156860753,3716,11565,10615930,225408025,25,703678810,60,3311,3971951,21398,6061,57971472,5838,1890785,9,342791123,49406,5527796,22,16222,3,9104211,1365,5968588,314972,1297259,3470528,3128,731816178,6358643,683,51,2,437982,158452,26,1973367,5553201,304657114,548849,14974476,9290,502966,167,84003788,2,790180471,137,24434,2013,518881032,126,16342,149,6041039,157,313655241,619,19890045,6521,556897057,94246560,851,27128336,124,129326,2601644,435644,40151077,4838442,2233,5846292,1448561,37032183,1491347,8420,96,305537,453261475,1816522,205,238772837,57930,156,254109277,51,6484,1,742828434,162269,12285,3,70,514,2422,671608,149,70,808049,130209455,468,39711,108734963,9,348,7,2,233151626,2177978,44440478,297,228,40,157095,171107808,521,1866,4818055,34985375,3,310,1131729,2809,2604858,280,6277075,164,1,219,49,416242,3793194,7437,17791,4,29643653,74536300,507613,788,20198,8937879,1392,26004,734,37424063,12844730,33203,2231028,2,223,4163,235535,2,3475044,6,10164645,29073,4986919,4805971,4377605,10961904,1609,17356635,4,4,9,12578083,14911,1122,1,16234,359,13731787,594,393476561,2738,1,17368022,1089,58485,18577,199458295,3234002,1740,228164,32713827,27,24689566,488282497,22,4,31055,628561743,168,3930,13109,26120571,132246,3,149261,1190,639085,3707,27194,154,405,771,271358,11,774232544,11951,9,2822466,69802,1,29,543644452,449030900,9,29150467,12233,28,2,4538482,12128531,290,7,169901,205,6956472,61,1,21292,242392,172,96,66845465,6,37713,6258713,73334475,16250,8610615,1367,2484,11490,474034,434,12810475,275954,166,231,73135,283276032,4,58,8,133512,422071894,5414,7915,855341149,1,32,3366,31976,21760267,12909086,1604565,2325,1299,39,958,3,307,184,3967241,5457,88,75,1095,45046043,21204,242587319,435,216314,6079061,5302,13,95067,18,34,54648,30834,9249,20414,60927,9856,122286160,145,6,127,6,8343718,5312638,152247965,2,465984,1939,1,5236086,720,6065880,87,33062,38543827,3,2343484,64,26,50,1179955,7576,457774930,116033,105,242269492,3168,70534496,5421,104941395,983560,8,111056239,2115,304233,504746,18,3,9,79,88478,504,322427093,6849,2712167,15535389,71,6872196,25698360,2,14615820,5790,11845,623,4918,307,10969903,396,9832,83707,65885365,5,1687,19,113916,40928664,994870296,1401,5082,174503253,61500975,432467611,32877,2,9901,431,1314309,1030,177867828,2501237,57426,7,7,104080639,2,871666,60159509,1,9,32,13084958,223203253,179991395,513962664,122714389,37848,4,269072427,222,787254299,209709,181,13,317,28293448,287,365,332491,26797826,4413,98732,6198,89816,344806114,36015564,30107977,542,36,3,52,58,1,21214697,22,5261,62050588,26388,31386461,2,2741,14,9267965,21320,863369797,15715418,21712,3,58,288129,16431,1,2044664,8323,1208,4388141,23704813,567,3749,1132,132653,17139768,30492,492,2407843,189112,431,360493476,314926,50444,13462,4221971,123543,15150476,2527930,1,8390,1744433,2509,14809,5,108,104,489783941,2730168,5614761,3,21,947149,234,208387306,1718291,48105202,7,306661,2229594,2,1688272,3757,8,798,5906,1,4,1,43,33569210,21,15273445,221420,51547,903,1,5935,1,148545,134409,17433,23325314,3367,191,675038273,41,193,343,74896245,127711,7698,10,4,47157,11931772,49,33669,78541238,607075858,274,15,9828098,4,47,634929,672858,100,7755958,478,38564,498266,8,412183,103084,660,5,4174,129560,1564,59,1679187,63306,27,606536,64190867,6155467,1,362587285,105577,10532466,128352876,10031284,167557255,1836941,5,9274,344372,52,173718066,80859,5586,5543,159710,16060,67560,1319,9,249,217,9,929999,32,1305845,4299592,127,16553731,1,5921,3958,36,860654,35,128,807,176068,20057635,169903,118,40,415638,61785,9083682,296725,271436493,88009906,3335133,435302578,198,6,27418137,1556144,7,110,153,625406,146,231860761,15049,194,13,1,2352964,620,3264487,1759,54973,302,20699,26,890314,132507394,52195510,852,658,93925845,230865980,5052,369338,156,11562,148,6,27,1428,22,61410704,122583,3575171,43811,192761,142,22533,389969,279,8847602,171433836,270,10281,496,416,1498,3091,14366881,854578389,19665,5049,3568,26903,4925,79972379,1737,5,3377073,156188644,27637058,11520144,696780,20787485,19,423347,1251,473208221,4964700,291629149,220004,2,18850,403323,3,8978633,177265,139726,11,161,22490,7401,1938,3,37205450,77,5232,236084309,955683401,583358993,385061515,36968787,6550211,87976,26,3,626647,108,929549220,193,4408,1,12004,5,874622,407630456,49,6,94322871,24410658,25865,3,65136546,660,2645922,1515,5771828,9,137,651,5,120631,37,42411462,266,15036180,14,24,75920869,3214,51,2,52300,146,21007274,162358839,4423901,69231,11892,62,18957996,9470,24,77880,1296,128,3519,1,5680,204707381,2534376,195,172577,7,76808,90580,92,2096684,26,2191,985622228,734,14056,493,645531,1502,11869833,84003714,1,31,6,2,935170,317,413364590,107737251,119,257,1441040,22406,41242,2754218,74269382,310813,2,41646250,6718,11630,17152,228,279836345,72,1103244,9267362,704,33678487,1792,1909,319604,1753889,2880978,4,710381863,6,15289,9905958,42,3,347,24,10573,56993,234,13,78,223,250938152,45712,86939,50272893,16375451,259109060,4085,61059,440706417,86,2124169,1402966,4,1,98308,114417,12,86,7,1983570,64,64,597303,14,3231208,35569,1,17,4948,120,106839,29829037,52,677399,1,111658,1399535,5615166,89425,28288975,834252805,383341,1203763,1878,4,1145,23,34805,706,990791785,109,6452760,3,25966952,85856,320,197845341,14825,131,23728,939201,48077666,103866578,158259,9,5743,421171052,410,19071,431411,33562591,71,13689,428640002,6454100,421686,436,39,915,2,6,474737343,1,3,160199,8805,4,68065944,6107855,17808252,15748,548690,49952760,24865,291,12834,15849357,1703115,36705,548162331,684266239,8999,3,58900710,18744,86,10469220,4019,45806631,26618,43,1142,362262,1173,1740331,782927853,14163431,85719803,50461,14743208,3562330,461028652,2984054,22050148,10929085,24173106,16,8768675,184245,23886,1582,56,2325881,4221334,222291,9581,80,13719,941824254,360035,20,356993,487280347,62924,20,1371161,92,1064,2,182971724,4119670,1721,90881,2,3,857,18,248,6284,2381871,873636745,261,235,27,824551,204799,39,61485464,204,725467860,3723451,120436,3536,12163536,942742,516,313,5,289128635,1739923,16070883,64026,1114819,48,2285642,12,188045,81630897,2461469,132,23,2467,1251,21838860,6564,166601779,12000639,151896,2362447,1,5,233491,161093883,2,1,210,1424152,74686,39806025,137473,37453859,1612329,38438064,80,1765,2351940,28665,6,110827,1980,4,3437,18895,845138398,625018,159300,1329931,760700512,214957517,161296110,61281240,214987,134918907,2,17591,9971828,97052,103,157654591,1761,610876335,1615327,2143224,2,746705,1,70274,1936,19469,333923287,12572,3,248,217067,37538233,1153469,110546215,312059510,772166,1199987,43949376,1797395,126200112,131923663,311,7980790,154969006,35528899,2,54,1,411226986,982515,726,260,9056,389,1030,164323,2,201,164737,3,1,28790338,501,107,297,199520264,119,19381883,18,43947,2481709,391195,66504601,3580014,6334005,98827,678343,898562,229,269,267873,143861,12,53797345,17020,9088,18128,486448,178628760,671072,283190,198,2022407,2489125,1809,3525,72197191,71896,50883,674,14679,990,9,18634,6346,18,1966355,6,991233863,311,99800,14,1742516,7519519,1,754002,240,9809,1229,47,1459954,14599,1805,2783,46036,1,712,14805769,19086,286902,84151,887231,57,354865,3,453,824,388083964,10063406,9,150963669,21,648,7,29873,4157614,5504,219,206,422,35548,158,25387552,181057}

    Returns: 644440612

  68. 100

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

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

    {5,144277,11,33000041,4,35210,4456,6677,197038306,135934,7038213,404465215,1661311,4737211,9713079,1808,4,4299126,8,30,71,3626,2,33165520,50187663,7,28726,21614,17,1,385323388,8272686,140930555,18,5,184915072,5,8,477094531,4764810,66,166,4398327,1,1247,607438883,1150871,267183,1,195994809,4624482,12,1918,59089851,504,474,123,384483,3788,487260,874211,169560,688325019,5706,192075,978871,21979185,256681235,1,323984786,19,182,378652,34734,3803805,93291959,55,17,125,61,11479,288793,61608,39473781,109,3,7113,316647667,3016,29982815,87261,39303,1,33103,14478,20762576,190968942,27,111511,288,59269847,1779,7511,12498,112,26,20023063,8923,9,1238,2,115533466,137825312,144093,511664962,119143,36666,7,30,8,24,293,12643,7,5079150,1,136656,32,910452260,6470854,686400,7,278,1178306,4839,2784563,294303,2,52605547,38110,104935454,117995,2,321856,904857,2,1051574,2132,2,10751937,24,535860333,185747,10,5991,1708,5,285,4,232513993,164131,78596900,535578856,940,3308830,2684,102430,102476,350630,2479711,105143843,123,3178865,8359352,2758274,12,7,348,131850189,24,2853825,1,2,249192906,328,14255,44789024,247,758731,797497047,204640651,9090557,38,150027643,79,30719333,902405432,20564,45,12954,52,455,70239,1305763,111,8919747,88804944,500,6,60503,9,15,9354,509,14862,418,1,1745,649174,289447131,1006295,6,11851955,46,79,4138474,96,5281206,284,17108,164958,516,10921233,1593535,72960910,25222833,421453,252,342772,2,314,573,4606,955496906,1557,93,8,3874180,211,4593506,5238814,9275,1860,16,50385,15116705,124185014,108001918,162,12443,989870,675540,125066385,650434,105,16096079,1,13,2263,476744,87969859,4949185,58567172,463371532,3394,1584,3879801,5300,19692,243279302,17339,189145,34,7,7351,612028,732,3,3480861,24545,630107050,952959243,1031,17183585,562046469,689,3943175,22438,7289,58535,372745070,298634,1026,72,97060684,233494934,2575,7,316889,207577171,75355076,359,1,1,71869,52888687,454052913,11492,16,13931,6349,11443220,97809073,7,662470,495221,386,9,15,179438447,128953427,452792,82546132,6,1,9511,150,240,38,151257,88141227,110,5945559,20,25879349,4,1324581,1069,193585,4078,128592797,21609,11,2966,31406,449888,2560,56334,749569,350,21,2238,5631089,1355848,93115,1,915,47596658,134,6601,1,7185290,6229,153,99434805,200,11,1261,6018146,54,112175,13,21813750,432646122,43493,494,866098171,667322226,8,9436664,301928,198,957,418209,4,895001208,1329879,411342,34850438,20055,3438118,141,850092040,50846786,721124340,451945,1855,19619,51883,19,234214,33965,12931,13522014,6511,8146134,301839653,3,6,1024365,171571,50,1,137174999,19,3160,888,31236,174885843,915341849,3577,532,80953000,1,668804,97,12166453,13,1593681,460629989,800103135,36593684,100,22806,7497391,4,659,426209,8834615,213,1,7807,1,812123,21255619,99128167,60679137,476467628,326565,22859195,1,3,16955282,73709,510,603,4461,8796,191,1231266,142783523,32921,2647,647332441,2820499,452881,1,9288,34,373,2419207,584,43007,1469397,24,372410,29422,10,4977002,393597016,5,17403851,21393462,1269831,3357,99023,218,69,136,354437,46952,382,471063737,586,2,24039,177645,9008,11,574180935,3379272,3,228,27,155012,67403,30,91092423,311,135566,53273,536087878,6226,151320,3,181,82382759,597,4263,65477,7,17205992,15,1705,11389519,1336572,150878982,209,253442456,14,101571,467052,2,20926148,8797,191623440,1565,13599,1740664,2,1,56,809334,871,291,12605,266197872,653048,68858,92,11004,242,1449298,69706329,118054,18902,197,8623355,1057,13,39,24,5971408,8,6930054,52,1649,54,52799,34073016,35,24570786,3102,1,6972,132027,29163,47931068,1,1571079,10310,3063910,345,5,129640,949646,4,322367,25603022,2667439,8,152344,276960656,854531,10072,68,210573400,175,10070,50188,71,993,59,5795,5,1868,22469,118027879,389081737,2905172,1713,5077462,875265667,18643,5986,1454,118,90301791,1798,3702532,20782896,37983957,121,297460026,585715002,1,27411,475408,780077690,113971,28231,17354608,4087,1216,9242261,35239334,10104,3,169,135689,112719,4411369,2,64518007,82565256,14301334,1027,9910,1,683224779,206529489,70,5358,596788,76,41648,786888094,2658708,59733633,292,507716,2,59467645,483,1333726,105,111,7178839,5910199,10395764,2747792,740,49967,1,1442247,46188,218080023,204,27061228,777,39,2,5215929,1623687,193,11,2717,1,5599879,346912109,4638015,1,3398045,1669,27049491,841,838629257,227035852,4136,351251775,2041944,100030,15465625,99720,38347,114,33633,7025,12219718,6742,7,869086,289311421,5454,53508991,501,1303,4813149,6919187,113367820,79568969,29705,246008,13821,1700764,292355064,726019,563632060,274646043,388056533,25046,329,3,2841437,16,516549009,1,6,1,141175558,16,26365,56699,43544872,32704722,13812,174,43711737,173,62491,13637648,88,1,147,266025,8,676522,172032,316,2,13875792,20,7,435505882,16,248408,26414536,206050667,8,2546,879904,9,52566,1571,653273601,733314175,298,753783368,1,331158060,17,3314,50008,1838,1,41,1747,94854,169394428,141000,6,199111,11,3,36806348,3479,538821054,5,250382941,2206968,185253271,185540121,14903811,135,26829714,73,167042984,28011,43921585,1168,365,153735,557,20516842,289,24587135,10689,35975765,23068,107670151,1,84740,19,8692,186447,1702910,83648696,159012189,341815,113353359,8616,177269843,587562,1034577,108,679188,10701,139,15,2266,1199743,195046,43771554,28399072,1002156,123357,66034,590083409,55690,9802387,738423901,64740084,52982197,7171640,11282605,3892,296111667,14302291,5852,443,47504745,11,1845804,44058,1022212,413,182,22638065,28043680,18344571,1122,105837,173,7936830,118300070,133228683,6848,85,14922,497464,15249,42113,1086881,188011594,55788,81008007,1001375,16209380,745482592,3,68390817,1509,2,56319305,1,602206058,47,2,82,26197650,763143273,17182,15,144710,12770739,27878,1315,4,2142478,76125,117918862,450100787,287583562,166,413,288542,100,12968,11361,3624,97490,868,3,2,154263,109327,104,141482,120885161,9783,4,4849417,39,654588657,5060,2,9928576,550464083,5705,133468553,86207,566261862,53353705,969377359,5283,217,16585,129333,8878851,428,28,22941253,1190,13,3,6,88276739,11943225,2,167350672,16,20437,38249077,9274212,5311189,10289134,378119097,16,22134,7800190,15050,40974,23825,3,52,147,4,1,1078,22285,3055,12385,27,5,1397937,311176097,6,67,5,29454962,1,201,454455105,28,935583,495776195,3882625,9,1,1871,4,4685,2271,8361052,259972,20515,3,96338,590,864,1,25899,107605,3323,43502979,1526515,1731492,16680,697808729,320,1087,338,219289431,27,64,549226411,408437365,57969592,2570052,177638494,111721,612338431,4634,5,1640826,4226,95982,81,22518674,12010,4847,119498044,922509863,277924242,17179231,24617768,30,248472,10537,237521,16287050,1545242,767111889,2,1449305,995015,309891,226,119697,12,97290926,3754,703373734,212810426,155,3,87,2095550,825084,8091860,5,20,143984,913,1,174998314,1124498,2581,60955303,103763,5486,1,115681,46782519,1188942,6,26511,1,2,741,2731,1367370,641046313,59161613,229,35,1,994405124,2448,801,1344,38371,1285837,54,59752,47,587,87935487,73,1150,10,71,1441,23,218,2,2,969077,162253778,37,1183909,56493038,3,1,22650,4,378405,1,724875521,7650,407,1206,850272,21319318,435845,45099449,5682815,511,2709458,675176,983803274,24,236074,15565,802,45776,23309481,729,24,297,48055,371304227,7,184,973,572,401,83,57178670,1954582,34,1,6103,277348479,76,244282694,13121181,2313453,20411484,256780921,5025,9678,20903,28442740,6028,898160179,1662,1,252192911,948645538,833351918,358,1284,171,4,834148124,145837349,660787147,5406419,279825,1319858,13,2,28494909,26215873,1127,44082530,18722,221,15625078,31494,365,48,13777,68026230,2,221761,418014,17139,5429867,91,6,1898244,965918,1183666,10,7500221,432299,10444170,7397,3859319,3877,5836300,12,842116,1651,32003648,18949,149,3181,8,43611691,21435,8,939358177,3932517,234431381,1862501,2448513,3005697,2424,8120,1,778636017,380,177,256075632,732839,13,11,49,12681,117486,6,189535661,6033,3172,8565,18,65495,250519826,60,164,3541,44546155,29,31290,46773,121863625,60723,1946,834734,2,22758,46186,589,9355,1,138256,17,5,895,22452289,1919,44,25500,81797745}

    Returns: 2287070413

  69. 100

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

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

    {85,15,732,116971,28230368,34,44,842506,3421147,11341,159960012,14677934,10619092,49,27,45,32,120246,664472,38,414578235,1324117,44634,9,17,989141854,136730410,7,36727,70102,1799175,398760462,62,159623910,89647438,17075,1977,93479004,37840,8775,1,226141,13643879,662247042,143,4904225,210,49018611,8224836,38292,3719650,905,4249765,5530,1535,545481,49,903113,2509390,984,41092365,23438069,2558,812,929331235,503,31694,13848191,6,153,14511970,1664,9781514,3747,639141,34981,16,56,1,53010,94310775,35304798,4287958,5149888,15368690,1606,85,3,29405,10,34050225,3869,9570761,10177,845,14,572748,195444990,2,888843998,4,5000,113794,8190,1246815,1986,21800771,68837,111,532542,63635,513,7761979,170,1325665,2376,124342,228178042,190159725,1164,663,2922,11131342,42242941,51062,10772,300,377,15,5,495698,5369,18,11,524515,2,245416,23,4,216,10,25909,64910029,1074,2551,25525,18708,10,1,216299166,95,122,733554254,315938,1,22170,6786367,218885332,4,134220249,685,56614184,212504,337024716,74670774,269011,40,122,23371031,31633271,695,14825603,3,88,12887933,14463168,869465190,53,23745814,3064677,1204331,48279,292398,116731267,3360387,7244,2698212,254385656,312466630,2,45,1,9518,80,2645,1268,33404655,13736098,1,28016153,177184,71405641,1,1636,239914,9206,5059,763973682,26764506,320119,49704,332692832,2780,4533,30,1,9457913,150,1119701,52951,14433,1096,28103,18889,364668095,425,465,159655053,2570,125,341968,3638294,26,62842404,27611,288,71,103,345,7050796,639255268,3140,531272,78,2444,130476,4,45681908,25045,2823656,122,5853,6,418508,1437,2,5,5933,1,378013771,192,605652530,6217396,321272109,472207993,1842,623307,22103,43165,664,4511,3849508,36471591,90233,214777,55,5719,3251787,929556,19,11850,8089,258,799072,5,548,1051,21500,4,174,35821,2498,273426015,621010,507412784,136925,9210,4888,88,283777,736144370,25,66214,56305316,41478,1,369056,14,11,5277623,598,1261,1,229992857,477412,9,142,31068418,123,336170800,68816576,1525754,491590,18,26734,1,1414,1125,1773,1537348,3,2718,9131,6174,40124229,419293,8,417828,136358345,11,2949766,8,90247958,239074,45681,389823607,1520508,40,2,14472,229,4641,43,3031397,42,144,4118361,335,1391,1416,149792158,55499,7,41072,461166809,57,2022,5303,6,398,34898,5,224035074,100357,187,85,654,1503,199,2282737,187512,166104,11,29435119,524604950,2740,79385,720988,16906067,397,105569,512,48,5,249756974,206097712,11023,12,62,788458200,4316235,158061142,47843630,29417790,96205124,431507,2263,36,99300906,30,113,136,185873,298606,5414,2771,937,25516,6345,977,642345229,4988781,1177,226292,505741,2395,45142,378585702,2912,226,1,1145859,761429523,4272,442,4962,250682756,2006,707821364,101140157,481096390,1762228,5,25174135,3980343,262,18788795,20043853,602307095,509,6,356046586,133395,13489996,408,15011,782,5430565,3969982,115481,1,635,137431,971476096,7,31077320,214207565,76938,41812,231,481,156,4905,5842,72,12217268,3340774,1152077,10115624,180679534,110526630,943552,5554,20391,16,36,1059,31021,553836002,49148,69,474442,22,180,69605705,295,13073,56,199742253,972620,2,937,4,11205848,1,542931902,18,93,5,10659846,105,30,553217,9,21,2695,5173601,17,46032,2547,10,155677766,814741,55642316,75,76720673,442022981,50926857,2,145,408404,210342,75,2948115,31,337,22,74,122423244,259393,2934275,602,19405,1192658,10068,26,107300868,316,5571748,371342945,14862530,9,13190827,151433880,5634,137563067,59,697167112,2913,1,19704,60,41775410,179,107484491,205,203802282,298,5191932,377260,11603,13,3538857,3577,879361679,112582176,587218542,31,254,3659236,573062,2907161,7,107,85501021,6,570189433,366,10609,643,53227,196943,3619512,84587,4473,20940269,1551,9,448291258,175,4,33,7486,15,19689264,386,2289824,86,4,9,315412676,5424,11066,36219137,34,369,605508304,12792,908,2879,15188,2,22,4588253,1702847,26999823,557,2736,129778541,898828267,53026,18488672,193586,270015669,371,3,25,17152,130411,935191059,1486,914,27,8,230488848,1,72955,19061,1630,5157813,10164,9388,112134439,47396,132177,33344,83,1740,68282,15908288,18058,2838,442128,4,17993995,6351,153,9,100463,117,129058,1187,2191,416585063,63,25605,122860,1441,2749217,91740,61529,30921,1381488,324322,1268044,18400553,19671,376,495736372,395940,6,1902,3,384734351,247105,40437281,2664,1723149,166,2847689,4865581,4,323,7209745,16034831,98,491758,397,1346358,36,6561914,135,18,942,1482,50056872,35,502403,294349,29673,29,2,6,327573568,20766328,385,1249165,203096,64,129009646,19,793,55676721,329,5,854325,39614,15867066,483,819,564,1,1375,925,955910406,5475971,984797977,31,150971,293391,2,3458429,328016924,62,924,1,550576,432820,3391123,35,322325618,36902,143518,1,3140637,349,493230491,42859,1260640,7,31117176,13119154,1,3,11509882,740101,18498496,4885,10528800,16,5277287,1,979,1988,824033,7,11409,92,4933685,14929586,5,20,3754,30989909,4329608,27805822,668,620300,11882,2243,361731,1,43781795,34504,348,257663223,3053,213,129041643,171,1161,9388929,854358,2,54,269274159,1,4,31796449,96064,107977,39395173,1236053,639464348,262,73278,638,951519663,892152640,8206516,540179,6439,5696,4393199,8277246,6,15,853,1,631134701,59846,15002,250,93345,24155541,1,2,54878375,77817995,405,1,28,153592,6566108,7888,11,12462,37,499,2471914,39860,428,283954,60,4617,54851083,250088853,12674650,90140507,128576,823,75471991,6263761,292216,461129734,814,37109,10345,502202,9688,24139372,2332,110680063,12598,15871242,2,35326,77,6,94,4337813,25988,15,405505,40903,251003,4,98,143,145790064,5836,5,664,76,1,55,352379627,5,107093608,640702,82672,638318493,18851,61424711,4102,4185,120,9,22453,24039,7214,61425,2143235,90924,3930867,50216,43264,148699061,10811269,86921601,114441115,240465765,42,429293,147,1,26122,19,210645782,1,4,1049,599,144241360,341574306,23581739,3158087,8982137,3377268,28710713,428044,354,1,6,1556099,133343512,413351417,947126,36885160,299876,294,84,1,360494,10963430,42653360,37079494,20346,233,1785295,92,2375,960,72625412,1744039,304188,3210955,7487480,347911,69183981,9968,6,230,1,1206,42314,68,500,2,13448350,51424,128,11563,10936321,1,47748216,12725,393001,236355358,40112624,5514,2,5,475,7060,3357,229,234342831,18675073,115,1854744,316630,135426388,1827,482447640,515,146549,61745249,298638,495860090,16770,299010,140083,9049936,4,817375035,280656422,143335,6315510,3,1901,21073882,40607273,6022225,25432244,13716,1,4139302,4675,12464,478995199,163,190,10,38706,3206016,950,41654416,3,478,6,1,194,762590,30884722,8589,593,2740430,5,140,457042598,8027737,40417,356103289,322,7867006,15827,18,77,65500790,11,41745656,364,1,140,48,130646899,96605,81331104,240,525869284,5123093,22,419102486,1,398,1133,11886025,233268519,1701187,83094,262256,9168,10732488,1421540,7738,212,86,14,376,40,315,399952,112562,105696,53244,6,6333,1447,2118271,1151249,789478484,28370955,82646323,789,28,412951225,582418,148266911,140653,10640,7,306614496,96383891,358975,68,640360550,10386971,155,246,95926064,536,1,3,351751499,222683,2,52333,2,7,100398,76165539,286180,15016,2730,313,16657,191,12725449,15822,567685350,36055913,52,315,14,201,82136395,9456,5442730,178601,10589676,28,31630187,98,7,18331394,684,592,21614799,40609946,1480228,99652048,142465121,228,7416,114,30,1,1929983,1,322}

    Returns: 978986127

  70. 100

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

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

    {10021522,213239,299,5,138,30370,133,1222904,16034704,40577,874543867,95669,21430,637586,7002444,2642948,12798103,422475,21,5,16315745,62268453,5,15,15,691,235,11304,256908374,5640109,86035501,379,140318040,2898061,4,27,9,1,5,1715,14518,34,538641,31264,650419279,80,11686304,13,217679765,112405,6,13661682,3448,10061725,234198536,82,1,1416351,323738,1,66288299,187557,74647,194846,767997848,8235260,364783,39305,464,1,379879363,2753452,567921617,30740,888740,724,2249842,192,1,2091,241,2,39,8,1,33284181,8957038,14100261,1066,544,10,7743,12,571,40410179,115051224,35455,12274162,122082594,802,67,292,1,4012240,32,5003,2,1043,186782,995681999,2120,34,11972271,20,141048,18176640,677024,88887,261522891,6823,1,120,1,326267078,3093256,94901956,2352218,1242219,2032,283941658,931,6970394,28801839,60022,1550,129066680,6302319,4872147,2,92271,128904623,285784993,2,38987,14377552,35,12556915,2205758,28,549422,953,10169,7615,17235087,10536335,24,35955021,1,61119452,14231,21,251,114655254,1,298767,842166,2,62,201,2149,49735614,24580457,4448870,159,22611476,63,26864,3,1965,73,4,15062718,54829,4942,3,3843069,38217,4883,127422208,30780,59,4,5478,31664,24,129426,123098,61,21103,57514716,18900236,543,12018,507,1371199,366,3143,255409,50276,232,1,11,1357423,16,28,2754,4689273,768,718586,24,28372112,80624823,84289851,2633844,880437,2300,82,205664655,14,83022,157083185,15482736,952883,112872,1523950,19680349,2296101,104394395,32,16410,22,6482,28399787,6817,2,701562,345,113,7506,3,10605,881,3552,23143,227358,385,18327,138,136725290,564,12,316136871,155670217,129791,90,325,365,1966505,1094796,774454,708958,78814,18873423,5774,36,4374521,100582,41484688,70749,156683288,229,49,301366167,86222,2375,733172,16357,35,125828,3,315715,4835,1191599,74756770,4880,287,192,234,748873668,281,384821223,61885,448983195,640262,347,32102882,117,477203677,223,48278154,51209,12,4251348,2,26542609,469818,245,654124,46791186,1085617,42590243,2256,683,206,39,3,67,404,15556320,11020232,6970,579,12,3523,1,28,57,4,71840,370771873,15643600,4523192,157,845,14099,460199,587,41999,8900494,43648856,2,155325709,42976593,277,27005,6482771,16099,8240,329992,3,12507408,2084,330267,224990393,22,4858028,5950845,1415518,51,986934350,175874,13,113,1745031,593363,1462,889477984,2402709,31,384595,63478,3379848,7813,1932186,715,4762,1086106,10,229539,2018,86870470,89,919112223,10,38,12780393,16755,2168901,855024,134,29,158983,1,61101681,13,4,2143,477294,276954022,86751,343,2535659,7,146,4,4784,2,72497751,10,21738,203363287,22,104875415,6982,210994375,270975410,11370,79955,34439410,308513,56064,62806290,2,113487981,60859,46,9271,91163210,8137413,71,318303,72,29,13,9070781,14,36523289,13157997,3787306,108514,302,246998080,63,16,37011232,318993453,206,584881977,1821,219,802535054,4819334,546919,20890736,35,292785,328077839,256828474,23543986,190586,21317,21599758,161,44,11540856,120,1351976,429,43254039,609,217322700,33076292,5779646,40,62577,29,133244,427549,16,28521005,91,3951,5919671,407052,10393995,74300,86917,226,705,13,71224,94,2,182687494,166,15165,103931,18612,16028,627597,8,3523,8,727467,730977,24,470692,4,1477903,576875,1457332,34441293,473274,436,483711593,90431894,11931,4,443,2071,4911,139936,26,20252701,333303,216655,1828713,841,118875,299,55,15,37719,319715761,84617873,35234459,51549,73076646,519,569191,1,8569,71518004,474,6125,6,28433124,3369,61206,74,97009,6,178771,91959145,175067295,1109491,11439,5468,1,4,1,1,19,77,655302529,65,956,4,58,34595,8,31123799,305,1,137176070,140045,1,242086,1,28,129520533,15215,43018,1583,1913,18024979,45,134794727,1,20446499,2038,545,681068,8046,4468227,426568491,206185,2248741,857,3806,181505,21,1460,4530478,24139632,1873,346,9,10264,148,21593267,156507,13827877,561976,557,1741819,1575133,12,19936414,331938,115,4191508,7,4,1976453,9,49276521,1515365,19,3861219,91558,1991,5817599,4331315,90,624,50374,115,1454690,119274564,2922,131537465,64485466,50,426088587,149493,4251,105874870,687081,12119332,273780,2474,209,637414078,661923,1,38437,416507156,294568203,237770,15,42144619,64,11940,6383,135,8643,9867,3601,1654,99001380,2103237,673881363,774926,1597,907472024,2,7829088,5042,1774774,1872086,1,1310,693,37638,5,101851,178979,126964,2497436,3935,3705165,57,4993474,208855,37529909,407799,13064,92191624,3272,5930645,15736,36,296918843,12,266485660,2,6705,85771,4451503,5,2971,591070670,9,17944660,2122112,14993,84,824922,174,737,10518038,19353,319955,129636,55,13618815,8,13027,5157,17644,70,319586,376811465,42895,663496,2381,149549394,28,1602,278375,161,16,32,6863,629,368756,58931304,86000,30,3,94364,4,63265,1774691,387328,42415664,1539060,8,41697806,19,216507,1113,47099800,3265609,1,10587845,415226933,123188,9698,1764,45,7,10365866,334460,1587,11786,23282,15,8081,5978,256017563,12582,24940,7,41166,17429366,21311,23167360,910386750,902069,4305959,134590,1572375,43,16790,625620,124400,122194352,439543448,58517258,40,432956393,111,71105238,198,8530,4256653,7399,81,22606883,93816,65498,38,469458,1707,745,77,2,61,80459,94,28512,2361,11928566,2886,11,9117,1225,9429,1,3133225,50320,335804623,237,1183,585117961,5154,3291650,32010465,177004931,12,916851950,1529963,114262023,3831,27,6,163756960,1,2476,50816,21593577,6,475156,38,349,928,1344,574708,3085670,297,20912375,189314,433646,50,56679,744332,62306,379,3327312,345,1139,215132249,18741858,800565525,85,155704,12,356493813,365713884,12,6,5,87760,26956334,1,165,258783,871876911,14616,2516,134,4,1,1280783,26554,176565,2340,1,234778884,2,35,102439163,6,1271,3098,276,2733,1239822,37300,56,317,884,2406,215494,652,55309,34204438,1,5174000,178894932,1,2575098,39,68685,108568125,176,3749,596048281,101699743,3083,304482482,1732255,7,414266323,271092656,598817,4691,109896763,271,2400866,11293,56,36,34,23698510,287543,864283018,12,323,6,83960636,1426140,17,1098,389,28157,102347,2299693,122557,828,74913316,587139937,22183876,25800888,64577,74814,24767,64927712,134990199,13,69212,7,16809,8,138,50,5827333,2506,2076811,28,1676,11,30510,2657,50,281,190834,1476,3,5,12428,57027,11,2778,3,13552,657886,3659,131530,140032665,30,17434718,48,336840413,121929,45009964,1433596,9,552177,10352,297812064,1922,543,267,1035,875172047,375,383674604,645220,29,4,9,4049133,694,44,16202,3,638645495,1933357,702,732658,17,7213090,375525111,15690,137498670,13,34,5978218,527285852,163391520,8,1,23,1,1430572,3,1,41879266,7451515,24,1194,20,94076,18402,1182,142,114589,304818042,29,2565437,6,658,166530,12,71586,556415,6731506,524986,891003779,8462,27389254,17205,13849053,62449640,125855901,1135963,13,978,71582542,12875,320,3114,49844243,4,5,77714,10,81,1408,105940,40207023,52,8033,35,90119,3558,1686,31,5,3134,5105,137618594,179,8113,135727933,3369,7574,2629,3,407305,7884,85919,21471102,8775139,1945,24356249,1177,795525,96496259,97631245,485836,91796,440513671,2868905,861189,1159,556,1,1023065,6179648,2205506,37,12465,2339646,5717980,5357952,5323,34,13793790,1,147742123,50,16,8296,6,7919277,521967,1503,299971,10767,1318013,1645492,7,141388386,10276,82277248,28480501,193103,416,398796,651457895,41,68691349,321959813,252019,4,15,935,197971934,342426429,61348,597372,64386920,1046779,3661,636731823,546,829079297,3660,15119346,316556748,24,269211766,136148974,1231,7,164279620,117990491,136563,88691545,1434465,3741,720239,259944528,21,498,84903,1,8,3,45,4,24,772,2941,25812,227226,471,2475,175615,813951,89572,52877322,2752748,57,170,640,38109883,163602,103092366,3628,2,2261,51456,409342,3,28269,11,126914724}

    Returns: 878898663

  71. 100

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

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

    {886329194,999999968,1000000000,999998965,785384011,999992985,958082500,999999914,907070361,994365480,999999807,999999387,999996411,999999867,980430004,999999998,964191411,516106084,999973091,630453898,999205699,999998654,999999996,985952206,999995696,998353806,999998870,999999998,997219342,999993659,999350302,999980510,829029510,999999686,999999690,999996911,999999964,999956004,985622675,999980380,999999997,996723012,39457376,999967731,839509352,999553210,999995526,999995421,999999994,999970418,999999962,999851579,999999986,999999902,999669947,999947714,1000000000,999870738,999998720,991244168,999999762,999999997,614788276,900657233,999999977,995667411,999999987,999999990,999999989,905954614,908683485,1000000000,999999938,999999998,568423407,966115131,999996725,982849518,999999991,999999502,999999987,999999742,996037742,993050507,999977622,986853428,999999983,999999978,999993583,999994889,999999777,998192107,999999856,999807280,999997581,999999995,997866252,999999984,999999983,999996984,999984588,999993674,998794472,999656646,999993170,723637055,999999999,999987710,992350319,999925557,937052816,999999967,999999001,999999065,999552506,999999986,999584350,999999095,999999997,999999853,999997495,672988691,845675031,999957813,999997964,999947484,999817974,988963264,765680123,998360345,913608126,999999912,764800470,999987702,576957878,997482965,999999460,348066512,997237681,1000000000,735836180,991447314,997704909,999910877,833392144,999998793,1000000000,898858984,999999986,999999990,997784629,999712746,999979810,994721757,935864761,999999990,999256829,999975073,850313630,985944345,997411915,997370668,999999564,870940053,993957618,999991781,999834399,999968695,106173081,998600605,999999417,999999994,999992023,980417131,999999651,999882471,944750632,999999967,999876287,999999996,999999746,995507952,990471351,943829001,990487726,999999999,999978613,999986023,1000000000,999999751,958176332,999945615,999998613,999999999,999889967,999266098,996985975,470321137,999977151,999786497,952233720,998263963,999998478,999999998,1000000000,999845496,999999997,999985106,967818943,999999937,999999669,999999987,999985089,998477383,999999800,999888148,999982774,958840251,993299126,999993754,999999911,999989884,729946506,998465849,999970919,973186433,999999175,862688179,999998976,999999191,999998520,943843214,1000000000,991422963,921195280,999999929,1000000000,999999648,999999568,999990505,659521096,999999699,999999956,999989032,999849116,999994177,993715642,999013822,1000000000,999681168,1000000000,999309006,999982075,999999993,999999896,999984013,1000000000,698702514,999999918,999999940,241810767,999995779,950219649,938799327,999994234,916031018,999998999,999999300,999996607,999955633,999999905,999811831,999999590,999999978,970857006,840169155,624272798,754540110,999999930,999999658,998096911,999999973,971413113,999999975,571438022,999999955,999992787,998043867,332128671,473600948,999999998,999999992,999250916,999994761,999994366,919879627,999997408,999964812,999917795,999998821,999798007,994044015,999090376,1000000000,999889009,999999731,999980490,996669847,999606372,999983174,999999879,999999990,988317654,999976977,998728241,191144761,999999691,999999993,999996904,999999917,999999290,994356730,994103243,999996515,997968133,999996982,252862743,999999987,190106912,999999978,999999996,999571465,999999416,999999769,999523571,999845111,999851767,999999883,997273876,1000000000,999999998,479220836,996601064,67322695,999988447,999870964,999999755,990226063,999603560,999997789,999582513,999958897,615165908,999999998,999688446,999999489,999999979,999999984,771530146,977186198,999425155,899466906,997318664,999998481,999997628,804989018,989344111,999800293,999699195,999999870,997003085,999999986,999150560,985221875,999996779,999988387,999999979,999995161,999998602,999812011,976503089,999059918,999999950,999953445,990686283,999881407,874202445,999996709,971874848,999993527,999999991,999998462,707956042,999999970,999999886,999999111,995982182,999363969,999961821,999999979,999999456,1000000000,999999987,535448680,978856264,971912481,999999986,999999999,991262551,998298423,999984806,762923231,999999993,983053024,999999983,999945289,999998925,999999730,999984904,999929480,1000000000,995888737,999988552,999932524,902021289,999870140,998507351,846969340,999999146,999999954,996942889,999999989,824185948,999975782,922159084,987521686,252717066,999135828,911035832,415875652,999999951,962774699,952120155,969883777,995258007,998740492,983913770,961190547,999999716,996321227,653932094,999999349,83879350,999999997,999083108,999775057,999999990,999999955,933548817,999992982,999606918,999998662,999999993,999999712,999973825,999999998,999998157,999843065,1000000000,999999853,999998215,999999798,807393649,979565183,999768692,997818124,999969332,999988963,264703033,999667311,995961705,999011401,999772719,999999981,941353613,999999068,999998313,999999516,472026717,963288205,999999993,943042437,999716540,71952599,999946668,999998416,999999997,999990347,993678879,994220093,999840812,999999762,927938355,999590063,999999869,984166958,998438639,1000000000,289880891,997500892,999999985,999992501,999999996,931069886,105390825,999986021,964143208,990184208,998807412,972947593,999597786,999999983,987068871,999999999,934820233,999999533,999999131,999999467,988580578,999997121,999999560,434549238,999999989,999809856,999997097,1000000000,999986968,701129904,999998502,999992728,1000000000,117908105,999981035,999774565,999672054,999999002,992081990,997816633,999999989,999999768,999998886,999999953,999999995,992016617,999998472,999999869,999999997,999982860,999997851,999999364,1000000000,999996880,694698503,676855324,999999998,306108109,999644409,999949623,999994382,907993046,999807859,662827074,989163862,389120854,999982979,999999998,146207006,999959547,999991593,999995691,999974080,996694694,999999999,636855395,999973980,999999373,999763572,856984183,902878265,915393550,999999998,999999993,999996222,999995998,999998871,999999763,999999440,999964445,999999989,999999751,814947970,999373023,999969581,996764875,999999046,999998981,944387809,999999706,980340054,999999988,999996681,999999987,348187977,996866469,999996862,999807015,999949809,999999917,419186919,999968310,999974977,997935649,415071383,986798568,999999971,999248268,998574625,312531294,990688127,999824245,39141525,951582822,991439230,999999965,999952425,676559171,999996368,962040105,999999956,540741351,486335396,999968891,999705089,999994224,1000000000,992717366,989127300,999999939,999998785,999994673,999999505,999999797,999993231,294653430,925688870,966028429,999629317,996210377,885131681,997223643,999705739,251478508,998072864,999274751,999651735,999968519,986656731,999999900,1000000000,996685056,999727563,999999913,999988492,969394483,753509324,999999857,999991223,999900939,1000000000,579679102,923114288,939049616,999999989,999999988,1000000000,996269501,999999962,885563158,999998265,999999979,999954258,865919685,999566468,999999946,999999998,991185676,999999880,999999512,999560689,993605502,999999620,999999982,999295644,996309982,999997756,999997987,999991486,999999938,975078286,999999834,998440427,994375970,999955104,999999530,999663299,999392477,999999910,999999565,1000000000,999935224,999998837,840747820,999845912,999994812,999936516,999391615,999999934,997280622,999999432,999995978,991514819,999895909,909688381,970808298,949094808,999927879,990275905,788347311,999999998,999999997,1000000000,998729884,983316174,999979258,999999787,942491685,999999560,999996483,999661241,998289478,999999704,999999998,999999913,858347603,999999895,926390061,956810222,989354729,885632707,999999990,999997918,999999999,999999686,999996259,999486138,999923708,999999947,999999991,999981124,999999956,999999992,1000000000,974096561,999970462,978585762,1000000000,968300411,999999632,999999999,999998304,988152940,991093344,999995850,999999987,996884959,999160563,835053765,999905561,999759323,998889389,961512229,999150507,999934530,999935645,955931331,999999551,999996052,999999958,964102033,520577223,999817454,999999986,990420491,989608975,980104308,986235664,999999996,998752975,1000000000,976521964,999999997,997963574,999866552,947720796,997062899,999999922,999998721,1000000000,1000000000,999999996,999755629,997560441,618196704,999994973,931456248,981463997,54232274,620597644,999999963,255678984,999999470,999999927,999999734,996001821,1000000000,999400622,999995047,999998969,597288738,999999984,999958982,911125977,999953275,979654216,999959103,999974566,721559525,999993221,999999964,183605826,999998790,999998717,575656598,999999975,984081565,999999994,824450668,993461114,990312114,999998446,947988650,999999998,1000000000,999998404,999998193,999999500,995395375,999988026,999999995,999999849,988261560,999999980,999999146,999996471,999999948,999999914,999999986,999804779,999999952,999990541,999999716,996561009,999999893,999987970,999991907,972565307,999999909,1000000000,999972542,586341881,999998960,982683471,999998479,999998489,999998877,999999856,999999996,999999681,999999984,999999986,999999971,985648638,905645238,999988115,999530690,998110446,999961911,999988793,999995673,999999996,999995649,999958076,999999954,805062507,997237713,999999809,979536952,999998292,999999988,999999991,999999966,999997346,999996899,999987134,999975754,994685708,752888217,999777944,999630973,826139315,462350620,999219471,999144257,999497416,999999999,990231738,984107597,999399167,999999981,999631554,802699403,999989022,1000000000,1000000000,730709410,984865571,349636891,999991588,970619153,999999328,961288484,999991127,579479365,993591330,999999678,999999994,999999997,928836353,998863046,999999897,998783850,889416767,999974384,999943694,999999870,999880043,1000000000,999982892,999941880,998784365,999999005,920070680,999999990,999863254,990593465,560636183,999864709,999999967,999974492,999999998,999982882,999999996,999992832,990749893,999999770,999514007,999999959,1000000000,999999998,422226450,651782149,999999967,978549564,999987649,999671002,999925174,986298907,999998407,999999993,993940327,985329026,989704918,999991184,999999771,930134551,999999690,999999983,937085078,995980700,999996787,999943715,997893876,999448237,999842647,999988686,999083134,999999891,999999252,999999590,988049657,669559285,999999997,894825289,999992766,999252951,999999999,999999888,999999997,999539370,995427521,998896984,999999890,999999958,999999481,999999994,999938765,999716033,999999836,997665545,979621206,999670128,706799146,999940482,1000000000,350002654,999973283,999989347,999956767,962744623,999999997,998356855,999995054,999578302,998904734,999890572,1000000000,997919691,999999995,999802828,999999863,789352052,918925175,979124564,999999981,1000000000,812812915,902051600,226819602,999954466,999999795,997360467,999999998,999492810,999978102,925930155,999990574,940514986,999999881,989492436,999595887,999964020,1000000000,999984478,999999976,866000605,956790594,996587409,999998020,964820550,998970431,996008323,998852041,983465498,999899106,999997905,998350363,999884351,994717256,999937822,999980832,994944189,977439089,999999980,921661779,845847097,933331548,999999890,999689792,999998980,999999970,999998531,999142127,998774705,982721878,999999501,736085223,999552256,976031152,999985374,549508797,999976126,999641843,999952264,999390070,906332426,999999698,998634496,999999938,999999998,999898678,999431234,999992166,999999767,997582665,991872624,999996943,999999995,999184660,999926003,930004944,986290782,259104491,999964571,999884971,999988746,999923843,990835529,1000000000,999999998,999999905,999999940,999999927,997855836,999997004,999999986,999599525,999999917,912654457,891712713,999998921,116534547,999975718,985121429,999999917,1000000000,946297037,798438918,998829514,211703491,1000000000,999999977,999999920,999991918,999999936,999999960,999950591,999820898,933597188,973546327,999752267,763372848,974017762,999990683,703643506,999909581,996666645,802041491,974239618,999875825,775914621,999735907,999892625,817075370,999999999,628216338,999963809,999928167,999999997,999996600,999999564,999993556}

    Returns: 23543035116

  72. 100

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

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

    {999999999,999586424,966157317,995120551,999999999,902884629,999974767,999999994,999777112,999999989,904160875,999010710,999999257,999998552,1000000000,999992369,1000000000,999797873,999999585,503444862,999999193,999627964,999982532,999943791,998414665,971386635,995303445,999999531,999998639,1000000000,850838506,985099954,779956732,998855602,972560011,999999989,999999718,133629318,835864942,999997626,971912500,992241342,999815090,999999836,999999911,999999991,999996344,999982664,997066442,877129328,999999988,995496220,999999992,999995129,999999025,999999814,999999418,999384980,999999394,986712194,999999998,999999987,999330679,963550020,999999981,999980844,999999794,999999943,999999998,999999374,999997378,999999999,999558723,999999998,999706113,429402226,999999999,999999974,999999993,983854625,999999945,991896580,1000000000,998234707,39186680,999165390,999279064,999939131,260299013,999999994,999788160,999999377,999999892,840826554,999996971,957887799,999999559,999999863,999999908,999992177,999905776,999989828,997469545,701460551,999959816,858387915,999763198,999999996,988657806,987343730,999329126,999999992,999550617,993831140,999999960,999997277,999973385,999999701,999999983,999999991,999999916,659318616,999999861,999931139,999999999,999999947,996134203,1000000000,999999996,988145262,999912215,996503531,999923017,993099579,999989711,998589108,999999689,999999816,999999926,998145937,999962421,999966006,1000000000,999999999,999944784,997829595,999977764,644932745,999515345,889121193,999939188,999999997,999999969,894947941,394396574,999999990,999998138,987097265,999987421,999941187,749102417,995412182,999999998,999998098,994694912,1000000000,999997141,999969266,999998030,824317026,999999250,999999958,273201080,968962900,999999872,982994278,999959612,999998596,499300803,999999962,994196385,999352207,999999623,999921729,999999998,997808333,670992254,173763966,999999996,999999820,792765458,426717475,989551695,316486055,999982114,999975665,999995292,999683157,999998911,854139441,999999801,999999998,999704851,999988004,999994566,999999987,972303798,999999977,999999036,720575352,999999987,992275384,996348600,997862905,924718375,999964407,999999828,999999504,999999681,999994924,894581656,850958911,998127304,999999994,999935568,999999965,975137666,999999708,997041964,999999970,999981270,999999908,999999494,997209401,999935683,998200567,999998405,403553218,999005137,999285942,999999999,998753416,999999934,764369552,994080197,999999316,999999959,999973229,999999996,999992435,879675252,990930575,997693609,984519477,999979958,964054446,999994002,999999518,999892362,761614540,999974432,999997394,999999997,876362579,999947400,999962617,569090966,999257427,992178897,999999793,999999781,936926890,999999784,998720961,914930177,999999812,999999927,999847569,999998892,999652497,202974732,994442350,999999989,982862536,999999975,999999368,548544505,969659986,965690767,999999998,999387184,254310754,999581198,568495972,999999940,999999989,999999998,999999967,999996030,854127069,999999967,998612030,999994466,999888937,999984022,999999999,994563192,625941656,999999995,990840518,882044045,930605768,759731707,999999998,983088836,999999901,997270726,992019494,999994372,999971035,839669814,999996765,998860311,999990107,999964645,999993860,999999936,999999661,999944841,999908175,622425998,999999951,999676062,999999991,985071222,218754544,999497766,999999988,999948972,999999608,929534537,999999985,809807175,992856867,999999972,1000000000,999997258,999966713,813985359,515224676,999999872,999999042,999918554,991563157,999986451,986758112,999999998,999999605,527751945,1000000000,999999988,991862931,999498718,561934514,999918609,998643913,999999574,981826466,999924994,999999695,998776743,992109842,999998699,999994958,999999991,999996451,999997840,996952154,999988763,999155574,999999956,999986562,999999961,999863039,988664302,999991889,999998593,833848144,986232534,999912671,999678817,999951737,999999951,999224835,999999940,999999999,999999992,999999851,891603217,999978186,999991532,999999978,999029480,999999960,999999993,999999997,999867813,999978877,958363029,999999800,999978041,999999850,819432964,999999983,981844338,1000000000,776687460,999998206,994455737,999999977,999999391,999999992,309057927,998996814,999996829,999999999,999954015,999999972,999999919,999993771,999813784,999739615,999999995,999878124,999999995,999999938,999935598,999999980,999979430,480218359,999044729,995935957,999670623,996248228,999875989,999968347,995491981,999704775,905760349,999998612,999994911,999999994,999301956,987926570,999033308,999461323,387425876,999570260,999999749,934298005,999999996,980122189,999999954,999999842,999997673,999993235,999999952,667726280,999868978,999991933,999390652,999999969,762480207,986717878,999143829,999997337,1000000000,999999983,999543862,999999762,999888815,999997535,894403548,1000000000,845522307,633048615,999999411,999860302,999999952,999997304,497948282,999995854,999999998,999999995,999999207,999999997,999914462,870514926,997012358,999999999,999998860,999999999,982718632,996467273,999253458,999990197,999999999,997356870,567316532,823235383,999998104,988026292,998932385,999929566,971411820,999536742,999987789,999796496,999663873,1000000000,999999331,999999629,999994229,999976074,957004254,999999327,999266582,823187776,898731253,998432188,1000000000,1000000000,999566706,999999981,998840985,999999807,999999788,87052693,999927852,685315299,999999111,999684688,997945609,999866120,724693710,998067823,998063330,999999995,999430822,894494782,703046128,999844656,999405727,1000000000,999999935,319260589,999999281,1000000000,999998788,999782399,996088595,999588571,999997650,999999266,999999996,999999963,999999997,624152772,999932613,788397029,999999948,997822868,999999997,999998324,999999962,999992981,999979907,999970595,985940412,988716373,73947307,927309797,999999646,999999811,947021706,999999992,999999737,995975027,912525737,665937990,998064531,999880507,999999993,999999997,998204628,657351531,999966289,999992879,361629509,999999687,999990554,996423632,999992519,1000000000,999573190,999871661,994951289,300495993,999999971,999999998,998851411,999999998,999999985,945720255,999980716,959760466,999999990,342544508,999999914,999954376,909168506,999994377,999999908,998975339,999752795,999990949,999999943,999999995,999477084,999999909,999975894,999999948,999999755,999994354,639639488,738676419,999999939,934162476,998273644,997981123,999363031,999478697,999996980,999999951,986240343,999988333,979445612,682045076,999998835,549532461,998971105,999999999,251270410,999658818,997464473,999999320,999999966,999652567,999999507,999873666,999999999,918944383,190443107,999999776,999433947,999968126,872564883,988711262,988396981,999999951,315157158,999999910,996970797,999999998,992449203,999117609,995949935,999999986,999678794,999999997,999969675,983220477,999993476,999999977,754148980,999982816,491680681,999999986,110806860,989044734,999998932,999999996,999999144,999969995,999996380,946712816,937349389,999997572,999999965,999874816,998385230,999994779,982148270,999635087,996860492,999999995,991919868,999564311,999999981,995556156,999999876,659220047,999999812,999999978,999999662,998801733,723142836,960248958,999984851,999450358,999291990,999962301,999650342,845156967,996544978,1000000000,523667047,999999905,962989285,999999908,999993945,824457201,999367786,998127412,999999985,988906097,999583088,999999219,820778069,999999276,999996097,999999623,999999985,1000000000,999999945,999687326,820431404,999999998,983377838,125566193,929245928,999999874,999999955,999977245,999986391,991033687,999999630,999800015,998257306,999718269,999999763,999985382,999429282,999999646,989726911,988882878,999999870,999997943,999999894,999999956,1000000000,999999995,999999864,999999970,999999797,999999898,999995928,999999999,365611755,1000000000,999999640,999920103,999725393,999999984,999981708,999999973,999999994,612951937,999969524,999999998,999999557,999999708,999917675,999999678,938586973,999962408,971387134,999806931,999865137,999999985,998062444,997510868,978672235,514180964,999987447,999999279,987919252,999999998,997456888,999999878,999999987,999999995,999996434,965716618,999999947,999997732,997503275,968217553,999999999,999999812,999338692,999985428,999999991,999999995,984178985,999999972,996866868,999780041,999420087,999893098,702664927,999988590,999999965,999950745,999999988,999997304,999906988,993839933,1000000000,999999844,999999971,999999999,999997024,999999814,999999971,980652253,999989337,993230793,996857524,592902783,999974224,976421990,999999975,999999732,995188413,999999919,999919595,999011395,981978597,999966955,969099723,988013113,999999999,999999997,999999987,999992352,987126774,999999995,999999929,999999999,999999207,998891717,999999942,524568295,999675070,986060243,810912081,992802917,983722255,999432253,997387613,474596423,977009043,982982252,999469473,855246374,538152482,999999749,999960634,999998832,999998489,985174860,999910546,996608438,995274658,977115199,999999998,999994467,999999852,661863158,999989911,999999263,999995076,999996313,999986971,376462429,1000000000,999981761,999999985,996086883,889463748,999999426,992999435,999641136,999999896,879326462,897326170,1000000000,709307890,999699576,968393214,999999878,999990083,999986491,999998710,997398617,999999980,980626712,980730003,999789361,967138938,75164401,999158478,999991022,999999999,88190072,999770803,999999993,840762496,984905491,1000000000,999719721,999999998,999942005,999999921,742493453,993466141,999999542,999986026,852498100,999961887,999999016,813614337,896326255,122339084,999962736,788030528,999999835,413172630,998861396,967411774,994592605,999996940,999707122,765636760,985979710,47335914,999939020,998352687,999927693,999999843,999999904,999397968,999930859,999999781,999987939,999998758,999999941,997949695,999995819,999744699,999998860,984372823,370548457,999999999,983128425,999995789,999999994,999724906,999999950,999999716,988951420,999992649,999941212,775082688,977047544,999999578,1000000000,999999998,998984522,983608272,999987502,1000000000,997060529,999999921,1000000000,1000000000,999786565,999999735,999999720,999880150,999999342,934970416,330644066,999999995,999958861,999999883,999903163,999999999,999589878,1000000000,978895577,999999547,999873211,999954347,999613521,999999910,952757457,999999987,999997878,999998510,999260700,999999994,999999561,999938114,999989665,998333665,999924681,999999773,999999988,999999353,998482971,999782035,977988902,999493215,999999994,1000000000,999999981,999979387,999939521,999999864,999724771,999999958,998838228,845085586,971314067,999999955,999984455,999114681,999992042,999977608,999999909,984698583,999997458,999999511,999999999,996537180,999999535,962036050,999651213,999877845,999564365,999999990,889144567,999999984,999999733,999928024,16718101,999999989,997108384,999999956,904428426,773252447,499811992,999298871,999999992,988095248,972927165,999832670,1000000000,999999562,999999670,999995520,978358157,999999993,1000000000,999863800,999998262,996163055,999999929,872321332,833768060,996302773,999999994,1000000000,999999765,999999998,961414410,999999981,999977962,999999994,999994263,67993358,991698903,999999932,1000000000,999891140,999964342,999999950,999999995,994031354,989709865,999938712,952300190,771336708,999985369,837629378,995497720,999959816,513370678,995802832,999999977,999934809,999979338,967201999,626700875,785221533,1000000000,999999113,999999965,999999837,999472968,965271430,999999986,980246872,999784234,625176859,992407236,934059111,999990412,140186730,770777970,999999999,999999802,985302752,999994478,999999568,999997916,999092108,999838371,930108141,692539573,999999966,1000000000,999978476,999999997,999995018,927228530,992591024,999995454,999849779,999726464,958617106,995098393,958020467,999995101,999991363,996631564,999999810,157786206,999982286,999999992,999999997,977598036,999959812,909958324,999955710,196321110,999831187,999999821,929765875,993264085,992420826,999995225,999999960,999989892,999969475,999999474,999999995,998865277,934038429,999999998,999999992,981570419,998526601,999961553,999999986,999999764,950133205,763540201,923606148,999979000,999826733,999999974,945594587,999108961,999326258,999994214,999999881,999971623,999999323,999748572,999999925,999999926,999664090,999999924,999953119,999999956,999999999,999975644,1000000000,984422154,999999013,869698471,999923299}

    Returns: 14601293734

  73. 100

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

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

    {999971542,999999994,999999997,753828176,999974698,999943956,999997869,999517914,999624257,999995129,999973114,997413443,999191951,996009653,999969185,487572998,999984863,999907533,999999995,999998884,999321009,808857402,999985493,1000000000,997885512,999786206,999817245,999988553,999972263,999496267,999999755,999999783,999999817,976622542,999999736,931864692,999996032,996712354,999999854,196752128,998656773,998992854,999998974,988885644,999999592,999999648,999999960,348006802,973619544,981662632,999996201,999480777,999963454,999999418,999999979,920385448,969192920,999964859,999993365,999455763,963665606,996393677,999998171,931513288,999998891,940881959,999999570,999966044,999992381,999997893,760005934,999999928,999998968,999999199,999999579,997317504,999781938,999172242,391095679,999999997,950776944,997888601,995894224,999999988,999998253,363939839,999703466,999859475,999999875,1000000000,999969001,999998029,999869597,999999763,999157178,999998893,1000000000,999999538,999998802,999999999,999975124,1000000000,999999653,999550524,999999997,999998471,999999304,995599416,991707354,999289106,999999992,999999888,999999893,999990584,952676400,999999670,999999999,500494561,999999896,998697127,999998657,884692804,999918683,999999936,999999979,900330261,999998648,999998779,999981178,999999993,999999977,999995711,954648116,999614188,999997607,999999999,999991629,999988883,999997270,994975319,998585446,999999778,999999993,463587214,79246794,999999225,999999999,927117991,999974085,953005636,978628594,937962313,999999767,999996385,999999996,999580317,971827032,999982729,954316091,940907613,999999996,999999956,999999679,999257125,996009754,999939082,999999939,999999585,999990703,999995871,999998966,999998611,974935091,998570368,985369109,736580169,999992535,999999998,999999981,518266537,999143064,999637786,999999981,999999931,999757152,999891254,586514973,727727700,999999883,999996833,986326313,999804880,915923824,999998397,999999466,999728414,999837512,999999785,999942234,999999991,999999595,864971642,999999876,999999999,997356522,999838947,999378899,929915805,999687127,999999950,986356899,999999595,992314695,623822960,370089440,742231610,999934164,942901002,987748120,930860647,999978807,635481383,999999992,738282216,997168698,999732246,1000000000,999811550,999753503,999999995,999768397,944701736,999999997,999998127,999999953,344181523,999999846,999465732,999999824,999999759,256840674,963878543,999999834,999999956,994646248,999997526,999999903,980419719,980919597,999994113,980084049,999937088,445262941,999999983,999999984,999999949,999999466,999891284,999845517,994173995,999780931,993923421,999745578,996663371,999999994,963523615,999999989,935192583,986425083,999958715,999899085,993564547,999999994,999999999,999999991,984242374,999964888,999714696,999999993,953011761,992661847,999999996,999976462,940899916,968267884,999999555,999999996,999999750,999999998,999468905,999999848,975913146,999998863,999998552,999999998,999970335,999808975,999999976,975287238,999999999,999991869,504934658,999999291,627676880,999993367,999851155,999999879,999999980,999998854,999999968,999999790,999059925,999999999,824644178,999849472,999999994,999999992,999996787,999961062,984605579,840528637,530208900,1000000000,999287332,957832257,556033380,999999263,999796708,999999406,999999962,753313587,945800178,999463872,999408428,851656110,999999974,999991315,998753264,999999999,724051573,999577968,999328200,999520476,242543368,999999991,999979633,999999965,999999994,999999969,999998290,999907461,988920747,999959249,999999999,999999934,998074861,1000000000,999966182,999488541,999999922,993806042,979274253,990459157,999999996,999999999,999999823,999999967,742887063,998490068,999999544,999994199,872043688,999999241,999999989,999968181,999988009,990562297,999999921,999500276,999995450,999268860,999999430,998774584,999893942,999999795,556665040,999999531,952320927,996913228,991647140,919204725,999999865,999203873,999999956,999999991,999999764,999998550,999999999,983989564,999155947,997667621,999999706,999998465,999999984,892838791,1000000000,999992176,999999963,999999931,1000000000,999999989,999999344,834796667,983419382,999624098,999999994,675281797,999856932,966054289,995265954,999972871,1000000000,947594513,512654789,211191260,910724218,999999989,995978404,997926133,993329123,999942650,999999854,999989287,995983925,999999964,999997862,999986922,953309808,999967011,999999989,999999652,987523555,976417811,999999491,999995607,999999947,999999983,502707819,997923574,999102506,999992627,687388551,999999287,999999403,999999934,999927283,999998183,1000000000,999861718,999996382,999997189,999999763,999929466,999999521,999269237,992966461,999999993,999994991,999929093,997730349,994997352,700988156,999999677,999863998,999967391,999998427,851767253,989534907,999999821,992720406,999999986,987688199,998675729,999997006,994629431,999996518,930938536,999999948,999980937,999999875,999998142,999464338,988092900,986049442,998030735,758631234,999999976,999976548,997493969,912722038,984128750,999999999,921438800,999999990,989097145,520364591,999999956,999999328,991904916,996692743,999999063,755719395,999999994,999545340,999998809,999999974,999999944,951935206,999419145,980197577,999999812,999999965,998223968,984965426,974876215,999998209,834605826,999966623,926311801,969070611,995812975,765948438,190573780,999900616,406877914,999989192,999999534,999999534,999999524,999999981,999980990,739810490,998952389,999494913,999833069,999999989,999648060,999999943,993266059,773115411,999999923,999999980,998745170,999738082,999999977,986886114,999818384,999999939,992435863,999789648,1000000000,991828301,15691014,384381390,999996227,999999622,999999953,997483977,959784702,1000000000,999999998,999999938,999274916,999994273,999988349,999999958,999953790,959490928,904702663,999019381,999932326,1000000000,999999990,999999470,934118053,9622892,999782120,998476092,999999999,999994944,999655517,999999773,999999926,999999999,999999996,995938559,999998116,999992720,650979957,998969538,995252919,999824933,997592923,999999159,999994953,999999999,999999875,999999964,999999185,999988138,339658327,999999791,999999849,999959994,1000000000,998809374,999999981,962405953,999940338,999952637,997742100,999999983,999999974,999999834,999999075,999997140,999640510,999999991,999621285,995211799,933346068,999419234,401409169,999999983,999777191,999999891,933509876,999999774,999999359,999999969,999999619,999338114,463316211,999996692,999975469,999999067,313144693,946388788,999999993,999782967,999999931,999999984,999998737,999998114,923632694,999999994,999999968,999999924,999998725,999995262,998154317,454929855,987717952,1000000000,999999984,999998898,999999672,999264192,990994187,1000000000,999983298,927935588,999999998,999743477,999971039,999985155,999999946,886354166,999611965,999903163,999999735,915829929,999882881,999998066,912324574,995175450,999998190,999996950,999463947,999997872,505541741,999999447,992214650,999999976,999966559,922262629,999998512,119633079,844259260,999809751,1000000000,999995628,999999686,999999970,999999997,999998261,671826254,999999826,999999868,994349657,999923515,999999997,997934045,998656592,987716899,945785715,999460004,999999994,998712839,999964460,999999996,999999959,999980215,995895617,999999990,999992991,999999973,999903639,999999739,999882443,999999961,927581530,999995290,999999999,474871405,974223317,395958328,999999999,822158358,998830544,658388008,999999979,999410291,999999987,886590085,999999998,969683892,999939296,995337516,999999954,922091756,999980753,999999962,999997807,999999920,999999794,999680580,999999734,959656789,999998946,970762026,519126123,999999978,999711129,999999995,999998784,999999752,999998741,1000000000,983924378,999574597,999900359,999999957,999983901,999999988,999999808,999998549,999298861,999999979,866951148,999975433,701883205,999998005,997665693,999951720,997279534,999999998,999999705,999993186,987325771,999999996,992753539,999985881,970668894,990067984,999801724,974282883,999999976,999730127,999800434,838783267,999251318,957783094,999999935,999999483,999999772,999950176,998641241,999990706,999999954,999998292,999611138,1000000000,905585790,999999742,999999622,999999686,999994402,999999991,999442879,301889012,999990727,999936416,999963469,999998618,998985497,999999924,999998636,988081600,314649827,999992645,999911172,999999997,999999998,999999998,999967908,999999987,999998747,999999998,999999995,984139915,991635489,999999997,999998693,998685912,999963425,702318069,999927219,999296274,999999937,999929553,999567240,993784309,50198414,999998695,400774897,999999995,962501769,242695599,999999924,999967548,999999384,999999642,26402429,999999672,999998981,999999955,999999995,999719946,999999976,999999996,995322974,999999894,999814787,1000000000,999999997,971328012,999999974,923221526,999970330,999999655,999893708,999333627,999999352,999999783,999999586,998584534,999878886,999998024,1000000000,994751154,999956681,999999985,997378470,701593854,999999997,1000000000,837282402,989550543,989344566,999998934,999999680,999999944,1000000000,987522867,687727369,717933777,1000000000,999999893,999096799,999999964,999772045,312936182,142455687,999996961,853090321,999929093,999956303,999999631,999999977,980369059,994611823,999976840,694009096,999997689,999993218,968740653,999980218,999999924,999996100,995306145,999999993,999999920,999969470,533784156,999987793,999791967,576443454,999999993,999997317,999632479,987302479,999999044,1000000000,999991813,999999978,997854356,999998789,999673671,998171856,999998932,608329224,999971748,999372642,1000000000,1000000000,999999350,999999993,999948612,996220559,995146800,999999992,999981453,999981832,999999758,959714090,999988031,1000000000,999999980,999994394,999999998,999999839,993220283,876224603,999905572,999999440,999999827,999999860,992804560,976041313,999999615,447320197,998950477,999999899,999999990,999999919,999996240,999999982,999999996,814459284,864224328,996892383,998488579,999998022,999999781,999981340,993775633,999579176,999940963,888227426,999835949,999999955,1000000000,475697863,999209637,999999999,999999994,888009433,5813516,999971242,999257869,999314873,999999972,999999316,999998333,999999999,999999943,999999985,999999132,999972741,978358361,999829358,909512029,999999969,999814041,999994634,617128246,999995072,999959478,999999078,999997199,508273159,301754807,925813935,999999200,999999964,999721258,999999998,999980542,999999997,999990256,999998935,999999998,27631325,999993608,989457584,999950637,999999975,997797501,999991680,525351765,999998863,999979076,999999971,999994163,999906709,999999997,999999902,999999874,902438164,653611888,698769370,999999332,393668580,999712591,990796041,999995459,567130906,988994815,999860500,999999992,999999998,980461642,905367541,910515566,247378235,959797410,999999940,906136533,698434535,996278154,999999504,992940388,999935691,999806730,999987846,999668141,999999915,999989046,999999689,970103605,982178335,977179396,999994278,999999999,999997941,999999996,994271275,999990953,999996690,999980377,999640331,999916973,986927180,999999986,966955693,209293284,823827619,999965847,1000000000,814570966,998938114,999989161,987060134,1000000000,999875572,999999999,1000000000,999999965,497475394,999999999,998525866,922729694,947915105,999999980,999999993,999850746,999999931,998683117,999989511,999940028,999999663,467113473,999999995,999998254,900473163,1000000000,999999214,999984400,999197280,999996267,996667692,869962629,993523848,999995054,998924537,999998015,997588392,999820021,989291162,998907959,999999390,931552661,768012915,999999623,999999984,522612035,137813058,999673415,999998653,999995601,999982188,478063653,999818772,631068474,897290014,999999925,993795637,999927527,999999621,1000000000,923980377,999999779,999999779,999991821,999999863,999983909,999989476,999999961,981406611,994060158,999990671,999847517,1000000000,999999931,962953393,999996398,801777509,992221327,999999617,997896541,999989789,999999985,757677387,494240011,999981942,965994448,999999779,993916331,973098956,999999690,999337595,998450410,689971329,999993396,999954301}

    Returns: 14914138681

  74. 100

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

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

    {999998372,999996631,999627424,998395128,999999894,999868072,999939625,816646352,999999613,999934338,999999980,638358784,999999998,999999481,999850995,999757203,999807532,967077717,1000000000,988202323,1000000000,992529919,997582303,996906801,999273359,999671622,999726878,991411934,998706560,999999893,999997507,999999930,999999993,999999971,999997849,999999456,997850284,999997008,989742077,999954729,995261901,998669465,999999846,954606538,911170388,999991126,744207926,999998534,999999996,999999977,999990765,999973458,999733411,146559905,637826840,986767115,999999993,999999999,999998697,996656187,998651691,999989635,999927026,999996483,999999983,999999983,440014748,700768036,999984483,999999998,999998736,999988452,989403166,999888526,999997836,999967314,999999997,979497254,999980640,881564196,999999845,998430380,999999970,819448884,999833577,999066879,999999187,1000000000,592664961,989320488,999999999,999999929,999619585,877198286,999999889,917570121,999438833,990754994,999999886,995270594,999998815,998498026,999880567,958502082,999999998,999999862,999999835,997824226,999995367,999999408,999999737,999989357,999134449,761442158,998141911,999995125,999673425,996653632,999873573,999993753,999999955,986590147,999999253,999999818,999999911,975423385,999175384,861070665,997460481,999999993,995691570,999840506,999999820,999963064,999999986,999999996,990537557,999999980,583795094,999999980,999999991,999956244,999977625,999999833,997661676,999994487,999994132,999996491,999984193,999999994,999993207,999999451,999856615,984129828,999972767,994089973,972258733,988883134,999997644,999997722,999999994,978267183,999999998,999999621,966822537,1000000000,1000000000,983960194,999999995,999808593,999999997,999999995,215470262,999999877,999996209,96129971,980484934,999970679,999999995,1000000000,999140841,999754059,999999994,999999980,990572831,999961645,999999968,999571920,998267883,988678272,995949150,999979688,999999929,999987523,999997679,999999974,999999979,915677513,997184936,999997484,999995472,999999989,999998545,999885525,504996341,993367470,991861630,997687072,999896469,999127172,999999910,867431547,844558380,969690925,999999950,931852815,888239278,897751782,999486864,959898563,999999575,836119775,199673584,992036380,997167329,998339999,999999623,172009373,999993638,999995193,999996896,999999994,997254367,911557445,999999686,790620426,874150742,993655320,999999935,952626887,1000000000,999996326,933537874,686351812,999985714,999971571,871291939,999999516,949309133,999998362,999878644,999954755,192537127,999999538,999888413,999999979,582050327,999999994,999621566,472177822,999699405,999892765,999706415,999999894,992414435,999999986,999769393,999996857,999999102,743638706,182561675,987765905,999999981,999999254,999841241,999999754,999989181,828203328,999999996,932946975,999999628,999999723,867910602,999999998,987044064,999773979,1000000000,999999998,999992191,999022205,981984703,988078189,999999092,999998924,999988387,999974043,999999980,999999973,994122785,999995267,406160834,998439181,919939015,925177647,999999571,473123434,999798365,999812569,999999674,999695871,999486454,749835611,974205127,999999083,999917533,999975446,981951942,999637057,999927520,999999967,994208748,999999184,999999808,999977727,999999941,999999996,999997159,999998196,713418497,999965664,999959003,998001107,995784066,999682041,865048278,999999843,999999884,999998616,999922705,999999443,999999999,729656208,981297247,999999563,999999998,999966863,999135168,999882199,999960298,999999891,979179417,999857706,687944410,999998224,999999885,999999992,971474716,999998561,998310175,310817607,794206065,998335015,974507920,1000000000,999999415,999999965,999999426,997303465,999999948,999999913,1000000000,999999999,999999982,999974173,999999278,999994561,999999856,999999896,999999670,999990093,988978511,1000000000,979222145,999958095,999999927,999637153,999995394,999999960,782588384,994579859,999978772,999901895,992161010,664347534,999999961,999999993,999999994,928951476,999994754,999991844,999902215,999990115,999977711,999999972,218965987,999999569,999999753,999999999,999999540,999898428,999999996,760957007,988329325,999999829,998169276,999999580,999964992,999527699,999999719,999999962,999996142,1000000000,994794378,995385395,999999968,999899896,999267517,999808845,841788135,998823440,999975648,1000000000,999943301,999405302,999999875,999999716,999999999,981076992,999999785,983350568,999365235,999999627,999999954,956776553,992824964,1000000000,999999992,999998547,999481776,999978399,744612208,999999979,999999493,999999996,873309043,999982768,999999991,999999989,999998339,999990367,999988238,999988366,957876424,999876562,999181716,999745470,999999999,999993916,999999205,999999823,1000000000,999998674,997986727,999985053,992863014,992417167,998323021,999999176,999999411,999999986,999999937,999637726,995662531,999999002,999997914,999994745,999991838,999899675,999999996,634299418,475327707,798019634,973660473,999999989,999999991,960733565,999999814,876597496,895734170,999949185,995542364,977633392,999999621,284288755,999245818,999999946,853453142,999999991,1000000000,945298783,999993363,984649957,999999997,999954912,999999192,999974628,999998222,725785567,1000000000,749740920,778793970,1000000000,999999995,999962408,999988866,999899151,999999391,999920039,999999994,999996912,999999999,999999607,999999904,999980866,999983067,998533218,999988864,999815656,999943941,999999910,999999352,990106016,998718843,722369289,987962628,999996661,967160275,999887078,991940640,999990037,1000000000,877418722,999802284,996976906,999999520,999999942,718839718,984805544,999997323,966256314,997747336,998826237,937010767,997418196,999962596,999993436,999999998,999997734,999714068,999999998,999510520,999999567,999999997,999861549,999977473,999999996,999999924,984020045,145330154,999999999,999999435,999999994,999397036,944185827,982137353,999999367,999999965,999999994,999999998,998519540,999999945,786759336,999999989,999999992,999587457,149302929,999946973,999999991,999999989,994778800,998921537,771206212,1000000000,999999974,999999997,999999730,999999994,999999959,999998183,999999975,999996368,999999976,999933615,999999939,999986310,999940749,985056276,1000000000,993045464,999998665,999995297,999966408,999931585,999999915,999999996,999930797,773024147,999999558,999999944,996366059,999999986,509356559,999999821,990864057,993154297,962150668,999982802,998384588,999999921,999993255,999936194,999999700,999994807,133593306,999999998,999999998,999994919,999997411,994566333,999870517,999996742,999997495,999999988,999993531,949867601,999924227,1000000000,357465796,986138371,999999576,999798522,997608237,999999719,995103812,999987076,689301578,720409297,999998219,999723356,955452279,999999263,999999976,993273457,999996595,996468787,943728077,999989296,999761701,995187037,979291319,815236328,999999722,999999996,999999912,999999998,999833298,999997349,999999689,977694676,1000000000,999999999,999568162,999992701,999896784,977908015,474310243,999977491,999560630,999850334,999962682,932063345,944337037,999953638,999999985,999926007,999999999,999999998,999237796,989561937,999999838,886729187,999998743,999094186,844702179,1000000000,999948861,999999997,999999995,999999952,610787673,999999769,993258485,999997779,1000000000,999999853,999999523,1000000000,999997646,999999985,999982610,999996038,996683942,994043774,999999986,999999601,990936669,927522572,992535283,965277649,999999998,999031930,998024921,783932596,999999989,49980182,999975478,1000000000,1000000000,999999531,999875421,999999938,999999174,995046670,999758202,952232161,999988577,173012429,999753214,998596603,974853787,999999998,999999855,999255910,726729635,999999903,999999656,999996735,999999787,999781701,990682465,1000000000,999999070,1000000000,914559373,999995165,995406164,999999734,999985578,999442399,999999933,999767372,999999951,999960042,999968369,999992057,714979816,999998617,999998742,999999996,999646838,998036338,993344874,999578523,999631203,999999366,999996026,999001858,999999717,660855325,999999890,999868539,55328314,999999881,910305888,999999975,999901760,999951271,954825467,999999995,999999752,998469235,999048829,992288609,999998959,999981265,998781809,890019625,867307864,228028443,999999093,957889685,999988533,999860682,816364892,999999324,999999795,882348203,999998283,315781875,961297527,999997390,993116637,999930123,999191855,999979384,999745758,999999999,999999990,301072894,999981396,999998888,995255981,251155842,992125345,998777062,999995227,999999997,999999617,995277398,999999897,998794243,999980483,1000000000,989987252,997783028,999997124,661030735,999984218,999112769,242227681,998645201,996425652,999999005,999999966,830731806,999999893,999678647,999998417,999872483,1000000000,959685237,999999992,999958574,999999999,449951432,1000000000,999999934,999993051,999960042,997597168,995482744,999980973,748551660,915113835,990975758,999998810,999999957,999999532,999642514,999993337,1000000000,999999742,999999985,997646543,999999885,998109405,1000000000,999943026,999999490,999341124,999999999,999999999,999999698,999999999,735191221,999999355,999999999,999999970,999947855,996785791,961208012,999971533,999996998,990769915,998442097,999999998,999999985,467999765,999881975,999999817,999999553,999999953,26367980,999972159,973463697,1000000000,999999914,775687463,999998791,996991345,999999307,999999997,999999979,996959979,999895560,452148994,997269837,999978399,999999494,999999837,999999944,940801157,999937226,999974574,918804965,970481151,999230185,911780712,999999785,935066156,501951470,999978958,275790901,855034670,994060578,999999989,999999498,999999997,993352878,999999403,999508926,989220249,999999993,999999994,864982881,992392903,999999758,999999952,651197637,945579036,963499867,1000000000,999999978,993990389,999948394,999999998,977046581,999727183,999999999,8408021,759358465,999999843,999999510,999999854,917591687,803360594,999998890,947689193,999999834,999999973,471066142,999999812,368283484,999999694,999999998,999999993,926500867,999999715,999999881,999936669,999980931,999998727,999999677,930056975,965930357,446156650,999999998,999999910,866465302,999999139,649585848,999999957,995386536,999909496,643043912,999999996,999999992,999999145,989355847,997696777,999979934,998002444,999987282,999500611,744820622,955023989,999994996,1000000000,999926442,999999708,999777583,999858569,999999911,999999774,999999999,1000000000,999063189,991024352,999733327,999999991,999990006,984778679,997663551,999486265,971243336,969469664,905589743,999999998,999981253,1000000000,999867347,975857017,999999976,910378438,316006280,999999994,999059887,998528069,999131137,997742706,999963931,999999848,999879979,999999998,972764262,304601857,999988242,986836242,969119030,999999971,999999662,999999648,998511624,218317872,999999985,999915913,999999999,994416673,999999999,999995313,999999921,999849453,210867138,999275464,999556752,999964854,999957244,999999958,962903626,999995052,999927473,998584583,999999914,999328695,997047492,151470376,999999996,999014412,999842189,790946886,985731471,999998493,999960820,999540949,999998604,999026015,999987017,999999997,999992470,999999999,999997831,999999670,999448494,999190130,999999548,1000000000,1000000000,999999999,999999999,999999994,999999992,958611405,998330385,999993380,999999429,999999943,999999987,999673159,999994401,996803937,998224467,1000000000,999999977,247023899,996108323,999999621,999996935,999207227,693371171,999999794,999976082,999670388,999831490,999999956,998920115,904313944,486077293,999999996,999972347,719113696,999999987,999997693,999969006,999999989,998622802,999999997,138202563,999848436,998612171,999999929,999998839,999999723,999999976,999999986,999996889,850930748,999990376,999828499,999973350,734499037,991238675,999984537,999999772,999203654,999999932,999999794,999999249,999835726,999997142,999999656,999998598,994535826,999999769,999999993,999953281,996702731,488449158,999999193,999355658,1000000000,1000000000,999982327,999999031,937066675,999996667,832700717,996626777,984000259,960110541,296666807,924285606,999992162,999999997,983751946,999999916,999996751,999991687,950412248,973744950,999999989,999919833,999997596,999996089,999999984,999159115,999999874,999941495,999999998,996741176,998650404,998244437,777365358}

    Returns: 19305072771

  75. 100

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

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

    {485422880,970121010,999999976,837580275,999998508,999999883,999999133,999999962,999998535,972905395,999991075,999999998,1000000000,997226177,999999655,1000000000,999994909,999999977,380136024,999999980,998714417,999999706,999999959,999854287,998547956,997885750,998629117,999728558,999990930,996995539,999999982,999999551,697576985,999999950,999998579,999871574,725833388,999943687,999999410,999074987,999999965,999999988,999996122,991676680,999999917,518992371,992252839,999995815,999999939,769004709,999957273,999999983,999993396,848570898,999999911,989417670,999999639,999999968,999999546,1000000000,999999976,999999956,695474070,999373313,574405365,999885421,999903719,999999869,999994335,888598459,999999995,972513664,999998265,564624968,999747123,316782640,999984444,109396446,999999991,999992041,999993089,999999509,999959800,978510734,999999999,999999989,999998244,998861931,999995568,480787263,999962516,996600727,999978050,998580763,999971433,997596605,906486911,999938233,999999467,998779669,999999933,999999989,999999997,920057621,999999991,999999916,998018449,992802617,791706327,908633234,998975957,999999999,998886327,1000000000,998369918,999999992,995653011,820106987,999999742,994226704,996074930,999680930,999921918,656891897,999999970,998544520,998555687,999999995,999938853,999999970,999863706,999993692,999960426,999995926,997415194,999856310,999999992,999973266,999988982,407741138,999999281,998709560,971347931,999311145,999999944,532270230,999999962,999991218,990862054,987319286,998948767,999989445,999885061,999998456,999999950,999997685,999998555,999996886,1000000000,997176106,999999993,972767368,999619247,112948470,999999996,999999973,999999999,995056044,995705972,999999992,999999794,999999488,999999994,11172102,999999869,999999869,999936421,999968131,219528747,972634864,861074282,999999544,999963013,998685724,999999998,999999998,999999283,882122151,716673599,272624768,989645725,999928946,999998536,999994947,999999307,984242904,999340702,1000000000,999999247,999999718,999988552,999998837,916043688,898400363,597289987,999999972,999948052,999986817,999934728,958305436,323589611,999991457,792630910,999999263,999999834,999478074,902969678,999408904,207741383,999759368,999999984,999999809,977546011,999129573,999262328,999945483,999999996,999999999,992938559,1000000000,999902715,999626020,999999993,1000000000,858399654,999847083,350559016,1000000000,999582212,999999989,999999203,541557072,999999993,999999999,933003828,991449409,942492119,999891693,999998537,999999998,898666975,990639506,999999999,999674205,999987660,999972614,999999981,999983140,999989831,952905998,999989495,999687520,190096920,507189622,336849425,999999955,999999999,999999999,999999998,999998596,999998786,999974775,981495644,999793153,999172006,999998762,968248498,999999835,999995195,998601518,999999994,999999062,999993071,1000000000,999997948,999961531,999208386,999999937,997880872,999924063,888077118,999611222,411808919,948675000,999999990,997044261,856917147,999999537,992212727,999999999,999999991,439542144,999999999,991726157,999999691,999995495,999960394,999107100,999984030,999980522,999358873,998845383,999940050,999992590,999977910,999318492,981540260,999979812,944117837,999997772,999999993,999999215,807222991,999961772,985424496,999382579,999999570,995707973,999987832,932006384,999998640,999999431,999999219,999999782,999913911,999957839,999999919,998161368,999514992,999945747,786881512,999378960,994951836,997275256,999999883,999999910,999984049,999999937,975859755,999559309,1000000000,884337501,999997826,997813896,998868789,999990957,990305114,999735309,999999960,999999213,1000000000,999999986,999993561,830190364,496527818,999956526,999999989,713317262,999999971,999979625,576569912,955200515,999959076,999999999,999999945,970911870,999999995,756657496,997594844,999999990,998877560,999973181,999994241,999453824,999999995,979577333,999999979,999992727,999841494,999970719,999998825,990420339,999999945,999999998,999999955,999995943,999893173,994646097,999999430,999204525,986365808,836261977,993872867,999999997,999999566,999999049,999985348,998030625,704926035,999999942,503845957,991586834,973600413,999999869,999999949,999682874,884813149,999995236,999998919,1000000000,592618567,999996425,999999953,916628017,999991117,1000000000,999939399,999999974,999999941,999999908,972627644,999811851,999999523,999995660,999999893,997804037,999926856,997148071,883002930,999962276,876327972,999998248,999999944,971500722,901281566,998281710,263477308,999999857,934856666,88211772,999999930,988686037,458316685,999999999,999887936,981742552,999995811,999999628,999999919,988638297,999348133,999999350,524588163,999999987,702895555,999999995,1000000000,999999001,999961385,885067297,999996684,999960168,474260142,1000000000,999999898,999999635,999522597,999999999,999740566,999944860,999983774,426955751,999999975,999999997,999707893,999999993,1000000000,999999985,999698876,999999996,999992514,999995889,999992602,999871035,999999276,989031087,996395787,999999994,730414197,997123087,997781389,952305321,979259396,999991052,999982901,999998984,999969815,989961226,422047197,999999529,998155780,999998416,881524641,899830777,824865081,999972641,999978528,992742183,999939242,999999952,999765067,969433953,999966264,999999178,997611890,1000000000,999999837,999999989,999997343,999999948,999999997,999998540,999995648,999832432,641218024,999999979,999999992,999999996,971964895,999999966,999759098,999974432,917661113,999772527,999999981,999999565,999241461,999676063,992670233,999997111,990214146,999877867,999954590,994271705,995875633,999999998,999998311,964096535,999915773,999985782,995191798,656449635,999999990,999530201,968778676,999966054,952345224,1000000000,999999916,999999986,150642577,999897751,544725057,999998286,999990982,999996878,981783818,999864433,999999667,1000000000,995921726,999999835,963938777,999999998,999929592,999997403,999879124,1000000000,999999992,999999986,592336741,999999699,766726660,999749793,999969445,999999794,991778648,998790017,999998842,988164461,982230318,999360168,783454422,992799568,862609606,999772954,980442192,999999910,999999999,999893613,999999924,999999622,997018634,999999517,998606149,999999908,999999955,999961449,999545148,999999690,999999993,919949030,999999972,999999821,999999946,999829779,999999987,999993949,998822133,999433700,999999723,999842353,999973015,999999999,989442862,999980535,999999994,999948622,999864115,1000000000,999967814,999999962,619663967,998773964,999657606,998608454,999990308,999999993,999779643,916686287,995469268,948823404,999999980,992832356,999862445,999999837,999999910,999280289,999923592,999999994,999976309,999894282,999999977,999999999,999839174,991128774,999998742,1000000000,999999606,999999796,76223104,578837729,997820522,973319046,999390685,999999499,937972883,905503134,929564917,999999789,998966268,999999849,999999945,999913520,999999995,990259430,999758703,999879264,686214514,996699302,999984379,997705925,999999842,998997116,999890125,999999654,967182401,795909789,751494118,999928427,934586090,999999999,999999953,999996892,999999999,999999875,999970545,999999731,567905647,860358264,998826478,999981617,999920566,999593163,999950516,972605923,999999949,999996030,999997921,999996122,999913349,999996963,804606493,999999992,209079995,938429245,963964969,999999986,999999999,999999991,999999999,999562557,999999987,999999808,999635955,804033940,999999999,934743377,857019050,999999988,999995850,999999995,999999991,999998949,370509795,999991869,280769376,999999962,999999116,994337671,999999844,999869119,999994605,999999694,998716490,1000000000,984121653,993641827,999963479,978178560,999996230,999989485,999923357,999999994,999999972,999996958,979440567,999999995,999999116,999999978,999999953,999991488,999999813,999995210,840142815,1000000000,998328396,980531756,999999417,999754066,998211842,998801883,999999983,999999994,999999727,999997546,999905266,999734413,1000000000,999999991,999999972,914095533,999997380,999999657,999976196,999985633,999999825,1000000000,999990447,999994656,999999312,1000000000,999999838,945845242,999999999,999992889,999993487,999983850,947127189,999934817,999994616,999999997,999991910,998653260,841472961,996764224,999458867,994334744,999999895,999988877,993685942,999999998,999997490,999999885,999999989,999945194,999998546,877314398,999999969,981524478,999999995,1000000000,999999953,999989390,994301207,975548442,999686661,999997926,820584372,999824625,999905778,992630329,999999997,999999997,997271642,999999998,999999965,999999946,926993365,999999951,983633547,999999658,999999793,996767689,999991601,999999373,865836126,983616892,985482823,895976385,999999512,999934139,746434920,999999792,999998847,999999997,999999994,40191056,999999136,999999955,999904012,993987602,999998940,999303492,898092352,104358132,999999425,26872847,1000000000,941180547,999844255,999938785,999999997,999999972,1000000000,1000000000,999963532,993681745,999999617,895478281,952855494,999999429,999999988,928221998,969164164,999684011,947248781,992188439,999998469,999999556,999852122,1000000000,999991255,767390504,999999994,233220927,980736212,669439565,999793699,1000000000,999999997,999955208,983294682,998856211,985791736,937388545,960731762,999999939,948779507,999998659,999657828,1000000000,999999448,996745555,999998618,444934732,999986789,984979477,686473708,996890979,1000000000,999998626,989507889,999999984,999999534,997855646,999999971,798088902,988526476,999720638,955286971,998799370,992920033,999999966,999963254,994095647,994573278,999999645,999999987,999982435,999999994,999298042,999989326,999998215,924410698,999997030,999760402,999999612,949043165,1000000000,999999018,999988560,999949963,999756056,999954091,997586936,999242039,999989103,785157546,999999990,999999949,999999996,775915482,928665987,662747500,999998951,999999694,993339965,971573619,999999633,999140399,999999989,999999279,999971761,999932188,935438010,999988726,999999998,997421084,999982590,999999783,999127005,989342543,999731871,999998103,996348444,999693341,944276163,999852922,999999999,999663622,994041182,789793127,999999961,999622622,999999696,999999993,999999986,999997256,679128156,625888420,943727140,999658956,999992878,995247261,999995664,999663386,998572490,999989185,1000000000,916763871,581837973,998054598,999875426,1000000000,755222216,999987666,999952321,999999282,995967167,982985820,991696105,999998113,999998737,999999985,999933036,1000000000,1000000000,999730271,1000000000,979718366,999970203,1000000000,999164993,999999999,999999993,999936953,999999945,999999977,999999395,999996637,999947740,855215015,999999998,999999701,999999123,1000000000,999049498,999986220,999999989,999998657,998445936,999999970,999999648,999344629,999999869,999999933,999832237,999999968,994389718,999999995,999994927,999999903,999999746,999999999,994723829,999875162,999999161,999968621,999999998,999999999,999999992,999999946,966564996,999995914,312998882,936954999,993176752,980134212,999995563,999999057,999998917,999959930,898018443,993298625,999979356,999999993,999999994,997529198,998353532,999547033,999979290,991646127,999999495,999996088,999709854,999963438,819030499,999225017,999994568,999999980,940779346,999999994,999192395,999998681,999904409,884440333,999907671,999028297,999951412,1000000000,999997409,999990632,954484305,999998778,999999883,999999946,999974530,1000000000,999005867,999999783,894753788,990166274,999999972,998883164,999999950,999999951,999999995,998968664,999999984,996072218,981604670,999999954,999989580,965077130,999999149,999978466,999999991,868246566,999963173,756918583,999357457,999999975,999999997,999994575,999998978,999936025,999999641,999999723,999886780,999957682,999993655,999876984,998485788,952132628,999999226,1000000000,999767137,284998641,999962811,999157461,999999923,999990808,683382291,999999996,62791678,96023649,976441818,999736813,999999988,999999180,999998070,999446817,977707189,999999923,1000000000,999993131,999955342,943307429,818119653,999997918,999977212,983382720,994754340,999999998,992353018,999969420,999999993,994771755,999607520,527173361,220938347,974487021,998188052,999948928,998650125,999996485,999999607,994685018,999999993,999995432,999931282,999994757,999999285,999225004,936653968,999998939,922301137,887101641,999763891,999988466,999998206,999993801,999953293,999980423,999269987,1000000000,995466280,793359322,999947446,999937166,999999998,1000000000,999999997,479548472,999903696,999999981,1000000000,999993936,994881642}

    Returns: 18688109185

  76. 100

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

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

    {999999898,999997278,983359514,999999815,873274920,997657636,999829431,675793556,999999988,999999797,990172687,1000000000,999973588,999635829,957737427,998778958,803059579,989534117,999999940,999995470,729934760,999112636,999989842,999999867,1000000000,999999986,999999997,999995540,999999977,997105233,998374187,999986954,241428229,999999958,777057737,534281131,988372913,993278466,999995980,999999610,999999596,811180264,1000000000,999999942,987847186,999928476,999990287,999913578,657828321,999972451,999037274,999999804,994252571,1000000000,999263715,997717001,756387825,999999921,999999088,999999781,901106974,993616230,999999837,942588635,999999917,999999878,999999628,999025130,999999854,999999664,994387563,999943576,999999967,999998975,999999942,999997387,998146833,999985242,999987235,999844044,999999991,999999936,999969014,999999999,1000000000,969169864,999999920,999999999,999997406,920312839,999999999,976502754,999998828,999393122,998203691,964842110,999999125,999998395,993529945,772037381,999687264,999999995,1000000000,992243794,845584205,982292784,1000000000,999999814,993049536,999985579,999552341,999999975,946999771,999993044,998593824,998882347,999999907,994633417,978613909,995454592,998856764,956604951,999999385,999999817,999964116,999999993,999999973,999952335,999998877,989239962,999999885,996562695,999991029,744460207,999976969,871354868,895084404,336480075,1000000000,999999436,993213581,999999934,999153237,999998798,999712351,999999988,970837504,996737983,999918735,996547873,999976067,1000000000,999865479,999934642,869131193,999885784,999956047,999999480,999021335,492300961,999512727,999998098,123764742,999999996,999917667,999994577,998532733,999997855,999999057,993199670,999999984,999999995,999999616,999997175,999999953,999999974,999981493,999957920,999906743,330832111,998770477,999995189,999428994,997814317,980051226,999999875,999998662,999994242,999999992,999999964,999982651,999936332,999978014,999999992,999936943,999999998,999999933,999999999,999998562,999999999,835060461,995414543,631987396,999825704,999999998,907492468,999999737,999999985,999996540,967353865,999429442,999994627,999999796,999998908,999870574,999432438,986231940,999857689,999889438,999999358,999999905,999999991,701659270,999999057,334554544,999999976,999999977,999997217,994978356,999997332,923193593,999967686,999999916,999997346,999954719,984873383,999999965,999994540,999999781,1000000000,998784188,145017573,999996235,999965018,989956223,999982853,988597428,989149512,980210906,999997889,997008746,999999989,745425986,999999990,997459140,998902532,952460180,999999999,994723102,999999995,999999917,999999979,999999997,999999750,999999996,999999730,999999151,902343375,999999950,999999879,999946930,998631494,999898705,999891345,993652588,999999617,736265766,999112539,424355737,999877010,950547903,845884263,999947315,999983941,999999142,999999987,999999578,999999978,999073776,1000000000,997187241,999987407,999999942,997258296,998155145,999134769,999993346,870481950,995451693,999999997,999999894,999533259,999997555,999999994,999759048,999502308,999552078,999999998,999999966,867577993,243073910,999998554,999975193,999993072,999882321,999855640,716167689,999998930,999953635,999999851,1000000000,999961928,991590330,999988511,999840878,962017371,999999989,998679016,999999954,997962272,999854812,999999620,741237084,999969778,999998797,995605309,999884817,999999998,999995084,996406337,880067831,973015399,999996004,999999486,999999996,1000000000,999140167,999952078,999999999,999999999,999999998,999999970,999999939,469560401,906944086,999992501,999759423,999999584,999728953,999992861,999999947,999907679,974188828,999969126,999162164,999591741,999999985,999990780,999931742,999986596,980362751,999999875,999878904,999987701,999746458,999999741,999999609,999638872,813696260,999999893,989058689,999999993,999996590,999398288,999798135,999999052,999999960,999953778,994993761,999883526,999988315,999999920,502148402,1000000000,998207839,999901669,856000914,961018050,999999955,1000000000,999997905,990703468,989845170,568011364,999720202,985346544,983622522,999999782,992946162,589712060,999999932,999961819,999993881,999992258,996800342,999996850,998943415,999999983,999999998,999875587,999997762,999637372,999999982,999999998,994960695,999505113,999999981,998087475,891954710,999999998,860552023,999999988,994055989,989915737,985504705,999999560,999995158,999968543,990815041,999999721,999999852,999999996,999999979,999484000,998239654,1000000000,479136311,999987573,999960566,994285416,999999987,999999742,999807543,584336505,999999895,999999982,949773802,999999960,999986074,110833495,999913865,999987601,886670920,999987707,999999679,999999957,999990392,999804604,993361295,999916860,996594749,999655476,999973987,999998919,952005693,999619759,961263469,991526136,999917190,999968011,800454527,613760123,999740849,999973806,1000000000,999999353,999999578,999999982,996674559,994359103,997345521,999980520,999999956,718786636,895599930,999992852,999971775,999999895,1000000000,999522058,999993381,999999998,999785837,998028493,987350356,997323672,999999906,783870347,999997990,999939928,986319101,998986107,999661707,999999918,999999915,999762998,999999988,999999676,999999968,975123512,998835668,998401938,999924953,999999989,999997314,945476933,999999859,867935574,999990858,998629113,999418369,1000000000,999999996,1000000000,999999978,999752092,999999991,998061560,999446402,996751044,991866114,999999904,999961935,698298853,654466363,999995872,999999625,1000000000,999902115,999999949,991842956,990396296,999999230,288370939,999999869,999952470,857380768,999995162,993833795,999999014,177770202,999999998,999999945,999999999,996381201,836367115,999998590,998549059,999999991,999999992,999999938,998575910,999905043,999999977,679661269,875789495,980315881,819726989,995444131,999969823,999999411,999999636,999999941,999976001,999999974,999998759,999999672,998697482,965397366,983175165,999966171,999999971,999999978,995505575,999940482,999999840,740509585,999997209,999996509,999999974,999244360,998277016,999416233,930761789,999998524,934479192,763486105,999513520,999973571,975276365,988022432,996072910,999999664,999999657,833023712,999999999,990155664,999999756,999999998,873562088,999999874,999816931,999999838,999999674,999982832,232097458,999999877,999994148,999423067,999999971,999998437,999997919,999999636,922338678,944109355,999483919,999878535,999992158,998058098,700532211,997199522,999993022,999753802,999999633,999223521,999999966,999999827,999778881,999999990,999319503,999999861,838901908,999999633,999999898,988983567,999999337,999999997,999586621,999999978,927309318,999999626,999944122,995237255,372630972,467684677,999979432,999803747,993457288,999999983,999101405,999021300,990440660,999998796,932444887,999786795,999999994,999999975,999999098,459621560,999984979,992391738,999985848,924661553,999999921,999984626,992043863,999999999,999999763,999999964,999990226,995380120,999864382,999638011,999999998,942678160,838620015,999999999,971275629,843780602,999981848,873478084,985929053,999987245,999754111,999966062,999999980,999939592,999975966,999903768,999999974,990445641,999391060,999990280,999999873,999983576,930221149,999932190,979554132,999985306,999988020,989723597,942147291,922253843,999999998,999980686,999973302,999987902,505173168,999874709,999999730,999836684,999968347,866123497,999999987,127915297,999999679,999970380,999999999,112277796,449520270,999999998,999900690,999708821,999999744,999999931,999967152,999144678,999999996,974837375,999999998,999994882,999988843,999815890,999999979,990143785,978125820,999999995,999999997,999999979,995898965,999999984,999999995,990644488,982784763,991123806,974920823,583669828,999999999,991492357,937503543,999999723,1000000000,999999672,990167959,995746357,1000000000,991674383,464338694,999999976,999919641,990556804,998684718,999999533,999997438,999999861,979642219,999992884,999655128,999987937,999998835,999999088,999997885,999999989,999999919,650432661,972778797,999986489,999993369,999999883,981692711,997381133,999999996,999939582,980386921,999969179,191817722,999957409,999999975,181860109,999999883,999995683,999999777,999934822,999981318,999825725,999995294,999997169,999980410,999999985,999999992,999999997,999998202,995382138,22617944,999998822,999999938,999872211,881315264,999614414,999745069,999888367,995963662,999999996,999999929,999768801,999999990,999999994,999988675,999718093,999958097,999999997,982834544,998945089,358826937,999999969,999971050,999999591,989323611,999961375,999995857,987780233,999999996,989226954,999763575,999989662,999999979,999999998,944422976,912578088,999996803,999999974,1000000000,979281184,937515724,999968075,999991369,999999903,999852047,999999908,999999999,94095486,859952252,999999998,999946651,999991997,999999463,999999738,999475722,999990624,999985269,648634430,999625318,999903704,999999981,999921001,999999988,886585961,993470434,999980733,312506687,999998474,998766449,1000000000,999908577,999999932,999999809,579086341,568450518,999999964,968407298,999999417,999999843,999999995,999524546,949011365,999999997,999998864,823971021,999999852,1000000000,992240161,999999679,948355255,107465681,999999985,992613686,999112986,999999999,953267190,999929187,999994842,1000000000,999902378,338002582,999999661,983430484,876638903,999999703,999861071,999998652,883172506,995948730,999999995,999985122,999998870,975362424,999988702,999800403,999995134,999999889,676913872,999867793,999998136,999986156,998109450,999999993,1000000000,958052884,999999551,348342928,999957830,999998646,999999281,951996210,999999917,992544278,630381545,847386513,785261572,999986551,998510317,835716785,999908471,999882388,999999983,783038387,999999998,339137993,999986616,999999350,999995954,999999685,999999999,970381086,999999760,997889640,890954486,998421704,992544712,989069320,999935483,960989350,816544137,999973894,999999790,1000000000,996394877,999935982,982030168,999999995,999999377,999998404,996653225,999997221,999999932,999999998,999829734,999998532,999939069,1000000000,1000000000,999997282,999957207,991674386,999997872,999663796,999940679,999999871,1000000000,999999546,997944288,999997887,999990611,999999933,999994252,999895064,751060601,999951280,999702317,999997937,999253161,999999701,999999998,999999947,966686428,814689751,999999840,999998965,999999153,989515000,999999995,999989610,397029419,999902095,978520187,999999999,950549734,999994802,999999994,996928791,986839775,999996663,999999977,999998861,999543168,999284943,999999182,999951015,997880032,999999931,975432148,999994607,999921889,757749216,999999953,999999936,999705961,998755858,999999998,995741506,332056889,999960300,998532366,997398992,999729410,1000000000,999151018,999961187,999999644,999989056,999999668,989684767,999999962,999883167,999999860,999999995,933829957,999999985,999997259,971640284,999817678,999999998,936005085,999999991,999999992,999053996,971024143,999941127,119907641,999999700,996778587,999611718,999999956,999998858,978729234,999995697,999999840,633142616,999995887,999978277,939249862,999999807,999999997,999999847,997821144,999990208,999999997,999192670,999997189,999978370,914962645,999876184,999999519,999996149,999999457,999980922,986620798,295245023,749646369,999999766,261320898,999999207,999288338,996553347,991159998,999986976,999996638,999999500,999988394,977374191,999600405,999988148,999999809,931116331,967737373,637931306,999998588,999999997,912633004,989970080,999988605,999371538,923330339,781798832,999999994,387622513,999999967,999993917,999999594,999957374,999974579,996948098,801008923,999921897,999053647,999921500,999917042,999999946,999664817,889365130,988241225,968263716,887076219,999579110,999983865,999999559,997493915,999499184,987535139,999966571,998756147,999999995,779302583,995566912,999909219,997785416,999900634,999999753,600157656,999999937,999996154,991729978,999904110,999999995,981981105,999999974,998888243,999999628,908154686,999970696,995340281,999997047,999885052,999997597,999999742,999955670,999999838,998159191,999999998,998821530,788116064,999932206,949074999,272545417,26938283,155688818,999943330,997254060,194682091,999997779,999742718,999549370,999999970,999999951,999999944,999999986,738799144,993797459,999990831,999993970,383956440,999999979,999999142,999981152,999999992,999999584,999186865,999693370,999994409,997892122,999999940,999999964,980550265,999993534,999999989,999998840,930401833,999479532,999999866,997769056,999619022,999507391,999989564,953489470,999999984,999999986,999999959,999011364,991410914,916773746,999999265,999814001,999993500,999999990,999999894,366528153,427410007,999998680,999999999,999999960,999901002,51321917,951684508,999999999,999877753,999999945,999999943,999999940,999991869,792057197,999999999,999999819,970928967,997641529,999994896,291690462,863326162,753971518,999999989,986703454,977145780,999993955,999999990,999511959,999995510,956197805,980303001,999999200,999990119,999999999,999996283,999152881,999992130,999999988,173115598,999999902,999991960,999999994,999999998,997909898,999999995,999978623,999986771,999952686,999999999,999834128,999801072,1000000000,998925570,999999957,786124855,999999953,996396203,1000000000,983463364,999544906,999670939,999849560,999882355,999593655,999999978,720426220,999999999,999999994,999999677,999177274,999999998,999998763,950666923,999999787,995933926,104999422,999661706,999997264,998912229,999999981,873842818,999662502,980669141,864373942,998193273,999999989,999999848,999999185,1000000000,999999999,999999994,999993779,999999946,276173836,214667553,992394660,999998075,202048387,917451467,999999987,999821006,986217036,735765754,999187384,994794119,994914287,998975926,999685226,999999786,871292300,847740921,999999951,999999984,955200411,923845496,999299282,999999984,997327352,999492400,999033878,999998063,999999319,206874045,956962356,1000000000,999999988,996174647,995463251,999836518,997672231,999999995,580394061,999503208,996902746,970757290,999999555,582472904,470519463,999226640,999999792,999999985,1000000000,999672335,902677190,999989489,1000000000,997238749,999974116,876954410,999999999,993123927,999999983,1000000000,999999984,999999997,999999946,995588596,999997052,999999988,999999999,125584502,999997673,583910145,958892518,999997046,999999998,999645297,999320821,999999985,999999995,1000000000,999998790,999904790,999832098,997262547,932142848,1000000000,999995658,999647108,999838858,999998143,999999686,999998113,999997483,999909830,998902146,999999983,999998760,999997676,999944029,999998835,999999999,999999954,999999000,995766791,999999999,999985856,999779488,999999729,999771876,999974609,998869950,999999867,997838881,999212038,999999990,999130553,999995190,999999969,998998710,999999866,999998257,998708251,999999977,999989711,999999973,999999981,1000000000,998807700,999999918,999997110,998931573,999999971,999690664,342775034,998641682,1000000000,999999999,823019875,837959530,999987057,999999757,999395071,999736047,999999591,999957927,999998864,999999616,999999969,764248139,999999996,999971414,932602702,999999996,999999316,999964355,999795192,999998571,987875535,999999868,999999807,999981878,833778446,999999843,999999978,834353169,999364410,993400498,999999997,999477557,999999978,999999958,999142424,999999923,999840228,999987565,421636983,999999783,999949099,999999972,994571454,999999145,882882658,999950688,999991742,999999998,999999969,999982544,999999944,999995624,999999993,997702474,548566766,999930699,993567085,1000000000,999999967,999999671,999960521,999999918,999413837,977306306,952987692,722618040,961005723,851459981,969029185,999987072,999997175,999998690,466985029,192717278,999999549,876603707,991925209,999999988,999969409,999915591,999999999,999994963,999020989,999997326,654647193,918572545,856774469,999999125,999998874,999999945,999999790,696284158,999999248,999600919,999979141,956664945,999975991,999698648,999999862,999997688,999999949,999999886,999999119,999999042,979998817,999999905,999955630,1000000000,999949368,999999993,999898731,999999997,720135054,979972373,999999998,999999978,415873885,999999218,999879443,999999999,999999986,955556379,936068578,999999969,999847178,997012633,999301141,1000000000,993915342,999999734,999999857,999579817,999995166,133879384,999999978,999544284,999908989,1000000000,999998687,999999982,999921899,999999998,999999611,999988504,998416140,683089267,999999007,999659481,999998592,998538871,1000000000,999998938,990059407,998866780,999999988,978029563,999999999,999314556,999965820,999990207,999999433,999999876,999999941,999999749,999999998,999723229,967719545,353375134,999999884,449260964,984363562,973362075,999995218,999924770,999999997,988844428,495206887,999431747,999999766,999999996,994992187,999268516,999999949,999997000,996276106,999997943,999998283,999973611,999999927,999996017,999999967,999999992,999932401,999999994,973106179,999999961,78259387,995814491,999999240,1000000000,999991902,982028914,999999991,988616801,999999997,998223400,999996457,999999956,999999998,976871686,999928594,999998301,999994242,999999292,999999993,999999985,999960512,1000000000,921374256,954854544,999999415,828499827,999932343,999999993,999999999,999999985,999999978,878767232,997263630,999999997,999908414,999999771,999817664,999999968,999882638,999999552,484693309,999999869,999999947,999999841,728168049,999999835,962601267,999999989,950899642,999332829,999999988,999999773,994804082,924372339,128049573,999992653,999982719,999995032,995352124,999788776,999830700,991877215,999999965,999941158,998488214,999995773,999999679,999910673,999993792,1000000000,999999637,999999982,999441503,999984831,995524337,940161132,999993620,999799221,968020520,999598578,999859089,999999993,861345935,998867308,998032133,983247423,999995898,999420948,999991790,999055492,999998106,990249623,999999994,982157097,999999325,999989120,999995716,1000000000,999999989,999969604,999993582,998025561,998636665,967883199,999824718,974132543,934213147,995793114,999999149,999998789,973761459,999999715,999745234,999999551,989741658,999916643,999985518,999883637,999452135,30340,999012805,999993250,999060313,999999998,999309816,999369484,999992881,999999947,999996315,981481456,999976427,999972478,956897381,999065412,999999980,999999578,999505353,999999932,994423413,995064144,999997892,999970298,999970094,999999999,999080735,946619689,785855591,999999813,999999796,992511161,999982115,999999998,999999958,999999999,1000000000,999321766,999987186,999998800,999993172,999974794,999999995,999975725,499651772,999999879,996470388,1000000000,998874202,999999939,999748547,999999672,999999991,989619352,998514840,999999816,978727790,1000000000,997834416,999999989,999999987,999999997,939402305,999999425,999959137,999478758,985110420,999926008,999201916,999992091,999999994,978262496,999936645,998993454,999999997,999636901,999999794,995366363,998841842,999815261,999985279,999999986,999998868,999999841,1000000000,999693507,992206113,999984769,978349467,121491965,999999991,999909469,999999315,999999976,999999998,999999996,999999998,994405346,985103443,999953008,999940364,996200560,989595000,952167832,999999939,999993149,999997285,999998285,999989734,999765751,992910208,999854715,983262745,999996633,999961919,999999999,999107915,999109672,812961962,999898494,995741861,999999972,999993571,990131264,866016451,999842235,999981803,999999842,999999994,999999648,708887075,999998227,999190264,999999986,998476222,999999996,994614812,81800349,999357137,993718194,923415440,971274866,999999565,988308638,999999974,552938000,999999991,1000000000,986458004,999994180,999998937,996185730,999994110,913516109,996055417,999999997,999997011,968538851,991171955,966266304,999889785,999910991,474887948,999999994,999999576,993272276,1000000000,991806761,999177020,999995559,999999671,999363368,917164050,999999629,998694358,552245502,999531111,999999999,999999980,981759938,999990733,999999965,999999982,999544075,999999897,995026940,999998462,999999970,999999999,849936951,999935412,998008891,999999995,850067277,999998278,997512127,999661439,82045980,997856555,990008035,999999678,999973625,999626922,999999696,999995543,999327768,999970992,804385965,577354479,999999564,999959424,993018149,999999989,572183298,142152517,999999990,999853149,999999999,996407922,999989195,736931168,999918987,999999891,993435124,999999882,999991108,999985402,999987437,999960435,999999645,999999988,1000000000,999027694,996879494,999997700,999983073,999999911,999999873,999998669,941110931,970790654,999835603,999999997,999999988,998027824,999994515,999999996,1000000000,999812638,999999928,999991871,875214991,995771332,992536443,999978396,999999979,1000000000,999887799,998842897,999999096,999999983,845700694,873925281,999710364,999999997,860707176,999999864,999998144,956523514,999300399,723478304,999999913,956494815,999328271,976200005,999999999,999887595,999999997,999910879,999999826,999276056,999927265,997435906,999999997,999993137,999622077,999999386,999999979,793333303,999998498,999999711,643474199,999999990,999999320,994809594,995868661,999999202,999957953,963663644,996581026,999608003,932333658,999895360,998868229,999967761,998538823,994137607,989493499,999569055,999807147,999999243,999997038,999968887,983178405,980018778,999999930,999990298,999882803,999993312,999982106,999999997,999999932,999995018,992566444,999999179,997883807,1000000000,982571128,999999934,999997604,40371262,981695019,999999960,999999998,939667554,999999991,999438841,998918657,999999516,999999969,996950898,999989530,999999990,999999872,993762790,999992216,999698749,462594587,999999520,999515409,993723129,999999833,995210098,998340106,978774599,990632404,999974048,999998826,880572176,953833674,998895917,999062714,779283449,999981090,999999989,999999874,987377022,452925618,998183396,999958782,999999026,926443032,999948389,999999986,999631254,946907870,999997971,999999989,999938168,665292725,999999986,999900649,999999102,999999997,999994734,995618987,999681697,999995265,999997359,999999196,999999857,997073423,999999938,999999995,999999935,999968956,997545162,999999999,995331326,999999975,489885557,999999950,990407604,990543050,983848611,999514342,999939465,999586220,859441837,781788863,945503537,999999965,999987480,999999795,999172383,997591465,999696843,999925178,999749365,999965704,400918517,994487356,927629916,930254242,999999917,990758055,990399244,999999977,998469177,105068428,113462315,999228277,994067090,999999971,948382790,823445066,882533892,998261691,998898329,999891931,999955884,999896446,392752348,999999974,999878069,999999987,999215401,999990883,999999995,999702844,998011205,998788077,1000000000,998807100,999999920,999484243,913769334,993477048,999996416,986747616,999959570,999999963,999999260,997936702,160430038,999998134,996046331,999999968,999999426,999996090,999999332,999996949,999999918,999997880,999999967,998704517,999999930,906561705,999894542,999999996,999999970,999999729,999973142,999999985,999999999,999999959,999999250,999990076,999848288,984200589,513893587,999999992,183909302,985677494,998397208,999993798,999999625,987806356,999999579,999905545,775420084,999999823,771712861,999702989,974438211,613292841,1000000000,995164385,134839117,999739269,998659616,999994378,999999967,999999959,996722007,999999836,999949835,999999999,999997078,999999945,966118685,999999999,999999857,999999050,999998899,999999835,999993831,999974782,999999987,703451517,998990498,999999971,924841106,992665089,999898341,993050636,999078305,981588672,999991886,999997469,999999951,1000000000,999999866,1000000000,537383385,920838396,528366583,997517804,999999653,999998518,999158910,996022517,999999518,999994929,999999103,796918488,999999920,999999999,1000000000,999999964,999994015,999999999,961691936,996921132,999999991,999999006,999999961,999999670,557012440,999961956,557955197,999994407,999999989,1000000000,993668827,230713865,999710321,999999939,999931433,999999990,999997163,999984934,999999994,584721745,917809152,999999999,999999993,972591197,999999684,999993345,998289766,999000635,983441891,999999999,999999798,1000000000,361852384,999988788,999986117,838863120,999999973,999546339,999999835,853269053,999999990,999271766,878953397,999999293,999978710,999998019,924271461,999982512,906811786,993192517,999304032,999999532}

    Returns: 41063835953

  77. 100

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

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

    {926004471,999963685,1000000000,483504876,998266549,988766027,690187883,999972976,983220160,1000000000,999966248,995747574,999999973,999276540,999832980,997926378,979384492,1000000000,999999946,964290240,999999864,999991906,997924303,999999991,999999945,996079705,960734173,917324270,999971402,999998329,999973625,999996112,999403153,179196378,972366472,999976973,999998560,657820337,999999996,999982336,422430497,999999991,999999977,945661849,999998845,999999986,992572395,999999993,690630272,999999953,999116128,999960878,996498304,1000000000,999999269,999999487,209830134,973615392,999992714,999999327,999763726,488961951,997440022,999999981,999760719,806544517,999955080,806888859,999960121,999999996,999784475,999999999,959893839,1000000000,999965005,999821745,999998876,999999992,999993689,999999998,999999413,999999953,999999931,999997253,999999987,1000000000,999996840,999981680,204448357,459286278,999994634,207011995,999942702,999998652,999999843,999999982,999341990,999999615,997757889,999999281,993384052,999999997,999130462,998352596,999999992,971689721,999999997,962939293,999999709,999995829,997248309,1000000000,948917202,999905901,999946364,999999999,759384233,824281526,999996443,999982005,999956241,999988470,999997904,999998835,999999997,999999962,999999874,999999905,1000000000,999990770,999996262,999011172,999999774,999822792,999999035,999924449,994073542,998908637,595923749,999999999,999999383,999909511,999999999,584114015,999999962,999740229,998008858,988058549,999998292,943299347,997377453,999240172,999999638,998835764,919092163,999470422,999994622,862641065,999999912,1000000000,999999995,998414297,992249122,961123675,985655104,999999994,999433702,999999995,1000000000,999947106,999999033,998306404,998745185,999985597,999999998,999998428,999999987,579854119,999993319,999386005,999999971,999999926,995701641,999999886,999916045,999999990,999997969,999999924,88259567,999999989,150085655,799829474,982370501,999999890,997312302,999999999,999432401,999921156,994756590,999329286,999865224,999999879,999820581,999983481,995672582,999999999,999999996,999999887,515731709,980477751,999967712,999532062,987239700,999999984,985012820,999977077,999999849,999998872,999996358,1000000000,996106650,1000000000,991965065,1000000000,891287304,640652562,385703244,999999979,391225106,999999933,999999867,741480145,999999994,999931395,993037024,1000000000,999998786,999999999,910133131,999907977,999471188,967117640,992589046,999999949,924176224,957873948,999999877,1000000000,999949758,343784147,890451485,999988277,999985650,999995446,673934662,989513271,999547154,998772721,976858784,937370718,999985147,521859436,999983453,999999990,998647673,999322844,999998443,999990751,999999189,1000000000,397696570,999997794,999999848,963329547,999999585,999880432,908709562,970576766,999998796,999993383,881964435,999996617,999601084,999995541,999999636,999965965,160221144,970031347,999999766,999911545,1000000000,999997867,946542940,999917126,1000000000,999829921,999999999,1000000000,999997949,179774401,998852120,816318786,999598170,928045073,999999590,969038253,998044362,999999823,999993592,904851398,999858921,999981336,792690529,999973288,997441747,999985711,732329844,990995867,999999702,997093195,999957052,999999892,1000000000,999999984,999695954,999975354,998401441,977992311,998550245,1000000000,999999018,999816343,77104370,999957860,999999998,999999869,994932777,999999871,970207304,999999992,998832674,999988039,873657485,947323998,118234036,926638398,999999976,999976567,999803265,768324566,999990954,999998339,423366819,712009232,999999962,999999972,990870403,999995398,999999985,999997931,999999977,997968803,903893740,999691778,995033967,999997100,999999997,999987421,999970298,999999832,999999991,999999985,999999985,940421245,999999999,999574120,999999997,999993146,999999944,989713536,965095904,999992389,999719211,803249763,999999965,997431149,999999963,796750410,999982514,968444100,999999984,999466027,999999977,997003026,537285893,996903793,999999997,997169802,999882445,999941325,948327488,64643792,999547021,999999920,999999987,951550350,999650166,999949753,999998338,999999957,999999995,1000000000,537934413,999999359,999999986,999812484,997730034,999999689,750996911,999999753,999999931,391187930,959707865,999921578,932847285,707796612,999999541,999999833,953190990,970890906,938211919,1000000000,999999969,999978133,999999936,999999550,999999999,999999979,1000000000,999818255,922042708,999868115,999999241,999989757,921089878,956627209,999999456,999999905,999858443,999993418,991247007,999649805,999684908,999998151,999339712,999997452,999978686,999999997,999999998,997762066,999322667,999668292,422690590,999999033,999999652,999999998,987820129,999996514,1000000000,997260555,993971724,922766874,999999818,999999299,999999998,999591491,998977029,958584013,965616404,999742787,981116805,917624464,999987536,999883126,999996545,999007744,915899913,918010764,669726709,999954094,986651911,999999994,999999419,998853476,999889631,999988628,556829901,999752173,999999997,854169652,998407530,999991194,999961650,999947989,999599238,999506696,999334263,841036411,308669975,999999830,979215401,999950348,999380691,999356031,999999981,999995779,1000000000,999999891,993925336,999999574,999998529,999999998,999999999,999977934,869563694,930690895,990346038,999327053,999967784,999999991,999856902,174555376,989460082,999999975,999999988,594374905,999999999,999999961,999986471,919893335,999957702,978427109,300744010,999999972,577872755,998646900,999999336,999961863,999999119,999996901,988254967,482275691,300329696,975460572,999710728,999999577,999834803,999999613,999999904,999725984,953891558,996619479,999954790,997525121,738077859,999998794,999999681,999878583,368977684,996042760,999999987,999359921,984667761,999976660,777575462,999999981,777733856,875514819,962515700,999999585,987690868,658292812,999999992,999999970,999612666,999422698,999906331,999997490,1000000000,999465192,977749396,999987514,999992623,999999205,999999992,968625768,999758086,968532251,999998600,999124547,993912370,989524604,999569969,1000000000,999947251,974188218,999999980,999885792,999768130,999650295,999979344,999999948,999992134,239567958,581737415,999974472,903939872,999999779,998855262,999999999,999999459,816845089,999844439,937529235,999999373,999999967,999696507,999998514,999999998,999999999,999999965,999999901,999961699,867875094,999977000,363666164,995071114,928271330,999732675,999582952,999976612,803217981,227873531,999999993,999999991,404983064,999999992,982332982,999992766,999999898,999999997,848560850,999962078,999999969,999999994,998950531,999998828,990844026,999999992,999999685,999583319,999999575,999999990,992241262,999998991,999999999,978121509,999999989,966272577,995324302,999986417,999979439,999999581,999987244,999999684,999999909,672127324,999988733,1000000000,999999911,993543069,999682880,999993523,999994358,163442509,1000000000,999887366,647464854,990258388,999999981,975484288,999999739,820329689,999999984,999998104,987899533,1000000000,999999928,999928133,999995244,997847556,970668255,999999992,1000000000,999995490,999999994,999999971,999953879,999999971,999906330,999957600,999999999,1000000000,999999765,999999942,999999688,996651507,998812727,999942327,999903940,998493158,999997363,999999961,999999718,999999996,959088702,999999587,999939455,998849796,999989201,999999998,999999858,999998915,277922275,999971090,999840166,999999248,999686106,999999988,943605453,995779642,999999988,1000000000,997416244,988705283,999999982,999385274,1000000000,876940911,990881913,1000000000,999999305,999448438,999918984,999884199,999999562,344351386,999905209,999999986,999576980,999999990,997628306,999989638,814245729,999815428,999441770,999980290,999999942,999994873,997350953,999999995,994839375,1000000000,999887878,999999999,822161471,1000000000,999999938,999998302,999990853,999978043,999999999,999993359,999999899,996026032,844950933,890599566,999952899,999999973,999999998,768676541,988529777,891735621,999955590,999999878,957194872,998284322,999999952,999999989,863112121,999998580,999563797,999999359,995214630,998239011,999756064,996714245,994615018,999998743,999416433,726431546,999999939,631750205,999900380,999998355,889616367,999993315,999977244,944053785,999987114,81477134,999999958,961556242,999999962,999990291,818946100,999999881,988010782,890834689,999996210,959325350,1000000000,999959746,835618270,999011008,775340313,999981313,999999986,999999996,699781287,927674495,999227835,999996438,999999789,999998021,203657832,999999141,999831200,999999826,997844814,999999998,998197640,999995884,999991391,585361223,999999999,993380707,999998601,999999999,983536880,998594239,999999995,999974930,999997050,970361418,999999837,452300234,999999982,999878245,999202799,999999978,999998216,999999543,999991007,999996472,949309761,999999177,348218404,955866307,999998877,999999748,999999594,999999909,999980960,999999997,999737507,967175066,954227441,861936763,999999996,999999995,999999801,84774060,999999966,999999992,999999968,999415521,966723719,985446273,999986010,666888886,993058381,999999998,999998102,921490797,999999180,999999858,998025835,413815598,999883941,160829247,999999871,999800629,999995470,1000000000,999890414,674203258,908966797,972848058,999993668,999999988,999999998,999999951,999997078,999857557,833908709,999999984,999999685,999978538,999999983,988366717,756054764,956331877,1000000000,999529492,999305148,999997960,999249013,999999993,999966334,999994942,999999967,999999998,999999944,999999997,999146665,687418742,999997790,451132830,999919220,1000000000,433081546,999303192,999999204,976249860,999999828,999966679,999999959,999616872,875077736,989085388,999762225,999941750,999863772,999998935,999975722,1000000000,999999998,999999920,999999985,999999999,999684187,997686152,999999990,999997951,999948556,999999299,999851166,999998406,999965064,999999992,962424488,997704249,999930719,999998052,999999986,999923765,999999979,999999976,984794346,157206032,82239324,999999993,975357761,999999937,999996599,999303311,999849277,998256397,89828570,993902411,999999999,996055010,1000000000,999892406,996920731,999999680,999659288,991458295,998358388,498046876,999071188,999999999,999999941,999989753,999999986,999993813,999962620,997711307,998546201,999953809,999660831,999875866,988928261,999999978,899300054,999990999,999999437,710666111,999985914,999997995,999999991,998946317,999962113,999999997,999999993,999999998,999988552,999944754,998119653,999999986,998593086,999998916,998278710,999999957,999992566,999999701,996837463,999999377,998423605,999026155,998466330,970554716,999999960,143167279,999708670,999999976,999999983,999983657,999999857,999870105,999994352,980292838,999999997,17700157,645067643,999999997,997112145,995639173,748921392,999999982,999999900,999967679,232531383,999999954,997967178,994036463,794150482,999999480,999730320,919195140,999995071,999796241,1000000000,999996092,999998429,999854993,999999962,999999303,999999916,1000000000,999968663,999999912,999999996,999999999,1000000000,976286140,999842398,908646581,999999794,999991644,999999756,999996996,999971613,999999999,999767132,983218105,999999991,999970335,999996812,999984669,999999996,999759166,1000000000,999999983,999999839,993599379,999938751,999911101,999244613,999999693,999999023,1000000000,999999180,999999998,999998221,957456160,999976768,999992708,999999985,999999970,999994900,999999776,999971366,999999994,575298149,997760388,999999696,919753067,999999800,999996887,986734410,999975064,1000000000,999999951,35403966,999999961,999985469,999999994,997302340,951952719,999999990,999958379,999999993,999999895,999965086,945495849,999993723,999997512,999999359,316533993,990832226,997589127,999411671,988006640,999999895,946674618,351352413,997830671,999999996,999997891,996832927,999999881,999880908,914651684,999999419,999976796,999999696,786589019,999999997,999999999,614770404,999998214,999999994,999999990,753462884,990581889,906200521,999924031,999984183,999998881,979542403,999800629,999334579,999853712,997196774,999905708,1000000000,976574245,999999956,999958652,992729640,999994919,977704400,999998479,672522570,999999995,999999820,999999921,999981749,999999989,999996965,992645989,999999919,999999980,999992268,999993600,997182372,999999971,993702600,999999829,554806756,996907794,999999984,939279917,999999998,999974513,992536517,881383481,999997710,748612474,999999992,999999980,999999696,996658616,999966009,944591446,999999152,983134669,999999226,999213621,999244355,983336788,957850385,692435325,999856704,944374488,999983285,999999971,994601697,995990372,999983644,999999902,999999972,999994215,992052505,999999998,999836625,999998929,999995334,999989920,994562799,999998795,999463028,983471009,999999867,999999764,999933395,999997554,999996486,997786099,999998842,999976844,999998651,999999999,995132731,997607438,999983497,999999667,999981313,999982432,999986643,999670428,999999965,999999873,903218119,139377967,1000000000,898286607,994620161,763700538,951888921,999999997,999999602,999868628,999735832,999892690,999999841,996855751,999995144,999999998,999970855,999999918,999999997,818333019,999999996,999979349,999818977,989936335,999999799,999996421,999999455,999780506,999999872,983093527,999999852,999989358,999849211,999999999,654606896,999901595,995292921,998853447,1000000000,731564480,951908824,906588061,433418268,999999681,996940621,998684390,999998892,999999998,488788869,999999925,999621781,999424314,994663673,999999721,901123717,953364291,999992509,999978225,999932116,864955674,998845930,999999910,999999973,999991661,999984389,999964770,884075744,999995494,999999913,999460399,999977287,999999964,534183085,999999976,999996758,999922414,968665436,999999813,999999997,999739415,999979796,905697714,999998576,990415900,999988974,999975251,999997087,112376000,997441839,998275774,999899420,999023956,999999997,999994838,877253884,999999994,996585667,949015049,999999914,998511732,999999857,710383813,999999996,999999067,998033335,902576231,999891673,1000000000,994288421,999946353,999969460,997979215,605743336,999981272,999999600,996683089,999978385,869792687,998424428,989249754,999999828,999999990,999999175,999999921,995632959,932851405,998515232,996342246,999999648,999999992,999999733,999992278,996490991,999663978,998558689,998762131,999999954,999998289,999993785,67465495,957187122,999948367,999980536,999988236,999998748,999999983,809300480,999999952,820867043,997723233,999999999,999955954,999999999,999999709,999992008,94914037,936523788,999916015,1000000000,989943490,999933421,996422154,410320845,954818439,990204894,996705288,920552312,997437619,999870188,998827160,1000000000,933093607,999999965,999998186,999275049,781935859,999970676,938559831,999208491,999999999,999969057,999445816,971911032,999999180,626180443,993501791,999868718,999563918,999819492,999259510,998115005,999999045,999998952,999998374,999978618,996004348,978173393,999999435,999999975,999999972,995396612,999936476,999999578,957561805,504356082,999999986,998748557,999999913,999999952,999990272,17686041,997323445,999995292,999999992,964834506,710541671,999999659,999999686,840751123,999965594,805476119,1000000000,996009896,963900017,999999671,999996280,989837154,999983443,999999790,999968945,997935338,999999177,999929047,903168942,999999966,999997546,990047536,999999995,880805081,999994555,999999951,999999998,999999960,999999898,999999998,999981527,999998017,999999834,996185856,939209547,998788383,999999988,999229998,999963955,999999934,985718808,999998469,999997136,999999998,999963546,999999997,887381085,999997381,999999989,999998195,999157657,992061220,962461268,999999802,999992756,999996786,999592054,989599970,998737573,999566358,999995764,958073809,995984915,999822724,999999774,999997725,761197189,999985427,999999971,977366111,996839823,999939850,999999985,999999992,711685755,993511644,999999999,1000000000,996721449,992970780,999895481,877845407,982588560,999999989,55692268,999995133,999978014,976706875,999999975,999999997,999888373,999999378,999950880,999795613,999999510,844623649,984142678,938793947,960902352,999976927,999999982,982748462,999999700,999998722,999994031,751836877,999999674,999999866,999999829,968434501,999646350,423658006,999651943,999912687,986174520,999997980,999563067,999999996,999999991,992143708,926835091,998902214,999994771,977532302,999108217,999999997,1000000000,853851770,999998203,999999469,999992771,999999988,999999769,999999056,950833626,999999875,995159922,999999958,999998406,999999994,999996928,987521328,999906477,999999973,999991774,999999999,646348706,961416033,999926928,999999989,999999995,996998106,999998885,971482448,739526113,999980986,999998452,871994128,999999999,999989149,999998041,999991023,975409959,999999943,999992210,999324113,998319490,999920785,1000000000,1000000000,999998752,126693341,999161210,974175850,999999987,296024819,999999502,999996678,999994732,999999878,1000000000,999997860,1000000000,957134416,999999991,841906823,866543503,999999319,999999965,999999723,999444756,1000000000,999999891,999921166,996036457,999997795,999999953,999999984,999999992,999993415,999999952,999765388,1000000000,999949706,983286460,989366977,999890032,999999999,678705493,991775995,999999976,129755402,810439973,1000000000,999999958,999998669,999999955,1000000000,998257529,981845607,999989801,997262259,999999876,999999554,999991755,999999843,999999211,999999995,999999890,999992433,1000000000,999998348,999998324,998700389,999960452,998144193,661074729,999489546,999990447,999999986,997329734,998996408,999997599,999999795,999999981,997540418,995075392,999999999,1000000000,652292730,1000000000,991889217,999989022,999999959,999999999,999997953,650617890,985675714,991713765,999996450,999999800,999999984,991883983,393331004,999127517,998449720,801272398,999923308,177313146,993528733,188569145,920323985,927074244,960497203,167691463,978347591,999336607,999995830,576817399,999896580,997755998,998389886,994028612,999999992,999999929,999985507,999999763,893636151,999999952,994748019,999220379,504671911,967471724,999997751,999999979,999999238,999996954,928514493,997507391,999931279,993852624,999999985,999550085,1000000000,945192294,999999996,999999994,999999960,999874037,924070408,999994544,998922037,999693036,999999987,999998993,999981108,999998912,999776189,999999996,995909437,999999884,999999965,999999953,1000000000,1000000000,781218154,995929116,999996744,999821657,964168266,999509028,966921368,999991081,999999998,999997587,999997590,995978784,710505883,927335685,999999134,999999998,999999136,987160059,999999424,1000000000,999999986,999999990,999999871,999999683,964533057,986555991,995269826,999999418,999995267,999999855,999999878,999998121,999975745,1000000000,198105255,999952742,999999847,999999938,575030762,999942190,999970670,999999869,955540757,999042614,999999992,198457675,999996603,999999939,999999990,999994868,999697027,999999929,999479037,997961404,999999477,999992403,999993011,999999372,999647638,999999890,999999959,999997073,999999915,999999980,798087148,999999200,998782441,999996330,999999935,999999986,972448779,201714759,991696731,999287916,999881287,635845295,998968187,999996602,750103381,999682518,999995711,983365969,999924096,998231830,975061788,999098546,954672641,999999997,999996145,999999993,901205755,999577053,726454626,999999870,999999996,999161360,999928197,902814860,999999827,998071393,999984261,993531041,999997604,999999844,988909372,999999917,999993621,999999672,902731278,999944557,999997839,999902526,999872426,999999652,999998647,999995955,801013950,999871320,999995852,999999996,994477552,999816613,999998080,999999991,998512717,999999966,993752298,999999999,999998823,999999973,970706979,991619173,993750985,895117637,999999999,860648837,999998154,999999437,982766213,999999068,1000000000,999735537,927215601,999999783,997882176,999999993,999999938,999999955,999980296,998728525,999999780,999962950,997959469,999999214,999999984,998788395,999999205,999991343,942825956,999992022,784001164,999999273,960727684,999980376,999999988,999992821,242010549,999970451,165357991,943320130,999954166,951068606,999999242,999884607,999985254,1000000000,999999724,999956797,999914397,999999846,999999999,999996162,998522285,941757693,934911015,999999871,999999991,999997457,989646252,999934434,999991361,999500002,1000000000,999999717,996080300,999923182,997573784,987804555,999999903,999994128,999974908,999902973,997720775,788684876,999998280,990387100,824046415,999999664,1000000000,545773770,999523678,999999989,997367797,999999997,999999137,855979499,999995954,999665030,999998614,999999638,628728227,998378833,1000000000,999979911,999738653,895463448,999998890,999999983,999997885,999999998,985663130,999999998,999994497,704926122,999999998,999990812,1000000000,999999872,999998981,999990408,999999989,999999490,970637057,989170501,999999958,999999999,999964503,999999694,999999998,999891722,999999850,999802750,999843265,729975920,997127263,584670723,999999990,999995133,999999976,999999997,10594117,999999989,999999799,999997814,999974482,999955947,999999987,999788277,999998131,972789781,999999950,1000000000,999999942,999999933,940957330,999999810,999994610,999644105,999999937,999998585,999999998,999999864,999947715,992137324,998306786,999998524,425348702,999955387,999999999,185354172,999999912,1000000000,780961793,714606189,156310963,999942422,999999912,999996204,998831419,999999926,993785385,999999999,999998099,999989599,985363641,999996977,999966111,948901412,999999990,875251655,882334123,957335360,999999737,995711419,999898608,999999831,979561603,999992425,823147573,999921528,999853745,748419888,987870324,935226950,999999999,999999848,999999996,999961036,1000000000,999988538,854940591,821633194,970304666,999851172,999999997,694245460,438535318,999999963,430694407,735955690,999690079,999999713,1000000000,999999973,996014883,999459618,928498648,999999996,999999780,999999823,999999982,999963223,999467848,999925518,995877210,999999964,999997751,999807574,999984362,999908931,1000000000,967150811,999545742,999999947,999784699,999996619,999999998,999999997,925770096,999976601,999670995,997869785,998946106,1000000000,999963689,974117222,999999869,999996848,897764334,661033486,989638465,994320205,999908486,952277371,999999352,999187467,999999945,999999998,971650475,999999982,999999315,999999754,993514506,985532756,999999792,962399783,999999676,998926344,999997468,999999997,996745972,999999192,999999477,999999904,999999995,942844407,999999215,999999984,999998451,999999943,26319543,999999989,999999989,999999997,999993479,999995540,986832763,950835370,969134223,999999981,999194402,999999996,999981870,999484517,782847294,999999586,999791778,999932909,999707955,999999856,999928107,999992202,1000000000,999886941,999999976,999949823,999774077,826117512,1000000000,999978556,960822971,1000000000,999999937,999999998,999999999,999974255,999139843,999902952,945133102,999999995,979966961,997107548,999413154,1000000000,830084302,976293567,984570053,999999565,999868580,999998052,999998100,999995179,999997549,999965352,954675753,786758741,971817549,999507832,999999463,998182201,999960930,938602736,815359715,863266619,999918869,225691541,999977902,999999600,999999677,997994190,999870593,999999997,999997536,999733307,1000000000,999999743,999999912,999989791,203342880,851376439,999734215,999478880,999718849,994783088,999992132,999999997,999997667,999999442,999999987,999892264,998787615,1000000000,999999270,830595788,999999998,999998942,999103789,999317639,999817546,939731738,995218744,999339800,839048272,999999415,999176983,999952420,999949497,793524212,999999997,999834204,999999970,999994326,999992856,989301769,1000000000,999685417,999007446,999774943,1000000000,999860274,999905640,993800095,999926420,944749358,993628787,999994184,986398719,999999964,999998991,999999994,999953242,649684200,999978538,999999993,993403284,213846315,999851778,1000000000,999999568,999987607,912628182,999997542,975985260,993310042,828996696,996028495,999999974,999999999,999999542,999990446,984237026,999999996,722115465,999991649,999981515,999992521,1000000000,999999995,996920793,999999986,973996701,968690706,999910286,962528140,999994784,695621340,999299645,999583233,747927829,999998677,999962632,985880166,999999979,999985895,999736293,999999997,999976384,999999860,999998995,933596075,970554359,985330358,854305868,999999945,999931253,989955552,999549670,996684001,599053995,999999688,999688667,999999981,999999994,997859184,999065482,999999295,763369682,999999829,994073187,94017373,999837424,999999999,999964659,999994630,999999663,999996889,1000000000,999916766,419078785,999992215,999999687,999050271,999999970,999912916,999999089,987219990,998854229,351735054,999997460,999998321,999999756,730687731,999954773,999999996,998199422,975755451,999999731,999949878,541378664,1000000000,999567671,981184585,1000000000,999994700,991279244,961305271,999974638,999999925,999882298,999999996,999999994,999999798,999999408,999552537,947641749}

    Returns: 50579679709

  78. 100

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

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

    {999987538,999999962,999999882,999999952,999999993,999999907,999999981,999359843,999999850,997056466,716832625,999920069,187575843,884948147,999904523,999999996,18940833,999946589,999192137,768225406,999997279,999999986,673052968,999999903,999914231,999032906,999986770,999999813,575346538,999995444,999999619,999897616,999999998,999999980,999998236,999960939,974637883,999999298,991481522,999970245,999999985,999971260,999999126,999999846,983651183,998578407,919361234,969698173,988929736,999914615,985435784,999473865,15478571,999999989,999796110,999999988,999999982,906747564,992512506,999961573,595185676,999298401,999999161,999929459,999999805,131227821,999999997,999983023,999996111,999999998,999998444,1000000000,999485939,999999960,995646809,999999493,1000000000,694923523,999998617,262024236,999998509,999999755,999981749,999958692,999999995,999999988,994978136,859704309,991396874,995395384,906012187,992893142,992955669,999999999,999857770,999869881,796595461,996856805,914602286,912012307,999892290,999988244,999992799,996753068,999997465,999969488,999699439,999994384,950203335,990653445,999997967,1000000000,999989770,986863591,967975359,120457623,1000000000,999999980,999993630,877431793,891293136,999999072,362642693,999041947,996876279,982994961,813087435,999999967,999999990,999669529,408099370,866953318,999999114,838501128,763015931,999208732,995412006,984253036,999999998,999999992,999999955,967954231,541692124,997065947,999372061,999656285,999999141,732895171,960139210,999999975,999178303,999997528,991389487,990582738,999999971,999999903,999882552,965321061,999999120,999999889,999738993,882286810,999999967,1000000000,999995567,999999975,999442012,998954491,983156817,610786717,999999690,999999959,998115838,999999162,999999771,999999733,999944647,996552750,846320040,999993130,999907491,999999999,999157240,999999999,998151398,999998213,999999932,999993629,999999932,999999999,1000000000,998949329,999999438,999996835,999996198,923974737,999416259,999999984,762030513,378770412,977151221,999985225,999999999,1000000000,702993017,938005030,860524724,967893938,999999998,999999998,999999998,767901869,999933508,916429036,999999164,999999998,999999942,999998169,998903752,990439532,999999895,999947206,999862237,999936490,999993460,999999976,962253725,999503703,999999742,999999943,1000000000,999999964,716160081,999993942,999206801,999908389,963422232,996638453,999999851,993682576,999999442,999955849,972903315,962360122,999755138,808479999,986131068,999999729,999345994,999999948,999999996,207824981,619215455,999999974,999359543,1000000000,999999991,999753480,999999251,999998947,999986277,1000000000,943817499,999999990,999956037,999832419,999849402,999999344,999990647,999997800,999972749,976437994,999999917,999977908,999993575,1000000000,948797133,999990534,604456754,913194079,999997161,999992037,999999812,946763773,999996006,1000000000,999999999,999999148,999808321,999999993,999999973,524690137,999999931,545107398,990882969,999480611,927082692,998927390,999999967,999994278,999999998,999360426,999999999,999999827,999999966,1000000000,999999999,999942063,999937825,999929350,999999846,999999799,975168751,581539428,999999957,999999670,997412167,999998888,981452371,999994687,999999998,999909693,827923687,999999997,986383025,999993957,996754087,999999984,996513618,846925805,999824938,999999990,999544210,928585219,999659069,835747106,550223101,998890726,993495446,250114247,999706474,969287499,888513019,999999946,999885591,968466783,999825660,999900499,999997763,999062912,998893576,999999990,831492241,999876394,999810560,999999977,997123463,760216593,999877735,63579196,999996764,999999044,999864608,999999995,999953777,899341094,999999975,999440995,999986210,999999998,890226347,999999999,999955245,894891833,999320892,999997280,999997937,999931490,999924892,999997672,999997659,999999992,914583007,999999996,999999967,855987650,998940724,998708836,304725765,999999961,980045481,999986245,999999997,998516786,999999762,961586503,999999997,1000000000,872252164,808303069,999999996,999999951,999999786,1000000000,37736822,1000000000,999179678,999746527,995106135,999901002,999995639,999999957,999999970,1000000000,999835011,1000000000,999910316,999999994,999997529,995325554,999987316,999999744,986675639,908127598,999286618,975995069,990314612,999968627,999999046,808052337,971405639,999955392,999981533,929165814,990453043,979106950,999976597,999999896,992608596,999953209,114955673,999999436,999972862,933899647,730206451,963661102,998467723,999997748,997935408,1000000000,999999901,999031755,999999867,999999750,999992789,999999962,999995770,999999978,999999994,977298159,999999995,999994473,998473159,579707305,998444308,583895164,999994031,999999996,999999886,999997807,999999996,999894777,994824743,999470907,987230940,998750037,999997753,999994891,999999960,999999999,999660501,999999949,1000000000,728739012,971304070,999939113,999999963,999708626,992988270,871813045,654477547,923148656,999999900,999999969,998724394,1000000000,999366029,999894972,998281529,988162500,999999997,1000000000,1000000000,999632044,998513965,999999999,999998068,999997825,999999999,787278236,365652869,529062610,963583311,563090827,999789394,999890811,917112635,999999950,999999734,1000000000,777615341,999996289,999999961,986124331,997093431,923377486,999999767,999999989,992224359,999999989,999786930,772516997,384527108,999998574,998473519,825614322,719506436,999999810,999911968,999997721,999999419,586714941,999926114,999903143,999980085,1000000000,999999997,997685155,1000000000,999990989,999999955,999999693,1000000000,840395895,948966906,999998226,999999894,999934653,999999958,980873218,991786944,996233117,1000000000,982769550,999663982,983346256,999999278,999996559,999999973,888328994,989767056,999994774,999969065,94729281,999999975,1000000000,999987675,999988422,999999304,999994721,999999758,998822545,999999992,999999998,919550737,999997902,999999999,999395269,999999990,999997558,999853567,999999973,993003938,819623197,938709520,999999954,1000000000,987398137,999999998,1000000000,477924739,999999916,999999255,999208179,411377292,1000000000,913884281,999972736,999999804,999803412,999992918,995873830,999997131,999939862,999997974,999999994,999998352,999999998,999711856,113090283,997749940,996912525,956192944,987972022,999655247,999999953,999999998,999994905,828712912,999952378,880939132,999999876,999997521,960183763,999673150,999999818,1000000000,985680158,977717224,999999070,999233358,993821942,999994413,999781334,999999402,999968701,808349659,999999650,999999947,999999996,974127085,999982024,999267002,999930209,979387872,999999995,999999999,999999820,999986938,995148160,999999962,999739499,932366092,999576533,998144149,782280341,202824145,982379388,999999996,999999895,999997915,999998382,993552237,999111321,982258855,999999988,999999865,999999976,999999992,999999997,999959216,999999981,999993659,400599271,999999800,999999975,930984148,999986858,898248306,999941134,787239433,999999994,999994195,987548264,999998517,999999631,999999259,998122851,813570203,999982958,73002674,999999943,990164590,999999955,999999997,999410165,999995338,898419576,999997052,999998522,999999951,904798910,996043016,999992549,219866578,1000000000,999847238,999999896,999999836,999999257,999840842,999999891,999996800,999981258,999999908,931332865,599297006,878426820,905652551,999677022,618487930,999999790,999999881,999999998,999974447,572996207,989118522,999987194,92579024,999999949,999999959,999999825,999450400,999999364,999991548,988931247,999955789,999999820,999821147,999999989,999998257,1000000000,999966043,999999874,1000000000,475597911,1000000000,999736814,999999138,335219169,999850094,829247596,999999923,924472290,999999839,999998596,958397157,999999990,999999541,890809875,999999898,848274760,999999968,999999974,864308969,999999784,827753538,893095637,977486278,999984906,999998855,999999195,986155404,999999966,999938232,999999996,999958845,999998893,929138025,998918199,999998901,999111559,993445179,999963539,997086994,999999907,707085187,999999914,999708785,727427031,999999254,999896612,995481372,999999995,998595024,999997762,999789856,723477586,766645780,999999998,998216100,999999703,998380024,999999997,999423796,995852252,999986478,999999759,1000000000,999999998,998788161,999999968,999964237,999999947,992677578,999596451,999999601,999999449,977796327,999999982,999999996,999999978,999799079,846937566,994038535,999995579,999958316,999991882,995260730,999978619,999995241,999980157,999999870,999999994,999881110,999999963,999219486,999998664,999998135,976642459,999993892,866161317,999136870,935815574,999999997,999999964,999846319,976642250,999984526,999991893,999999947,999999674,999993832,905756130,999994060,999620299,999999998,999728015,999974563,999997898,999995079,999856347,999999886,688660785,999999991,67080843,999997950,999995022,999997298,999994743,999866267,999999508,1000000000,999999739,999999597,999999910,999999998,999345277,999205683,958562255,994915997,1000000000,999927742,998417933,999955065,999999812,999997306,999888483,991726434,818285112,998898350,998682139,999998569,758063114,938461259,999999662,999999841,904094380,999999997,999989265,987903758,999996169,982003036,772303695,999945293,983580522,999996176,999999916,208229565,999788968,820122508,999999992,999923878,996661252,999999706,657589445,999999999,897690138,832990060,984490833,999984260,899906816,999853138,999999699,999999980,992635291,999734388,886381629,999695940,995166813,999999693,999999993,999999689,989913580,999981257,999941535,296926071,782327663,429427626,999999788,999990789,999999998,999231396,999266402,999970218,999999990,999996931,999795756,999974167,919419073,998574353,990505550,993528990,999999993,999999801,999998189,999969783,999999996,999999901,167381259,988225096,999999069,323607179,947544201,965113277,999999945,342068841,999999999,999999628,999999460,999999939,999538121,999999436,711431545,999828187,986226038,850915519,999999948,999999943,999999968,999999275,996868862,994457914,998557875,999998750,999989802,999991311,895944092,999999994,999981985,998631635,999973428,993861202,999999804,986257292,999937724,1000000000,999958015,998606731,999999434,999997721,999999988,999885181,999932344,768452935,999999483,940324269,999969695,1135380,999999972,917965428,999999716,999990110,112779397,999999932,999930591,999999273,946414001,999998866,997755233,1000000000,999999998,999999842,999992273,999930026,999999881,999993827,999999910,999982922,999955812,895174810,999999332,976142076,999995681,999950581,999999995,681790770,999995932,999999954,999996865,999998748,999992654,999960084,999999897,999999960,999818179,999948701,999999969,999958300,989921416,999839129,999998457,999585542,999999974,998926974,999319121,999165471,999999953,999909593,999727836,999993252,999989891,999998157,968898002,655031369,886834160,999999451,999510200,994166444,999999997,999999984,999991206,993059836,999999999,999999998,999999996,999993506,999999989,566253313,999999818,997675328,999999997,685197101,866994659,980633706,990423793,997263758,999573607,999998092,998296175,999993803,994950762,259192368,999999824,999996262,999993491,999996696,999999918,999999999,999999844,758711930,999696003,999905569,999996117,999999970,999890548,999999991,999991541,748053374,999993294,999888465,999999822,999999771,999909411,999995746,999977694,999982516,975442989,999999139,982665345,999992141,995511825,999999480,999105969,999999721,999999801,999952714,999999842,996399411,999999996,999999999,917906275,98541618,999862732,952159082,999999598,999999837,999922407,999992262,995046695,999999762,999997277,693753036,999999953,999999999,999999881,971282696,999999127,999999980,999999620,847882943,997748774,999999837,835269700,999991122,999999984,999973104,999954403,999994826,712801281,984800597,999999935,978438787,999982286,999999264,402565046,999999989,999952486,999995109,996156230,982225390,999999784,999364006,999921868,999962057,992515240,999998573,999986517,999999997,999999379,736278740,999999832,999999920,879264336,163231923,999986880,969813472,999989565,999999999,900242395,999999974,999999953,999961013,602813554,403621284,999386934,999996141,999999999,999997245,999999493,999999982,999996715,999999837,999999989,999999765,928350555,994128078,999913927,999999827,998360957,999987448,984466397,709230166,858056628,998961143,874467596,853786010,710459164,989995588,997638581,999999768,999960214,802982902,999999992,999948530,988059383,985210336,983478644,999997141,999999996,999996340,999991917,999990481,998773950,997283601,983454969,169170382,999995060,999999990,707815175,999999974,999323799,999999256,999932797,999844254,988614319,999999941,999954516,999999998,999999768,997945309,999998992,999995152,999770088,999975436,1000000000,999999997,1000000000,999986319,999979308,999999881,999994517,999999959,363734739,998277368,999996134,999999999,999987607,999999382,999987347,999999382,714474365,999999994,999999976,847012003,999993396,999987484,999999995,942279777,1000000000,745251463,999709547,999997864,999876731,948820942,829586683,999716741,999791382,704448753,999999238,999999517,995753820,988245989,999999276,687670925,999999702,999990071,999997804,929308848,999999871,747212676,571184780,999997044,767639276,672915899,999991072,998748444,999998404,999999889,999999902,999999999,999999931,999409076,999405958,998809336,996093240,999741578,999992206,999232742,957959980,999999238,999999687,999941280,999275243,923492417,999999999,999999787,981027011,493357620,999999995,999999967,762840437,999999599,553842030,942116972,999552446,999985227,999984913,999999851,999999977,999911817,999999802,999550751,999999989,931341071,999999075,999365383,705863731,999999721,999967048,999999890,999734325,908989308,999999950,999082541,999662270,994528439,1000000000,999999704,999997835,999999997,999984162,999999997,1000000000,999999981,997448458,999998633,983643459,997964748,947352743,999556762,666921272,994328083,1000000000,999999672,997639074,999994609,999988559,999986138,999999980,1000000000,430184537,999999379,999994451,999999998,787673260,999999738,504278848,999999989,999999994,999795395,999997004,999999534,1000000000,999999918,998074525,993707537,999999286,999999968,999999979,985433209,999908018,926975896,999986509,990709598,999999985,983123640,999998332,999871610,999999805,928443580,999994897,999990322,266762324,968971594,999999998,999999384,996084755,999999999,999593261,997700515,999999893,407646637,995742691,999999992,999999906,969820604,836969330,717864398,999999923,999999741,999999921,996766887,959158120,997412280,1000000000,999996742,999788358,999999823,999897308,811455095,921074584,999956350,877549076,999999999,999999219,999990338,999999983,999995745,976920768,999984533,449560171,999997237,999999783,999997730,999995712,999987950,953262203,999999849,863328438,993413778,999999917,999191330,996994516,999999987,999990574,599253271,999964166,999998789,999996674,985024947,965995601,999127655,999668784,999999607,999999881,641835933,996535127,993051948,999999351,993367790,999999998,999999972,903119395,999642523,999999976,998111358,688713651,986193888,999925694,828233169,999995259,999863265,999348622,904065001,999999564,595130666,997240306,993946122,1000000000,842283599,972352682,999859478,999559947,999604219,999935432,999996517,999996627,999954413,999999997,999999860,999999997,999907190,998713576,999994368,997126653,999983008,999985249,999994105,309226599,999999505,999999043,999974954,999736805,879180749,999999996,999983539,999682994,999999996,986412667,999910068,999997053,998334074,999999872,999998757,999991398,999999692,898128864,999991097,737672423,960297504,551039438,990624088,999999964,999248217,999962036,999996629,1000000000,999999999,999998100,968424627,992870263,999427395,952775291,999339500,999304804,999999983,462096006,999983960,999999020,999492811,998140377,999898599,979148757,992418412,999986554,999999941,999998958,999999932,999096960,410039216,999999577,999664410,999943726,999999997,981426233,999999987,999775515,999999997,999999998,999999917,999993770,999999997,999783720,999979770,999999999,975642906,999236746,999651952,999756652,669371165,489729602,999972335,587369972,999999927,1000000000,999594455,999999990,996262709,997545334,969300404,999183651,999998795,999667008,999999955,664913087,999999957,964285159,999992987,999796695,999979030,999999986,999999987,957231963,998755291,999244242,999999274,999999995,1000000000,994370447,970818149,991583468,999999782,999907819,1000000000,999999029,999457542,67073229,999957150,991807567,626933219,992125476,999993929,972589189,999856071,999999997,999999638,1000000000,999999991,999999992,987916610,995066756,999978856,236599904,993664955,740899443,999716922,986566762,999999994,190111428,997883885,999999996,999999982,999999850,999999988,999999723,999999996,999999988,625932438,999999740,999993620,999966777,999997270,999999963,917581097,999999945,999998148,999648863,999875461,986290147,999999995,999999931,999967352,999976424,999955111,1000000000,999999919,1000000000,887799333,1000000000,999999977,999974267,999983354,999997287,999701160,999999624,653656698,861986987,999999026,999936445,943958448,443853801,436713748,999999970,1000000000,999888098,994013952,998989209,999238754,999907020,999986683,999999998,679859974,999999996,888744714,982003297,808689977,1000000000,280551536,862545503,681540370,999998925,999997261,999999881,999999998,999999979,999999984,999998928,993851803,999837602,657003272,999999996,999902900,999999996,979646721,894218545,999821686,999999051,999999990,848761660,679482342,997112273,999999964,987250172,127791396,999999763,999992210,999999906,1000000000,990220602,999999017,999615561,999999996,999999863,999999881,958708030,999999997,973826531,999999973,999999964,999855833,999997672,999335491,999999916,661266143,999998182,998148395,929847277,999890500,999999951,999993610,995858480,1000000000,999996832,999999908,999999723,999999996,1000000000,995860352,998220311,999999981,995582196,992756677,954614983,999999999,997700521,536425619,999976589,999352149,999698384,954412076,999995238,999999947,713182311,999983817,999968327,999999529,999999996,998719286,999998468,999994789,881656288,998785098,999994525,999776702,997265242,999979169,999999985,980533061,999997685,999999975,910148499,999999997,982199162,999993471,951625781,999999999,999999929,999999545,999844063,986695771,974462823,983251750,999809460,999995923,999999996,999999994,999924352,989438993,999999986,724530996,999999123,803422543,999986787,999999999,999999458,999999973,864193226,999301546,999999630,995427786,999999581,999629772,999999971,999999892,991902739,739670755,999987509,999920327,998194832,999999999,186670531,999997258,797328301,998831083,962699553,570898873,995988997,999999980,871367141,999941226,999999983,999999980,999591650,999999948,999643476,997521109,975293651,996611326,999997742,999999954,992831540,999998484,999999276,999965029,999642968,999958887,999999996,998964679,999993171,999728975,646986943,999983343,999647128,999994603,940552264,1000000000,814235489,999999594,999999966,978736095,999999998,999906979,999999963,999999959,996167879,999999333,999999972,999996652,943391544,999999151,999999999,999923778,998953667,996756299,999999993,999976780,999924803,999999978,999999991,999998599,998293482,999127155,999999987,983520459,999999997,999999990,346952013,999999999,763439289,999999945,999342867,847969742,706052304,963561434,999999845,999999915,782725544,894252822,999999850,975005132,1000000000,999999953,1000000000,999999979,999999760,999952314,999999910,999999937,999999987,999891652,999203632,999999996,894231084,999909289,999999999,999999996,999990921,999999999,996947515,999999933,999589787,984219601,999999974,999259888,999773444,995621142,952817808,999537525,980821277,1000000000,999999975,998828344,999999993,1000000000,997078988,999863277,999996780,999869691,999993473,993437021,999985327,862597913,46538141,333225318,999980980,999999409,488300199,999499620,999984548,969583325,999986701,999850229,999999492,999794868,999839782,999588631,812714202,999966950,939327169,999747029,983396737,708109503,964960534,309603568,999997501,342144561,999999278,999999902,997865536,995497694,999999826,999603102,999999706,999999789,999932477,979394366,681264986,999999525,994322427,1000000000,999767904,999918550,999999972,999999999,982901697,999890529,997660667,672336807,999999269,872013218,999698248,994232954,999810262,999999657,393856001,999999991,999999997,999679282,999998989,999201718,999945508,999876878,1000000000,999939491,999987393,999999781,999999998,784921925,999975663,999941302,999620484,999994386,999942665,999999998,999999820,997143975,999935964,999972113,999997908,999999955,983521976,999999831,999998658,999306008,999984948,999973042,999717425,998344418,999445626,999993877,999979691,999215325,999759384,999974307,185247196,999299078,999945966,999999993,608140793,999786708,955549332,999989905,999999572,999895156,999998748,999925663,1000000000,999812160,999903877,994103291,998008382,999585040,998551743,999994158,999999995,999999986,998139577,998596267,999952056,999999981,478252356,999552442,999999997,999999979,999998812,999977914,999985893,1000000000,999999271,987119214,999999917,999999630,999989750,997808158,999999976,999999999,999999879,999889735,999999886,999999811,996028395,972482907,985626826,986192723,999999954,999999879,999997769,999949471,999982752,999031102,999554884,997476257,999999945,999998870,999999996,999997183,999999774,999999328,193440034,999999981,999999988,950572538,999988417,999999546,812520127,999999949,999999457,999999853,1000000000,999754297,999999071,999981110,930565629,518753337,999999996,999999953,916380422,999950333,959453996,965933663,999999938,999999999,999986064,999953494,165394374,999984700,1000000000,999929406,999999729,999999991,39731211,999355897,999983012,999999996,971403223,999997643,411423865,999054915,1000000000,999909309,829324450,999999968,999797356,998959724,999999982,884035443,999999505,573026727,1000000000,994473879,999998106,999691340,999999479,999995938,999999999,999999832,999999952,880400428,999992037,999942296,999157926,212474574,992122626,999997704,955394090,999995376,999743654,999999913,999631343,992547880,999999533,999999437,981137238,994250535,417604093,999953048,998474625,999999999,1000000000,999999999,957664995,999826861,946627095,999998374,651004873,999999999,999990256,999257227,999793304,999920908,999999997,999995346,999709288,1000000000,999999999,999996354,999717044,982224484,999997511,999903350,999975975,999700995,999998148,999999693,999995513,999999998,990494104,999999990,999999979,999999245,44125641,784285565,1000000000,999797488,415975185,709353875,999999992,1000000000,748354017,999754929,1000000000,999962532,999999998,943605398,997917819,713579002,999999642,957503426,992846293,999999425,998463530,999897993,999999992,999998093,999333210,999999921,999994767,278235930,999934377,999998653,999999715,999999962,999999997,999999994,999074022,992210424,939836709,465727642,999999987,999996624,963244223,993514374,999999998,998080324,699768409,999999789,993594797,999776548,996027278,999999828,1000000000,999781577,999406236,931974626,999999972,999999803,999999955,991307640,931463288,999987255,548435070,999999320,999781519,999999997,999978731,999999989,999999687,999682848,999090778,982547927,999768073,999999954,999969140,995473756,999999984,999999824,999900456,999999775,743564440,999999323,922814243,999999013,988139327,999999852,999999997,999940310,905635544,952406366,999831471,999999947,999999407,999835786,999999983,999999999,983817540,972384630,993254601,212758132,999814367,999991418,999994298,999930493,322919097,999999843,114966366,968924776,999949472,1000000000,999878789,999991620,999960668,999999997,999999999,985162993,999999728,997922493,999999840,999999984,999884720,965466964,999999936,999983100,999957397,1000000000,996606003,999999999,999999730,898949153,996849591,999999965,999999692,999998718,999996137,999999624,918578930,999999281,999999994,999889695,958515418,999999993,999582741,866582969,999974628,999629079,999999152,999026529,999995467,999994253,1000000000,999999965,988815997,999999982,999999860,999930408,999598601,998495881,999999980,1000000000,884862064,910622836,863770840,998462689,999978123,999995289,999960554,999999986,999999993,982195460,999999999,999997590,999999027,999932115,978932887,1000000000,999817350,999892329,999895325,675616918,999999491,992209998,999997640,999582707,999999990,999785989,407376212,999930872,994886215,995422550,657754202,999998794,553851598,1000000000,995494449,999999957,998215546,999750678,999510594,999992082,998956037,993155365,331527479,999201052,999999819,999999401,995955688,999999479,999998643,999999995,185313640,1000000000,1000000000,999499837,999998775,999999972,961344283,999999970,1000000000,868545602,999999997,999999497,983265553,999754183,934742063,999999989,999772942,635126651}

    Returns: 50763507836

  79. 100

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

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

    {998327893,995736842,999435020,991936395,408383668,969779937,999998242,923351656,991769890,999999720,975812155,895168514,999999991,999999996,679931758,996231400,778124454,999999998,921022548,999999999,999999854,999174510,998450140,406572767,999999989,999998701,999999741,999673814,999978153,999999999,999999971,999927508,960462596,999919183,999999949,999999958,788951807,999999994,999652166,982979981,999998853,999999998,999964541,999995802,999984115,999999997,999999986,999999996,994549129,993585610,998535521,999780006,1000000000,999999995,999003023,994896077,947684996,1000000000,998080006,609854975,999999998,999999680,1000000000,999799015,998224579,1000000000,204102846,999998795,947848168,999874162,999802661,999990518,999999084,927952966,999999992,142975613,997986471,806773991,999997902,999231058,565420027,999999998,996738161,994235320,999999999,999998925,999999983,999980560,999999529,999940795,999999425,999999349,981430484,936692682,999999999,987268677,830154221,999263544,999999999,999993690,998779388,999892943,999999986,999991399,999999999,332060864,999999997,989552865,229969518,881490201,999999216,999792236,999982102,999976109,999998992,952782634,981351088,992470851,995645258,999528272,999999942,999934510,999999994,999999575,973631075,999999970,999765556,988260828,968329623,999873645,999999984,993733793,170613412,999999997,999999993,999991564,999823215,999999640,999961724,999979492,999877101,999999946,999999981,998394860,972590204,999992621,999999992,999999896,999999987,996600933,999994645,999994962,646126867,1000000000,999935758,991211921,906055540,999988757,999850121,999985622,999958689,999999996,999999986,999908572,999481275,999880811,999999954,999999732,997785585,999993763,999999993,965836800,872019754,999999999,999988692,999989196,999999541,999664035,999999998,999536260,956857408,999999998,999999727,999999991,999987464,999983808,999999872,999298995,889480499,1000000000,999975910,999997528,999909302,999999964,985752225,999889528,1000000000,781406579,999999435,999996599,999999951,219125725,999996966,999986945,999999984,999945866,999997536,866595010,999966316,999322082,171584089,848138653,999982157,997902487,999991282,980143293,999680507,999989232,999943059,999999983,593224899,1000000000,999778552,750051026,999564623,302999695,1000000000,999997601,999987482,999982700,999999218,19671849,999984609,999818702,999999878,999810588,999988043,999999586,999769252,381678071,974891555,999963142,983507201,999824087,998101395,999222493,999999863,995608068,999996933,999999999,993988981,999999470,999099997,999999900,999999946,990860327,999999047,999931551,999999994,1000000000,999996646,997798835,999999778,999999998,999930099,999999995,999999270,999996572,999999926,999990154,952330187,999755872,999999990,1000000000,999783099,447418831,999999987,1000000000,999986528,713816272,999983237,999999994,999999997,996914013,992328008,999999998,999857257,999999732,999426080,999985929,999998621,999990156,999999099,691927208,999999998,999938264,544021921,878335979,650260787,999926551,969849921,416886678,999998034,999749895,999940126,721315646,999967429,989263628,999999975,993423813,799304084,930548646,998556730,999890686,995486093,999949053,724557770,999964868,998912680,999930316,999999828,999996043,864360477,982885389,982439001,999997962,999544114,999885500,999999987,782889418,993069963,999976066,999999233,812571724,867384516,999496559,999999973,999864792,999988964,999999998,999755829,1000000000,999999540,999992446,954850029,999593248,999999976,935162536,999951018,999999981,999999992,999235756,965899523,999987717,999980305,999999999,998670110,999990012,999066122,994049948,999973668,999992603,999997966,998524603,969071267,999979192,999933392,78655656,998937938,998594229,987104742,999999980,723311461,956604114,999999178,307112879,999832500,971131350,999596065,997384399,994958183,999999542,999999157,999999006,861912544,999999999,999999996,999999995,357692570,999995979,999991472,859353433,999777515,999998119,999999949,999999907,999332843,999714427,999999998,999902406,999894430,999692988,823560355,999999990,990404705,999997438,999990686,999976678,999995040,999999999,997509818,975732385,999999544,620796945,999955325,999181669,997518621,923982273,999957062,982947515,999991658,999828147,998793115,999999998,999274129,999986343,985112074,999854897,860127712,999999963,999999894,970840255,999979691,970058763,999995341,964373880,999438962,565784384,999995780,999993651,999949098,999994282,999998555,999914896,999998563,999999994,993366122,999496432,999084780,999999244,997537206,999999998,993382613,952701922,999999992,965349270,999999981,924908287,998365539,999603060,999999843,999722086,999999978,999996460,999928399,999999852,999999980,999999878,999999315,999999993,974560417,994587988,999981821,999999978,999937327,999633168,997065238,999236138,999994705,999995125,991690747,999999630,944314907,984617954,999915011,999998181,999999961,999826647,999336171,999999812,999652941,999999935,999999915,999985905,999999999,999999815,999413091,999919023,999997954,995776184,999999987,999963776,999998250,917794038,414808414,999999797,951048497,807314380,803351505,999853212,999999928,999999770,999880379,999997640,999984088,999999534,999999957,999999892,999999997,998583368,796822008,997980668,999999453,999430233,999999940,751502841,998932618,999999998,999857484,999940005,999999996,995285606,987210004,999999962,1000000000,999964293,906876403,999984440,999999487,999999964,999999982,999999999,978378616,999999800,972946391,995746318,999183612,999898922,725190530,999999569,814876023,999313315,999946721,999895758,999996709,999997666,999999999,260790155,768211410,998835822,995863196,999997906,999999854,999999999,999998176,846149561,408239726,999999944,999364751,999999964,665918744,999999984,999999999,999707349,999999992,999999999,999908058,999999999,999997947,999271834,998518688,999954318,999959300,999999997,999999771,999996887,1000000000,999999839,999999954,778130004,819274052,998724515,999855612,997557296,999987517,999999560,999999632,999999736,999969503,928590047,999733015,986069587,597389664,999999995,999999990,919559540,986615913,999971840,999999997,999999927,544176139,998785651,901015282,999974616,1000000000,998761209,999999402,836780402,999995926,998008855,998920847,999959352,999997679,999996832,212872120,944290195,936949349,992044506,999027070,999982795,999999971,999999773,999992965,981606822,996975257,991290233,993165121,924908680,991174037,999938982,913769835,999999078,654799961,999958455,999999881,999142115,999979286,999996905,998732420,998030449,999999999,999999980,911859515,999999715,999999500,910202835,999917751,999996806,998257805,999998912,999669324,998411363,999144970,999993792,999999732,817984700,999713878,999998816,997128427,999999713,999955028,999995972,999999999,226163176,999696072,999999269,999980016,999999910,999131328,999999460,663398879,999999994,999999653,459042872,999999987,998710087,999999999,999999986,363907644,999999284,999999694,842208606,999999997,999994727,999999246,999667821,999999934,935803699,999999998,999999767,999992687,572264990,999999948,999999988,994134853,999967679,999989253,503072566,998808965,999999947,739724564,999898049,999841458,999999756,951426153,999999519,999999865,998400914,999998399,999999972,931254549,999982294,999999909,530501112,950481022,1000000000,988478848,999193617,999998462,999862193,999998447,996714657,999968716,999999996,999996872,995481650,999666227,892209429,999997969,1000000000,999999924,999935410,907624383,999999996,979931907,999999996,998851259,602615984,805500795,994014421,999999974,999999985,999736333,999999140,999503350,999982224,750358028,999999935,949788047,999999997,852131872,999999735,926290476,562856944,999992159,999951556,999997711,999986198,942738630,999998916,968433142,999997830,909797766,999998152,999997460,999999611,999999984,393753651,999866019,999933250,999999829,999996295,999999904,1000000000,999999131,996319168,999999998,999993922,999604481,999999998,299985305,999999980,999763431,395310297,999998911,999999977,736646312,999999992,996383900,999999998,832082303,999999903,999999999,999999840,957693779,57486393,999999996,459911324,385367265,999757562,998898950,999999933,999998781,999996653,999988959,999296801,999934185,999750520,773092009,835746877,999999969,999999971,999999629,997926448,999831223,999999966,999999979,999972015,999908097,966517177,999964559,999999998,999999655,997063612,890480933,999999479,999979603,916510503,999997787,419880386,976354890,999999996,999774705,999999997,999806256,999999585,999998109,999990029,732975509,999999996,991637377,999999263,999999959,993546142,999973105,860695062,989691182,991204450,948581029,999999960,577229148,999965901,653298325,998772886,999999892,994372894,995253526,999515736,999999996,978410307,999964087,868666507,999999897,989956742,994959163,999964167,993011451,999981932,1000000000,999998976,999274494,994996153,999424019,999998126,999999894,992387253,968688620,999777251,995664892,968421199,999997818,999998035,655599186,999999994,999514842,999997079,999999995,999938783,991198459,999998592,999999757,999999987,999717230,999778866,991738245,999999974,999945829,999999986,999987992,999999559,999999992,999993658,999346564,999999988,999917365,997880885,999999995,999999186,989056589,999999374,999999806,999999993,999473038,998926976,998634061,999999993,961575281,999573428,999999997,990728625,999999981,999999944,907456848,993152307,999970801,999548408,999982936,999998461,999999705,999999988,999999995,999947032,999788935,999999359,95780225,999741032,438066703,999999981,999999690,938450345,962132273,999927440,999976562,999974674,998255674,999999859,998549661,575731473,999999998,999999995,999801680,999999844,999973069,999999903,987722922,999999958,999953536,999997441,999982787,991462382,999997993,999999794,999685315,999998583,998961666,921099916,999458885,999999023,999999940,1000000000,984986566,999999423,999999969,999989856,999999955,999999899,999036552,999979388,999999593,999999968,999999942,999822614,999999078,999980059,999999983,999977341,999999997,999999973,653504226,999999997,676628587,997394198,468218801,922870882,997080660,999328845,999931810,999749924,999491054,999997449,999966160,999991885,893498441,156867653,999999957,999995261,999692553,999906970,999957442,999999994,999972194,999998570,999014957,999999969,999999678,982543078,999997721,999998525,999999443,999999999,999999988,999946298,774905755,999999956,994631157,999999971,997093211,999974851,999658791,997498288,998793995,968297201,999998810,999887305,999494468,999999786,999995145,988460024,999999351,999832062,835264298,999999767,999497644,999999476,999990517,990854055,999631087,999999938,999999981,999995471,999977005,999899558,999992663,1000000000,999949949,999996082,955532724,999999710,999989266,732418366,999999986,996927627,999631063,999999998,999999600,999999875,999999935,999996607,992468759,999999999,999998431,998183176,999997618,999999998,999999553,995032098,977018545,999988756,999999734,999998047,978072071,999999902,484848855,999995096,999999612,999993821,1000000000,999997518,999999997,175843333,999993157,285144669,999999628,999622182,999973567,783667111,992225470,988388394,999999998,999999927,999999982,999999994,999998088,999999954,908234624,999999961,999836260,999999138,980713471,999994357,999999947,999306576,999999972,999999977,999999097,999999911,785171772,998598492,999999991,999999356,999999802,999986957,999999993,999964635,999969210,999999931,184856651,999204728,999892036,999467127,999955469,987636481,999996327,981726192,999999917,999999991,526958614,932043352,999999531,999999790,999980991,999999145,999999997,999987612,999094616,999998689,991691435,999996457,999997817,999856342,999995809,999999978,991214870,999362343,999983498,933800794,999999996,539962911,965400810,498268334,790687967,947443900,999812868,1000000000,999993625,999999990,999999981,998875054,999999997,906671233,955984611,704564874,999999879,999866246,837690152,182420326,999988639,1000000000,999999998,1000000000,974161821,999987558,999708970,999560811,999858180,999984606,1000000000,999854965,999983366,999999996,999985087,999971020,999757319,1000000000,999184952,969196631,999999632,999999990,999980500,999999902,1000000000,999682689,999897195,999999958,999980032,999999987,999911145,999385510,994110490,999999728,999970980,999824832,999999727,999974573,999947850,994743865,999999414,999992942,999999975,999745778,672384877,999986635,999999923,999999800,996615423,988555785,999967441,950248423,999954510,999999738,999999955,985343251,999999967,999999999,999969477,448838519,363540992,331685292,982061093,999889031,999890791,999999906,935611658,999998541,999926080,993255055,997621312,999550509,999999265,999999638,999941592,999301159,999999231,999963988,999996861,999801098,571786942,999735169,999972671,999870813,995713706,879893244,999999995,999993841,999999147,940850281,999999790,999999224,999973440,730416644,999999784,999999888,999992368,999974031,902122018,999974557,999999252,997056863,999992199,999999537,927415187,999991314,999999970,975462449,943118954,999999698,999999855,1000000000,993611781,999999987,999999892,999840130,999980246,985045643,999999998,999996722,999997312,999992704,1000000000,930242115,999999973,1000000000,759137935,999557238,999993036,998730456,988103940,999999533,999116013,999998287,999999258,999999798,999999988,701487359,936110583,999999940,998697681,776094418,999999997,866175824,999978817,999999912,999992652,773117958,962806895,916934935,921962959,983465793,999999930,1000000000,876269118,999999492,999999938,999999286,999999522,999520071,999203858,999617795,977594129,999443859,999933566,999999987,999999982,996170923,1000000000,999999991,999999983,996533302,999875181,998888263,999999684,999877854,997711676,999998613,999945625,153904526,984912960,725181107,999719494,999906963,999999998,997047634,992409060,993129579,999999998,999425958,999999440,999993059,190549719,999994971,378343854,999990118,999999824,992639270,936552847,999999448,1000000000,862574839,999933734,999999996,999999208,992241569,999999999,999495319,999999987,976387066,999999977,999938635,999998138,999999994,999999940,999998960,999999999,998238275,430975983,999999935,629346542,999999994,999945714,999093721,999999356,999999991,999899815,1000000000,999641542,999991413,999999287,999999993,999999973,999979569,999999995,960418646,872718522,982799276,999727644,999999991,999999550,999999628,999858301,999999998,999218217,999999997,999999996,999985761,999997258,999996938,999897971,999999714,1000000000,999999995,999999246,644546291,999999901,666104977,997566964,737859848,982715361,999999854,999999467,999994961,999999992,999981519,980782663,899255246,999999971,1000000000,999999995,999999728,999994558,999912567,999705883,999999959,1000000000,999999867,857661808,863307538,999999996,999871432,993921611,999972498,996203879,999999780,999923629,962208066,1000000000,1000000000,999996928,999999837,999999999,988006730,987852624,999999787,999999809,999999859,999999980,1000000000,991905309,999126488,999999958,992312180,999999970,991133642,999997685,999983547,918399646,998926430,999999994,331680128,999999700,999978156,999999767,998576432,999979450,999991576,999935342,1000000000,424217230,999999883,976596687,988841900,1000000000,999824748,979410247,999999953,999999997,999859864,999999819,999929903,999984921,983829124,999970130,999945718,999991202,998494503,999999979,999999910,136098079,999999807,999972361,999998484,982696845,994292336,999999970,999999985,999319563,999940913,999991758,999922925,999999999,999998875,999914566,999254011,998812709,999920327,901459531,999996182,886318809,966046195,542675366,998883610,999999971,997999015,999999997,999905987,1000000000,999999775,999999998,999683445,999999972,835665776,999179945,999999987,724490340,981325170,999998178,999969233,438943445,999999290,999669530,999100767,999806315,933039421,176690650,999996709,880330826,999999690,999901003,999565168,999054964,999999745,999997562,1000000000,999807328,998309134,1000000000,999999478,992318348,999999558,728273212,999999928,999845282,999999807,999987942,999999968,999979995,999834075,999999993,990638078,999999200,999999997,999999928,999890810,999995896,998020792,999999358,999999999,999998632,999941297,982860821,997745430,999962934,999880147,999997966,999999931,999999810,1000000000,999999657,999892792,852782823,999995924,923634237,999303221,999994481,999999340,999999992,999999896,971730016,997787676,999998491,999752828,999999963,968208441,999992552,999994747,991133790,976481282,999999915,905510913,999999727,999999967,999940333,999985439,987221039,991779033,999902247,951570633,1000000000,998789150,999999914,999997880,999999704,999997827,999999999,731532546,998979624,995497458,999999804,997745744,999999993,994680348,999993671,999994923,999979938,999999999,802245311,971607604,999998307,999951375,980598201,317908730,999984205,999978256,706171476,999999194,993228156,999999980,999999364,999999634,999992108,996308470,999905127,999823925,999833538,887019672,999872625,999999310,948077569,998293098,999999685,999999951,895280233,999999408,999999585,999988036,998640286,999999042,996747732,999998956,999811021,971178290,999999801,921136088,923536378,999983940,584023305,998965976,999611532,999801063,999990905,999822741,997849148,999823360,999999995,999999981,999562593,999750574,999999952,999999901,999999638,999898350,999248834,999999998,944070643,999999780,999849547,999987479,999999984,999976001,989266756,1000000000,999999993,999298144,998474554,915224782,999999744,999762699,999999992,999999230,999954349,999999016,999999678,919365728,999973114,999999979,999999979,991626470,996917710,978621865,984819101,999894377,999999974,996237452,999999987,647493044,999999953,999999790,999999833,999992409,999986561,999796324,999409388,975432171,999976099,999501759,463752586,997907233,999999979,999999783,999999368,999998135,999973331,998882630,999917989,999990372,999999991,999695049,998889200,967291353,998342702,999999905,999998167,232713967,493852308,999984460,999999999,999839718,999906595,999998933,976024087,969991825,817153812,954842604,999839159,892779192,999984637,999905681,972185905,999999829,999990535,954296837,999971653,943447689,999992521,982659922,999982503,999999555,50468014,999999760,999999978,999995323,937152221,686554033,999799559,999999995,999999782,915776959,999999880,999999872,205077997,999995034,999962667,999999673,999997761,996563839,998406799,859149473,999999965,999999968,999991930,982668714,934605732,994823917,881253754,999999901,999999603,999999384,927182320,999999993,999999992,999939244,1000000000,968741608,869429756,999711852,999839050,999999852,999990634,992434822,999271124,999999998,670260294,998439688,999999990,999996724,999999992,999232227,999891523,999577824,999999992,999594223,999790300,999999995,999999985,999999819,999999974,999999934,998803222,867979968,617734765,998700204,140288629,999984245,999949191,999528184,999999922,987275324,999994280,999999999,999659670,999996265,999999390,999999318,996467980,999998407,960243405,999998080,639812201,999988398,507073811,1000000000,999918388,999992553,999998893,998596648,265615100,892033200,999973384,999988609,999293431,991361481,999999435,999999964,890267063,694716542,978510415,999999988,999784864,999999815,999980329,999062161,563950902,970779721,999972371,923797182,999945642,999999991,997911862,999805507,999146306,810145274,999990072,710738197,917437775,983389836,1000000000,923077638,999995833,592160260,999998086,999998928,716108923,999999537,999999983,999999366,999977055,999998343,999999977,999996748,999999883,999998648,1000000000,997180595,999999925,999994513,998370859,999435267,463987325,990536871,311224680,999999239,996792599,132138080,999935427,999212559,999273556,999757314,999997547,999104992,999999408,999999976,999988313,999974318,999966217,851341432,987201734,996720454,470736466,998543326,933064714,999834567,999999464,999998301,999999932,999987455,999999903,842398567,999999946,999999999,926606861,934986517,249079678,998490601,999999997,999999964,816296036,999968751,78022997,999978400,998610061,967297024,999999963,999306534,653470678,999999996,864458502,78614885,999987932,999427806,998841518,967201131,984162164,932410626,999999883,994591057,971160016,999996494,999999886,1000000000,994505497,999999958,498404954,999976122,979814272,999825023,999999807,999999999,999995686,999942480,999993568,384570103,999999982,999999062,999459198,999999502,999999952,999999980,999871166,999999999,999618105,999999367,998652241,999999253,999999998,1000000000,999999957,999999999,986403283,999991016,1000000000,992189364,999999548,999994567,999984514,982507559,999999985,999696858,999997511,938130679,999933950,999999891,999999898,999999892,999925561,999999962,895908376,999993200,999997040,996211085,998361133,988422823,965441466,999999757,999913717,956347273,1000000000,999999485,1000000000,999999999,996913661,999999957,999747361,975600577,998298319,998429223,999999658,999999886,999983642,692815956,999997386,999583436,999556311,998224397,999050119,947303203,1000000000,997845367,999999527,991608570,999997882,999998792,999992835,999999703,999962945,999644803,999999813,626564223,999969427,877995078,999999310,995599534,987355210,999996063,1000000000,999845222,999957959,999988988,733649641,980943579,999462703,999999121,999999367,999999988,999999994,999091482,962249505,999924475,999975641,999999951,999999996,999556432,999996862,998265145,999923027,999999999,999999992,999999989,999993195,808599628,1000000000,999969263,1000000000,998389994,990866516,999998840,650309910,999999971,936576645,999991394,745055606,955487655,999999867,999124449,999991972,999993572,999999964,999998084,991303335,999924544,990000418,740467393,999999882,968580620,995081416,999883808,538274939,968070214,999999741,999993104,999984397,999999978,928933248,999947133,999999997,997781117,999999858,999940943,999999144,999978895,999997362,1000000000,990371075,999999999,999999936,998304962,997392258,606664089,994542770,998588542,999327855,999999642,825420962,999817441,999932783,999999424,980917623,999993297,999764830,999999972,999999737,999145484,999998383,999998280,999656389,639208905,686101194,999376425,999999999,999999954,999881084,999989719,979372731,999998029,998930558,998801684,999999944,999974035,977982325,999999773,999999827,999999986,972775501,999999953,999997265,999646611,999998356,999999528,768078914,999996119,310780117,998952490,991116897,999996244,999999992,998675773,722537807,1000000000,995377074,999999992,995379620,999138628,964009667,999230138,999999846,999999999,999794103,999999916,999999923,999999955,992429172,999999996,999909235,999243801,124000364,999998443,999996246,817652313,993115832,999999999,999885958,999999163,762535764,999983468,999851841,722386732,167774287,995147270,999778265,999999971,453789228,998362979,999954971,999997065,999999997,999998541,966143719,998468653,699160347,999998899,812538119,997449477,297557086,999994853,998326541,996590879,999899702,999999990,999998629,999989872,970183337,999999978,999651809,999992225,998644114,1000000000,999991313,945243173,999999599,999479344,999999993,810904822,997440105,403109821,999972539,999987400,999980453,999999997,554862281,998029261,999319282,967030472,999999546,999665360,994188428,999995985,999999852,999999996,994910711,998367311,999997859,999999895,994597969,345451317,999207224,999997215,999999744,999999997,999999994,999999993,983391817,999997647,932930568,999999978,999997921,999934229,999221481,905082555,999956992,999886339,998863719,999249579,999998973,448800972,962559193,999999698,999999948,999999999,999991854,999999951,999998269,999999988,984687179,999999395,999992281,999998078,998826990,999975097,962685778,947169901,999999972,717829803,999978033,908814425,999968206,764316067,999057097,648092365,665079195,965690155,363172525,999558775,999981610,999828386,999999756,997020405,999970857,999777885,996234709,999981982,999999897,999954554,999992987,999999996,869549141,999999998,999943192,999994782,999983265,999853685,998713503,282113376,998986750,999674882,382396587,952036660,999747020,999064686,867057609,999991508,999972809,917271554,999999999,999979029,999962911,999999999,999999692,989203911,999999977,999988544,1000000000,981957829,999999989,998819652,999775361,571315480,999996822,658936148,999999861,999997398,999950566,999999980,999917398,999999352,999999240,999988168,996848199,999999762,999650723,999752364,995898850,996107393,999999479,999999181,999979709,999999973,986095278,925718473,485369196,998520617,999976361,999958709,999487193,999999166,523834021,999999965,967978689,999910576,884030910,999999119,999999997,999999991,999993489,1000000000,999996417,985379979}

    Returns: 45108094407

  80. 100

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

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

    {852969857,999877097,997979594,1000000000,999999984,973711087,999999458,993034011,999927752,650198012,943348559,999999979,999999603,999324212,999999943,999999986,959726158,999999992,999999989,999999989,999999991,514390066,371424699,999997399,992484462,999820192,994140168,999999999,999999999,999999997,999993402,984256836,999880994,997747586,999754839,977149675,998464845,999998881,999999997,997079611,989892417,999981409,981966738,999994143,999988316,999678989,976966569,999974712,999999996,994923242,996226402,999594732,999996867,999796584,999999527,999661025,999999927,999776932,994969354,999999874,999999998,224980993,996185590,729161835,999998267,999716087,464204805,999979980,999434024,999808540,999999073,994785051,999999470,999964971,999993644,999999871,747966928,988132153,399290061,999958814,999996343,999999937,999999781,999968959,999999700,999976206,999995071,999999927,948358770,991334073,999995689,999999628,998768089,999456147,998477639,586741175,999999960,987981998,999999961,999955193,999990238,995780143,999993403,976756839,999997811,987120689,999364933,596741366,999995310,999999990,999999855,999954466,998499326,999383378,923488078,977922789,999423209,999999996,999999999,994365714,999999929,987556407,999999999,999995638,999999995,999999761,697442407,960176650,998135884,968986057,999863838,931914073,610617628,894854857,999999760,682071994,996399082,999999913,999999823,999999995,999982249,553275997,999999948,995322085,997315662,999987782,990932733,854252222,999999906,999999985,999996194,994247380,999998586,999804202,998920931,999999988,21465864,999999991,999908431,999088581,941056832,992458183,999998712,999837610,999995339,962653525,999999998,991536956,999999666,999999982,947157865,800941280,797557741,999997988,999996951,999651458,324432765,966290708,999999912,983042756,999999918,999991245,995186256,999999992,999956870,999835072,999999999,999999998,999996824,997908625,999998331,999969359,999989454,999974246,988119464,341046646,59983616,999999731,997443761,999972194,999833129,999939041,999999999,797820082,901559951,999999959,999999998,1000000000,985031510,999999539,999999868,999999058,943914949,999999994,999996100,999676827,978002745,1000000000,989675375,999998859,999677354,999998855,999999595,999845435,937691522,999999992,999999999,1000000000,999998754,738109020,999998091,999999996,995169049,999992650,999999960,999871987,999999999,783498358,999934804,942377181,983027890,785567866,575554153,999999971,999997292,999999995,999734169,999999999,981032883,999997867,999165237,999999950,999999914,999999709,998458668,999999016,10350078,999999959,999995100,999996273,994678625,999941430,999997274,999984692,999999942,738249474,999953821,999568253,989175647,311332800,941121956,949873806,860852146,999781668,999999800,999214550,999999989,999999955,1000000000,999999998,999820060,999999994,981502440,992201794,999980203,998064742,999999999,841445345,999257717,1000000000,950871802,999576603,428906529,922063954,905016238,999950454,999988183,463385410,996435442,999749283,999999710,999999291,999999974,999999978,970226861,999647052,999956146,999985123,999998844,886052808,999999672,999698822,999978120,1000000000,999972873,986414863,999978266,1000000000,999999988,999966350,938059459,999999745,969615857,987275324,999765984,999999984,999999838,999999872,999937115,996755091,999991562,999998079,964907791,1000000000,985692879,1000000000,999999994,999999959,998154625,999999980,999990470,999998013,999999886,974344531,999989358,999999657,999999228,793046853,897918477,987484289,997991064,846837494,958992307,999952189,999977632,474998744,999999972,999999967,999035272,999999205,999999996,999996249,975387139,999999839,999999968,978186065,996751900,910502873,998154135,999910878,999577435,999997774,960221878,999999994,999999993,69116967,995584598,999999956,999966955,999787735,999999998,999996115,999999968,999459043,977973060,853491131,999998582,999999997,77957424,999549590,999999261,999989192,999997213,999999919,970406120,993238876,999988327,863450676,999985749,999999920,999993990,975257269,999997073,960010981,989099055,999999992,999999972,999999987,935558850,999589378,999475316,999431131,999999811,999961601,999999998,987782562,998017734,996964637,999937565,999999960,999999772,999999978,999996599,996497330,166845794,977368479,999999993,996217311,999797058,999986018,939177978,999994844,999999975,999999536,999999966,999999707,999600260,998853741,999999418,999994721,999999951,999927099,999370360,999999349,999999766,912470030,994408814,296023952,999999960,999999991,999999395,536104205,999999748,999999991,999997498,999999574,996676019,999999999,994472595,996887108,999999999,999999994,999957992,997599159,984413497,999970279,999999997,735308889,999998399,999722739,329517803,999999640,999999762,999999891,999999684,990890749,88458199,999874380,999969163,990577984,999985418,999096051,999998032,999732241,950894427,995117053,999999986,999676727,994956887,980325293,999999998,999999861,999370645,999980145,999440015,999999980,999998899,217817814,999999124,998909461,996829128,999949413,999999895,999961987,999980125,999999926,999999833,999994287,990689945,1000000000,999999821,999999972,999607587,999994648,999021613,999999970,972375226,516424530,999999999,999999930,999727416,999990119,999999982,999996568,999998516,998919459,820741668,999999939,999976339,999996892,999995546,1000000000,999999496,999999586,221508615,566522391,915659559,959256747,999983152,999997040,999999772,999996934,999999985,999999993,999958101,820345722,999691724,999999450,999997916,999999883,999862434,999856930,999664789,859555172,995520453,999999996,999999907,999999995,1000000000,1000000000,989210413,999999963,999981036,998066314,999997127,989307606,999908559,890880088,999531525,999999265,972748350,559393591,983607216,999998527,999999995,999999559,999998831,999999552,999999982,999999692,999994272,504765729,957423933,999910978,999999358,465477572,999091179,999999609,999997160,999996179,838210013,999645345,999971999,994588672,973217279,1000000000,894586846,999978245,999999803,999999999,798331372,999870934,999801904,999992307,999999998,999999993,850490974,999999785,999987419,999999987,993378226,1000000000,916809356,999999959,999047362,999940977,989834887,999999998,999703180,935765042,592679598,842733144,677817066,999158953,999990470,999428654,999952666,1000000000,999999612,999999877,999999997,999834631,999997932,999999943,999999636,999947279,999999239,998367387,999973130,999631763,965205047,999995010,999999929,999992257,999000241,993795661,999057247,999999994,999999959,991351201,810360083,999850303,999789043,999756907,999992246,999999999,999999650,999999580,999999994,935375053,999999994,999999760,999751318,999999997,1000000000,995851021,997498422,999999955,997774110,921901242,999999732,598260698,999999984,999914258,999999992,999999595,999996855,990448508,994164304,999999981,998021078,243661691,262109150,999999963,478103312,999713721,751702816,997386339,999894494,999588109,980636980,502368516,998627835,999978574,999997958,999917513,942105082,999188334,999999999,998724652,999998945,999999393,998977157,998920845,999848006,999954990,999989630,999999613,999906322,999989514,999884922,999999792,999999999,999999781,999997700,1000000000,999999118,999999939,999746718,999983718,999999990,999999666,999998121,999999993,999407495,999997886,1000000000,999999877,999992086,706889439,999999636,999999990,999327108,999999992,999999855,999501726,999997654,999999991,999999774,999991981,999733020,999057799,999959845,172553310,955511672,936578992,991087657,999997863,930158232,999999932,835088373,999999999,828179364,999985516,999978250,998686909,739073527,999571830,999999999,1000000000,999999999,999999997,999999999,999993682,999984391,987833916,999999999,999966782,999690970,997100418,999999864,996111196,1000000000,999999928,988343978,998401427,847662262,830600375,983943175,999378370,999999942,999996136,912540360,910458252,760023477,999999911,999999970,999999975,998081992,978369071,999999651,999999981,999995228,999999999,932013274,985674685,999999973,999999994,955864598,999999997,999997799,999999999,999999622,999977954,823929647,999999941,999999916,996245663,999999651,845851634,999996893,999950810,999979705,282139940,844618919,999999565,999999991,999972008,999999998,998778518,999994273,999993503,999630031,997215224,999999995,1000000000,731501127,999999967,994682794,999987490,999999978,999999991,999999982,999999929,875591200,999999669,999999905,999997725,999999999,999999942,999992620,999999972,999766920,999998858,999970134,992556487,999979906,999999999,914585355,998419023,999995181,995119137,999999994,999999986,827030578,999997519,997085328,999999365,259600122,999998844,999994966,999996791,999999888,974935350,949361622,990431935,999910562,999940111,999213580,999998258,988403035,703967172,999999949,994607358,999999997,999966469,999999999,997338914,999999952,999707075,999999919,1000000000,999999949,996872164,999999875,999999754,999998277,999863289,999999999,226660465,872481234,997498130,1000000000,999999957,999970346,999598167,999999995,990163621,971905992,996940987,999999106,417658241,989423584,999999961,999999982,112389564,996954008,999996853,998915569,999990524,301452715,999999874,999999903,999999718,964517561,999649494,415671029,999999782,999998848,999999959,999999920,999999986,999999954,801680234,999994291,999999953,946946304,957606107,999999960,998123119,999978499,999982590,999993366,999981179,999999996,999999967,812259517,681442565,164788877,999999232,999918958,999999950,999965740,999999791,999999852,999999996,999998954,999999978,999930000,1000000000,999999810,999999981,998899739,999171898,999489793,999999686,999999826,999999972,999932626,999971402,1000000000,994028236,999563352,999920563,999999964,999999998,996703690,985170174,741027232,999999536,999999996,999994637,999999991,998588863,990077682,970221944,492740280,999999965,997266504,997389258,999997828,999977569,999622244,994512860,999999970,481148579,988535256,999940770,999999942,1000000000,1000000000,999988385,999999979,989058363,999967979,999674064,994942234,999295073,999141727,999999968,999797768,758840289,326112021,999999970,999999553,945393307,999845740,999683005,993585101,999999405,996539771,999822411,999999978,980955606,999959347,999999800,793991040,999258439,999958906,999936455,999999962,999999999,999998469,999999999,855648664,994712094,999997053,956304804,999998981,1000000000,999999999,298847828,999999995,999999865,1000000000,999999311,999998308,999999841,999995900,999958943,840050703,999934157,282740278,1000000000,999999531,808783101,999714750,666784039,999754470,997023091,999896514,793003414,994923927,1000000000,999988748,999999989,990438585,999999892,799767847,999999997,999999753,999999996,999952020,999999917,858568701,999999029,998674283,999999999,999997375,999196598,999867070,999999980,999997303,154905354,526684864,358120227,999511542,1000000000,940414300,999999207,999946230,981856363,999999528,999579942,999999857,999999942,999999316,999991041,999999939,999999999,999511635,983301837,999780080,997135099,999929700,541499610,999987181,998564927,855995486,998973854,999999920,999995201,999999995,999999999,988841289,999999943,997790209,999999850,71362100,999989328,999999836,999949667,952814838,995544845,999946366,999986072,998033113,999913107,999999925,989938841,999957930,999971594,999992841,999900337,999963497,999637146,999999997,998149069,999425005,999961761,1000000000,999942361,999999995,999521070,999999969,999999876,980788436,999999058,999982614,996528853,999999986,999999999,999999636,994918430,999717001,558147823,996019565,1000000000,999993125,999622868,999996722,999904064,997561832,998854951,947133208,922698592,986135837,410506574,913288435,999999730,999999644,999997938,999997298,998921820,970628297,702038812,739606772,999999380,265375450,999780126,999999834,47885701,999454537,999999992,664171473,999304256,997999502,284265311,978768008,999971384,999999990,999999622,978463774,732131851,1000000000,999998524,999996206,999165978,955489854,183210759,999999997,998957506,999999988,998044559,147311864,999999997,902578594,999982382,744874196,204818456,999999986,999999999,999999871,999998337,762511288,999170193,903896255,998423366,999999541,999381358,999999995,999998332,995302149,999999999,999999413,999998681,806009762,999983370,999999650,999960472,999999753,998098598,999997384,999999985,998754300,999989532,999967296,950667024,999999418,999979669,995284964,999998820,999998997,999999423,1000000000,1000000000,998364860,999999997,999818846,999598417,999999679,999999986,999999289,998178374,999992033,999882159,999999848,999999739,1000000000,999999999,999729197,999999970,999999999,999999995,999719416,999754656,998272282,999999800,999999862,983339784,999999989,999997601,999999999,1000000000,999999986,998827845,999999754,999814230,999992613,999999901,996425624,998406564,999997789,999990270,999920616,999985438,999985835,999998582,1000000000,1000000000,999949706,983525434,103658884,999999973,999663517,999999277,725948308,999938046,999998118,999970570,993040343,999999931,989386395,999999993,999999935,998787737,684270222,999883586,999865578,999999460,999999953,997493193,999811550,999998896,976672150,999999991,954555549,910086531,999999621,999080895,209896791,999999964,999186358,999986622,987142862,999997982,999999996,888178168,999994138,999631609,970536903,999939725,998931328,999188278,999999961,999868301,972899194,999999958,999999972,999997871,998631073,999999975,999994231,999999998,999997506,999999867,999995286,998843604,999999998,996865580,407341140,999999985,724219396,999999957,998435819,999975535,989295029,993802202,999991402,998398572,999993347,999910999,999999893,998229984,999765730,999999997,999458589,999774238,999999789,999999946,999911400,999999902,999935866,984856327,993306082,977703960,992780664,997158712,999999999,999999944,997970418,999980282,999999479,971573695,999920606,999980072,752664270,999999995,999999848,999999716,957950573,999999984,999039309,999928502,999972998,900834828,999397278,938673495,981598817,999961217,993593033,935085482,936274927,2180194,999784838,999999573,997354300,995006198,999929078,296422709,999866100,992502120,1000000000,999996808,999710129,999396902,999999981,999999577,999981691,999998109,363760492,999993752,999358511,999999984,849529375,488305568,999999858,999999442,999999945,999765822,999999886,999990997,999998550,107736916,999999984,999999996,977839174,654342659,999943718,999999667,999871355,997502234,991478133,997271868,999646116,769440273,999999434,999999800,843179786,999998039,996952069,999999710,987354271,999999921,999999996,999115752,974219889,999960607,1000000000,999989886,819897808,999999321,991921868,999999997,999999814,999999686,921187298,999301027,999185302,999910876,999999993,999997779,1000000000,999999896,805982663,999992586,999999317,999999968,999999908,999990535,999999932,998641884,999993886,585125604,984772984,996386777,286991599,999999206,999956985,999119676,976818090,994850847,999999793,999751667,999188076,995291698,999999946,999999532,997468588,995463006,992593817,998432598,999254014,990436438,999860301,999196389,997206415,58939489,927207778,869765424,999999958,998809492,523737960,940849303,999998634,999907994,885990544,996856177,999999952,999999969,999973548,999999998,999974230,997760190,836262418,936391880,988933137,999999874,404687459,999999822,999999981,999999061,999996520,999999997,987501072,957187930,999889192,999680310,999992975,999983298,999985588,999999138,999999998,999999978,343894593,830287571,926595310,990441452,999999999,999999966,995263870,967156705,987919001,999999999,920363784,999999831,996069550,999735729,999042360,999853878,999999758,999999314,994983189,1000000000,134683764,999999866,999952523,999995187,999860529,997582776,999999969,999998012,999994267,999999958,431376217,589717913,999993271,999984424,999999801,989385725,214018332,999999872,999999996,999897117,992796829,999935983,736209182,999999708,999966753,999974466,999351031,999655642,999998714,948573436,999999563,999999980,999999995,999783973,999985720,999999439,999999777,997710816,909407175,988081483,999999865,796910085,999999982,997597266,999999846,999999484,995409736,999999304,999997699,999990452,999999999,999989731,997207645,999999755,999999983,964950903,997611602,999992530,999999616,721140065,999999991,999999986,999999781,999999997,999952209,475053089,999376218,999998352,999998891,999999908,999977679,871883696,997759146,992939461,999996047,999999993,999996597,999616913,999108576,999999999,996244482,999999999,999904480,639789862,998811441,999999343,997360055,684079435,1000000000,999999803,998100261,999999674,351835294,998561143,999957887,1000000000,976481088,974513682,1000000000,999998762,999999403,998878546,971891469,999981948,999999578,999999746,999999749,990536608,999999905,999999732,999998740,999990278,998231237,994211941,999999989,999905916,999999959,999990500,999999973,999022186,999999448,999999997,999017719,893591997,986262515,999999982,999387267,999999991,997891321,999846569,999984318,377549342,999847502,769727794,998537485,999895649,999332762,999957926,999999821,991921485,992611336,680193518,999707626,124674040,999979100,999986767,992852584,999999966,698268158,999999893,999999566,1000000000,999999841,858033566,932329281,999999978,999999997,999992094,904518872,999999999,996018562,997360634,999999343,1000000000,992863088,999997336,999056282,999999669,999999793,999999960,983279320,999999860,998794962,999999982,953294902,541869372,999999967,999997300,964581359,999999998,985445922,1000000000,662390285,999611937,988560599,999857888,999998211,999993139,999995777,999989308,963085246,999999800,1000000000,999996844,999890781,184223917,818440516,999999706,999999992,999254517,630432220,999906507,999999808,998109072,280619313,999720609,999884933,990508114,364888259,999951239,981063401,999299281,999894635,999999997,782071354,906233736,999999972,589110241,999660754,999990842,633581342,425706149,963788330,992891295,1000000000,980068670,936278562,998289173,997294559,443771573,999971300,999999992,1000000000,999999982,985543210,999921481,999319812,999999975,999998698,997266368,857924734,999035182,998601145,999982450,997025653,999637789,999999998,987824679,999999969,999999919,882595425,999999999,999999977,990083502,999999920,999999990,999999903,306821150,939763497,999999975,985582285,999996445,838848423,999999999,933349861,999997851,999999976,999832581,450545880,706046198,999901194,999997074,999993975,744491191,663081371,958255660,999999981,999999979,999903717,993926026,999999998,999999850,999811827,999999784,999998123,999999492,991816982,999996832,999999992,998974535,991403489,999996211,595982221,999998895,999999964,999974728,999999886,999999997,743021762,997019295,999385769,979886015,999999764,817331684,261673673,6323001,714721206,389031186,350040676,119878253,999998417,942207714,999999986,999487618,999999883,998843855,998794744,998508555,999999992,448480815,999999996,999999065,999999401,1000000000,999942146,999996149,999982811,147232979,559894342,523642261,999999961,999994141,999999990,999998000,995662350,988584878,948302815,986367438,999999534,902971702,944076438,999999909,999943800,775645944,714028055,999999989,909649538,999999839,999999995,984853422,999999999,999999920,999999979,999999919,999832808,999943660,999430237,999979722,995834492,999926699,999999985,999390918,999988791,898275925,999999995,982690908,999999999,999843531,997038057,999999663,999998971,783515325,826087242,973537825,962566301,999999999,876833771,947031028,999996421,970074207,999987916,999923067,869511360,999158598,996923969,995741147,930825603,999999929,624785188,999955988,999995419,999993838,892532162,999999458,999998442,999492142,998974912,999994671,999110387,999990077,999901972,999999956,999999963,994704139,989317519,394190650,978719184,999999912,930277623,999999974,999822562,999999996,999995214,996278956,982685463,896135655,999999999,549652552,999998618,1000000000,999986910,998055297,941750106,999997309,999997761,999997375,883975532,999793198,999999999,989703861,999999990,990971168,251641360,999999940,1000000000,999999999,999999973,973260323,999999959,999998947,999999975,999999998,999982775,427987702,999999999,999857407,992533874,886627937,999988671,590114618,999959941,904760108,1000000000,999999999,1000000000,972887749,999946281,998846268,998798118,999999998,999949124,999999997,684433750,999999906,999999635,999999631,966564911,995232713,986781464,992533589,999992925,999999991,994665650,100326056,999999577,668481016,1000000000,986573577,999999661,999833019,999998824,999999997,999986221,999939581,993045117,999930463,999135567,998936907,566729593,764559243,999980226,999999996,999995450,999996657,996399925,999999999,994545441,933605591,982725611,999999968,999992057,988668523,998857076,303635592,999585970,882563359,739969430,999998543,999999934,999999961,999337840,999971117,962014849,999983596,992359632,999888429,994712419,915097672,965723024,997471697,999918409,999997625,999999791,999999955,999845565,992196838,997938265,1000000000,999999996,999758274,999994261,999967219,995325069,999999874,998875832,999987061,973248296,984833296,999999999,999999997,798443382,999999862,998181495,956927534,979014068,999976265,995885710,999978033,999234935,999999983,999999924,999999604,999998399,999999960,999944130,999993000,999935635,999999938,989275844,999749365,968097211,999983575,999998546,999999614,999999985,999045528,999999997,1000000000,999999997,999999927,999973938,999180324,980672975,999999846,999998918,999975817,998162192,766903899,971595895,999203631,999983147,999783516,770271441,982880591,999999989,999963777,1000000000,998283346,705710554,999999749,999993047,989304988,999990892,999936310,999999996,999917903,999647019,999999998,999999921,999998475,978880002,999198225,999999907,999998937,851437507,999986662,978824744,999999995,999997031,635324299,999342106,998965029,986540281,998823103,999383279,999998923,999999999,996321723,994860691,999998951,986362369,999999995,997899066,999488271,999999969,995263193,999999603,999963977,999999864,999999996,999845386,999998976,180382328,999999961,985407050,999418107,999189229,999941675,932846663,203052164,999999931,817386413,999999990,253375017,997220567,999952078,999513283,999797431,999577740,995550306,957291099,999999418,999419162,999999991,996261628,997606738,999999958,999995481,999999998,872698253,999997677,999731088,999996866,986043496,999999999,999999855,999439485,999999181,999958899,999999375,771566057,999997378,1000000000,175756290,908839107,999999996,999999531,1000000000,999999112,925478608,999999992,996305085,999999854,966380117,999999727,754624315,999999999,999255299,999999971,911213158,999999782,989922421,999826003,997494180,999852515,999998704,999226691,999789034,999999989,999991908,999991693,999819059,999993535,947220347,780816437,944775006,999999718,999996599,897959942,996811750,999823864,999999557,999993628,999999959,999965577,999961081,999999997,999967004,981331924,999999999,1000000000,786595904,999999991,984364474,999989182,1000000000,999999991,999999576,999968026,882940931,999999990,985186904,77601646,999999992,999999993,999995563,578194100,999998408,815483678,564645948,927786428,999999910,999999529,999999068,999761980,999999994,1000000000,421071213,999858364,999999996,999999998,999998094,999999730,999997125,942844199,999998914,950980601,998578469,999998864,999782305,865760262,999987508,998463050,999999465,999999969,791331610,999971167,999999055,999807215,999993838,999999920,999994436,466312827,739073573,1000000000,999988541,999999999,999134866,999972245,999999860,804505338,999978114,999798869,974496835,651282516,300207742,560263670,999999952,809608212,957068018,947802282,999999067,999318778,990319332,831413838,993871159,999956901,954519151,470662962,999999912,984028228,999997680,999258173,518021494,999947415,999995281,999993179,997752142,999888616,802410810,999999958,999999951,991870795,998743171,999888636,475102253,999946563,999878742,995548284,999988001,996504127,999921607,999999923,999989677,996534585,988742084,999999998,999999583,986571978,999974487,999999948,999999987,999999998,999999999,999947569,999999460,756627903,994031830,999998954,999637146,999390290,987670766,999777628,999999997,999999925,999922864,999998799,999548285,930633295,999999538,999999996,999959402,1000000000,999960574,999999967,997106150,884959829,458356268,1000000000,999999965,999999835,981496435,999999978,999994339,999999974,984040503,999616635,999999936,986731782,999999975,999981158,999856022,995753475,999997371,999999238,999999994,998672373,998715623,999999999,999999992,999991848,626768868,999712699,964714752,999735612,702441269,999999701,988898696,999875160,999995724,999999886,999714578,870465131,999926583,1000000000,999995961,996095696,595588211,999740206,999999899,720556127,999988314,999543290,998896936,999999988,999925601,985514737,999968126,999770837,999938377,999999246,999855616,999995269,999999967,126833833,999950732,357017540,999516644,981480503,996944626,999999983,999999977,999999964,999983897,999999998,911616008,996259255,999993612,906432582,998560296,994494799,999793456,160081068,999823418,993754058,935487745,999999208,999955958,972364700}

    Returns: 43353686018

  81. 100

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

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

    {6,600235,60757,357,172327,2,2460,3,15728071,26829,184,1,1989958,3228274,72,49787,440116198,17688751,11,9,17673819,297638464,18,72,83944494,7461640,5711,33,896222473,1515047,117208776,4498393,31,698,506771,294449270,2070160,909062075,5386,436067,5414,7719,304,12,6915,567745418,907,660554625,8,17,83660,3665159,4497921,2012,2,30355,160954807,1706,132542151,2,46450,21395,392,7387908,108590410,1,31088344,197483,61,115239796,3880176,738594,355952,78,13707,7252,1703,13,2300,7583874,64342793,19,5943474,4468,15794315,178886,463,61757951,77475760,2062274,16849242,2,1,284,268,35,2761979,1112,2915858,107896,12695,1384,77,650049947,2736315,13787,211853156,112658,341167,25,4107,982347713,43803,311,232191,97111,277759898,2209433,142915,160773680,21089,413,32724,182825,2976,76,64964,90649473,11616830,1618025,32,9808781,3880738,55386,50318688,21,145603387,1,6975,1,4275,438164181,29206767,10467654,16769,21167,5103,20846797,769741,654923,312830,8716,270582,10864,10861,488,2,603206,118801,7432537,3265615,575648641,76493908,3630733,25264,3,604,38969,38298418,349,3116512,422,24671204,728622508,348,61566200,2828,732,1011,14,6542,64305292,181881162,2,111602,10,12,26,33110,3605,11,1952,18,284,298654,44465,468,79470,1557,7615566,133405,6,768815,38859,2891,18,4361408,7704,1086406,7329724,51430472,58368,5189339,2066322,44,1,5020,34,52594,4,415534886,270,1,164920710,51310068,400468705,752,89636093,11174097,97,7,545734,59,3,704,367738,7635,4,12,22827,586741052,10236,56804,947187,1128,9,36,5438,137493664,424848963,9617092,668572,205291294,32,46522,21438809,570451890,820368,5026,8,3817059,5,99209772,26,320122245,33005,26478,65748,112332,182,31832,4775,14340,13132,2151,17414796,1128,907,42,9,192610,1571,708,109,96598,595968,23648615,888686765,73440511,683,56,5419,62,76,50370,5446288,110019,2,783297,459334,1,214,5,4424583,19591,277125,229,12443120,5956713,721108,1,172223197,632,5,66,82098,37,3,785141181,301974869,46440210,4089995,2741966,36935,11994,447115345,415,15948,3,158,63254,86225205,97,6124736,55248606,78259,30139125,21,879,4674,43740489,14791,6852813,27,668081,556218,68,637126,703607494,134147,95,62221,11,33936,70883116,9097669,885,18968,333,6101484,2,29794891,10,645978320,2712749,1988,26386,558653,443,3597,73835,232342406,995507,9,8559,184023,1806664,80,3,58590,1,47008657,42,930952920,28716,501,989,225838349,138157868,17295902,819546,18,11640241,37853694,1716248,341182071,323890606,640075,2184,1136086,1,43,5,13,72,6692,1922039,1,2015713,66,180723,57823,348,2628,958,217743,3,2176011,6221268,104252,3,10,101403320,3666383,2,36,7131082,758,144324,5449166,1627589,1760,74907633,10,565123629,88481664,4,288,17277283,2178,16846704,32497,13659,53645006,1,475069362,9720026,43279617,63071484,2,12607,17,320514266,124,1369,61,426650218,642,2021,6,359947009,238,38607761,42511624,704970837,14,1274,69160,6,108,364,13,104,13,2,3246,3061,38258,39491,29196305,279323,43,26259,2272380,109,89184,2664008,132153,17042119,32376983,3480,4354,900206560,47142,366,13,3,470,292349137,1712074,163,3424,452,2660352,455,214500816,3,3,1,5088,143088,3138977,703,675,73,108676338,146600207,3095415,136,3,2865050,12,84,6140,343111862,2780187,1488,156,7109029,163,509112,27594,4,61385964,833796,433480,9,282,1226079,116736,1358,191,76395318,29,1538621,70,676,3273773,6,725350,313107188,186712,6934847,7039,750115,3,5192,11223,5902203,78,103421178,180742801,299,33,19,26803095,4394941,1,4583,74161,734,22,1,7896,17,125417729,85,1217485,2,30,98,14928,1497015,65795753,757757,4,226,19884062,5239067,8493,389545580,11168508,10,38,44652,1,152,4332,24808,4839418,14553,3,152,7791337,13604501,792473363,25,1373,2731159,2770601,15,8166,31942,59177363,26976726,8163144,2,904,131365,736,1496977,1324,16,1134367,177469236,133520,127431,5283556,438167114,945244,52306,702,153448,511,1696,29,36549212,24288957,111482,2024,1403,7846016,47263762,536683243,454683,1032179,2722,6687979,18745,12,580,4,483827176,222085258,818005,1,6574,1,129,34007795,788,245254,418,2,712943,1912,538,255899006,7,74,74,10364390,154925423,29,21184,3,19,531,31,42699,42726,1548,387,50,16,588967,578,12,272,8847,4938,194,14538,63138,251,12794094,60,98583,3610,52,174974360,8,7593,3770030,846,638,103399,23089190,1017,60360,16762,151711,1156,14349111,164,101675954,48,3369666,118,5643,1,34065533,12,181177,32,3708,21,228083741,26,745645,3333,1504,1323,90917,125176,1,634,17201186,2547727,9554374,186720,126,1690,1,58,44965402,80313651,48,96310884,88939,22814,5,787228,625344,1342,492281884,855,59,148404002,312463,154,560,522,62527,162108367,36,1086626,1536792,154988,93308750,67590,57230561,4896,22108111,22071,28300868,87602720,11026,1792393,5973515,345025161,761677566,18,148431,13628,10586828,659225415,4998237,9,1556,886351,49,14214803,1841518,10251278,398723,436872,1,10792607,1700989,143,3257366,322497776,1,635693921,31,3640,2,2887,338287,64,11,4,365826311,16556148,1,6,607103,1,19690911,51,467,3064,4490204,168,7,89495,328218990,6,1813,17,167955369,204582,419,19,6298,363,11,6,235,184727419,329603778,1857,2774,246859980,11,12,228190515,4,416729,17,48281609,350521267,386233396,22162895,2157,8716,250243738,11585,821695,45442720,15,313088326,29,1099481,260348,138544,4,5409868,53269218,1,67105900,258,448,15510245,48780544,149107,378167,27,194613977,153541042,2865,224657695,1290,5737994,109,82,1296223,41721465,44198752,5,585606,9,701887,1809,10216982,1,1408646,40,880559026,15520145,829288,160070,250,2186560,12809,4667,470524360,2,4753,72145058,1422,35,27649,466,13428,3113488,7,19,1193150,24460824,1065,198710,1001,55,1,15267,48,22,1300632,12390,3851,2439,2,244,10559103,20,55337587,87908,30,37,1,13290,444,104294213,127680263,481113084,34958,17789798,29,245,987145,19932,1729934,44178,20250102,2,1110,57204,136,1,15004,6307,3000797,25729755,272485,1,688464,42,31471360,33514784,19202,105974039,41387209,126872,32252,2,18972093,148208,76,11186520,282724219,51887,42416942,38,7,27749165,543627,4,10998,5,30795525,84406,8,599144870,38619,52166783,393,1,3629142,816698,3728,59946031,123,112990449,612875,631,25,56545,60396237,3134,3990,1,8851996,7,26679983,213270,1,3,141,6601464,10803,891,22,13,721,38400,15876737,637,13866775,4949487,90498124,28650,413796,4313,1337729,28419,306,6541,3057,364541131,31,42538911,4847,26896305,154,2,3282,7487929,29,166981532,638153737,1647,991641,17345205,902902,1,6060,6,1684403,195892781,57234,3,2,31,78385,43620579,3495,1076146,53,14659625,25378,59240483,1197743,25,556486702,657938293,11626089,657,2096,41748,46613,807341995,81,36846378,70,944667,121075,672478976,7878866,113024,6,2524,76,103,98,366336027,7,6,1953,14,3697,30,1644,206231175,23,2,1032,764385573,344463,3491,1363364,128232,80389657,672708253,1,2,3085583,1,38,86,922,10,158891743,100,46,35408846,261005984,10274,254,44595646,23,8690557,78856339,283444110,51627,4144432,108558,78,592584,1,1335864,1,3419,21387,13133,60617,3211,934,3829,16,237,23720331,407548,44,362,7,5,50,246880028,938,13452960,121,225,2222,2228,717726,18950,132,45501672,941275,822,9623247,25990702,4554495,52,161,26325593,565,624419134,701,4,536279,1088,47254,81402,50252,708510176,544888343,106069,19552,1016,6,1499,169466768,9438,210111047,183269,10250416,103335,1574616,1854,8,400773,82415178,23551,92904,414733,244299,16233448,25006510,104252,7468017,2628105,406170170,4093563,17,8629,125,1456,177493,78925343,1375734,33795972,20692,29,737,1170,4820,15596,803,8425,9,235643297,27,462391,1039,4374,45262230,89,6498846,82204330,108318687,242650,28684,34,179523,4059380,130125309,370765523,15205657,48733,1320600,82219,18,4885217,136675471,3,77434226,12146,45431829,17343,31691549,12895,1,1,7431,751273403,77,1,4991244,122313614,129,952138,9834,136495,395213,11675,163780510,1543757,102,558353644,5008,309525,281930,10,9792477,1,2047995,688257335,647941,1489461,10380,1152,6459365,671146685,30831,91671259,104,2296,66599942,1633713,40,106,55792,31886511,96,45,3659372,429952471,2248854,160527,73,105539686,27382,2981,187,51974,1,813960,31571,2510,382742,169,6012,12,1,21808723,183897420,47,303816,4951929,251714,23,1598,74857263,1,58016,122,46272614,28206,17,227,2655979,1,278,1019,1,272156750,369,129,747,21,1390,112,1843,62948,579,1733482,78,246,56578,1,3155,360123897,345472,168269,374350,40706,247,123,40170248,579826060,44,28134697,40775,12355210,648650,369341,6409,918,8716,19965304,660906104,66740541,772697,8,2,252145281,4381,277,255030320,2,69,51641,421150018,25811,72255,25709007,587456610,16,6073445,8,22,52668485,419460,2019938,480,1,55,13893457,18,3611,452,2767950,5592647,78,39959,626,8,6,156,5,1319,13,5,64935140,83,13281985,258,37549158,654195,1484941,1317,445133,35,10775531,26991848,7294950,53186,45638,8155744,79579922,3527359,10196,285046282,1453,6360482,80342,23,17,12,73,401674719,850097,16,11,3998904,33800,6553,1,1625,8858548,3,2072,397,1501384,34414996,20868,748027,559040,2061,1,288,51655680,348272487,239002805,81279,343763,409380480,2105,62,607971475,562,244,325781,45,81719,3,3,5794,32576,1,19362551,56159,9164040,147,55610,164521,605280678,44313,3,3314,844382074,9147,60708,363693,28,304903879,377626,5,126686079,297,89909,271351,89635,852,1155,58,123771,139822,117199031,19145,509,12244,50,220,89740,7380687,1796,26335133,12,607728090,7774065,120474,4342617,4040351,19,1,464734484,1766194,10534,258985,5939079,3115,911640,979504268,3,25460,819285,1346,165716,15,1,391283979,586148639,1182,144735386,48522347,720,571656,7384,9,155,5,1437,1577004,237938311,72,1,1107716,43889,238906,1277,1608,272264838,358267221,8,835,32465478,3,786954895,23776,379930,5,2296175,1708,286,755871568,79112,48,82393,258512674,402,5114,60583,8472,64284,732689,330445360,8,7855136,98,1186164,294778,157151,667,217701294,148004,2499,8759732,75353525,183,70038490,257351481,346481,28384,2374998,277824593,112274,818701988,131358558,114692,504116497,3,80,94675,8194,8690756,83425,8,446859874,214746,7590,73,321,36836936,114,1290,31840325,302979,139421,2988,190,327,4,178,26803,512118707,2948173,1408,253,1,103,18,75029,32364,3839,321442277,1311,33,4354764,1029,19987,509450,95,139380,16997,11047,59075537,59,676,150616,878825535,28597292,205156,8006,61,556,10939322,11853080,114344360,81466,1733,1416744,16570,3,426,1,9,162131024,12340091,360,3849466,136638,1417975,221731990,33086,471442,1,148795,31001660,2,164,271,92257424,719544,569004192,553,142062,426253289,122,366351652,8799817,320,73652315,857297,2802617,227120094,33467,245,158772,429574,42030,25145,84824,225346,5,179,561801,34256383,59,208260055,38,10,21987917,253,3678,38275,3881,10654,11461567,9490456,10304,10177719,201136,7,25179164,567,15924953,71243593,643,14536560,42,555518,8,126177614,17,573278308,12,2,83694914,205,29,3,170144,1,103,7,5489,198,247237560,84292,134,602888034,3301016,3047520,3544029,430471782,20805,538433484,3655,130803258,156,619,19256,1831713,1,41894392,108275,13851532,18,299051386,30,37779,25987784,698662,177817,2,687375,19,6389143,69973040,425,47,8768,10,46254726,340,70154,2,87847236,141501,3193162,8634175,19,90003,52,128,105416320,95,345696,6075023,26,21185,488366,988,168080,36590,56935037,17,27475,2779128,102845,652,17,202787270,10750,122842789,1743302,64,122272561,6009571,1609432,20069340,3,1408,184096395,54224559,78471040,2595731,1544713,92444568,3380161,190943,527179689,2286639,78065416,360029,3374886,217,537771030,1,1107329,12492,15893474,111069734,21810,182,3374990,38403,17860,351274017,3,15792,701335316,55270572,22,29595727,781989768,39135115,484,2732,723179614,2,22498971,4361856,5009,126967,368284398,355,15,1,226144,1,128,472,176536,29746,5,126,4,43,1615990,2720,2205151,4796990,82912,292393970,11156920,644,4358840,121073683,16,164272926,262,37762120,321,19,22120,172,368,300437822,1575,8,94,97520335,2039,562719,4449,4376786,4,46066571,932037,3,288,468028154,5233,28425571,909091587,1,1416487,2949,258,232448189,1,124015,49,291557962,49931282,2008,7,201470,336738535,91791,66,2723,135482246,64201,4697,295022,18,22,61,3947,105,222623,20,653358,89742492,21,120114,14223181,42,604262,7974782,444646,2254,2173,731,34332941,15856866,1129559,19361,671522703,98,29025,4,15,86449,903926523,72,4,46867623,9035930,211,23176610,133,29620,2,1,69,307956976,2,159,10167005,1068,6,863,351,29209,552122212,239536,17707089,1,105608,152426463,795978315,106887,2,7033,6763547,18278,69651800,5716,163,361533544,51,5004612,141490626,440473,21,1098993,23946,7,148,2971,4,16,5714,34124623,103,1,127157159,15600814,127294,164086,3514,6668,140,9,26265120,427,332621,42,135229629,270004316,235,750092911,1,3,191,2734371,97197,46876521,5973,22901,8,36370204,1,7559,1,4,13052,100,1105,111,2,121867,6,2,126530428,193243,538609,1057,261896,3198999,18,930,638,831478,132595,6,1174,51529,5,7803818,72675,35200,3174,29590004,32,5823,7723,2991,2,99984461,43,146,11,1401731,3786825,23440758,81,525,47980467,1718795,5,32197,41532,203045,1264,3244575,1140,12217,10,26851,8,2,163,301131,27408036,16708868,847323299,132262,156504,5700,78,50073377,284950,75,31,3119,2625,54790402,955146938,31260,15,1,46967,938,434602,503,9,241673888,11372053,1537,120168816,31,537603,36945,309,105566198,3865810,17740381,1340735,128403,198571,52715,176041652,452684,5889615,641252,24,13131978,979169,118466033,205633168,9091707,3798419,157248,49897359,642232,173204605,2142,3654,133388472,176742,613457,22,73,6094,84486018,67081065,1421,823385,84436,280876519,23922,530,11,10574267,240743,551000,316696,15833775,13842482,181292,346,37,3711,16120845,1478,725,4,329323,7355149,17017607,63631305,43,556,21096,1,1380,4751730,1,445,422,170300723,21184,267,247,722032,39,5,2,2927,1046709,85536538,1,1440,9,54,52,22,297498147,1203999,32551,407899792,10299763,2604,1,461,22,22771,8,16985400,4,373447173,1257784,2,7,3,25,7,746,19181871,5,42,3896911,21599258,29093544,27599617,5561146,37,319,6,1653236,46,8955298,279521344,44,12557,19843,675,1678,7944,205,16688,22,54,122592972,47,7,179595759,8035736,630370,30738,361480,362,187,2,141,1,146,612,105913603,42708610,74771,1020,8828,322447,295632314,60,7926957,21632,6459135,71935682,16716,209771,3033,299133255,5167,1246539,731,9416,949714,571466091,378710598,80673,41091,11,1111131,1160334,1918589,196528,129,90629,517640461,26943424,34797,6,1819,6,52276823,9128,7786,35940,7834,1110,8658,6004092,11086922,12285,1973593,827577347,22269891,38,400683,1902351,15555256,291297,57,461804953,2066413,840,776148042,28,259986374,432025,107228951,2,202285,1385,217757662,29273,6,106067231,2324,28403107,11,18809,377,162437244,106411517,145,15669945,63527246,539,11,26235,126862077,434582,21019831,208,206,1966,287070936,40769528,157004368,12,58,27,6,11217310,481185797,2,1882304,13041182,2280355,3,1353618,1962056,1740,26170407,776455039,916060,2841477,2431237,536,34748588,1,82476269,910552,656480,9395,4455967,186,759,101672663,3455915,547193424,1233602,5224,23048,4459373,12,150284911,1069900,1,309439,223,510,16,1919834,296664862,4469,10,1375321,999380,76644789,8966,35,2870852,255933,228294,96454625,109938,29,52873880,125228,1,43,5,5096512,128972,23328779,1,8322528,26186,646,1547935,115235,18864,30,141,6,2050936,1504,55,304,5985310,9,17353,590,7021979,46,2377174,6,124213}

    Returns: 2847327756

  82. 100

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

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

    {3240808,169,3615,4033,109547016,128127,3,17,205282,80,2680,218375168,5853,29416,1045542,614,396519,2,4804,4047,17425163,5,627,205,18639,17537910,303695,625761683,2,214652,5966079,65,130,783077743,893372945,40721285,5768,226337663,557778185,9944,251162,7607544,5727,466,2252448,129425,278345843,89635762,603,916,33,291,385421,463,85,19030325,1,554,454,36245450,370,623,3166,331951571,7,86023,362,163,6804311,167677949,663,15988534,2496114,18783,4496615,243579,218362345,4664574,313,1142,1719,51668049,6003,937,15241,9155,6,12145,190046849,1434,5015,59,528,2717995,376,884964,83,4,87597,4160246,90426,1530,26747648,46,591,31029,50974,86,31193481,68527,258881384,1355,17073125,2530,43,840,15560031,61910,453604756,7220370,2,17,68,83738250,120,357705187,64,9452619,73191,1,36801978,7,730,4520,266194051,9892,64827,1096491,2774,13149,1747,700339,1108054,212,30,4,54103969,8,13140,113691,3,249997270,20039,8350,30942,260,12540,59,263081,5387,15994,1539762,58,246,1054184,786,2128,218076,745786465,13278,173676520,9479198,22,30,22072308,72,253796,27849,1494,34357,56014,6,218716380,9145,2,349,122,1646,49724143,22534819,676625565,11,1,11614,8661,68,1,3217,126718269,953216,577675147,21252,533552,28754608,89,14185496,14063,53058,37649731,1146,673911380,270263603,1679937,1,3,1,6024797,119,311154719,1880,523,18924,2,4,7376037,88,52208319,108823,12,95976,197162034,127015,60,368,1,78418787,7,432048794,924399315,2,60965,3538149,2,127255,1422564,41679029,936,105,1278599,3014185,76337100,26470085,194266908,4694557,164962,37560369,850197,47152063,205688,63514495,2,93145629,5330,817474027,13,74822,8,172,1969,4279,39644535,1073810,9930,2,549,79,48,35670488,7,2806023,297,11994,274589885,11309048,552,50,713,2,104688,89138047,6,2,58155751,188,206,7,29532,665544777,2,266959422,441379541,29751,2678287,25945567,995201,134085,417,37341491,11461704,756053526,2287,8,282749365,5,11555603,242559,292944,7,311111688,4450234,2274,1,3800256,4,6,149,136954,94096,485,88892077,54,3,2016625,35531,290930,16,101415,39376751,276549736,535744358,708144326,660880,54289,3,16,1131529,7,458602,185,130614,453568167,12974850,2582810,4264503,801,742474152,8,128440,166,2672198,61077,108028537,8715214,47,4730097,81635592,986645528,416,28840,110425,144,230508341,15132,1130339,242915560,7139926,6,24995,937,52595,7353671,744875,1279742,40906,2795,435,46041696,82128179,429,8692,530654526,5787,1191,9031,9,362733423,3188456,140200721,2832,6277342,4021,64842063,790888014,65223122,15,336387827,19,1036281,524394944,112863727,6,3145,52912,71,89770544,173,319080,123871,150976,25,380,4,1003,82,206,10,1267496,1765,95418,80,157,30393969,127575860,14,1481218,40,1057426,21,338402658,5721,26516,186,1414883,922940,19131547,15410128,2200,45,2,422058843,149734,5,286,10906,201094,7406,6,2,1088779,775,31950573,26,108599,191,685,90,575094,37072,501543,7,141972,6260,27904,5518376,10484,1453017,265902313,301199,107451,443931,10,563167936,25,652029477,65023877,19,1176,957,1071,22,29272672,473,2478982,216779,3,363637,26249,5137,16085,531250,631441,312233,12371534,2508213,1,496,20,14504111,1,603751673,3,1116519,1,20327,11005094,3488,34,16,141218252,36631036,81195497,15919628,34101,62,76,1529,372468,1,132036,563,11370,336,5551537,18765,59,2,10616434,62301,1,44823,4066,3161604,315,5,707,297686,8,345916824,779450,36063,2299,1,419,9643,20424,1535471,274350970,53377602,378007,1041,90515925,197,19973,8783494,121189065,633025,266444572,7952220,93828,407956,2,29594,11,172,7934625,2,1,14,1,1,8499405,1571983,12139,39119875,1,367990913,3478981,4,3244605,448,8137459,7423,24274,116760938,18025,150555346,519385007,121438251,27255847,855,1,227633427,25,22149754,2,1,103,2,23808496,7798,308,1727993,95,278577859,420,38557308,9942595,3297,911002,894,15,124,16728,45050,44,57369,67,1003454,6060829,488731716,602,7446734,201530266,34380,3260082,23736625,5070546,634,124,1,106412,29511,68411,198,134968,124,44182810,153352,285,855832451,3,23040,6,244276197,50394190,5522,596343285,143,1023874,750587,6531,302740317,119355277,2,7416588,2844242,1095,23447,54950999,16235,703274,22949,11734,7113,19,3,315783,108988,17894684,365240477,1191968,1,484325,26471,22599124,262357,500131,47920702,31157036,10969,123498,961593746,72,64,12600,12,8887,218128921,122216,36,46054,219,9,6737,117445,756777996,1,184075931,75286,1602732,2844,10057786,12341,623,794635344,202590602,1629058,7048929,285060168,96,393459,22062563,938,3727415,2,527,575229623,297,159,7,2468674,18,8668,284732477,951,8007,33,401831389,841369530,1930,129125,4008,11048617,3546179,2820,56,282859015,138692116,4732,30,879,18607995,457592,1,1768075,3762131,1210842,9156,2,371406735,28911,2018101,48620,28425151,10318307,1,3,175101,448713,7533323,812767908,530719,350092,994402131,108888435,853819,458650792,1166672,768622648,68081660,548,68,16155194,10,624978548,1744,89485,9880,6,7444125,13,1,69758073,262918,26415,506,324513606,241759035,40,243984632,84,2351,265,8598128,2,1,1978,3209430,401031,680,12435379,4,15,15,141863,34,5838,2782941,3533,77,358812910,5,397,94232195,12,3,168232877,202481384,10157299,35919733,673494,5,13657,167,195,3433353,474244647,1619361,8970400,3897,185363,53,3735,22422569,23742599,115006812,80,348,108611,11869,41,10038630,6351,1570,49488,1,34,5414,86908825,651,34,18099,368710225,3,117195062,16418,853,255098589,2656,108,2006,273381727,40,228,2464,1540,11,7321,465983,23729157,420180365,4912,8398,3863799,3698,2129394,998703,291250,70236,505837,9726778,15337,6,25,409,139185,5149836,241010,2794,14,20,23804,1,2829536,18674154,65420,18104974,21354,125947,49010321,1,56239396,3,127541,2103319,5189,42291876,2326299,1788,251,712978,46137606,25,363,1123016,34624928,10239,27,414,176731,1,18205364,7563261,1774,1363511,170,263621,147751,4850562,4583726,7002557,988222595,5,265,41293,544218,243,172780,937358867,2,10043,62098481,1,1947,4528125,915800053,2565,555959000,29,22298,7519207,589173,2273,530843,330296356,1,10246,3,725537,1574183,80329,639155836,10,25554,31,632996758,1,98821182,1,7533,189133775,8721406,2226044,51461,181,204213693,166447824,533278,1716,6574,234,339104,593823,460740,21971,1881027,3769685,228163063,68152,6249271,3153904,1,1723662,83822723,36539,32899,969,146338,6416896,37389729,962935,150,2,129353662,5786419,3947,72548717,8,14740338,1942,365956,5,1514580,5,51,186854,7,3208418,732967077,229802616,509729265,3100787,61118203,35750,10618,6353,9528310,1372,2919199,777717,4617,66102785,498599,962,413092284,716725587,185118125,967125275,2996089,10,61448,46410148,408688,2158,5777698,4,7877,1535,2753626,1917922,4499884,1,15523,2512920,25193,602,2943990,7456159,1733,99156,10158636,962,14488,410669,16789793,143,27754,25151124,2480763,32743,564491561,2490525,3167,516556,237492333,640734,24350096,332,146093,37,18,721217,43651,62752707,90913437,83622,81,11027,108807354,552,20,5154,137,524600610,7797,172,52701,37,848,1004093,40,4,1,1235659,1021213,396963591,29754205,1871069,48653850,7181,54655,980,154121677,208396,434,20866,159,53809,188,65857,294,12770180,19,463046,199,116197,2,179,410656027,255117093,59103,15044997,230033728,2830,15512055,4055,4810,57,35,3949,22,4,11,21741,314,31,340,297,158,115631300,31,62732,4774228,2880,32,8,5,8203128,39472,150,166256513,12618902,161,331346297,134,30200,1,28213529,20,112711306,36435406,239073870,746,76152,752225,904863972,13426,30856227,9201,3830602,610434,49,1687385,6885869,70,161624804,124234618,217622,48867,455191719,1529,10,38287359,385506588,6950,583491,2648795,25502,1916,525758109,18994000,87,182,23200008,108776,2414601,342376841,1,4421,83,2485559,1677391,1000,140,193264,126,65,9429,318,7436,12,69,115,2,2,20,3,8,103,5173,995815,385,162587,24712,153,52,274094,4465,1401,58,21703,2321,107506,77309540,1091,7820,240512879,46324,652845,369141,5653278,294264,3076,9730703,637969,25252159,801,374028,10,47003324,13,1,113,172983335,31688542,173753289,17099,9573663,1829,111326521,1433173,12,181,62945,290947971,2554,665603,6822,76991,38,719561970,313506,40718398,799,617195,478,3470416,45700993,14347,4194,714,95,65662,22790,12,989747,70111,8,57615197,107140,418,5,498,127262,13240,3,2469,3464326,35285,63,38,263,299157,1313312,3680,8053328,22559381,874085536,3081968,2479264,38,217418965,33619,46,8776,129695128,21,28800215,2671,18344809,131535,1472,52186,1291703,85,44,1916917,508,25261461,36280414,3918,964839,50372,12909792,24065,157187208,4,660,3630546,412500,61,6670,4225,127,4712,2795,27154,474040,18,27227094,319,31,41772033,111383,300553,17,12,20,19545293,692983869,36109,8030,10356,18699,7899,32,204,15255,21154,383,5,1827483,230,87129,2,733,51248915,63453,3044976,6203,746690,5072,2,30406,972,28123315,2548252,46,15952110,2526,29199338,90424809,35565,18,443270800,441450,6637103,2253798,736384763,171754,91140388,51327002,35,45378,329,80175405,223,122287,2,4735025,1109089,284529,3343,2137,2,556390840,2,2704,753495,18,46274976,22,269308,2063124,63565,148446939,805422717,1773,192,127141,5,1,2,60756,234881,10469367,26739497,1229,444438010,20653,18777,67075,2,214,77,61841,1,197494232,1356,1619,29511584,369,41634233,143868546,9,638,4856292,39,71,4201712,2,5091,16195,312880,11946813,20277985,13874079,5921,5782854,3599394,150,4386,3,3752196,68690,548741500,118,4352,72,308431594,93758956,2,48211038,74494391,125652,61,572665631,103744,58324655,395,611669154,13546,30255878,722126,8873,330,2,8633,271,5026713,47,1900,5263682,115,285091,60,467493,14500806,55030335,113,87276,59947130,4731,1051003,186,3,8420982,3467,193181,2287777,8557697,506395952,767,2581,812981457,16801350,5628359,5735580,10,4459315,4,141,4,842,8295267,10,120480,596263,13028011,1987,32079513,3,200,4614,5,95,1866,341,1,181,3284213,81875939,113,366639964,48,3084,25996042,5315,6,4,2,1773050,17637,961572647,4,1202679,4418012,5297626,27,84883,28720,332885262,2847019,355,35662,805656771,991970304,23,14,65012797,201260,133,249430,6089890,1374,339557,95,9138841,15,145982587,8,3045669,24384,3,9074,3,100,42100,2038037,234869,552,1268,4356,1093,66766168,78749,41,104,13932,19,262439573,1776,35741757,22656454,143310439,23298639,4,9631713,831743,420878703,19206,3107685,55490165,5,8456,2523930,103,151,56838643,90061,461,758,268,716,812042054,97704,2832443,8,33642,612428,8208,140741,3,11901806,49700,4895710,654,34,202557420,1783470,2952,685721821,1950499,3,20,6546304,1829456,49131117,1,757203,1234300,33729,1,10858,204766,386514,1302,3218003,420521276,5067857,601364998,531441904,1714,2703,12959280,8077296,16593,2,389791,291385904,464,286,43,24178359,305381121,997151334,90,13125,45980506,11210539,954,574120829,7,4153613,73360,4375851,5,1515,1330,18745768,212612,89,5,169949,22,6,225983,5710592,104,197194,86936,106,145,1,1342,2550,3,206413,86580,147,864,31504957,4624,5236,1,429317,2135937,203226184,39345664,8297365,4191612,13397045,162072395,3898,14,323478,24711,267965,263,545094,1330,835378,12285,22229005,25,220573,134229552,25531773,180,11,5,9143475,29185770,136977,17,18,1,16,516998809,47,106251558,98,23626,10103,1800,22,22,5541,227952,409033606,1,605167,38,109072,61,69754,135639,1161,927,5405218,51,299949,24059,58,40,248751,1144,14,7,211,1,1627141,65115,12375,88167918,146804768,643,15237588,8193,51294,567,1090188,43,861269,20498,4259903,89295482,13608487,756973,716305,5,18920,141532324,22739446,60,137,4947,4020336,364,26,1,19835941,58,4,1123,635285,8296,216,19,9661,1128,5932064,1,23010,5,289,1118,132731,7413902,510769,16337,52454,32,119,1,6014010,695733,5,123,51411011,161,224,704447321,4712,10,2675,16607195,43230073,570452333,96,323191789,22361,1834816,214,4,38761707,1,39,997845968,3250288,270502,214,45305404,11771351,71810,90714,86,23508,69871,539609097,941,55,420886,95524707,609,139,1,17337485,2516360,2971818,50683,36,1330,2175718,21,3161,3609,237580730,3725078,495,752164663,10103184,7657,1308215,477417,211627,3398,1685135,11954,14,409721897,57,302,909741030,18151040,117310014,6,313576,2768,25,38,422367787,1,361,5,69077156,628935880,2902714,1523,12,6323480,152,2300,101,14992,232434,2,58593051,262793,17610,439780088,21002181,1,3095,44658198,109290082,697,25888,2,3059,9,7190361,54,35983601,106227,257502404,819,497,2720,8262,11825,16866,26,292,9662,26076,2031,86114347,191208,302802,183099,187333,413792022,148,5,1214,27,1423600,118163,42229123,142720,7,163,168398592,699575,10045,3217068,17,13,389101117,402,12,5709822,1823,391,1321,39959,90,170855,73082901,2757698,868851163,170,829,2,15,21912,79,2,39100,359884,413278662,4543746,2733,766092,9135,896,3269450,96,4478,7335,55,7192079,2616517,3481525,88347588,249432,79517,14,2,419671619,5496398,796165,30,1183,2242612,147,809,8269,86322932,12124045,817,50,356085163,593830,2,1066099,34153752,65623,2239649,95300636,3780,774094,135916104,57254,5566,146,10,19580,15044,11088476,29443733,1255,511,1216710,12,1422754,2,16,68127521,5070112,146,53651082,7867,280,342462233,11695,2,35,15,81832566,2669791,85011,52,1093,56427649,66022,1275,33223,62756,30929,31,623022395,9547962,29,124642410,218297189,2842,5,2463463,36789228,36007092,3,57456,7,2770534,19670804,5235219,232577327,2506786,728378,4,14509031,13,1030536,22851927,5021688,111040,274,573520245,878,117586,53070957,38,273349141,5189819,1073650,3,16546369,596249977,4,11358,37,4866,2,4,134,45041,10972012,149545,131,51259144,545424819,9441844,1039067,3625,1375910,149664689,2548170,27,18,2,57,118,23983,4,6788263,249433,394,2,2579,3,1383950,244,890640,20475,251481,252901704,533,39123934,12354,4867228,38,3729,71406844,69,934,9721,14,6698335,116279265,31,1510127,123441048,100930708,3,302291348,3,248,13,359,10,955,37644,4,17,871635070,5,416414,74640943,26693,12376,7,213298694,107083976,22,2778807,49013601,4768751,784249,5112712,63,52021,792449,18,11945345,1,4031462,21,237,1523489,657496,6,152354190,517813,6,174354773,21132,32002125,86,44,9212,41,23012,830,46,2629,5045339,471,9302646,53,21,53,7808,2301815,188452761,461198963,9956,1,146,11467,14,262,541,69,15144,35,1292,13401495,181643,969,193205887,27,266,775,22,6045,895635,7,14,2010,5,16060,3519919,41165821,171,48,325,9,362281879,18317953,5906,17,8868,2569518,37811844,86,1978882,2,75171,54224249,26945,3,639,6,363,1466169,22166505,145254907,305035983,25746730,177482226,9,204,126,146699089,142685,4807,56584,3021893,442638691,754669918,40980345,13059,143,13582302,205490,273889,89219282,3,115556189,28534672,5981282,13,243287,3716,9,44,3,3918,855740,73,4686,4162,665649656,133,76332,13097,86,5,3146,69743307,12829,33714,277519,1297,74761,19,1,3337,6820,7506,1413,1689866,334875,25005,7,939,201088648,12121,456786929,42320460,730330470,252,381419390,63564,1087911,256520,549,912502,567,10989168,1341961,64770386,6586,789,54906928,706,5,687,20477482,933,85650,15467,54,901166291,15598808,573690,146563,1,9812,1173731,57849,226344066,21789122,3152838,105401230,13219,6,1041248,1172124,172753502,61751,1,3050318,1233,30375726,1071216,34899,175278263,91,7371353,3073,2117,33217689,214899,17,411430,511,374293,14638865,4126,6,1380,6,1,3405456,3151,282,38,72856696,276,38758417,1078242,2,378582949,26,3462,201753574,5943126,234317451,21,14,28581,945277073,36142270,102903157,3024277,5033,25972,14915102,37497609,269,1793,160384469,1,1,144281,774722216,22,4704,335849}

    Returns: 2115511995

  83. 100

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

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

    {960,65181022,188326,1545329,25,40432,271,531018,1423,1259890,471523779,170388,7687,22,3686330,345742878,2795,7594675,42120,85,4616067,124386,267246262,2790,51,120,3984,4265119,2980507,89832,69,29263061,1074,1561,1431,129,18500796,14177531,132022,387039,190349,734,1883391,129731048,3969897,85109,20,379805985,58,817318,57672,923,13030542,13001,91,80943,475820986,495,7479630,110,830,318826410,148,179925,12195169,130747,10342278,15,2,37,3066858,820564830,74931157,1703,125907,2125881,518,2844,768914357,2354446,2085737,1,2,5,11440907,712,16,48,178486,220,60408,394760278,240,14646557,265,229824187,60967040,60804,2872420,6,259,313,146982,340275,82914,3272137,93605375,131,46,1912302,1,1615738,8,288887731,832983,483,208539779,6,2343,5,13471502,1046802,20730,4,3441048,44368,314,42,123,3476,8107916,48,51832834,353207680,535,4744,754556,131882,119596515,221497692,29833147,22166527,2347,5988245,6,23062466,1,119940,727199,152890397,3017,30082,8177678,43316,738523,135847884,2156905,67680934,26442,44326,184052393,584430325,913571,3666651,58802607,8,31155,4267912,1212,1900,300726400,6,15,3,5,736896085,8332062,735,19395504,91483,152503,24748,169,2,507657,3169261,1,15302,10,2739146,6,281344,37597,1,9,167,20428342,18628,69426,6,25,69,656603458,4179731,10,6294,9716,193596,6921,136626,23944177,236,584958566,641409,272923,672655326,21322893,71936,11,603868,3,422335489,447314780,2604580,90454,6951,211025,436307499,119,1752,11709041,187557418,3254,216,1360936,740,225382551,14940656,108452,258322,562114887,177,135370,926812,1317,475,24913880,1670,159367,3194,3,3724,123208,591180,1,4314434,1002363,5377892,698545,1027840,161549927,120,2,2,3064,5633516,42521,2,1047,1,133,8354,140,206934325,7135291,7936,8,5845,61382,75254246,33660,20,2,192074444,232913,1530,69,48488024,4,266273,20311001,39,133680490,4814,481,256465,102,85,1771,4661945,4661120,1440,11904648,4,3111,1,1,170601,58164686,3052,601019,173434,3003167,8513,74,11618597,199948964,65,771968,24151,554898945,124,1,3,1,77354,770363246,549261087,528,514656954,688,2980,457169226,144,447354,994565692,8441971,36,2,5145661,123870,2,6888086,99,345034619,1210095,19,2320,6181063,166984,29,1597144,9713362,119272,22214031,131214,22252092,200039353,72709,6,3263,190288488,3494261,35763102,960208,26,4868,57462286,42234200,14522,1445,48747,38,116320,70357245,1067041,485,8,28171,92984,1,199365343,719243613,24328,19211,1,22,3872,3375481,139005,551,60952,865793020,250,186,32,6887966,120399485,7367,598,1939051,331475,107,6303749,715847121,1785864,361304,4551,2328,13501,17693007,237485,358038575,1260,25633,18,5181,241681,108244310,4445885,1,444,24702,141467416,88379,3039,251,920857462,622233814,373078,20672,11,704938,121,13988283,565410,77073,115279215,10644,534023,103013,25,1350,40,31834868,607667507,40818101,26035450,173,1094,90740,23966269,122482,5498120,163089983,9627,12,403215,73409665,4078464,3631,23150327,34,105014466,795226423,5683,389,54,6,317058,2278019,24,42927120,4344,573927959,37612971,5175227,42082,792305,2,26,53,95670,937567,272205664,722187316,34861871,67937,153897574,106445517,1877671,85,1089,16844,2,11,83718496,136511001,6,719667,4492047,228301,63890,998327,362,963,56,1,151,1428,1320,674451904,52570,356296091,2,3466050,180446,740,808592284,16905,54,1828893,572223,16710,9,916196284,146863,15144,102,142473,2203,17152,101,524061649,1792467,7871,724,32280,1,86,602,449,10,36,3363,146,339532796,13,6210,3,5523810,76,921307970,352274,104941558,70469149,19021,95,20010764,4343559,11,2,6,29,652234,109,372688,323873,28274,39835051,1102562,4106,1,58,47,1,35,438227,5,3725354,3428513,3,2475,47630918,2117720,84432,546585376,11011890,14966099,134984260,208860,1204,291,30,2,29356,121,540884,14,901272,711,1357791,18131,439,271,1,196,428934,16936,3715758,7082,1,310382,920,1074,110031978,18,47468781,3,246731,1,8369,540229627,81148,15976,1,149,461965682,39,3380542,4,204849490,767,55,57,63851657,36,2,86,10267101,4,248311,29649,132410,8016,2541,218685596,20,4,23259001,5,957013,493,13495,47,6,976691,75070,284,203,28639,434185,29564140,2646102,329,4832827,2274,76574517,10413,160849,696312181,24,155125,691455750,1566990,205965558,146052,94894,1323748,23,5,101166305,5106,41969,157773990,5051,133444230,10182529,670,2024,871,2024705,47781697,993370579,203,288653,24,121213,4,136,1,3457,40828464,220897619,798518,191166619,14736432,2,86,134308609,15039345,8836,67,4260,98749492,1344612,361188085,110986331,3333,5780,3946840,12,6,18276,6,537,449093818,1558194,603371,624191494,11292,64,1842944,6,3373290,5225,33163791,233,4104771,23085802,158389,408558587,88397212,3730415,1052,3615157,57357785,72550565,23275361,17063,5369,8027482,2332911,4988,532359,16686,3730151,5678580,772,582628,448319345,238,3789,120139051,35542065,2251204,844552,12,12097204,10,66,30,33,2713938,1925117,2,13752,1003280,115393,29,465906,20,130,9,3,14,9532,11240987,6898,749770,926,8147,48,58503,13118,17,377,449030059,28584501,88152,2506,748983091,38,8777,112,94,40284677,25743507,27449607,134327947,1,1273,57360629,643352975,43,862,139,738,441,8,5274697,122,9006,760,316161006,477008,4,7464,8348,11,6296,665,4,984797,23,37021,3961497,4246908,239433219,222,38,12491692,22663,571376002,143,90223,2721593,145458016,2628,16549,16,237820,12881,57054936,6136644,4366170,5779312,445613,662333,353973345,6856509,1793162,458534862,17199,8,43,493,12,2,51,12,313,137,1,139037662,1415,213,7,89,242847,5219152,2,320552423,226161,9896916,3,73306,4061874,4,48436,15290305,643063,64,169870696,598,1931729,4997047,3,87,135633,92403596,178983,859,174081,21646,6994890,986441077,11959961,38,16777,6083,427497581,908913490,314970,83384476,2405032,308539399,20,476727,409,231,66,6,15,562239903,157,699,601069659,4440410,82,993240,529153368,7339197,30487370,340842742,491820,1,17394207,194,5081,33142390,2956,1547974,6058,151147010,1,85491,206,140410745,339,267,6180,38,4,53494,10149,2,4,746670,5017,6374,62624506,174761690,298705520,12635,5786,5934815,110045,2170172,14,585,641,241,1197,233796,173,1828,50307136,10500,180834920,6463,7986305,231,920,333,3316,15,2657,314286973,72,78303,394706,3,192,772159,52520024,4380352,142099068,401,204,14074529,22414035,4,7,104485,66591,13157,231,53502,5346,18736637,79834,105493926,65309714,942,3467623,5658,7,3,7213458,5094,4804725,85076830,5572301,1329,385308,1133,92,29349,4,190,17972,92418,35027,571899951,32025577,317173,5786620,1,35007,724,239091,66,3655,16,1217224,198,153083262,55819,3841,3,36439042,802,19,18,649305131,22717736,408,696,197898266,465432862,61251337,41,651710728,23324,1412402,30524,258674,3378,1,22,3,964645,33006063,372,4035,13,414436557,10,41079577,3588,99,99963,32194,270371,5,780329,63521,720611,897237,2734,187359016,76,174095,11,14725820,35,798038306,234579909,1,319,95482572,17876,11165025,276,23,11167,122,35,8006653,416248,295,9614194,192310093,24702261,606858,102406043,4493977,2,12753004,191530612,10,901496,1029732,710311,66764,855787,203500,728838882,18,109397,134599981,4225,53,3614880,33442006,1354788,46601965,668352596,11668,13136107,6283693,148,511,4862,2871,44141052,2256,61,26422,14,453864075,51,129681,123532872,73077449,207,10247,138793,280286210,169,1,37778,20622152,3,590906,23357802,7418,331162,554043,206791,46868,524,28375,31182215,804197589,361706492,125,970326,19,1455803,3,68,61919363,742168,21,17,2762,25257410,21106,86986416,25410280,40182,268598,36,758164,316,91886,5791607,694,9151,3355,2518996,24927298,68,7541,6,5997,4,328095,383448,12064,123650,250,156,3211151,98985353,16,74644249,30,12,86,5734,508438115,92,21003,2,120747,1,3,9311444,517125177,190111,56395,539,117720195,22037191,6902,4205,572899,32310878,52,969400,336230359,6,31389,1,2,95826820,11079,10,13574663,12263451,2283358,5560,51,1,93446105,6,103,2,249,1308357,2750,139854,956043,636,1911,246686,9,474826500,10,93506,71,768617,30577614,545799,159,41169753,1801125,49795,492132909,257908,190,58545,864416462,89,6061,79210386,281,147974,892022,64,16667844,292,226006816,1326,42,5139,3655513,402,7180,68028778,134376215,25505,36,314,119064844,1775456,56385214,727,53745331,827644,7,1774,36647,2384,190,37555361,13,5,11891,170,880557767,2116,6345901,1597289,373738395,11776,161197,6,98236752,2,7,151999,324473,448,62045519,3578860,241272595,61552,39,1926,45,7,401,183971326,1911,10,3,69096,178647,8937,2,668637222,41362607,49,26052,110317178,790,5973,146,19,20798,154349705,71099323,2659,76423,17722,10851735,98,22,9,38,781537,11267793,13180,54510,5925,10874784,8134459,2062867,2740607,1298,586832,806,2583,43964,1822,386282,303,2,16,754062,121,1118,578,43172039,6955851,8140626,29209,2683,85207606,7,2,130,56834341,68207247,71535616,20,18,791,1560010,809,4241,32344840,8988,2,2837,2,37,449803,20293519,11383,127045367,3321,274057,422901211,87,69253,156028,2,3620668,522,1467043,28647,123,1251,7021,3,49043466,75,539,17368,3294,122444424,4416692,38853295,422004277,407712265,22,222393275,3295916,284833056,11790,52524,1051727,43,1,47,781,320294415,196,241,2818174,17141888,6,112,774158,323854,7586,398,344364,857,101,505830331,187794,25480681,119593,30,5286498,77,1,251539438,103819,4544991,5,74662908,2,140,5912,50,405,8,1326212,691920172,36719,115166829,14,124,12,37,385284207,810,6,316,9477463,4936381,223050,13503,953,1,5569629,18691400,3,153,15,221132,392056,773,851472,264,17945419,142103,6572,11227319,546,762089,262657499,885,13,3,42433412,59730832,82187827,4,990210371,8394503,203,148,8739905,114,424940698,242816,607486,15,32559,51545,214987483,328513,184725,935041,60032321,1568735,24772639,1033864,767,151893284,2380397,62,249513,2,24894,12557709,104,1,8525,155557,786655,13,16748892,739525,250170,175,99024067,523220657,4642083,2262,8071,6,19116023,12172,97,101268005,364,2395073,1391452,825,695,10,822743034,45593872,19239,1,3189096,127,37,703667,2157447,3,110128,173,1308466,5018,887,25185852,1,9796598,102,34622,64919,14,17827002,1004,89252051,139201,1204428,92719372,102677,47020521,4,2775857,388,617431571,13,1235442,23453138,2,1451570,5,9465791,2863987,3,34,440,116345816,4,20,42454,97377,144649,21923966,10412755,159189177,33,1018302,736636,5,353,4482,483957959,11611427,2,2991730,10055,105370,361895,43772,638,25667,800,7812,397,65,166903,297582,113777300,322,3,1,19,4083819,7217,7,265,46588977,161604970,4,640508609,319,324,1126300,4,9,2524,3,924323,711352179,305,14229962,306322,1,748,5932444,1103,1993,101825340,7,2861803,3536457,187,2021,3754,279,5139,12,57,808423,208,196451,1365602,42484891,1011,101505,24481041,124606067,9369,25,150,31503,838962,93,72066,11421,9212,539171835,14,418,1,177,7317944,136721801,19336,78,5091,4266,24281221,448,30,604200,99837,271930,24090654,10,189323005,15795,2231,38036852,39937,55421819,436284,37846811,1282,31,10507,50159,210569,4163,588,348,88,3,3,31,3989622,6582747,143008442,3,631,6,249638259,196,1003,7,10394641,1305,700,94225370,2817010,6520,1,2282,280038735,337,21,4,882339,23295167,2339101,2098380,185,21568,658391,96695382,147815,479676206,1,653036223,43,14201095,95017004,1973,3,139122517,4538687,15447,167671,25231,186490911,2,280764,4,68887,1424,1026761,33636,8399700,44968925,310912,74166612,13,196426,87477,11,11552472,51,721662888,379611,311866,1676972,11813,9,555010586,2,5,73,7,10,1251,23137,8603804,88,354,647983050,231998561,13,34,2342,33374,19167919,11,39,453328,1,1,1,542048,40070,104,22641450,2487765,3,1560721,2788,16130,130319,38,103968,706,12131,5,4337966,1056773,330347,846919,4322,6833,1,9305,11,3,836900758,114852250,1995833,973643,5668,315,11,1,406,107427634,86194008,368290,3128,16812376,427480937,978633871,23960459,16179,12,17,62,371761,4,1927,32820949,1434,584080,4,89360607,9588,1578,162733411,17877,8458818,22,16309,1081,1723,14447,5325165,662,90,3,79331,247898837,8404362,110782479,13790383,1932636,192969720,2258,25,150138936,655092646,91,1004,8914,518,58,13691869,176251,21,202,8407930,374831556,8162,4,2811,843290,119330,97024468,2,44,452714,8,239530335,387168,788,828957569,1,205924697,2258105,1382,72781101,115967,1700,312973953,3400,568173,8,47671674,303893,45030951,32144,586127,268318075,161801,2,9350,4917,14530,12434,847778937,117538,791868022,3099,67538,183704,192,23146,53732,81067390,1677966,11,636536,9,241278190,35,65,148620,3832806,17863,332239427,2686,36292508,63544,21,797511,6585,3882828,1649255,10841657,4,635449831,358292,539404966,838,20,30,16,68717,27504329,2804,73563617,13,51735444,1,36287,32,127654728,6,227,972084378,179474975,691551299,740992468,49703453,5957,3696,78234,1208,1723766,81040618,7668646,8,2162753,111,38784514,8,239201406,5070,7,14,17378,906702,239166054,1521788,839151958,48093719,89,7063,1,196958,78935618,447773011,5962798,7,3,101,67668,97397,642,2710136,50575,57193,66,91297523,7591,294803646,207552,79629064,150455,1378160,3137590,554489,19026,1513431,44613,239428706,11,366063364,1,2709,399171058,2,1224896,9179,55041,197,45323337,87,1,1267569,7055978,31563,351,1496,16,2592143,16061,37,56779,89542,17,88012060,172244130,568,12179749,3727,2441,5,3,11316,8569,14837399,12,18640,2,8509393,3,10362,1,175692267,34,6264,136285,576,4518,1374541,1,117651809,10730,5,460943,1185,167516614,243392149,13449925,109,49105,40574,26630,34329928,16100908,10,3334,8215191,170,5,2626,56776826,30794,25,1198275,2034,1361,24513041,1102150,305882101,3,356,11692,7359,46,311136,37,106965528,64133,16823896,483560,38314,3316291,17,116659387,254055,861010710,244479,1061,21657,8096,462079,59718,28827,211952,44762772,426704,2898182,24665,105,1,1,5,1,20669903,80,372752,31,10864950,447,50381310,319976407,44276332,830009,2845,20460,12,140246,62728509,140799926,48701007,122415181,15723462,413741472,1168636,36842274,77121911,11,242849,4155,4784112,7639,83,10616,1011,139095595,406,47771834,1051576,84,248,23,23,1644,4,39680,837,11161041,165790460,1446087,57,20959,1,168165754,1172,38,435460746,117628631,188380,3813790,4,1,18,2,454484213,74211455,12132,5497,8065,1218,113,368757,1341,255594269,1627627,43575,143645,2284145,16487,23631,28877729,11,2636091,12,271697952,18,24,19477,216,204685,485702077,63193907,428781,25520445,43914216,114797,8,138123386,11982303,15,2282483,1,96,12833106,112,134,19005,3494152,540625961,1273,10754,8544204,166145960,5049,18,38,14287,107247648,873223,11,127273,970831474,18,7986949,1,39,14930,1055,1370554,6861341,122769046,19,7,131563,1257777,151617,198,2999,542,40,707,23833,1,388323,95,724051789,51261563,990,188,10667950,1382,70865492,3,9471380,489058337,48372856,1081,184490,3630488,458761,3688066,187623,32,32370,31,50489172,833,3378402,16767,431154872,656,8625495,1231614,6,195895,21922772,5412,2,52907542,9464179,1901,1246,18931,326663008,19620182,7775687,19,1399,21388865,20020,393364,396,904,4,2810910,94,4,583,243788949,791568267,5826906,1347,426501140,25,119,1,1,109903,2,73199,1265253,12473,1427,2,1185367,1068,80,214665972,37723187,447,82,96376466,7160089,2,3170,147838947,81,83847963,48325798,1,22092,6,5,5785100,81,1075,66573554,22779262,19405,18982000,69,882677,2962803,333641951,518109,12,24,195047,27051,1,3,170562864,138,2,1,3752771,10966,45768,2233142,11,377,278,48,20,1,13,227,27370106,381129803,77619,16488306,2630998,1799,7471142,1180413,86,291904,67,54,123019989,806204891,2110991,257073,3481510,9,15158,371771,16875583,145626852,50,10,12394,17,1939580,14447945,295177,1002,1603,143013434}

    Returns: 1385432104

  84. 100

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

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

    {5222,1,248,24947,279,35002,53779141,2,392167,11,37567,47713,4944534,906273592,1246907,25116,277599977,125254593,150054,3302042,18129,5696064,1,9,29490507,66,59,42152,192,54414329,1720831,172187908,1,1,375,16333,32451,1835,8,961,250707838,4405,109,84,248316,267,82869600,133635,894151086,325237,49653,135,1312660,803709,432115993,525,12899,1005129,762941,11674098,6,13877,6,312611709,31,581,6730097,85202276,2109502,83410,5,6296853,25681860,970126370,817,5,6501,30410,28836158,7857,55,62754,174547738,1,2941,52,4791,10789,10,4130467,4,20,760796,1081813,74,3773631,12,238567754,294,3,714,312625,22777195,39907,236714,5,150,144419087,548135,132,809896,1467,74280131,13,19029889,86283125,18,8764024,96981335,89855,10,87181330,14,2231877,947,21885,15279498,44,154715557,134110,7,19240607,1,8,9225,384926,2,14931352,29628392,5,5219908,86242,39854862,3372511,474289326,39,637,10548748,35,755,33973,57417,10,11660659,1804,185672,43159444,178751713,197138,76,599,585281087,7934750,124553054,65,22186,32954,7055,356014676,689,2026393,68678469,5239263,13980971,168617,2,832889661,3069,3737,542,5,15143784,4,102067525,1508219,10761,16,2238047,1697,9215,2,6,1,10169,226803713,612649,98,33761292,807,15,310662,418,2714020,4020878,1271,3783,3,671929,176314612,779,17330000,36,688586,302,104,6129725,633086,2751,5901,42337695,1254,104,5416911,16006090,5,374399,123514,5949210,385337584,20,25836106,1530581,21,171,13939791,111391493,15,6,54,532,296,6,257,25648249,24,1441636,161,11960,11868724,109694244,143,6113828,19629560,55845,1400,25661874,1954,969728846,839376,1394,56,11410511,1,6,24024,7380968,68664,107831,11904808,50824947,522,5015,26055,1870,96231,99,18217364,44262195,82347,3921409,1209898,1041960,81853,18883,1204,1424,3143827,657,31909,15,134837,37428134,10555935,281129,5,86,27,11697,25,131114958,3,115774,1803,34057694,1447,465730948,77189,328712095,338610167,5,153131,48896,436,52610009,98631324,18759858,31,1196016,30874867,2454,94501966,414598516,671,488,2796136,58796,101223782,14,110,1186,291,13,6642158,1405052,67568,56,6033827,34211,665751351,463,123148404,37099358,136,67389844,29217,372759963,472,45962,17355690,4,10,10,6230,85937,44,16,8012,2198380,3249927,209511,42601017,93,7399100,363260507,16085,4585322,109,2725768,17,254747,30170,178886144,8,7914,1056,202944577,9204,12,77245,1659897,460991,1672,327,5846410,21387,34,14296592,1554,7133742,1201384,229338,3241805,2981941,3,481869,231543,3743166,15004,6,267,828,1,4566,1257,8737,300,460,126965,1141,3357811,274375,209,67,354780523,8,1044,294,30703,23459227,1157547,861966,10923169,48360,15,180695,32958582,103,43,7844668,54120,94,27379,1,6072286,413939778,11990,18509,536675,1378561,118493845,483823,26,163738,124090,7051,11244380,96,19036764,375,110634,148800193,46177,3933,3507,304739,976652,4,2335,41921652,98209,63651,24432462,365,205,43,2,4527488,42847210,654234348,48002,1,728655,72,18223,45749544,181921035,29929,25042,935423908,903281517,8057,4409,31,11,46440,1010,28699047,25,305,1,4833,54,2512,167,9862566,1,508185,16,243372356,806,753806,20501344,41671,2112904,27092253,424416305,517238472,74103397,484526595,1702,2,233254,271589250,15,230,2,1980697,72,46,3824,7,14,1,100867,1102,32,1,685,59,31670538,4413220,220804028,32450082,55,206799965,898040,146684,61500229,103430,32194,477495,3807,337902,68765,2,504,252,26090,1,1,616805723,26843932,543390465,211,14538,224,307,2572,38821997,23385,19,91008125,2491,298914016,7,139701,211914,32821,631433428,4,11375314,2613471,411614596,82043799,531119691,13901679,390600926,241966,169,39087,18,2,6538737,4,366,1153844,52316825,92,1767667,274,1,187776090,27623,277,310224970,4,662377,1,27,39403933,1225,921840160,724,531,2269611,269503921,176587,81,13414894,147242,2876384,5,855323,129,97156,70738,2,113902986,23,58268,1,570738454,29994568,112,77124,146,2,2,10,928,22367,115,306032,6813,573,402,292013570,78,977,6845,101,116317156,14396,469878770,559459396,1,2554,91672,19,7473,2,429720356,10766,732885,392,193326134,9082,18351056,500,9452679,62,403,1067,345689570,63412,4,1,6238357,2,11788539,398326591,930,2,22371228,643,99807,5,24538811,902351920,384,6121408,259118618,828614172,162603325,38,978413122,72834409,335608,9682,42024,4461,1843588,8717,28201389,30554,70778,10822,76120747,525026,24,8,54314714,214850247,52843925,3807,296545294,300,299184,2476620,17875037,291277,8,45,507531,77895,95,117417,13329,1,3608179,14054,153576017,1034914,273589418,209,781046751,131373,27247886,2099,803546951,6185144,205249,620128503,37044981,657355,9726,456671238,101330,41667901,502836,128376538,156,201206262,3118200,274,40,143325,1181,7754,375566,5,3454,13143,6,2412,43931,730625674,229501,177,132,8244,14,100139,1730,3181006,298136098,1,1163,2249,489771,332227,37,3394244,399224580,6315925,112050047,46746,306104,25639,1,853,356231950,110826,3170693,2440815,4666611,12,76948965,25997,91492214,7,15,2971883,5774,450205759,3,358750744,1020392,1,62,15790,57303573,2,289,71,135947,542032024,3,324159,126429726,78103,12,30272357,2527884,16750,1862881,113,25911,7,103148872,91,111241,4971164,347,63,247801,13684,135464971,3,23923,492698597,108918301,13635,516938,348,202410,13608,17202,818274998,1895,4169,396,137,16072,450412717,152,14190613,3041957,194,462266598,2138,24269,255969208,3607,21,75794031,2801465,58878013,9887543,675030951,562816,555470,22191,125678,431260039,949,2,195336,58410345,440,547449,270015,36599,2480,7712394,77575,17701,256510,41406724,14,5,24,1985563,50790381,878530,30166321,22124,14463657,554772,14,73353318,72,233224,20614,18708,25,25,121,278,46,181454632,2084,44777,28203,11651259,776247,10390,484,15164,2720,79520,4877099,47789530,7671,8,1099,9118332,12475672,212992232,4557,21917402,171,10114,12446,1040,248004,2855835,10150707,1206,24763,278,2236136,5,170748494,2622286,4248271,37193,505080796,1495,8255,23066,11058,1029,125,269,361,46878233,176,1,2,313489406,7570,1224756,44,35617799,2544,15,1892093,2684430,4,334452682,25656,1819865,2,2,221,59128200,95910193,2,5,111998,10526,1251319,21111,78278550,2,2122,40361207,11720,5,352421,24300735,3631,2101,4,3,266793,9825235,30,21,1887,22,40,94700,547438,28075825,19221200,788,25554,1,14,4037,99264569,5422,16956641,238,188,14993,90999123,19,674,2,27,66,44536949,9232064,10,100723,838890,548,384741,1540341,1,71,131534,364276,1062,204823,374,501,1536,253750411,704216,102909,63122685,277568,9,217457968,1,8278,471689,465690,1,183737411,88,826,55344,98638,58560126,8248,886159,642796631,28072,194908,18999,34895515,939597,8428797,281881,661870,485258475,250772236,1792,581,124898,55822897,2531402,1488,639462257,215688,2003487,275778,2507,810,8612,2088,1106831,56329,9709356,574338796,10055741,700,455552121,8268,116776477,36213,226,415,1810211,1,79,3029,431200,73346140,9851189,2055510,35570946,7197,5548735,93363,1733712,399456357,105753,705,312722,452765385,7,59278818,21198,243217,67945361,33969,8,111528291,29979,27193,61340909,46677629,7301401,422,252,20,527,171779188,428201673,968108,22489270,85532,1,56,24504106,86472,3808,2368694,1174287,2056,15258444,52,31,28939,4,6862,323974584,62141,1678919,300628083,291340,2963945,10,62158583,1129,1,6739,6,7346,58786058,186115656,483638,1591,224282,2,214305,2326476,214,504102576,7682119,417,11,5682,359579002,437840730,2130307,8986,508061,106347403,1587749,25,1,1198652,280741225,649696545,10268,2428896,1154484,112507623,1,42,106,106694,149,408,66546,7166,965638427,1,438,52760618,105,3221891,1,129971,5234,15,43,51505,109878,13034,2072555,1803143,29,27961,421438,90,4587,126130,2002364,34467102,74577895,16321,54,26,7877965,6084838,3,7107,160,4,43938,42980396,105220,2,55188,3,2,458196163,1,208,451644234,1901,67,7281,8608,29050,7065790,2237613,2362421,1919,609405735,85219,33,9,302,8163,10,119945508,205477,147000,137689,342391188,2197659,18342,201658,118921,8017,2,120,1778794,117770352,102161918,416222714,288833,124309,1177035,445622489,49985272,3707802,17517,633,15969732,1585305,117344939,15590,19248,12895105,28454,344965,582318,5436,129482,998323,41930191,3316281,102994,69,989,2839666,5968,1,1977,3656560,70592489,96745,12003,11948056,3068,327767,1,441086,570841,17322,13785644,302639051,2512804,64337,85233,2,12121638,4989758,2371536,3135,135851435,620,330483,14982,18327,18,42,31,10,444718,2,3,133286919,431380,36924345,618,32,594872,988,2893,12,1053817,90,195,115539237,602647,3184446,977741,129410473,29,24,1608,2,183345484,688107,377473,686451411,553669391,2,149314,17668601,148407515,3161,6,6737,136,1624119,135478002,11578,1637,2324,29389346,8780,13688,23718,61478758,242,43646,1348444,372099235,196267,40017,107873,21680866,1,153086895,1262305,227,504354051,1415,197238,2289115,31177,64861,30,522761,88881,158,1046,1,2498,529822669,2361,5944,56,12318059,2,133925,207274072,126780940,2983,4468353,11,407496580,7519,144627373,81931,210486,28,1,20860,34,146334,112672067,33607063,43,4,20444906,2544123,579589,404,900,26980461,5031956,538645167,566512,1007,6441,53,14255,27,496153,550,3,48336,747135,2409332,3283,4387,1037731,1294154,16392710,100662775,214118,162,282267,84658646,1,109918492,542614,9,36602509,3182,3012818,34373,17548,22311181,2213619,27023,5016,8132151,7993,286556,63123,3973,272659,408882697,8389722,27950469,51,2,437,56,500660,955340,308272,13,1711769,177257,900608,205155,456,26,179854,387536115,1625443,13,287434,2891,68,35153653,48,2184,59,52880,35034243,120968,272,43592,494498491,373622,80313729,168450,342287,12020931,10,420847,16502,769299294,36085,76678526,1002172,440637038,37,5,506,40652,1,199,7473,140660,519785978,159508614,40662,11102743,3,565,108790595,2007,7,43734,638475829,7896,2859,362,449,889412,23686,1609532,60,306,493667,329562,9,508872900,216,803177417,78108,42762,14742361,643,763605,133212,51550,22,2,954988,1,228087028,721,4,2,132697,76,163339,3768,27,191496695,3120,1317,22904,190,43971,1223941,1370,3,1376759,187013,985322458,2,215495,461926488,22117,129727239,23934,21504940,7,52207918,746,7504,1,68036784,3693,18654,9835,5143879,212,79596,1607,35020,385327132,3,5025842,866025740,8914717,18662,37576687,295,1696960,136777,258752627,1337,10,303,397965752,5,308903,5057454,26685662,10429,947,52750,762034219,250838,4149,2521042,17218229,5679,17,416,18258,171189635,82343,254498,103322616,548065226,67974,901407238,18769,32,197,761,4915747,139131126,64407,193772761,1293585,3794884,74465069,8108055,520,453,57009,1,649072610,5553506,109899422,326556,2921828,315572829,20207,69642,99119,3466,979,47436,2,39,613173429,13569075,1,117905522,4331454,5191,24,359,87878261,6,4584642,24898306,1709,253,4389,8737,9678922,1857,15339909,8046131,9485,2922641,12,75,1680072,62772395,1421312,6789077,1672350,3719290,4540781,11,4,933125042,3929010,204380456,18081684,1744,357096,66462,27886,4,321,14,166316511,626968,877747,4778,4215,346928536,4,2,38174,18612486,13184,65,5416411,11983,185,1784,314849,139410,1,34811,211891338,104254,895310,4585,261732258,3308180,99496099,2188869,4714267,41083482,338878,12,459719,3715938,4,5000791,5,13,2,303093594,1401990,9170082,65736,1,459,10228,3159102,6,105,541822029,62564,14007883,27,2191,106153524,4,83814,1824,2241427,1973,128281978,814,28422,43335406,1827,1,1,222026,29787,753902308,35562043,1050604,43199638,428104470,6,1317830,807,3283,2231,5906554,169,8881,2473658,6283186,402,3763769,1,4859,153,1,70,8,9253367,106,15262653,4,1461,355073908,21121,54808300,1,1701668,267333,4,29276,151930961,30,1462,77888589,105,322,3034,907810210,236,3245,72932,352563,9,47198458,9028,307561,486631,20159,203807796,2,64519761,18788695,16648,40331111,133047,523141,46138288,283,254,4,5983622,33402,721502615,947185,29762,171,42785,3508,327756,14,3125,9582750,2737,46208007,70517,897,49,5546455,47,22,11287584,6323,77,345348,550,1750424,116708,74928,104767,1643008,319975,491016,571867021,163203,9,472,3,6236,1593,8,979,22384,27306486,37,1844,33093,361133,3232,1,13,7038756,5,1638954,18789,29175315,148492886,2019,2,23684961,3338,1,2081,1,2773971,2323,1,508983,2407,4322065,35,157494914,2383099,2,1809,255793489,11,63827,416522,168617112,13042139,32823499,14918,215,37772,3954,23971,24,570551,816,9614241,5735048,7130526,759622,550268709,2242,802681888,782568182,4055373,801,10231,1398,167924387,13445162,4687802,63,27007,80716,2665626,21,4536,85878,123931,22,3502257,201120172,1,166,21808,41313,49971,11977,108,315179,13,4,251410,2219820,108565716,2853226,30,25989729,1568,5291757,267453,15,138099,19,4,556,2868,829059,1727,4478910,52,200423,3651888,101479074,180682,54,5,12,81880,453,1230803,132,164947,31,194240,29910,4290661,331480,6,23331745,18,35578,8658,25972488,105913815,262,5,90153,4,1551735,2721899,5165828,2,13,925909034,2735,1010,6,14,867665281,40410,62685,3,760641,1869,41605,129799,317,1131,1,97,132148516,9,23021729,27863633,338134457,2532,421739661,133,410318,80317409,34410720,70780036,70,416,23880378,4,3848,20,10433981,210332064,231,4614,283,24221,94744,454,340457,2,13724,2,5,6263721,18,69658085,161270,917986116,117160599,26141,290582,12108,146,1549426,142,92701118,168802021,32,190,4483,1012093,102849904,20342,1381,2865,954669,21860,74017103,275086,873196,1091,37490,500132491,13,2267810,119428946,167,28,37,46191,37,6660257,3,1078,28,49086,497722682,7619,137980973,26639031,50052810,1,1,77119294,650014809,30587019,543251,1,207138,5471,20681719,6273,417922687,1903,633806048,3700136,158574469,4050702,64,1,92,3399488,35080731,6714,4,25462249,647938060,41852,7,8153,10,4,1750662,35531737,105687440,165853727,56530003,3367422,38,824200332,31,1,44,2,374675,311018996,785,105,859873,8375,346511592,750806,767388,153207078,15347838,12357443,124836,13041162,15,149732765,575458,112993,7244,5168108,33821164,480488,22,22,37131093,2482251,59,11032,232594149,53,36,4352602,168032336,530774,57593528,4259015,13958733,7287,2195,1495,32025735,190,240,1149,254625,229323,90945868,53,22,7,11175148,3,3,646230,3108,205000844,3544,15,46,1808,50,801,278,32804,244505,475143746,12641,154322,140090,9038494,4,493610,944,2604,2840572,411,137687,1,31147,444660185,19,1623,60218281,116,135317620,3790,245497,11,46958516,3324303,88837635,258957688,83921566,11,2407,786550,8162022,202717,933,5,5950957,4,1,217640578,590358,5279,2,28326,1686660,4,7191,775565275,767347844,3553,13325799,5889,2920,15056119,481,1760540,42858508,52426,1,13171627,46,383074602,1856,3,219545,99232,1,1,529,165543162,268214,103023,352453876,246,226,165,22708,1409,2,79,43345971,2377,265,479072,9336,16,61785671,130,56,1318,379644,749482225,4001,153,176,17,7765,51,118612,896,4247734,5,37979916,3733,7907285,42,14375,8213811,2685793,149188768,34216801,693,320,503,3,716360407,169,708871,16702180,67920295,688434,13,25598,56,7315,747773323,42,362,763135056,2504,119,68970934,3195318,3392,13870972,2685205,96733969,708,977113364,1316065,19798,37526671,3,7477291,8616719,2602603,1285,156,2200,31,458202488,64,34036,205545,17,401,44177,116759783,42,5075433,5308833,29,676247085,147728,647727,43160,153106007,2,21117,6,6,9,10,689566,256256,241954510,2140,1,39,128220,1,144389,984673988,18128,4590666,1480,779,70,219,2373127,2496650,6,112495,123587971,312933745,46373,196712,24094,2,94392752,1,6,903974181,817,5700582,54,117,15222,873,793701,636156,363595,378759,36932548,4958,7565,38,71309,72181326,99367730,71166,794,80}

    Returns: 857795905

  85. 100

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

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

    {44827,13128770,2546,163028759,16951,257858,10903,5192,4943,1,301121688,38,3135871,391,11089,5293776,127555741,20,30609242,478,35,235761,76502305,280357,154112,626,449,4,30639,4,1662,38974406,354846,105621691,25,215561288,192190,203839,4631283,54913,10515,13114715,822,3,3253,100573321,311,6709340,398,10059250,23883153,1,221,16586287,105456075,1610114,2,8,9965079,26,7036033,690,2328776,293102198,1739,98778323,29,32096764,54,1671329,13129357,1237,86705528,1,6173464,34,402031481,5891017,12210040,40635,118,24309127,69240,1054744,396412231,153797502,13,88618,41169782,294185,133,143035506,2,402036,57183204,1103457,18,1412,3,1512484,610,205060682,76,1,960164757,452,1,15488,17,20399781,5,717700,457,32,1944,263313,18809,6,115096,400581295,10593179,86,231428,1381316,162280,590,135,16698228,1148,17304109,108142,150295651,138783186,382,1095264,1165844,91960,2939,54238959,2,582467383,7106112,4,48733,263871028,26159,26293,4,25,486750,64531,19,758525677,1436,89448,740580887,499832685,5,82838434,2789,6,5,1,43,17213,157134585,287244502,5,64,15849,740983971,252247438,37405,312,6953,617,67028200,11397830,12060,23186339,5042,43,146280,10125054,168,2,1,17126,96863958,2119,1,677346,13297053,10,267,5523024,3747956,7826540,8916574,84742875,4,10443671,5134179,16,85,2,798,47812,927528416,1941152,112980655,725767672,782028,406213302,280249726,1068,4,6357108,35,20296,76,34,10765,925689210,73,7526423,1054,25,360,13,185,14,31732683,17895,49334,7,25191946,1318545,64684104,250,412703537,279,233280382,2358346,30101213,7099,4,5037,114,2711116,7,2,2688,38,570321526,569990,42259,46659,41769,5,3833014,6,29,994000,838762,568305088,119,4274914,44,2,368090,77,139399030,30550,197,70613,1,156476023,11312534,3938204,88722,66474,235508,1,3375761,1741,137,5469699,2373,243,63284,27417923,161,643290,122690524,5813,1866315,576155,2654,1170757,2,490,181135,356805,67574,1,19397363,231951,1492079,30922335,1150471,181319115,196592,13,335249064,21172,9297,54080773,17,1,1135181,507962,33995258,262797,1443,83505,166488,324070,48614,17456934,54785861,534,403856660,17820,10399681,9754,136121065,186,197303,14,8,139041233,534840443,81658,4976,34388,1,581504218,8634,2,47128480,3455846,210,546123,14692,10234797,1798,3701982,43,4871,26294,53669,9,36569,16460,1335039,358596010,644595357,4031489,104912,5669,95133,110,341241882,2151,23619439,846914371,47,203807,12,513413,1805117,6,98354,88,2,40,63,42843706,322025,1058,451315763,32772,1433033,1,35,754,1674262,152666,6386654,18478895,5837644,279532830,3,185995157,3272173,22684,18956,278,3537,25588936,18253231,117090,8,8145361,262000757,191954,81,7,11455707,24481241,82372,201664105,692854970,328205,25,919,974,126465,9809905,339841,426,98741,4,10,7920487,1,78,1027,923,6476,12508141,19650,137,250192,592,52713200,1,43911,96807,34,17424426,72843,2190,50170447,4838,441,357431907,308413,177470,11392,391743778,405,836640011,4,159083,88891517,667837985,10052,16322,11,671,973643,291726045,276544803,2,1053,73820035,10,54,3,1,1514188,93751716,118,69207454,72,30224,1,42,9,52586944,539088028,828604429,1479506,31845,72,46448,888013306,47769576,13618,54868815,25,2790,45521,5088093,256881,11,215,8640,23572443,1126,39,444791,432065959,7680,5133,35508192,17930391,22325914,708139,407988,29,1,36976377,115,609,477679806,16499734,131,241547,1,808545,1,824888,163421,169293,246041,95198,772,11036,92586143,2,519,56,185128599,22444,194962,77036,2,379866,4566905,610790332,316565579,3747639,38689,82006,313,27826,217,8130,206639,303106525,83717,330169549,448621805,39463,3791602,433935222,349200,12,80,618732171,155348646,2323651,10,939659,20645806,44469,861652,855,384995852,118,449,874000,1,59,81,341046602,1,89213,49418393,64,3,15,3,16688050,6749,17415430,342182,22992823,4133,20085,7,32,24220398,2031493,609785312,3325788,193101,437474,210789172,3737,29077806,132801472,389514746,15307,27927628,4660,84,11,68665392,9089,217048751,28531,11833125,2571,197491518,1,3,6850263,722620075,37068962,1752,220713426,1592313,57416923,75,147277,22210,277486475,11,96002914,20804900,10546577,25657,47,272,58,150684,3,16803,5317203,10832,7,34025,69055025,29139130,630751,17425,19527,5234778,5306,5,459,30100352,40102,614454955,60369825,1301331,817528,423444,19191,1,2524,189413,20631,65,77,1629,187032,770167505,3,2853200,5186940,41908976,45824,1,332094,275450065,1709643,46941,3304756,76386,4139446,1014,409921254,19,99,1003465,62,127919131,33765,53681,2,3,798337,8,31520,17,288,1232,2,1113355,1228,5363,5204359,513700833,232756288,49091874,7,15711,947095909,43,21173317,1,45192,15,3893,6,116184,312,23,1385415,1295,5374595,1282,25,1103635,1412984,174,47097603,9276707,1,1,2192,37,36,1359555,83396976,63,23351375,2067,110167214,138,53997995,2932009,119,801669413,49,297217406,17,727923806,29,4560,7,3538,54921000,13204793,11474385,13271856,6,88597889,65242782,23,3345,218,928446,2830555,13577,15835513,12437,19542941,150649696,1,93761757,130864597,156305,1,1,23979358,17,310591,687724,1554250,215961582,171,10896,2,315884,4543,112,5979665,6,240646,346,409402,20127093,6588,172,137,735,10589,10526,13,10,8,2,32521,1765,440,69707,97,1,86911416,241206983,4562994,446601,7,12872,93,135,30479542,10971225,2,9364,9124,3,304,20363956,32404494,854274538,8321534,3,103735,257,257,410,13254329,271549,620593178,447212,22238964,3352270,70752865,166599,285,43041042,4217465,20,1,14775264,279860,6092250,102587261,3,70696,15786,263779,351916,35,85038,2784051,82051475,9,45,20,1,109990,32476559,23,258,173,2,1,261978,3153787,21,1937278,275,10889,6146279,88625,114429328,372822,5887,29679852,723003486,152023894,918,36,97,221,747,703,258,141961,148,3,478956880,222,86187410,25,1128,463484918,9,3506406,28,63,37832556,233208643,20862,251223,402045,9119,3,20968344,81918,101454832,47,775166,6,171,5223892,105,11463,15302856,32241612,748157185,14155,66642805,180528,5203192,108223,265348,679125140,104813039,1102,1,72692,911357128,1,7947,4,24,22087144,3847,73167260,444,40231485,12,758,6995319,1497,521,18395894,8924776,72713622,833366840,6251777,330231,39590,778,16851,614987008,552145,7617902,67321787,312,361750,91,33,18412331,818038313,887706,439,28508,84,10073296,78416448,80426711,1425,74892,43,3683,410264,46608,1,845834,11795,27458232,20720730,4315,262,44109,591,11,289746384,200,6,91,104,770950,18019500,24791601,370577,156085,652,1,305883,30,6,6729,1,373817982,79900,1293504,6998,422,58180,13173,2305638,1285372,1,16133,6793051,43192,24456,583149662,439520,45,16729,252164,1,46,106,19102,3277622,97509,371,402514313,30834955,257327,52,494,2953323,1,83109799,35723,29570,6,113072805,56,11898,26429,29,6362,471,274,230,482778168,3,3273303,145025,265337315,977379,5,47940,1655,125674113,33209,844,6422030,1166171,299,523,46046,270703,488,295380927,484,398370,14928947,69,14,5967,945418,674,307636519,167468,78,2604301,11632,5072,1523544,9282,26,16888114,480,242037,167248887,17,4607505,361,1737922,27,2843200,8289,535384,1553416,23,6,3,1114,7,192321399,737776,4177316,112,3670942,1347248,4557,2,13896,10729427,413,46277,65,630,53112,15839,1,91,26,25,2,267926,34,98544773,1,631284,420822,58,225321050,5574185,325481155,245,10167564,5,2852,382550669,6,1007431,1510407,794299,205,8694,4,1888240,175588037,12803034,13880,773193,43929,620,73654918,145314,182750,315037,17,364640445,213,92513,1332,131897818,11,7,105,105061,3040,739928327,36,2189959,5524939,478882,2196488,59449250,4426593,635599349,8333,81959,35505664,896737,460,175871,35014,795586477,58055,10,60464,176835,77161,87181,3832887,6619,966564600,719885,3,61,254866,551797,1556,1,140927,5966,73733,700716,1908131,146548,166,2743,232,39132620,62476,142543423,1249960,19136,6619830,4,303443955,300,1482270,139,9588,556545649,41852450,2945,598252074,2641150,12,3709181,161262973,1211,922865083,39147423,89384048,2963368,4,476521863,242034692,2489,115345,340398,73037,2177838,313458,311183134,131352532,4357,2748,70136966,9,5107756,638,1,44457912,9,1173157,3055,175,8169,241845887,466,785,6336918,1398615,2667,1078,119081934,753835,81990,506,1496945,5573213,11879009,3531670,51030,2,838,20527,34280532,4336883,219082449,9119,16277,352879229,25846233,959,9,37,1400121,1533877,30067269,33185383,20,29,328,183401,243787,104,289642332,12286404,14817,867457,303528990,364016087,186,7562518,948792624,148072,164554410,181569,33,200,6889,119171429,13648,1396,873259537,54427,135,6,7285789,11849,1,19,1991,292,2126985,133,114579067,446,3,28466979,66,138422653,19442,46848,820467528,2071,52,531423708,164579,5391,589029,25089840,71665355,12960828,320288,1578941,52,1559,320062157,182973,846327054,1,77864,16,1024,46375,1172,3911,50796,105513,230516,8,537,1475,451,178680727,2514402,118,854296,647,4088473,3,20,5794946,16,1596531,183293538,67495,114,4768,930,108997,15559,18166048,3398,19979125,107,4265825,8975055,414122,3,94233,5189,951,14006,14151,29153431,42,4,19,256,42,66296,1,6913,43,2245,9783,26515203,66082225,107,35392,21,11,266182676,32417,15132274,20006578,2,387556143,445099,675,1866583,1073512,436,874505739,1059611,35,162,67,15473,52,54301,53279129,102995,181628941,207,5,142366727,145451,4216,1038,4,147906,10282,1107,12370822,92842595,472805,39426134,48780470,504555834,40545312,147,708271419,133280,142059622,45240630,112303,554031,9111,6,60649056,73,1097739,279,890729377,8579925,1672,181,737,62013962,29,51049,22698,46988941,9258498,1,27404917,13121395,231,538,56,5,9448776,489,14257088,59,1,67015,77985391,166610011,52,7,44608,16390,7,84433,8754,321,98280,8,9656701,4230473,5060,15955322,177713553,206755543,22,32015,1362,9161652,476529,124,198,9,617766,7488837,33480129,12,44,622,8895174,8,64520445,761029332,2179297,206400850,1416,149,411668,412,8121744,1785546,317658548,813,341,9035449,3,68911,15156797,13,23,655644,1358545,1361892,88,989,57092096,9,266365,1,145895874,53681879,1715,18226371,1108246,38900,21912,4752819,2557,5755980,1200732,53406,734741,1849,2410269,1882,9988889,184096799,12082779,1779,94,5580325,45,202770,12,1128,6840135,1210,1,222849878,127,1,319324,4495,11492146,6014365,19,93605172,425902,142326,48991,4931322,914,47985824,12,29,1067,16142964,20305,4,913329968,5284407,328389,13789,13,698854,1205043,21749992,12,2,35314244,1318,20646,189,148496,764836917,59,106982563,6,24,3497,358,54,9364,2823,16849,65838653,1485,5,196,370318,2255,16,5213,669445415,25907122,19878,257487082,283090,55525,829798,233,4192138,312,28137,274,415,10,34702,1324828,110,14,293184694,57742,56751,1316,42345,160408500,362741657,88275475,2537,581288,324,50115,23007788,7209071,550674646,82658,2,12522346,3,20,553,155,64,364588433,2603938,4103186,1813,1337,146778644,49400070,204476,13382600,184881,622379778,2257563,2792,10850590,8,567,2,291474,4516398,173,122049731,5739,27807,249552,14,3290,140479627,175,143139132,8278575,2,2422378,37984,41725783,2592,48303629,3394862,67649,2,276288,6,192422736,793,13605985,335,81,134013150,3150600,245075,560,5682304,49,4882,3,883167783,7,2,1333869,9672,6,5,1334,3526,252,50,12551246,163314516,96,13405,409178895,43630805,629,8931329,228,40759845,1301,1,2182,1520854,162,22248,328049131,1,1,1,46067,1898,288158796,4887,13121011,119878,1576545,11,760,605,1553411,156164143,1653,13984,38578,213000,1,1199862,5158,3346314,4691430,31298799,248,1764643,286025880,1484055,97,2406265,975,366775273,701952593,19,967732,345340,710,1577716,29702,26557,221759177,1828,54,17675,18399518,1,23,3,238362,160985012,31019120,232061707,27618707,2134,27,505710,44092,5407,1251046,7833122,1,6786,10,26693021,2161007,53,43646659,541,3,2144,2005676,5409,24,12119,135,1313396,1418,2,454067,15,131701120,4,24362,2409842,1,42,56902095,52911,158,1370,224491406,632291,2657820,3554,52,825265,22320300,233672,60152297,544,30821,2158286,4665731,12985,706168744,223041,6981,9,71,61,3,25,2587732,522743,3,2732110,18033,6069,142,6838,18,39,96,40176564,615567316,3688,41853437,55902430,198476,1018573,194,121534,33,73776,116,310380143,1303049,1,983416,93810382,3718,142318,56172,2,802334,442419,1329214,742990300,112663,872633763,107267,33455,215973673,2968847,83842,109,6,1,12087,6,2396300,1528024,21397857,235560319,5,99890653,14257,362613,118069069,5,54,989,3,33377762,125320,138,221,116846901,114,28,56613218,71,4477,10895294,12113234,20901327,1947849,148252,216,25,49899249,469,1,857147878,505,270077096,46,8240,1035813,174124946,251,7476263,65167,27158,8,6,97589354,212797,1787560,202820,1,8,115,10847823,5,12,21845,201081,349703887,2381,18649,540826944,1828103,128912,640415308,5,1,3739703,64,1321,91968,3750,10,22,16403,214900746,1245,41985,5923,58848003,50556,89776073,125,64941,2510568,1402252,350,2,594908552,1407,21674,53,40,227,111674333,5279,45965,9465,21339656,331,60667606,164698222,582087339,177695,2683,18094,43077,119,4230,21766924,460101,270,2,409835,2017,19575052,335,163229134,5998467,39610553,30545067,3697270,542,54443798,4,41,2957233,1,2216064,3,9499,117,85605,21532,10854,180750,65169,91576,2628,1,4493,21848,52077,746,35085755,591,329,3815,354,15,3,749,35,2850,101885,3501,789,1184,15808,285867636,5754,247426732,1221331,40702,5945405,556965683,232,846789197,861061,17981,1159,32086026,15306575,5,20074803,3,16450,813073,3052,189154924,5,719824,426817,361872,875,65795947,35304507,141349722,455,7545120,3,46156,701508,262935,51,209281,60799892,3,22525143,638,104,97,5475,3,7,634,120207884,423713,3707584,17981,1,1562,13,61914583,32,3359014,97,45311,16,1329,510110534,89022931,10058,4419660,4,15,6,20140,48612751,1030281,26075078,8677686,54,7466065,70,1776,9,52958,142,328297762,18734723,898,492191,829358,17,1238806,11,1451,8374,3459452,9018,18187,15163327,637,1215,34,2295,9,510,16,123944218,4615107,11120850,54,240,7576243,768996249,61003386,143,158056,175,1,36595,18955744,660,22177,1040283,4182,15679,750688554,1057666,896623598,907,242572,652355757,1105,958258109,4539769,13526,467,11355,108,999013437,464965,70096,8293,7735,33,24,1336,1723820,211,5816,2059391,193254446,6784,30950861,85657676,1632,47443452,5502,3,1,404,10216,4,1,9571,1125,192198,296,9,10951,53930,728,146115319,946,41079836,1317107,5821093,832685,52425,1918,28,28,2,3,115,23258,28831394,42847363,2243,1,3846,33992441,109200,2488,2900605,8,147207,1,808543735,1777,4,510,58468,12399540,388,4611,272,457659679,152994,45538,576,1,54377581,12,486098509,7480,14502,1784816,313909,9394556,716632,5,39,1950346,61884,8436302,389,42,183369623,4547,328135,79,2,33158,4,567867,11587604,956,994,2,2881,750171954,3648896,191341,14,2464116,9,8885094,144283,888,452330,6804,15923,21089328,12,49,5,66,1,418834749,13,869,15,1197200,46,2461,22,56,269,2572221,6191588,20178981,295663847,262589020,7492,8125,6,25797,72769999,23464920,15588,30,10184,868564,164,168,1085,208532189,28269,33471711,14,500398835,160,5,1004,16062,4980912,68164584,21,46487354,94842,204795112,404580,869,155,128920548,6287198,4,1179,316865,253190,3,8,54807,14454,92504475,3793,80495,36782088,23880,118879787,953,9,6,5293,22564851,12513,136,3,4049917,69,994800115,163612,45495,1411,8964782,84931,330091374,6743742,154127651,1680992,52851,210,16046768,50957957,765,3,16258,10501,4354,4676667,277365,881,7,65948018,1,17684579,15,80,3,85797,3,7350954,33723254,24300,1,4457992,7729,71418162,75,116323729,190,851033,993791737,9318,324,9698135,88172523,40,10856769,38,756533570,111130,2671809,130827,82097,18432,239,121615,299961,85227,3,59156604,9716,4513509,382711,375617}

    Returns: 2735217676

  86. 100

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

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

    {286359730,718550744,448196373,89062565,456361230,936511241,99217207,505727319,377670680,731803577,892746729,779739066,892294062,952153571,160188229,624347501,176907121,104785854,218208042,378389542,113374500,179894025,786048944,924866007,518173413,926940084,520758838,824187232,956195893,556772487,758521313,152977578,238156262,463606641,503255315,945729175,469525140,4973983,740610631,522317740,261479013,952947546,752300029,418752495,952126647,714538460,189765071,420660257,527788553,28884819,35321291,401765473,421809000,517945044,875472009,337610322,589280621,940629578,96913199,395253003,348200836,696935722,334547274,78083145,989450692,986890597,871057108,899072416,861306372,381220574,936304309,316527885,849025455,513678217,35315980,827751206,76312459,765626126,995898063,107823374,970808383,151716734,947754058,200294422,761414397,174581326,88018608,902310172,318503353,769449711,292377677,59683449,901806294,508257074,55797878,437176335,976467480,210394397,48241071,663744503,802101986,851209152,274972361,379295697,150335731,144548622,364555077,754453851,174795000,692064996,792754595,710881662,250434212,675419324,442331312,294955920,676176387,783391490,915268440,717586117,791523637,190037297,561888834,266871127,647877080,629946123,298588775,376836710,98317703,733609960,611152280,127122981,943623571,238252481,984508332,879543040,96009717,983909586,926628366,819631755,707991300,581525055,410610476,141321285,567347642,918758607,989501907,907230708,626243471,115465721,470098143,992107466,740488501,795644799,18402132,815416560,522454933,703255938,408971949,611815303,272254429,258741632,465481428,830262990,330033405,478531721,899665057,540643395,968985461,961432303,483098273,516928614,895621753,288070357,330344346,916722853,832427912,611109396,44682159,248602798,340917449,77477679,478949541,713197180,408093402,446398176,826020985,816113716,864675618,90102515,277865401,277624529,174049359,518319081,912004808,290344979,123697035,684054011,782127710,939141053,710951466,301077731,867168713,403683728,63267704,845816131,166618373,918685719,989614020,31522918,637257326,935596109,360589194,61168956,870346929,12570754,1194619,637292751,904835996,896830381,101958174,852932568,663337951,439763403,570809931,543560163,830734269,846357487,309930833,60973178,448531083,14040374,380060641,513514594,441741607,753990490,375063173,746920848,731271103,551312825,540409312,852556710,602111214,118801434,668282516,464697804,481282709,31716753,495990052,345666629,648343518,582257342,138367895,445940343,134884847,982212007,490963086,505117778,458207475,517556973,275908535,37169457,187268168,188584544,982382876,847151684,89494325,456503951,132784056,342169946,765887972,30668842,472062559,299096492,229979614,256882346,741555554,306182766,500275423,278625398,861402631,324964020,642285164,902808540,158979573,611265288,940931873,813951771,74274352,28446476,124425304,560309792,684454577,299014445,632085754,912761171,358202661,218099510,963350758,300532548,261311985,411664662,842839788,187500757,482335482,506091568,170145388,565781209,433469333,175026297,363418577,726089762,509055256,585841406,828490679,836296089,116961559,836038841,535224182,139235912,90262380,373995312,376739150,550023411,661469895,798296913,518114998,229282736,95778901,630437280,503398400,920099694,646568863,979581440,596578169,256814721,57544075,62162872,436329609,570808274,354296109,882549719,903023769,433909514,516063831,702083239,325078837,907712564,783591879,501107840,483671995,540484438,53473378,705070567,270538802,825510791,497028403,622193910,119922260,87371230,433433035,53373536,226337371,664433726,22475609,779611793,743697599,849760195,114276575,520030622,890216031,925958286,507924947,663607457,77855622,547178904,183067923,280300004,102936910,927858257,976363783,369010040,61391959,930411465,474827788,997686566,10552811,810438652,494762018,116534718,231624296,439935266,37478857,869140107,87319507,870499389,812994820,581258941,968228940,245672760,148867255,727988892,37374570,350095812,797555067,846824941,303006395,223169675,56192302,14840561,945250723,444215855,575381703,711021503,677135489,337841675,663353711,151178641,230280007,665494328,233920134,563276816,391956435,74003117,545754693,376250720,455494635,558030351,510949203,639565049,264340141,658215403,294588348,377941045,882598055,711117306,148367711,355952218,889044033,581944432,862373252,189031966,168647262,700569399,271050355,155487077,940710174,822140790,99119337,537303500,8089457,432991983,954355978,261413970,811094717,654321557,199400021,574599309,812349865,944567611,143988096,307812804,550975655,162439870,110086462,525644796,544322172,393419630,62587208,266447377,874732050,818842219,876945107,363576385,904314962,632453137,285049328,844808999,737729962,429318609,658458653,720332528,471194347,351574729,625434108,895955670,318127940,484602433,923516057,3385137,439529891,846984400,7832785,675708587,145344682,831147506,52888205,59773607,518092701,413831914,951943994,774580117,182588053,974523482,342004981,625284834,883495758,859469294,597001360,744549434,88133697,906092921,519425383,500603362,538569734,169961560,914631390,740427958,822544184,710217044,571995721,720647678,26930916,55057861,107371422,119905522,999243249,658334700,660178530,306700032,113368825,85695536,432853423,516722222,593641647,979522115,494324702,957844675,983540896,463397665,777586744,334030450,865688340,446914825,909366943,745570158,823550121,335539300,382230638,419022872,216783462,971899585,78194767,693943176,97832206,696630228,135068267,7143232,665623404,621057052,204772926,977106824,145965548,304922537,320489764,754864540,81765376,605683654,532561395,997482823,90536191,211955945,295180788,53094296,978139504,917995722,251217512,730377921,294086989,477881657,181211383,286718349,463959642,295234105,871379933,957291627,857265875,707737880,232432331,369576027,678825168,717974411,922152747,653400599,593585687,226983554,993684051,289801346,441084710,933336632,662655142,863820721,301577991,26353425,103427346,115432100,810692726,554599828,20437469,560162710,998102879,618161556,575141085,313662105,377343606,658817497,137133928,571719879,988054136,714008039,661287378,431040675,625367352,198595935,823324145,408068669,412874644,737300729,720348472,71555164,963206787,312775005,220706647,230233553,812752177,607855788,535089951,75123193,640404014,217574829,829704769,387528003,123280094,495672943,717507502,206280589,881683426,172652267,276370983,554952946,181073755,684298942,146740020,377326862,444938951,616796576,790216507,868211665,61383506,280886292,423715436,757809153,935579167,578569858,596447771,328187639,872068553,31664372,224883689,442774204,763222198,956502973,711147516,537494188,617812941,956385325,639851772,387531245,623689018,869109048,625190908,624538863,218165805,664890255,606818316,450865666,481000448,514813876,700534525,877134592,835147627,870869498,828962603,834745009,126086385,17727098,540074075,615776274,97627200,171461005,242692662,613014919,92854420,609749200,675236206,609050241,847351698,439840606,676861577,389772476,35118135,504055444,204627008,812638145,571255512,943501160,201317220,392542846,653654588,823590653,767008521,897557951,586273651,714688889,660622254,51552508,329093968,436362122,207471805,628389481,960179042,944957277,266577796,365843355,36348834,106603437,147807259,462451060,526026715,563521121,628850559,113622809,38994061,374061307,397169582,161254545,123703021,315725241,908807776,526265198,473427912,849021426,304506914,590376441,371709977,716296481,89665901,931046726,929951459,44214279,555855114,670314999,136928943,617723976,201971839,371212284,725859424,489048549,132322219,774733364,895386674,998199288,175810429,951552341,194959692,677494904,736912397,32052626,967223182,22568858,852303176,809247704,888642114,492829970,754131643,817771989,752326249,657396786,637710511,24362285,533305463,805242909,575721681,37242034,767909228,653440528,383517331,924891051,857298345,929756792,174293155,937484153,1563273,901951990,274983545,992024625,801431466,367873793,603397355,87264695,560932872,322710517,180216132,864793277,631516942,376525519,403138342,617374322,368839373,15036301,346645821,712573995,551302969,479945311,852764357,500805625,531426486,583602513,511794209,816549464,190548743,931196727,448153901,512559271,701310199,849718618,973623512,454708645,937762494,727389420,682149347,858178167,802621446,375988751,315213453,279803131,445235811,868372711,364059506,606334236,922575257,964764718,501689221,329592785,710744778,684091256,905398064,663691919,276706863,323336714,557874066,444591313,468318314,618376519,404254454,623836564,449448548,107587776,414243796,302224071,537880952,214073130,462482678,837589265,502568185,665714786,326723665,128811842,375533368,725897347,751233376,302657640,220444763,895188150,908139074,830202753,60951309,244216511,587343144,415417037,632126908,341351662,45870793,337057058,385065358,369298006,869561116,118038364,225565749,108252517,403602584,412186208,567205414,448530792,529981024,455720776,556895126,644336146,985585290,197093150,271791065,165163547,480618378,276089456,542614214,872324504,461318365,696476117,990972519,623552001,77790985,484053795,75414210,76360853,822988951,516573161,845314549,691799529,936303553,122760421,824046889,3838405,473050931,868578387,20520966,322054339,385021010,47470633,45384920,622939415,670026537,131040842,388037551,195063280,433909912,176539296,436862542,89640318,697122227,683573928,789141123,754816746,639226084,884439657,165936717,277708277,188558838,885599516,508171798,693108202,469925366,810895160,484669200,890089566,281794260,760444952,75042210,982935882,788870269,742570680,105158355,764200283,499212730,68324495,261422054,479532768,838435185,357997521,176390343,52194235,159566671,119471407,869375415,363375703,469872554,736015903,682031433,684141186,716141630,295713159,142346969,636080086,650941725,674547569,230064619,656708243,931244050,93598323,755260728,486099764,37662627,852751746,534287187,715964636,162409939,323512394,89367551,56182861,418862579,622101168,801542638,495773599,222052280,730089682,709437508,353028166,89459985,169898192,482155769,946391576,163560611,476000011,125785443,395088701,556043979,696244407,781248006,852417485,735843907,740441484,621153184,53071639,796947202,689355767,8927402,243219670,612504056,146592017,149563673,828764736,918865046,603152924,463354788,777080535,109659386,851694231,872780609,354919141,888796162,318585688,336284952,144942447,988811877,378705010,156955237,627136212,136300067,388684004,411904724,775261899,22395367,407629536,717321808,727106580,987464391,721283595,604783962,869292234,943457417,311302821,723681118,835918291,564622542,226848049,401474368,937399961,930864402,716628180,968145120,805860583,489760339,783369163,860763040,339107409,116840998,465511954,525682090,437227975,856428583,53472807,12603103,236019348,648988300,940089879,300824900,528286357,965879411,144379592,222911608,674557695,20367354,598971278,325311288,622277877,687914594,685890036,210713002,921508837,136842306,697655765,72241706,579099948,39157271,515930619,446020376,550610883,557011443,62897471,831109074,511601398,724915770,288414136,252908295,945735971,991111500,667783110,830050589,655970589,471256396,570964256,618275723,506528836,436929231,183869695,695621454,780762519,220446159,143067258,796181680,916128615,815954447,451691214,701130686,533126005,662205556,108773056,103079778,557857052,735748535,488100534,731916176,349229840,720218543,888161027,419034260,587435611,551142593,813246712,34053871,303645750,902496385,245406335,106690912,637043646,968218240,799111563,452438311,136467120,649475437,850836767,769168526,92312605,433280481,248673669,84939932,193121290,286355523,851410007,611468799,669036848,616038222,365619185,709002823,31159629,954763773,272317642,676393361,995872847,321951411,219804158,485347846,673577974,834617264,731836368,935850452,819720749,14532923,401279234,903827612,32839258,552992486,626973489,829226626,570257478,670463959,54797190,852568622,38287611,574802658,281125345,635534399,962419630,849253161,387198713,508284737,52010562,707801157,382625023,997025183,201537966,758694213,233712975,669071064,823936994,552724726,591071266,629849154,123277079,940703788,848905435,473329934,178208524,971843571,646361402,22299381,919522436,719864900,902287886,907046883,65569524,658695465,994549932,225991401,14263045,303421901,469466486,903424898,665879556,632347185,344904889,229389435,286447963,284817911,988855857,494235096,269051003,87420445,754963799,668378694,615580752,579191094,5583479,735193059,665353612,549441666,934872048,830547267,343750385,907141015,923712025,946986675,403530094,800781160,827984190,126151349,720220896,37328533,549425464,421730722,609949496,936228108,507101821,215026345,590616892,610197537,873398616,681075272,428920372,267241403,400473387,514094954,305828951,363827908,877380490,202620658,605570926,642086523,255634182,652795492,850538897,213229207,439298955,142271464,176825194,515083833,950554453,686025762,779264647,350399683,80070817,442011029,651927764,78886759,699778094,551315614,504739920,627384073,970574807,567664937,591818372,809278052,910586669,993721831,132921701,773871410,444237317,288937299,454320208,550961162,275267511,836487591,313009781,248209067,7803674,164367895,675826719,580603113,645394611,170949531,379949099,606280462,65885300,747931347,10679151,505080322,75916437,625630263,455477798,290714608,941069901,953240689,396679022,327436428,540433012,790077271,393397772,122905646,991827771,413294485,787452502,733543615,368327922,526403967,942463680,226333585,114612906,271244181,279945719,648946467,800208677,971405565,707859500,345202986,578858775,284138095,487568579,879920175,935152960,199671238,595041495,217907128,377810400,911490096,620169775,795773777,549630506,89107778,307706646,888716023,954916008,711387947,373223547,552755372,963943405,72062929,396422081,948942271,819567962,905405241,709180025,358971177,132461929,919621443,628522319,61485129,998239199,455917469,926296887,234663248,395637375,171250451,149703674,409487563,78242553,665714212,659409214,723003884,147171162,285117393,262673814,469639340,282044215,961212881,825023194,457013036,766848658,95149112,512011983,971777702,611462232,174543268,726707008,498323100,603776740,654016429,257088815,366089658,608602125,586712895,527182981,475942961,664553215,111860221,827304949,219894616,318713064,523019132,826280845,856966095,856880952,561828395,437898374,786081299,11656019,569561924,788738931,886622360,712093785,620116223,285760567,868233110,964456954,462988251,142612507,300477496,14405113,569975184,932335792,759550335,922359001,559821035,206361449,238117654,131041215,983125165,830152084,64271012,742162522,35095270,650338954,783776864,786039337,538977810,720741169,196781714,520865357,937325878,242223192,808787183,258844233,675132494,87092373,182243368,909921161,782055223,991142185,147260473,574518124,882926440,275420575,128090193,860831747,208365400,258884060,809237515,255777159,140500555,544105647,344767451,581146688,643399619,360391447,428191070,637421970,480841965,242734902,24472952,241684137,526810159,56443023,77889805,834320561,830732933,334551482,107751319,546785791,878746326,734579393,363379046,260756936,373807925,331329711,158223758,987950984,781937245,611317308,923064597,367387749,399141801,200868857,460768322,622936545,642974047,261983164,196176166,97432314,443392662,74822029,532699406,327913185,187372619,492717828,228728497,972844493,144068471,21775281,563834648,851252716,487451241,876103578,896415808,20441335,223063422,265779861,518635186,202291065,66350078,257632230,240453283,295577004,883603762,503906802,576270033,196244975,968626227,354474431,838969447,610258190,673169049,172889479,360785653,494570490,288779317,403358581,855552057,451798890,609284958,888451740,970993990,279484081,88492009,178551066,831950866,7417800,304169559,645930247,534527417,70213497,13023677,25966355,652005251,76225000,350774444,418854468,156643403,540081052,87603050,806241776,942978492,336045666,542029152,635574041,860665493,843469417,319475487,91473662,763884727,842824329,909421902,902777813,415319396,754563422,270944389,152085055,792579595,798522627,558084925,136714812,622682273,271824333,779964236,220261424,94266099,488307401,56108346,716178364,539761685,528314857,454591384,770016004,770501712,362737893,749172722,518454664,131644228,852652761,77300273,115364365,662645960,503945780,236539984,352848240,601004978,661647660,653753737,826861588,297884107,520673962,17596606,999004238,820999318,770109045,908934232,843424094,300105234,118681812,28732094,156889093,454314541,618108417,243603062,177227315,836451427,143279441,618185353,682203836,112797097,566425359,847819581,58229952,978864908,161097132,277476481,387309596,384799,542961766,267585670,749367563,60367553,734568769,642599617,231097896,194244064,984863196,287389767,179629810,321217260,84719664,243663969,286944285,626867108,47462855,918765948,103882915,746169100,306973176,301246477,387184900,265737387,142901291,883995981,889349870,888719924,497619809,394291426,153928848,168438216,979296215,716126826,396066950,786828569,199743184,723515834,66901838,331088832,628742275,555506298,948569106,115859061,40559039,241863595,933690908,503246611,740724831,917343440,716373744,703941543,882691734,689086013,606338957,863298886,350278468,906723777,489956913,771604205,568115428,692528613,155579668,612712509,510528021,318044684,29803407,825011491,316701828,751132043,980983913,433691119,562748764,752005117,602083135,966142459,550282103,599106014,256758486,831986906,801625127,735045245,28881302,800261521,567464291,436422098,419903425,873756384,95120138,851527010,687900836,378139399,743607250,605478926,230470192,781393027,533479186,831620451,573603716,21433946,915609988,647593533,223936504,369193715,98695896,268293248,940956597,195262750,172069858,465256857,142433898,383387584,45447322,971047406,530434514,903420379,921224422,591425637,863839751,482099864,746023509,589423523,728661663,458269260,356047348,252293882,117502175,474608964,197389403,886833582,587709800,727935971,698900689,687926237,574917075,166669183,958458496,788122555,340826108,546530497,759363335,359018689,169515259,208448036,770427614,461240811,443533045,610588019,842382915,40540395,97983639,554722791,206300054,596398915,373800525,335042282,2555122,898075263,231404920,612700645,838776650,963779947,630282242,150711947,367896826,830207935,190253711,651156241,239617437,867811525,860511283,113876796,757886087,260871404,232465889,123549299,123444445,788796285,795220144,800515093,505387061,350056538,374773577,282276424,581057135,866094470,204391701,927360779,521537757,719310210,996216687,198848334,777449130,32410888,242795066,179014567,965686436,536163672,287194963,151741688,452430570,59797601,623437598,610707667,213218733,76506144,26153868,181322919,719065233,847630201,956302216,6982378,390407575,418648840,198005258,903618023,333900736,50277315,423199649,645930790,831270724,729311942,338793941,910330455,358358108,996389730,782202099,345167187,557999605,920926718,706648965,846199982,815545752,270453592,813376326,322360529,688169928,124741022,352143304,486370780,819365791,150535790,979626843,535043145,982292846,910341810,112169228,531968412,142647219,871823079,795579309,688551428,409126903,787591769,533072667,907512632,645188948,520052946,138452967,148561609,869995067,766253023,533842637,811844571,143986164,767923196,399876031,955880492,971900306,278462195,993422570,316182681,889431071,400688330,414539634,686194240,439119554,213823544,895239829,839332182,73909018,206843601,167300068,100118780,299279647,128203707,709744795,994017263,218787562,588711033,791001122,996764359,938339910,742610018,360284974,417745745,564481800,516402266,542420118,122739394,17077887,624608150,404402318,383660820,952422338,972846376,796037703,331869732,250567236,103008326,725558442,199270615,744023902,118500863,574132118,694640965,698384486,857050149,14105581,197930779,293051463,857162574,571207932,248787448,693891164,187863680,145702209,539008905,849074750,612595334,468167041,584573524,59160824,639436782,722258291,385235455,486046012,507472370,395380802,289112456,977577187,978077113,470764896,592871104,46449550,686945820,11254566,18446902,4990916,559639326,108196983,947413312,54103105,609743231,427738119,612552734,207041785,585682930,169563706,840646448,153790199,198104554,932030825,982944154,328313581,307342700,547610079,343260473,697917992,332531657,364820724,851436592,419538690,875188503,324806025,275582201,31974735,546852428,574033037,374648730,202051374,250785751,530428655,395102592,622059375,444503850,799543248,858128466,927676202,919923138,101920776,605272002,304988384,90576729,492407392,623535397,757516829,454558185,611320966,929560309,205472703,152853882,384952779,880584354,928561845,186429125,695947532,567799332,235195719,50693487,294788818,57014385,558282651,627233387,788289129,347128173,641111854,565744119,545232447,197597410,961300495,726290322,752636883,605979141,691152786,758251901,333932871,150001568,942173418,360025871,734539231,636291696,105891123,3064528,3709049,343018098,924592522,233042141,44143060,113014519,509525303,215976049,404842734,224183719,157273075,937287708,287491722,858043607,513399467,88394469,602875872,351964303,583135062,696843277,443251862,683842355,334622789,376532017,160500138,393563905,916823429,437972584,446858014,593895271,25764958,940434418,568391865,984666741,169763610,296966595,456285179,729366890,34190491,776696969,679487982,437941286,12674915,788640762,314166954,42190886,942780719,681505073,972781812,654484522,199068315,642831469,76236216,958707306,343463504,39785692,378218350,492861866,68495737,649727083,800005457,685233166,272419619,245473975,127443498,231462160,66791332,107660907,145974176,822402831,509667760,142139522,229819698,294888601,556457538,918649252,196511087,3746913,631592169,702573022,357027613,905850505,505263035,162008398,741000133,399967416,549285037,116214522,238686862,131716209,885173187,666766075,174422823,478275957,553208083,794243294,71875525,488980661,324312998,949574664,689684143,356502524,45973061,229487723,48100891,386473737,700465861,500239352,319222890,144573466,422571689,473647981,439169775,694860612,77707955,261771706,851277207,896562986,280517573,254691311,313154204,493079594,602007724,724832052,493765496,628014187,820549018,948434096,446594160,51958398,28894903,466345084,391909368,865331882,902173236,352676780,281911369,937810797,509129422,491765044,555322583,599207799,446792267,348430770,1176040,599618566,690432720,430959310,70630033,233110027,223191701,782349455,199291935,3476792,365077621,698156907,202729104,911710415,352956955,557932622,449162954,210548265,512016180,838164451,656525967,8447585,737480413,475754899,521452973,720548970,814052526,881210883,477124718,617290958,601789457,587522696,148119419,625482059,737676180,551396847,164665431,758698077,962381198,312963187,453252970,740654783,292215929,776085508,338293230,756590490,136053471,17832041,371151267,150259501,74879655,330461362,321178527,400219326,498290155,319333379,696379650,640939743,361363034,518151547,741398511,61325126,383407874,222312205,492373752,929979077,659801159,237435838,63010173,57129582,683864356,460835755,636924774,330944239,765114891,829977498,938265749,256692271,582681557,157127667,438135360,944875935,339870533,725058953,653866422,379797992,412150050,361032260,506033971,923079901,350843188,63349337,162529039,172121786,289888143,897899803,59700739,963270734,732260549,136761204,109455252,612501317,73637394,521435069,316517831,189728684,442865357,412261016,803466407,756344551,582495577,560826674,807824446,986523424,890140728,910605725,607300656,629162822,467761576,500733677,406263931,81071834,539147260,100075291,917068638,837049866,224423413,546811749,714378642,835115121,661002140,809642755,386549573,373429714,84043900,753126975,295419492,112073749,967830602,714571611,749057616,439652981,524318616,977257791,182866762,338454584,481786848,855179776,101546325,986430612,71917245,579715386,647860168,131121561,114195578,651898336,835341255,218178305,444659298,663741240,231655654,284157801,59451567}

    Returns: 23715029232

  87. 100

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

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

    {629239786,16436219,884402000,721938771,146120848,187086219,725835570,907678218,908573278,75165247,744450527,560013856,259425294,672469629,900737109,327682268,642851776,3819820,147928127,482594988,551026906,360666591,34528742,858383469,822870414,381022864,694804371,618148036,732278964,496437314,877778466,75402771,808507360,269333608,290222509,906429052,331730088,504149406,965379933,221926788,17747203,518017023,378049960,255147396,969470662,897139563,604742688,699817147,763898947,126727663,649006866,748205451,264346762,371124657,420793844,929609991,240465061,46715014,533361759,114487446,420764621,508128236,379619916,45850338,369072253,673996243,173500643,433383739,348734705,174116963,43131862,217680588,862350385,390716806,127318235,377254504,851539124,284092596,815028773,260528239,771942935,419763865,252930546,507855923,229134307,39636715,905824336,381961403,675797255,605453759,19791591,97187085,331319222,9394850,560540343,201338139,216968232,402870160,179269912,242198254,332750276,621352149,252514645,987768162,953891963,457419017,278732524,920904696,357498384,202235080,551129716,354052483,424554835,172267707,323820795,106235013,653389693,688057265,813224529,504420457,471738606,876946161,721798144,561520511,243755869,690372563,326579554,521902396,665903993,524036265,518625284,618813299,161366322,601280937,709731015,240657354,740505595,588675867,751853108,362599470,323788775,684748984,658425159,157571468,535380638,178172312,558722933,944012744,888209522,24207808,55657214,161734605,651030898,905797227,243446117,180154167,650786175,45485087,8365733,568218116,618608948,72305233,677114291,512566968,592610725,855172879,973241178,78575352,717067089,288200632,947441694,835007811,159864261,112153290,811698862,294627103,757157660,41316472,460110707,946652321,497608215,468136661,782300163,860125705,974376609,753092550,817084802,843864174,396406921,261416477,854352354,132302688,135006573,893523280,46966922,751545875,863089299,677524839,949338905,252670285,540947559,970978009,478518507,390539859,88859215,995120761,273972471,550603401,667830476,795908826,379262881,900151777,641249096,942338352,822540478,110302195,671424719,993233923,298804401,474257440,391763477,312328762,717005032,86338333,882134639,138235849,838079881,562318821,607173660,521175295,573031800,252767545,811140419,928759928,893350734,71653177,342563320,998288644,414199670,310836074,706655484,324447089,859256715,812268496,837928513,497693981,738986548,281632573,536575365,852482275,478260079,155748415,988939792,447961626,506547777,138932420,211646181,656096113,555522591,652625619,574743945,985589517,201709237,929799235,820522608,761176559,209100489,257647796,206435198,60007284,954847247,977812955,118482131,266499445,526210453,245222301,587680683,778806722,428722955,592527187,126311564,839012096,226755891,274551627,83651480,875162780,84951990,125392884,527730010,475315583,709384886,399706180,24151935,261889945,847633088,12642134,904225164,658462838,812022957,702523375,581379725,483165070,161547520,714696979,553051099,468383637,450196432,430921506,690477324,79999238,832299955,317118527,232653341,441404350,388519781,182114963,465530047,858293890,551596129,897868384,443250413,576361656,736227977,77849612,104940226,128694834,858104605,921393806,330359283,891225421,340166467,647423793,770875697,913353724,944591953,131091749,34295050,285208744,551983823,735173696,43032902,967054171,864601235,38689346,449476756,36937146,603370122,21728652,865285287,67312564,966638346,520488625,862495177,640449825,218030164,280108951,786333384,857911055,121687717,358111253,732263277,901592671,961787889,964765346,581773341,277256679,676759059,523088272,805497920,589527656,6488978,956364955,417285877,687768760,974197746,150273646,520189452,429896616,182456276,377276279,563598376,53863487,841597945,666852620,342654671,661495808,63877908,532187589,675057976,693380242,809107763,511670407,287009816,385941050,807315633,217751481,145461905,985418249,179864842,373411095,176583692,228580826,280650131,346504512,593558663,907973986,452927136,493075167,216410656,768815875,381687690,545628850,108805533,913565696,456609657,188540585,240937806,110580253,943602063,559228172,118488116,310568615,253220610,534869910,2666210,250968224,925181473,549442370,395339855,951075239,202983685,267326324,239549311,348613254,686473882,725749285,330385080,416185191,397227423,884539497,265742550,529107153,88040849,349644135,610880807,462983331,813722761,98571912,789850846,547007538,701667744,433322992,613506520,24666090,325196289,316295156,126337105,550750244,522045750,484772888,331298175,824479731,102449240,971992879,851569984,138787807,580865341,650122770,189652414,714156509,694066351,766077127,449766705,432726425,698790820,786692091,402947986,112879632,966333690,90946061,867088381,479127367,107813864,372348076,381091696,720031896,959147985,57937457,138756940,6743702,539608117,44576417,318572194,664964052,301589405,260998498,272101574,922848498,164953658,182639114,583828465,157738492,663200425,541203780,436148900,794122427,97327564,854174220,757689730,222730921,849553887,923202066,286420935,73361982,358681321,360797478,912351093,733511675,651369012,589022714,197274650,600035235,905301405,437443461,326503461,587935062,550316041,374727522,138924754,607628254,704970581,61712255,614446632,93169088,881630807,285056780,514104982,923421276,674966925,185697252,154994372,246967488,183968761,338154214,189515796,216140986,450815323,921783812,4837218,243930743,18029496,167408709,279521813,630812483,584915310,141511538,695565640,863161681,655310330,953828424,727439828,267011414,797833049,853543063,47913288,576588862,862360649,710059472,524729067,185009447,474938123,542736913,787857066,918809405,810611969,654060421,365661774,563243716,220655790,954438260,561771340,906555408,748525942,28621680,639156984,529425957,614812328,241622981,20061864,472176928,733589276,16848477,597325729,593567199,510327739,186855667,661820516,295328010,764705914,894555546,948567326,898695339,378094878,414881956,619047813,228905058,378715448,429977848,848241011,576145068,542754041,847525104,187254837,983571158,925733956,799079661,174950206,458901065,42461530,689035387,434452880,591730736,838960486,619530477,524498863,712221120,81337615,604938140,363478713,315923055,32801176,382964656,922459771,246103044,583318502,411758815,622783122,283006109,631955898,930804283,376533184,33621709,354503905,442507266,680688138,674740317,97160543,661904642,255318543,442589816,966104711,160341412,167388893,95117377,869602382,777675641,768363245,112469200,437955707,229713237,251665722,289733332,527094910,418788967,126795913,746058175,551823398,543443439,749709213,438090261,917951515,839639060,979101122,598460512,98067498,410358965,916622260,908288775,381916453,256255354,942714312,211301630,365361665,589461086,782238579,685429619,92513162,139044506,575202033,376515846,706266052,448271331,429080932,230301762,119869108,196669195,895210791,391839690,60386888,361910774,147996382,138996790,197950324,710501288,840093032,3482247,357175963,208713736,636937568,889707834,695690491,904185472,869002754,364940987,206570350,620635681,57072647,997579267,320482306,764009638,824098141,771935608,337259579,318867750,429768157,748923278,782386450,542517532,320188586,907746962,287325152,529049074,827978213,765456403,195129427,513061419,948931971,700840229,941510959,819348562,912798801,896004709,69655080,398453249,744664694,711722958,139425964,593720855,46971146,686036113,396327998,516113330,322875229,157692662,998543394,381343149,601063551,200395660,657305416,851170815,657579716,206852846,21157806,304324622,935995406,474639655,194966276,864627334,324507104,418243883,433046724,129928316,94069448,516167091,736697414,609056935,852372627,919699005,488508529,801543983,31480670,594288885,740266637,611483385,154703438,733615035,951356054,657130383,278608648,786114994,77464326,871742285,362428514,521308551,532781812,122518319,867121143,414270288,132084416,587719996,384682768,94955143,430198520,458927834,656492186,991367215,895423493,925270821,511851866,785410724,850757221,834465175,320436981,15425566,630376846,543168263,434402145,28815245,219756744,883025076,238273766,439559852,456463762,319866400,575661509,788648014,937018831,182140812,67324650,359375653,700251847,696993469,925559776,672020655,764673822,450364097,116490121,949424052,590385981,817115658,937326887,443996064,221475341,499614271,423728879,998256361,651636255,36436644,912380246,321607395,710499210,630548149,763150536,195982424,80124961,710545990,372764461,546753519,73627457,66885121,342538346,554604247,14071880,152908842,128452047,139081359,577224635,667067092,829146807,849642659,830195673,963970438,259136053,452363584,392696404,160930957,656899219,782282794,48017320,844265306,745007083,909693485,599051348,911551060,963651647,412911533,718728872,298100471,990337717,586722124,303166975,225419915,370784200,564758895,126933680,209753525,69307351,566274422,484637120,846605455,260715636,518702422,215681094,386235238,605109773,207894769,36537885,289832268,427705894,35642593,28057713,935374251,149590273,313372584,267656544,22485296,302555665,606265646,440250240,958141005,396020417,933314403,760331775,613772425,940558459,457021405,425464841,911621199,943666940,9121620,918707835,758302293,148942179,165722716,342992470,559204245,271495446,928139817,978650948,728292099,364844572,465395032,408204447,318241271,790156794,159155464,84721485,482051190,835773982,380052895,806944810,160946490,939097362,789179565,46670566,512986267,483096582,304350119,109383583,535664596,835776965,432108884,850746222,324320844,445688785,681247275,556986311,603657343,444847244,696933941,491412067,260214819,34756844,262446783,345488933,618881077,417517314,565014061,560938531,291209677,956478147,193428062,222644063,262261572,81911941,990896158,225280495,863258818,435537572,148525023,366568763,511389716,415395010,374502284,117572631,785484078,788796886,698244244,333990232,33085465,656269459,971646446,219273122,714862226,253558035,675521878,11026446,561252051,953267958,426785426,175842864,504473034,750429365,751372671,334873373,873703708,761911576,612759875,422112205,301943234,548731007,985772471,283383012,584576568,661378028,860577323,650633290,784418243,808707335,341348564,962986692,292442974,182329051,782012829,459074027,567611154,433670222,339425250,874929213,235043620,316899482,74039013,265511873,952151600,819267899,887711801,402974448,99301286,874217078,436386821,499113816,33842700,104222389,396858387,880398811,674900129,644772794,339271588,312809552,969384528,325698079,851855637,134661383,515102360,485694506,627791884,119644626,582842956,513596064,199067938,199949155,231327756,168193740,35713739,865758793,785932665,533112409,470048683,707560406,88218459,204382466,705312147,756637246,204015286,496007095,696189482,826115972,691255898,220595391,853257455,515566700,977310703,201378008,182646650,519812064,961429632,20466553,391245062,999143231,161325164,838267106,3329650,440449827,941595299,153683698,256866959,759376241,702689124,835749058,727381906,420031051,398100658,4081261,392163447,225919105,300183450,893608529,519759495,17791019,952401428,518919472,587732685,825786017,159297857,975177264,419854105,380519672,967458987,345772953,25200535,460704988,170167718,32697034,57666710,397389262,283795873,113793572,623534858,167808775,837742581,876114009,182639222,303687403,165744378,570338395,118691809,197860019,892935266,692111769,956256028,728641197,248510855,255077015,268703966,298940178,441429707,792891623,93263272,101099713,824654812,986485733,627076546,340193235,478825289,744923644,349270808,480585777,409195287,862606398,570705613,481002375,613565215,926653194,292859125,972379593,539945071,991135510,248349282,938870113,931183815,719644971,274650891,613277923,260170513,509166252,19360291,750684222,677725171,473994820,621008313,931192924,227751559,806404816,329648163,453527198,92130329,6728228,267314347,177387549,83503550,833738905,320864243,327662938,413381782,800702446,684533314,702431444,52271733,728946540,399215479,552649508,892530422,519740401,42252112,435522055,119879368,41593739,999131744,111457007,777632826,54207606,381019255,354586152,82285917,632801226,378641944,589223974,687725310,665642356,738328373,72724380,118541386,676175164,780323932,805196985,184336877,374798661,540461060,659292819,748705256,447307708,654950924,53820142,799267650,811244246,239323723,86339885,521613826,332463065,808245225,99338090,458771067,448500918,479983675,883032991,37358626,851378110,336113461,555249256,38954775,86531854,990458118,987408645,816363417,273970569,924874312,308967730,502156541,532289383,769857498,283055126,606454686,816977919,437568568,52618737,888009408,268293725,751111576,179181808,213982033,668917440,1634424,317433124,539836387,644624882,903890233,863628638,549309360,70786197,971504254,530213967,385023760,813893692,571004575,449528482,472495055,180381113,136989955,188097802,107663971,521134299,702172757,137255119,526630810,251301567,370023151,547668141,612592954,106265531,181721143,732702654,694840548,833678059,964639917,716550310,543296723,296045035,339107482,927154295,41436640,628718175,873374163,983051047,232703500,323755858,985752734,919657139,506675150,832991925,770022881,626621690,969737978,281829432,805927494,456385525,506830586,422588105,994010915,245898909,352436184,63865483,837742327,395564234,276949568,826299525,439755684,987034256,669261020,631764592,613067883,159344026,628970244,751557537,456009743,889138124,183851307,326264741,549139091,342413569,19573960,404285933,896461148,175581676,192632547,105765228,422992954,933668003,607604881,865950,828128479,933007679,834454114,638365968,854084415,360307010,883471491,58696204,817631042,789672003,401079466,784014730,943101812,191179886,294466637,590036560,102188603,764761428,976859820,396229202,475340746,392228093,589900179,311797799,589852563,544501096,64676551,287768375,949379258,584756769,39806859,121685290,635537433,230346779,265354438,944499177,683772917,716494838,392363417,974469345,246256648,882901092,38094467,986626241,940258766,3414310,110709716,615124201,235264661,635754686,223817733,321537000,666146468,407014875,587427434,31654039,832240242,844815188,579700058,466789777,280210206,985396949,291723853,8047289,259391899,590241790,368820225,250370607,202862034,80705106,665528959,704415023,332049885,981570470,169057980,379403680,280240618,998069163,576401944,304766219,635712429,44530105,23696195,719224235,954866724,710687590,312757328,74962477,115911657,649813726,479253607,766253326,735385343,607569426,579275171,162791508,326318444,716714948,123341567,655019939,718694920,485827213,133175326,900081249,339833508,164137116,471249491,392816278,45017847,383754041,586719647,203667197,112950536,876094032,6435682,32620625,352299616,840225735,929391019,214844868,418933243,297280577,748928889,182416353,950786491,504627897,25119040,343409520,744725989,135042115,705866491,969936347,646609959,258414225,668086398,887154103,595542394,474786908,912711488,49729523,495537892,496324531,966322844,61894705,44988514,690566890,574946463,717440164,846606905,606427970,263525553,760072826,372974200,998078112,649498593,941435396,946203416,560550525,437331748,332462987,5434900,949496480,603546303,804913520,418640887,144381460,627219529,186822875,880363285,190330409,157687494,771522096,504430687,717651063,315563255,874254954,976850912,197296691,447140532,276540864,464615397,900371285,781244825,61985206,710998651,411829777,17981329,386681637,364188118,413559202,303302557,488117587,713799670,702518902,837618619,876760633,842585515,992789451,886051671,471148541,240453444,166246253,509560524,187487473,846293648,83754593,270347087,524835392,67769298,395301070,717555882,79451775,111092296,282550891,923431086,125964907,313658196,457373873,439145629,667219144,891785522,824326635,953222600,419627079,482114624,687597369,520465951,241282706,999092805,230973891,561199746,588260561,680650713,593181211,34213473,600667174,560219722,354572774,223834527,269788215,907173955,285587548,948519492,300116230,429665199,38030179,367693866,837735185,257147539,445672839,401786092,784453135,469830343,55590366,63326395,910338336,331372624,585297624,509045143,701900729,631941244,417613835,78295795,32349271,53652830,315095836,191731652,310664819,503203790,985450641,625925162,39789597,339171664,311083508,964528125,250969111,189424974,290316049,539540155,446200124,268118174,730229954,793348339,604238698,39326575,100382869,471130363,708445500,706364398,430303549,371074113,179984530,268960067,417483019,317925271,728840306,745192924,783380355,67650590,517739660,59877514,624656317,35443734,824397164,777423977,985591376,287929004,396000131,944820721,884394299,647589937,276742377,302185491,318252728,359841691,475728415,80797051,523231875,465636834,257888464,900159683,902107022,765541258,542104965,97816767,18084468,172964351,130371273,589566149,645061512,620340150,625753964,356155006,3576951,433338784,716171967,490096916,650305865,765753864,601184343,45483753,469006949,46300182,59713838,159691680,433081388,519335529,948396359,612862926,570035750,49012001,301506324,133197591,823464635,239543430,470973357,602038219,905273766,594049567,551069674,330737451,65522660,965983155,24306176,473830435,85640988,368475655,440431392,247193594,706155063,107732988,567673400,822663798,995461989,751918588,908720889,301333844,119854673,173546146,718880418,423495496,358990775,435205253,863696749,326419014,6392191,61517547,671238418,230793245,691470210,846748004,128413272,727232516,391431110,30717646,57631510,949446869,53821492,813873109,522741143,219297523,639117934,559346983,177987694,289759279,268085349,9408823,796043350,19576460,618374133,743829262,769370874,691130878,901065548,865601900,835796174,40498927,793712987,321261371,655570026,689165949,361006237,934989350,185174778,929948472,692001895,943009755,151896181,247820994,593816939,272398842,523568803,91147776,983424008,568042989,237605799,924301466,274147644,530126963,109711308,216969889,463026590,652121055,97795537,900697246,648045134,168674984,55722838,441724442,117576290,916582566,279145852,221897722,797647831,49517450,301075631,401825070,974134658,561161547,196286357,269329829,167399403,532101373,578923796,748428976,566220897,155823367,219011697,980112766,200999342,196117200,716536202,163101036,741382163,214325835,89346183,572920184,697829683,998243134,379661832,690892979,277080555,169994018,933055649,9627394,562803540,618678589,865819125,615468450,510026714,821892745,87092509,859147139,922177837,838700365,432244682,257519929,16642044,720240287,963028263,71916937,447048248,153894765,960215235,660489596,58275694,243242402,238593838,360562612,704411231,937613768,921712915,29052309,743991739,862991540,938482730,924947814,179444112,914495757,254607769,202739936,845788525,221250980,955531625,684584634,103076187,899277461,540146707,52096916,971139184,421469476,67795755,990306440,252687346,189992500,597337323,365262970,503636439,460603973,711965226,776901929,45031260,439219558,598428150,649916899,95629754,822991784,680027025,452446727,707715205,239739801,814301665,62018338,656734502,437798625,764392908,6914543,128062888,773815924,373101557,986442410,595451822,830762006,458012395,464986824,328476752,231754927,710136322,217719542,571470186,672234681,621742221,461474704,530944026,318715160,199444323,314392996,405023469,886286845,651846202,921722227,190187979,297079117,266779772,374418972,620427339,898241023,504114943,874745113,128364011,574870721,173976116,909470648,958625082,574420854,662707647,848605851,836164076,823215040,933253827,724197956,710375591,244468487,238624015,707753542,363197039,190982261,995927693,763383894,712429257,974478052,964115220,654902097,288899498,823750418,773916438,294617411,391202917,594947517,454555156,566050690,383118633,956764552,340897338,208465588,413768447,628887062,492100261,299990353,237386414,937456665,193334347,802636093,451815245,60644427,486400961,87551117,220029255,705246654,628335692,476468862,501269438,968337559,474102687,440358013,281586890,554786864,801206930,384477710,380981031,297961211,28864078,326193660,218951983,862712666,759159547,661484716,460779571,942069774,713628895,618141269,629639484,762242252,934756050,807682229,188659299,722596545,287754215,886047255,152976514,237614800,237849140,545627797,722004738,175275715,754191101,775383713,679202174,316924426,355255477,500699754,491710068,137098148,11175982,969264758,635858992,965725672,283069482,376539915,94054309,919092859,376363039,207979854,68052613,377197120,648303058,784480299,348827937,385013272,54021513,817264221,993026305,636614910,260286128,10004831,348558493,829137923,786312840,467864727,698707244,25262239,780806033,632192104,897495813,528957271,322515170,952410492,961124496,37610801,268813040,343357965,437461449,101140198,359337048,321297478,423559237,937649687,299630670,591883898,653629333,543291321,119109485,782528423,317321998,264392431,154312313,628160237,127114888,377226676,196605767,359652233,806035049,205351641,691127252,550860500,369140959,144435230,658944148,390642645,573944979,667107744,635203095,767646771,299410435,117783352,889899751,489351227,736382414,531766773,626899747,888853122,12380134,807443701,536880093,174960042,390038441,748767837,277785606,714955140,769038058,609131032,475200704,32211329,962902715,164621319,528463097,571282152,861885115,473406780,311533673,461926538,511379482,869871136,379146372,792609478,860026936,960239664,275957588,41733456,942535749,902997141,832051276,601471054,202600694,185503782,459785913,778385754,342579787,343500879,200434518,634501957,938686807,260890345,786274433,301769728,949714486,839545521,788999445,142625387,42411833,208677054,360259444,520356445,530280554,325643832,471641766,720850618,456924875,557139454,201414637,853914965,122096307,879721373,989218695,487696619,994652716,646972312,605205466,903910805,280402982,994237712,381095442,489493330,981258619,547249062,688462336,1445737,433741715,564994193,75922249,102931417,757560373,291988738,56158871,472271892,802495027,741604085,594151706,721951826,378057545,242814817,373768478,765392240,934914251,946030429,900704383,537525976,262258286,279442155,773895375,627660440,142086534,606362619,760487588,16001763,643127812,27267523,294027747,510436030,261382153,433052834,23157795,739073562,938269998,604178950,230703360,456295017,195295690,163921365,566141314,654236842,427661034,334147000,665363992,37352382,926487528,238052919,68024525,929548103,362876102,113379561,864060315,102997721,370310141,567374596,370742529,479303979,893061784,744410939,669632676,53640946,964950872,454175490,720368377,209676728,236250373,661819565,355011688,531639454,509914774,477175382,62217278,442434769,886158863,404834442,156844061,687186512,490849865,926461880,105700611,261069091,409184797,29089626,222462280,398646239,531095536,800298515,206986862,426315733,607673648,269120505,407258774,521544843,160366931,307576619,755923995,413796286,36706962,999996247,637517361,388655506,425003161,4747151,129957603,444033755,291407953,195081577,280986599,719059724,659414748,889018761,609980280,595199757,885782276,79548961,667285651,101707231,875800029,143427780,441840925,61766751,161532471,609221510,213767790,639043347,598993303,353815277,925568555,405959801,168602258,265780760,679960861,181347990,298595987,64584078,100566511,127626754,211785206,768802225,504035727,458039686,585452480,952885023,443590438,747608958,587575244,22405638,323088729,108224753,933298545,643763192,488192201,279873076,290624622,241731330,43776115,97695689,454306192,837121228,432847596,735726893,745035245,191821059,357905118,77826048,467759377,14861188,318575651,413281215,253433396,9990884,604494672,701094732,310712231,331905914,318640930,70146077,512850804,500592248,287751160,550887717,222184773,493087863,64095930,574978497,255085546,732980233,663638033,966667277,783108199,897797797,722262553,805078911,902991163,193867369,504761070,383593186,438993169,971880559,142037825,566763225,948980696,133239286,244860360,857638084,117303834,817908469,42455183,330020500,407810634,15289687,758730971,668980833,120029328,840319264,836543571,40188424,699912277,52769857,636814061,234677102,698706398,431848067,757716394,719595935,570320831,265586647,717677115,226824786,900174396,768449254,840559166,391133465,556908608,764113606,794631723,530830921,956612319,472599954,775158170,898978086,826972846,207920068,331217579,276829145,808267679,70646834,68783612,24332499,766640030,945055521,260924670,455972105,135378593,486701934,585192053,43572225,836549185,483006565,394600672,354983125,753487732,292852181,517790785,591607125,169243331,28369985,212364777,681454136,78438785,160130623}

    Returns: 18821065428

  88. 100

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

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

    {161627832,202939776,709911597,139702127,798993054,759841894,964845795,320371592,397351306,419933119,90954543,93547572,507570992,89342718,299268981,892645910,960916298,22555734,208878483,922324546,269059455,332075640,176842048,826026326,661295209,715199487,93423985,178503199,880545397,74595110,129503759,983542223,661208041,412118533,769393964,463658618,226006554,499570500,955419509,183468299,274101797,291997002,196733845,557886819,22536478,285220492,369814846,979476491,852657677,352698078,812214739,988374594,794018498,875032692,453646602,256590312,77225182,497988109,781407232,181083872,103366221,593118990,445569935,617165116,88268572,146194761,24459410,36913669,462978447,447551793,863665197,351526237,591764793,725829637,886399336,583895409,696698484,746096807,315360188,729286844,893879155,27178215,527751339,16932324,779676080,219277714,734800643,710170435,142657219,522446938,46049305,63575767,421898901,762126042,583772223,646925919,267162267,329800373,869468774,471727534,346090025,53165528,702851165,452565951,217657504,727311365,855652304,533842323,486810610,210655934,623669675,801112934,96306358,807502371,373552482,884765203,706853252,179813892,284953716,869706396,535480586,576104680,281535682,756141187,34697666,135389644,80082768,212149020,957224169,225153763,826016811,179310945,575297092,651308043,125052665,208458372,213826967,399567375,841371917,676775601,275369412,978883110,164601911,538457502,600524363,104502827,518093234,331748599,66859755,958263147,535230078,148817266,448307678,823938930,249728268,756398402,794113015,375824846,399577431,974446622,868240864,618895344,183935624,950209183,461986922,280604107,912504952,174649171,317619817,947848201,490490615,128774019,206993073,873217562,750718019,887693399,76546961,234057722,172779875,79690106,512721293,465004937,822443258,416132465,69449738,593985007,280032029,319587080,278226936,733301230,156375017,634994734,125884909,420796703,661378336,429111796,697119221,41152635,759524212,238198521,601072413,380333376,20449554,502208800,96285140,382080270,226327082,252509991,584121264,83540189,413960136,769040204,477009778,120454796,310973724,769444155,6987107,91261036,129428292,97667321,560876327,692942739,790105413,333787060,95007452,993646966,981211426,357953742,139978159,28664194,757466452,399748002,649721702,88416284,434880814,313327665,989471329,905842831,894247858,508706714,113215220,535507224,288467128,243334582,410611172,740907763,956610845,691539812,703040864,43322222,118050644,405345464,397937809,809645947,389164261,360830776,712745884,926290006,228967101,194215435,302165914,231321554,121292891,832337300,635440585,855648463,757831045,189487444,141795857,605626496,648496185,221742091,375637919,554782768,125400904,430956509,177999651,146732550,114074550,962131688,306109547,407429541,377611058,511678715,415315926,552771938,366535227,892760896,925495100,855110693,338006057,141863452,463430079,139206160,987008338,607208287,221775163,425973392,723659820,429099097,119156142,832459016,806422803,774544748,934963512,143887244,776802936,197238270,995739621,521072487,451896986,33279464,868489961,507152598,43700272,445720233,694752782,965271001,814341149,500558319,631394290,633815730,380929272,174461935,862946471,370324886,206589455,326659682,59555747,30344807,345699947,63297264,339747725,814835557,376370184,310609735,580176574,175786656,595585656,606195968,568113645,863289349,44030169,669863637,216934522,782918025,401666098,466502666,373161229,414578149,576316276,421890678,678686770,350537414,283961431,190303103,963152266,882788923,426948353,956598340,502403776,942611918,89742598,593674609,433037430,479429563,779955257,223988019,308486043,631806606,135129255,266508151,804824803,715598477,524123542,424869276,181844524,93194234,354774110,608307755,207954100,61462874,350198876,704344482,508443598,773850718,203417864,892370520,261012009,330752580,15588887,906519665,784952132,906616059,563334218,252672889,175645110,469175320,773391063,51697347,528071722,70380686,659999046,376852730,884729039,396427615,53525444,937989812,361419073,543163399,117422035,788331840,565348280,462452905,775777232,248980871,704103834,53178527,18917588,849090710,955407804,913213476,337902448,969077053,790156157,965222318,883732641,654559975,755225238,522421287,504906160,688329188,799972026,898335460,202611097,333565477,219071670,759282239,651747694,332397060,417362164,570344806,674679874,770501016,613210051,796828309,753138929,189649672,167176321,150202244,991379665,973613184,796680127,542274732,404287284,653429686,536536565,318130528,795083904,104950630,560852637,276815730,95253785,343597404,59362594,780957571,391948246,245854019,589071943,443530149,812313159,673028746,98170961,162971402,436135693,647002524,196726677,871037721,386796757,941309578,365905327,216329799,651095107,665256895,640163706,858499870,287024650,970116678,593539388,541417498,770937236,55805708,224492339,643516622,788105124,785765159,158408214,37436979,699960680,400119003,230698539,72922540,595067344,626761146,751150855,235671069,115099838,620195084,361908923,352337270,565321910,411525123,650512711,983068294,277912776,791012740,282894729,396122994,630061585,189203313,3427936,52859226,240603262,218707665,898566068,696534482,48913794,964893697,786727643,864096347,636082160,156443127,78855895,520851369,112077907,2492980,608214798,990715809,34733891,586844458,198822113,652170090,506952255,979512149,983242735,181467723,46996053,125240967,529704086,938088022,257816726,497947650,370377993,487840166,836231094,630847237,767997455,992981265,427413915,795946896,946978629,188344112,549519580,996167093,350648359,650513358,100644450,636824047,881967560,256515549,688789701,354646647,390438351,856566386,956374175,720331023,995277071,632154568,207648920,328581431,318260127,467774820,214038954,970963297,867648192,956823609,315473488,475539358,258001211,907574797,805584413,799184537,1579488,865260884,73824416,824794197,83217340,370838174,907299893,783696144,627512246,135927431,108575960,429138800,219622199,771791184,353447457,864150876,492862656,211431256,198728711,70994206,517921714,901506464,502455869,918354181,437626000,227025331,107160575,193183737,744832099,607505200,545309869,821728403,976221729,800266032,554786528,404466729,177988985,170374249,782177287,651083447,331560439,185936873,833089515,51736254,616799244,321037426,614149854,697802285,557723905,684689388,264867120,714281923,355280273,280863874,890772786,532820240,513662783,629459638,158442463,708681178,969793271,144698639,31390301,597081007,817230773,69216884,128573822,912559257,909551403,758659245,481977062,154688325,251112457,936468081,174420148,774708410,286832380,884978741,168722917,567544486,675874392,523389329,365462023,520419110,817743239,954120794,34168715,830290312,116447136,978754362,983461784,824959341,348616410,476277760,201915262,409395738,890641212,695381532,235657936,248277083,898293445,947393958,686213341,635133248,103373371,234196333,132987820,682199032,415291728,363006304,205601213,760577350,716177960,959429770,442415141,304778537,126056488,61883095,137207304,931411045,653693000,294029252,145172846,995681939,469215963,488423133,994754845,799615472,761825760,6839783,323844658,232671447,724310829,781115186,399270959,844953156,65927343,643198943,617721324,266422563,393920914,101761606,162532493,297087293,616645403,309936982,928376703,636819206,112047497,135525207,125906959,111322671,346057004,744383050,93918966,125452586,797246993,84307684,754179711,552658174,430592415,746221715,308228231,946685678,594088460,143938459,913187005,170988469,878161448,196457217,300859505,636738523,243853687,56329610,54104597,698436992,110689523,96627986,843950626,964933456,277785856,649114001,561614214,612135686,749640824,703037852,570986043,177950766,4786187,271642728,138598394,780779195,547047017,937398050,128693179,33031768,636785464,565133253,14782898,212965918,982450016,315026354,599238577,593590543,457333272,554711833,431429785,16296366,897491562,163944196,125899880,234638147,570019197,77333027,958895444,465617548,973905857,174941962,986109816,132920459,157102115,32116383,888554733,369714796,954758847,64924846,165204979,22484816,762708315,456019638,300246747,165023213,449812895,462861770,98279828,564969010,858882453,373643806,934593639,283387642,871868126,865486295,390613027,959671332,21095350,226240289,631111126,961178825,627879777,626638350,201279856,556934537,184573557,715698242,944558890,551633411,969756756,310246506,541140905,251572521,821831717,184080650,733580698,305585767,268234675,480875083,993010367,269018737,622105593,120407016,762983618,615598940,454789815,849228679,483582119,533761899,319305299,644747922,517311462,520640186,409771237,594276058,610898587,72452571,416315130,531732090,327148499,125073820,292746138,403599040,53353739,419696532,945996011,881338402,878434140,650727562,325890667,606512613,284222854,841758256,608473762,112334933,464294614,732717654,274072459,230933870,360855630,740029999,611315147,717366668,600025122,601185264,974921417,358955894,410029578,459145125,354285387,13502437,150703926,84991643,984083569,720995030,639371439,39986362,974569736,215926370,373133665,808972373,625131998,117820645,958273547,851321328,243287456,731536521,64733189,897534737,187786728,396448868,8912326,905983635,97109653,787529477,268538252,755584362,287076292,419621657,18942459,392786155,663401668,592497360,271969459,640276615,982409033,40059454,782414943,887378654,118906626,156167612,592560519,453700433,499648463,421064756,436349433,775830704,500858774,362063242,967322031,590600244,949575771,335025068,500581868,156235190,33199344,118416323,84242988,562542272,972891871,180945495,677754096,396007527,434674430,257574112,916728133,234700060,838281108,495567765,504275650,873905058,424849300,383984867,780161167,92409002,140779514,287101359,50642271,373237194,49912623,540148895,289375878,345563609,467817381,892247306,88303564,771884862,317039649,474665313,775119129,130351570,923524287,321575913,238927451,382131980,483651333,481847959,170991012,129955706,616318931,912194151,306153694,42859216,70022678,98001484,103229170,106467800,244441814,264650662,171084717,71718062,228063335,790127940,398317645,398318892,423198431,364272355,102950531,657382879,779021869,716216355,233384334,611058987,766295085,690210727,466042324,458369569,789661818,526047717,614336726,192319127,15067819,686363295,435158450,153568584,640879980,475276773,172209664,110365703,155681963,577869059,505173138,743613312,873373392,616779784,945686197,511085341,316751843,240826596,815695583,275044095,763563837,576724035,615006278,17625016,811208213,457103316,516423078,334529512,129045868,765302219,674965153,172336826,983356512,674694487,227230417,482542518,274728353,190793399,966147136,123602963,476827843,798022606,723947711,127357789,445935112,300750794,639594601,911136187,191473173,10072546,11614849,502011713,538148101,858432300,327411556,581046087,547500189,536812184,986233720,966600376,803067559,216523067,197786394,212768133,70888769,43292326,823679896,655185386,356600844,535200327,697919698,291093708,518846174,522485052,371829790,478275161,570796386,210475584,51998504,135950252,356412550,50255580,674161965,951607179,122761183,368433720,561470730,547682698,266947823,533210939,745705661,775908274,63718727,502974065,137162238,226087807,108005077,767104168,857152601,186534746,904717887,907270529,197340989,41289035,614869685,851032950,570234172,749916908,53936989,355113877,666915005,379458537,668862232,344451090,6774902,259199377,778394814,118032115,377209807,64736521,55946207,95934406,981048200,965582041,608402640,849086224,864411299,165021543,275489725,389409951,163412395,649315886,158723352,457380536,167241083,304803819,319199825,110863449,722722888,216720066,602996244,954003546,621441954,338283211,950261179,680273981,693038246,111349266,310400847,817749851,974170850,381325753,548727654,871464208,615434104,139550385,160594355,557605383,717638568,987190176,640052797,210163622,328623755,623398332,687847140,693232169,33943026,738879032,354797151,501718049,325912374,804230909,102615841,227661722,101980423,264668614,732524492,971446251,900926088,44840180,671247565,287827257,672974694,42996801,2484367,511592243,582431613,136689996,881510799,18095702,900755255,556514639,709912206,326654099,179230989,897193892,58148332,866157902,459095459,427973520,523292412,993466264,154246403,569107348,258277625,694135855,731376125,74377372,749662505,540393026,971283649,291909919,7408686,190204712,53376786,347518809,14216420,140238914,362731480,971966140,665920690,754261009,934387053,960607655,850992885,432675441,906744013,625245067,276656476,795842998,594847570,468127287,770257508,38227038,456720650,407353446,971092611,185521562,45582437,272398481,627931415,505623261,744569388,77508912,983813341,704404107,193290760,327210004,139805972,935658676,219378165,816100324,760238279,695263618,291378285,803598068,576908939,510659596,781678430,583714360,626852426,951639579,319865182,406630472,973101969,764881915,453368021,749047856,46696274,977664616,104472201,358754727,825452115,570397815,335316931,175398150,464014008,773092384,589714259,386385645,726072078,183071007,565987508,286234474,380670518,478332613,361677240,872178373,396275206,566949272,27704245,460790760,121593692,273300416,656029110,972244192,370884646,496547703,663919072,125054948,973623493,233090084,369385410,166216675,382128746,683756509,742276494,53289098,337462542,106036580,539224549,6765591,570788577,590030188,796712596,291808609,933360226,687434043,455055690,518076888,173207439,300545701,756999886,108768042,809624053,421518738,588326721,906197629,39451708,864528431,561378757,969489611,956194414,472137325,672714292,922502418,811098830,13785976,647297748,423906098,985724311,88069964,189907277,146657799,719688068,171351860,523098955,584547263,407394654,917264542,837060986,593208326,362219075,707408542,586922097,650070419,455827234,152345057,548877465,887120878,707039251,631732408,389020783,174204549,724876181,9514524,206622360,820184106,132681096,920245024,998238190,310950843,516515125,1209782,381449320,54074505,972126322,88303779,591139138,61911677,105198836,215934817,336462576,5951216,234578198,613124088,147891926,196348603,766383309,377788911,732715203,352080981,266874911,492156181,878900410,127025961,979431765,474666967,110236140,795472304,206909313,361298496,655518837,789937302,66880891,440778037,276269593,297461985,720560938,316502182,8102620,159210076,483336320,22795715,903590911,482807546,555493339,69776507,665656492,688057088,769402796,400193888,974622222,251734909,632321506,751418941,623314488,426289359,412627371,923577682,657458837,151924385,320878531,550177638,84965593,606605173,453497473,425544729,879693619,177960728,193978786,961016803,394719450,257033585,545876177,287083046,440695961,644433399,395296247,657343192,209995342,280327916,384171786,614540312,113321947,455612478,367086777,840270678,105845362,655775732,164041764,603248514,611966321,146933485,11715850,603730707,488576252,326185928,474924823,438961760,900437901,192462841,471915828,556456098,136486957,829145048,429301952,961478585,36564722,504960995,337290416,816871666,844904355,472097248,965541323,453360702,488832568,702011577,797580277,921045082,739384850,941674321,55538189,946152653,687135215,600922987,832981510,578191503,640808352,418559625,489484795,590147577,249035152,612658988,426547299,193923776,267589682,217575145,775176139,636385086,484597020,109316162,735416460,192906421,907807526,980379371,2682441,864930864,501123267,515049023,21483351,775408392,38334403,253947426,151720169,237144035,146166409,744291721,212064774,709731742,218954538,44892579,768568426,427669513,163742568,953484132,510038497,323095122,585623574,482962671,704306896,332802540,29867151,781505674,266423140,270027651,790221880,366682175,800034670,151044767,497620016,679877331,218399459,420038364,821135146,33681141,366321195,866852749,774674567,982942401,320624971,967284875,180635352,327601559,347799068,58315024,477396162,718662087,345295694,791633063,285991018,624601770,391072826,123732600,175720472,559286220,678757755,835720738,205267055,247078681,571780339,523567149,719654200,255684181,955753834,876152073,979187494,565269201,168046167,602374146,443342703,315058239,386708928,555033332,342623973,744666980,481122292,149273946,507561024,350226114,807378398,116745592,289134975,60332578,356262616,636341530,807495140,91450869,863265555,749724138,223699568,75465190,423623209,904592397,233614189,588388400,430030950,391302555,927463968,718481199,938483972,119842225,836585063,51038905,483921634,222458511,29250450,640118868,548495724,537966957,278901694,890694978,397583956,651898910,958325989,941329824,20485780,486769543,243584457,385921003,447274569,75873449,468652575,852987501,284804841,466903003,800764598,471089086,481650609,792151468,866187232,425258747,999919412,328116888,267532838,882379302,340845758,914770088,277292967,505661857,165243054,706347712,569957718,759111331,764865687,746997495,231584275,674525669,228910596,263777759,814808953,953552676,533520973,324670822,847111495,602289436,483399048,881326536,388825981,488810701,811277939,340046025,577343437,28785440,196897068,131877589,540766198,405156672,803607652,299523599,926870608,592060810,638912686,942174400,54114992,824145960,251630809,135151741,879706583,622280225,413701489,118049090,688970693,32745420,394311104,801823390,826305510,188884768,28473180,124839217,189232393,645022789,326641206,682543239,592667083,73069156,228589745,533104972,110028526,605016808,623790166,963903850,807981804,246150420,502028148,121865221,842467597,888206018,72731978,646699396,435250535,520496263,209673045,813030512,531082640,727700888,188239172,406338867,267099167,602147349,618541951,692171373,867630146,149306392,569186254,908828829,783286677,344833980,32658805,152166470,849854031,370607463,523628099,903203684,741339522,874488718,413234599,625644894,32963490,519161983,431791144,206629306,582098449,186959647,85658419,833469594,173751667,106747250,263468119,792686939,658035220,930550476,515490736,212050879,191755484,607504588,522805307,550972641,916379280,382578386,190648610,822017032,275306184,329757150,990380510,185212112,985157146,521372202,844707901,186067094,945934143,372739094,669594476,799464216,963479819,224807379,561400612,23753610,857172395,663535128,961884919,463486752,113484068,189931192,614065048,384381206,987562805,956523520,949822575,734008739,278309991,793976971,768427766,503305718,181622347,357838836,142263840,928863042,166502835,681559102,977594583,392828553,968849125,81183412,128868454,717153158,306323367,464061924,699944701,557109049,947018119,327030059,359379458,659563697,857392534,421577796,289971708,24545808,603466097,989718170,37852335,335618666,617011659,953047180,113700239,521381248,249640494,189522277,586340549,135513973,807486291,381199053,179981458,370900665,261040730,985089359,32191016,119401603,192611574,860854645,106360226,854909893,591585462,31704144,431752928,554370631,960197889,488266933,152276391,593782559,342139054,163681766,970835913,727700733,576297273,995207798,947300633,329244455,830717023,338223139,147804468,380977300,65905911,600191575,64821078,746149976,371194413,67437339,480530506,598821433,997176626,175750338,774305636,485764308,65805731,977282158,737459406,681999682,915498932,43507801,624997237,197016655,388250830,864125068,336116338,869539897,648940560,807229677,182195553,824826819,749889566,953445130,317007890,292540318,778021759,541236658,892206945,878619300,617583163,153419910,763808510,548589109,215446850,952534758,793039451,909965295,359597601,386265704,349718493,441888859,884484432,896027925,627718763,558643337,498196237,237959486,642418596,894469247,386655476,807102718,912963372,379825002,709042643,567368051,983037361,637026093,926614847,527077461,806204490,272542993,943580781,436911505,818808052,908551150,68065605,153164739,617782585,586805604,625165372,842690725,631974873,763120892,118495739,168489612,19877004,995346815,696720471,13819704,536825781,507866811,270766274,660825566,419996948,492188147,384681650,313128320,69783155,294612285,418760924,798195252,586632104,993923498,585140720,886427635,283685874,596962862,5530972,338789536,47194621,225213514,739284194,65777942,802921493,460122817,119029596,214287839,517942682,865757969,427917945,874254001,363709832,357912452,91354010,374906298,562590370,351513608,283620509,204060000,916743980,538220035,71558295,234698470,275219044,346829437,200995027,599896889,577149945,290082005,228086052,552951130,282596275,581208447,646871611,96077255,66275750,844881818,415368666,822535305,911836478,960533899,903043566,969990069,778706626,394450391,964113735,696687760,656824432,725853738,752262865,511389254,225874773,880028953,196690264,88929784,653958192,506451632,336647322,142486641,137902428,765855347,622893800,710107583,942661948,574854434,121289073,83631469,717863868,189706736,975191743,970806434,285224060,489545072,109432951,948686588,788022011,50690560,157141638,178358735,205996606,797838708,467002123,539608630,133651559,852333870,139306442,560573825,236992793,737855743,801893417,549117562,372696683,976287174,302117069,674150116,791856687,670011845,611692828,656969150,892603247,777012986,910974737,524008584,146491501,2923906,281689000,580414638,725124120,698213979,604377682,913169505,331791124,519197096,366857413,67032342,985424569,182468830,377643393,414559796,599773547,483860233,693612244,988880636,458777614,769624742,80303570,150963869,596523471,109325439,4733378,506166741,814080238,335498350,17286292,7253661,684353645,987511752,57664092,738032389,543069051,749655049,711076481,162428548,833472858,301004379,583596634,643732735,642400571,724953731,479987309,243742490,966338378,325543837,236155823,450414553,655347763,793032790,790500243,907770407,238919505,790064612,515086678,960373862,417356015,727185750,399949611,264653493,74156566,519536278,245195490,937900771,5127193,422713145,398252579,593922059,750037837,426016390,707408438,471488312,826545111,836631366,71598837,325934029,50916440,292808723,880568736,455189667,664975879,219526059,948545464,95628626,542571074,478508784,477985450,499322701,841120227,996552945,749768592,112103173,467758241,640885085,49438652,595569344,935678231,888280840,131722138,771662658,326869912,793148141,293224014,738540788,916204372,488282426,152660948,792575630,264123088,694317302,348788052,207582334,257580147,278317194,677810929,449620976,232495223,661857908,912886286,648199349,960052699,897680545,170843979,990615773,99885525,214547885,466331157,558271278,633590012,561812117,498351206,574611614,8924843,638140791,586816597,923490998,259382563,285943209,92672236,648409643,927305480,691917561,429943591,305068943,377019578,618817778,867874622,150334233,214037652,927406923,244308488,934173529,943481717,125408396,333691918,377108385,35238581,131112806,860817410,248999012,250388944,262078601,157652155,163929603,654961377,840892192,682602338,992474809,755111970,527058594,787373062,800424360,401369316,83555547,570469500,54490178,109607985,469340720,92343889,115153771,818740321,148857973,362949878,218673413,428088844,391914415,517018642,331885188,631824153,702413916,435448645,502559952,527955557,373214171,133290911,572892136,344207659,647690127,274660575,121124809,994300847,928737399,30540911,795891126,47013878,377651205,838253628,830753078,417072346,112681790,943685772,290265248,859942378,976829445,986410678,408910457,74567820,387677891,714588831,389578426,472591195,625170623,605267010,835382902,971737216,802600022,192635912,427785055,366178917,49548465,794440306,858546878,536699310,514382065,2446526,538399734,354543671,343008389,264997397,390787298,698422323,238220482,358545018,899088710,590998969,209224375,500284534,724764763,56351,733218757,204786478,611509050,934966715,417831887,717710229,122035385,971418093,680957158,536451878,236545883,658849491,898389256,281669681,177218595,738197156,385304714,906660727,365147554,547313690,454983167,894539337,772603108,986685166,609764737,778324880,493138992,298077620,792294015,703618559,916846729,288332477,496501719,334614737,874875367,298846820,952730567,643791683,570176631,354189933,861961217,574728542,269942204,638402601,12737702,442995009,331354166,604185739,775834057,281648655}

    Returns: 20203146848

  89. 100

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

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

    {347755939,884936430,970800799,674502423,549621110,271971049,82246427,6181305,712882287,522098837,455796668,200158007,170342399,421710234,765516283,612381673,857777847,830518225,367612474,496551247,833596922,653734562,48190531,712846274,134668403,13231787,387257710,643112050,998217221,121031823,448515558,360213895,756335523,196047929,501381842,786307090,963246567,401109703,269751295,384502041,728200341,550696010,745387976,989237350,489971081,403035504,217836584,712901290,334239115,403814483,495231116,459221050,220662842,364850583,960615715,234505908,172216756,329814909,247769684,162378194,699925790,816421906,537826286,869056084,995402991,788830319,351773385,726062767,524302240,572313915,836639239,258818897,93432662,997402377,201640811,751162242,284078450,650770121,108222403,160536827,434592828,62366473,705018637,173416560,788279870,255903082,886558631,394961185,81441522,670100955,235143738,881347218,577936571,910164803,997873555,994550367,99572285,2111896,895509981,499052447,800419728,172120175,992404525,270865722,363104218,458415325,578590675,758966589,551391352,31067061,677066354,386207150,775050353,553197813,959204477,319397647,684122447,917563051,11944276,770727934,628971058,312540657,273811616,945240931,296540885,984117062,664236755,320179160,16489662,894079783,866885524,35440379,937042449,762738368,90179896,516593462,646656807,524380176,70369111,890977412,565098398,51816387,941439637,961348297,817497388,633755037,608288636,996922520,524222378,408967061,140354792,691615336,178817014,231450952,816225,29117244,984867761,47520124,904965247,65223964,994953535,311972156,85672691,395811281,351533096,153391971,30148942,494158953,388038280,450495693,523053322,125524802,892716396,411120257,565624386,973194536,72521648,18662181,284973781,1151073,928470786,424290482,497783055,97475086,319653395,669669177,693701145,88593841,745772015,240758750,972603054,203953524,648777518,85487091,780740537,74087429,835491800,90070265,772560471,833788479,536373459,888430003,537877785,938698831,251598348,289875785,593096093,938597753,284445373,714143667,527152862,883691140,121560655,688506501,658781147,836039728,764274728,177735167,356664357,594396430,25343596,917603336,263648157,14911016,989341646,761102938,361245355,898593919,844386197,418424915,424739556,574843573,727806198,199288548,689786628,611111457,734680043,654861460,563062467,727791459,408234630,37692166,862708116,716239264,442511102,626485748,906850380,283155056,95020340,860498557,369723649,295920008,996149697,829937169,96920761,563152916,630956084,567729737,164869220,642050208,713003207,471965030,949659994,444393645,381511138,483295088,219009147,726560358,22530074,655826805,173286869,76433908,660634523,802980120,641946491,786646566,555433792,170766182,240593124,949193210,287573633,443747510,567982128,599294680,708163149,149391234,593236983,117958291,533569166,422728696,342039752,719942811,748808792,791416988,496026776,612156842,185832690,982308424,426956484,366545906,598320414,841369295,281423234,22757232,274781128,293992483,201358144,812641025,752448998,835915338,314498189,605023858,660540949,750730092,319286728,447194408,317186016,175862615,42060208,358353212,786621554,853291812,144967473,540617853,215981896,979526583,927699956,15534542,188003819,995312651,433716924,384878615,150494096,584775712,340434577,868165347,557277555,804026665,71614930,103142686,980925159,92178193,543126796,971781787,740188321,698623486,104646123,823850383,87760962,456343473,688817489,979855983,949732157,450048261,541702872,669688820,301113477,578407428,268735572,443561673,663242942,597771956,489395692,486967521,326490171,643257329,751643194,987881948,243938576,143461095,50762782,15831967,575101174,207450017,982550096,385873382,304182669,325279911,234222930,169422848,432609420,481814185,559449524,116413003,343696336,301493658,265449246,871423705,994065800,726441932,586634767,848954959,402519962,273374393,804653674,166328974,724951101,607508890,765322886,818211115,774961437,924331072,539061251,812468996,540934237,33840644,13469313,873371739,275448637,725087241,700229564,91891168,386747964,731753633,852550017,738775217,312144471,982628969,499755424,121953864,167185651,658029519,879593851,677262761,77766784,648983755,922700869,75536294,364175202,963202074,564533220,443012236,215438609,976315576,477800194,365678624,240431022,719787003,782024963,292801349,116188152,647711958,689140967,490668589,953162396,216481686,949545133,512728827,238680971,79284366,349705186,551373052,690130500,196570671,455528418,312527820,208718001,66809759,635422984,365746052,82089636,185520562,464367261,829317891,444310677,661387686,59395489,355161867,356086356,656488959,306461811,398970992,5048592,568154755,567547519,578069632,165869759,509814751,711613335,837549013,56777210,570073019,174814846,516098456,657871302,279706024,175836016,466749653,797755435,292639111,519761101,26389847,979486801,865709919,586161635,246802534,615404171,407706484,679839238,126053780,333612899,667145005,24038929,229970052,839432415,952438028,399118340,661654498,597119369,73177521,958930822,177009845,920085572,581064959,657445318,130219282,523853294,652999607,989549451,670091707,854476771,995204456,748973379,854470070,220403296,962987840,778117311,448354354,601606311,733440716,71638711,911818548,886210983,784573407,849180639,59427057,277412031,725488388,700977867,523866591,46799805,411757829,411506945,292232454,937256067,766047342,595125985,255603279,908830536,127176334,846952439,20256940,757075585,996249373,700999696,584355906,353833736,852118567,215236990,438951473,986318241,525377414,300659182,141055697,171211633,424089634,584685874,299294392,846442969,301252166,572410163,720134291,982667480,554275063,207875945,483140497,733185119,659952196,273249004,733842967,412636873,858165675,309289695,734391313,787191371,52044687,172090678,625895502,254451138,124853232,796475504,402185042,64076467,615372298,7526149,484814253,62938052,560473317,911928102,370399932,439576667,565895097,684205451,139107331,989330073,76760328,519902807,185431263,686718160,452937822,128497743,701412864,555516648,301218214,182539637,484874416,974315222,937346192,266262438,688256685,261073021,886208768,723694311,185935941,743741734,307457932,389415264,428869758,62374391,369188227,974892295,477881217,840700031,658915065,8198058,930608959,227132330,244016116,841033786,92690080,5629408,221803722,779093071,566601321,752136903,982977489,944402398,844602494,449821092,106106172,705329709,532806028,241665702,923465528,370854946,333437088,71321346,77472968,529429776,436372922,189857716,637433766,64384904,714012152,952077150,146805396,313231022,256104914,405074112,656394481,93513411,304216553,251322428,749608744,121560141,795519222,394199147,988768222,384435525,602244430,494605586,308605958,63698471,472187517,772042574,384887273,872623735,981187386,936135580,275688631,960045862,769880476,335880489,458386476,996595029,507984405,580330933,817991068,489483860,260330267,223230977,740869937,551155489,809830433,516574673,718578451,476980506,844875168,154652656,615660091,454151349,270652368,841939282,881655222,953323173,107421513,292121547,123492360,744280782,467313285,247448540,320376595,692082350,635094373,215395916,900510651,326650345,620544909,790991615,103513956,862359578,777095492,92736743,431852212,386993636,74125492,543643949,118179759,326301655,892979271,293214982,651827511,563584171,441632187,693420632,261193862,447270538,191252540,297620718,20711290,502191838,15406066,157248350,878080990,393812363,858952528,16976728,133254104,294367487,18564843,418341261,56110110,379523467,368638066,537111803,183334693,201917510,405563404,641136335,661664932,847966561,97742757,862454621,952471773,970537095,475263961,612173691,368799582,25243085,622737320,646784983,893470400,746290010,899189787,927996754,292736505,321891887,493119432,287776224,634898507,438512479,379376479,188317389,574871538,241106531,179080780,400473688,88364952,236333591,789429682,396226217,757289294,933027883,272555774,880349635,609364406,381713094,237640359,724202575,337949554,182447239,998479960,224268032,670445957,411660917,426807747,366481231,867747663,323638496,10459201,76431028,196269855,250790285,127233570,319121419,881417596,978671623,768135320,370987689,518932546,864650544,512248329,343542338,726131695,46093467,24249233,815573081,914690461,876993900,662104633,28298040,164726946,937802821,946397644,605348952,991315847,811901694,303947566,192362983,700670547,405833001,414460449,132449640,380810002,598444612,781335741,159109636,487441122,576366863,472449057,360177270,949151550,246724652,801950167,77477416,487447125,404864541,536639366,572844488,5716236,226175763,576454502,132031450,417220798,533023440,700651215,305624742,300708395,191613894,812603681,840900246,67676181,463751298,535366114,831145040,610636104,456920434,453185639,180149803,581204918,38828996,673280385,951810374,961409630,101138449,421025761,69633596,684281866,986921499,442710555,208698713,936216124,968741589,421947539,441785656,760655034,535470369,496722576,857628125,155111623,989048617,368090483,992742737,720489372,699570572,469597346,999063143,435291579,779901258,749378996,293238026,973262982,190611360,135191082,320962157,331244255,618239455,896156172,164891114,408870391,218277917,751349886,704648480,676286701,642011657,747904082,643556410,674573246,179060724,88644364,39800480,571412721,333235709,660284883,964205801,108423760,750975971,607032975,403220608,895679794,265960649,971723935,331162642,173218777,711452301,260434848,69074612,718657366,788012653,289725924,497526058,117285204,35141539,14243547,130328240,660980465,655593813,87024403,269751565,551900890,537768531,341613083,81066264,817474689,326885656,135011518,223146281,565076437,371060720,977295296,525150740,933170117,500013259,176153040,828757288,313409739,601252570,788397707,112272279,455434289,943485293,913812261,33762789,394695118,987620612,224238670,750264114,132516707,804901725,69278197,692565663,170949756,395488295,490257240,391821923,644295556,296060027,273023615,906511118,499148708,447309080,404815061,822700978,829985599,398306522,467450972,632760891,153492873,689264908,382536515,237454855,698380152,528429957,219930979,389603068,883699458,398420700,704488312,733302156,45008209,520384030,578118792,842816811,219799727,72764925,766362211,558520913,170994012,321998574,171370592,700830370,966486326,190102904,803642525,27528060,125688594,687019416,748237860,405257388,547626954,177106539,783466593,60064563,35438837,820959164,729712192,198418245,988453035,296947625,977799912,395678401,633511366,930041619,578172887,982441922,338821041,335025140,574214659,655275116,756269032,360147881,896114656,544619550,823112701,993580314,535462189,897770735,188696911,897628000,734416713,766201298,637625297,150501618,172644036,88641583,284192330,250028849,756602738,851722760,899960969,862640522,816687767,760401390,687179852,972256222,678947757,564390434,762661547,404903439,902011029,16969831,966009328,635137446,84441183,765907925,663457796,390902288,76009770,675032960,390063758,166270997,705444110,694816267,880966197,100517591,221924610,986397505,43219533,363668778,505467874,59073617,698368959,121715050,992089020,271459554,899125578,785768643,526260859,921890929,59993988,678903420,220709618,481926507,287399749,458403171,631503836,254965834,295930281,417336812,30864873,208747437,385133247,936777042,88502760,294431009,626123916,21946477,431666557,616971140,738320048,103466564,716789893,204155006,139309781,299969757,50351567,740409335,851421553,762152748,723905177,245768445,460646039,425737663,691792913,352686608,2650468,252158967,434189889,617009825,552534388,910486298,436141841,639263565,929171653,714865517,119527126,635975328,843987246,947861902,852037301,164069520,586052822,730083769,603570241,363343379,767446015,729379405,80804555,340836447,29186580,205866498,112942764,687292638,925447716,947767782,259327599,879153234,211970795,484440155,518613579,813972712,592634817,707469432,865937378,116263532,500155543,234265291,684640794,246299149,696648928,750839668,195771553,518500918,10383289,766309117,830022089,919753137,840550214,421627917,283756527,812882296,690198729,787839067,360905804,96510377,703612380,772777885,627889016,83481647,996546071,171813006,281888036,100625532,570256411,645360010,221883750,645960469,509793657,257424531,687492024,596327548,436645774,916358827,191929821,551389617,334522320,27297727,282523867,893944290,71995456,282791649,785717447,762408365,820913071,913873104,698270363,199232641,723764500,957805390,795368225,248332765,14351257,626672959,67498086,582360242,268433223,388681581,745655932,641408325,736447912,906475034,897042541,806836504,502074680,331530485,296249067,396096400,532158443,364586241,960092175,365341885,887308412,573390369,90850073,93993925,490516999,165029538,893010125,857815259,267957153,50094609,287690767,942712211,388854634,586409180,680318039,8640127,48442207,674816654,780397712,207023550,957580203,856519028,716376193,573602568,157609485,823738842,151480888,477490592,881356090,197985474,659397038,485266228,90949368,573820076,468281123,483200933,960009808,679888395,764606238,125115121,356998240,657266047,510015415,357816907,430617293,558943880,570111538,831163957,38594489,104806787,392684906,502375501,766409094,199355015,801036129,56250558,396599893,941657580,528926493,830969433,55019242,28524140,271246865,563126159,874766129,818985421,705236417,749348127,910912117,274977290,23635981,371867774,51002938,850276250,619404836,213525810,338050760,328212882,144796933,424117930,949796892,948897925,931851257,260642228,72067117,410138829,632843810,955948784,414988774,9374308,557344919,861300107,423734006,816547090,932934052,677986616,345688302,703589574,645465453,163774498,811591018,41451788,321950299,490843776,919566760,621838628,596045638,51177938,761568437,495985988,828523542,400130356,681003962,136712538,349692433,471352430,618099607,979750428,215493279,78290359,354064079,784257081,966428411,894758304,508193261,499603884,419292955,806232790,961649215,350356161,622446727,349319734,980480323,707318404,707781231,873938590,96002388,716068727,625943888,241860554,332735655,218988668,118301751,761925505,633477085,92355370,662373890,471072785,827041828,27944390,815021671,783816116,978189872,162744732,992306178,788772531,336984415,375035726,546697425,143675541,202323947,138611772,619162175,63072472,915750066,134754115,586087154,70981749,460785558,814446744,499671558,937060577,237877882,94286812,981331604,536847903,283218104,289864996,475099194,567215106,962210018,428425849,948558285,741292838,565865234,770488245,73257109,773372174,275792507,788485777,678318636,611905561,229530007,223817825,483958051,701831728,776524712,550854283,343241167,767968327,757414057,339797679,522547876,880842648,138253327,266957917,706287542,998011788,894471676,759296499,618637891,17710010,577193990,547246357,796695788,547957324,221444328,703019901,794656995,65771018,113264676,839827136,415128054,746529341,761459583,526733156,766814608,907079075,568241906,823712117,40349819,992691643,553879516,75809832,615501573,857793982,484540760,911677214,551364058,404015901,619965395,256723973,946779935,725593555,555912422,253035793,90971417,597475974,633544820,838233623,183262181,544116802,880726749,700503540,425252361,213826468,253778922,488049738,45876189,842501006,727207885,549141938,122008190,329560397,443428940,706505385,58694106,491893827,769954319,648442040,543010413,707291370,652306933,530695974,330189084,397558496,249055638,587493189,986111038,841577012,303734999,249044203,111613330,462647066,560827247,897352615,593620029,123683099,821433039,404641295,222565025,493297382,935023883,265380332,867264375,238387135,655981068,904339676,375898269,587627922,512853952,363555190,325595624,679125255,495286555,709385117,774721526,915511339,993093138,554385918,766626763,851970936,586578821,38207978,844780379,359505883,384873620,76094624,174915618,958834633,867326769,922720958,511477754,364729308,202576443,656059288,176460935,770477907,93578347,699328783,296420683,20384759,901523078,621848578,791203641,423124321,381232461,372879661,196352058,755584440,429338445,601558804,15585080,678226076,937736942,215768303,26315765,820693554,53320198,537444838,834489583,295654512,604947173,436834607,524083380,955399089,160033719,337141519,902659602,156220857,245303217,1874980,409354324,748317435,721677884,422071591,819784651,111302159,793691306,544419268,329853180,475015556,565228416,921038855,123233698,367584845,426274342,492771054,834510459,8373145,353557133,494952722,793388772,467076581,595707547,127499510,966987125,104061409,540811487,911850738,344745699,314909201,695280463,179576985,743672845,244384164,951236864,201892494,488536210,390284837,840834927,123750876,96183450,322746721,554510297,520591926,547404881,345303834,358449684,668763633,768136128,145168185,693720084,377750149,638094882,823786218,318003578,146717465,617365546,657508436,842698345,681213433,914908910,872229287,925517253,985779682,640171908,102070124,449695915,472427817,807102924,875808206,444833211,531085276,624710857,96368991,968689238,642607612,51269518,815857087,980815664,61591709,67459415,908587404,549883615,831842171,807721771,477506260,870674278,988134969,34984368,607383386,658395260,373540980,461954373,985733419,235339098,489507416,537622901,67172034,159858485,438546980,926419404,7689330,71813143,599531453,485181874,588896810,760375805,857255790,232228892,499070162,464248336,407891279,271036727,153448831,832427027,664290681,721126699,346019826,267191200,598829232,679542755,689427777,384271087,917916480,27441734,662669229,229848980,129235962,172664780,651904542,209562466,858359869,455292669,334479615,807023383,135206742,136874084,642386583,183433765,85429725,160639730,660195583,651977723,986008838,530472174,508319268,562855330,669049141,921844574,25637685,200133427,470664891,289180300,484675496,793287419,755524922,360349312,604952468,240228467,372146689,594561250,120102207,790587991,462492789,54642591,199506850,713604786,264003921,481727914,800905839,5901663,177452477,229696448,562858630,742933272,928900071,355648862,73284390,870581713,782193499,856106248,513267040,125682242,871468318,971943807,832022018,293515665,219327180,9879337,79460250,364531535,2926877,18977404,460916118,235427376,143593590,103108330,959304652,73522831,139327661,814465273,394639431,323840420,631013353,49562056,114199662,308669735,163157157,795262373,630510995,283768548,958031963,575737695,125297130,752944840,691909929,128947985,654782782,704839082,320417246,83745159,269807891,466219505,861897119,217873947,824578056,84107061,898677056,368723574,400769804,981140920,997564316,436525645,665397498,42994592,574793567,351044853,139570442,171306467,296318941,450767116,538341802,996682748,506602820,275321295,615328475,206681886,6704868,931571208,124632218,904886497,273825294,18397295,785754955,913243667,598521377,606623670,128659469,778093919,864656736,777597223,34020638,195438774,458174676,321174575,930212588,41986519,19510574,692374033,732933013,64052926,571125242,928592297,786759523,638445530,988853412,666275958,441588056,682895403,339312299,855629792,515865885,667351987,697887241,154162783,799154393,2043755,72249255,532555113,812954438,519239474,671390318,778676797,147601286,193057954,900596213,521736030,372497384,955908816,899463568,170029033,453289916,299237394,138950055,618538625,189152439,951345499,118541893,653264066,68385803,208198675,831745277,442380790,900084829,400823230,468506606,942096082,889546519,969523013,408600253,64997216,97395314,736241372,673848820,432168154,527331968,557323056,574925313,506270537,447191734,412277352,523473756,388762973,291263692,508213477,362813128,5840565,756351480,337052262,496573151,552039044,731049699,421059755,735571737,287625142,887085884,183646473,250175500,755934221,457011726,611390867,794118004,416313131,648546579,723771871,395855008,610615522,236568219,247062557,477289977,259301186,855575574,825799487,319756578,292559592,158384980,822939936,350354501,296892078,251182,988195696,40070037,888577176,835344331,701775319,57183387,155974890,595946392,428736776,916328453,235831283,263672189,535998342,295810051,168002981,986448709,937807908,778358287,365411213,992882673,659555185,739477547,518660132,623807052,391272220,528223718,410935255,661216605,648351089,249590502,127867378,567396931,737398571,573732900,706651320,604870812,669894620,683895970,66290259,71478142,447448833,709829928,116960061,266180111,617755210,931570447,663229650,545049342,975220074,75231765,877205953,48559626,451379855,948853131,153805135,230065074,177791326,116012556,944691093,770809268,892940213,695899253,960736826,592366778,987171730,182973579,661240918,268479752,476430311,640736557,430870995,815801028,586410504,814019426,27056242,808784381,150121498,442415223,218028439,797749651,781138198,720051410,542218624,517626914,704872781,623397310,141373099,1610196,879492388,46489374,562482258,593827916,304139439,293965793,358177917,279494349,718635182,477682736,850928807,176914154,82005485,985381961,226300716,763105279,54673627,539688085,304630575,679192781,600225279,232195869,571707228,753726882,378167299,327473022,523799794,797283101,425562996,716246521,997800234,751019066,39493576,680610534,923919931,871706053,804634833,960750504,121017856,493904616,221878434,360724156,463051032,668511080,136310568,427808516,667758446,475858328,612061224,614139652,290986442,611050757,946307745,288671642,834127707,995890238,625621394,539248992,342862756,253493310,331248418,412831852,675310779,506817191,789347925,739221536,200131113,886465104,261818968,20530986,220137382,731853716,771217582,22358736,281725582,389852503,440408661,290785193,430479473,750820549,942958872,412430255,462178557,768607859,886120547,696007558,804961882,939771329,734919308,925101374,553563828,834300155,64262239,923836648,985317442,976931120,700803948,149724618,725067687,691223109,570308681,608876324,55401699,545692813,302968624,760444287,498675681,803609655,86908983,432147786,609481717,855880817,897069867,587985546,349048623,897853382,699906336,839890315,109627182,863845352,560365208,461382347,138409067,478089236,789389657,55131540,762291899,612657167,268610408,677331677,993636584,386598487,227508297,87769608,354989900,239637811,300613376,371223165,786247271,578785360,517869383,823556740,444944531,583710937,944940444,917808037,273043559,905672010,69209673,849994227,61728251,859418154,480734164,889339381,290379251,91742268,230635632,780661365,536114668,92890324,919816305,397169603,881152869,179165254,594601722,253977964,509741360,644076545,696301547,572968300,450666968,777861171,508814858,246593207,388314180,685955554,166147160,539501122,566884398,824426739,243388300,414636220,540548355,891274768,528012787,278256660,876347429,891498903,297944893,913026333,840297756,223406643,824527646,142411295,290534145,905218640,836418262,71179607,500700147,991778425,630404697,984103450,848378516,371677824,99152784,574732506,307866115,100713546,169283192,99385305,34606067,193398937,718390945,517721973,465128154,946647945,702297867,370280166,860487308,239815388,183035680,814000109,704524067,220552136,809523285,372688943,437250899,405652612,614079449,407079396,719858184,569044949,990621437,158839775,751757448,959424797,245126489,291159007,613262425,479524987,540988704,85761628,98521542,795344618,735139703,104438517,705031277,531515581,937952262,156540589,440355011,978711953,62251411,452604632,90757755,54032650,154240341,814510363,414047474,850104975,743385043,942291371,35557387,264779104,931767641,849601744,678433290,745479360,904154527,400362210,543658650,27455744,903474701,75578374,345721554,154301499,871776775,530331697,825240623,472216947,633633933,755753297,415523866,614330663,226535246,339625181,581267296,577964572,57617494,787967993,490504774,298216617,434903198,188121381,508300139,36538551,892535430,911318324,10561155,774431935,412965660,144641242,757547459,913653487,958919618,521528874,578097398,254509571,625488715,363005029,795027965,631919193,323843547,439125362,422621,414295923,815076136,215489310,300386407,129449267,835082979,625832115,284483630,783783778,543381691,629433306,809113632,998005511,273614161,706720530,833336864,117509634,747852660,747644213,974118369,133712767,582145023,237790954,332380712,264330412,150047843,439840875,160330114,720638111,835764255,512513496,471571903,837966410,999715240,451878981,356476129,610260790,394054760,689915111,171938805,990916747,514218028,401518203,330967767,589204032,895753140,761825507,922629579,893450813,394938757,334599299,309590725,94461662,214696870,150631857,983453370,749134083,852555115,744533083}

    Returns: 17095326130

  90. 100

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

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

    {392694821,122791955,493011675,280121372,898737118,377801057,7936967,181875661,32910872,154986644,825317672,712913209,682502603,747059793,935607030,839750736,287250070,28248092,234589155,551484127,727782594,374482483,592064354,801842752,646169804,220771068,435079612,462563216,507273795,611100547,786306105,355431398,399807299,868933382,557866673,603988039,730884612,591950491,442138789,393992687,448969185,551642325,97316890,817333276,751947544,526577154,876248559,350246988,852123539,863273758,244596018,82650497,21643518,645331182,387819999,373888870,13683034,714557115,260045851,541985518,79608407,113532968,927444764,298057839,904055562,619894924,371665273,486954607,595362688,853353525,32819104,963262083,164669830,93320358,714889993,235092411,350471466,604625197,519971850,464824692,717908101,377616806,530597580,74083254,89947554,260898578,485091894,398618012,23791173,782641966,231372202,624798299,395926711,772200416,622335465,987440864,611025815,157811415,779774067,100717629,870902114,695337807,594836858,697449894,337629065,489271474,206189826,296073633,886289232,325282844,874545559,699315640,776505789,738919291,418519531,408985187,726555258,694616394,911584863,21594321,48490011,747029276,297425838,671501493,475525454,842240655,577556605,773025938,118214099,376083744,593602444,348271213,147000082,799005316,941972925,773881300,482319675,117804663,150860038,424346069,490665575,498746793,345081176,501008542,756907648,662646498,639419009,421101208,29546004,670551521,107429479,140428920,996924515,400533441,694990918,243944291,832899109,881006142,763349221,867303253,478200300,597505558,561059383,71110001,725103705,960209883,220249080,552802791,322440095,471852175,979272131,42047691,261469566,975171937,684518825,629003122,128796704,108283572,838001380,832122785,328807493,539820644,586713159,539469626,740143993,771347898,301044953,907074138,796490195,829094282,908232350,463845248,21729175,478347001,982190817,594806640,102545215,635513752,911232760,800699671,146021993,336061703,126809635,158532192,427519837,391089630,70871464,347907046,732660961,641474562,141091200,851648843,6291308,177203048,351284307,471763315,69980523,325538221,982814113,119881347,783247353,737867737,859722775,57462388,20759434,922281015,631865191,669214321,106803724,290353647,318236571,245568536,859776912,473240435,197276158,884120498,605693175,671989512,685169994,458928730,113312137,851474825,739350494,381225621,889490375,529571464,637611378,658364197,758322899,32838077,105611130,720880858,240488728,415536931,765838103,892691788,795609896,477044892,83923746,692048795,560938659,839878360,649036883,43711026,542458992,890176221,701354765,755897820,458097464,261460179,403797763,658245936,375123120,194263487,736715009,397199808,192379112,128466617,875699717,245021995,386260348,589285810,226748846,52387482,522540454,787423637,649793307,823284640,469853722,353012298,139297,407815922,440754933,725546335,817221286,416826354,862948723,932584786,437849973,432096733,249202640,715134706,960437807,878856870,375100465,488255409,876431665,237593772,475792888,816720137,257232012,578600384,306602315,90189925,857411870,635316145,22167415,677052514,390835753,575935490,838905633,570633965,697977979,678052590,912857416,806603948,47646409,224793503,416822716,57147061,993191558,732658683,830196023,943346571,338336742,801042334,336067186,443760803,988302045,329626642,415892995,243841592,878312657,246462280,746481833,251645482,845857268,794639457,549110253,74259,402511929,653668955,921998417,349144529,712580939,633399203,627438888,275774565,473752976,829219852,558420188,243533673,496377033,351139191,545096873,93209790,124767762,197606040,394535421,11797790,917124147,392929514,132221243,339448430,210124109,729996576,364506083,425498675,569834449,47614503,212396758,880233813,723100029,472793839,485263357,561972552,412384190,542097514,176857873,887100489,140003121,325848138,413795436,655121019,170074624,341507154,82625735,489419817,743647684,724696891,437819256,967621575,459763544,128854306,718885399,910156152,281714322,507043427,991920956,885189120,862233686,401333106,8147146,792277115,568493293,190345350,712963279,703648142,700491147,70625035,726652204,158132612,368532168,585229623,668256918,104960233,982868418,890783578,969275282,39272104,96258705,658122688,658050385,863190779,74854973,914034565,593600298,254891130,398871929,312241158,123044907,438386933,389341726,760144687,717922353,634330167,407855378,544247751,276753924,72976754,490633010,285262457,766546716,430767339,855204589,786151466,103441527,599933795,599676506,96590860,92658999,906379536,527053471,18024772,824453925,633188322,119960535,771320292,373200325,69931139,963895316,888362968,652757224,328681885,715772445,414778644,311686662,292440127,61149804,743157512,573610733,908464455,472780813,745803140,389370729,802680960,54283448,542002551,705729809,661536010,632371565,971384199,291645420,803183859,694296516,969282378,707082907,392358636,348368396,500076870,26026334,430936243,122177513,938870976,69867372,311708682,124773884,796345443,642890514,166434437,189567973,659549437,718468283,245549953,797477569,147261783,904241160,816970294,912330741,559915887,89575561,478912587,738881037,772023383,600424949,677216378,508808547,169703641,387133226,493380236,434685480,947026979,724908518,607252837,675140982,334440348,627363325,763235430,772111824,334733246,327456450,428661119,955132790,998327028,218501861,537430011,765485246,878410278,230632956,113347400,914774180,277301378,988213373,853142706,417693329,763472797,31198992,832232000,173947425,759601159,201082200,220921851,309214552,961380823,976467634,852865729,298267343,508461472,570462041,241744926,940859988,463786530,81871094,361647858,739531424,701894084,688923089,212022697,815849435,203872899,543031080,945497823,634453577,716780910,416050200,232367891,423665940,940994790,783820590,345574431,796424793,422376461,693082192,855398133,693123175,118432364,149176078,771895191,531513455,41174333,836791776,611775988,507820320,732693510,948612940,112529286,75206228,764157967,417909401,87442764,869909783,600664430,514797734,365600947,791764999,151264238,93533890,825304218,986693124,298625475,243264702,88816423,455763979,422053048,60354404,413244747,855880153,246365309,79995364,614782854,672697013,270706540,23308338,693968414,817388661,679493681,191797070,690916829,63330738,288344296,946826617,26694177,13844826,370379571,780439213,942587779,438360351,462781165,225954535,104666239,611711539,621472476,376041974,743834463,859070829,713654263,974952113,349876647,733517438,726360725,58118701,739021617,53811773,359737855,207556069,195434965,198572460,919924063,688789298,209888987,748554072,608397507,35198229,849978403,433262230,826206454,744307704,364355301,846572200,80121133,708650041,37272711,254094561,801521672,800666136,96988392,461066928,702272117,213749218,599208853,129983435,433584816,264016410,481137099,500538654,836553514,259212427,412371477,768158418,428978248,860228807,73056224,3766491,311346197,2618452,655864814,347121621,547820318,426358162,701383577,840543103,774294415,372707322,204528155,674449122,539335622,822834152,592806566,287926916,994259276,673371010,731357206,479649348,686524644,416933226,332603126,770752300,962422958,864509214,109184504,928725652,908124232,564059446,149330551,410956268,666960364,446606622,927846283,259502322,69506399,865771956,338838198,511208375,659176334,663004076,716940367,79183114,672512548,227597073,942549085,873609972,200810698,761886008,778051370,295912989,261082006,789268766,489766813,309590818,308344363,679048651,461668148,59596691,626809479,222343619,993300285,456043324,747776855,566842862,194584744,41570451,528911322,984159912,621592578,351011773,848654345,175503979,207217389,512921104,613868946,603282826,676500613,702741036,775943364,994492597,145034825,487716100,80840157,166663165,832552828,766804044,951295500,277689943,366226108,638382036,122162701,821295693,859977476,748477806,196543696,383862897,272876971,218336658,620163419,447972719,769861375,561700019,976609519,915456530,386663056,18518578,331441537,567719948,542839032,852115972,298917712,838031100,195582995,507735588,784150007,585755812,966979405,843074468,471976466,118923046,524775934,400158586,798325259,338276308,431278226,68250083,71425510,19887277,362476665,604588227,440439607,277439040,150230070,432807306,875621265,947119254,666251818,872163137,19137719,563632052,526839217,763097054,906516520,916999013,20316440,741439706,966586736,444570176,239481053,334754119,4740447,625630836,550059588,292440148,937334421,787558507,425803420,502351770,41379208,28036080,239934934,406847456,462657889,15002871,179936118,293251994,6006128,897958219,564930119,645696189,587263388,553784143,130804911,404018680,751783825,312910470,457213322,401795795,763764810,726725689,149607038,575253440,988895113,514639871,100681540,634624368,600020822,214747361,855133688,293981285,576413985,451673444,917916528,164256684,376480615,664638933,608783363,743584680,166976162,661477326,360730401,751687779,637884655,260580223,297358473,120205593,801406971,736725674,112777301,293579196,13934970,289001032,91351496,570591217,815606104,768314183,639006514,60618280,46857334,201630807,603627470,346155403,489764091,746260239,214253760,93710717,658143220,986973652,595571284,747417784,278365450,806374408,676605216,173467151,559472323,866825860,921162988,933057018,242051265,64108838,475319358,567288420,193945390,449896384,816458549,415787607,514836771,184708319,249114992,423079583,672637216,961577006,509593481,976157968,605432684,492619352,575905926,321722567,261422896,696381311,646519694,786038719,49408015,509009400,334574136,198991628,415493100,102216283,416771226,277936489,810793745,424969435,82831921,549382499,591241658,489855857,632620215,935009712,444499258,816589893,905172027,229948467,104882143,163747658,585113713,533977742,424766474,743978993,26442699,150429916,798464449,390578356,431138069,983119961,594128062,380944287,436456452,856647525,930376638,138531744,742477012,578126906,895602707,456660838,114038718,960249413,896159029,215969004,285280421,233047682,288855074,779699657,592686904,53866157,806969982,435210807,689213024,436085267,110210358,910940688,222804044,303888988,622298602,771850256,427586603,767245241,641609524,436317921,475016272,678663367,817088885,988681020,609229000,762597155,770071216,901456141,433870960,725789966,290880743,47328906,706616342,467583587,799466905,828358163,163093220,403335955,996607628,842569658,254261310,4534721,131697718,357019885,211420799,135939780,299901214,176120196,640687280,888468287,921210333,654233805,393869754,725062542,879600505,495136953,580639320,647739330,16377156,890763125,922692853,412959429,296705854,628240538,910606552,28072181,688357586,270455003,791067457,293574117,592300595,576566686,482779958,574973640,29412004,62207374,432687603,548974419,698748498,240640469,801654594,457867356,464075574,438976967,400438529,685631875,397001236,533367084,128510792,451342913,183993380,518016477,711090125,933662146,548458137,411361340,975344735,906069771,220045221,959922310,807895425,551597795,835269803,829138425,640284796,963717295,535927031,98335752,68782046,258264795,500067808,655397045,902222981,124209677,574619696,441174794,900066934,645753697,194902677,137095100,900050151,773204051,57065333,276139910,390613776,376488611,536647806,902027079,323405417,561385053,429439808,241833279,324253228,165580070,441425126,697947108,852812632,957002401,957960738,450887676,397550827,28883116,153881050,748625201,669533627,906821301,274937787,4012918,699224592,418118906,980074182,817169533,963590889,189451075,202835599,100287175,620020106,20053776,56025749,537210902,528548856,496160306,811234418,755536225,910313043,945897276,54019500,819823125,395664718,157864563,254906639,9369614,161048802,755243397,457975246,186201292,876994554,77745013,874020806,516867975,680426898,415042678,126093019,867654696,902932851,466193579,347017184,353007831,241367929,14248910,588610971,226638212,813720778,375252612,749459032,641035659,956674652,676482982,427933500,143446119,839910520,256175684,113152592,998970849,449015380,574521830,374352838,204774700,191125791,754073482,728029628,904947211,545132907,428387397,194026488,698252214,473461400,311023239,851839817,72418521,593877757,487009416,352653867,222752950,30140429,837835905,704543368,961130665,972209937,185327321,100098094,604370891,978533562,981714890,512695599,161500240,591145868,122750184,589466599,664188375,830133856,275065757,124349571,513027023,742603703,652741762,119147979,575977262,162109671,954326594,613344350,994968056,717317397,915147511,328016012,923293100,875887900,718202572,256926288,107217568,461195945,514402308,538772351,584433847,631562426,830104706,888612133,186486719,490063269,297035568,170489878,399141425,462458240,315773651,930737499,586203334,239139870,702842777,651918939,328674779,141468045,932857556,925931744,410741282,808281130,368446801,489726732,805866145,884810179,145283335,794501078,949026072,517841733,996149290,441272847,372221276,798904455,268233333,442564756,373363326,90656381,270638245,202049908,850405979,479668416,203124552,918389464,3560084,870338442,661179688,206830311,714651060,554380230,299699038,161039072,776865686,319232188,598667831,227107774,170913553,802239731,79474161,392200159,281262726,88236559,447848492,583306712,126845457,724861491,641413847,185088256,483488370,493344859,643167674,298447291,99136348,38305739,790698610,760796301,90113751,402254497,258613083,56633720,340335863,552646065,476302728,475691355,445956865,540652932,463168207,66247951,64622871,561921413,614774305,769812482,799080698,175841651,671832093,126233260,69104677,275018466,804554305,467440206,725610599,293373290,558082397,889636919,131240270,359307302,77238818,710529173,8889409,531054179,790005795,403578741,100383883,192927301,23896461,391786392,452811148,518829505,797638425,233250101,462002172,2095815,787203598,660234499,20568138,779034135,383978151,912094801,454313511,118145484,958269756,995552963,851177246,467878941,782365607,889586797,190540589,361442188,504568922,681287477,937406505,237892339,947928718,689130697,99460653,908055467,56285186,197174258,723325038,950665243,117192434,478790131,1833888,996389821,966398126,608725892,269258983,127190589,532572142,391523371,631088665,760232562,375835836,712527487,412420956,171368112,769519643,540252859,448679586,382322466,751852986,147906904,599873045,975818296,519996891,993219165,750606283,136323959,737192438,526201184,813973294,848042062,828808092,828828797,734836044,726427914,300766214,469218808,392158221,432059033,778634525,26720239,884403752,184297247,621698691,162007080,128071228,913708087,673594752,888560447,345755083,167685278,515807394,22196558,313322830,683456771,914868374,236800372,452625648,336115862,759290788,493919030,837153751,190661578,187350520,485077875,910034382,867229587,425002812,323256917,23817550,159096995,289351124,313599875,303992803,432682845,103723480,351064241,814188482,928319972,556815697,970060321,752743092,552566478,316022903,179961968,658072181,958349486,96723341,221085346,145577515,357769585,541467823,714241186,745340846,770324932,708634040,929889597,394803876,490424912,398425950,704557792,48468421,619857019,185823287,453521821,716560987,377037665,424709148,717155775,967238606,852842803,813764891,249369135,699118351,639451013,424517409,369701558,300183492,568005798,953480139,601056087,809115654,940412469,427536278,557800500,612896876,111424014,853154588,141457373,739462840,459252217,72148031,546556113,802645516,159378847,774931256,437781942,183453530,27673368,56171092,488293588,125786284,168667657,790673360,502625963,821369831,583337357,797142854,799252933,500786151,936098799,575156206,687176045,85824508,83894788,58071532,139841201,906158367,480565825,445995647,134366980,90652795,677350985,48840273,831173962,482687622,675126798,768036056,350198581,1492826,379147969,310712280,904058028,489091489,777109715,507193827,605530354,929701492,232859846,463726485,871872583,911738885,324555766,144201545,831891462,653821614,278141410,368959539,755761825,507181153,73930658,450171253,64810283,503284119,733215835,747094042,518581829,381942701,171657777,533483762,859019852,944048535,350026286,190210156,1126895,560552040,754429299,841455478,895666059,150145885,16838044,450984943,761957529,833509919,959277141,135812362,679759335,143507844,843613535,65505720,831098028,801860299,203651262,861503492,995327500,544294366,962050294,37062639,945695351,566399889,927413766,402089990,297385065,578132206,42615862,511044205,900029391,168891741,473664548,907504998,92520514,466150950,290030597,475880913,204130567,764302446,494310315,551137221,704496090,989139641,608234788,962397843,790072857,8209213,50145650,899233647,696697152,107866899,972993754,436371642,893230337,272697195,205679428,442311336,197359453,568147093,69055301,436774846,382878620,939177659,550932393,457410245,600369897,569924013,201990919,871680226,203504530,179294787,263104334,606011123,241953110,551580771,12303836,109860863,273407051,494705728,333404936,992968992,378164644,350382089,239960967,612178691,239248704,27930771,396156182,357221580,282526266,506452223,828002512,490878922,860610529,852173559,942828206,790564531,28547727,117190369,228903072,694970068,471031014,101099740,360477428,663387103,641583397,993120872,894600912,292832045,61662461,238876035,681767058,213807389,300582068,487085164,377947016,701946627,609678297,165222872,163621021,190994110,645918920,343675667,116874727,458366647,787841888,965024981,77174640,12287773,32560739,741967222,687521247,920016244,560750910,751025907,97978745,868579459,262542695,445587519,474116332,438748948,399935159,198339545,88898748,644654303,658280701,834565420,774695630,211089441,198249539,630919131,238500043,346156121,584473901,21324368,343829804,24071261,148687227,646248574,990942123,264010132,420515861,285463248,408634708,626862920,475109087,698617529,826308883,819476916,96146044,503914418,778990985,600640752,614734882,38144433,378556021,439475256,470437403,601173347,669517578,145708120,543804570,629720097,616377943,287972145,56192815,6100244,448535321,623926607,85711727,433650765,342718944,741917982,690030307,716121508,506448772,785290652,707245469,102278283,881795231,787602591,155135054,273473302,287805910,703438646,529638731,563586214,696269708,885263310,336452069,702817987,941490901,508559877,187801456,493157236,929222254,170675586,349209032,932332283,961018466,436220874,419976844,757492113,588487775,847048480,293785125,22188356,514186857,213744761,565868642,551352144,613523093,807329787,76173388,138909239,772840860,691028059,61733170,213019343,697076149,125289301,784813859,803773599,799128053,235140484,91854341,479961323,775312077,583992403,122414139,59997380,422046311,68321782,985215431,546201300,467155258,86800199,974932507,338981227,288904505,597536141,809937343,107136984,870283880,197494415,168925938,919214466,616061720,889952349,183685473,40322714,1319106,23884161,824255447,955440283,882563033,452407455,900401650,548438015,596675821,727926554,83042503,319216616,246454846,614617814,940497865,651005258,144871590,554584635,498057180,878999190,79852874,739396814,776920352,440602941,1307755,893115430,359376850,783158392,926262120,665531368,86142288,688595516,820658446,212908625,194223529,191554547,817503190,965582478,945286610,202834151,642221510,32773253,506340394,780228678,570574702,998581459,258584567,809473173,898918001,250177024,305247180,537492761,518564007,579621127,117172360,193395011,753490403,337750379,135983944,81904309,369733356,101811838,121130873,35508285,433319344,641214076,24396996,196395709,129431623,762867354,703193259,739478119,206681517,552198426,886680275,385851008,200508257,753170203,44706226,312008850,931722388,649309774,818912944,563181313,502763141,475377555,940517433,997694704,350845416,36397150,655336508,844369430,51352698,144743209,820581684,32702254,239637978,544980102,350010488,848002965,630348892,318813076,475983317,684886394,247911542,719201275,799543667,996296287,26072121,8330289,727360364,526390834,162380751,850592284,590088202,578758530,383926340,195723679,103998150,488007985,129363341,995239936,243011185,445527744,950782689,832417799,644530654,888038004,838560587,304688701,377779773,4760041,940916123,35900722,878661173,764490522,678185326,100600638,195873555,596324536,7769280,567691514,999176157,636007220,908154530,645470453,937517795,926670865,164767984,30581905,930747606,896903767,158245149,698857906,536547915,380108151,586262461,799824082,32466040,106065114,985605550,677921804,605834250,951796383,752347134,60446313,915047598,449396214,773498582,664637180,449860012,961864931,514704941,432871855,960997849,615351556,627013035,173206159,787723217,197323460,809176541,996408124,87193004,719050148,376382409,196571252,615345330,914449257,342833117,405379944,670736221,18857008,106967121,95590435,843346758,241931710,214951911,560312269,323933889,706609930,410602870,338698725,373047648,279324301,837181723,686652249,516192267,855658920,303434275,721711052,578546284,315262646,158170141,90492024,626481045,985763028,635577771,137367298,524960317,57139610,344737208,788435352,601529994,474272988,52148230,442215104,653470505,37555521,739397796,188787753,275177661,785095704,807211452,243680464,825253023,819396751,226687807,794262275,399166996,570995603,484175004,992284096,774661634,847183371,892258000,735580299,75755265,284748350,746694359,200750602,651506257,522304694,734614916,169844088,142587921,768743667,538746557,173299824,603451650,226520461,358037849,394596206,802612475,139028828,408832522,498366299,36320745,958905134,962201942,833681426,248163237,566441549,738835235,257461944,59366004,368303072,742307930,372498012,884660041,493959900,41377362,872212159,454660149,869457139,488025890,583125634,30136212,708892566,269257339,98155978,276513333,369566877,490913025,427957925,954274156,395286006,435070563,491917880,295876552,612042872,126106817,109837955,842592903,252147210,631169734,919617200,106932629,587346332,794706589,701602162,47278053,940792482,579983877,274004443,812919720,222471870,717979317,817945390,157346295,240124566,815958058,786830528,4204024,54721338,891826135,474274010,461197407,454344785,3221831,976750865,725780527,111949428,364975883,64762579,671979624,204922033,4261532,106706699,959284452,206595091,758354553,37905822,509574037,548972399,23652201,941612192,176633133,3254783,688060954,166362053,152838212,862485407,231249576,291065310,278707525,610283309,827795978,863777314,750040355,429590161,961634499,965798620,370882846,361894114,113897832,22101936,457302178,69615219,344408969,946362298,778495847,431261728,542374355,930865775,161660284,666178265,897480229,894412054,44226067,586599483,668751972,274943306,14023965,960427900,72041863,3076369,453240706,934133564,277755637,939915979,180026762,972173134,774260277,52422968,142041269,464384827,997514138,418609396,91597067,818934809,796369376,764246403,558507118,105575033,97453911,695151910,105140054,444254248,92072311,613038244,24739742,194566488,76354907,815926002,340403420,266247126,307299026,412611571,369195280,127352007,622916838,954736210,313536989,414990604,602661359,245305043,940702235,616746240,775595975,365627873,302827414,385865837,409406790,890315247,259441734,911725242,315281145,910002720,390506316,817873461,624438836,974505097,604888311,692040082,486920733,92133353,300150507,47641371,577687699,733045063,343897994,861497597,145573150,60963094,67655392,34802516,290635054,82783288,97853662,748414118,605985364,87649425,545956870,966401573,334131520,299819070,299466993,914374712,45975377,485278586,607448910,950320974,313549180,474066006,370277476,455894043,492734130,785702079,211807986,31029768,899602194,891759540,694586921,141681897,540075244,163389432,404035521,954704008,99867925,357713855,719949221,999331256,204366670,58055655,511377051,494488572,552593454,106481992,650196751,47209786,476277277,434001082,742038414,506245520,463704308,244582323,123554872,725084437,84042610,659949754,698627153,718769877,640348189,113184040,755284551,474417467,935738457,357657115,820256190,208146040,132517179,305312082,221083367,624931944,699523899,634122767,496645277,288026125,919564105,397353552,33993731,772553188,173462985,544233112,88211535,781793681,46241289,886978318,812114387,776901039,499682457,400674653,802185199,513233453,814327705,899088435,245094745,830213492,28383973,318703130,894725129,37576119,615928857,218274115,651317331,198577544,711065805,688424051,143750073,865359140,263244120,708643597,496220827,316726006,347203401,952979695,462019110,176571249,455566094,398031136,719580952,242581531,162105950,572143262,915693596,853268743,174702543,228605795,734901042,215740116,15419295,80144605,119966057,497119267,651899971,974810561,982742538,343837836}

    Returns: 27339680679

  91. 4

    {0, 0, 0, 1, 2}

    {1, 2, 3, 3, 3}

    {1000000000, 1000000000, 1000000000, 1000000000, 1000000000}

    Returns: 3000000000

  92. 10

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

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

    {1, 5, 5, 10, 10, 10, 1, 10, 10, 10, 1, 5, 5, 3 }

    Returns: 11

  93. 3

    {1, 1, 0 }

    {0, 2, 2 }

    {1, 1, 1 }

    Returns: 1

  94. 6

    {0, 0, 1, 2, 4, 3, 4 }

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

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

    Returns: 6

  95. 5

    {0, 0, 1, 2, 3 }

    {1, 2, 3, 3, 4 }

    {2, 2, 10, 10, 3 }

    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: