Statistics

Problem Statement for "TwoEntrances"

Problem Statement

There are N rooms in Maki's new house. The rooms are numbered from 0 to N-1. Some pairs of rooms are connected by bidirectional passages. The passages have the topology of a tree. That is, there are exactly N-1 of them and it is possible to go from any room to any other room by following some sequence of passages.

You are given two int[]s a and b that describe the passages. For each valid i, there is a passage that connects the rooms a[i] and b[i]. You are also given two ints: s1 and s2 The house has exactly two entrances from the outside. One leads to the room s1, the other leads to the room s2.

Niko is helping Maki move into the new house. Maki has exactly N pieces of furniture. The pieces are numbered from 0 to N-1. Niko will carry them into the house in this order. Each piece of furniture must be placed into a different room. Maki does not care which piece goes where, each of the N! permutations is allowed.

However, not all of those N! permutations are actually possible. This is because the furniture is large. As soon as a room contains a piece of furniture, it is impossible to move other pieces through this room. Thus, Niko must place the furniture carefully. Formally, she can place a new piece of furniture into the room x if and only if there is a path from one of the entrances to x that consists only of empty rooms. (For any room x, there is exactly one path from s1 to x and exactly one path from s2 to x. At least one of these two paths must be completely empty.)

Niko is smart and she will always place the furniture in such a way that she never gets stuck. Thus, at the end each of Maki's rooms will contain exactly one piece of furniture.

Let X be the number of ways how the furniture can be arranged in Maki's house at the end. As X can be large, calculate and return the value (X modulo 1,000,000,007).

Definition

Class:
TwoEntrances
Method:
count
Parameters:
int[], int[], int, int
Returns:
int
Method signature:
int count(int[] a, int[] b, int s1, int s2)
(be sure your method is public)

Constraints

  • N will be between 2 and 3000, inclusive.
  • a and b will contain exactly N-1 elements each.
  • Each element of a and b will be between 0 and N-1, inclusive.
  • The graph described by a and b will be a tree.
  • s1 and s2 will be between 0 and N-1, inclusive.
  • s1 and s2 will be different.

Examples

  1. {0, 1, 2}

    {1, 2, 3}

    0

    1

    Returns: 4

    Niko must fill the rooms in one of the following four orders: {3,2,1,0}, {3,2,0,1}, {3,0,2,1}, or {0,3,2,1}. (Note that, for example, she cannot place a piece of furniture into room 2 before he places another piece into room 3.)

  2. {0, 1, 2}

    {1, 2, 3}

    0

    2

    Returns: 9

  3. {0, 1, 1, 3, 3, 3, 6, 7, 6}

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

    1

    9

    Returns: 16000

  4. {0, 0, 1, 2, 3, 1, 2, 0, 6, 5, 10, 10}

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

    3

    6

    Returns: 310464

  5. {0}

    {1}

    1

    0

    Returns: 2

  6. {1,3,2,4}

    {3,0,0,0}

    1

    0

    Returns: 32

  7. {3,2,1}

    {1,0,2}

    3

    2

    Returns: 9

  8. {0,4,4,3,1}

    {1,0,2,1,5}

    0

    3

    Returns: 40

  9. {6,2,4,5,5,0}

    {1,5,0,6,3,5}

    2

    1

    Returns: 105

  10. {1,1,2}

    {0,3,1}

    0

    1

    Returns: 8

  11. {8,9,6,6,4,2,10,3,2,7}

    {0,1,0,5,1,3,9,7,1,0}

    0

    8

    Returns: 1188

  12. {1}

    {0}

    0

    1

    Returns: 2

  13. {5,4,7,5,1,5,6,8}

    {7,3,3,0,5,2,0,7}

    4

    3

    Returns: 648

  14. {5,0,2,6,2,2,7}

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

    2

    7

    Returns: 480

  15. {1,2,3,6,6,0,7}

    {7,1,0,1,5,6,4}

    0

    3

    Returns: 120

  16. {706,1518,288,2660,672,2011,674,2302,1746,1149,1131,806,1571,1881,1751,2657,1037,555,234,1769,896,1894,855,2190,1444,1314,167,2306,55,1185,414,2515,508,1750,2822,230,2256,1007,2472,169,782,310,2617,1670,2886,169,1873,879,2037,1044,1090,1512,2849,2106,1982,2529,677,2161,2881,386,1281,1069,1365,2201,2602,639,653,1861,2020,2456,2354,754,530,1232,352,1922,2692,527,899,501,972,2368,1819,820,2697,1467,1537,206,2887,2804,2378,1794,1580,1732,628,1987,2740,2122,2879,1493,983,168,1803,437,1232,1029,2051,2501,409,2303,1496,1881,1308,240,19,2402,578,157,1562,253,2183,2715,532,2390,2480,1110,2271,2583,74,1580,546,219,927,2852,1499,1804,2676,438,1234,658,422,573,322,821,1210,2663,804,1362,1183,748,2811,537,728,122,99,2783,2520,640,540,1436,622,1936,717,363,2075,1330,285,2012,2397,2802,998,1019,1372,2402,2292,2603,973,988,889,418,1313,1464,2364,88,2836,2511,1473,823,521,976,2468,1596,740,762,2817,1199,717,2742,888,1341,2480,2707,982,1451,428,2725,964,1599,1596,1874,1793,763,1076,34,1788,1001,2122,2793,1962,2442,197,2315,1454,2624,4,544,637,344,2021,1744,1022,55,256,1855,322,841,1614,1450,2867,1222,1833,1140,661,675,2369,6,2034,1116,2556,2348,1516,629,547,2548,429,927,2489,441,8,2570,1502,2209,576,1212,332,449,1644,1346,2161,1236,794,1826,2188,2506,1835,1196,1599,720,2793,62,255,1694,22,1213,861,1244,58,1897,1583,824,1697,2651,723,1332,331,2876,514,951,1585,2141,2456,2762,1036,1682,3,2241,2810,1386,2133,1512,656,330,851,1703,2784,1616,2174,327,149,2302,1749,2665,960,1444,909,1776,872,1946,2383,2851,664,377,1188,321,2290,438,2669,1823,143,2336,1701,1866,940,2757,873,89,2207,2087,2014,1004,1843,1746,1619,2738,2457,2212,2049,2090,638,988,300,1154,855,1102,1222,1033,1533,1502,1875,2124,2011,1739,2567,612,2637,441,1326,799,190,111,748,84,2848,2757,520,2792,293,2595,2868,79,2391,2489,2586,2559,1,1293,2742,120,2113,471,2380,2397,787,1154,1368,2796,2780,2584,1199,1223,1200,1857,2118,2444,62,1541,514,1462,1824,2526,2781,2314,2241,969,2025,1102,1897,423,835,2272,1436,1403,2098,2766,2605,1476,246,2370,176,170,22,2880,413,969,2485,2112,2642,672,2220,2334,656,6,714,2677,1773,1883,2309,2678,2845,497,646,2011,100,1594,1223,1211,1341,703,1233,921,2679,619,1599,2784,1371,1498,312,1347,2838,1063,21,179,578,881,2277,367,2683,1896,240,2817,1293,1178,2767,1373,2732,2212,1576,1741,2250,1146,2763,816,125,2413,351,2558,1357,1950,584,194,2232,2493,2436,571,2172,2069,36,2366,2043,2158,692,508,595,833,1970,1723,1858,2438,756,1761,703,1701,1038,2847,485,1440,743,1058,2288,419,962,410,1284,1933,2769,296,1437,2785,1339,1153,2539,507,2187,1386,1631,1685,617,2876,609,2496,2648,2437,2549,1330,989,2115,1133,801,268,2220,1917,280,2461,244,1091,762,1112,762,1194,1993,266,297,1440,2203,780,371,1309,820,517,989,1719,816,373,1039,1638,2649,1006,1122,2571,1175,2820,128,699,280,1150,672,2474,403,426,1979,2731,2330,1006,1568,456,355,201,542,2160,445,2642,408,37,2607,649,1321,664,1399,392,2334,1162,498,625,2823,1296,2484,1229,1309,2216,257,1655,1715,1119,439,244,816,1506,830,734,2320,2233,629,368,291,2553,173,1268,2641,398,2353,1949,2673,2805,560,385,2653,1205,1685,1727,432,1421,618,42,2640,27,1194,2714,1346,2754,257,1911,886,2821,1312,614,525,685,1418,97,1159,1488,772,789,2642,2330,391,2306,2553,504,1116,605,287,968,1397,1213,1992,1103,2876,2461,690,1965,1070,45,1125,2183,1582,1795,819,662,2356,278,1966,2310,2087,1436,1083,1842,1198,1838,2332,2259,1811,271,356,1812,762,2703,1498,1657,495,703,2159,674,579,1060,2469,951,593,144,1736,1673,2320,2283,1109,2307,913,2747,1736,2158,1561,274,2234,814,2179,61,2010,1733,1677,1238,2467,766,2823,526,2625,652,938,2040,1032,120,2522,2509,404,514,1078,186,1172,1428,1201,121,1327,1242,1844,1446,980,2462,1075,2552,216,241,2450,614,404,1397,143,448,2834,139,692,2424,404,1308,339,676,2710,300,1400,709,1993,2498,2379,1630,2588,1942,3,1229,236,984,2093,2683,1650,2797,2225,1154,1271,256,1667,250,2471,2137,1763,1109,52,373,2062,2212,2539,577,2223,1793,724,2777,2411,345,1082,2817,883,2144,1754,1154,473,22,997,2409,1653,2123,2585,1459,1936,2500,326,1093,1298,2320,468,1902,2508,1205,78,2254,2715,86,1546,2146,1115,670,865,1191,1567,2032,949,573,2298,1623,1954,1834,995,561,351,1015,1291,876,588,2600,880,2247,2854,617,1077,1094,1232,727,1458,389,221,1097,1852,2885,1296,2215,2571,2251,2268,2547,1882,2434,2472,1544,2464,314,388,10,722,1185,1289,1588,167,877,408,2129,1782,555,2843,1820,1718,2667,2150,574,2072,1328,1690,2673,1463,695,2155,24,301,2158,481,2673,2649,258,227,1825,2849,628,2237,630,102,34,2229,1221,692,225,254,1551,1952,2725,2819,1352,52,653,1738,1090,2134,2256,1678,1906,2007,1588,2520,2165,2248,651,1578,2281,2322,1024,1707,129,226,1893,115,1588,1232,1265,1276,1420,2332,1832,2011,2778,1121,1685,1989,2085,1307,1472,2506,1190,1089,804,317,1415,1957,1695,774,715,2303,1405,577,2162,620,2293,926,2331,2400,460,2650,697,1610,1432,1443,1909,1739,720,2803,527,137,1215,2441,1794,2134,87,1462,2351,1778,507,846,2161,2774,2784,1869,1332,1376,584,1026,1283,319,1845,2179,2190,2825,2739,1965,1818,2472,2530,1570,1034,2084,2884,1353,2412,1240,2882,1844,2131,1703,1588,2052,2139,2019,1544,2636,1484,1575,48,1056,1779,416,35,829,748,2233,1687,2092,1759,2759,893,885,146,197,954,780,309,2339,1311,2392,1424,12,2149,300,2863,2865,1157,1304,1657,21,1004,2630,439,1116,977,539,2674,270,369,633,1508,1740,2093,1397,1262,265,2426,754,2631,150,2200,2855,2831,2539,1781,28,2754,425,1634,696,764,2083,2848,2022,2184,1549,1331,2764,2569,1436,1570,551,1381,112,1580,296,2593,1708,928,1677,461,730,424,2247,2730,1030,1487,411,2019,1651,2455,1317,1859,2321,729,814,1840,2147,455,1208,90,1164,1130,155,834,1461,2436,1067,1926,2883,199,379,2726,1759,1433,1722,66,759,2469,1211,2207,1309,1126,2813,2280,2324,1706,2729,2856,1128,1596,2329,2201,2095,962,1148,658,2562,2690,603,2178,658,2667,2470,2479,1146,95,2169,890,1796,2544,1438,2256,1612,991,2757,2554,1864,1889,2379,1793,2773,1298,2025,1701,1337,2565,916,689,1875,1128,2452,1473,64,912,1945,962,1069,1936,2000,924,2659,487,915,274,2466,771,1497,641,231,2291,1759,1455,1646,639,818,1512,2509,95,2542,1991,894,1962,1176,1796,2225,2880,367,818,290,2578,2429,1786,749,1886,228,2411,2209,825,2789,1553,2769,2755,2558,7,2308,2730,775,601,1358,2714,658,1160,727,1303,1566,470,2341,2201,1431,861,971,1800,1512,1137,875,1393,1895,1817,511,863,2212,2730,675,1382,392,274,2890,431,1470,375,2097,1840,2774,1879,699,1410,1912,2801,668,1619,444,680,1164,195,834,2712,2663,2493,644,2385,1145,500,217,928,301,2130,1260,2060,695,1959,1172,2497,1129,531,68,337,1338,2760,1510,303,2157,2062,1850,1548,2400,1147,1179,990,1750,584,2253,2673,257,598,2744,2637,2057,1833,595,1658,1877,1004,448,2525,2496,2685,612,1310,2114,1101,2043,2831,407,986,752,2122,1053,1189,703,13,1552,320,1066,2601,2815,1296,2574,1833,2472,870,1273,636,2740,229,1699,632,2704,1003,2529,1441,1188,2885,652,475,1646,1720,2011,1668,666,283,1269,2589,2809,1285,2697,2521,2562,1692,1547,552,1460,1651,1368,2889,1300,709,2160,454,2793,17,1952,959,194,998,1110,1296,682,704,584,1378,402,1433,923,688,1106,434,1866,926,757,974,2078,2704,1973,656,2686,2131,826,458,863,1756,343,2800,2268,637,1649,1648,548,1093,2786,2139,733,2621,830,166,2167,384,2596,2011,1754,988,1192,2264,1968,80,679,1921,176,830,261,2799,1010,2678,1987,2687,1541,1024,2539,232,577,859,1016,2248,2368,2817,2227,2262,1688,1810,1994,2648,1358,1009,430,2392,1569,2307,29,2521,453,1074,2702,1947,1245,2092,1233,92,463,2797,1465,1831,31,285,265,1875,1773,2694,2351,245,1433,537,2700,1222,2510,218,2248,1578,1795,2284,2352,1204,2304,217,265,1197,1680,2535,2472,2865,2281,304,1309,1072,1983,2539,1152,1404,240,976,2707,1312,2611,2888,1015,1836,1032,668,655,590,1555,465,758,390,2776,2342,2394,798,2348,2180,2861,1260,2800,1386,1745,981,1971,2464,223,1137,2561,1961,782,2541,1679,43,2879,406,1431,2828,2186,529,229,448,2139,2168,2824,1796,2039,661,1447,1638,1262,2791,2216,2560,2720,2417,1966,2263,2228,2264,1854,2204,2735,551,514,1423,1014,2870,325,659,1292,1525,424,635,1995,1887,2827,1820,1952,4,697,1500,1026,2187,797,266,493,601,853,1539,554,1665,769,1430,199,2209,1187,2268,2802,1783,2388,2287,1262,1325,584,1693,1441,1909,2012,264,2335,402,541,10,2035,2213,2751,1558,2481,995,2466,935,2415,629,1095,2743,709,2891,2815,2595,470,710,2374,334,1492,2756,2066,797,1291,2741,1401,2543,1300,1281,754,1797,2242,2849,2554,2120,401,1139,1351,1016,2590,1588,995,1118,2063,2137,151,305,261,2275,1147,1230,2207,1847,1536,693,241,1735,2698,860,1862,405,1218,2236,532,1063,2392,927,2119,1164,2345,1061,1219,171,2300,2806,2580,1142,1249,1340,2057,452,1170,2171,1062,2261,1099,2600,1760,383,932,439,448,202,1278,2027,2340,1090,190,1520,1915,1992,2216,2494,1553,424,209,1481,981,505,2145,1450,2255,2790,508,2696,1898,870,1891,2620,582,1261,1490,387,1635,2278,9,2420,2463,32,360,51,2521,2565,2193,267,2534,1453,508,281,1733,45,1852,1193,2527,2187,1291,866,2249,1024,2186,1006,1744,585,1002,2105,1790,2622,333,870,604,1693,822,1981,1292,882,2705,1230,1013,2663,2885,1344,2403,729,1980,116,704,1348,1023,2663,957,1999,52,2280,1411,1432,809,735,829,1361,830,2375,38,687,2615,2380,2205,119,2712,2176,1816,2683,2222,605,2722,734,2845,2891,2296,2866,1851,493,1908,1502,779,976,2641,1722,2233,1862,1278,2270,2360,95,26,2386,397,1172,2754,2328,456,1972,1836,728,2220,604,1672,1050,2342,11,2088,1784,1925,1770,1788,2231,2803,2710,1509,2139,574,471,2311,2659,1031,1427,1004,2546,71,2508,2575,1763,2277,933,1387,2062,2439,252,1583,2257,346,2521,17,1885,2518,2809,2759,1975,2136,797,190,300,941,2240,2378,2460,2394,829,327,2191,2311,2307,583,1112,632,1992,1650,1272,1801,65,316,738,577,1621,1287,2109,1916,881,309,173,965,1513,2438,2770,2618,2046,1864,2315,447,1421,174,2678,1785,1802,845,2305,1712,1528,2673,2299,2018,433,795,872,1246,887,771,1679,1250,2443,1350,1173,2540,2105,2536,1241,29,1613,1683,927,2314,1257,628,1222,1428,2299,2147,1593,1227,2812,176,992,1955,160,927,1385,1399,2032,2333,1917,911,2052,2118,902,2080,2125,493,629,630,1340,2209,52,1363,612,1351,2775,1071,1568,1637,751,470,1381,2006,578,2560,1235,1965,2496,1288,191,838,2093,1380,895,1154,2330,2661,1392,1922,1756,2158,2466,679,2175,216,2859,1592,953,762,174,494,721,2478,681,490,293,86,947,2517,847,638,2291,44,2028,520,419,1600,1871,326,301,2235,1482,2690,1586,1597,783,811,1892,1977,2129,109,896,5,2884,1772,2840,2776,1925,1904,874,18,1965,836,1560,1393,533,2512,1417,2280,135,582,1901,749,835,897,514,1111,1250,596,2673,2302,84,92,798,1425,1917,644,557,1337,427,1123,2339,693,1930,489,2003,2716,2860,2405,1954,856,2049,2132,1718,2742,768,1991,2579,1567,1932,945,1466,2434,2201,2675,1049,966,2653,123,1301,2526,1184,193,1701,1190,2062,289,1942,667,2127,361,1922,672,625,193,1639,1947,1787,1013,1318,1948,1042,1904,2025,1623,2329,1422,1354,2499,904,2750,2218,1262,2481,2652,1083,2346,2883,1181,645,2332,886,855,1262,2535,1763,1308,1584,788,148,2256,311,2195,2214,1948,58,2275,1996,187,1766,1724,1177,21,2422,1608,140,747,759,26,2592,1420,2678,118,1596,136,678,2214,656,2629,8,1778,1821,1512,2095,2309,1504,1333,1643,2635,2437,2303,2064,817,566,2584,2785,699,1396,2774,791,1249,2066,590,248,85,2758,1127,41,2091,2099,2040,267,1975,1426,1789,1942,1144,2494,1055,2481,1218,2438,2133,201,2207,693,2342,1025,1875,2398,1614,134,1172,1676,59,2618,906,573,738,1425,1521,1450,967,1752,1324,2248,1402,1339,2192,1263,217,1460,597,2705,36,1135,1297,2325,2678,1786,735,749,967,1693,1024,1519,1436,2077,1,2310,322,2765,1910,2397,2723,185,89,2464,1806,2303,1147,1467,2551,813,2599,2291,245,2071,1568,2273,1634,135,1228,1419,479,883,1729,399,1086,828,345,251,1126,1024,2626,463,405,885,1218,164,2197,271,533,1936,2645,2089,684,2586,322,759,872,2114,903,2079,1065,2829,1622,2168,463,229,845,1864,891,216,2733,1277,812,2045,1579,1443,2239,468,731,1366,2407,2309,2627,2833,2736,643,1456,1866,324,1833,1088,2170,767,2011,1290,1431,1749,755,524,527,484,1004,2233,2165,77,2526,269,1045,1483,1895,1084,1163,691,2276,1273,228,1638,1890,2201,2221,329,808,1432,2160,1547,2511,1785,2812,912,59,2669,2450,2873,2491,1897,941,2877,1050,2862,1370,749,1231,1491,2278,60,2654,1917,242,1884,2527,589,1477,1783,215,2226,1540,2266,1122,2274,1213,1260,1843,2704,260,53,296,2438,56,2011,2174,975,1833,2219,568,1907,1394,1716,2482,1639,965,235,445,547,2187,1674,555,635,1137,878,2879,2327,1807,695,2276,2561,334,592,905,766,839,2321,591,1211,2242,1641,327,1535,1126,2573,2306,1104,1344,2772,90,703,1778,31,2670,2280,1037,2591,62,813,1497,2503,1663,272,1470,1102,1954,2544,2406,761,76,1470,2682,2073,1352,1923,2764,1575,727,1826,2066,1603,2462,199,2334,807,1433,1537,3,1122,578,1036,2321,861,2109,773,2376,2489,2511,1568,2298,1689,1426,1444,343,1916,411,1570,101,1017,1916,666,287,2042,1701,51,2360,1659,2577,285,749,1709,2604,2386,1512,1313,2839,2769,1146,1296,1339,1897,962,1415,1678,2433,2233,859,1273,297,2321,2545,1125,138,1347,217,1495,727,2877,574,695,1736,904,2400,1398,1165,1777,240,1682,859,1024,1943,1149,829,174,1585,223,1522,2202,771,1826,397,2452,2296,2809,2486,514,1440,701,2434,2019,520,1591,1691,1839,462,2554,2,995,732,2111,4,594,2597,2519,2077,2849,2143,1247,2334,1050,1305,2391,2011,1320,2600,785,1904,1904,295,2687,1265,1292,2001,1523,1113,1296,1918,2324,870,2017,1570,1737,1245,908,32,2423,2408,612,1526,1128,2349,2676,2888,32,2343,358,1223,1807,382,1224,1650,2448,173,2010,346,450,1481,1498,2797,1999,1015,1002,2607,147,1024,1916,1987,1277,1750,1537,2705,2801,1934,2436,2117,943,2020,2706,1186,1849,1445,2157,1754,1933,1079,82,2836,1890,907,1750,1821,2096,1799,1867,720,852,1319,2520,1409,791,1190,587,524,1543,657,2237,709,350,817,1757}

    {1811,2777,1610,1438,448,203,2887,237,2293,2330,1340,770,603,52,2657,3,1355,2272,17,2767,430,2680,1261,2651,2228,838,274,2863,2704,2835,765,1815,2623,2210,226,197,2296,579,111,2666,1747,133,1800,1490,48,2262,2702,445,1542,1375,904,2062,152,2774,550,2238,526,2264,1483,2095,2157,1433,736,1361,404,1343,2396,1472,1499,988,723,1888,1474,673,204,1752,1132,365,1019,430,1704,286,1968,2550,133,2768,903,692,1962,2889,11,458,870,1180,526,602,1279,871,2094,2872,1617,2642,2264,2496,1549,2307,2644,1107,1463,931,2672,997,1222,1914,1303,1408,1504,170,1634,436,1872,127,527,2144,768,2871,492,1081,2865,1449,1025,586,1341,2296,1559,1222,754,1670,596,52,507,1732,211,106,1085,213,2709,651,2795,516,2443,1865,610,636,359,699,403,2371,2360,1429,1639,1986,872,197,2462,2464,753,2593,561,390,992,446,1296,1731,489,452,1936,2260,398,1726,2367,2630,1262,1021,987,596,1438,1350,2231,2312,1652,397,589,1165,866,101,669,2290,435,1825,946,1862,1681,914,99,40,2393,69,2805,1350,950,1035,1587,237,806,1493,864,205,414,2161,1897,2727,516,1004,995,612,2495,2742,1128,626,1043,862,1357,638,1815,1933,2108,2830,1628,1532,261,1747,1636,1080,357,1376,849,695,2442,2521,86,1940,1604,300,122,741,1133,589,1866,2404,1152,120,901,2276,2395,2598,392,1931,2803,2750,489,2011,712,508,1503,2705,627,2802,296,861,1486,467,575,935,415,2321,438,1588,50,2440,2177,994,1439,876,2065,2050,2680,283,335,28,1615,2161,2697,574,605,1092,2765,1753,1703,559,48,2197,2523,1956,1830,1499,1098,1452,586,1522,1930,1835,1147,1482,2162,1573,2051,1019,2735,2436,671,1211,2090,2005,2417,1650,94,1903,1395,2295,13,1217,1280,762,354,1170,1390,579,1983,2673,2412,1880,2755,939,214,1813,1822,1868,345,1879,699,904,647,107,2571,2348,218,1170,956,1619,1444,1831,343,1417,381,1694,1809,2313,1316,784,1024,1901,569,2459,1161,1295,1720,2472,1244,375,2480,963,1618,1853,1389,2459,15,1811,2556,1360,1073,2052,1999,1029,435,1665,101,760,873,2183,1833,1036,1991,2766,2476,537,1837,420,417,1502,2125,2521,663,2205,2300,2017,1926,1703,1024,2350,2156,1646,2332,380,272,2029,547,519,2824,870,1120,2196,2056,2628,1830,1198,729,1962,1730,630,2210,1921,2695,2464,488,469,702,630,1458,512,2351,1262,2034,66,2477,445,2508,2229,182,2229,2647,1052,1505,980,208,1672,1897,877,2412,253,2230,2314,414,80,563,687,2280,1257,1514,2473,184,2354,2576,1197,869,195,2483,660,2178,502,439,1734,1585,1529,2685,510,617,772,1641,868,1639,749,859,1069,682,177,1846,29,1386,572,1919,388,247,253,799,1102,1938,404,700,165,2397,1005,1802,1836,2079,2201,883,1493,2162,1433,1580,1959,2151,2868,2619,640,614,2609,2347,97,2496,1681,2206,1168,421,99,2525,2536,1066,944,1530,1027,1935,2002,1205,2228,277,2110,237,2673,2173,438,2081,2066,1760,311,1987,1684,924,2221,915,1876,394,397,1913,58,1563,1284,2599,565,2073,314,2656,2836,2300,2598,2070,528,1254,907,2317,342,1893,623,1547,2544,880,2057,804,1968,2745,2241,948,33,532,964,2338,1252,1282,2215,705,2281,2705,2052,1961,476,944,1377,1284,2499,2033,1736,608,616,2216,100,621,917,132,2673,2005,57,722,1199,2091,378,1144,1306,1762,1556,1661,92,664,2602,183,1954,535,2417,983,24,1640,2159,699,1624,1722,1006,1948,6,374,1686,395,1543,1711,1502,2824,116,292,1069,1385,33,62,222,695,725,2336,2613,1811,1642,2174,1792,700,2639,1810,781,1560,2841,2117,688,1357,2387,1344,503,2124,2154,615,1741,470,2501,1147,2481,2685,2227,985,2264,1021,763,525,496,1242,1063,2327,2842,229,1457,2855,807,1178,442,1821,2470,2707,1054,2719,252,1423,793,2453,192,698,2209,331,616,2246,2004,2824,1684,1929,632,1803,2725,877,1041,2188,1773,1487,1461,2330,2056,2432,1577,2011,778,2792,884,939,414,2713,1987,2647,2751,845,1714,888,429,318,1944,1515,1329,92,2608,1628,867,2301,2700,2423,898,1390,1026,2664,188,1803,707,2394,70,149,1785,1899,1051,2201,872,2528,1674,122,1155,1483,1910,2103,2431,2454,849,1649,2621,2794,2594,466,319,2458,497,1623,1200,626,1599,215,538,2197,89,11,324,2055,952,1410,271,1780,1293,2684,1004,321,2695,1790,716,1158,2293,2889,1942,2129,2854,483,883,325,336,2489,978,2378,702,2394,2365,446,1223,2832,1902,2062,1742,270,1615,429,319,1897,2751,2488,1775,2283,1607,1063,2284,2146,2140,1292,2492,2257,2622,2447,703,954,1321,2323,1797,659,2177,1963,1483,1391,2410,2706,63,2708,478,2673,1122,1578,562,1498,2568,1772,1208,870,1828,912,1253,711,1589,1756,607,1759,2019,2129,2289,1651,638,2552,480,1480,1371,47,2058,200,48,1277,2486,1129,1028,1984,2064,899,1341,1651,290,2019,2658,2584,445,1651,1029,1399,1934,2232,264,165,793,2369,2707,1702,2025,901,1776,1781,858,1964,1740,672,1369,1134,2820,509,1680,1214,2532,2052,1517,747,143,414,2210,573,899,2320,474,656,735,2837,2286,1489,948,1769,1731,2653,2446,933,120,2031,2537,2139,2755,636,936,526,1939,228,1354,2349,1921,1927,1202,1371,2382,10,918,2483,1887,448,1897,771,2580,45,1189,448,1199,1503,718,1443,446,842,2586,2194,549,1527,99,2704,2711,2603,472,55,4,1114,1266,1727,1233,2101,1459,470,2693,2581,2122,614,1978,300,785,370,2215,906,2846,1303,141,894,2788,2717,2326,768,249,2346,1017,164,1393,2538,2807,989,648,2210,1439,1821,440,866,1833,1625,25,1644,645,513,2413,1637,2098,2572,1996,2739,547,1629,188,1626,1108,2217,628,2864,490,1387,1080,257,2110,1676,997,555,1313,241,939,1848,599,1993,163,1420,2128,873,1704,783,2242,374,1862,181,2219,270,1126,2595,1512,1017,2245,2269,2521,1484,325,1769,2860,2363,2387,1515,234,34,1643,1623,322,2296,1275,2478,703,2785,464,1091,1286,2571,1744,1302,862,2120,198,2637,672,2890,382,212,2633,2211,2857,297,1517,2216,2432,1928,2199,353,2031,1691,2346,1022,1796,2641,998,796,2210,2015,1736,1461,315,2155,1908,1598,433,1211,1250,2227,1323,1359,1677,1976,2367,2082,78,747,21,1024,2152,9,1643,1596,1280,1918,342,1609,1233,2032,1791,856,1167,2258,1585,2212,2587,46,263,195,313,2531,3,634,1312,1624,1146,2114,2009,2225,1876,1860,421,2571,799,1887,1455,1574,1672,2740,399,1792,259,992,2038,556,2774,647,2062,1048,2659,496,1902,1280,1202,2138,2210,2758,1488,2277,67,640,1696,2632,2555,2223,2415,2826,2730,1336,1403,120,1138,1257,2827,938,1015,1665,1530,347,1416,1374,2692,1755,2189,630,2378,2649,2608,1067,1572,2682,830,23,2716,2359,1047,2273,2163,2440,1596,391,2197,1011,2694,1902,1292,1823,2429,348,999,816,2453,471,255,1289,276,2379,2696,1570,2102,747,302,2616,531,2322,2818,515,639,2153,2346,650,1012,275,1710,1232,589,1494,847,2554,926,2347,1851,1599,236,1029,1758,42,487,2244,1251,2779,1658,210,617,2724,785,1138,39,2693,2279,976,929,815,380,2308,2701,1992,279,1484,1059,1364,1068,2880,2573,1420,1059,1379,231,1258,2434,1493,1878,2425,1666,2888,790,2612,81,1504,522,75,102,829,1852,315,1468,2344,963,501,105,952,1245,2815,1345,2592,1124,740,2669,2878,1952,132,2445,995,2148,122,2634,2275,2298,2535,124,2681,270,1070,1538,843,762,83,302,2036,1216,2380,776,800,1370,2611,2568,1750,2225,2553,2098,63,1096,1127,2321,1723,2237,567,745,2342,387,714,131,273,2246,1745,1996,777,903,2610,1846,2675,1969,543,1274,2419,2023,1554,874,1407,904,222,2655,926,584,893,1654,962,1061,1942,1977,1944,2779,744,1128,854,2798,1286,1858,638,2159,24,2370,1671,2771,2129,469,1698,31,38,2794,1760,1497,2215,153,400,2553,1248,2420,1038,629,1322,786,2044,2664,1810,1394,2514,861,2847,1827,659,1960,1335,1069,1620,1000,1997,114,2209,2402,2435,1206,1776,201,32,762,1771,567,838,685,1116,262,1423,923,710,2539,1256,922,965,1976,1044,2427,2282,772,1064,250,1436,1713,2197,995,176,683,826,1333,1988,759,2221,77,309,1734,49,946,1262,1604,1717,2330,694,2553,249,1334,2013,1982,717,2521,750,2489,639,1910,2815,1126,2566,884,1169,2662,2731,1701,847,2563,1631,746,350,2761,297,325,763,1959,53,1246,2260,1448,239,375,92,2337,1954,2853,2280,857,324,2779,1389,1969,1949,426,1582,1589,1881,2337,44,759,397,2100,726,2047,57,1243,1385,1798,2038,233,1046,2434,2678,2144,2107,1117,1151,1520,220,147,104,486,2490,1299,54,1985,2831,1224,2648,2601,699,1871,2649,1797,1312,1975,2161,1265,2708,2231,1451,1650,2197,2023,2210,958,1936,213,2198,1370,2860,2687,340,1478,2634,1689,2316,785,2148,1190,833,920,2857,1920,1746,908,564,2718,690,1990,2110,1590,993,2622,101,2205,499,1020,396,454,2571,1502,769,2087,112,1515,1422,14,2172,1705,1999,1663,30,330,1479,955,2373,865,448,2770,2876,970,466,1160,89,1646,2165,1810,1624,3,2182,1502,2285,740,2145,1867,2824,529,2573,792,451,2746,729,130,2043,1645,2252,2802,1955,600,1675,631,1841,1467,2060,2819,2758,1506,788,2135,117,2414,2779,848,1556,383,20,2562,1629,204,2164,1262,193,2346,1405,2435,145,2223,1578,1768,2418,1132,443,1073,2179,121,2449,1270,2181,1358,2263,2705,1258,106,1963,403,997,1124,1294,632,579,1544,1588,2513,332,662,1765,2165,1301,2181,1467,2504,1099,2553,2787,1677,175,2362,1843,161,688,1308,461,52,2475,2351,139,1173,1773,1936,1385,1966,1089,1273,1232,2787,736,164,1771,2435,2742,1199,1209,2291,654,518,1223,375,670,2246,289,1220,385,2490,2671,2750,1611,178,1182,1717,2033,538,1164,195,655,907,2158,58,1686,882,1437,103,2360,1403,2267,638,2837,742,2582,345,1788,2516,2234,2145,1900,1674,454,2753,282,229,1605,1635,1162,1038,581,1646,1296,2728,624,835,158,1854,2306,661,2076,850,2276,417,655,1396,1647,2211,1014,1225,2750,1992,361,1098,1834,1286,926,1372,1318,2083,666,248,900,323,1852,1856,1934,1902,398,2384,229,535,1453,1154,1408,2418,1276,30,1643,1110,1357,2437,444,892,180,2142,2397,2788,527,969,2294,549,2421,214,2808,2053,395,1962,1002,2763,459,404,164,224,1988,910,2429,886,297,547,1467,1300,2044,1660,492,1700,1204,1024,118,105,489,372,2067,1344,491,832,2700,1925,2485,2041,1756,681,57,573,93,1239,574,59,844,1053,196,2260,164,1524,2488,1728,799,2553,2377,2809,1383,24,2010,1091,872,625,2336,116,1802,162,1077,328,682,1632,708,2174,294,2638,2166,1315,2420,1758,2761,2233,189,1137,1437,121,1383,482,2693,1183,1995,1601,2386,1565,1255,1788,302,228,1852,2349,2614,1928,523,2252,441,306,497,1771,2592,1937,859,813,2358,1378,1034,1669,1986,891,1935,1620,1772,145,1662,1099,534,1662,204,1656,1752,1404,995,1951,1974,1558,1019,827,2502,238,71,2438,2793,1743,1136,2865,595,2641,457,1356,1884,741,2648,964,2181,2865,2653,458,414,1909,2318,438,1483,2088,1537,1402,252,2874,914,1252,513,1195,1371,366,1526,1303,925,2362,270,2820,1473,1401,826,2434,2100,2857,2315,403,2691,1056,2761,1523,1485,1949,2737,1641,907,101,113,2583,1152,965,787,374,1965,1902,405,2026,538,961,1606,2144,1388,2011,86,1160,1467,341,2416,928,1928,2681,682,2672,1406,1341,442,658,1210,1473,2508,1414,1881,528,930,967,1889,108,717,1557,537,942,342,1413,1814,806,1259,564,2649,2157,869,1596,1564,322,2048,2699,1602,1958,2159,1502,408,2436,799,2557,1424,1476,1726,868,588,2480,86,552,2079,2281,589,820,1031,458,705,2507,816,2212,492,207,2288,2592,2282,542,883,2817,1327,1453,1910,777,2073,1455,2101,593,1710,2057,1105,2327,2524,2372,1772,1206,98,2547,904,2865,614,2624,2005,1739,1069,1469,1143,2399,754,1511,1357,1262,272,1774,145,2297,1748,393,1321,1434,648,684,2571,1174,2067,837,558,540,2016,807,1093,1896,2396,1721,848,992,1492,1360,120,2104,670,249,886,2320,1757,1403,831,2066,1882,1605,914,1130,1445,1736,92,1462,1600,2412,1608,1559,730,1206,0,1418,739,241,1032,933,2055,373,1534,215,979,2875,2199,1312,2833,91,18,2121,1262,782,2734,299,2311,2133,524,2465,1412,496,1166,2643,964,284,2689,297,2673,52,351,2487,123,2564,2378,525,2381,1419,1057,176,1535,1501,1018,1340,2647,259,1430,1439,1646,1704,816,1809,2297,1429,1344,2876,588,1666,1302,2861,362,1343,2062,490,1924,22,870,2243,606,2846,2714,198,2024,2032,1751,964,2401,1392,2846,570,390,260,675,2158,2749,1859,510,1717,637,1859,1959,508,1300,1808,338,1611,2426,813,16,1854,1909,104,2606,930,736,477,1327,1216,1079,1843,2090,2570,2008,2468,545,2780,2540,2534,1091,2787,1050,2523,665,1076,362,2116,1776,2773,1656,2450,927,4,2061,2808,2461,1481,2418,158,719,2256,227,376,4,2672,2155,2225,1342,2533,1991,200,1644,2482,2869,325,96,855,2859,713,2262,2676,154,1483,514,548,1833,735,1744,1481,1926,1857,2461,1115,475,2421,1876,2487,2748,2805,840,2122,372,226,816,1979,737,2844,470,686,1110,1348,322,1759,2850,2389,2183,1116,2668,2403,173,2812,1421,2697,947,1226,613,2770,2229,2077,2193,1725,596,2265,802,380,2369,1767,594,2208,1531,307,2385,1122,1618,2770,2380,159,868,732,2030,1826,1091,939,1052,1253,1953,2275,2293,1905,248,1507,1117,642,2646,2598,966,1848,815,2521,116,2224,1126,1349,2348,469,2179,1480,414,1860,1858,2022,1117,298,2529,897,2743,404,1893,638,1511,1417,2126,1471,1348,2062,1835,592,919,1393,30,996,2782,1384,1237,364,1141,201,448,2291,1432,2185,893,1433,1171,1581,2017,2608,1805,1651,123,1102,2583,63,412,2731,1776,553,632,2105,145,2022,628,2320,1156,319,2887,403,611,2073,536,164,639,2329,2372,2081,2129,2721,414,1800,1264,1676,709,2430,2008,21,727,1643,2706,7,258,1040,2233,584,2668,2045,1898,2074,803,2753,561,1423,1664,2858,2011,1633,2410,353,2755,1102,724,72,2424,349,614,2068,1077,898,786,2282,1082,855,1687,1877,1545,1647,1110,1561,800,896,1776,156,742,3,1203,458,580,1644,390,1932,2241,2355,2357,2260,2562,1043,1967,1497,73,628,2472,336,1811,1094,1695,1982,2673,1474,2308,110,1703,2069,2063,2554,1778,2095,2688,1509,241,1933,1381,329,58,2509,2361,772,1595,308,1467,2086,1863,1627,2234,1367,2037,754,314,2851,2868,988,877,2050,2177,1213,2354,2152,2054,1081,2781,1218,2017,253,2255,1087,506,1422,810,213,2786,2017,1435,1210,1941,35,2505,766,1100,474,1207,2652,264,1921,2457,442,941,816,1992,2319,343,1726,2096,1999,995,2814,1444,1580,1008,2451,1998,858,1649,395,1157,1194,1933,1870,2331,1475,1907,1172,275,1086,818,934,2816,722,1960,1442,2428,638,2769,243,425,805,145,2559,26,2424,2297,1953,2838,1764,937,1909,2268,2667,896,172,2752,1422,925,2810,126,2313,1267,2059,1939,1853,965,1550,1837,2411,142,1987,633,1820,2495,1819,818,699,2348,1729,2297,1300,1829}

    67

    2466

    Returns: 226309495

  17. {56,1156,2011,2802,2678,2455,191,896,101,819,338,2684,1149,1727,2036,1608,36,1636,1845,2950,195,878,1027,2405,2737,1655,654,769,2463,423,2827,1182,2315,2899,2122,724,2422,1674,1081,2626,1073,2866,159,1591,2262,1312,2019,2228,644,2653,75,2947,20,1474,828,1292,2466,372,1240,1738,127,2890,1686,1032,988,1057,2656,2364,1368,348,1399,1545,953,1887,1133,1556,1415,804,26,183,1488,1671,1873,1636,1254,2211,713,1098,1858,28,2333,448,2532,390,1034,2467,740,932,2585,2799,36,324,2296,762,1839,2499,417,2635,1534,2062,209,1909,1604,747,401,2302,1775,1696,2147,471,2572,799,401,2649,2356,712,1097,2845,410,1417,728,38,2661,1316,2671,2124,1367,363,122,2380,301,2087,361,1974,1077,625,364,2191,2759,2373,2503,2159,2391,2330,2056,2640,2200,2478,1459,404,1601,1106,833,1987,1140,638,2339,675,968,1242,635,2676,1646,622,362,223,2503,243,2225,868,881,2904,67,483,2913,1671,1692,2138,2736,2099,1892,1300,2229,2343,208,834,2898,1864,1376,764,1109,2326,2927,861,245,582,607,2454,1286,2202,1844,2619,650,511,1731,717,1281,2516,2716,2632,2888,70,429,1925,2331,978,482,1011,1592,2816,1827,902,2820,1389,2264,381,530,407,340,2934,214,848,1000,2174,1422,2552,2577,1204,2606,58,1000,17,1393,83,934,183,2841,1340,2142,1368,841,2594,896,2670,451,2923,2449,1040,2740,1522,2659,428,520,666,362,2658,1641,938,1425,1180,2931,1726,1382,2544,2543,546,118,716,877,568,2862,1967,1237,1600,1206,898,527,2564,2111,2547,1471,1683,836,2858,1336,456,1754,2695,335,2901,1368,490,23,1953,2228,779,382,1230,757,892,1909,782,2069,902,875,2329,269,598,2092,2846,2822,2419,1199,2704,2143,2712,2086,1548,670,1239,575,2079,2097,2540,1282,997,1111,383,2957,2099,160,1541,2057,705,1744,2075,624,1178,2877,1643,1247,155,888,1556,60,2199,608,2685,1486,387,2717,2454,1693,183,2052,2432,1938,1399,108,1613,692,1721,1338,2343,1525,947,401,1824,769,991,362,71,2342,2746,2329,445,2554,2528,2026,226,255,371,25,49,1103,1047,2815,2909,1966,1793,403,528,2525,2684,607,744,1802,2306,2773,1054,1633,1928,1854,2471,2343,1997,2402,325,132,1095,1896,1980,1245,174,1796,1593,2890,2959,194,707,1571,693,782,1601,541,208,2012,779,644,910,5,1970,2369,1022,2440,823,695,2853,1402,1677,614,1267,851,43,2300,1625,2115,1828,2600,1649,2013,1117,2782,2801,400,1561,2239,1623,1808,1137,2210,792,1124,2884,1417,2561,569,1656,2546,2780,343,1509,2096,2363,1424,878,940,1071,2345,2403,382,668,487,1783,1130,2879,451,1093,1883,449,841,2530,718,990,420,302,973,615,2053,512,707,353,1319,264,815,741,718,158,563,671,2551,1505,853,1154,1108,1254,1029,2824,1695,907,1843,1583,573,1975,747,2732,1291,842,2352,99,1896,2870,1239,2275,953,2108,107,2955,1068,1305,1384,224,175,638,823,1401,2334,1680,616,2343,2755,1602,2240,1411,1535,1333,922,2606,1721,2631,1368,249,1888,1508,1057,63,2510,2269,1235,2101,2586,1353,567,1515,615,740,1857,1103,1412,2527,1993,2609,1701,2875,2361,2770,634,2048,923,2408,1991,471,1166,1209,444,2681,285,2536,610,1297,2781,2798,98,2157,1407,2444,251,91,237,1912,2102,596,1216,1916,15,901,1590,97,2335,2063,685,1920,912,2685,649,2931,2162,1906,2310,2830,840,489,1989,2068,1043,1193,903,1451,897,783,1197,540,2730,1702,1029,1339,2930,1085,838,800,2181,2024,1418,2459,1999,227,1620,1014,175,18,2214,242,2044,930,800,715,634,251,1403,1426,2639,1532,1857,1940,2735,1250,2326,2871,1279,656,2879,908,632,111,2290,2029,2751,508,2575,2188,1393,35,346,2910,1357,1090,1325,572,2103,262,277,123,104,944,392,1026,438,2337,137,9,2888,886,1414,397,372,1085,2034,2769,938,676,1229,2910,412,729,1000,844,2728,763,1209,1181,2474,1675,2089,1026,2496,409,1447,2190,371,2063,2422,1837,957,2254,2735,2053,2171,2656,293,372,2522,2185,2889,2279,2674,164,150,1366,2763,558,699,2047,2613,1118,2313,1305,619,760,151,51,1416,2316,1503,465,714,1976,449,890,1545,51,2230,2745,1697,181,202,2117,2696,260,869,718,2355,2072,2561,1293,1442,703,2464,964,882,2357,1495,2520,2585,788,506,1959,1327,1142,2843,13,945,1977,578,2121,2099,2704,1670,1677,741,2348,2548,206,2750,2567,2064,2063,2618,1406,272,271,278,1753,275,2825,471,2883,2570,2501,485,2141,1189,1329,2566,2472,2759,816,2403,514,1903,2556,1094,140,1493,1661,1447,2842,2201,2944,2199,651,25,1039,199,2280,750,1931,1533,1939,1433,1951,2570,1877,1063,1882,328,2634,1963,131,2505,2029,2013,1254,2074,1523,1356,90,589,2927,2100,1616,2603,402,727,1039,1147,2855,1124,1487,1817,92,1345,2742,2228,2616,1642,1417,2152,1931,1033,276,2738,2407,2559,553,442,989,2412,1844,1966,1889,2638,661,2108,2961,2192,2502,2434,1558,2727,2271,747,2312,809,2467,480,208,1684,1765,716,2308,1360,716,121,932,2533,2502,917,197,454,2682,2626,2453,1833,763,2579,2591,204,767,2478,1050,2029,2553,865,797,2740,2826,1208,2881,954,2140,1515,2631,1511,2071,514,2762,2599,1826,1728,2890,1504,1031,1995,2706,2826,1160,728,702,2807,1281,2942,1848,584,2795,782,1281,1079,709,1932,2422,2339,530,2543,2630,2792,249,792,2626,2480,957,1049,493,1409,204,2308,1252,1774,734,1143,717,2080,590,1128,2547,2627,1913,1265,1684,1878,851,2011,1516,2249,1034,1396,2289,2195,1878,937,2224,315,747,1370,657,1958,1847,1091,647,1749,706,2584,1114,1440,1362,874,2464,2032,740,2857,462,2562,293,884,2607,105,1397,211,1121,2897,1951,1059,1547,500,2373,448,1137,2271,700,345,2213,2226,901,2029,526,1052,2896,1867,1519,625,1829,2467,73,27,142,1760,296,2015,1956,374,175,772,358,932,1009,1681,2251,171,296,2511,1332,467,2851,1388,1567,2028,740,2339,709,932,2242,1628,1717,1725,1644,2263,2205,253,249,73,334,1402,175,2123,1794,1491,2734,1010,1838,2353,2844,2424,1417,1878,2237,2435,2318,1088,1087,1552,1050,1038,173,1455,530,2960,38,881,468,2202,2733,2205,1734,1521,2665,206,2728,574,2739,1454,1839,1185,177,1054,2515,2063,1885,1870,1482,791,2272,285,2324,881,1743,1909,1395,1720,2051,1070,1484,1274,412,1978,1563,2145,1543,1802,1954,565,768,733,636,260,519,1518,1349,2689,1948,2258,2750,2890,779,1778,1850,2535,1640,2343,1619,249,1635,1437,2149,1673,1986,585,2658,1085,1169,1339,1922,2391,2465,1345,923,1874,2825,149,2952,1327,2891,2671,1599,279,2532,383,471,115,2659,643,13,1882,245,1580,1113,2073,245,1968,1531,376,1627,2903,2684,1043,194,1311,436,112,29,1642,1288,1598,2046,1698,2811,2405,1996,1888,1363,622,569,1646,1494,2,58,188,1520,458,1795,2496,2360,1896,2395,761,2517,379,635,1292,1326,2767,1704,1014,1983,731,2117,468,617,459,1078,1523,399,2818,860,1350,2046,2331,1208,211,457,2263,2010,1269,1623,423,1375,2837,300,2774,145,2783,297,2595,1301,2177,2058,2276,2012,1041,1342,1080,2829,833,2387,671,659,2892,1248,2110,116,1484,835,921,206,884,2798,1762,2246,2455,2662,2796,928,2478,1841,2442,1899,1182,484,971,825,371,1816,2720,2825,2847,2222,1104,138,396,2424,366,1123,29,2133,2899,2186,2315,473,1231,851,2898,2614,1020,579,1027,292,2667,2192,1556,966,2864,2733,1704,2144,2679,2841,495,304,2483,2393,1542,782,1820,2587,2747,950,413,1091,1245,603,897,1822,1102,1961,2204,1828,905,1258,1141,2884,630,2595,2768,872,1487,773,1593,921,142,2660,956,2206,1884,2585,2835,819,2476,2585,493,758,190,2402,1006,1469,370,810,594,2331,2721,1818,1855,1464,726,10,1035,972,2758,1462,1251,1114,26,791,2681,653,979,2411,718,2430,692,900,884,92,1413,937,1115,1288,1595,2524,1908,1783,2655,1570,545,2891,1347,2713,570,14,2031,389,1019,95,2688,1084,1753,1434,1802,73,2289,2412,2330,2493,1490,1506,126,436,204,2648,541,302,539,140,735,1759,1871,1355,1673,2175,499,316,1576,32,1132,598,522,1446,740,832,845,2662,733,1050,1782,2215,986,1281,394,2412,1154,2760,855,1386,1132,4,1376,475,1273,1748,2463,2755,1652,414,2540,2497,2643,496,650,745,2401,2186,1517,690,492,649,1410,2710,1614,249,1011,804,692,36,1339,172,2158,2801,2043,1668,981,1080,139,1417,668,2771,893,2693,94,172,1906,1792,722,2398,1431,2381,1037,854,1977,851,1515,2720,1257,203,1262,1733,1742,188,1161,2190,2675,2259,1069,2671,1736,1164,1823,2889,384,2079,2296,876,1463,1528,2918,2800,858,2803,409,2681,1824,1534,16,1901,1909,2357,1894,1213,1252,1715,185,940,1595,1964,1895,2378,2126,1691,2926,1922,2211,2312,426,1620,1429,1445,2252,608,194,721,2096,42,713,2338,2128,293,2764,2347,577,2036,1590,1817,2256,1898,1458,1832,1399,534,1036,420,2808,1992,2423,251,760,2585,1735,2119,631,2277,818,649,1711,1656,1367,1953,1326,1334,2634,2778,2021,2466,1472,5,1075,2365,149,2311,1962,2612,886,1545,2786,1959,779,2518,645,667,2295,1290,2617,1723,730,2202,325,1909,294,2633,1371,1246,208,2413,1605,194,649,849,1581,1058,912,92,1969,1193,925,2070,2096,2093,2459,401,382,718,2094,1450,1129,194,1157,1987,2661,2553,2370,807,2817,1458,2297,2584,2551,2532,1563,2899,1799,1629,1092,230,2391,50,2213,2127,1428,812,2026,1587,1065,1652,931,566,280,1193,2002,1010,2648,300,226,1376,608,2310,592,2543,885,524,2347,2154,1646,771,1093,450,2100,668,663,337,327,2412,1254,1420,790,1860,2685,292,2291,542,2220,2466,586,1077,2467,1724,957,2675,37,1817,163,2578,202,2076,296,1948,2715,285,837,208,2684,1329,699,2164,599,1592,675,2326,594,767,1483,2267,2406,1618,2448,2063,850,234,713,664,796,2163,2086,1544,615,1981,908,2363,1376,1151,1322,2598,1605,743,2199,1521,1772,752,2427,2943,2522,1768,2132,672,920,2673,335,967,200,1457,2300,573,865,1841,502,974,1201,1959,1105,2506,926,753,2928,1912,1417,465,72,184,867,2270,1612,2260,1636,827,2687,1836,1477,1667,927,2561,1614,1244,2061,2012,1275,1058,758,1559,948,1086,824,2059,1658,1448,875,1646,1989,248,1373,864,2547,1861,1021,1287,2546,2723,177,2106,2832,75,288,1556,1119,1527,2559,2664,106,1865,1598,2367,1545,1086,1408,293,2459,491,1063,1368,2095,623,2354,2012,40,331,401,1317,26,1511,281,2332,689,1453,220,1416,1982,2431,2791,1868,1217,272,1619,1413,613,2706,1849,2704,575,1869,421,30,850,2023,2304,654,143,2825,326,2647,1036,2839,1026,1378,2144,1426,2647,1177,1134,1198,980,561,280,2677,1148,270,2441,2432,375,2540,1144,489,2797,2691,876,2228,567,371,1870,956,2372,662,752,2823,2370,1475,1532,2602,2186,151,180,820,1526,764,233,2343,2145,1250,851,2417,1039,2198,712,1662,2085,1991,1818,477,293,1028,2289,2639,2016,603,2361,986,2178,1645,465,2828,261,2772,185,1104,188,992,1612,2731,1802,101,1524,2032,208,2838,1762,1805,1332,89,1959,611,1717,2296,890,699,943,688,1083,1927,1149,506,2503,2112,1473,1705,2332,530,1174,1883,364,1354,1528,2530,2466,1804,606,2428,1718,2760,65,2948,357,39,284,1076,1219,2834,408,2885,2560,2537,2490,847,516,205,2065,9,1832,144,2188,2296,180,1554,2878,1694,257,2246,1846,1173,1153,1563,2867,2626,1689,1906,13,584,1413,2460,782,1125,2611,720,2285,1522,2722,1964,570,69,2806,1167,649,669,1930,1110,2607,1259,413,2036,1082,310,371,604,1561,2817,2277,2688,1690,1757,1082,1426,2626,1493,2608,1,2241,522,2552,933,575,2050,1335,760,1114,333,982,1297,2096,2606,1582,2892,2033,2245,1091,2177,138,2680,1700,2941,2434,1408,1917,2324,2846,917,2190,2221,2080,1006,1238,1325,1112,149,815,330,2538,1269,2185,124,2747,2956,1856,2227,2139,2630,194,343,1435,416,80,2425,1100,2177,1726,1665,1917,600,2284,490,363,2735,2801,889,916,1497,951,468,2638,1585,2307,366,1267,2453,1514,194,937,524,1476,908,2216,196,845,2692,1549,357,224,2775,850,756,68,627,1512,1374,1413,552,2025,1681,2833,1069,1976,245,225,208,1900,407,2024,1197,2481,1987,244,409,1026,2213,1673,1159,2545,627,617,2389,2042,784,51,2296,1404,855,1803,2776,2457,213,1530,2687,1750,103,1871,1211,2917,378,1114,656,704,675,600,2958,2547,984,2091,1216,2383,2631,1003,684,1699,2336,1494,819,1281,1684,682,2712,1971,577,155,1451,2466,314,922,1776,2491,1261,356,1449,1298,1406,938,2777,2131,1422,1872,1165,1466,1574,2169,1326,298,553,216,26,145,576,332,162,1917,118,228,2671,2177,140,887,1744,1822,1140,1305,2190,1157,1631,902,2450,594,411,1507,338,2808,580,85,1073,957,1569,901,2268,48,2025,1869,2614,2762,345,2308,1617,2927,2317,1555,263,2024,1456,227,2213,985,901,1207,2187,1876,42,2834,1400,1569,786,1728,409,748,2629,847,1790,1004,1719,1154,1759,2684,295,2648,1852,1971,891,2501,1012,759,636,2301,13,1298,2237,2234,57,2807,2956,2799,1144,1500,1851,2019,2531,1788,2099,1417,2300,2895,471,231,1305,2091,1013,1641,2890,1545,1359,1018,2619,655,786,452,2876,1518,2754,42,1730,789,78,1834,1654,2638,1306,322,2244,1974,239,2214,598,321,212,2722,162,1294,1172,465,413,832,824,1396,289,2773,2789,64,2424,269,1268,943,884,2716,1131,2261,208,2498,1260,135,2944,2944,1394,2396,1825,426,692,2795,2479,1967,2921,2024,177,2014,2630,1386,2126,1,1878,1814,1741,1250,2825,24,309,2597,1885,572,1707,2024,2668,2253,318,110,752,739,846,1763,1400,2618,76,1131,692,503,965,230,2615,2889,390,937,1376,2434,2385,182,2298,2926,2458,1791,1123,1726,881,641,2349,305,1254,843,550,1427,1696,965,1787,1434,2039,2551,1630,355,2123,801,2872,1113,2012,1120,1452,598,1250,1458,266,347,1542,87,483,2001,1158,2486,553,2899,2236,568,1712,925,1876,1596,145,189,1212,2868,868,120,2765,1030,1991,49,2190,245,2789,1832,2691,1385,75,617,2776,764,846,2353,953,1810,1704,307,1480,2077,1042,2911,2153,2262,1471,2481,2012,1046,498,1423,2117,2929,381,2437,1602,2439,970,2776,2859,2918,1135,1607,2200,999,1606,2062,431,237,1626,1964,8,1951,2745,824,977,1249,918,2865,1911,2742,1344,2377,601,1830,530,1256,1379,1538,1494,413,2456,1158,2392,2822,651,6,2398,2207,1304,1934,2626,2642,2201,2209,2359,2805,1857,643,1554,1745,2945,780,2039,1962,2789,2739,129,272,1323,1452,1213,2776,1917,1254,46,2469,1783,2183,716,1414,2286,870,37,1845,1188,1912,2923,1796,2610,1891,1157,2752,2517,22,2946,2242,168,779,2550,1493,982,2481,2692,2576,2902,1900,2121,2331,1540,402,1419,962,2420,710,767,1742,1765,131,2374,1205,262,1018,2580,79,743,293,760,2078,1930,283,587,2639,428,166,65,1200,1930,2314,179,36,2422,42,2375,1378,2018,1140,1056,665,1384,872,1735,1564,186,1400,749,2539,1593,2056,736,2570,171,1008,2471,564,2633,1844,198,1632,1954,2281,368,1780,1282,2583,529,2469,2704,1982,1995,259,191,2342,2021,560,2959,1369,692,1949,2775,1720,715,272,2502,2666,368,2314,965,2446,1685,1689,1902,2344,1127,2921,1033,660,833,2944,661,440,1970,1386,2558,993,2927,1252,2655,2481,2063,2063,2831,2368,2855,2084,2117,2852,1856,1354,2494,1755,2243,937,765,2364,2373,1355,2802,2528,2751,19,249,2105,1553,1657,1563,1639,2702,1721}

    {2248,632,2496,2521,2044,383,2300,412,2529,1577,2015,807,259,2404,828,1417,2112,461,2622,1814,493,1817,235,500,2386,1229,573,0,575,954,1241,2894,1512,2659,705,1897,1622,1844,2874,2492,2327,963,2857,792,1168,1238,947,1369,2743,2906,1988,1659,622,1413,1730,1122,1960,2927,883,2890,680,2758,132,481,2416,2589,1039,1646,2552,2410,2301,2020,2288,658,2939,2460,2775,218,2341,523,1419,557,157,1965,263,1503,1857,1666,2609,1234,498,2146,559,2304,1157,1787,963,781,2646,964,339,2368,222,2940,879,1720,1349,2472,1250,357,2893,1666,1351,1391,948,2917,2551,2167,1699,1629,392,598,2899,2851,725,776,2631,249,805,1886,17,2407,41,2763,1494,379,782,2118,472,2772,1550,2640,444,1267,2373,294,1202,13,1491,935,2410,892,2055,231,1269,2799,2824,2860,947,2129,1285,2468,2278,1436,2060,1435,694,249,2188,2400,2852,1109,271,2883,167,590,904,1840,2464,759,1182,916,2887,2825,1608,1470,386,389,1157,453,2878,2793,850,2139,309,1537,1334,2920,147,1432,692,2353,2483,2884,363,857,473,2927,145,2795,2809,9,2609,325,2410,1935,2056,553,1340,219,2140,2473,2748,2615,680,2749,676,1504,474,1960,2895,2407,2578,1487,829,361,2601,2954,2595,2537,321,75,815,401,314,1739,1453,1759,2645,1010,1712,2117,929,471,1163,2907,817,16,2304,308,1186,2694,2176,137,861,1893,1770,2046,1651,1996,1863,208,605,1618,2796,2869,2189,2802,142,751,365,2003,2197,1889,2205,817,57,1609,2086,2074,2205,862,2915,2956,1224,88,1257,2873,724,817,2010,1771,753,261,485,1531,2564,1778,2757,1952,1303,513,1193,176,1815,2308,156,1122,661,998,1690,1440,1150,2006,2129,2699,2616,2592,150,1497,362,168,1561,634,1209,1923,493,52,2895,2937,2431,712,1691,1475,686,1069,2776,2630,1529,2662,919,1755,823,738,2924,49,1699,1628,1984,1341,2575,1762,963,733,1970,2530,798,2663,1011,2761,1623,1680,2773,1713,2463,256,1213,464,1542,2696,132,100,84,1062,2639,746,2424,2113,2615,2494,1235,693,2720,1982,1479,2401,2737,286,195,1514,286,870,1959,310,109,2507,7,2139,1027,2112,2192,2483,1675,115,1193,1339,695,281,1459,1083,349,933,827,2093,990,2557,839,66,502,868,1015,1722,1676,831,775,2667,2101,2708,2179,957,1989,2843,363,1709,1638,2874,2130,2636,2529,602,290,1889,1232,743,961,2233,1485,1716,2024,821,2401,1218,2513,305,802,2488,2292,1376,682,2077,272,2422,2894,980,1587,2415,777,2787,1890,532,2724,2305,336,2022,588,1621,2312,2542,2497,2329,2779,113,2651,1829,2328,1063,2721,2126,408,2397,2456,2618,75,755,1241,154,609,2645,169,2155,2587,646,1376,2720,63,1926,2399,806,1292,2724,1190,853,310,466,1002,2266,864,250,1243,1074,2843,944,2867,737,61,1378,2605,1306,2531,2911,976,1819,2449,680,1790,211,2583,175,424,571,246,1132,2281,314,1907,1347,1250,408,2921,125,164,1501,1235,12,1222,1910,2165,1624,1093,2004,974,2139,133,2885,2802,2791,1618,1344,1041,718,2776,1196,2593,1083,692,1438,1109,2679,2680,2861,458,1738,2589,2156,31,1711,401,1058,2581,2838,2953,2323,149,2326,2851,1380,2386,1124,2373,200,183,455,870,1337,1914,1096,2582,779,1894,285,2020,812,1292,1043,2413,2356,2824,1703,2648,1304,2748,1696,1007,1625,201,1055,2172,1970,758,1963,2314,1528,2309,323,1155,1634,1021,1021,2811,607,912,985,859,1799,1052,2012,2662,895,2890,303,2434,1708,2659,704,2549,778,315,2016,2114,266,2828,705,1212,1191,121,2086,1900,1906,2362,1507,477,827,2871,2609,249,2029,116,1338,915,2608,996,2170,1017,1646,1164,2938,1465,2107,1775,193,415,750,1443,1390,1825,901,2735,2486,2925,1727,135,439,447,1094,939,2030,233,1088,1750,2881,1776,2109,2098,528,415,133,96,306,1866,1576,2065,530,1555,2236,88,594,287,505,1109,401,478,1199,2014,1507,733,1050,795,217,259,2033,1917,2319,1149,1117,74,1734,2850,2623,1800,892,481,2684,1281,2823,580,1229,2193,1584,2317,2733,745,2150,1517,2249,145,728,871,121,2199,466,2619,628,840,1490,732,2725,2192,1276,1503,1497,2294,267,247,1645,84,1028,986,1871,905,2628,13,1236,2867,1923,2591,1660,847,352,104,96,1363,1610,158,1025,304,1315,1295,2074,1303,1996,2370,2744,1761,2505,2856,2316,2692,185,2467,2165,2100,1956,1369,2475,2212,145,317,2686,1113,366,476,541,683,1921,2313,853,703,1113,1172,1390,1728,1116,675,1812,1915,2854,432,2487,420,117,127,2578,393,554,1756,2123,2199,329,1498,1940,1643,2690,2308,1500,1608,2416,493,128,822,899,1881,675,257,1062,270,2011,676,2871,855,16,2405,1897,1171,2852,224,272,1961,2634,424,742,1604,2551,1998,286,881,1195,1243,562,2482,152,467,2445,1692,1678,2949,913,2236,179,2508,850,2203,2548,964,2476,2712,2575,2858,2346,2578,1124,2866,2607,1912,1869,2126,171,1555,1785,1057,612,698,1688,1781,846,1521,901,2314,2785,1443,1789,662,2520,81,909,2863,1758,525,1183,1578,1729,1516,2337,498,1771,2758,608,1875,106,2631,2696,818,287,34,1690,2135,1001,1947,1497,1243,2289,675,761,2054,1771,986,489,2443,1573,189,2141,1096,2753,2488,2648,1170,1539,1440,2836,2226,2358,469,548,1929,2040,770,2411,2354,1289,187,937,1738,957,810,241,666,2626,821,2247,986,551,1528,2424,1708,2359,274,2024,1377,733,2081,2677,469,320,2705,391,2748,808,2448,2641,946,2262,2846,2808,188,807,1863,227,428,678,2600,1392,236,2358,2153,2890,1994,148,992,2630,598,254,57,89,1397,1800,1377,226,2299,856,2033,195,773,583,2273,2177,2309,375,33,635,1273,1620,766,2123,1783,431,1342,252,433,747,1879,319,784,296,2703,2390,210,1710,1845,2150,377,2922,1034,420,2461,1018,2671,1384,1190,298,534,1946,1510,390,2592,1442,1813,2016,2534,1990,2890,2872,850,1625,304,782,2201,781,93,946,1292,2303,2478,1310,1991,284,1231,950,170,769,2769,1246,2359,1634,1522,754,1943,1538,1997,1782,2819,2681,697,2282,1199,440,2177,1775,53,2726,2301,126,2542,1536,2325,1286,215,269,2235,607,692,2870,936,1744,35,2531,748,2282,2808,628,892,2104,1041,1194,1271,2177,1695,315,1029,434,2389,544,486,268,2897,699,1162,1861,1375,363,823,644,1550,2322,200,2036,1203,1389,2620,2919,2429,2756,1326,2596,2532,1100,1798,878,229,1225,1377,1062,2262,1214,591,12,350,2211,1277,279,1633,1699,1959,2882,740,1002,2398,670,2405,2638,1955,518,1942,637,2082,2243,1158,850,1779,2012,2063,2461,979,991,1023,969,1609,2509,597,1056,2120,1615,1278,2355,1042,2566,1752,82,2588,1970,352,549,2238,2394,666,161,847,2218,372,2155,635,959,313,1134,2834,793,932,2760,2321,119,1764,883,395,2263,2790,2737,626,2124,540,2808,1740,2657,867,575,2560,2371,1101,2570,1707,766,2887,2911,2519,849,824,650,2132,2277,941,897,1383,510,81,2123,1500,2109,1741,2063,350,1740,1859,384,1919,2333,1673,265,2712,1470,2220,808,164,1430,2072,2645,1840,752,2834,1910,2455,1957,2837,1473,2066,1721,341,1755,20,942,1843,2408,285,639,2901,2384,914,460,952,305,1154,593,2914,11,906,44,2462,2236,2880,1136,2933,2111,2350,1026,2231,577,1145,271,1461,494,131,601,2024,1309,736,752,1310,2184,2804,2090,1006,1254,1066,406,2415,2595,2702,2888,2741,2653,2032,1175,1498,1309,2858,2479,955,2563,655,1587,2893,2506,1945,787,145,2065,1588,385,1584,1321,1331,351,1484,1902,1777,179,2239,1718,344,879,679,547,1228,538,2784,1499,1932,2697,2868,41,2020,1776,2317,1564,2530,2714,2555,1829,2885,821,2225,342,1627,2934,524,1206,2720,1494,1409,1937,1413,2767,860,1635,2228,1620,1254,1784,531,141,21,1664,1751,1229,1888,1941,799,2145,1287,2634,383,843,2344,388,2886,336,1669,2245,2447,2436,2551,1977,521,2790,2081,732,296,2439,215,2052,2304,303,1593,195,731,2472,409,1723,2840,517,1464,2729,460,1254,2296,1281,2706,52,1320,2936,2311,1611,373,1465,1110,2848,442,1529,2067,2044,1255,63,2386,1261,107,1130,1551,2057,1809,1252,2657,2469,814,1004,1579,179,1526,2790,2775,1281,470,408,331,2151,1364,643,479,1766,741,2590,2008,2852,1064,780,2567,2709,2755,481,236,2877,1060,2134,2660,747,1147,1496,2063,416,1111,1089,254,1646,54,881,273,1110,2362,2421,104,2707,2477,1361,1545,1644,2471,2501,2169,2671,953,2128,2185,2810,2278,573,1991,1310,1727,1796,694,537,1287,434,1931,1900,968,106,2211,1529,2769,2205,826,1302,1306,2351,925,351,1487,1185,477,317,221,2176,436,2626,503,1113,2024,420,362,2712,1233,2903,2907,1663,2015,995,737,1126,1460,980,556,2376,1152,1329,1372,2421,2626,10,319,2240,1348,1131,2843,2222,671,337,2625,2099,2808,2088,1730,1958,1057,4,1199,1801,2214,1470,1010,1936,430,2662,2541,216,512,2919,147,2739,1714,1722,25,625,1115,776,47,2121,558,1176,2952,978,77,1592,1316,821,3,945,1345,86,2822,497,137,2681,2438,1324,1732,1041,1107,2424,2784,2827,1573,441,1829,2638,2912,2106,1301,2418,2753,1002,2357,1445,1351,1130,1398,1008,138,1353,693,1086,1099,2950,2921,2045,630,582,1918,1517,2827,1797,681,573,61,28,2173,2,2500,1799,1578,2106,1408,204,675,881,1417,1421,2301,881,2379,91,2941,208,2336,635,494,1706,1924,644,178,1299,2770,677,1044,889,2916,106,960,1258,1514,1603,740,157,293,240,1365,1684,553,583,1424,581,99,1082,1117,1870,2125,1344,2074,1243,666,1441,1131,1281,1387,387,1010,1539,1129,1754,2137,2219,995,1726,1254,1805,774,1668,2092,1708,1132,232,1721,1945,1531,2347,149,985,503,406,2648,919,2681,1972,191,687,2096,296,1311,648,127,2801,2650,165,1133,369,535,1478,319,1727,2752,2951,299,422,620,2222,2010,2038,762,2312,1303,1582,2572,2433,875,1056,813,2566,556,393,2236,990,2303,2381,1076,2716,1692,1109,1197,736,1309,2826,670,1010,2468,195,2251,1769,2007,244,2562,1913,1594,2700,1991,2407,1883,1085,1985,1534,2041,122,2202,1041,1562,2621,805,490,392,48,722,1487,2196,1557,1147,443,827,13,380,938,1712,693,115,1835,408,1247,2461,781,208,42,1226,186,409,1187,1470,2891,629,2688,1381,2332,555,398,1805,526,2502,132,1544,1767,1648,1313,1753,601,413,1730,1281,434,878,1821,227,982,1543,1835,1234,2720,2481,2266,577,2849,2874,2234,471,1575,2250,491,1044,2422,1283,1480,1885,2434,674,402,2855,359,711,30,548,389,1948,45,325,1817,2845,33,1354,2945,1350,1147,2242,2610,1746,2473,687,153,2821,2551,2624,2154,2695,1912,932,2888,1973,2182,1187,1936,480,25,1633,1346,1126,687,2794,515,1653,2662,1226,2313,1616,1688,722,1563,573,208,1544,730,2495,2935,2877,1521,2321,2853,413,2347,1296,17,507,1405,1675,2694,1493,2310,1726,2160,1326,2412,2698,1280,1038,584,2358,958,794,625,2024,733,274,131,2637,1222,1672,1365,2103,2024,1800,2848,729,2591,409,736,1254,1917,2526,1084,169,1343,311,1873,2484,2874,1593,1091,675,2464,201,1829,1417,2069,1498,1182,2416,42,2373,270,652,2809,2412,2371,258,1256,999,1368,2461,1526,2063,2763,2689,990,1053,2617,2485,2186,2739,1088,2316,2905,1930,1023,1405,1005,203,1338,1497,155,2814,2679,2547,2390,2683,1975,966,1536,1962,2793,1330,207,2366,1773,2218,1904,2324,2648,2953,2374,2865,1608,658,59,2016,1426,1829,2149,1435,1696,1272,2428,2404,1831,2232,2956,2569,947,238,1079,492,463,1511,1433,566,1484,2885,2836,573,7,1154,877,956,252,1293,2890,2228,1179,1478,1375,1560,214,1346,1737,2007,2737,2571,1786,1648,2503,2388,1642,52,132,1254,2319,405,708,852,1264,5,2821,1786,1051,2020,2202,2452,96,2715,2000,2911,811,2434,1431,2012,279,2626,1024,1566,595,446,2055,2568,2769,297,2864,1635,1663,1762,791,6,1192,34,1113,2944,174,863,2126,755,2766,1339,2717,2861,2217,1597,1902,894,745,618,2644,1707,1707,741,1959,1565,2039,608,821,1223,1412,2389,504,254,2400,2242,2579,2571,2505,2271,676,480,2239,345,2205,2436,1884,990,723,1811,2414,99,2287,2071,14,2658,14,1568,1504,2277,2255,1376,1572,668,2629,2481,1618,1750,2488,367,2813,2274,2168,939,56,1690,1933,371,1659,1806,2757,838,1369,706,2278,2320,1878,319,2548,2319,1437,138,2565,1951,1173,150,2829,553,949,1899,2489,2633,514,542,852,975,1057,1648,2878,2053,1222,1647,2808,718,1476,73,77,1694,1125,2808,249,2025,1227,1581,2002,1666,2916,1710,696,1003,1704,2264,2424,1456,1707,1051,1301,1041,1958,642,1042,1646,1382,2539,2491,114,390,2479,2143,1409,312,965,1673,2764,1853,1936,2166,244,24,472,986,2718,2614,266,156,1139,2180,1224,734,179,1113,443,1270,796,2614,2035,1502,446,845,805,1301,1318,2214,2507,390,2915,192,1465,2140,1019,2208,2696,1966,1305,1019,1979,1209,435,692,718,2753,634,1545,2833,1751,1254,360,90,2719,165,560,2547,897,1668,1310,1120,371,1310,2148,2005,2745,1586,346,1481,147,779,2707,718,1467,1514,1644,2465,2659,2753,1138,2347,2251,418,1417,803,1906,547,437,1569,1162,930,2429,2812,891,1334,2211,2161,2654,1536,2440,1997,1253,1634,1113,146,1950,756,1548,1023,415,254,298,319,1819,672,1736,80,2681,791,2851,1122,1020,2584,246,2759,429,398,1144,2775,577,2016,2154,530,1210,2136,2917,231,2512,1455,501,2610,1637,2112,2573,447,1037,1747,643,724,112,699,1945,422,1041,785,1444,1130,1493,122,1352,2671,2769,2027,2698,1925,647,2409,469,1709,2604,1917,1245,987,1682,353,1808,1125,1016,2060,835,2722,2523,282,873,721,102,1368,640,1358,134,2630,189,845,1714,910,503,1010,2424,2659,691,989,1422,1910,2194,1146,20,668,401,2426,910,2086,2101,1846,657,1766,2852,934,503,879,704,2265,945,2472,499,807,2662,2785,736,2060,1944,1250,1397,1314,1075,701,2285,986,2387,2272,509,1314,1180,2078,880,2552,2451,1526,1308,2012,932,214,791,454,2874,2343,1773,2895,1010,1659,1221,621,1842,135,2468,2424,1354,1029,1180,966,779,2052,86,1967,2881,620,2324,1586,2284,2307,1684,2193,2924,598,2900,2712,1960,2792,605,2060,849,2401,1709,536,1354,1574,2574,673,2292,1845,2422,2200,2788,1834,1671,53,1061,2503,838,1589,2249,915,1070,1391,2340,1696,1814,202,2223,1328,2130,2101,2657,1376,2009,1048,893,1297,2667,425,2140,865,1528,958,1263,546,1862,924,716,2701,1184,2821,1271,427,272,2083,2213,2257,1072,2129,1220,2661,2720,2016,514,2831,671,84,2908,932,2017,2125,291,2196,1284,1513,48,2726,88,644,1759,2345,2483,1549,2391,1760,226,1880,1767,2099,1476,246,416,1593,2711,2618,1847,419,2852,1717,601,1570,2504,2669,50,245,764,2767,2381,1777,2289,2116,2932,1057,1465,2889,1966,210,945,911,1510,1145,2244,1623,1184,2540,2393,1090,2201,1307,1807,1286,35,2293,1197,2024,1361,2049,719,1546,62,1010,1413,1045,55,2481,2652,1670,2712,1312,2037,1156,2691,2496,2718,1687,397,2424,2126,2024,354,28,633,990,472,1232,1058,1440,1666,524,1235,1489,2632,568,543,2957,1492,1468,1083,1773,2499,204,903,2759,2202,354,1347,732,2283,830,353,2920,1537,1650,983,1266,598,1865,2470,2012,1919,2479,136,1905,1509,2600,488,1679,856,553,1010,471,1067,2329,2774,2056,2382,2716,973,702,1444,1518,1125,1215,2351,1865,2514,2629,1439,1352,1338,42,2870,1225,2108,22,2356,2024,1334,1130,2672,1996,1829,767,25,130,1084,533,866,1507,994,1857,131,63,2307,1972,409,161,2644,2296}

    2727

    1931

    Returns: 39475707

  18. {2032,1804,2192,72,1478,1614,367,2304,1173,713,2288,127,784,58,1855,1346,1962,183,1585,2265,1847,538,587,1740,2341,1426,1166,1621,509,216,244,778,2134,2301,694,1042,32,2138,1158,1822,2187,969,259,2185,2309,2062,1632,1626,328,638,1417,2171,2226,1687,1718,2393,900,2033,1373,864,535,1809,1123,1190,1817,37,248,1569,700,2026,1248,1038,1243,2209,2371,1995,2133,1786,1861,75,844,2115,303,2009,2201,1298,2157,39,463,2155,2374,531,1771,802,1437,2205,1867,836,678,120,969,61,1885,644,1910,2354,1768,987,194,2105,2331,302,2299,1511,1088,223,1424,1642,1377,1926,564,230,33,28,780,1924,2315,1452,1229,814,2281,1620,1529,1357,156,803,1966,2251,1673,1813,1423,612,1538,312,1619,2397,837,175,396,1863,689,1519,449,1766,1985,1283,609,1846,2120,936,1782,66,991,1066,1852,1813,1482,1314,1911,724,329,2084,368,399,1324,547,2374,1485,1965,270,2039,2332,1346,2138,698,744,1256,2363,1670,1894,1311,1713,947,2101,2369,731,2313,1679,148,1308,1989,939,2019,1512,379,517,418,997,1198,1704,1723,535,962,833,345,1428,1841,1170,1532,741,1169,784,1408,695,382,1744,1914,550,166,1966,1623,1275,533,1271,235,1480,1948,1517,1922,1109,1226,2232,2161,1724,445,2383,1688,1174,506,201,1125,1944,2117,788,2138,2144,882,2013,263,1737,1745,397,1708,1330,2035,492,835,641,1815,1587,1819,2080,636,1681,891,182,1016,36,202,2362,1570,651,1717,2267,2026,1210,2025,1187,2313,482,1833,2,1901,1140,925,1742,2107,1209,2223,2390,1521,2181,970,1709,43,1340,1897,383,990,1320,1961,1042,1812,2174,2116,1607,1456,1147,1353,915,1385,2387,1337,1534,1495,1480,157,9,959,71,1017,1603,2309,435,317,2050,1093,1865,1580,1525,1716,95,597,735,2098,1874,2106,1604,1665,793,1074,1016,1375,1110,966,1086,328,162,852,2202,2013,400,488,1600,1265,858,1993,1925,1056,2283,1492,1102,434,1335,630,1233,1718,113,2127,1285,2365,1288,1156,2143,416,1071,1264,642,1879,287,1131,731,1365,20,1902,404,2002,809,201,1834,928,1828,1013,2113,1942,1507,1022,2172,2150,2050,2392,1936,413,1173,1113,1413,1141,1972,846,690,2247,853,1021,110,91,1742,1857,690,1552,1404,1605,1560,2306,1926,1539,1530,1202,174,57,1449,937,2165,572,2142,1948,201,45,1842,994,1986,924,1060,395,1994,1779,561,1158,2001,1234,1274,1693,750,2295,2067,1145,1887,35,1681,1458,2042,1273,198,100,2181,542,845,1905,1002,1860,268,519,552,2298,528,2124,2393,490,2135,1452,1078,1594,1763,669,659,1020,35,1776,1184,1962,1403,377,246,362,1713,1650,1456,44,1932,1968,1883,442,164,1277,755,1898,305,645,115,650,1462,1121,1482,1690,2290,1113,920,1424,2259,423,830,1421,507,1238,2154,78,7,828,874,1234,258,786,2392,2166,892,1314,352,617,1877,2366,267,2004,745,1516,2204,973,491,1235,2113,1446,1364,87,510,892,1866,57,1443,435,402,1469,126,797,2313,851,1649,407,970,626,123,648,125,2085,1095,2191,571,554,1779,2266,1212,1267,1596,2264,562,1714,1193,1681,848,989,1962,904,65,53,167,890,2094,2110,1708,1917,178,287,1038,268,1751,518,262,1890,1702,1198,1622,856,1766,1227,762,1097,2068,1572,41,1727,159,620,1607,1740,1954,548,1692,2359,672,42,2228,783,111,1537,240,1005,748,125,285,261,764,1380,7,1023,344,2087,1569,563,603,113,2180,1284,1921,104,1794,2095,2111,859,879,1763,1938,54,1989,1760,1722,977,2116,821,2164,207,1803,497,1083,48,31,2097,1486,1266,1955,933,1381,1329,2005,622,1367,2176,781,987,1202,1301,2129,1442,1471,1630,711,580,1401,1424,699,1941,458,898,1285,1996,2164,1848,1575,1401,1898,720,1310,1581,521,1454,1528,1022,1877,704,1078,1900,2152,1733,1259,1660,1878,458,1420,1806,2067,499,1281,1343,1521,1181,771,1087,384,180,1005,1939,1794,476,773,1611,2079,774,1461,581,780,847,2161,2360,661,721,796,93,861,2289,822,1050,700,531,2104,40,1167,291,323,1414,2043,24,131,333,366,84,159,1634,1365,734,278,1381,890,1178,197,2219,1653,651,1343,1226,141,842,774,1295,1433,746,113,511,50,304,254,1032,2215,2281,869,2209,48,144,1573,1101,12,824,1352,610,286,1962,1763,653,502,2003,859,1238,2093,1365,1198,58,1161,1107,882,823,619,2279,575,181,2143,2055,1210,844,1332,544,246,2279,954,213,501,462,526,568,186,1663,1523,2342,534,932,1152,931,2131,2185,1731,501,1463,2189,1799,1656,453,446,1156,338,442,1033,1528,1194,1769,1653,223,662,264,969,235,2043,961,412,99,2303,369,1837,2022,595,2360,1342,2370,549,743,1306,493,196,138,1044,2291,1932,1669,1888,1116,1306,1057,2292,353,948,1922,1472,88,2174,116,955,1908,290,1773,1109,22,1249,1366,1448,1914,2131,998,2193,1981,1339,864,640,1926,1989,2092,1375,1406,2309,265,1524,1763,2218,226,202,969,2008,1561,839,119,248,412,2396,466,789,1886,287,474,1756,198,2399,841,1858,545,1696,1067,774,2184,1783,79,392,271,883,854,1594,890,1655,1603,1529,2067,1346,1971,1280,1005,677,631,2135,346,1811,1295,2095,1616,1016,902,1501,2209,2067,2142,1527,2028,181,1850,1039,275,1804,1516,2253,2340,2176,479,1092,361,1035,1913,2023,1193,732,1796,1443,1588,646,1472,1538,2148,647,329,1563,1617,1651,1374,1885,580,714,70,1284,2240,766,1311,205,2195,2195,342,954,1493,367,2098,1668,761,1081,2263,1391,126,183,15,382,950,2073,899,343,1551,2081,1569,1118,1988,692,173,227,1396,556,1318,1627,918,599,2167,1475,1410,2322,610,36,1774,510,740,2246,1976,1285,1629,914,1335,1115,2002,721,564,1634,2064,566,1241,654,1129,1655,87,898,1216,1132,768,1100,1934,1252,1723,1447,1740,198,1880,402,564,2130,1975,2048,1582,572,1327,2135,2228,1672,1943,405,2228,1268,378,333,1568,2342,1705,1469,402,1466,1519,1633,2043,668,744,1049,1213,1105,1636,564,1110,2150,775,2198,1717,2142,274,1870,407,901,305,2310,1890,780,2179,943,540,1037,459,43,1322,1198,1102,2003,287,483,116,1870,1692,515,1235,235,445,504,478,2259,1172,640,1274,791,53,1942,1215,790,1233,590,1576,1829,1,336,2399,2196,1016,560,1537,1874,970,1173,915,1167,1590,696,2148,1360,2050,802,15,604,2124,1791,709,541,314,98,2156,472,1972,1804,57,5,1502,1477,661,1584,621,106,1158,2010,996,1346,26,2317,670,127,382,2021,234,816,1077,646,1713,1885,1405,377,566,1026,1365,1592,1207,1089,38,1667,1016,64,390,314,2152,2195,213,1701,766,259,2166,886,2171,408,1326,117,1684,2140,1539,992,2151,413,2349,594,2154,976,126,1396,2266,461,2002,1881,407,1247,571,828,1511,1155,2051,1543,1962,1321,1424,797,869,1845,1304,2195,2021,1171,1212,1360,252,319,946,1714,1841,663,594,33,772,879,457,1957,2092,2143,1090,732,2271,2265,1142,1450,1699,1525,1993,2056,1109,1464,1031,780,2325,248,1331,580,181,2028,19,449,1494,2214,646,11,1864,204,875,86,1930,86,2085,1881,2179,366,1258,293,198,86,645,973,1695,577,1188,1505,750,153,1670,1099,48,836,1154,1670,2017,1618,563,584,514,2,910,662,1727,1554,1676,1015,80,1430,1950,785,2092,558,1493,1792,476,1383,2136,1963,2269,4,2164,1782,1040,1271,389,2392,1410,1091,1401,2274,2177,1481,662,2351,1576,908,1972,636,1736,813,1698,17,1676,1233,1448,967,966,947,1120,1378,498,2082,2188,424,487,201,17,1909,1295,1794,806,1568,1962,455,180,2134,181,1556,1217,1345,389,712,661,32,222,715,2308,1024,179,1167,2355,1519,1095,945,1078,743,89,29,1811,695,1876,1411,1987,1589,1359,99,1618,1366,994,1821,969,81,2011,1,2241,2119,173,531,254,1206,1013,2326,1748,185,1672,1177,333,2074,1681,83,436,1600,1293,1852,2272,18,429,2330,2190,2,1127,1721,1401,1668,2038,716,1083,1538,1191,1868,10,2160,2217,925,1854,1261,985,321,1415,220,1434,509,204,2235,899,2053,1368,2029,1778,460,2345,2254,1869,1782,562,1701,1852,1330,589,1679,1151,1080,108,1802,947,2303,1968,118,670,181,895,1021,2096,1329,1979,1831,1088,1061,705,2198,965,2041,1086,1219,620,2309,2374,1992,165,1790,1598,239,922,794,1502,1391,97,1328,1802,1923,1828,1277,754,1702,206,1280,174,727,1718,22,2066,1237,1176,694,1608,1585,1367,83,965,1489,1507,1391,560,2233,2025,412,1608,1158,1712,1683,2190,582,233,1236,1555,1016,2378,426,152,1504,1652,1467,797,2311,1094,2327,1167,1081,178,2172,1389,916,1875,2178,1455,2238,1485,2311,1053,1257,1674,476,985,72,1324,1922,2057,1675,1456,183,2342,2090,250,1413,1945,1683,2343,1391,2023,555,1410,1860,489,1233,1602,1376,1440,1439,439,534,1355,1940,1361,1382,2292,1137,667,1647,2314,49,1098,450,2103,147,1301,1594,1041,1109,2356,428,341,2291,402,73,1038,1036,1192,1888,1574,190,725,1384,1119,819,1593,1051,307,105,1931,1156,879,1073,2153,505,2210,840,453,617,2248,1031,3,2329,1607,1424,921,1427,1472,887,514,711,1785,1915,2252,1277,464,1952,350,1942,971,442,1869,1104,995,1802,1455,1109,1288,1983,112,917,968,1834,431,1785,2181,200,465,2304,44,817,766,1578,1218,2338,1359,1872,574,555,548,2265,434,1329,2343,2270,2092,2218,1165,1718,835,1785,1381,226,2047,957,2379,2043,844,32,2106,1082,1386,2095,1200,705,855,161,1720,1700,864,1027,2257,712,2206,1615,1360,528,1513,1045,1117,1379,1794,1742,915,190,189,1021,825,214,1150,1692,2218,1639,1499,532,914,1844,1469,839,1173,830,1114,1392,889,1522,269,2086,1770,710,1360,322,2092,294,844,924,1805,2335,642,710,1285,233,1541,967,1317,97,563,31,707,1727,470,494,417,2181,2127,172,1227,267,314,60,1037,1399,461,2328,2002,1435,732,281,1387,1820,1173,452,1062,1149,137,1091,1725,888,1718,152,758,1569,2347,1009,658,680,887,1227,2044,1832,110,1112,1901,582,926,1697,323,1117,2380,2262,2014,1153,628,1434,1730,1491,170,325,2256,1932,630,1364,2173,1828,23,1899,1166,1718,766,878,579,1144,126,673,417,1834,208,1308,807,1764,1462,184,2122,352,299,1283,989,1521,1782,1496,1224,2007,1807,1912,1900,1164,1637,437,215,161,2377,197,2357,615,1954,631,2045,1460,614,1223,1586,461,2250,905,607,2034,110,488,2099,1005,854,1873,44,1853,641,300,2212,284,370,870,517,2177,1197,1619,2092,2043,1645,563,935,1655,630,643,921,161,2255,1291,1902,236,622,784,386,1329,2322,1592,496,256,973,1289,74,1752,1984,1023,2080,1044,2218,1978,2305,675,1128,1787,1466,1179,1365,1221,1814,2202,1718,448,2249,2080,1029,585,1763,336,195,2,911,1498,667,2172,2275,786,151,262,1852,2081,1663,1304,1034,2256,2346,1564,1314,189,2279,1334,288,829,124,2131,1398,1693,1949,2287,218,1539,2295,2175,393,107,766,792,2399,593,1925,394,1077,1093,160,468,1756,1609,772,1163,557,491,331,2334,775,126,541,1989,2133,209,1601,1042,580,2367,504,384,784,1033,2009,2300,78,1654,1896,1033,50,615,1640,1812,1411,2143,1320,1859,1932,737,1916,1846,1070,1386,1329,1788,765,57,398,999,1671,2145,359,966,2040,1678,1323,579,2193,810,571,1638,1455,457,1715,576,326,2014,1025,2234,2227,1523,869,2095,2224,2003,1648,1246,1468,1758,1921,1721,1452,969,1677,1225,1476,190,1508,1852,1545,1749,1902,384,1877,1408,2185,1143,2364,405,714,36,818,1328,949,1016,723,2309,1947,2071,889,1284,931,380,1538,1252,1370,2163,861,2113,1050,2294,864,1864,2092,731,1864,806,1845,2312,2131,1914,1457,34,956,46,1262,1125,130,1678,1634,787,1418,1993,411,947,636,1020,2202,991,776,1925,1195,1526,2367,589,1804,1280,1603,267,202,1577,630,1177,1962,162,2021,615,199,351,686,1742,1943,1536,2085,828,1900,432,649,486,1974,1451,2137,190,1531,700,1208,2188,1182,461,2075,2005,1124,1794,2122,909,2376,1589,50,2277,773,387,442,405,784,671,250,1157,2091,1731,2135,1648,114,1470,237,2307,2202,1528,525,1917,2178,594,2077,2198,1765,134,2101,229,1525,192,906,886,2167,129,2095,1388,1681,1091,1686,984,815,1856,87,1210,367,857,92,97,2254,2291,801,1703,360,2163,1158,1338,2144,1410,1583,1194,1822,874,2045,796,613,1086,897,476,1675,2284,1136,1191,1338,1698,381,834,1702,1428,2302,864,1192,367,1929,1845,1010,397,1521,1672,1354,303,1135,1713,520,96,205,321,989,965,1159}

    {1347,1641,2005,1761,1840,1868,1487,2319,363,696,430,30,1333,249,1613,2391,260,1095,962,1,1003,1135,986,1033,1381,130,1200,35,1521,893,2345,1212,1465,2390,860,1881,747,925,1624,323,1307,1402,374,1095,1429,879,2285,1231,1785,1267,2171,146,1344,1422,902,1205,1255,1506,801,1426,531,927,1004,884,2125,1211,1459,1800,980,1739,1347,1606,1540,1606,409,531,1095,1255,564,1612,883,1474,988,593,179,708,2118,454,748,866,260,1771,2135,850,1088,1574,302,2037,2165,1895,413,570,912,1893,1295,873,1501,1951,1592,216,1138,2028,83,1530,1997,1873,0,1095,1754,2172,1918,804,1765,1464,750,1327,158,1466,821,1010,1359,687,1467,1400,1391,506,2227,2333,1093,602,796,1359,1052,1916,1443,828,956,32,1180,2378,2015,1743,426,1341,2148,207,1489,2016,1026,1093,2109,2394,16,250,928,412,1682,779,1655,2059,730,2021,735,2106,1428,2085,2044,1755,1551,213,1398,2394,674,625,1420,2242,784,1454,1036,775,1008,383,201,863,504,2147,543,2385,1511,1339,801,1898,565,1471,564,149,1234,2370,890,465,1017,1849,1059,2322,1820,1394,795,338,2265,841,1615,564,1608,1926,274,2356,497,41,128,1299,752,534,1089,190,1033,324,1497,2127,2258,20,1389,1286,1845,2327,421,1338,528,1801,2052,1484,1014,39,1063,2060,171,188,1106,1401,1158,485,1667,705,2244,1678,596,880,1493,656,2090,705,364,1043,1314,1047,2082,797,2123,1069,150,742,1165,819,786,1911,708,68,1679,1511,1430,1058,1698,105,2113,1044,1319,1120,1231,83,552,2361,2390,247,133,187,1468,2120,1551,2169,1951,1358,2067,85,1709,451,1405,714,2108,762,1109,2358,2030,2012,2132,1485,2017,636,826,1070,126,2337,1756,1121,1888,100,1566,1315,1622,1040,1102,952,601,1720,1946,221,1973,1397,2051,2119,1239,1485,757,2156,438,2280,390,1409,135,2316,1785,2009,1395,434,714,2281,47,2342,1314,2130,569,1779,2226,1765,1891,163,550,2381,1305,1488,337,1361,405,2375,820,2239,496,68,1150,2373,486,1047,1842,1202,1518,255,1903,2288,1872,1870,203,2002,1312,409,412,1301,653,1890,1419,1474,778,1912,1022,2,1253,1063,1811,934,2321,2183,428,1006,712,1582,81,770,1042,1095,232,1237,926,2049,676,1836,1027,881,434,232,982,1174,1631,661,2172,25,2133,1064,1990,1300,1083,2286,761,1285,2152,11,1982,662,52,1528,1907,1840,1928,105,594,782,388,1840,2372,2058,1295,1803,714,1038,358,788,1540,231,539,2091,401,1180,2229,883,475,903,1716,1812,655,1740,2183,784,1096,1847,971,510,2174,712,503,594,244,295,201,1868,1777,2223,1733,1086,705,1653,1302,504,1810,2032,777,1049,627,1172,2236,1240,235,48,361,376,1183,1081,1081,681,895,1310,2277,679,1495,1228,986,961,637,2149,245,63,1068,1558,466,69,2264,626,1860,2065,1383,2139,1269,1680,1573,1586,2227,99,2166,994,1794,2121,1401,422,2340,235,1757,1424,2129,1351,1148,1664,1401,2270,941,1697,90,564,334,2120,1019,890,2352,1162,355,103,462,48,1200,410,2288,2281,676,2223,1849,1781,1365,933,36,1882,1549,1720,1824,461,1311,1120,1565,713,596,1717,353,1785,1857,225,885,391,573,1810,93,127,101,1780,666,1922,1681,553,2048,1173,1091,1509,1022,1263,1559,2106,206,974,1356,1117,788,1700,435,2349,1272,334,478,732,147,2284,2334,890,1717,2293,928,1309,1246,1628,166,706,275,283,738,118,1339,1839,1016,373,1794,723,705,2149,306,979,739,927,595,1282,845,596,1554,266,681,1666,2017,563,832,1696,1557,1766,83,1494,1930,2207,2292,510,1085,331,1054,1121,1317,1738,1234,1436,531,1709,1404,2351,1713,1967,687,308,1862,346,83,2171,1728,1795,35,445,2257,2309,1520,1428,789,535,2010,1368,1834,26,1718,1018,1441,1175,1672,1828,2153,509,8,352,1854,1792,242,1401,2343,2323,870,470,1174,1241,649,1710,1220,1773,343,1811,2320,1372,32,2376,360,1962,246,2003,328,502,1816,1184,2332,1881,842,702,1022,2112,2354,2387,1862,708,1054,2032,83,2010,215,546,880,1830,1970,2285,2107,1905,1984,600,1122,2376,2162,1817,2076,110,2373,1892,447,224,600,148,1095,736,304,777,1862,1401,1298,1644,2100,2221,943,1472,2338,1772,1794,433,798,1862,520,824,1989,1401,964,1190,1022,831,559,1028,821,1589,2068,481,902,685,121,1529,1372,240,1862,1298,2228,353,1754,2334,2,2148,367,2181,1323,437,1134,2231,2114,743,193,809,921,1834,177,1923,1808,1186,2005,83,440,2271,1660,843,1714,528,250,1574,565,288,1422,1889,2095,1108,1404,1309,551,1085,55,1880,109,416,470,1349,1980,1670,98,1812,1737,619,1631,1915,983,1314,194,639,228,1139,497,2152,409,448,1823,1160,756,1187,1022,1121,1362,1149,1548,1763,2243,323,931,1923,73,2293,726,397,2211,335,185,1428,1686,139,1698,1654,94,462,1416,1346,1278,2390,973,605,78,2088,1138,723,1405,2023,837,1992,576,343,1369,514,928,1352,2278,1985,1696,1035,1890,1771,1530,2100,2070,1691,1747,1547,1770,1926,1030,589,2158,1438,1729,1022,1798,1005,768,1725,1055,1662,2005,419,183,1643,1254,836,2078,1861,22,297,1493,1304,2017,1784,2095,2321,275,332,470,1274,1405,56,2337,2172,466,1011,1855,1009,597,1646,2119,211,541,1432,1239,864,2313,2,2220,399,398,2014,1962,198,284,176,1826,2030,896,1274,1426,1835,466,2360,2237,1098,1563,2002,2256,1138,500,1227,1130,1040,687,1962,420,1491,2257,1588,1158,1115,1615,1797,1595,1393,49,798,415,1571,461,318,1495,2199,951,488,325,1431,315,2100,1781,1599,766,1336,2005,1536,1033,1870,1701,667,407,1515,446,1046,2373,908,1823,728,1227,56,1014,956,142,228,1888,272,394,2372,2204,808,1162,1016,35,659,2069,706,2080,898,1539,126,681,2219,375,289,324,118,1337,2128,471,2024,703,422,697,1281,1392,540,447,523,355,277,2392,219,2197,2063,2005,894,580,1997,622,1275,51,2225,632,1095,2087,1658,2390,804,68,1372,1890,1149,132,2282,2195,930,616,583,2198,1741,465,1329,78,2089,713,1657,269,1173,1146,1162,396,1720,1521,1612,2179,1348,2229,2353,853,1851,434,2216,241,542,319,765,1446,1854,960,1270,300,3,1444,1976,153,458,1360,2269,1126,2102,339,1819,1017,1775,1039,1626,608,406,1371,533,32,1718,365,529,1303,2315,491,968,2092,1480,2319,1586,403,1783,1269,611,870,1862,17,606,630,122,545,937,631,2135,1481,965,530,586,1251,1242,2368,427,1301,876,2245,1574,2191,3,117,2145,1510,1753,621,120,1659,691,1955,2135,2059,189,2385,458,35,378,257,1320,2112,1715,1117,1577,2175,1245,1732,317,2307,1514,2233,1405,304,2249,1672,985,102,1279,963,2165,878,434,994,126,2083,412,1167,356,1182,353,21,2114,360,161,1938,2135,1161,1578,1095,76,1246,496,1323,839,1417,700,2118,270,634,1093,1888,1054,1095,405,1920,201,1694,809,161,2380,168,594,341,169,1363,1742,413,97,717,143,2333,1224,975,1075,800,921,900,2073,74,273,1120,1379,1933,1095,599,2370,1479,456,1474,2106,1190,660,478,182,321,769,759,318,1740,452,890,1048,591,2338,1009,749,626,1039,633,330,1109,565,2208,1472,405,2058,1874,42,1928,871,1065,1185,940,937,140,772,1398,1999,1597,531,1211,282,735,1200,1010,2200,1214,763,1057,1596,1568,1446,486,2326,1991,414,1227,844,466,723,908,1610,488,1985,1051,89,1930,1519,893,1313,2133,2285,1168,938,1211,1326,82,482,781,1944,1579,340,2384,2273,1706,341,1314,1974,68,1123,1962,1935,1504,2202,127,2058,927,1661,208,1043,506,1467,2230,825,1894,516,1511,681,1596,596,2370,1409,1457,854,86,340,1977,723,2093,929,2031,1442,510,1270,347,665,569,155,881,695,303,1297,688,174,1030,662,718,1455,1212,1372,966,296,218,1149,2226,29,534,1118,862,2187,947,2197,484,972,76,326,1199,2232,477,1367,693,2175,1017,2276,2211,818,1238,1453,1007,1513,174,2014,235,1962,684,670,226,2380,1734,775,1615,751,2154,29,639,77,1941,374,501,848,1187,623,1971,1287,1903,862,1616,398,2054,1318,1047,1009,323,473,1903,2333,1859,1544,1279,652,2092,513,2026,449,441,2127,2339,598,728,1866,316,2119,277,516,1364,981,1524,210,729,526,681,127,178,1201,1411,1624,749,1471,494,1568,1260,372,2388,105,641,953,2386,469,424,1455,2141,196,2149,1317,1090,1709,348,1533,2350,967,971,2146,541,733,1325,47,962,80,404,214,256,983,1834,1103,1271,200,908,174,665,927,1506,1855,198,1955,1827,1107,2142,2017,2344,1232,1649,2072,32,1097,268,1766,2120,1074,37,611,235,1269,1418,1818,1151,1146,524,887,1697,2159,1633,212,1553,1485,1951,1177,1199,447,1848,942,154,1079,1718,748,2061,1652,2266,107,1512,2372,964,2376,1715,1746,2225,1959,2193,2293,937,192,2027,1276,1177,1887,1619,2222,2392,1342,728,1693,2197,2336,1670,2382,1698,1017,944,576,1956,2344,34,2202,1748,2171,1685,2346,371,987,588,645,1241,209,1854,2142,362,17,1802,1904,2170,2360,114,514,160,2243,1508,706,2067,243,1344,907,419,2319,1992,883,719,2265,408,742,1893,145,1184,1054,1961,237,592,2339,1227,2200,1365,2043,398,447,1201,1595,1316,687,1713,1290,1500,1707,440,641,618,2319,1623,201,2237,1189,920,512,784,1222,58,153,1535,2315,714,804,745,448,1718,1296,604,387,1227,2256,683,1579,110,344,1322,1764,689,1428,727,1628,242,1435,425,1694,412,1001,1076,1851,579,1771,950,1204,444,44,2390,2092,2322,1906,1273,6,772,675,409,253,1802,473,73,662,316,1522,548,908,1484,578,405,208,2263,2036,2199,1627,2310,1122,2368,653,160,465,367,868,2261,564,1702,910,1246,60,1698,552,1016,615,919,28,2331,200,2082,2172,1547,955,1938,2202,3,1292,213,174,1937,495,1,1117,2190,1016,2082,300,1314,893,1590,1212,957,1195,314,711,61,1244,1792,1374,1550,809,1794,1432,2260,2014,2200,1350,1162,2006,1693,253,2276,2076,1000,2385,933,67,780,913,1196,1930,1271,2202,2348,1298,1113,596,2370,1133,308,1365,2400,1307,2017,705,1890,1948,721,1335,2053,22,387,744,1725,1916,387,1296,2000,1175,854,1998,1128,1576,276,1374,978,2223,1880,7,1765,866,548,2184,1789,191,1553,2018,1969,1888,522,1174,1196,174,402,251,1958,1845,899,535,1160,958,57,2219,1465,522,841,1964,181,1879,267,1445,1591,811,1783,1251,2193,128,2020,1767,2370,243,1744,714,510,536,131,457,298,725,1637,880,97,443,804,1848,2021,993,1574,861,849,291,844,279,444,1078,2123,1203,777,799,665,1960,1038,1539,2203,1434,1099,572,1012,2378,1915,258,1495,2164,1754,74,1255,1554,635,1542,1718,991,1634,2298,1877,1113,865,2142,1768,1670,1538,491,1750,303,506,1441,877,256,207,2051,1635,966,2344,827,1429,629,1511,1109,1276,1980,1836,159,2330,1452,255,1017,1711,579,105,2034,140,461,1120,367,1838,866,310,1503,537,1298,255,1725,880,1473,1504,1113,301,805,1250,1111,14,44,1828,13,1719,555,812,1625,1852,2395,1022,480,2362,760,1579,27,292,443,2185,352,1314,1004,735,1927,1825,311,1428,1462,1334,745,569,2345,872,2324,968,349,1412,1670,201,2053,1762,1802,2127,1357,2398,623,2186,11,213,1726,1768,1982,722,1212,753,1766,467,1421,236,735,2090,1313,1839,1048,62,716,724,823,531,786,1286,1412,2397,788,1709,171,1544,1546,846,989,895,2168,508,579,2302,2011,1990,361,491,1230,346,2106,767,1461,461,2213,2108,788,686,704,527,357,1655,1943,2026,490,1517,1871,2199,1412,1539,1567,1309,2228,1689,1989,1335,1485,865,594,1485,1843,1618,2046,1479,2171,716,1919,1022,2268,1098,280,1425,1053,2389,925,1479,2010,1894,2185,157,1937,21,309,238,730,923,178,701,833,327,1574,475,1014,387,657,1741,1388,1255,515,461,620,1953,1483,587,1735,1799,383,745,1436,1235,2390,818,1071,682,519,2148,43,712,1568,1490,1947,1438,370,243,1694,447,1088,808,1715,1553,1562,1367,1842,1463,320,2009,434,1903,1472,567,1369,2137,1068,1084,763,972,2245,136,2194,1400,163,1126,594,2245,147,409,382,1783,437,1475,2182,1603,624,2017,1594,838,769,641,1442,1069,1390,2297,1437,2352,985,1394,586,1189,217,2277,2380,1407,1952,510,451,1884,59,31,867,342,385,59,1530,1718,452,99,313,578,1746,1251,354,82,667,1490,2296,1993,1793,589,1294,1277,2313,458,1167,664,818,1691,1888,50,58,72,245,2253,1072,2318,2126,1759,1548}

    1977

    2154

    Returns: 727307069

  19. {381,375,271,347,509,452,54,277,91,182,286,161,365,139,67,320,90,377,476,526,360,228,153,99,214,202,421,433,127,89,473,364,287,5,201,251,393,439,462,259,480,194,49,44,96,93,136,407,216,361,149,347,13,156,310,487,516,20,190,343,412,191,48,317,302,168,81,546,134,91,508,75,270,449,189,183,49,140,59,215,55,529,158,143,251,427,334,69,8,363,4,316,238,477,484,303,381,339,240,454,373,205,58,334,55,314,88,347,163,553,323,393,73,433,49,123,44,476,386,349,211,258,55,49,344,154,51,198,234,4,38,418,165,368,315,341,69,462,0,401,139,30,163,420,307,468,177,269,432,38,251,360,544,452,101,395,492,473,314,117,254,314,382,96,537,146,442,414,311,327,147,89,154,561,413,26,164,67,28,249,35,353,474,418,493,518,379,530,285,474,94,511,167,244,20,447,122,561,103,359,504,179,164,149,29,118,253,462,463,417,151,42,36,118,230,360,429,113,89,414,55,5,446,113,394,448,126,186,367,471,211,204,301,538,262,111,337,74,304,539,558,518,361,42,518,58,94,4,506,106,167,528,339,71,402,473,25,393,514,501,453,223,163,476,228,419,519,425,157,208,200,492,289,498,49,447,67,356,548,141,167,48,29,373,307,60,190,505,164,395,129,207,164,465,443,261,428,451,215,96,385,452,98,206,467,172,55,23,369,158,104,162,108,77,278,321,163,478,469,174,160,338,346,325,340,471,77,560,277,284,368,516,553,454,200,446,132,374,62,52,305,168,265,49,176,407,111,273,209,132,42,117,504,114,332,446,384,293,153,476,49,305,368,547,163,7,358,16,307,421,179,235,351,360,91,18,476,395,442,113,557,77,335,440,339,63,308,375,200,229,456,489,243,184,6,7,464,421,376,108,382,214,111,184,488,328,465,195,353,22,92,213,67,9,199,503,520,29,226,242,19,173,298,387,347,347,291,101,78,285,395,86,245,252,315,464,401,306,542,148,531,101,41,151,165,288,336,115,489,86,84,79,85,37,295,194,461,263,562,429,339,107,452,521,163,474,360,502,148,49,222,146,6,49,273,378,536,196,545,62,412,263,117,121,425,8,268,429,531,429,66,552,4,31,420,72,140,411,420,247,368,41,139,541,8,280,58,139,144,428,139,488,92,302,355,461,245,6,184,171,175,422,191,361,2,357,523,68,42,141,347,49,157,142,12,69,55,412,367,105,397,519,308,12,137,31,10,313,232,158,169,198,340,517,345,210,69,507,538,526,430,120}

    {346,75,184,96,98,557,549,339,124,329,116,459,450,216,431,58,551,363,448,459,354,239,332,167,232,165,203,181,210,17,450,110,283,526,250,454,366,518,266,11,404,102,75,290,329,29,342,162,302,112,11,434,561,311,533,370,97,53,265,393,201,82,414,495,415,392,547,27,269,416,213,5,391,326,185,465,449,431,198,476,303,139,420,338,78,158,434,75,35,294,90,156,127,172,548,84,423,159,86,225,431,319,382,458,101,34,160,1,288,74,370,48,482,33,549,235,300,198,321,510,337,19,487,347,255,76,377,525,349,29,47,157,549,187,77,139,188,491,486,270,314,395,377,212,454,450,331,87,352,301,466,341,159,270,174,117,153,426,162,210,487,287,388,166,118,217,497,282,206,400,449,437,324,371,182,123,50,77,258,303,435,273,256,425,3,299,222,23,3,277,169,513,267,147,303,279,101,452,393,264,482,19,442,411,3,95,474,333,306,185,452,383,421,404,256,35,24,95,6,70,117,130,490,476,292,398,258,401,457,128,19,193,39,40,95,372,396,196,330,467,291,471,420,496,20,310,19,506,475,491,550,291,88,172,512,494,129,490,352,530,307,143,438,530,489,346,29,255,181,263,258,281,410,19,117,491,405,310,277,507,69,68,367,50,74,239,96,360,378,39,119,543,535,473,114,49,309,275,194,296,451,474,428,393,522,425,148,274,6,100,118,483,373,192,75,362,304,522,389,348,312,550,116,333,42,559,511,302,486,98,185,231,516,532,317,45,464,361,115,341,313,55,180,252,313,57,361,50,5,218,265,476,114,525,65,145,311,99,224,64,424,264,170,47,534,297,429,178,464,133,324,98,368,408,12,334,173,363,131,150,481,554,548,433,342,227,41,479,276,413,18,117,16,20,341,378,226,335,505,83,207,350,540,515,472,138,524,540,322,133,232,380,470,101,109,314,397,549,546,447,117,328,313,12,473,277,158,213,460,499,153,179,487,177,241,346,555,401,476,56,289,361,61,204,87,556,263,523,349,109,44,4,91,503,84,399,444,403,361,371,106,449,512,550,257,327,455,55,248,129,377,373,389,373,451,220,200,445,172,553,226,452,393,226,236,32,59,259,431,15,303,467,72,256,235,362,14,436,441,505,226,21,125,341,46,431,360,393,192,318,313,115,246,260,434,424,16,152,352,457,67,293,158,272,443,457,221,485,197,406,226,425,227,395,164,214,308,233,364,462,75,527,539,137,135,500,104,205,80,219,409,237,43,68,258,155,507,394,474,390,20,479}

    342

    407

    Returns: 838547169

  20. {2724,173,9,1337,1750,1580,1695,189,2665,2418,1204,1853,683,627,1287,832,2585,503,1278,2137,564,2715,2037,2003,2661,59,2175,1322,2321,1527,588,853,2184,2422,2106,964,928,619,1744,1004,167,761,276,137,796,2048,1310,247,1419,1296,1121,1111,1793,1545,30,1493,1186,1623,2317,2581,461,2463,2526,1053,1284,2745,1713,1267,2574,2772,2532,675,2227,2065,554,363,2489,1936,1659,1049,1521,531,2083,1151,894,276,1515,2234,1153,1185,496,1231,945,1201,1966,1692,1909,2588,2581,2199,111,193,1793,520,347,128,373,287,2616,2284,1510,1138,1680,815,349,702,1440,2609,164,2192,1377,2362,1389,390,1833,1998,1675,2606,813,2709,442,1226,150,1272,201,228,880,2415,1933,1966,918,1348,2063,2592,742,284,934,1374,802,1678,547,362,1152,1548,2654,1943,2709,926,1202,344,964,188,1671,2183,1890,1541,1329,673,305,2554,502,2480,886,866,717,1785,148,1094,540,1112,2191,814,2188,191,1698,1350,2592,1692,1084,2050,1352,360,874,2575,2556,2633,24,2464,2271,182,1960,2003,1050,1161,1769,1835,1469,1393,426,2458,871,1324,1531,1573,949,1150,1062,2415,2669,2427,2093,1744,769,2101,837,1471,625,1789,971,2115,2301,35,2543,864,1696,1139,1723,2095,1906,1534,617,2350,1344,1976,1787,1024,1430,902,924,1693,1736,1234,525,1510,793,2661,284,2751,283,1968,2565,2065,2118,1279,2671,1635,2616,2372,1874,121,1243,2535,1296,2744,2042,1091,2569,1799,647,1080,1887,2188,2037,890,1547,1755,2054,1461,1236,314,1130,2213,542,1101,2588,453,204,538,405,1707,2500,1180,2769,1630,2300,1079,1352,2521,2643,333,2359,1571,5,2717,1040,1001,2042,85,604,930,1862,111,1871,1671,872,1243,578,179,1861,1236,1741,2356,2141,1288,1851,2400,1309,2731,2034,2452,2042,2136,2627,2362,2409,1178,2254,411,2452,1721,697,736,2592,2466,2376,646,1845,628,2276,1103,398,1820,2769,2534,512,2478,337,2734,2333,891,222,1328,1638,2636,1293,2757,2645,2754,2471,176,1712,1339,1583,1481,109,2410,1246,2735,816,2488,1586,125,2550,825,1130,325,1622,1827,1767,2445,1090,2697,2525,2299,1122,2252,680,1294,231,39,1415,1668,2329,74,1533,1449,51,718,114,1034,1583,2554,602,83,843,716,550,2343,1302,2320,2337,2594,484,1561,1750,2026,2380,506,502,2737,488,1176,1379,345,1677,634,1683,856,385,1713,2249,1231,2124,1946,1261,1140,2672,474,430,1832,1434,697,2303,1751,1410,996,1580,726,1272,654,460,609,737,2680,1961,2581,1309,2776,1959,2350,170,787,424,1898,1951,338,757,1865,623,2559,2509,1196,910,1933,2306,474,409,1444,2514,1269,743,1050,181,1908,1390,365,979,763,98,2034,786,471,1298,1758,2419,1972,2088,2239,2218,954,1466,1707,2222,1298,774,2404,642,1095,1469,341,1642,2558,1171,1458,1945,2756,1122,2059,1310,1565,1916,1593,1443,2361,2394,2587,292,1343,1658,280,990,1437,304,1130,2037,727,804,833,2570,1080,1564,2178,397,2587,728,2238,300,401,952,1591,2516,1105,859,2574,349,66,2632,2301,187,824,1346,2474,2689,2557,1010,1412,230,1588,536,2437,768,845,1424,240,1356,2615,1119,403,534,208,968,1146,1451,1709,2350,518,2557,2775,2665,980,2768,2518,1976,32,1668,1645,927,1557,1938,1707,1201,2757,1778,2511,1425,2660,1989,909,1861,1131,185,2772,510,2214,6,434,884,275,1399,1762,2366,465,740,38,2683,62,2493,1923,1586,1924,896,1488,1166,2479,1543,2524,2715,2281,1914,783,1947,1605,429,533,2438,2339,2325,2600,2049,1591,1233,2566,634,358,726,2597,1939,428,2110,1617,476,218,2575,2437,376,709,340,1271,2297,37,1184,209,2637,1975,1602,1016,2497,2504,2275,1604,129,1184,858,1356,814,1998,1869,1851,331,17,2042,5,763,981,1581,2224,788,520,1488,1566,439,535,353,1299,2209,2600,995,1032,2712,1261,1674,1239,1869,1862,1747,2631,965,1206,2454,1889,358,2321,623,1763,158,1778,2406,925,1743,900,2006,1069,796,184,812,2220,2701,614,1989,548,2298,1060,2100,809,2034,1132,1217,5,1052,1073,2152,1033,161,549,607,2489,669,1763,1286,1993,1028,2226,1035,1616,2242,1851,112,1978,1096,1183,1411,528,2591,2197,1544,214,1293,1350,645,2598,1075,1833,1605,792,535,1867,1233,2342,57,1185,2056,164,400,1554,265,713,320,1244,1259,2572,1856,1486,2088,2343,1408,1256,1282,2002,2456,926,1244,1749,1409,1159,1168,2347,2457,761,1100,435,1328,2267,2334,119,1477,2465,2505,2467,21,2719,1310,1560,915,2440,1439,507,721,2378,897,2554,97,566,1321,399,1801,544,323,2568,2129,207,1671,831,77,605,1372,272,1367,1621,528,878,1290,2136,909,1131,437,1358,2272,2754,356,2293,1809,1106,1108,1742,2596,1754,677,376,1058,1034,1927,1321,1183,2011,1171,1130,370,2205,190,626,472,1902,710,256,1204,1227,2076,471,638,1569,1787,97,788,1126,345,1958,1390,118,964,1132,839,2330,241,1438,2482,1434,2293,2205,2693,454,1443,2697,2221,221,1860,263,1744,881,275,286,961,612,2709,841,2516,2384,246,893,2584,1564,1355,2227,647,546,1522,423,2021,2464,185,1422,1790,2140,2424,1247,102,219,770,1359,293,1729,1098,110,738,1473,1610,443,1374,1023,882,1843,1550,751,1671,2355,2387,1807,1963,1658,708,825,2150,1012,1373,567,2164,1098,78,2028,2686,2607,69,2353,932,2374,1827,1046,2508,2313,2646,482,490,13,1283,955,1044,817,670,1321,647,2530,1567,1968,1177,1034,2372,1354,2103,1338,1931,2381,962,2376,712,736,1423,670,2463,1443,1210,1327,647,382,19,1325,1002,584,637,2490,1363,2298,1533,2299,1564,1518,716,260,1178,1342,73,2520,2322,2254,995,2279,91,2764,788,376,5,84,128,797,1767,1584,2505,1676,2270,800,248,387,604,1759,859,1318,285,1880,1984,2051,2468,1484,1301,2004,1213,2091,2231,1399,2000,1126,1179,655,2372,2379,1122,1725,973,1055,2121,2219,649,1396,2323,2483,1520,2404,68,644,636,143,1225,544,220,167,1624,1846,1099,1843,2248,2396,1491,400,1864,458,2089,986,396,697,1351,2472,2349,40,1614,2282,991,1932,1532,200,1701,660,340,1582,1837,2391,1652,499,1336,2057,2624,1944,100,1320,647,421,1356,2352,1217,1989,722,1601,554,696,1871,2712,872,2139,1522,1153,607,1243,23,266,2129,1392,2067,503,1261,1560,1812,1139,2233,1084,2259,809,457,269,1043,345,2636,1259,1881,1068,1432,32,693,2244,428,838,685,2548,2610,457,966,1464,25,5,1643,827,2273,1871,2205,1920,2547,1688,1311,2506,908,2750,707,872,54,2096,2696,541,845,1033,1059,638,1020,577,16,2153,433,268,2232,2247,2130,852,1268,72,156,164,1427,640,2482,768,922,710,1093,479,2584,1468,2771,2062,401,1245,1310,159,2735,2228,2647,1990,1293,1646,1659,2213,803,2611,782,1059,236,273,2343,1252,2681,411,2174,2435,687,2540,2011,1966,222,423,150,2184,368,534,1634,320,1260,94,1618,559,1032,515,868,376,624,471,33,2431,1852,1703,2269,2447,1851,782,713,511,2170,980,106,851,2373,1779,342,342,408,1774,2330,1579,968,511,1371,1629,1825,608,606,274,2632,1188,662,986,2200,992,964,1321,407,1534,936,1144,1496,2289,298,237,2576,1795,28,2390,1016,584,2197,2334,313,178,2700,1266,262,1990,881,1134,1403,2584,2654,1771,630,312,1772,2311,755,2357,242,423,2503,313,2406,246,2731,520,741,732,749,490,2037,6,1122,1753,623,645,1654,2270,1313,816,2536,1004,1891,113,1255,808,1676,1326,1641,2294,1315,1043,596,770,2678,1128,2752,2425,1499,1915,1894,464,2277,65,2625,1387,2179,2346,1613,516,977,1451,224,470,1728,833,481,2299,2061,404,2132,738,1948,2403,717,2502,2723,2108,369,412,2062,2652,933,1749,1788,787,2759,527,363,193,212,333,2171,742,2675,2578,327,1584,1640,1453,2390,2488,1560,870,316,2767,685,1282,1468,124,469,735,185,780,592,666,2672,1546,345,730,2273,2448,2333,991,1220,418,953,2271,1092,189,1748,1411,425,1463,823,487,169,2754,2167,961,1240,2107,2131,454,77,575,1247,495,943,559,1010,955,870,2688,618,440,2750,733,74,2304,873,161,493,2738,227,1760,894,1649,2707,775,1610,1494,338,742,2001,405,1204,1332,266,1830,368,2756,934,961,2688,1057,1018,2743,67,582,2136,2551,1384,1858,1115,2096,342,2601,418,1472,875,1917,326,2474,1104,2054,1076,522,1661,1513,440,1724,411,1396,1908,629,1260,1628,2655,599,1966,951,99,1710,573,642,2155,1351,267,1039,2698,2058,2595,133,351,1169,1500,1605,607,873,451,569,1048,2312,2682,1421,1956,1129,2679,1214,2689,1639,2051,1041,1397,2072,1517,596,1715,1914,1903,2545,1325,1509,132,2354,475,268,1377,212,312,2548,2287,2316,786,264,1152,2286,2024,1430,360,1345,615,2674,2271,1838,2524,2311,2681,1400,1114,2449,1187,463,862,380,1319,1406,840,1694,2202,1620,1931,2467,2499,704,1854,1689,1477,847,1971,34,502,798,1017,1883,1218,1887,2153,604,1581,457,1528,1694,2037,1569,1695,2325,204,790,1738,544,477,1379,1008,697,610,1153,2173,1948,565,295,2594,2539,2343,1786,363,986,121,768,414,2118,2739,1739,1170,2711,2290,637,86,318,1473,2495,1745,1930,2330,1952,1059,1502,1371,2321,1725,1335,1228,583,1103,1401,940,2341,1937,957,1665,1800,884,653,2522,74,1684,1569,2597,495,2214,2256,791,1070,1677,1508,88,1512,638,656,1088,576,745,1735,983,159,2584,457,1175,1836,1536,1347,1865,617,1362,911,1263,96,2718,296,135,2715,1647,1793,361,1445,2516,726,1902,1052,2343,2156,586,964,1584,670,628,2366,1561,956,891,272,820,942,1632,392,1112,410,1854,2086,878,770,2537,2527,1000,1210,513,946,1479,1556,1238,1444,861,1356,1974,424,2525,177,342,1162,1505,2772,2317,2352,585,567,2352,2763,235,1820,1776,990,1257,1765,483,2362,641,411,2196,2453,2636,1190,612,2223,497,616,1988,2333,2505,2529,1939,68,2077,1811,2551,2170,1654,2358,1099,964,1870,2548,2395,1907,558,1559,1913,608,1719,1442,1985,834,788,242,2723,2092,2000,2060,953,2370,819,2005,2722,1908,2681,1826,962,2611,879,2656,767,2620,138,1062,1998,806,2486,1221,563,906,1813,945,1906,279,2545,1043,341,633,136,905,2637,2590,245,2062,1159,1841,124,830,681,285,798,394,359,1704,2651,215,1361,1321,521,1670,1415,1492,1519,709,1579,536,551,1775,2112,268,2295,376,1487,1962,1037,1216,607,1136,2584,381,2573,2716,1115,629,167,1515,1431,50,1324,496,1787,1834,1660,2747,605,2694,540,2372,1677,109,859,1638,2327,1046,338,9,19,1300,1097,1085,1348,1209,845,1806,1024,313,820,2310,2562,12,2740,1679,1217,572,1516,348,2557,516,982,1754,1329,490,2676,2581,1242,2756,791,1365,2086,771,2459,919,2726,266,942,1793,1866,1280,229,339,1933,1761,703,1837,2773,2270,2309,564,308,2659,900,877,27,873,1814,1530,1367,2673,165,2182,127,189,2751,1004,1539,2565,870,956,477,1951,155,1722,1957,16,2119,1783,447,2551,1506,2406,1918,1623,1381,554,291,440,917,2393,1668,1884,956,675,1109,2626,2131,1486,925,254,593,1594,128,1105,383,2423,2403,1195,2250,1514,1773,1304,23,128,168,1217,860,2661,816,1459,2686,1067,766,428,1329,1642,733,2687,2740,153,623,765,2037,680,2694,1495,154,762,1680,2684,1115,1296,1289,1269,439,1520,2579,297,1587,982,560,2026,1569,992,723,223,2580,911,964,733,2760,1583,2213,1452,1646,2117,1862,2026,399,2401,2170,2584,1033,687,1030,1250,1149,925,1311,1940,1981,2616,1405,1591,1956,2173,1382,1886,1204,868,1060,2592,241,1390,667,2156,1291,1061,2745,1722,1669,998,208,1157,1885,279,338,659,626,2574,1102,2352,1127,1663,1089,1426,1032,479,2079,2256,1215,2326,771,1191,1918,1855,2594,988,2013,2460,2444,2428,169,2686,56,2764,343,379,897,1080,1243,1780,1328,949,431,2730,336,800,933,1120,1822,1488,153,2333,913,2421,2581,2599,2343,1303,465,2735,714,2367,2565,775,1017,2724,1411,2011,2525,2738,539,1016,777,472,930,243,879,1168,1175,2715,2596,1139,1275,2516,910,112,2100,1870,233,1224,1317,1133,2021,1722,1987,1889,2649,87,1199,1267,1296,1294,194,1704,2654,1444,407,555,1199,2499,550,2301,2129,1922,2186,1631,594,2011,1858,1987,228,2280,1664,2209,1733,626,1585,1692,2725,1383,291,486,1792,1788,1249,2259,2456,1469,2772,246,484,866,1491,2102,202,770,980,1412,1923,413,1231,1707,1368,1713,52,1587,728,2310,2513,92,1168,1529,1115,1781,2603,878,164,621,1139,770,2473,2599,491,266,1063,275,793,2011,1744,1551,597,2684,2011,1914,289,980,2575,1559,1789,2475,1127,43,368,1438,2584,570,638,1295,1137,2040,829,2762,1526,494,2559,1387,2350,1991,141,2330,521,2316,1877,2697,2496,1007,1004,844,2160,2661,449,826,1588,2257,1730,521,1977,756,1211,215,770,2256,1687,638,1561,1819,2170,2411,1746,1457,956,2156,2728,2363,1817,360,1796,1092,2324,886,1617,930,1495,2683,2467,1673,183,1174,251,1570,1706,494,640,1556,2571,1062,2026,171,1019,1798,2439,211,1349,2244,723,1144,1797,1608,1241,2477,1969,830,2667,2280,287,106,2330,2442,1205,556,1822,2532,1124,1044,2258,78,1434,1483,176,613,2443,486,2522,1805,1159,678,849,885,1605,1058,732,917,918,887,631,101,941,1084,1296,1035,2264,86,1666,155,1112,626,2542,2200,2335,775,1732,2273,1271,584,2418,2237,2700,2398,109,5,777,431,2195,2147,2429,2567,1854,1284,2498,1628,1560,648,1251,787,2350,1621,885,1904,2490,2312,680,672,2461,220,2460,965,2689,2662,1178,1682,39,682,1627,1862,1474,198,966,1588,2055,39,2298,1231,1023,1764,474,1864,1503,2294,66,1285,880,1099,1270,221,2468,51,1293,994,1444,249,2023,1072,1074,468,711,1918,2452,2322,2555,104,2275,547,2147,628,2367,1721,1303,603,372,2668,464,2549,1003,2556,417,1149,1024,1716,1316,49,2150,643,1480,1804,2156,1066,2148,2450,670,2048,754,2663,1611,1433,581,31,182,2491,2748,1611,2369,1153,985,776,869,1288,1756,942,1354,926,256,1444,942,352,552,133,1493,2218,680,2418,2017,1331,2740,2042,2708,1904,620,1282,2647,1133,2646,1980,755,2494,415,2005,2042,54,1534,1824,1341,2192,2312,878,1443,2440,2776,657,640,486,1444,871,2386,980,701,282,1271,426,1282,1439,601,320,457,1853,102,2582,730,2470,293,1680,2114,2292,939,1663,846,939,639,2375,1636,322,1583,2026,2544,789,1344,2565,1814,809,2002,2288,248,903,1685,877,250,619,215,714,346,2670,1092,934,2584,2019,937,1658,1189,2307,1912,1956,873,2333,1384,1029}

    {2749,24,438,1150,532,453,2712,2009,2718,2189,1027,1914,591,2416,645,1011,90,1576,859,1930,452,1843,5,602,180,2021,2414,900,2653,1589,680,511,1988,1055,1853,988,1791,2733,1042,2067,1672,1926,2248,538,2191,53,2192,2665,1782,1887,2743,2058,2209,2253,1785,1536,295,1862,1794,2640,1851,1330,2722,1178,294,485,2213,961,2167,873,352,2206,536,2724,899,1232,1465,915,2277,772,207,535,2472,643,146,589,2312,2419,1700,1737,2629,169,985,668,759,1165,232,107,1584,1558,952,1049,1084,1182,2183,2398,1597,1273,2510,811,1117,1014,1793,1380,1929,346,2196,598,1989,1973,2581,1862,1262,1475,2630,2123,1413,2474,2377,1416,419,830,2635,523,1729,1605,2156,456,2616,1770,1429,444,1907,647,525,140,1801,455,2146,306,1862,2289,2547,1873,954,1537,2114,2154,638,904,2165,1500,742,1237,1284,1043,861,2297,2066,2162,8,2214,2289,279,1620,1420,1084,531,766,2245,720,2656,1056,2109,1917,2525,1555,1527,1863,2155,2556,2008,2729,550,2181,2562,814,2760,1184,342,987,174,968,2420,536,747,2161,730,2357,983,980,2188,1636,1592,1668,857,1485,664,1558,778,696,2258,2142,861,1444,552,1800,1622,2709,2004,98,491,658,954,1232,1033,1116,152,67,2217,222,1004,444,2766,128,2695,1110,2300,911,31,427,124,2198,335,873,2,605,970,1869,804,2350,2462,1453,59,25,2487,2166,703,2130,857,694,689,827,685,2112,1917,1231,1253,2392,1381,475,2476,198,1328,1183,1754,2457,246,2564,1834,2455,626,1268,1677,1593,521,633,773,2287,891,528,2118,1814,189,1746,1372,1497,2598,894,2315,1797,466,544,1342,1103,183,1331,1377,2159,55,1331,430,2484,1320,1911,1691,189,1574,2088,2439,2299,684,2699,1553,605,2230,2343,1370,2182,2644,1568,1887,1869,2049,1972,2073,1161,1677,966,1470,2634,2602,1124,940,503,969,221,444,723,509,2349,944,121,898,571,1795,1866,1179,99,1995,418,2338,1113,1061,22,361,596,2382,1143,1074,2553,914,1897,1925,760,1571,622,969,1092,44,80,2599,2259,1605,747,963,1655,2299,1135,2324,1612,2141,364,2718,960,1178,1939,1979,2419,798,1905,1808,2640,1887,527,489,876,1230,672,1122,2182,2412,497,382,859,1285,68,778,2739,870,1953,2175,2124,2188,1103,235,841,753,2256,754,2005,2302,1973,2651,354,611,2461,907,583,1242,1502,1743,88,2397,863,1837,1802,968,1167,1988,2703,1208,1041,150,882,855,257,384,1894,2585,429,967,144,404,1858,1217,432,2340,2647,1207,2721,328,461,498,638,2499,2506,41,1692,691,2203,3,108,2043,1847,1664,1443,87,1535,103,1104,244,1175,1768,2319,710,417,116,295,2211,773,1160,1900,1067,2083,279,2742,2153,1506,2538,375,2580,2153,1122,548,560,384,81,2241,1369,406,625,2291,1040,2240,1329,220,440,1525,464,550,261,2557,1007,1260,1417,879,987,1603,1782,657,273,926,311,524,820,1035,2769,2652,1295,56,1735,567,735,221,358,1764,412,2036,963,950,550,504,67,76,1017,1373,2501,2491,338,561,947,1462,1011,1310,2373,612,938,940,1346,995,1965,2308,2681,1719,571,2775,2772,1381,2446,1386,458,2278,815,1876,1158,86,1188,2470,139,201,2415,1328,813,1251,2685,1264,1087,1949,901,1306,2090,1795,1766,222,1690,194,2039,2620,1638,1159,307,1364,769,279,2318,2089,2213,1787,513,215,2364,1187,1032,2528,2718,2759,2252,2369,866,147,2336,746,813,279,782,1955,1549,1236,548,664,2164,2276,1430,496,655,2659,2100,1983,1571,99,1226,1769,448,1036,1365,1258,1457,643,421,613,825,907,1303,2357,273,2263,1127,1483,2049,2104,1271,272,974,1984,2646,2632,800,813,1815,524,2225,1765,148,378,1598,1132,2098,92,1586,5,995,765,1166,1915,1914,2714,2370,2376,636,290,865,2064,1340,738,1391,2516,999,896,1043,1454,2010,604,1753,1739,2728,810,1629,2129,1094,2078,278,2318,2314,500,794,544,1849,2027,115,313,2619,2033,835,1597,719,2529,2544,1914,596,2568,2761,1620,923,805,126,2006,1159,1402,167,1464,2608,40,2337,2676,89,2292,367,981,375,379,1789,1552,2485,1749,2696,334,1741,512,64,1002,411,2700,1949,259,1741,1903,1765,1058,2086,1083,2157,1970,2587,1997,2031,396,1421,2180,2599,2000,1898,1318,1653,1443,2488,974,2439,1192,630,195,48,29,818,1051,2178,2341,2519,857,117,2442,2753,1862,2294,2393,741,514,1868,1460,1322,276,1680,1544,1575,1729,1445,512,420,1474,1257,2021,2204,1726,1297,1331,2082,814,128,600,239,801,705,1364,1620,232,1716,1093,2210,506,640,815,1076,277,645,192,2451,6,1057,912,315,1456,377,45,734,404,2718,1343,1273,1636,1701,2577,2481,926,139,2677,1745,1267,789,1925,1447,1134,1920,1355,489,906,546,2349,2045,1369,199,2215,374,1141,111,341,285,1130,2168,1116,2042,2236,1783,1239,2599,1400,1173,2581,2259,2619,2613,2072,2403,1482,128,2099,538,785,1016,966,2260,2642,632,410,2005,2673,1304,1004,959,686,1932,1701,2588,1394,1804,1544,1925,1388,1163,507,1489,1637,2074,2561,2433,2450,961,1506,79,1265,2644,624,2692,762,1282,446,1404,1899,2106,775,2083,2172,326,271,1577,152,2554,163,633,2488,177,2019,1579,2405,729,2325,1103,2171,2640,1415,270,2469,859,1801,192,1635,1963,2443,161,11,795,2318,2256,1098,1994,2133,964,2439,279,1478,63,1919,2164,396,2492,2694,70,2571,647,2583,452,1002,658,2295,2046,327,1065,2019,1354,638,1789,590,1282,2351,2146,658,2616,186,2727,2373,59,1873,1061,1193,1476,2607,2368,2533,1082,423,1675,2730,1253,149,36,2071,657,1538,852,173,1795,2531,1680,478,816,2502,2603,2409,1220,1665,496,1818,1150,1461,1163,2143,2294,490,1667,2647,789,2014,1587,725,1161,372,2060,550,776,920,256,450,690,214,2628,16,989,2328,2016,375,2549,1328,97,2053,814,2466,2704,1677,2213,1556,622,1972,809,1903,166,1707,2630,909,35,1487,428,827,195,814,486,104,2773,249,1292,2553,2732,2759,1772,1087,1941,1107,1718,393,2765,2268,2536,490,2371,1274,1402,389,1698,685,560,2462,1445,448,1061,14,286,2721,1398,1055,205,590,46,729,816,647,1501,2214,651,2105,1805,799,2241,1991,441,492,382,1077,663,1414,5,1518,1329,2517,2609,720,1625,2599,258,1616,512,2039,740,1203,2544,559,2392,2723,162,35,661,2360,1707,2349,667,728,1814,1401,687,345,1633,1333,1595,1011,2299,2069,2190,236,1591,389,1880,2589,2552,896,1315,1996,1316,1622,1698,723,1507,715,2472,1081,825,508,557,329,1638,1492,2586,242,1607,1623,130,1924,2277,1148,1011,2350,252,1393,2094,1947,1768,2350,2356,1350,2698,2452,1296,26,18,900,1537,123,376,1596,1928,1935,1192,2035,2035,2534,524,2660,1986,1186,82,81,1118,988,1300,2213,2528,2213,1805,1235,2730,1823,1830,67,1435,1839,2436,1584,1340,1731,1717,320,1892,822,1249,1425,972,64,485,253,2041,168,1820,2351,428,1141,1917,1638,74,636,536,1615,314,1796,750,459,2030,519,1148,517,1123,1356,2466,2740,385,2625,2140,703,2724,1285,1359,1314,2443,2306,320,2741,1912,10,402,2122,1038,2589,575,2625,1689,1305,1649,1668,2441,1983,1259,2269,2481,1156,2129,2403,1353,2240,483,657,381,2118,1954,1282,2376,1070,764,1105,549,1356,1668,1793,1512,1324,568,2457,2587,737,1392,2507,859,2307,1446,2097,2187,480,2441,2481,2065,1950,921,2243,1784,1243,752,2561,2472,2372,1824,1569,1812,183,2141,948,2315,2097,1320,967,1402,1531,687,879,40,1312,1145,1872,157,574,2426,2274,1831,2350,2219,1518,183,32,779,1746,2149,749,549,2021,1985,208,1829,2322,136,2399,1809,756,2000,978,678,2163,2194,1498,1676,1888,215,1223,1333,2284,674,2685,1734,730,2351,2314,148,210,465,1393,2671,615,445,1308,1508,2721,1325,2341,2029,165,2205,2140,36,1542,1232,2370,2641,2305,1254,489,1707,270,2605,1785,2199,391,474,2067,72,2736,1893,607,1022,2417,1465,1694,2022,1505,2326,1666,1024,916,61,2332,644,672,955,294,2508,2372,310,2658,2251,2200,2216,1314,2091,2296,1692,1789,1459,842,2112,303,2100,927,14,2704,522,1948,376,1581,1791,906,2350,1231,1441,617,1843,124,95,1039,2690,2330,436,984,883,1785,1369,1173,868,1161,879,2253,1679,1262,827,1031,553,627,97,1895,917,664,143,2038,691,372,939,321,2681,289,762,2005,77,1426,2544,2294,2054,168,652,871,1201,1220,901,366,1287,473,2704,716,2618,521,2646,1101,60,722,1457,1786,1882,1967,1272,312,121,1999,1214,350,2174,1502,1171,889,1331,981,2065,2647,537,2750,346,2136,523,2182,1930,657,1234,993,2601,726,422,1448,1500,1751,1446,698,467,2705,6,1929,2617,1951,681,676,2603,1656,434,294,206,1237,1980,1013,1486,335,2729,281,670,2004,172,2282,2582,216,2169,410,1836,2137,285,1219,1982,1878,2032,1005,338,2593,2587,695,1404,1142,1052,1593,2647,1248,1450,2089,2694,455,0,2326,2585,67,111,71,850,2722,2411,1686,758,1844,250,929,1782,1217,1138,804,1083,730,530,2415,1436,1782,2560,1486,1602,522,2648,1217,272,371,867,1769,1616,732,941,2599,1556,2340,873,2365,808,1479,2266,369,2019,2604,2007,1931,927,203,1951,2758,867,1435,160,1356,1025,1700,744,2523,2376,845,1692,255,2356,2657,692,319,1702,1994,444,217,591,142,717,2052,2741,1287,1334,1626,2171,1511,2068,950,1281,2575,2275,2148,1181,327,670,2125,164,1356,520,1315,1867,412,394,1875,1260,11,358,19,1942,665,2128,93,236,2457,1147,2097,2038,1407,1361,1872,2140,275,1720,345,2499,2523,2363,2149,1587,1034,331,1254,1198,958,851,2402,1378,2649,1496,506,505,1816,1445,1127,743,1913,1230,2545,1331,672,1021,679,196,526,1868,2299,299,2159,145,168,77,353,2206,529,2575,1957,419,1222,578,111,737,1133,1300,2057,2048,1910,628,351,1505,1934,198,375,1741,748,1094,2495,2349,2601,155,7,873,1648,87,128,2444,9,1930,2044,1296,2430,749,873,595,1141,58,2702,1294,996,213,1212,2414,2138,1257,1088,2546,2515,2148,671,1609,1988,861,2434,428,2208,342,22,739,1993,2003,2572,900,924,97,1206,1728,1892,782,25,1765,1840,327,2081,1619,658,2596,1955,1489,1366,221,886,980,2161,578,2025,1559,2113,644,1727,2015,580,1681,705,416,1360,2338,1068,2649,1171,122,2640,827,342,1451,1148,1034,124,2412,42,2728,1219,1932,2200,881,2754,1981,1566,1884,141,1292,1698,1307,1830,573,2385,940,1650,186,1948,2526,2439,1699,866,658,324,1702,1197,545,465,1047,2153,309,550,1428,2696,1948,1674,262,819,458,193,165,1312,121,2713,900,1808,727,1532,966,1193,1579,1430,1136,364,685,1862,935,587,2360,903,1749,1993,184,1592,2290,1532,332,2631,457,1858,604,1055,349,1601,813,2322,1077,896,1523,2348,2212,2005,941,2116,1805,2321,988,1764,2626,2012,455,2413,2330,757,2024,334,2540,1987,1757,1293,2212,2750,1009,2512,1612,1726,2156,1785,1385,2447,807,208,228,1771,1026,2377,784,2158,2323,2406,2114,462,444,2435,1469,317,2212,1904,836,1590,372,1418,643,1725,551,501,446,1521,1539,1015,2600,430,523,1561,697,1575,1329,2620,2650,1165,2690,225,620,1816,256,699,939,1525,2275,305,1094,2145,2776,4,2213,2772,1711,2547,2621,330,2208,1256,1766,1994,2508,2532,1615,2148,158,814,1837,1323,1992,2376,1219,2383,453,1972,226,301,633,1412,47,74,463,205,2205,1504,1576,2490,979,1657,1866,1540,1139,577,1736,467,359,523,1282,1816,470,2625,1921,942,817,1859,1045,1125,2278,2020,2622,216,719,2596,366,1250,800,1242,2421,1163,524,1807,1967,1956,256,1642,613,713,749,2408,2397,2756,1155,2161,71,1262,2185,1061,1738,1854,1361,405,2774,1366,294,569,1092,1125,335,1157,1395,18,603,1467,2177,2270,2294,368,1291,1572,512,2638,1156,1868,2308,2247,2453,965,1842,891,541,175,1375,2047,1374,163,344,2144,650,2376,1134,2691,2323,2134,1844,1572,2770,640,2623,2006,2203,2080,1154,1423,275,1200,632,2138,2071,558,531,2352,2746,2728,191,2587,2151,540,1850,2403,1952,50,1920,2611,2344,911,1536,1236,1752,2129,2126,364,1714,386,1122,238,2439,2085,2551,2331,1274,197,1599,279,1765,2292,2582,155,966,2356,2508,234,2255,1455,2664,2563,2389,2650,2182,533,2246,2054,1732,2445,1828,2347,2572,376,2021,2535,2554,227,252,2710,1870,1085,1238,101,854,451,20,1708,863,1920,1592,120,1606,873,1740,1357,1315,1556,9,955,2259,800,2119,2057,127,1810,798,1701,1105,145,2018,288,1328,1407,1982,975,2755,657,1486,2336,2567,1368,859,562,40,2541,1164,2114,709,1078,1691,2372,1593,1086,18,228,1277,398,2601,2068,2772,245,355,57,1616,827,1563,357,1587,2097,1441,373,101,825,1320,1006,859,1267,151,1634,479,2739,2207,364,1574,1319,388,2128,2237,320,1339,1157,1715,1165,2439,2282,987,523,714,976,2262,1722,1,358,1843,1901,2633,888,363,2285,2407,2235,1651,543,2254,111,1955,724,780,2310,2704,2042,1359,1578,956,1051,2273,124,1574,1821,2194,1955,1194,706,1449,1276,777,1351,664,2088,731,972,521,2261,733,1597,1878,375,1725,2376,2235,1259,2666,546,2396,1364,2750,1768,2720,1532,1442,514,2075,2316,381,1127,1379,1857,2084,2395,2087,1898,2389,1653,579,121,2019,338,1276,2255,1301,1307,685,1139,2265,1404,314,837,1777,889,724,42,1831,15,1879,105,319,308,1061,1034,134,2316,1283,1920,1808,1080,1229,1818,2053,876,177,2400,1320,2149,1484,895,1420,1503,1562,2706,2390,1720,831,1123,716,1588,2501,2639,2665,1524,2769,724,68,1036,2176,1653,1236,2546,1331,1285,1697,2614,521,1718,1733,1176,523,1172,1988,931,154,77,2,1445,1815,1196,132,1475,1848,1114,2156,1644,1894,1131,2636,1145,75,1144,2612,1456,2283,1071,34,2127,681,2757,1982,2192,2649,1123,276,1860,163,2605,919,1364,1662,2434,86,679,2316,40,960,211,700,2532,809,635,2432,1676,1213,576,289,1177,1827,2201,2674,2129,2372,1818,1705,410,1064,2582,703,2282,306,653,208,1496,1963,1445,1407,1396,2435,2135,2120,1968,1638,1620,2350,1651,1701,1201,63,828,2697,1732,2091,2193,1804,997,439,7,302,2343,98,1638,2274,421,1640,1490,793,1178,1219,596,2729,1011,1525,964,1535,2157,781,2024,2643,1964,848,2111,223,1272,2257,872,1143,821,2561,1896,1786,2345,1871,1123,730,1600,2495,1508,736,2412,692,1549,1291,2388,961,2132,2070,2704,342,1376,2740,2656,2148,700,1100,61,1054,1988,2115,559,2229,1534,2004,67,688,1158,1803,136,131,1931,2153,395,1320,892,2686,8,2588}

    2487

    1090

    Returns: 482267883

  21. {581,388,327,867,633,225,794,668,10,878,529,565,278,118,537,569,589,131,593,884,536,254,986,123,519,149,864,669,934,307,437,448,433,1101,178,12,197,70,302,0,152,198,961,905,974,398,751,928,711,962,1050,346,163,70,42,559,346,1175,593,697,1154,679,672,382,844,907,531,1028,638,393,378,958,248,224,2,857,840,513,45,685,1046,728,176,432,1171,629,1168,962,682,632,913,1060,231,309,214,607,286,375,527,398,131,648,1133,198,516,998,1068,899,1120,293,973,282,428,870,176,1088,224,121,774,988,1066,355,1159,973,843,170,680,138,217,682,1025,59,69,1139,1010,854,934,117,606,484,564,237,36,571,542,529,299,328,438,116,1167,469,624,331,1031,942,599,1120,780,621,133,368,697,834,535,66,446,589,1187,766,598,1139,769,419,545,986,94,664,862,972,682,736,586,1022,422,1171,757,54,775,54,456,530,348,133,1073,494,541,613,5,878,83,846,16,633,106,93,40,242,320,540,897,328,1121,106,201,584,1041,561,1097,224,775,685,617,987,891,727,780,69,689,1185,743,707,193,271,425,1043,311,484,250,385,56,529,226,447,984,591,345,1125,131,203,1040,359,576,97,553,368,209,97,886,315,449,562,1176,152,366,461,509,762,666,429,621,567,414,661,630,206,284,921,409,439,371,855,705,623,964,727,977,805,363,64,595,890,594,406,63,640,746,239,1167,300,208,412,586,523,39,98,594,749,862,855,868,543,495,783,1021,143,999,695,986,304,259,870,747,109,1084,1064,677,392,229,494,227,595,713,299,48,1111,638,490,969,1174,31,423,26,277,1141,506,1085,38,424,714,224,1087,798,1041,801,95,725,290,941,807,524,672,115,361,966,1152,542,57,528,1,918,606,879,269,1052,228,112,346,737,792,920,161,75,1178,456,220,777,73,962,901,926,727,265,1135,37,189,1014,645,1100,87,340,147,329,1111,211,817,906,26,884,670,1184,1120,60,301,136,952,570,720,141,697,906,1108,771,1068,22,101,105,301,85,770,272,231,914,465,879,914,308,21,626,321,901,295,205,1009,339,607,435,753,357,35,171,391,1167,1154,861,1129,800,697,398,448,873,37,927,519,9,365,1029,951,705,730,330,536,1151,30,385,135,889,1003,938,1095,1134,50,503,157,665,415,936,579,224,291,623,290,1176,299,40,283,791,615,337,1175,152,450,1044,1053,417,46,143,224,751,453,762,1079,871,1026,1186,1016,913,32,1005,547,929,370,112,475,168,484,210,714,1082,1023,559,524,772,527,1069,104,515,356,1069,1158,243,499,140,877,820,253,170,594,266,1124,69,367,41,1158,1041,173,287,962,320,549,314,1049,982,237,1180,529,1131,1135,842,175,294,672,715,694,352,914,782,634,1002,608,620,611,733,122,909,1017,321,345,978,159,119,963,751,515,514,372,284,788,290,602,1021,725,877,227,512,332,616,195,610,631,256,80,1100,834,473,1110,675,683,210,387,157,535,449,209,120,546,973,7,357,1168,927,749,1071,283,1118,1172,638,638,569,166,500,660,176,695,519,105,890,1122,421,389,906,234,29,980,15,927,23,1113,997,698,461,699,438,919,1182,63,493,1040,558,936,637,591,480,1094,252,477,503,671,633,460,609,210,870,561,701,493,407,661,869,525,103,649,493,287,609,910,1174,960,80,364,854,1011,524,1144,1045,442,527,191,728,877,80,923,700,1033,804,1110,521,483,287,1123,520,989,533,413,190,157,337,927,190,1137,439,510,823,1026,227,47,900,519,992,916,170,968,116,1146,187,824,1188,662,943,1145,523,638,548,91,745,247,677,469,188,1163,678,264,1158,821,189,915,1183,539,346,143,378,417,327,72,919,106,273,324,856,681,79,1015,668,314,639,45,1170,962,1019,619,346,9,227,663,76,902,1047,497,175,1057,1022,582,102,665,561,276,861,395,887,1036,1176,1062,213,951,386,21,60,519,682,624,704,525,685,1000,212,130,40,1080,375,1088,106,1170,600,272,696,440,842,704,74,542,682,236,1037,644,1135,390,263,306,351,631,113,1135,1181,554,432,623,266,353,759,589,535,836,1009,221,814,1014,775,86,893,1173,458,837,291,219,295,328,1161,982,93,224,68,100,183,1069,868,314,59,130,51,612,685,550,186,657,990,623,966,758,941,558,1085,1031,818,93,77,25,1139,921,689,576,834,412,989,903,704,523,658,948,52,572,326,588,1177,1121,241,289,707,21,595,1183,763,209,750,1065,398,892,639,146,1121,456,1188,977,709,62,1188,896,318,438,450,944,228,398,227,989,1051,89,485,326,265,723,322,436,265,830,507,512,370,171,815,26,33,156,210,755,18,479,687,19,940,451,14,1113,2,179,995,780,260,320,971,330,1030,222,137,337,184,569,593,1151,551,19,658,498,593,796,227,384,566,1063,380,71,802,343,591,40,1071,492,829,1160,106,291,434,132,834,125,17,840,286,5,840,626,969,165,266,589,502,144,88,200,84,606,563,717,1067,781,692,305,851,381,655,436,885,510,354,68,712,442,1115,743,754,1114,1170,744,629,788,865,470,140,667,539,294,1175,1016,37,1066,216,769,761,1155,159,605,1099,302,643,667,709,209,829,283,216,772,777,119,561,1098,155,336,902,418,863,57,1150,384,1040,1109,204,658,355,1158,80,183,984,8,59,121,153,1024,793,692,876,1147,238,803,279,634,668,749,525,639,494,775,376,996,837,1075,1189,753,9,792,589,133,721,457,457,923,561,980,436,529,122,415,181,661,991,678,174,976,235,33,675,157,159,1085,224,647,313,703,814,476,870,129,1074,581,469,467,119,441,650,1104,428,923,1174,342,811,645,334,127,202,654,1004}

    {828,964,939,989,438,508,309,871,1124,915,890,84,312,1039,5,839,1132,838,690,143,1051,374,335,878,280,423,258,361,883,142,560,254,548,437,28,580,117,469,209,1075,906,701,159,544,596,337,677,3,788,1105,595,241,997,1048,810,215,303,13,947,505,168,333,537,354,503,297,156,746,877,447,408,603,409,1024,1110,1186,615,829,66,688,1179,300,811,780,964,368,1103,845,1085,178,396,1083,216,697,1138,635,78,11,798,168,911,585,1024,818,870,626,7,693,65,824,872,1164,518,822,917,956,108,168,833,1169,639,1078,749,538,49,68,95,298,652,579,973,970,469,257,428,170,467,1037,517,63,319,463,181,746,756,1152,3,438,1000,369,1174,938,160,743,433,591,150,232,325,444,966,154,122,406,628,1147,942,1038,535,367,220,32,429,268,726,651,587,401,143,1183,1004,868,1059,595,72,1176,321,1142,603,379,791,516,773,132,53,967,825,1124,622,1070,68,189,1050,1162,209,1008,832,198,1140,1056,86,912,1128,503,26,1085,924,957,519,1120,792,647,574,1096,398,532,1169,569,732,68,740,786,145,1151,356,855,383,858,1115,721,354,519,229,106,831,94,1100,1103,899,17,734,775,474,34,267,348,438,606,34,1092,469,812,772,1129,139,1042,890,428,124,860,239,1089,34,1032,1154,611,841,121,294,192,1130,403,431,676,182,358,32,1109,21,358,217,983,785,1034,519,590,209,316,848,621,37,106,288,526,71,522,323,1120,1091,775,667,31,555,1004,92,110,1152,35,847,901,253,774,297,346,990,615,895,703,192,81,292,603,991,719,1033,765,493,859,904,1170,852,144,61,1101,1144,19,477,149,60,295,537,1055,784,19,871,519,717,306,716,1154,523,1020,630,1174,1130,432,261,398,564,945,915,287,353,855,798,710,1083,642,137,310,825,132,806,1055,577,712,1093,549,445,1179,614,731,1126,148,835,321,196,986,114,184,431,793,914,1152,943,764,1006,358,993,755,625,1090,59,674,209,561,312,360,721,60,114,58,372,808,1099,650,349,600,300,840,478,514,382,1119,109,430,876,1054,133,1153,6,974,995,36,806,965,606,1144,296,169,726,484,1186,566,1021,233,439,328,468,837,398,874,677,1179,553,294,1014,1007,493,899,763,522,223,129,99,341,169,222,347,1180,624,431,9,574,949,246,790,706,119,520,871,774,953,419,1136,27,177,185,795,477,799,618,435,450,901,89,443,366,1023,390,462,1125,1004,760,549,522,377,875,691,299,333,990,1168,837,775,722,804,615,727,1077,658,426,935,721,529,776,35,1145,933,990,1,105,568,245,94,84,270,336,346,710,1157,769,686,74,82,667,401,402,822,142,1061,416,1100,662,523,881,1157,564,456,653,327,377,954,170,1110,1156,161,244,1103,862,525,26,317,1073,274,274,1170,793,525,1035,367,118,9,926,819,972,154,535,202,332,214,1154,171,542,15,395,231,5,64,338,1032,937,612,792,207,266,129,602,635,320,311,126,866,552,116,408,593,54,404,809,962,646,469,597,328,847,543,15,575,1175,310,495,377,741,135,564,106,1144,614,1111,225,861,537,412,863,172,224,1107,7,1018,1158,192,1168,55,1159,729,209,415,229,210,1086,880,825,527,905,251,990,679,395,209,861,168,327,1165,282,227,927,323,638,853,34,666,718,279,735,280,255,796,198,1043,471,254,905,955,1162,698,1013,412,724,902,7,386,1100,456,473,281,708,1089,760,253,111,704,694,1099,728,167,416,591,350,379,1163,194,277,107,26,395,241,346,300,844,656,312,424,1148,505,561,476,932,922,733,673,464,534,47,483,476,315,590,399,477,566,589,720,533,138,702,576,1171,36,604,105,557,645,918,24,915,309,76,701,69,553,86,455,496,1032,1100,739,285,122,256,495,249,90,734,882,850,684,217,63,408,1096,942,685,775,199,1027,1106,155,1037,654,70,26,1089,377,186,466,708,911,862,675,1116,631,158,286,800,840,888,573,860,818,477,721,772,503,14,1103,193,870,427,164,237,1188,833,915,975,4,796,1018,1161,390,1163,1027,1012,17,995,472,128,12,108,1,806,713,42,368,996,725,826,689,636,800,162,797,88,113,925,496,527,1075,169,606,909,905,381,748,41,1112,55,420,50,481,687,294,504,1141,827,501,920,331,1109,1149,482,365,410,1117,506,607,787,67,1085,459,715,1143,634,647,262,151,299,223,1023,80,180,990,558,96,778,111,488,962,35,282,1086,775,677,905,104,1135,1166,558,840,1055,135,1133,1077,1076,1184,105,385,537,599,162,1076,950,105,849,530,593,368,634,434,800,631,400,908,140,920,941,40,666,331,134,874,239,817,645,1077,801,627,749,844,1043,1047,121,1039,872,898,742,588,592,451,768,17,644,202,240,217,373,1081,536,80,894,701,29,488,803,767,28,218,100,282,989,330,108,357,230,489,1058,659,695,840,962,714,490,1089,441,282,1058,76,437,159,278,337,936,469,578,53,1158,452,1170,638,1012,612,211,103,1056,1024,702,25,959,1035,367,561,718,763,354,327,641,537,171,418,104,477,553,563,327,211,315,1168,486,20,621,158,789,715,813,639,893,203,731,43,404,367,392,335,553,946,297,927,519,1085,344,738,994,603,503,44,1056,411,901,397,812,1038,918,752,1102,918,601,942,777,1085,239,511,66,399,356,191,524,491,984,241,930,583,481,162,275,1072,58,282,613,35,973,777,53,149,258,266,346,842,583,1106,68,362,1119,106,345,779,556,150,648,573,792,1148,1059,131,679,869,813,408,981,131,923,581,49,382,979,493,816,405,394,503,985,456,1001,1127,45,691,779,692,995,980,537,487,1115,454,609,873,535,14,615,931}

    914

    1023

    Returns: 473313106

  22. {379,475,86,359,559,309,490,175,587,10,65,116,566,358,92,153,11,159,492,40,572,129,195,10,33,476,398,518,355,151,127,278,492,124,271,274,295,4,417,277,267,421,256,511,0,194,180,430,243,562,43,558,595,340,443,525,311,136,413,48,386,297,285,66,505,6,256,69,305,470,15,164,347,540,196,566,498,196,127,558,278,323,179,254,553,323,275,538,251,270,105,79,526,176,295,380,8,424,589,102,118,32,295,338,36,115,123,156,73,580,64,531,428,172,537,462,95,514,342,110,54,186,193,87,540,332,552,516,183,34,139,417,304,513,528,527,183,60,466,364,114,290,328,159,166,25,158,254,399,516,143,11,232,90,301,29,319,599,15,488,221,166,1,230,304,325,15,320,355,394,202,51,264,185,530,70,118,473,592,69,35,522,408,410,13,238,539,482,249,126,152,578,159,485,488,223,202,80,517,548,356,521,266,453,523,585,418,593,10,402,126,124,326,488,460,369,159,84,237,449,95,25,503,597,375,412,509,305,433,412,295,245,467,389,455,163,342,494,21,576,334,488,474,287,356,517,157,580,586,497,449,166,383,460,488,11,420,326,515,110,95,88,429,345,69,196,267,16,545,470,531,456,291,26,300,267,155,299,151,230,239,155,558,174,24,553,177,425,347,551,225,573,421,476,175,171,528,348,592,96,112,57,537,366,279,304,18,120,24,259,26,411,131,562,83,90,376,422,123,404,414,417,84,104,349,584,153,61,415,363,439,231,212,377,593,445,83,99,101,48,52,230,58,501,124,433,406,339,91,205,476,217,289,284,250,15,70,517,433,579,467,352,581,539,582,472,578,290,98,561,240,289,95,512,5,564,560,318,450,425,505,416,323,571,153,537,50,228,451,75,499,171,528,130,404,97,424,420,261,458,527,370,300,92,118,442,63,47,464,424,213,274,422,70,12,321,239,196,307,35,519,403,480,217,83,473,438,468,155,199,207,52,34,479,266,425,264,447,310,446,323,517,222,596,251,96,351,515,169,514,576,306,102,294,173,487,344,149,170,452,437,82,109,495,411,563,262,227,449,64,284,171,335,1,242,293,379,439,7,200,567,220,590,596,565,501,422,159,295,94,375,379,306,87,187,392,277,196,426,307,333,265,288,361,294,252,410,402,25,99,146,593,89,196,26,240,25,67,280,69,362,518,148,593,31,457,197,255,231,373,202,175,550,298,543,444,420,282,84,270,442,123,359,219,500,331,102,308,231,146,333,119,232,397,364,205,465,30,339,69,341,476,147,193,125,317,586,487,509,537,279,40,372,305,559,470,155,89,47,514,516,220,408,528,190,198,145,209,121,188,153,418,28,405,7,523,116,35,244}

    {166,568,150,78,390,574,151,184,93,494,418,145,272,146,422,339,319,501,276,525,276,376,91,517,459,559,325,571,302,25,233,162,502,553,267,342,226,97,430,41,171,324,237,410,474,592,267,179,451,491,594,509,420,407,475,307,14,151,315,197,597,444,90,565,63,593,100,593,210,64,515,138,95,195,24,299,118,256,182,496,209,201,288,196,125,44,377,40,396,295,36,123,154,415,404,535,197,422,315,107,258,221,414,256,142,239,311,431,587,467,149,578,525,329,196,471,127,462,568,307,64,234,134,541,246,506,29,141,20,60,56,577,573,272,27,398,598,542,310,493,15,318,581,196,269,91,49,68,196,444,295,377,395,415,421,367,520,315,486,459,310,552,506,159,393,247,504,494,411,15,507,483,25,44,151,106,347,340,384,374,60,201,467,36,155,193,127,216,350,533,510,170,521,184,248,12,91,492,278,217,547,388,360,170,385,93,356,457,213,161,44,558,214,250,505,159,323,462,122,578,508,218,307,171,263,59,241,174,545,52,52,549,19,130,525,428,410,192,112,189,269,366,370,339,461,359,197,124,405,207,583,419,280,357,168,463,517,180,353,133,159,105,365,428,523,278,514,305,111,154,273,578,16,101,296,293,193,42,556,355,557,506,278,378,116,236,164,102,535,344,367,440,183,306,575,265,62,467,346,22,181,573,469,113,128,96,267,85,569,120,203,391,105,64,422,410,254,178,484,197,330,119,204,502,283,482,208,149,239,290,229,37,491,270,118,505,382,448,169,74,502,112,453,7,175,429,479,410,278,79,171,492,511,152,137,295,371,165,245,62,314,404,161,224,15,487,481,135,475,93,217,434,161,67,100,242,137,6,304,578,159,251,61,81,489,38,403,100,494,400,466,592,206,15,171,95,329,555,143,252,53,104,492,2,327,60,72,211,234,260,272,529,546,387,167,130,400,247,438,528,554,61,113,56,278,118,117,515,292,346,385,278,477,446,61,108,571,424,217,593,46,23,152,262,25,362,29,160,354,191,236,337,67,183,469,574,466,215,322,435,491,89,335,517,223,29,476,80,343,413,137,588,537,454,515,427,536,124,43,302,40,509,276,9,514,93,570,362,76,462,81,591,17,149,410,161,188,166,408,61,124,312,365,117,592,476,52,268,282,103,234,441,26,349,144,281,86,3,414,478,303,45,593,418,385,554,177,592,10,449,234,79,417,525,38,435,482,253,387,257,552,444,534,388,427,503,197,72,381,316,313,336,500,149,97,156,281,424,77,409,516,132,262,401,71,462,544,230,488,249,569,432,503,347,235,55,580,51,310,448,286,423,26,524,230,221,49,368,314,501,532,140,503,416,259,436,245,39,247}

    221

    265

    Returns: 893732437

  23. {1305,2059,898,699,1592,2180,652,2453,1884,1892,405,1191,2008,2483,71,1910,166,1357,1899,102,2367,1455,1321,396,2484,1246,602,2174,2106,200,746,799,1331,496,70,646,1061,1424,2193,1567,1487,2233,625,1556,619,1122,2274,717,1385,437,189,1275,962,1074,1940,2080,1889,2252,1753,1589,2069,2085,2231,1555,2027,2410,104,565,2361,273,2100,1319,1405,2452,561,821,529,709,1521,1940,693,1447,1570,979,1537,22,1088,237,1449,1619,1963,1975,2093,949,245,1589,1350,1596,261,889,877,113,1119,2258,283,1219,130,263,505,1283,2076,859,243,1894,775,1783,2168,594,475,1066,1376,1099,221,381,249,746,1180,1228,2212,484,522,391,1483,1234,759,1073,2460,236,78,1775,1704,217,252,1369,2484,1630,851,686,1516,1952,700,480,8,557,12,2439,1580,2392,151,1938,382,1,516,2191,1743,795,937,881,1473,1014,222,575,1372,161,1221,460,2276,1297,2024,1941,1578,1335,1092,507,177,320,1930,1175,923,2390,133,1958,611,1838,377,225,1528,721,728,1104,1379,973,2162,1582,23,2129,708,472,2190,2416,1936,152,1981,282,1642,899,1485,2262,929,266,1241,2298,324,449,353,1868,2308,2386,2129,2131,136,872,1480,1427,964,679,1849,1001,2272,2218,460,60,899,2435,1932,137,2331,732,1302,1955,1367,2096,124,2023,1959,2348,205,1182,70,849,498,1243,1010,2187,2141,2016,1573,957,2139,816,2124,1022,1662,1617,665,342,1599,351,1109,2376,1696,2499,1877,838,1239,2323,660,1295,1427,1353,1581,274,226,1429,446,461,40,2063,1042,52,89,364,2226,805,454,2290,2458,2094,1433,2032,992,1730,748,1001,2339,2441,2448,1568,783,1174,619,2443,900,1384,1704,1575,2129,1483,2125,947,1508,641,870,2326,520,2197,1640,983,1734,869,626,104,2358,2059,421,1081,1454,471,1151,552,1721,1063,631,486,1204,2141,2449,1677,951,1181,162,698,373,1952,38,1147,1360,1576,470,2404,1394,2019,419,7,2468,1419,2193,865,580,421,426,1428,1864,2226,726,1568,2047,1041,809,1879,2243,623,1602,1922,2176,1504,447,1855,658,723,1943,1219,89,936,575,1441,2194,1703,1448,1902,910,1456,2116,2302,217,2267,1431,1394,732,825,2199,1306,2400,1308,1993,350,2316,1952,490,938,13,824,2073,764,1996,1818,398,439,2095,1195,1554,24,811,1554,73,455,1396,2270,1933,2048,745,2441,1084,1715,1128,863,2305,2191,2386,934,2160,854,1379,433,1585,1062,1462,626,858,448,2179,893,823,1250,1791,1544,372,2310,467,276,2051,1978,170,2311,421,289,22,77,311,428,2500,2245,219,1766,96,2331,1367,1831,1789,258,1269,1920,858,1846,353,1441,1431,400,230,1186,1958,346,1526,1634,2010,714,1730,2481,2115,732,1461,2338,515,1435,944,29,2014,1898,1487,1839,1940,1041,1358,1472,2424,1590,369,2068,2377,349,1731,424,691,1878,1438,1501,1878,338,2015,1265,2303,893,352,1988,1941,2228,381,797,1291,2421,2021,55,2362,1054,961,2313,2006,680,669,172,0,1693,466,1445,2473,2357,1108,429,854,1763,881,190,1991,2271,655,1820,208,2224,2498,1797,1969,816,627,1106,2186,763,1276,1449,696,1922,612,1611,1661,2416,1574,1879,728,1103,635,545,1783,20,301,1448,1647,2234,322,1936,2071,1742,2392,1417,1792,1650,2098,315,1466,1324,1131,1715,675,2306,2145,2257,187,893,92,2259,2029,902,830,284,199,2022,2147,2503,1538,1691,1098,2398,307,215,2293,2467,699,475,2075,332,424,750,660,1827,1956,998,1444,1059,1127,309,1304,421,886,1801,2430,1993,27,1824,919,1273,1983,2079,1231,553,2162,111,1741,2105,691,235,749,2091,1620,2434,2296,1464,1097,1215,2508,263,72,1245,172,173,1159,1598,987,1699,896,1635,305,381,276,1506,1617,2192,982,798,1400,1057,1736,1424,145,1136,840,2308,1353,1088,1936,740,1391,233,1013,695,958,450,1156,1177,1905,1830,409,2481,1727,152,1935,1662,2056,937,88,1059,1201,794,1694,405,786,1749,268,1433,2336,1821,2135,1229,927,2441,141,404,1339,1326,250,138,1511,2205,1143,1982,357,1344,1065,720,2425,2211,1519,1111,110,410,2215,2377,849,374,1349,1262,848,2496,1717,201,1885,381,1238,661,842,899,1992,3,725,1979,1066,2497,1032,475,147,722,706,1273,993,170,72,63,1870,2484,377,497,1313,387,273,1016,150,1293,438,1108,683,1935,1905,334,777,1085,2166,1819,2052,685,2426,1740,798,781,271,212,509,529,2143,1178,1587,469,165,1922,653,35,1282,2063,1238,1905,2284,1070,731,153,453,918,1379,1941,1023,558,1007,875,2346,205,1965,2294,2112,1658,2095,869,378,1748,1788,2266,875,220,1591,1711,1441,91,134,1761,323,1403,1246,373,1387,2431,1166,1821,1137,1990,1938,1068,845,2348,2214,24,158,908,1979,1895,2273,1174,719,381,615,1036,692,243,678,1710,1559,119,1248,339,2062,149,1126,552,957,1054,23,110,119,310,2034,2484,825,896,1390,1619,628,622,1776,358,754,795,1609,866,1171,547,143,1811,2009,1251,1547,1165,432,1324,1924,2509,1522,63,36,1593,2085,1743,2146,2320,1055,2218,1168,1622,1242,2039,1922,1496,1736,350,2359,193,525,312,26,1832,1677,1678,1942,19,872,2129,1185,2132,1647,1383,151,415,825,2112,873,1885,1389,722,509,1764,866,849,1808,799,1983,529,657,1234,2117,2204,1136,1498,1540,1511,2336,666,2206,1505,1179,308,2,1584,1997,1646,669,2040,1866,470,1050,1250,1753,1938,2134,1979,862,1166,1550,267,387,564,1685,849,81,561,2368,1937,122,1051,1740,75,1835,738,1687,1264,1888,692,2001,2315,2415,156,565,2232,392,1517,968,1383,311,2132,949,297,509,8,2404,820,1901,258,1224,757,2252,1705,1926,1979,1612,321,1217,866,334,632,1358,1980,1273,2334,536,1074,2505,1769,565,269,576,264,1380,2488,473,853,1441,1681,1436,2140,946,563,1472,300,756,1471,1589,535,2,871,1928,1324,2093,543,64,2250,1058,308,1038,2158,1861,158,199,988,1686,261,115,2119,1171,872,2329,1054,80,175,2317,1427,125,2295,1067,1494,511,653,315,1483,2042,2403,572,1958,2314,66,1370,1238,2295,2453,2045,671,2505,1426,1011,662,2130,2271,2153,2466,1977,2502,2240,817,169,595,660,545,1014,1274,293,516,841,1315,1249,1938,604,598,2054,165,360,337,1649,1748,341,460,2442,615,1559,957,1425,1695,583,393,1903,570,1610,1792,1533,1148,593,424,2402,382,262,1041,2345,1071,1084,390,1625,1177,2184,1114,215,433,1474,2453,798,1950,894,621,1337,24,1813,1216,2085,871,221,1558,1521,610,1616,390,309,2115,1586,1837,1090,1835,85,340,206,2377,1609,2056,1219,1108,1881,648,1590,1366,1522,1084,1072,619,599,1651,243,2100,839,785,334,1783,2392,1573,1972,1595,694,528,1244,2460,1411,925,2245,1043,367,932,2227,1044,164,2342,2223,1862,1393,1408,1905,2246,2386,412,2254,1580,684,1765,1078,659,498,460,381,1425,2430,773,1792,129,1994,121,112,1123,1155,258,2359,2207,836,1392,1998,549,2484,254,1210,2484,1238,1386,506,1169,653,279,1358,2342,2036,2292,2198,2183,794,1008,487,57,1685,232,1135,1168,1230,408,1527,88,1981,2407,1906,2117,1373,590,303,2380,2309,1989,2066,1140,2438,1336,1246,987,706,510,2375,1284,1785,1795,1992,2354,1412,954,1240,1920,1070,2236,2126,336,265,2198,959,2199,1299,1342,419,1328,863,1064,492,1685,2107,1801,734,1325,1020,714,1842,133,337,1278,18,2325,835,176,1766,922,936,978,742,2440,415,1928,2104,891,301,782,1887,1211,2307,890,818,673,1332,2222,2373,1980,2491,1054,509,981,1445,958,819,1278,229,1053,2483,243,2461,689,1156,1573,571,1829,811,503,303,286,882,453,1525,1573,368,2452,942,1655,1373,650,1240,688,1508,59,2105,2274,1212,866,945,692,2495,820,1285,1703,547,324,244,1991,626,758,1170,1055,1696,1296,2096,719,358,2054,1465,171,11,2181,1462,1713,1953,1885,895,1858,251,1200,875,299,68,1641,2448,413,402,1788,1164,386,3,950,67,1267,1701,514,2444,1197,8,769,1747,2009,250,2122,637,1430,182,1061,1244,2356,2394,1109,963,1341,1260,62,1251,739,495,2366,2214,869,7,1348,2126,1777,2297,391,213,1132,1769,516,1310,2222,1656,1273,1960,911,665,596,1776,664,2379,517,1254,2465,1765,424,929,1182,2123,1700,1687,1659,1233,382,1441,2268,1146,291,394,305,2085,1180,497,818,2495,2420,1526,1654,2275,1242,85,1189,2144,1775,705,1956,929,2195,2182,1799,1993,788,1671,949,182,1963,149,302,936,2368,1221,833,278,775,1549,1539,931,256,940,1217,1048,849,2132,2460,556,1481,1987,83,2297,992,1460,1335,1244,2215,926,1008,49,1638,960,1773,257,1024,1116,1462,2127,1372,1266,721,1165,1647,738,493,1411,73,847,694,630,998,713,855,2484,2412,1268,128,184,1567,1113,1588,1465,562,1002,2126,2242,115,1217,1126,76,1802,181,1637,332,2455,974,179,532,378,971,2047,1730,1061,405,2442,1292,1761,140,1486,565,1367,2114,396,2235,1936,1482,2193,49,749,2224,1095,2358,1471,1899,2220,1096,1209,395,2250,1615,1967,649,1927,930,686,1979,1288,1435,2309,224,1465,420,1082,955,1380,736,1051,1971,2082,1826,1167,425,1432,445,634,2086,1740,1094,1000,2350,1177,2275,1553,1442,718,46,1953,7,791,1303,1126,815,324,2470,674,1223,43,1589,2182,714,1984,1786,325,766,651,1921,599,1387,1684,1029,129,2067,238,1443,2406,142,105,1139,2211,961,996,21,301,1916,929,849,1185,381,2403,1509,540,274,1367,1049,1922,334,1548,755,943,237,1833,284,257,388,1950,1564,371,1359,540,456,683,1221,2279,1000,1472,945,1217,1260,1589,2416,2171,1301,89,42,1329,1646,1364,597,54,646,1,161,1778,1113,213,2208,963,2401,1431,1368,1157,602,1639,212,497,2393,2215,1537,1719,989,2335,1298,608,2423,1669,676,1020,2177,63,753,348,43,959,2117,145,566,2331,1871,1631,1298,560,54,744,1546,168,1513,84,532,1061,853,1052,84,264,2445,682,1739,702,1260,2131,2279,1647,1872,199,1012,593,760,1872,1689,619,1594,1151,2478,61,157,1046,1292,1367,500,679,2369,1517,1534,1654,2484,2436,1978,1387,1423,2147,1961,363,355,1478,730,553,1968,928,1979,934,417,732,1608,818,1562,2363,1870,1647,927,1297,2396,2387,863,853,2507,1712,970,829,2156,1257,768,1590,1708,2297,709,326,389,654,27,1934,1691,1260,749,1382,479,245,2328,1789,2020,798,1665,1595,381,1850,2110,122,1612,2189,1413,217,1560,1313,1118,1530,1378,798,499,1383,1441,2392,648,108,817,1843,188,1472,887,209,2033,497,2476,257,358,14,1477,1847,63,2183,233,411,966,2215,1125,2405,1773,1516,778,1157,1642,390,277,1756,1279,1252,1950,2182,2454,2370,799,2126,820,836,1817,1469,451,535,524,849,1561,1107,1874,855,1286,1440,2059,868,997,256,1185,1465,2172,1187,2004,1451,1941,1218,2031,834,1342,1045,1673,423,324,1543,374,1138,2196,2299,2073,872,1664,2458,826,1589,173,711,191,2457,284,443,568,2207,2062,774,1266,567,1072,353,1852,1763,2466,1141,2153,418,800,2288,1833,1192,1735,2432,1841,21,1608,988,44,585,836,344,1801,1946,1190,2347,1900,1730,985,351,1919,2380,1107,1246,381,909,132,1199,433,743,110,1607,1989,2239,119,2416,632,876,101,2166,1500,732,1653,1938,2190,1417,1231,1748,31,1207,610,2258,2383,745,282,259,1190,2382,675,819,1731,1402,1753,1378,1371,1289,469,1490,1771,1902,841,1440,1878,614,929,2206,538,1084,1908,469,2222,429,1905,2041,242,2060,1539,1491,541,1176,1824,275,427,679,2083,333,1738,1348,1214,1338,2185,733,1219,2499,2260,1222,1637,1096,1806,1642,293,2,329,2169,1600,2026,360,914,1260,309,2187,1155,2240,798,891,1539,929,384,2006,1232,2472,687,1294,79,1633,1569,1969,1006,2297,1497,882,875,86,831,335,1081,879,1218,672,929,2178,1089,2383,2429,2143,1233,824,186,1937,1160,257,1354,296,1476,1086,1409,1935,1182,598,262,2282,1662,406,71,1905,2160,46,2393,1460,58,6,436,474,1848,306,1608,2170,2285,284,1694,1697,421,1448,2344,1308,984,894,1229,1617,2438,1762,660,1573,2125,1853,2084,1202,427,2081,43,1496,1545,2361,1001,1738,1969,1356,734,1753,468,869,1634,1015,1253,1107,1139,991,553,559,1126,1064,1792,1604,986,1624,1468,2294,1132,463,732,1188,1642,1629,2182,1935,146,690,1667,231,173,1979,2057,2440,907,1436,2191,2097,407,1938,1023,648,459,2336,1065,2203,1985,1570,2001,529,1537,692,935,552,1059,816,1520,509,2437,1675,379,393,1257,627,355,1803,1702,2490,1485,2337,1566,1679,851,1826,983,1005,904,1573,107,255,1693,1812,1489,2470,501,1428,2135,1707,1269,2312,2227,2340,356,2220,706,2442,1922,1979,497,361,1466,2215,1518,1472,1624,1346,1539,2456,600,731,952,713,1856,10,347,2200,498,884,710,1780,537,1733,2239,2276,1162,1608,1805,1343,1322,798,30,70,9,2231,96,2200,517,265,1833,573,226,1870,2199,2448,1027,1132,207,1527,1825,2401,1220,1568,56,513,117,1490,1663,1134,1331,722,2070,1757,1382,2384,1469,2237,923,1780,882,87,316,1749,1183,1414,916,817,1923}

    {908,1997,573,2129,822,2040,1995,1014,1691,1790,1021,524,1887,1406,382,1642,794,352,2150,1880,385,633,1035,1624,1669,1965,2155,1103,1640,504,1551,2038,588,384,2052,33,1078,2332,1033,172,1149,2168,1729,2187,274,1914,1381,2114,1304,2149,858,1091,1627,53,155,440,2321,249,2477,2078,1233,863,2362,1670,1300,1447,747,662,1714,1945,2250,2154,546,402,939,2217,1006,594,1247,1757,387,1938,569,849,1153,637,2502,2341,197,2049,1174,81,1306,936,1144,941,1804,1543,531,599,704,318,557,292,2252,69,1447,751,1602,858,1014,1688,1498,1796,479,620,2413,2423,552,319,2425,132,1597,2245,582,368,1117,1439,2180,258,719,2202,1539,1076,862,96,475,550,703,2,163,416,2372,1619,2183,1676,1589,616,893,1816,5,243,378,1171,640,2116,1983,135,46,817,2210,1350,1788,1286,2221,904,1856,290,740,524,256,309,1915,289,2009,1982,181,198,1404,1372,1159,210,45,1069,1284,15,2479,850,2451,1941,1116,2032,2340,2135,2092,2289,975,579,2007,24,1388,2056,821,1003,2278,1272,1950,2363,306,2501,1983,2181,298,638,212,2462,1814,1740,1537,80,939,2033,2403,961,692,1533,1905,1732,1535,103,916,2263,252,2372,690,794,2121,2147,1327,1125,2411,2484,2302,990,975,1890,1209,1827,2480,2011,2269,1460,1618,2380,256,1829,1034,1976,1514,975,861,829,430,1860,1155,1314,2284,603,1987,384,1386,1671,2505,622,479,1875,1596,2328,1088,1964,1432,1472,246,2339,733,1983,1687,1879,18,305,1302,1776,2404,1548,1386,723,502,1967,431,2079,799,225,1345,1453,1496,7,856,1835,944,1459,48,1644,1725,633,1725,1494,1039,2353,367,139,1575,2430,626,1944,2165,114,1716,1669,2397,988,28,555,608,421,1755,1408,2506,116,795,1273,2301,489,1954,1030,1882,1036,936,935,216,1010,2253,2244,324,741,1700,1865,1239,343,445,1710,889,2110,187,590,1111,1311,637,2142,1532,1670,2166,928,2307,806,1552,1494,45,1449,496,988,789,188,706,855,2111,1167,1383,176,283,706,1001,584,2136,1619,493,504,534,1585,2325,630,74,1561,1470,1556,1999,2386,815,1746,1789,1909,1973,867,2131,1483,1984,351,992,2057,1755,1782,648,1169,600,1875,2268,2426,1351,770,264,1367,1996,972,1396,447,2004,632,199,1270,93,692,1648,913,1918,1652,969,1108,1561,1589,834,2045,271,2352,858,1133,1266,1703,2415,2117,1745,2272,1213,2213,518,2291,2356,448,922,107,1333,534,872,615,1823,372,770,1764,2162,1561,1120,1391,275,783,203,1647,1469,1581,1018,2125,2027,2505,1171,2077,2501,479,702,2136,2173,2064,281,1856,607,1439,2381,850,782,213,1981,2103,731,1494,921,1567,1223,2489,542,280,1294,2082,1784,516,257,1457,437,51,429,446,1553,933,802,212,1430,2227,1925,246,1941,1314,575,1124,1713,928,1484,1913,1970,39,1018,1312,632,599,1567,1367,1604,1198,1228,1788,1589,895,1298,811,1783,160,394,2426,491,773,1777,2213,314,729,1557,1922,1937,1087,2470,988,1602,804,247,657,288,1082,1386,2330,679,566,404,1109,710,2189,2403,853,2158,2118,1737,863,729,1583,2389,1348,1950,786,1337,1978,869,1185,1265,1621,1821,2135,17,276,1463,421,962,2492,2239,754,554,1750,1620,1001,637,732,653,1899,1204,1962,1606,447,2466,1358,1590,747,188,60,99,1845,629,848,647,1730,549,1301,1987,2093,1704,2030,53,632,823,27,272,1729,71,825,2482,1602,1658,2469,826,148,2152,2339,1425,2056,439,302,1838,287,2241,732,2287,1401,2503,1367,1467,1647,1509,2411,2415,1735,1092,1361,1629,1645,2234,2499,1161,2003,641,1647,165,1646,552,1349,2236,209,502,945,2088,2507,1178,1638,1591,2128,516,1657,2500,1153,2359,2025,527,304,2321,95,598,2310,489,304,215,1510,1066,457,2372,1978,704,2395,1037,1706,1687,936,1691,1643,2005,805,1896,1604,324,712,975,359,1753,37,1840,1991,98,2002,191,692,1842,180,2433,183,1851,132,1079,370,1239,2240,813,1308,1507,2137,1418,1775,1419,2071,523,216,2248,1466,1376,2446,937,1144,195,1165,1797,737,1231,2337,829,8,2403,1768,732,1753,782,1260,1227,2498,1223,870,2101,888,1424,2186,1417,41,12,1844,96,660,2325,2378,703,2252,1287,1831,111,320,393,1124,1005,546,94,663,218,872,2319,772,182,1696,458,290,1721,645,1600,732,1273,2109,191,887,1415,2036,1110,1594,397,1061,74,65,1758,1728,792,906,120,1025,1778,1626,16,539,113,217,782,1536,2110,1125,1236,921,214,2343,1249,1556,1471,2453,1877,1990,917,2388,1850,2190,383,2471,123,182,65,818,1163,1040,1930,1949,2392,1123,67,2174,1687,1476,1038,118,71,86,2113,256,1723,1081,622,2486,1981,516,870,886,1998,1786,58,1797,1886,1511,1377,265,501,701,1105,1856,2324,1863,894,218,1409,1028,1613,736,774,797,1476,1512,793,459,1572,1351,2505,1206,1263,1447,1748,988,1672,1900,1631,2364,398,2360,1629,499,565,2230,1479,1117,2106,804,963,2132,1475,2188,2150,1318,1642,211,170,1134,2201,2164,1266,2136,2163,290,1212,1630,544,2099,2103,313,24,2237,1605,558,2000,1169,1997,1706,732,1304,1957,2476,1595,2026,320,1893,1902,2474,1093,1868,1777,1524,2108,1589,96,1415,334,144,1080,406,1787,2488,131,2013,515,1064,421,2228,2199,2281,80,1752,134,497,1220,587,903,364,1779,245,683,1696,685,2190,904,366,1239,626,2245,300,726,1948,233,619,658,1148,2447,1686,2122,2268,1807,1920,1386,1835,1856,1245,209,2304,581,309,895,1358,717,1286,102,1816,1277,381,2043,895,1871,875,1782,1912,672,426,2163,1963,692,971,1425,1949,2239,1014,304,1687,349,5,1680,96,1579,1462,2163,2485,271,410,886,2418,1420,2459,855,1726,2288,760,1917,414,1259,2128,2367,1483,987,1017,2216,1373,1014,2222,1938,2453,790,934,2118,270,2256,1256,1393,1638,1484,713,1466,1370,2133,712,1387,1687,856,205,21,2102,1815,1513,947,987,2421,1601,912,1150,1552,895,1684,100,2377,652,295,672,1963,488,543,235,1822,2163,695,2087,1709,843,2138,1623,2213,754,45,566,2417,1421,1966,1689,70,1497,1363,1612,1447,695,2450,1561,2300,1359,2159,2355,1637,405,672,120,312,2475,1341,1221,1541,2160,2414,239,516,1190,1216,1004,697,574,2385,82,206,2068,2268,330,2493,1985,872,1417,1330,1387,738,953,1323,1230,1440,936,1067,770,1738,2218,822,2085,1531,1655,2431,1194,1857,660,387,657,1793,818,592,512,1015,380,1786,980,2163,1525,613,433,959,2411,1688,776,1494,2059,2378,1377,79,1362,145,665,823,672,375,1331,1391,856,396,585,465,544,358,499,1698,715,2080,1094,2440,403,2430,810,1240,1233,2247,1806,2458,57,618,1905,178,514,656,545,883,2179,724,2058,1100,819,1031,469,1666,118,1335,487,1256,7,2207,417,1533,849,1427,816,622,35,1887,995,430,1044,1632,1150,801,1251,450,1977,78,421,34,2229,145,959,1509,241,1668,1718,331,2238,1224,1346,1834,2429,1239,1636,1256,1648,311,1446,1074,1583,2235,2423,1041,2081,261,497,1205,1457,1066,1476,683,2391,465,1561,131,2087,447,854,752,1255,272,1011,2049,1859,994,2494,439,1340,1660,856,1685,1716,1650,810,2191,228,732,542,1984,761,402,1793,184,202,1888,1887,1334,2143,1410,947,976,585,891,974,2100,803,552,586,1148,1217,1147,2292,1592,2258,1063,1398,1193,1576,201,956,1221,815,1041,1290,1639,2349,1469,313,905,70,1219,1774,322,2035,2010,1826,477,656,2253,1409,483,2270,2157,176,1493,187,525,1969,2437,2227,1712,668,2504,1368,1854,239,1309,869,439,637,1060,1502,382,2413,1565,1515,238,2428,1706,711,870,498,192,1892,1529,1722,1980,2147,1592,2476,2191,387,240,2052,496,1990,1911,667,2310,1061,881,1511,2374,2175,1384,462,2004,1474,2009,1843,380,1725,689,376,2151,2470,577,963,2371,1317,2209,1139,2271,2505,1396,1076,1342,2067,327,1208,1131,1142,2422,648,43,2258,901,1785,2044,720,1690,615,624,1291,1211,2270,2400,2261,2263,2067,771,521,2481,2018,894,1688,1796,1352,340,148,2351,814,1216,1735,584,874,955,1872,2363,658,1365,32,1101,1061,1559,1098,1184,354,1883,665,1226,1698,212,2046,1077,554,1797,936,1113,271,2263,1704,1888,1108,610,1014,1098,1853,2017,2167,2192,444,2502,420,2090,1726,1355,893,1981,1397,2141,2106,2307,1090,294,58,1577,1592,2059,18,1501,1776,1497,106,2153,2363,5,2404,1589,1836,563,2286,1624,1959,401,463,1630,1875,2239,770,665,422,154,1582,861,1965,2228,915,1563,721,735,785,748,660,1087,1286,1853,617,1869,917,234,2127,2049,2055,309,1406,1418,2294,1402,667,592,519,1738,1821,2148,274,476,236,2377,2362,1657,1235,109,2011,1759,1094,1781,1867,1690,494,1273,1997,1061,285,2500,246,785,773,481,2249,329,162,1897,1724,1058,478,1231,847,1142,2120,2409,2107,1157,2074,1877,683,1829,1730,147,200,2280,2037,1710,2503,880,988,221,1614,172,567,672,1136,2399,1503,860,2318,1198,196,601,649,1929,792,315,1284,441,2072,779,1375,2020,1891,1981,1978,2232,2483,2470,1744,1069,1049,2395,1683,2413,812,848,1203,317,798,378,1056,2055,1487,878,2365,273,1775,2466,1075,2245,2272,1862,613,1798,594,248,621,2227,1750,615,2305,847,2363,1950,694,1693,1094,1693,1947,1858,1395,1223,2054,1172,1294,1970,182,876,2012,1462,2009,1083,1237,2196,1994,105,328,1511,7,929,227,194,912,2050,765,1636,50,2131,1563,97,1608,2009,72,1903,1794,2508,1080,1985,2191,1261,1474,2082,211,1516,2093,1445,556,256,1129,1552,2009,25,2356,820,2219,897,1760,258,1307,530,1316,1001,2292,1590,593,1321,126,1296,1629,12,327,533,1009,206,267,965,1378,1224,2463,1632,1271,916,1914,1540,714,941,2327,767,1120,855,1847,508,2153,731,1441,881,1050,362,2330,2421,1145,2474,733,1092,745,1949,1917,624,858,1103,1074,1720,1358,1751,309,2063,1611,825,676,1173,1407,421,1488,681,1230,1273,498,692,396,2182,90,92,2138,782,597,1454,552,1809,1596,246,832,1509,917,2382,1212,373,2304,923,576,784,1786,344,2356,1839,754,1146,526,2359,577,2389,1947,457,745,316,2292,1450,1872,1923,1416,2358,464,2377,1152,1225,2378,2204,892,649,1280,365,261,971,1169,1827,785,1026,618,855,641,727,1679,2208,253,1670,521,2350,435,808,2325,660,684,1669,1159,442,77,2117,1124,1682,590,2411,541,35,1951,1347,2408,497,382,2487,1036,127,2385,653,2107,2224,1566,1829,1113,1434,2322,1123,2286,1081,1979,1275,1240,666,1767,1156,846,2310,1014,0,1738,477,2264,1102,473,1306,1130,762,1754,155,1643,2032,1348,1374,1290,687,2213,421,1973,732,482,1487,144,1708,1882,2032,978,1348,694,2061,1686,2427,827,57,538,529,1047,2251,43,1077,634,1662,145,17,111,1553,1103,310,1437,924,1755,99,1847,1898,679,1828,124,1299,1260,1196,1503,0,1585,1157,837,1800,1267,188,2258,1121,2225,558,1674,1770,1001,2072,1903,1378,2241,967,2147,1038,516,996,1689,2368,2220,1368,2224,1686,1019,176,468,1761,373,272,174,1396,1610,2310,333,1660,733,47,2240,2503,871,661,1735,7,590,1107,1367,2178,1256,99,571,990,1786,1630,2121,565,1202,639,2121,185,745,2265,1469,1154,1730,999,872,1810,2222,1723,929,496,1647,1497,844,647,1772,72,2222,373,2386,2277,2450,975,605,2015,553,1499,1628,1422,495,642,258,1996,396,2183,2139,144,1571,949,2255,1483,1887,1112,2045,1418,2470,963,797,1494,636,977,1319,1320,893,344,1057,2129,1757,1876,535,463,87,2464,707,1792,111,188,1079,1382,2409,172,644,49,1542,1185,2,920,341,850,2138,2184,1157,1158,1685,689,929,1281,135,373,1620,828,1910,1082,643,1440,2409,1922,2376,114,626,487,2161,202,427,2313,668,2419,2365,204,79,431,2065,339,873,894,1523,49,1760,606,1452,485,1646,1603,1451,1432,1882,167,1460,1348,2150,538,1005,794,1958,850,589,591,1014,529,419,1561,2095,79,2053,1938,796,1986,239,1812,670,1147,1985,2393,647,732,2283,1994,208,447,2024,662,145,1347,1659,562,1567,857,32,2024,2360,557,1878,619,651,1660,1414,2127,885,1890,716,548,791,475,2350,2028,872,1549,134,925,1148,289,913,207,1890,741,189,807,384,2267,1753,2184,458,1194,594,1483,2202,2358,1078,551,497,361,167,420,1113,1904,1067,665,1193,675,274,991,864,1650,1158,1833,12,2063,757,1642,2386,727,2089,1789,1220,512,399,1459,10,1721,515,1258,523,2392,1692,1155,1331,159,188,2445,621,475,1351,384,1617,1090,706,594,714,1338,709,345,616,1669,559,4,1939,349,787,876,969,862,1788,578,652,780,1809,1485,2315,595,387,1893,187,1974,2295,2132,1957,1885,677,998,1600,1998,1686,609,1115,497,731,1850,1850,2333,979,829,153,1391,959,1931,735,260,1648,958,1943,311,2206,1384,2209,2481,1272,2507,1662,852,1738,747,0,2510,19,754,434,1492,1458,733,452,45,2222,2042,354,990,1873,648,853,1495,1907,867,2198,271,2192,1148,1644,1561,2237,1460,1656,948,884,367,1411,223,783,1325,2204,1778,1079,648,70,2192,1432,1399,2339}

    428

    1641

    Returns: 233360499

  24. {1522,1623,920,1214,2424,1014,761,2511,343,844,738,1008,1529,1530,284,2341,2429,1776,1970,2103,1304,433,746,532,170,655,1313,2145,29,2299,1091,1462,2084,269,352,1105,2294,742,2106,490,1958,2461,1587,1333,1851,2249,1705,1210,102,1408,830,2263,253,1701,1377,769,1719,1972,1132,898,1196,351,915,146,2154,419,264,452,1663,2373,41,1389,1131,1044,1038,1848,874,1971,1400,1872,2216,1074,1537,2206,2478,469,2258,217,1083,819,784,2283,1798,1266,1320,1279,1790,1447,821,2401,230,12,1808,1185,1441,1854,672,831,285,1198,2358,1341,649,2462,557,1892,986,493,516,650,1645,455,1934,2427,2504,761,666,963,330,1264,1207,196,559,1971,310,1669,654,1519,1772,2387,736,2365,874,1364,2086,1956,2023,1088,207,2457,2186,0,995,122,2208,1167,2491,1174,565,1607,1575,2463,507,1085,1308,1002,2291,2187,1067,1772,873,2427,2069,1646,1292,2257,2377,1939,961,2182,1823,1635,2004,1703,890,2173,1919,2251,2057,197,853,1002,763,335,43,1940,680,2274,2354,774,509,382,2091,2258,1070,523,2009,83,2103,2367,1715,2520,1312,326,2324,625,1081,883,365,1698,2269,2090,1399,2217,2306,844,2354,951,1301,2223,1413,443,985,1937,1022,2160,2198,766,424,996,720,2301,1554,135,565,96,1352,1352,1920,2469,2288,1188,1723,946,146,2290,769,1259,486,1720,395,868,1752,445,1919,963,1886,234,1689,121,967,2442,473,2165,343,1703,1816,2539,1632,114,1763,1643,2004,1325,807,1692,2126,847,110,2029,292,684,1706,563,2089,79,597,1390,1321,1923,1747,1327,1337,1196,336,1940,1179,1011,2503,369,1681,1410,1806,2173,853,1540,1315,2115,2510,330,2389,1289,708,1699,100,1608,1392,1808,2163,1350,2117,512,1072,2025,676,1563,173,586,1065,890,1854,856,2419,169,293,1929,2120,6,722,1596,2237,983,2293,1731,1025,240,493,1994,1823,885,1930,1897,292,579,1363,708,2470,1490,4,827,915,1215,408,939,1108,1009,1299,1042,1017,103,1165,2189,1397,897,2070,355,1854,2031,655,435,339,1525,1061,603,2529,705,2509,1096,152,2226,1346,1917,612,346,2532,963,395,2322,109,337,1686,2266,862,1833,1992,1465,1844,2318,2266,2137,1740,284,1489,2417,763,23,968,1938,1495,2009,105,2101,1295,1483,1029,638,2089,2396,1840,2469,283,1316,2026,1565,2361,582,1107,734,1788,1137,40,1796,532,2130,1616,1433,1057,420,520,2283,404,1540,258,2501,1145,1185,1176,2168,1800,2080,1412,453,1041,2537,1436,259,1430,1442,1220,273,0,393,2214,414,2282,2265,518,2443,888,241,1542,1439,1794,147,1250,49,2234,250,1174,1668,2121,1775,591,2288,1328,1087,634,1849,1170,771,14,1885,396,512,517,761,970,752,1410,1188,1485,1074,2174,1035,1565,124,73,2445,161,513,804,1530,92,745,5,562,810,2444,2020,2019,851,629,776,135,1144,1477,1523,514,2052,1408,1886,1381,1511,73,472,676,1341,594,1410,339,2295,2127,548,1936,1306,659,1601,1294,485,1116,669,1024,801,73,223,692,2199,766,45,430,2238,1814,1112,167,1697,2440,564,2373,2284,55,1322,1573,757,1775,1659,725,693,378,2042,1236,1846,2341,999,1994,765,1596,971,1079,2165,735,123,1756,19,123,553,1439,1147,1517,339,1314,81,2237,585,1405,1056,2287,492,740,70,1537,362,1191,2467,146,536,606,1607,2217,425,2015,323,542,2008,1846,2463,2471,517,111,2074,1871,1014,2374,902,2481,1135,631,2398,1863,1019,737,1668,208,2204,309,2060,2337,1519,874,167,512,1018,2476,79,1821,2285,793,440,1523,476,2437,1653,796,2349,756,1342,2348,1382,1912,1353,2024,2291,1318,1806,1715,1027,1691,2376,2536,1532,983,1291,1536,1361,2222,2374,414,2418,2129,2143,618,1324,1746,437,2261,1191,1779,535,1536,2008,1418,533,882,544,1113,1228,90,60,1184,2430,1951,2382,1411,1066,2183,1224,731,1630,1563,648,2082,1519,1747,197,1792,2217,306,1774,1377,1732,863,851,1559,2475,330,821,1346,572,1663,899,1358,978,1046,1185,938,790,323,1200,1459,1308,817,2511,946,491,1262,2006,1698,2192,1831,1329,1053,877,1579,480,544,1586,2461,2438,760,338,2531,1607,870,1364,2315,1358,209,1502,673,698,952,2116,897,524,1725,640,1828,1568,1584,1393,2360,2028,1161,640,2060,1988,362,121,2346,1430,2033,1166,1361,2415,780,2473,2522,575,574,643,1376,2286,663,266,1910,143,144,1045,718,380,469,491,1022,98,304,1842,2243,58,478,1219,1434,2503,1092,332,279,2451,663,1433,1580,1834,1251,1505,2532,737,2202,1754,1597,73,1561,1555,2306,214,1571,1775,1281,1227,1748,409,1131,757,441,1566,439,31,860,1893,660,272,1568,2326,1648,694,709,2419,943,2361,1628,1544,2399,2466,446,2361,222,1890,1187,1443,1609,909,360,97,33,1239,2034,1868,898,785,1545,820,1996,1532,1379,1393,111,319,1021,1155,1248,160,1032,1037,1773,1010,2149,813,562,1894,1321,1122,1584,1143,295,53,1637,853,432,188,1907,2431,2482,2445,2124,576,1221,804,2524,1958,1822,1267,1296,2180,2137,1607,1263,230,300,1123,1303,2132,373,329,459,2540,705,262,2131,1272,2357,2518,914,240,1114,1172,309,1107,0,557,524,1810,1584,1038,1089,1249,440,1714,1568,1162,386,1548,800,2355,1965,1747,1322,1073,1582,1553,860,601,323,2434,834,2460,1027,2472,358,1474,1158,522,1591,116,230,857,492,2503,646,2020,350,165,1217,1814,1046,1686,2013,876,1942,341,86,1716,1271,1920,337,2143,1976,995,809,297,226,942,2369,487,461,367,1953,1055,36,790,2134,1775,1955,702,2468,1778,1723,1019,306,1446,2491,415,535,1439,535,382,1894,4,621,684,1251,1614,1396,1606,1512,297,942,1565,1176,2541,1466,1783,1176,2324,1266,718,1033,540,2493,1053,1703,2269,2323,1882,1287,88,1957,726,546,838,761,2433,1464,2542,746,415,2179,1008,922,1598,527,438,2189,1451,2350,50,2320,416,1617,1921,1344,50,159,655,1036,2516,1050,87,1113,1122,530,1644,1328,2394,1515,1918,1948,1200,2059,1431,93,1290,1843,402,1864,2072,2188,296,897,1791,2153,603,529,601,1692,482,2308,239,1900,1391,256,530,1204,1697,156,597,76,2330,1743,576,2194,930,1511,2050,1494,97,1293,835,1000,371,52,1176,691,40,441,1754,2114,2,547,544,1809,1160,1713,1181,269,1657,2447,1805,771,2203,1686,1073,1044,156,718,1658,2052,1493,2436,2008,905,2531,1337,1045,1825,1675,2207,2526,2254,1895,1362,2122,220,2173,1149,438,263,2005,1365,954,1655,2182,2421,597,1508,2252,1742,964,90,1305,2199,1810,1049,885,1568,2451,626,169,1461,2244,116,1644,1782,307,1708,1554,1191,1664,187,2522,862,335,119,2017,1506,1375,916,46,1027,909,40,817,480,664,26,1102,1649,2033,97,1222,2045,480,422,588,1594,154,2110,1218,678,980,1469,1408,1803,465,169,1207,831,1133,267,1378,813,1115,2133,1862,1197,431,2530,2377,1531,1508,954,808,1479,1858,1440,1285,216,1834,2495,475,1471,815,518,2439,593,898,2124,18,1576,1221,1986,1866,724,2347,737,827,219,802,1753,1717,1912,1552,2473,8,1721,1825,1729,2399,876,280,1016,829,798,2108,939,1983,2237,693,1089,1636,366,2173,761,1818,1992,1256,1041,1777,131,1726,1781,1339,1913,2310,1232,172,899,457,1345,231,1518,817,1440,2363,609,1035,456,2256,2454,1209,2405,2285,1025,1326,1575,2129,2021,500,252,242,374,2392,200,1237,2529,1297,1791,2498,2331,1779,693,1855,532,2499,1680,222,1607,1082,318,888,1779,99,1416,237,2396,1857,1309,441,1090,1741,1399,488,2072,1364,1759,2021,1363,1369,2482,973,297,853,949,755,1839,2322,2345,1111,273,695,1609,778,20,1714,399,1429,2291,291,2435,139,942,687,1883,2408,1306,632,24,940,302,836,2159,427,2174,1960,1618,349,297,2506,130,1166,1684,157,2011,198,2514,587,2131,1132,1544,178,1388,1356,636,397,1569,2225,1398,449,397,1216,1009,1591,2334,331,600,438,826,2283,921,1786,1799,184,1766,106,200,67,421,1999,985,261,162,936,2082,867,107,159,2102,97,2044,11,384,987,949,866,54,2303,1243,1046,1206,2279,1009,2366,1184,1038,77,1455,482,998,1680,820,1867,2010,993,560,2401,2197,1772,1340,864,808,2517,1417,782,1244,790,477,904,1323,679,286,1468,1840,2365,1307,1192,905,1400,2455,181,718,1945,2417,613,1270,468,1986,667,1332,1996,817,412,681,1813,1590,968,314,937,992,204,512,1459,2385,1,1775,1600,68,973,599,338,2028,1867,2468,1872,1993,312,1366,383,1803,959,137,10,354,202,1058,840,289,236,95,1216,2524,1064,1251,1824,1229,95,1275,1928,1492,225,182,1536,240,1842,853,2484,1114,444,958,168,2531,2000,1018,398,1602,1286,1323,2004,65,397,1998,1154,1565,856,156,1571,600,453,1687,493,267,105,215,928,309,390,1812,920,581,2309,877,1277,825,164,206,1166,2474,1201,2146,2427,2022,2248,1669,1231,2523,1982,222,1123,1528,980,1684,2424,1908,1762,568,2167,1704,2136,2371,1410,1519,567,2331,726,1253,128,1419,2115,852,2504,2342,623,1167,2111,2181,2386,2314,751,319,797,1488,90,99,971,2475,235,2011,1628,1710,1819,580,503,1670,2519,1120,646,2454,760,1571,1586,2409,1646,1595,2136,424,534,1663,1474,1745,1269,638,2283,1486,1449,22,724,230,1168,2097,402,962,314,1577,600,2420,2264,1404,898,1924,2480,511,231,2122,608,2054,2120,1903,1827,627,912,1607,485,1192,997,2411,549,2363,2328,2525,2020,843,333,1978,1052,999,2085,724,1727,2272,1193,41,649,924,35,1376,424,2522,629,1744,673,2423,363,782,1779,1280,1995,862,1206,2159,452,592,869,2384,403,1984,228,2184,1771,897,874,1402,35,479,1491,2316,1385,1405,328,2135,1285,1110,1513,423,1537,1652,628,1947,1266,2255,1776,1886,1367,986,1793,2091,133,1043,898,90,2277,340,903,1326,195,2454,2475,2072,422,847,1424,576,2396,612,751,1404,1300,181,326,1156,876,680,2155,841,980,1671,2474,2058,225,2513,2341,2315,142,1442,1920,2528,1810,407,1949,923,187,1560,805,1351,2317,2001,893,1061,2530,2512,817,521,205,433,744,1611,1996,474,2352,133,1713,778,1927,1855,701,576,391,1787,349,2223,887,1129,183,1121,230,1717,1991,905,899,155,2173,777,12,2316,2219,808,990,481,166,2192,9,2236,544,2000,2069,70,2068,756,1340,1519,1627,930,193,135,1749,1221,2011,2480,1724,882,2014,467,1380,1403,461,604,1031,377,959,2063,2323,278,925,1844,935,2251,409,2466,1736,2499,1228,138,2215,1647,1960,953,1964,301,982,2109,2328,1388,6,1562,2101,2464,898,870,985,953,624,389,725,390,1276,1379,410,492,963,1185,1661,1325,432,1104,2504,1390,1122,2449,313,435,652,1756,1595,404,2296,1305,927,908,1162,1578,574,1217,309,1421,945,2336,1005,1490,120,2382,851,1854,2421,604,11,884,2070,1638,1066,43,245,337,1039,1083,1289,2458,858,1974,2165,824,1083,1492,1331,2307,1353,543,1657,1000,645,2092,1718,750,1368,894,1564,2181,2222,853,811,1880,2375,971,1695,2198,95,2216,2035,664,1546,2173,293,2307,726,586,1139,1100,286,131,1547,1247,635,1170,760,2541,1671,975,2342,120,2339,594,2535,1582,434,1797,1075,382,1041,1369,453,506,1904,2066,2432,2213,1496,1358,1367,279,528,1496,67,1283,2289,0,2487,618,812,986,1868,1849,1194,203,1888,1372,927,1661,1730,722,809,284,1436,1439,729,2052,1848,2199,1411,348,856,991,2008,1583,1925,1640,1633,306,1406,844,1394,1519,1630,437,612,1613,9,814,1262,1471,605,1274,2075,973,62,1458,669,1790,1544,1325,391,855,404,2329,2412,1408,500,246,1929,1178,1711,1522,2507,2045,2176,1099,685,1768,1829,2372,876,440,985,376,1639,1519,692,270,468,70,612,642,684,418,1894,560,130,2059,1387,1666,1284,2283,1895,2283,2385,2268,769,752,567,1233,1573,1992,1835,2432,1087,42,1335,1554,2044,2200,1857,833,1554,1247,1106,2072,742,1098,2530,1607,597,1260,1666,1795,1778,1763,644,1122,255,1926,562,2170,938,2449,2209,767,1401,2322,2087,347,1320,2141,36,1000,985,2140,244,501,2375,1483,1956,1822,1010,827,1055,628,2427,1669,838,2499,1064,1142,1246,850,2456,826,825,149,1668,1660,2028,99,583,1644,804,2376,2485,251,1343,1805,891,821,238,1671,274,2281,983,1823,1268,2164,1973,890,2043,947,1390,2289,1186,90,2172,907,938,1481,152,1830,1068,1673,179,153,2311,1642,510,1407,1346,1068,2180,2062,2498,2227,1731,849,864,828,1459,1995,1998,2341,600,1570,1465,1032,162,360,1091,1086,767,1743,1782,615,15,1927,253,2056,230,2452,1628,470,1676,1841,2078,2076,1246,294,73,1475,370,1173,1895,17,872,2010,1817,2061,629,552,759,1799,2307,1963,1172,374,1813,2226,1730,278,2443,957,1399,968,1023,1541,984,945,293,1813,1071,744,2052,279,860,2233,2266,293,1379,2276,359,1300,1221,2100,2461,1624,2479,2317,178,1015,2122,2293,936,1895,1141,477,714,314,136,620,1246,616,1422,79,597,158,1313,560,1870,1941,885,1599,1810,658,2073,1121,1806,808,1850,235,1150,1008,739,476,335,1496,1391,784,764,1230,2039,1295,2366,1727,103,1049,1234,2385,782,672,480,1171,77,1030,128,874,853,567,2475,1694,1825,1467,1638,773,1533,336,1358,38,1482,111,1511,530,192,595,715,1421,744,1221}

    {1791,1372,1347,1484,2359,1716,688,1889,1352,2246,1152,447,2139,1811,1209,1169,1724,957,756,338,464,373,521,710,1372,378,35,629,1798,1101,1909,346,1944,555,684,277,2324,1820,518,2478,507,1594,1290,1936,1018,632,480,286,2030,1997,2452,873,1523,1310,1831,697,57,382,1630,793,644,880,39,2178,144,1433,2482,1423,1487,2507,1843,2482,969,1028,2490,2332,1022,1661,2238,918,717,1841,1387,966,843,357,2374,959,512,2488,1430,292,703,1761,116,1655,1801,2184,1457,2199,1128,2096,2245,1734,1476,296,749,1048,1971,2465,1742,498,1362,1496,451,1768,146,1890,1894,1668,905,928,2008,1076,751,657,1449,2035,1681,2124,507,424,737,1615,2204,2322,116,986,1209,1918,2037,1505,1840,1051,1136,988,2334,1726,2141,2138,1426,2003,2261,1000,571,816,1213,86,1894,2104,1098,0,2381,2254,1990,2258,881,2360,2257,1287,521,326,2139,2260,2527,2005,388,2540,693,147,788,558,712,2051,2321,843,2441,1578,2529,2083,1494,2353,1665,1900,2189,2080,597,373,1953,611,1140,4,2416,2443,954,411,2093,2077,1225,1076,1886,1562,2510,103,973,2070,1855,1142,1124,1504,480,2148,1267,84,2377,579,622,754,1093,2459,2219,1584,1482,458,1138,1209,1612,1062,302,28,2451,1497,684,1447,1861,1226,2105,2045,1251,1739,1007,1241,885,1693,1356,1178,1202,997,1284,927,1080,1872,1442,163,1377,2193,2094,2316,269,414,372,1704,2428,1360,721,131,1980,1250,1876,145,674,1609,1079,1298,2148,1798,351,651,1890,529,612,1798,2388,48,413,1119,510,1214,429,2270,1751,2478,2188,1441,2414,1884,638,1069,1757,1504,598,2540,2257,1841,1968,1766,1122,2059,189,272,176,1369,628,1129,2032,2307,2220,1810,156,1460,386,1245,2189,59,134,1448,1568,1943,1227,1415,774,2446,392,1099,1953,400,1530,2500,2117,2335,847,1984,1012,2094,338,2113,2324,390,2230,2119,200,194,338,313,1148,1163,1784,174,1117,1558,923,2104,79,2334,960,997,134,612,2331,566,518,1891,2346,395,1871,1896,2369,1742,1633,726,2065,2229,1206,639,2222,1136,1811,455,1588,185,2070,951,1317,477,647,114,1371,63,2423,770,1454,502,1775,117,311,1060,1847,84,1766,256,2370,64,268,1702,212,903,822,2181,1603,1513,2278,1987,1679,2257,2511,1833,2036,1474,28,1264,2395,866,1871,1838,1288,1633,1127,1853,639,1895,2531,1054,2264,537,473,459,1960,2406,604,1920,1302,2153,746,1172,710,2210,132,1700,2473,83,182,943,2284,1691,1611,2266,1518,1614,819,321,766,1558,1225,216,2410,1017,2211,397,806,520,1432,696,1277,563,1979,985,1224,642,1620,1374,1319,784,1503,2378,1100,1386,1414,932,1332,1127,1546,1910,2202,188,1463,2059,704,283,523,2252,408,1539,2540,1756,1442,1810,1879,1063,444,2396,2028,1208,134,2381,2080,683,496,2515,3,1157,443,103,2028,356,2412,925,1301,966,1519,1231,1180,1202,1003,1079,1813,2167,526,306,283,1764,2020,2529,133,612,127,189,2540,2178,1333,485,636,640,1206,90,1492,0,2489,248,144,605,1719,1805,544,334,1538,1388,1200,728,1450,950,2009,1438,298,903,2331,165,1613,2047,2475,1184,1177,1780,1756,2095,1951,707,2343,58,2324,702,79,1077,104,661,1097,1118,1688,2252,1166,233,126,929,2474,2384,2118,97,719,431,965,1775,148,2542,690,2464,555,2204,890,979,2336,1514,2430,1862,709,724,186,853,154,1500,2065,2266,1054,977,1558,2247,886,606,1416,293,753,1364,309,985,1568,462,848,1277,1806,1922,1886,157,168,18,980,1621,134,1428,1509,974,991,1228,1357,1189,1980,2105,978,559,1035,275,1040,2298,401,2478,2070,2273,463,1668,2144,926,433,1942,2152,2219,1770,706,1902,1977,385,2006,2420,1240,1522,290,926,959,1102,911,589,1305,1126,146,525,1370,917,2095,1079,1092,1388,2532,1238,1291,101,854,853,653,183,1192,1658,1721,176,718,1668,2341,1442,1890,1857,1047,572,2244,129,718,1634,80,1272,1845,986,381,327,859,2235,151,2328,2435,21,1707,2240,2040,19,1798,1914,1388,2004,2502,387,305,1519,1094,553,1183,2132,483,1078,1534,1560,345,64,2266,1372,2419,163,2221,1654,1898,2064,116,253,1362,1042,2205,1583,361,347,1348,680,1855,2504,948,1722,1064,335,621,746,1669,865,1537,623,1881,448,2097,1373,1894,373,667,718,835,662,547,511,1742,1162,9,2421,612,1684,2310,1813,180,1269,532,282,280,466,44,2167,417,1690,898,743,2126,285,773,2336,1437,1706,1251,2475,1741,986,2436,1524,1667,1387,2474,1260,2007,659,133,176,1498,347,519,2435,1185,845,1864,986,1072,1330,347,2497,2236,2116,289,1749,2528,2070,1206,468,2053,2457,989,2452,1900,1656,2253,1530,775,150,497,545,1390,469,182,2533,1032,2328,1981,2007,1498,1604,1539,586,842,843,1937,1419,2362,1202,1704,271,913,27,1932,466,2025,1074,1516,2228,1905,1354,939,1557,1095,1014,1878,103,1334,136,1956,1842,2111,718,248,564,2350,1728,940,672,2171,2018,2503,118,7,498,303,690,345,254,911,816,1940,1141,827,218,544,705,1496,850,2059,874,1737,201,116,480,1776,138,739,266,9,1954,2327,60,1864,762,1819,2384,748,16,1044,1624,505,47,1083,1711,169,584,2009,986,842,1437,1089,116,2364,2053,1499,1387,544,509,1975,837,152,862,507,1594,2461,981,1806,1494,223,692,1040,756,554,126,1442,1942,368,576,2486,839,610,2209,2255,10,1971,1035,1004,316,353,637,1736,277,1361,1495,82,210,1289,134,1683,1959,1006,2426,1321,1319,1063,1282,1977,1104,702,176,1865,1220,1946,349,1237,455,96,2067,852,1969,471,896,1097,1629,986,287,998,2417,485,1478,1762,519,2241,779,222,2022,795,1989,1581,43,954,79,2442,1042,730,2476,1682,1732,1833,484,1592,2418,1127,2492,2341,243,1901,213,194,52,2475,1607,1402,1862,2177,2508,1651,1525,2410,2299,449,420,1042,910,116,2185,1266,2280,1176,1233,658,2465,2461,240,113,2417,1235,2301,890,1447,2486,2422,1372,895,493,1795,1802,1812,408,817,671,761,1384,955,1489,768,1785,2052,2262,2094,1559,1996,2298,11,817,935,630,2473,681,763,1916,782,1640,1658,1507,2529,1681,1765,1190,1288,2271,1064,1442,95,180,10,141,2025,719,69,1257,819,1617,2302,227,2468,661,1857,1901,2333,2379,2259,1390,127,987,1521,2481,2218,529,376,475,1390,1280,2518,478,1480,2212,32,1459,1252,2232,763,335,1010,435,1962,73,148,1913,987,1921,2479,1501,1420,2315,1410,1192,2173,832,1269,1369,299,518,2334,893,72,1692,1853,668,1709,599,906,1535,573,705,78,272,1807,1920,1766,91,765,0,530,2477,1918,711,293,994,962,1555,1921,1746,1751,229,2111,219,417,614,1185,2377,361,1076,1625,677,2307,1056,985,514,1936,1738,572,2002,308,766,2427,1242,1395,682,1956,1829,199,1787,1185,508,1000,2138,2512,2022,315,1153,783,541,1821,2186,494,2304,449,2494,1092,2021,405,56,470,2539,558,2151,1224,967,851,1324,643,2483,864,1327,1841,1650,1975,394,1095,2169,623,339,1623,1012,1077,1952,1564,827,556,182,570,993,1775,2081,2099,1777,963,57,1929,651,640,956,1440,2201,624,686,693,2319,461,1439,2123,2059,1359,2128,347,52,58,2228,2317,68,258,1034,884,422,959,1572,2503,1985,727,1253,1866,2134,533,1249,1828,2025,1355,353,256,983,487,1261,957,68,627,1733,1504,1714,2168,1311,1835,2283,77,2156,2393,274,1671,1703,843,2143,781,1361,1439,693,1556,739,2505,2446,579,1226,364,1100,370,1402,308,569,1578,2534,303,1658,416,1819,2333,504,413,1059,2140,1157,2363,1364,1338,983,1066,617,922,1420,1841,2426,1013,2340,417,1921,2189,1092,167,1641,2543,341,2026,303,1999,1221,708,931,1278,687,2198,716,1805,1588,639,1030,175,2098,2123,572,1896,1427,1483,871,2339,1912,1501,2397,1125,669,619,281,1918,1226,1753,1051,1871,2322,588,810,102,1966,4,2453,1527,2208,816,2173,2219,1228,2278,212,532,2461,1774,709,1178,740,1453,2257,825,1685,722,1106,313,1539,439,499,1754,2461,1510,842,2088,974,656,702,699,1677,1450,94,2251,805,813,578,102,823,774,1195,862,1258,1656,761,2340,1255,407,1795,680,845,1168,1795,769,1507,1231,1560,108,1828,2085,2465,89,2449,242,2239,1311,576,1186,1899,2189,985,1680,750,2506,2527,842,1528,2028,1466,1109,2360,2450,1072,1669,489,2157,2161,828,2514,991,231,938,2270,1199,89,89,455,784,2288,1504,1856,1590,1188,1897,1929,835,2492,1741,1781,325,97,2409,836,1307,680,663,199,738,2220,1103,1875,670,1089,1016,1507,1726,621,1357,356,634,1607,1122,746,972,1573,2448,390,1676,37,916,900,2147,1789,1314,356,494,1999,2325,860,1751,2465,2362,1054,665,628,66,2038,43,628,2016,545,1286,2505,356,574,1182,50,187,1504,1028,2356,449,1393,1452,651,227,803,1760,212,2494,1193,2227,1638,86,1574,1748,2217,707,1567,2275,1610,187,163,1713,1099,966,1020,818,384,407,898,847,466,1158,1166,1288,1123,792,191,2219,103,2046,8,1579,1701,1810,275,1774,1651,1409,804,2223,2167,2125,1361,1228,2368,2473,599,2431,2305,702,973,1835,557,698,2231,560,869,159,772,320,1890,2027,1852,863,1038,1206,1159,860,1478,846,1228,998,623,1002,2276,2514,2338,314,2418,1052,2490,2320,406,2267,2383,395,946,730,1706,1933,1662,1837,325,701,344,1906,2005,2402,744,2482,989,1870,987,1967,1822,828,1887,1107,2238,1012,2210,919,2006,633,2022,963,1203,1481,1671,1419,1561,1689,1815,1425,2299,1578,2328,1620,1668,1580,1536,1876,561,2107,1028,879,1390,1984,1753,944,1684,2403,551,2474,1623,2015,1408,61,2521,1998,1168,12,1920,1122,1736,718,381,737,364,1896,480,495,2228,2138,1445,1846,2297,1456,1438,1408,786,1584,752,700,1595,182,512,2539,113,1099,605,1593,487,1735,916,273,1358,1364,2083,1935,2503,684,1265,789,2404,347,1503,644,2039,2255,2082,1731,819,1653,2091,862,85,648,1372,2195,1220,1108,973,878,1530,1277,2422,1526,324,2191,1860,1027,569,2147,270,1535,1956,1009,985,1472,459,1543,515,2056,2016,2233,851,1753,2409,577,2139,1712,2389,909,1336,889,401,221,609,1221,110,503,1585,2208,1269,1640,322,1320,2142,784,813,2301,2317,1915,150,413,1324,460,2490,1043,1803,1537,693,1194,1457,934,538,326,2316,1333,2451,1575,502,2034,1001,2190,1413,1890,2540,1124,1218,521,2433,1836,2145,2507,2080,417,2084,2434,2020,1554,1134,641,342,758,1956,1877,1841,1832,338,995,1124,1626,405,1099,52,2300,450,2428,176,590,1407,607,1668,1841,391,1470,2183,777,531,519,1565,728,1823,2412,1769,831,2351,1250,112,799,403,1151,1251,1767,1851,1435,2116,2479,2250,1716,1142,364,1869,1234,1696,1211,2236,276,1619,2144,25,1580,1869,537,34,224,1550,1515,2107,2323,2048,2124,2242,1536,923,1846,1714,2390,1690,1011,1763,104,1833,1464,1557,930,2079,265,678,1833,550,708,1580,1658,1584,1731,146,1297,860,1431,1185,2331,317,177,2527,1093,1111,950,1093,1688,130,1763,1605,794,976,1223,2088,1228,809,2255,271,1516,596,2292,1776,1730,484,2396,495,956,1460,1390,125,102,828,414,967,2478,4,872,617,882,1804,946,1914,2123,2454,473,1774,315,1783,892,1369,1686,1243,733,261,240,2204,247,2331,2341,2399,236,442,2387,2162,1660,1706,704,816,1826,2538,2344,1473,732,1542,169,1595,1568,1385,736,574,1247,1640,1906,2049,2522,40,648,1221,288,1192,2055,217,397,102,2033,2002,2496,2302,1251,1697,2349,741,2336,468,1874,1794,2331,454,545,973,886,1562,533,1755,787,13,813,1556,847,1158,1894,592,1095,1589,1141,1629,838,1148,1720,672,2128,1911,2012,1228,2066,1385,37,1511,2400,282,2244,171,686,426,1543,2426,1226,1678,2046,391,1025,230,326,149,468,1766,532,409,1931,1870,2112,2252,1784,665,986,2324,1276,1311,484,303,1263,861,1341,730,2071,2361,1622,1142,1520,1708,2425,103,1242,1490,309,464,1598,292,827,743,1956,1627,2360,2158,1350,1383,2379,2138,75,1844,211,656,521,1017,747,576,713,2491,1556,2150,436,105,1631,428,787,2008,922,390,1292,2413,951,1727,559,260,1192,1278,1750,1354,379,240,2387,1549,2175,27,1758,2235,933,1666,1125,2506,1730,1825,70,1035,350,2166,1193,1894,599,769,1143,1202,74,873,1686,813,1859,2444,791,1691,955,224,1698,858,2349,1519,2180,2002,2278,1292,1437,1674,51,2380,2041,2203,517,757,1146,1961,836,511,2308,1551,2494,2412,723,919,1246,725,1610,1273,1950,2178,1712,362,1967,1672,2512,1578,1531,2300,2475,1823,1791,427,600,420,813,1846,1138,375,2129,1153,1074,539,943,1089,418,926,1254,1766,2468,1188,949,2539,115,14,1175,686,0,2034,1806,855,1942,1444,140,941,986,407,2223,5,2258,675,30,122,100,71,1349,461,2482,1421,689,2465,2391,661,1971,1212,2285,93,2309,897,1130,1260,2005,1084,2407,774,2101,2257,588,477,1830,875,1272,2143,525,2108,1636,1205,490,249,2313,2388,1076,1814,1341,1237,994,999,2312,232,1189,593,2306,1305,1337,2504,75,1998,1575,2301,1164,1517,1914,190,2392,901,602,2148,1285,2320,1963,2223,2224,507,337,1995,1873,257,1703,1942,1036,1756,2531,1942,1834,767,1841,1357,2195,1433,2373,849,272,1740,2196,2472,1188,2139,1026,466,953}

    1485

    205

    Returns: 909868171

  25. {596,1800,1856,1647,19,1677,343,2067,2512,2439,1483,2517,1858,1638,2577,1234,233,256,1167,2098,621,841,97,1301,315,2536,513,272,1676,169,962,1569,1674,1653,1403,2029,1484,159,1073,1544,231,1839,1339,2011,934,1461,591,2669,2635,1510,2061,2276,26,899,46,2100,815,1735,827,274,2105,163,51,502,1195,716,2086,1302,1280,1995,1749,1672,1585,190,2576,698,587,2211,701,539,924,1739,2439,942,1654,1160,1305,1944,1650,2480,918,1917,1553,2140,1116,667,701,2102,1838,1039,2471,1593,857,1027,1923,1722,1394,1365,2325,1979,1396,2091,1834,382,595,565,566,2626,197,1575,159,2153,1743,892,335,1669,634,293,1256,1054,1614,1999,1321,645,2221,1576,911,1481,1135,1028,217,396,1980,1386,490,1773,560,2383,1897,1967,1985,2055,1702,277,1980,2275,483,2087,2012,2636,1958,1681,2055,2058,2579,2593,584,928,2148,1005,1124,2344,2402,1307,1579,641,1855,2208,1843,2167,1170,999,2327,1541,2529,2535,1708,2043,1270,2225,1965,2127,738,1227,2219,2336,2417,2511,182,1221,2044,1187,164,589,1459,1369,141,490,1130,2348,2403,1386,887,668,313,636,1857,1184,656,2115,2077,265,672,1455,463,2257,2208,1414,1291,2221,230,1700,582,966,1516,930,1927,2108,1956,329,1361,2288,938,1532,1493,1598,2225,1659,209,2420,2133,2485,1231,2116,1506,800,2288,445,1055,948,1791,130,2622,2224,981,2040,1262,359,2638,2255,235,2114,1236,2528,2003,1333,607,2283,1333,2664,1336,1860,449,537,705,33,379,1787,1521,2341,2298,2207,1338,2441,2466,2646,172,1170,904,1887,3,611,1604,415,1490,906,2135,312,1528,858,1492,756,2100,237,704,1341,1806,932,1310,2483,570,1343,1003,2086,288,11,298,1820,478,2552,1363,384,1386,739,430,28,200,1068,654,1658,2330,1739,2639,1775,1476,224,541,2006,1338,2312,1226,1557,1314,2312,940,1503,1429,838,873,868,971,1898,396,1164,2601,264,1507,1599,1015,1803,24,1649,900,149,954,376,1862,2654,1826,454,437,1630,2432,592,2362,1259,1951,1668,2638,2285,396,1362,580,1295,11,2205,247,95,1764,576,1786,998,589,712,213,2432,1018,2464,2590,2475,1496,462,441,163,2024,1864,1741,2582,1579,658,852,1856,1252,1626,2449,1099,740,2431,1177,1169,2671,2536,2406,2289,1683,1270,2494,663,1480,1956,1971,1736,1311,155,2223,540,2399,1170,1481,1873,2604,1500,1094,168,1295,2292,2674,1928,899,1110,305,80,494,1942,2420,274,954,2284,269,2655,1524,2642,1681,1946,572,847,2507,2629,554,2648,244,1911,776,123,567,1437,1956,324,2269,2157,2563,237,2508,1025,1398,1357,2610,2319,478,514,1233,2032,418,653,2227,2513,1064,81,310,1727,2068,1524,672,2271,1355,481,2143,2504,1461,2587,1284,755,670,1828,2164,1833,2610,738,2385,785,803,518,1100,2093,704,2562,1370,1955,1864,214,239,1412,376,49,944,1555,540,1695,1172,1558,680,2421,2086,1211,2569,1783,2078,2407,2385,760,1818,602,2261,397,2448,206,503,879,2085,1124,1975,553,1935,194,1842,295,111,983,2355,2672,491,41,549,132,979,883,492,1358,1670,1295,122,1349,2312,432,1258,642,1042,2645,820,205,1348,1959,1738,240,370,788,2131,2473,1114,1512,2186,1090,1759,1237,1136,38,1587,862,2588,1211,1399,762,615,202,1323,2406,2059,276,743,1631,884,2332,2238,151,949,1593,2297,75,767,2374,2196,883,1215,1484,835,2420,2627,2564,1220,1583,977,1867,2019,393,607,641,735,1767,2024,2388,1090,1141,247,1452,2196,1606,926,1313,2596,1629,1982,772,495,1733,821,342,399,2044,1809,785,2512,739,1471,2343,936,2480,1869,1602,1880,1898,2181,593,2545,472,1955,26,1344,983,619,230,1235,482,2009,2208,1298,1658,2272,1892,666,1537,1348,1849,2034,1146,1751,59,1500,620,1477,2447,1201,2497,1435,1873,811,868,734,1705,1767,2611,2276,1448,1742,2218,482,1590,1115,1547,2196,216,1513,439,1847,53,1132,2312,2640,1432,1664,2182,1863,726,1545,457,1680,1455,649,2534,875,1226,1616,2276,1223,1202,440,1075,654,301,1511,2472,2346,647,2671,547,1776,1129,1233,1118,156,527,1272,2584,1092,1120,2283,1190,2036,2408,1675,624,878,1515,376,238,844,1671,326,1688,193,2461,2198,1733,698,268,421,1622,621,1633,1943,2448,1847,996,1433,682,322,885,1228,2652,1830,1569,1591,279,1970,671,318,2530,471,932,1489,2172,361,836,781,720,354,423,1834,288,482,715,1121,2486,2090,586,1284,1014,467,1093,1963,1931,258,249,533,1253,246,2628,970,1816,1542,1623,431,1865,1033,1569,2514,869,765,712,1251,727,1107,2318,1837,250,281,2485,1020,1992,1049,1798,70,2456,2431,1303,2591,2111,611,2078,939,2261,1075,1407,2599,59,239,1859,988,2249,1913,111,2460,1789,1928,1381,1528,420,648,155,1066,1585,56,2315,2669,1301,1378,1696,775,331,179,2098,581,657,1646,2525,1537,418,65,1162,2498,351,1336,2549,1652,766,241,2392,197,656,2016,1348,2620,2567,1535,1560,1176,910,1537,639,670,767,1801,2124,2398,1277,1252,1568,2461,1211,2444,569,1261,1494,163,732,1549,2559,2461,1746,1049,2629,731,426,690,1823,2244,1640,1485,1036,694,2110,1080,2453,1272,1878,737,281,543,1285,2490,2443,1626,1627,130,1078,1638,1874,908,1270,1082,1011,1097,2671,1308,2420,219,156,2058,570,135,678,1988,2200,2021,637,1466,2388,1420,2348,2324,1477,2302,1520,1858,1793,1274,2062,1442,1044,2030,88,2500,2563,651,1080,23,90,2661,1417,1331,1081,2036,209,348,1366,891,96,2577,755,1184,1410,886,94,1480,1913,1687,1778,2055,477,1617,1351,218,1599,2612,2085,2657,1915,1966,1411,330,2082,2569,2315,107,2513,469,243,813,357,1671,143,2491,613,1298,1482,1739,2675,136,1306,67,2127,1450,1682,419,2631,1016,134,1750,2420,2540,724,946,1150,724,1970,1274,661,88,670,369,156,568,1059,1402,2148,1914,1588,331,2115,954,1509,539,1427,2609,1832,2265,31,783,1022,79,442,2460,1467,1849,2155,1761,904,625,1259,2193,2280,658,1374,221,896,1033,2256,2491,58,1746,1912,2606,2524,541,364,2434,517,1579,2522,1594,129,1440,1093,2599,1781,2466,845,852,1760,1691,1120,207,734,2069,1233,2205,1134,2100,1794,354,512,1765,74,2495,283,110,1164,340,727,575,797,2072,1909,1571,1061,612,1570,1341,628,1824,192,1347,1740,1128,2433,610,1204,157,2386,768,855,2391,2054,1542,1056,480,463,1707,1522,165,728,2636,1316,2556,2235,183,553,1922,2487,1502,2661,126,833,1328,1147,1542,2293,1208,2261,2620,1051,1580,972,796,439,1070,1034,1506,2424,1759,1869,325,1492,2598,759,2049,914,1313,2039,2105,209,2561,762,2288,1070,2422,1886,1281,833,1280,1160,2302,1202,1658,1762,1295,797,1871,1798,4,1313,2188,1126,1806,408,1734,1092,1917,925,906,786,1424,2188,1094,1044,2,2056,2605,1566,311,913,792,1530,757,1159,1486,126,479,898,1468,1569,2311,1209,162,1569,6,1797,300,2085,2043,2667,2296,2081,2650,2157,2666,24,655,2288,680,427,1121,1474,2400,952,2565,246,1554,2543,590,1177,1174,1941,918,1132,1484,1217,2421,918,1501,1284,833,1778,839,445,1417,471,357,772,1404,779,595,799,1053,669,109,2516,637,1799,2159,1444,2015,1147,562,1596,1319,1979,1340,474,1164,1607,728,546,1602,347,2106,2345,2602,2401,975,693,1168,113,1173,1520,209,947,1978,1529,2547,1961,2522,2299,13,800,2393,434,2174,2283,755,1758,2326,995,2650,1613,2008,412,1685,937,1296,1863,1049,1313,1327,564,2447,543,1404,1493,1036,1335,1051,1327,714,992,985,1073,1247,651,1810,230,1635,1193,187,1838,1641,428,2068,853,1532,949,2103,1038,941,653,561,296,1953,1975,1032,2306,1913,2319,1899,1742,1975,903,2305,2113,2261,2509,1184,1784,69,128,2238,1798,1857,87,2629,2669,2309,628,2165,1418,1171,482,854,498,1298,1693,2389,236,2442,1232,1424,1421,1910,1011,691,2261,2171,404,2320,1259,902,2262,252,2077,1992,2325,1449,1451,1068,668,466,1259,1186,1979,1940,1834,326,1997,2439,1886,2264,2613,358,128,482,75,2446,571,1923,2262,670,339,2302,1866,977,749,2410,1149,1153,2363,125,2308,1138,601,2043,203,2426,282,628,846,1699,102,2162,2196,2327,2432,567,1860,1417,1587,971,991,972,1577,1831,135,505,2416,73,604,945,2313,50,1381,308,1658,2201,366,308,944,357,2512,2220,591,1085,2204,2521,2433,1111,368,2537,375,936,2393,1824,2253,2571,152,684,2102,776,666,1848,1900,1280,535,2217,1186,1655,46,2250,101,119,2261,2476,531,2261,910,1295,2029,1731,2323,2221,1158,2099,1113,1865,2290,2133,708,1210,977,736,652,2216,1831,1287,1703,36,1331,1797,21,492,2546,85,436,1889,1244,1634,2392,486,2378,209,2651,1411,2243,14,1167,1826,1940,843,675,1653,1298,2621,1034,1170,1237,1845,1236,1854,2279,383,2522,2518,1819,1829,1413,825,337,1441,1858,355,1246,412,199,54,1572,2339,710,1988,914,276,1017,2221,730,1834,601,1223,1658,2242,2355,455,30,128,1534,1524,658,1707,1995,375,1865,2333,2417,307,283,2430,1445,1046,425,1193,282,952,2343,521,1243,2143,665,95,2513,2251,1367,2419,546,2614,322,2650,123,2315,2286,480,1103,793,147,42,1466,1896,1624,1493,1744,2531,1612,2440,786,1169,1956,1499,595,339,221,2537,2636,2417,887,1550,489,61,1249,1788,2254,1998,1399,617,2359,1045,0,1745,2314,2513,1785,829,2338,2672,1438,2623,594,16,2621,450,181,805,709,2237,1124,2258,461,909,1887,933,607,1929,2644,1419,143,1170,2134,49,2587,448,1312,2052,1451,2020,1951,561,485,2168,463,77,1474,1236,232,833,955,947,1502,502,1390,971,377,1827,1711,278,1556,123,758,861,2293,445,1146,1643,1623,1492,885,1029,1686,1224,2024,1875,2397,1945,977,2023,507,2381,1442,2592,2518,943,813,126,2553,1110,519,320,1441,2265,1069,1905,2271,112,285,184,453,245,466,2554,1800,2427,2184,2196,883,776,1214,2297,776,2209,1595,403,2115,2556,335,306,835,120,1140,1698,960,1852,1315,601,308,32,2098,646,2617,1471,532,1222,520,415,562,1733,668,1313,2144,487,345,1472,1902,2357,961,2655,1040,2566,845,1724,2381,1979,1255,817,1092,291,236,782,1371,1065,1325,1422,1139,1988,1314,548,2194,532,2398,185,1146,522,2059,2328,1923,583,2492,2018,1717,119,1093,207,1760,793,790,1865,1658,471,1895,2600,1643,1803,1342,2084,1309,1086,2175,1568,515,2649,1564,1767,969,553,410,407,129,2673,2447,234,1295,163,419,1543,2261,2599,1078,723,2171,754,1490,1353,738,1980,1315,71,828,2150,1227,1643,1736,2286,2155,2145,1542,747,482,659,2081,149,2136,2601,1610,835,918,2028,2515,258,1587,57,2276,1414,856,2668,1491,1180,828,810,1509,1298,1760,1422,1197,827,231,806,1282,296,2267,2088,2602,637,1903,1498,901,1123,1835,558,1886,490,26,1570,7,1489,141,39,101,351,1264,336,2491,2477,2390,2213,2459,1690,62,991,730,1775,582,1586,362,575,2499,1124,348,856,222,346,2534,878,530,2549,543,409,386,2232,1425,1979,2126,2615,786,1074,2297,1791,1270,775,1222,24,2200,1068,1174,1681,2657,1251,481,2544,1983,816,2480,897,1829,158,967,1314,1175,1559,1266,2261,2534,1445,1001,1543,1654,2261,1959,1881,1079,413,1108,2387,1431,1675,331,117,267,2315,2079,715,1804,827,2185,2125,2085,2003,1642,891,921,133,1357,1239,2218,2231,336,765,1455,1212,199,22,682,1795,626,1549,799,1673,1230,620,918,2322,2006,92,2348,1510,2194,1772,2063,2441,1096,545,100,1284,2628,88,1173,1740,2276,2190,188,296,1223,1017,1560,1642,167,1485,1422,1333,1457,1368,1647,256,79,2335,809,187,89,1638,2244,2454,2270,76,796,850,885,780,996,662,1366,1522,2617,1312,1230,1735,1213,452,2659,2243,1231,2380,268,1424,398,1207,945,480,2153,865,1923,2617,371,1068,304,1768,2100,349,2274,516,1954,1480,997,813,441,1692,358,683,1975,2512,379,641,1816,633,2588,2290,327,190,535,1951,1329,829,907,2237,418,2352,1920,1326,2189,837,1814,2671,1310,83,1921,2044,2637,847,300,2319,1227,295,1480,246,2049,1241,1561,1966,2472,1175,2461,1968,686,1229,1658,1338,1298,2670,794,527,2616,227,309,58,599,1032,2610,814,2150,2334,48,1145,1765,909,2325,896,1530,2573,563,1626,217,2391,1867,2405,2169,2085,380,2267,2171,2060,715,636,203,1263,109,1076,557,2241,99,2370,860,544,1841,827,1867,1592,1799,1891,1063,2337,2221,2068,2429,471,2658,1177,1830,1671,1483,257,1656,2328,831,1785,745,1003,1696,130,1084,526,1223,1769,970,2020,1573,1004,1048,976,1458,398,66,1638,1980,241,792,20,1161,2007,834,981,1774,1048,492,597,1439,2527,1713,658,2243,2533,2046,2535,2466,101,2037,2240,2010,511,2660,2396,290,742,181,265,496,1154,1874,1972,2220,604,2587,451,1578,1380,2412,1095,736,2044,1327,484,2102,2344,40,1301,2094,1074,276,2638,1585,1668,1484,2512,1284,901,1402,1244,656,748,765,1146,2470,2004,2122,785,2315,2072,255,2119,464,43,267,1305,230,186,267,535,2391,813,1563,495,901,802,1763,1605,2214,2282,910,2105,1222,628,477,2671,40,828,1415,2671,2658,2297,1027,1292,78,1276,1521,1493,1737,1068,2134,2587,1636,2218,827,1127,828,106,2070,523,2163,1967,1209,2489,1434,2675,913,826,666,2636,396,553,663,670,71,1658,886,655,745,2472,2649,2283,484,725,591,1993,717,214,2361,446,410,1040,1254,1590,2279,2066,553,2537,1105,1432,2428,1181,1956,1966,629,2314,366,2117,1182,2076,1918,522,2575,575,1284,1072,2541,490,1589,1730,307,918,1967,122,1917,2588,1709,2089,1811,703,1531,1982,1424,1970,2188,2356,866,562,2030,1057,621,383,2521,687,203,386,1465,2293,302,1468,111,1131,1230,1770,1665,420,404,1733,1563,1284,641,376,2220,2677,1730,1222,651,367,1556,889,460,2501,785,2120,1208,2371,1543,1270,2295,658,93,287,495,2095,796,2254,1413,2416,1344,2599,456,340,658,137,1998,1190,234,326,308,1113,1414,416,543,886,1657,376,1017,1939,2557,282,1006,791,1381}

    {455,2137,1604,1689,1026,612,703,168,482,1862,154,970,10,588,870,2314,851,1364,508,672,222,1011,1708,1451,18,1699,1451,965,1299,2108,870,1119,476,1579,335,762,282,894,559,340,524,1027,881,2205,1950,1506,323,1782,2024,1048,1149,620,1654,1201,2608,1168,2052,100,602,1248,670,1517,509,2539,911,874,2030,187,2050,2351,1814,2466,333,102,1565,1029,2301,1711,706,1998,412,579,1521,1623,1440,2281,2020,475,1536,851,1239,773,2180,374,1483,1416,833,321,2550,2034,2315,2256,1108,1041,326,1843,352,827,482,1671,1808,2010,2297,1706,1973,821,2243,2394,1397,2418,1716,983,1241,2260,1526,2203,2354,165,1626,2302,2417,196,754,1216,2414,2512,2018,348,59,1112,373,482,2320,854,1936,1192,1137,953,2136,547,892,598,909,1400,1595,2242,672,2098,2485,281,2154,1671,1620,176,408,1751,884,1036,1815,1468,2147,2007,2498,1181,84,1542,1700,2413,422,105,526,1341,668,509,2493,2377,1418,494,2261,628,2188,418,1085,2283,2451,139,2004,668,600,197,2431,1002,1027,1462,1279,323,119,161,2306,254,1037,2144,356,1013,328,2276,525,760,2567,1187,2466,840,1446,198,217,841,2542,53,1107,768,1984,1798,1454,2330,209,2264,781,1922,1333,2136,1402,970,2006,794,2389,476,73,754,2100,599,664,1728,2526,437,502,849,2518,297,1475,1985,390,1732,379,981,1684,1226,2407,670,590,805,1690,752,1623,1976,2408,2439,2669,984,1720,148,1715,1747,170,1955,2403,212,2277,461,336,2167,1117,1142,1223,1851,1638,1509,340,799,2298,1868,191,802,2538,91,1313,1242,1807,435,1577,1970,495,191,2179,1726,2366,1987,394,160,985,2236,578,2102,1068,177,1435,2010,697,1933,5,2115,710,1872,396,1721,114,2459,131,1203,449,817,2021,2580,1482,281,984,460,613,1121,634,1372,1043,666,258,863,1542,1414,579,506,2041,2139,1141,1671,1147,9,2502,1303,668,1189,2274,2407,1824,2460,1713,1048,1434,164,1795,1694,838,253,2460,1658,2628,1073,1068,1989,2436,1564,2014,1285,1975,977,2565,231,1791,2613,1383,1623,566,2060,550,1310,535,1893,1928,432,884,2269,891,956,510,633,2524,994,613,282,2195,2614,2664,752,1523,1559,1747,1128,1369,1212,1891,45,1496,745,363,2467,1693,774,22,946,838,2644,2128,711,167,1331,683,1396,181,620,1278,1967,531,2662,1587,945,713,143,286,1628,2325,1220,1387,2511,571,1789,2519,1443,2326,1475,915,2011,543,1320,2510,1085,118,1274,1698,844,1493,530,1637,2508,1458,247,853,1473,2552,1530,1533,1847,1993,2630,2158,1417,1710,1007,800,1319,2589,811,1779,2232,819,649,579,796,1284,874,1287,445,1975,2210,1890,1885,180,632,1087,217,536,2243,2203,2629,1471,2035,1419,765,886,2513,1688,192,1191,1168,738,499,2078,1347,382,1934,747,336,606,1009,2658,1209,594,2117,1274,1752,1447,2284,556,59,146,1712,11,275,1289,1699,166,1237,1140,1144,728,247,1556,1787,433,353,1701,2371,159,2658,2098,2269,1552,2493,2417,332,382,1086,461,1091,2283,1373,2263,1681,1655,607,1642,1749,1559,427,1950,739,519,344,2371,1505,895,1145,101,1940,631,142,1558,1924,116,1034,863,80,2180,1416,2529,620,1942,2636,2176,2486,1536,985,2624,852,1352,1484,1729,1164,1477,957,1022,714,1993,1577,1422,1036,2487,2486,1416,2329,1322,2492,34,565,2574,1423,1043,2305,103,965,1457,1036,969,1906,1679,25,1434,1714,1816,1454,430,1524,1951,2594,2072,1069,2474,1487,1285,1633,2265,656,919,2141,905,1333,2318,2537,2066,2511,1633,1805,2150,2672,1847,385,459,1623,398,1555,898,401,1739,93,1143,158,2203,669,2066,876,2219,1770,289,278,2446,507,923,2298,1282,2018,1708,1158,2283,1558,2316,668,1274,12,655,1208,1960,364,987,2518,2597,1816,1912,2331,2448,1458,1198,621,2439,1862,482,430,1441,2457,1861,2551,1000,1135,2044,2364,1115,789,1991,2300,2051,470,2291,604,1783,64,684,1124,1299,1601,727,640,1538,1755,1636,2390,1551,1699,214,867,909,1436,220,1426,1267,173,1595,2610,1286,1468,738,1458,171,1096,1035,727,855,752,852,1873,2529,2478,365,833,1761,2018,1012,838,1317,1976,1693,1343,586,48,319,1888,2590,444,1625,189,1319,2347,623,2133,846,2055,1109,361,1617,2276,1206,733,1223,1188,1250,1696,1488,1208,2292,2381,644,850,2376,922,1508,2026,1642,2115,266,2601,536,457,729,242,2425,912,201,1949,2302,2603,1843,2329,1120,1083,1645,1461,2372,1359,2343,2181,2304,2031,1453,2097,1059,482,290,948,702,1052,1585,2662,2586,1929,660,2140,348,2637,2482,1972,1288,380,1274,681,776,650,2469,477,1165,1700,2524,738,253,68,2215,1979,126,1455,1874,951,573,1230,2662,1976,1813,910,338,2189,2572,1581,1385,211,371,1382,1530,1151,810,1186,1979,880,841,1741,2368,202,230,2273,1970,1347,452,643,1797,1229,664,2452,469,780,102,2236,2018,59,1284,2166,1457,381,1120,1300,1395,1901,677,818,1973,370,686,2467,2582,1992,255,880,771,1701,2336,1138,99,1638,2221,2168,1792,1603,2186,1022,1396,250,2002,35,2465,2387,1761,139,764,2548,2409,384,2480,768,129,2516,350,1060,2207,1022,1315,554,935,1238,1575,645,2033,1147,2266,1551,1140,1377,2498,2321,664,216,2185,672,889,1341,2025,2462,577,2394,2104,2057,2365,506,1006,534,2098,558,649,1975,2504,1691,1850,1756,1633,1069,130,2293,1053,195,2343,539,958,2319,2669,656,891,424,21,1022,709,1811,1798,633,780,1593,718,2203,2347,1846,728,2398,282,31,587,1735,500,1524,715,327,1658,1124,2170,698,914,1514,1077,198,1887,1408,2447,2643,1712,2620,1617,1252,822,2485,108,2560,2628,655,2248,2663,1773,386,1482,417,1283,2414,1271,1661,2043,265,282,1548,2228,465,2428,1648,2051,2397,2505,1952,1097,2216,1125,2403,751,1928,868,72,1947,959,1876,1484,50,666,2027,1996,1754,2641,2206,1759,2615,654,939,2123,324,2468,2310,1444,2636,34,616,442,1350,60,899,1674,1255,1478,1540,1314,1725,1663,2665,2583,200,335,2322,1146,626,1525,271,2268,580,1805,2667,1076,1960,1137,619,1528,1757,1981,1345,450,809,1562,1426,2661,335,348,1538,2389,599,1799,2512,297,2107,1105,2068,2507,1015,1833,2173,312,1493,2639,674,1270,832,841,888,1498,813,1990,978,2495,34,1927,1419,1571,1277,977,2327,1211,1711,1636,2433,1509,2340,1788,1836,6,1310,1932,2198,528,945,1713,1821,1713,1790,2081,428,1111,2221,2047,450,1460,196,1717,563,887,61,656,232,2188,1487,679,1687,1419,2634,618,175,608,221,683,26,1882,1431,387,1400,2189,2276,2388,176,593,690,1974,144,1621,2384,1521,2521,798,936,2325,663,2246,2330,1580,543,1000,439,1811,2661,2459,2091,1830,468,2018,2036,1483,1300,1326,2402,1524,1929,2415,463,159,752,574,607,832,2327,1883,2472,2066,1792,1973,10,634,1448,2291,1638,556,2172,941,787,1360,870,807,1086,2367,2177,2194,787,1919,1027,2182,121,1220,686,2053,2351,2183,1503,2576,1346,2349,1255,733,672,1743,2196,2639,1088,8,1790,733,2239,60,1853,1317,1218,418,564,2351,808,693,1296,58,113,1432,1802,2001,1075,2384,2000,441,280,1727,138,2422,1272,893,2118,1639,1031,1181,2397,1714,273,1711,1186,156,467,2541,1820,2065,2283,1341,1448,1934,237,674,1740,2647,1540,2596,453,2219,917,1611,1334,2637,2181,2127,166,2069,2133,726,1870,1556,1886,1325,502,1719,487,2043,1498,2602,2561,605,681,1309,2019,1104,1089,788,1822,2053,1886,2437,1356,1236,990,944,2132,52,225,765,600,532,728,2373,1863,1774,1607,856,2173,1587,1470,1703,2221,2018,1574,2632,364,1666,2342,1026,2006,2017,1552,1964,1210,972,360,700,2491,1654,2006,1859,1224,1859,977,2025,292,540,72,1581,864,2618,2213,2035,1186,303,535,1986,188,127,2290,594,638,2042,1597,1417,17,1947,2541,650,2488,60,1456,2568,2638,396,2595,1106,2252,223,140,2048,56,1,1392,1586,1101,980,2338,1168,1372,209,1719,1284,668,2204,457,1943,430,1067,296,2555,2057,150,1299,2313,654,682,1391,1266,1918,1861,2636,734,1300,2269,1170,1243,230,1849,126,583,33,206,1875,2187,160,1642,445,666,1899,2617,2251,813,963,499,2503,37,841,2118,594,1975,1062,1935,2676,2171,2105,156,2229,1257,2570,870,213,1479,2053,1683,1138,1273,263,1456,2658,555,1330,721,2202,2146,2439,2176,1812,672,1043,70,1309,448,614,2027,842,2065,1354,2038,160,2041,666,918,1318,2485,1958,1123,1564,1751,2362,1152,1699,558,327,1916,282,1575,1227,2263,1599,268,2420,2479,1226,1047,2167,830,848,1610,627,2573,1297,2444,2005,1642,495,492,1904,1838,47,1265,1344,299,427,26,1048,430,449,2145,1775,1582,90,881,927,327,1059,2192,2129,2218,789,1089,396,1008,1593,2496,1464,2007,1326,1381,2666,1988,1607,1068,1419,54,1480,123,208,594,924,1016,1171,2664,879,1711,735,1200,2323,772,2075,696,987,145,2156,244,413,334,2064,378,2078,2249,2318,1917,989,2167,2625,1183,1375,2199,1355,1150,1988,452,1185,1694,2078,2383,744,1767,538,1438,405,1593,1604,599,2537,2562,796,1837,143,390,916,2138,447,2636,882,1368,1895,2049,929,887,2278,726,1683,1937,204,2458,2548,2243,992,832,468,777,1178,2435,1133,2520,1786,2678,151,1424,361,1000,717,2073,2304,2157,2000,1368,1164,1126,1762,2291,1262,2382,2267,260,2562,451,1660,2232,2523,1651,1341,1683,1524,1551,2092,801,1432,1163,442,2152,501,2189,1495,319,281,2142,1411,1962,1211,2631,1584,228,2307,29,1572,1535,1380,2188,1957,755,1619,82,1708,497,2044,1549,314,1388,395,1131,910,1253,234,1904,1519,451,1494,1840,495,2598,2438,1687,2610,1632,1162,1908,594,1007,2562,299,1804,2234,1024,2322,2638,2403,1721,1384,1617,1691,1355,1730,1350,2083,2055,1780,2225,871,1379,2325,2407,1924,2627,1980,2197,2627,1220,2665,732,498,894,178,2622,1497,2245,2193,542,82,31,963,920,406,853,2395,1500,1184,475,1678,488,2167,1756,2379,1381,2381,1310,1662,1334,1268,1561,1160,516,1865,218,1267,316,380,1984,1593,36,974,1596,1410,284,920,2024,605,1046,963,445,2382,352,358,968,543,2460,2432,2404,1156,693,593,1087,661,728,1044,490,2375,2009,2014,1269,1112,1092,2180,1803,2261,2068,679,2020,956,2573,795,44,174,2074,1658,40,2525,2322,287,219,144,473,402,1896,2443,2233,2672,444,122,1389,1502,1825,2436,1483,2065,738,2178,495,41,853,1272,1265,2009,215,1194,2149,2022,949,1561,1240,770,1027,1642,236,1329,706,2481,2500,1896,2419,1686,722,1925,1708,812,695,392,2080,489,1092,100,567,1527,1406,965,1026,1211,2427,628,1368,1514,1138,1420,21,1723,685,1977,2536,2575,605,400,1217,1184,784,109,670,1292,2112,1666,566,2013,2428,2294,1277,5,1470,1356,1638,769,955,1569,2020,993,2380,1781,995,940,2330,1926,1311,824,55,2059,2656,2441,1220,1401,2672,507,1003,1399,1730,1938,2570,71,1430,1985,2351,2298,1469,2353,495,261,928,2019,765,899,1966,2624,1239,86,1564,1223,1274,2007,1496,2225,1729,991,551,2287,1672,2458,519,2633,2460,2343,838,448,393,1324,784,2422,1675,1550,2507,2161,2619,1818,282,1292,2230,398,2453,274,738,245,1472,1478,2044,2217,1436,2552,1023,304,2411,1885,2640,1907,2362,778,543,1533,2350,1237,482,226,1687,1158,1894,1315,827,2370,1380,439,2585,1199,2223,1290,2130,1531,2280,622,438,1132,1504,2399,2225,495,155,384,1667,1419,1458,2081,288,707,443,115,1771,612,391,1843,1604,719,1609,1166,2101,1190,2112,2071,2163,2312,1796,2217,1148,205,859,312,1337,2508,1349,918,495,2143,715,1035,1248,603,2416,1626,2177,1285,399,1655,2513,2649,1293,1074,1020,864,2276,2599,2267,1205,1295,1792,1167,2068,750,1638,2467,2205,823,506,460,2212,258,1275,673,2259,1983,1492,2423,1284,585,493,1264,496,1927,1139,2024,2521,208,1636,1807,756,1191,1839,982,2607,1524,1463,1704,249,1304,2151,1593,2532,210,1338,352,1697,1858,2523,1333,2163,1238,251,2463,95,944,1906,2455,2461,1878,1198,842,2109,857,1777,1883,2070,1279,371,1058,1600,699,458,2675,1046,1101,601,1252,890,895,593,1086,1301,982,1292,1019,1471,737,1230,804,1499,2071,111,1569,1438,1857,964,2466,2247,2464,67,1658,1492,2141,2290,119,877,1969,159,1190,411,740,1046,607,763,629,2276,2360,2553,2215,153,1930,2583,948,429,1997,1295,521,1482,259,270,2446,1885,644,1022,1993,2216,529,1236,2358,1838,1891,2512,1558,251,2638,603,465,1814,2417,2098,2554,1021,1050,2316,635,1432,200,1196,1310,2229,829,51,1506,2045,27,529,1748,2096,1539,2392,1835,1422,1929,2263,1708,702,761,1844,1305,2481,902,104,328,2484,667,214,2456,449,2369,1694,2417,2258,1053,26,544,26,296,1976,1852,1604,1568,630,2160,1982,43,609,229,1645,884,1346,1343,1871,1022,2087,124,1644,872,1102,2303,1900,1157,552,1245,802,2121,1884,2617,582,2498,1480,315,2226,2536,688,2551,1807,1409,342,15,1906,1863,119,12,1067,1311,317,414,1518,2580,827,570,2070,2197,141,1405,1608,1877,2237,935,1252,2105,1615,676,307,931,697,986,2653,2210,2473,2462,2044,341,250,282,2610,8,2024,1488,317,936,670,1603,282,372,2577,840,788,809,1948,971,1800,1994,1223,196,2227,1618,1753,455,2569,1696,467,1270,983,295,1760,1645,1155,753,2191,2558,1633,2276,379,2148,130,1567,1766,1260,511,1802,1863,1575,884,2643,973,689,1393,2512,2283,741,2506,448,1879,658,1941,2356,1176,1440,1693,1174,1792,1031,1027,1332,1585,1098,2495,2169,1131,1072,2291,482,294,1376,1805,898,2178,2650,1219,2612,1014,682,1817,504,388,797,1836,1122,1510,1120,876,248,902,1954,1462,2378,767,746,2041,2428,1043,2450,2480,2581,2604,1626,1782,2652,1546,2115,1030,1010,2289,2669,2399,950,1428,1393,1771,1744,758,2180,2445,853,1225,1071,1718,1086,1620,101,2317,552,1294,1447,885,488,850,1269,262,2222,2018,1283,389,1118,692,2447,98,2578,1179,1419,2100,1979,1654,1505,2569,881,2672,1877,2148,765,63,1080,1724}

    2239

    1116

    Returns: 659500067

  26. {1037,641,721,151,549,41,1530,2112,1796,1594,1875,1097,1708,947,1348,1758,430,297,1822,1576,16,1954,2005,2030,1,560,1954,134,2173,1147,1095,446,1898,1771,1472,444,216,336,1733,688,2179,1771,1315,1664,1191,252,1323,1157,1636,2042,419,125,888,596,1103,299,72,1786,918,1183,354,796,1018,966,1143,2002,847,2107,260,1036,340,83,724,728,884,2082,800,885,1450,2186,1187,2234,419,158,448,124,1448,2092,1485,1881,124,951,1832,1634,1013,1102,466,1668,52,1277,1347,935,2152,1307,1165,484,894,1290,1487,1611,1238,2128,1751,96,1008,869,366,1824,73,434,2103,746,1646,1331,188,857,1909,527,1519,563,1108,675,1242,513,1507,1640,361,802,157,29,1726,1112,524,990,1634,969,1789,2029,102,933,1823,86,2232,2158,509,369,1434,1065,258,993,1012,1924,898,1174,2162,194,742,1615,72,1461,1490,1931,1906,1320,435,2105,1514,460,526,1048,1943,2080,1421,2158,1317,294,865,2212,953,51,1899,1729,1081,2121,1517,1834,904,1230,705,2120,1099,599,729,291,1651,843,1779,137,1444,2024,1130,2191,857,941,994,88,181,327,566,1380,211,1852,1714,1516,1702,1719,1716,2158,1683,116,657,1800,127,1868,98,503,31,19,148,983,172,321,2240,1153,707,284,1718,878,1854,872,697,637,2143,1361,2060,36,876,287,412,121,1882,695,1566,442,1577,1598,1570,699,1803,98,562,64,1387,10,782,1547,2105,1580,898,1757,585,745,1580,165,1225,1488,1405,511,1355,2147,1996,1190,660,153,938,1054,1375,290,357,1806,2230,1956,1028,219,1894,1288,2050,2025,1033,1508,1597,548,1703,968,1342,1963,1195,1355,2061,1293,1413,44,1541,1693,2091,1482,2053,1696,1033,1972,1607,1543,1521,763,2158,1238,1814,1415,1656,946,325,1430,1365,650,629,2231,318,2187,1062,1842,2233,1333,901,2211,2008,934,809,1453,441,923,170,739,1044,1520,2237,1077,1572,445,2165,1420,117,1620,203,2143,1013,1401,1211,775,2047,1541,600,1024,272,583,151,996,372,749,1207,458,1032,1195,1767,287,2219,1192,1017,1453,126,1811,1380,411,1382,1581,241,1782,937,2146,458,2014,978,1355,302,1554,353,49,1561,1472,305,758,408,145,1082,1670,929,634,920,1163,149,1596,1483,1627,1403,598,912,982,645,2238,1464,1904,1264,1691,1161,860,1787,840,1645,592,141,268,650,1605,1243,375,1178,1103,1922,914,711,1532,1799,1838,819,724,75,245,754,1210,1458,1325,2079,117,1926,383,2036,1715,265,1720,625,2132,343,2178,2018,1610,1833,1221,2221,41,893,1665,1286,490,883,538,1099,833,1347,582,1358,42,1895,725,738,2230,55,2025,608,811,788,372,1055,153,533,1355,48,160,7,1299,1229,1901,122,329,1116,147,613,1135,844,1338,1051,1609,1900,436,1965,1355,1985,1056,2148,1956,186,1311,1884,262,417,1845,134,2077,463,1600,1926,1924,2159,863,1111,1939,1093,969,1802,1819,870,1318,787,1380,1140,468,937,1291,1079,321,197,363,1551,8,709,2001,658,1585,276,1028,762,1898,2142,354,1564,98,2155,2087,1742,1897,591,1084,1341,506,1395,1441,272,2210,1865,1959,1584,2124,898,1385,1005,1076,1574,1020,879,1659,1606,1305,81,1640,726,341,391,1572,1001,1394,1140,1822,1263,2000,1610,635,1376,1982,1892,1759,891,276,971,8,1905,836,1759,399,366,1429,886,1060,673,966,922,1030,976,1969,715,2097,436,1264,245,1044,773,880,448,617,733,1656,833,919,1688,1009,462,1984,89,391,266,2025,1961,1455,431,1332,1369,1912,2010,1368,1787,1527,1671,46,725,542,401,1746,1151,72,700,1036,2078,440,283,1623,2125,280,1116,87,1003,11,550,351,643,676,1290,40,1424,435,1208,757,403,211,1277,156,293,294,1744,1870,875,877,1890,580,2230,1317,270,553,2102,489,303,187,737,246,769,274,413,60,1986,918,2018,1766,497,2172,1295,989,1021,667,822,2100,301,1725,2233,195,1359,1492,1023,1302,1481,584,2203,1199,1144,2098,1205,1423,658,1346,361,2243,1136,1857,991,369,408,47,2171,1100,163,730,685,1761,1537,10,1393,1886,1229,1400,1320,1039,7,1930,736,1048,199,1463,551,2043,1984,925,1231,974,1503,34,748,265,1572,475,2169,133,988,53,699,1788,1677,2075,710,66,22,1019,1130,1561,235,1478,1813,1428,1814,650,413,992,237,1923,361,1432,481,1629,1016,1690,1820,329,1920,758,1506,1210,1645,1164,507,487,1900,1854,2106,1151,1300,844,1981,1244,232,2188,103,1459,723,2128,2120,405,2118,1244,1252,2168,2182,96,1388,2209,1530,1572,1842,1951,820,553,216,32,1494,578,353,1912,1531,1506,990,298,2061,727,1068,677,789,755,1309,2090,86,1639,481,853,994,428,496,1821,292,1290,1691,1342,2236,159,867,1947,381,1606,2086,663,570,1327,2007,1118,143,697,1530,699,703,438,1273,1089,2129,1082,2100,1882,1891,508,1896,830,1713,2080,186,1427,1480,1216,752,1140,627,171,39,456,1895,1541,98,2233,924,1229,1613,544,2082,2056,169,535,1758,1300,396,1728,944,2010,784,1348,1511,483,2174,1580,43,150,444,898,1351,640,1703,1146,1435,121,1504,1821,2005,1493,690,689,1110,751,821,2041,588,704,1466,1177,426,1709,1382,957,1561,595,550,1226,38,12,2194,1825,745,1683,2225,361,1993,1486,2047,1582,442,2203,151,1763,1219,1282,1493,625,751,2177,308,792,1947,1114,646,1694,917,2099,267,387,1002,1358,1204,37,922,385,1795,186,1355,1556,13,997,845,2004,2142,1412,592,1360,2180,399,124,117,1432,259,2114,1943,1835,939,1002,1099,202,1260,1805,1750,2077,1247,738,1647,736,1683,1840,2234,1171,1671,1087,1469,1420,168,212,818,86,1387,208,498,1001,1375,638,323,1082,32,1232,2225,2223,937,2127,1361,317,272,1826,1240,982,211,1785,255,1082,451,1276,1693,1443,1895,1934,2065,1859,1003,209,128,2105,1534,1425,185,1689,1389,157,196,963,938,1280,1310,579,923,1097,1966,348,1528,1007,964,1737,1006,1219,1373,1877,2003,2208,1054,259,842,806,907,698,1611,1584,2195,1276,1474,2000,650,1705,1184,211,43,898,1634,2141,948,810,980,1913,898,1668,1417,1776,1427,485,645,1337,987,1238,1385,2010,255,1811,436,1054,1310,1584,844,1104,239,243,1358,186,1459,670,913,1090,1641,1470,233,1713,285,1450,1865,355,1664,670,2190,473,138,456,1338,452,383,1624,1140,112,1072,1825,2110,1611,2012,930,317,2029,81,2103,1609,1021,176,1452,1258,2215,1046,1807,1974,1347,58,744,1633,2239,40,570,77,1172,857,90,306,1083,184,154,1798,634,1533,85,2005,1174,33,1500,332,146,857,1171,368,568,654,593,2048,325,1605,47,2037,1306,1819,1215,1792,1606,1548,1455,986,2189,655,2052,1819,1181,165,1104,589,300,1691,57,2131,1695,306,1639,876,1095,179,2030,1174,2059,676,875,284,2005,502,2204,546,1241,359,1380,903,1442,17,1083,909,1697,74,338,1228,71,1900,2207,991,50,1030,505,2011,1530,852,1808,1238,1264,605,888,120,1952,59,1638,1768,1259,632,2050,420,628,349,2090,405,1277,913,1035,1030,1477,378,1003,1507,678,1808,2198,1567,1700,285,665,1950,205,41,2197,1163,2241,1828,2102,815,1414,1855,1553,908,1104,495,559,1234,11,69,332,921,1139,1601,516,1562,2198,1546,2227,1417,514,2047,1495,1937,1334,779,978,686,1528,1930,845,2188,1672,1445,485,1179,952,1198,1170,824,664,1142,2148,1992,1686,1083,650,406,1409,1718,1073,653,1814,1105,386,2058,319,780,1364,745,2203,119,1665,377,1669,2145,996,193,2096,156,735,1321,1997,1025,1808,1140,1584,1176,1505,99,286,1861,1079,1533,1982,652,1753,1290,1078,1543,1285,883,1858,1958,1195,1342,281,370,449,1571,526,503,1028,1793,1382,2130,464,1517,1410,1589,75,2079,128,1971,1685,1406,144,1662,862,1313,1731,1690,547,1378,1492,660,1105,416,982,851,629,407,1287,791,1672,1593,1978,238,2032,124,199,793,2145,1327,368,1438,162,1850,510,1698,467,1140,996,859,2190,940,1184,136,1195,2153,977,74,2152,518,215,576,1417,618,403,2147,1648,1640,884,47,2173,1651,1524,206,247,103,1735,1124,61,1332,1996,2139,1359,1437,190,2192,2027,2202,637,1434,282,2180,512,2191,2175,1675,236,1124,947,2145,1980,312,1874,1120,314,1353,705,1564,2044,425,1615,53,413,380,692,227,140,375,606,1459,103,2088,1209,421,2016,637,318,2187,2005,2203,1602,1328,1445,221,75,1096,1716,220,506,1129,1045,1617,565,1628,1927,659,1460,1238,1206,1558,478,1237,518,1695,1885,1683,80,1042,48,105,1662,1912,1193,1756,961,1883,1715,2159,758,719,920,1663,1808,1741,1920,2158,736,1586,360,1269,2157,758,1819,194,332,329,1271,1165,1793,129,981,1973,2042,2076,766,1233,2227,1670,959,1665,1976,1990,1064,888,129,1314,1924,1617,2019,1568,1905,768,1543,468,586,1294,135,1767,716,1310,662,753,368,1359,1753,1155,1332,1918,480,609,167,1954,1906,33,1761,1842,103,1156,199,1804,1193,81,736,79,1587,1770,2187,1404,2083,14,1650,248,2068,1683,1161,961,169,214,1000,805,1643,1927,2159,2070,1326,1312,816,1306,973,92,1185,50,407,174,1732,924,1936,962,399,1978,702,603,2232,683,1446,1484,1844,644,184,456,2093,2047,604,676,56,1606,1629,4,1938,1027,410,324,1631,1872,339,288,1946,1844,362,1905,597,1747,767,57,128,1544,2049,891,124,1146,696,2010,1453,1819,669,2150,1003,78,1680,138,1638,605,1212,2149,1633,1588,1491,1478,227,1642,164,1759,2222,1560,1000,1606,1667,2222,885,1296,1246,1226,1447,2133,951,199,1886,150,1867,1956,1060,1606,399,1068,58,1988,1171,1673,1672,27,109,373,1369,996,844,1593,1792,1830,1830,530,269,1558,1317,1911,621,1536,1143,1238,1634,548,910,1989,803,1714,2005,201,1369,968,828,408,1322,848,1606,1604,1526,1561,1754,142,2188,86,117,1233,229,1957,1593,1275,2112,1592,1632,517,182,1692,693,253,941,1854,1612,592,912,48,468,756,755,314,1555,799,1569,1486,1041,1608,2030,1288,357,400,2095,862,1436,618,1939,1450,1317,1054,95,439,1476,1308,2226,1200,1426,1662,670,1437,239,1917,2171,34,1051,1592,1558,1426,1728,25,134,2106,699,1634,1523,931,1182,240,664,1581,891,716,1747,603,53,1932,361,1850,332,2154,1795,244,116,1148,576,355,1497,379,1693,1641,938,2046,937,58,37,759,581,1437,529,1472,161,1464,248,1995,1602,2066,1391,876,2054,1213,1764,896,1620,1828,88,804,413,1954,667,1384,1505,154,402,249,1510,182,331,383,1097,459,1008,938,1272,1723,1954,1290,2105,2117,331,1594,1891,508,59,2016,1790,2220,1334,1837,535,1495,724,1672,590,1761,1122,456,26,1557,1217,749,55,1252,1468,756,299,618,304,911,1722,1973,1936,2242,468,500,603,87,505,1658,631,1749,1727,1832,1788,2050,1618,784,736,772,558,1581,2221,727,1902,948,1418,122,14,474,1464,1601,1817,2052,521,1,1781,1844,1525,1496,65,2053,2132,1239,622,531,2038,1880,1843,1003,869,2016,1330,1051,1007,504,0,1043,1941,1095,254,251,1996,1895,1811,1107,926,724,1317,1118,911,1671,1188,1597,747,429,553,1620,829,2171,335,1326,1591,1297,132,1513,1257,1433,276,1612,2234,2035,1393,1960,186,620,1238,1980,2210,1452,2071,1331,279,1652,1786,1359,1608,947,124,464,361,415,264,330,1622,1629,944,1755,1080,398,419,2194,2014,1883,1288,770,1324,1016,1773,2224,595,1092,695,1952,1275,48,161,2035,1578,1994,708,1466,1858,1392,1606,406,436,2102,1449,7,1640,732,784,928,617,1128,451,1853,205,488,970,1063,2159,2013,1251,743,1999,1,1066,2043,2109,1272,1893,1559,116,2051,164,1618,1477,231,1874,1922,1426,760,1594,1016,761,1638,151,2}

    {625,1001,1283,333,1227,1986,587,675,379,1086,1601,125,632,408,294,873,11,0,1642,1947,792,1422,1189,1753,866,1218,715,1584,166,1913,985,2058,817,215,1962,1903,1427,1346,433,1193,1359,1116,810,793,1698,1601,576,2124,1504,1866,0,826,1379,5,316,922,1658,684,1141,428,2155,891,175,1146,56,1765,840,1846,1004,945,528,974,2164,718,996,1321,1058,876,2145,1424,992,1162,564,2226,1653,1307,1680,87,1606,1419,86,941,542,2136,1150,1881,315,937,2022,1657,1304,1660,1049,1363,618,14,278,116,963,1557,1465,161,1327,837,636,541,2107,218,316,1584,94,2244,487,204,219,509,995,1922,661,1234,1143,1159,115,1380,2201,1248,1924,1530,428,875,1326,1477,682,1250,273,211,533,289,1146,1598,937,311,1407,219,934,134,155,1961,1115,770,1216,1382,1981,67,2196,293,1831,2155,1621,650,2233,182,1289,1913,2015,702,1913,1512,2213,1466,2077,1743,1518,585,245,1783,1873,1045,743,110,1748,352,1354,171,470,1367,1450,937,898,1740,1530,1835,1349,1659,1397,1055,1308,1993,253,2223,457,1883,1184,1235,555,2047,1878,1431,1660,1202,1881,1325,42,2218,947,1331,9,2085,70,603,2020,326,328,86,1123,388,534,1665,2001,792,299,1552,997,640,1547,1458,714,746,577,693,358,1116,2039,381,471,948,967,109,403,864,764,447,1623,1900,2154,1706,391,82,1073,1262,1096,354,85,2034,1865,927,1260,189,1581,424,2060,1140,1685,892,1744,2234,974,1197,2140,945,660,1875,1226,598,2115,873,309,1028,600,633,1004,272,2010,1127,1112,285,1416,2059,781,1918,995,807,883,710,204,1031,804,1013,1765,997,1344,14,1870,1951,516,431,1215,799,1146,1920,1634,220,924,688,1165,2064,1774,1355,1091,572,97,1236,1709,1515,1684,1033,1046,1699,960,2143,1373,975,1902,2124,589,1955,415,911,580,1827,504,773,1246,2005,151,1968,1900,505,1142,1355,829,1412,561,1691,414,1063,790,1337,435,299,1704,2203,1750,1869,1126,637,276,839,1755,1240,2228,1186,1068,739,2024,178,1071,453,428,1183,1634,2169,2110,1168,2012,1606,1255,191,1342,1336,2208,2144,21,742,1117,230,1154,1915,442,1220,907,75,1522,623,567,2226,356,1374,209,905,1816,1286,1688,523,322,1040,994,321,271,1490,1360,1603,296,640,1266,505,353,1298,1847,140,2212,491,1753,2074,1606,2224,1739,1906,1103,739,958,1949,190,223,2230,146,432,977,1140,777,2229,2006,1813,1780,917,1372,1871,904,1877,849,1944,1060,895,1986,1649,1124,389,859,1452,1242,7,983,1847,70,253,331,1586,1421,1965,1125,630,1073,2239,293,329,67,1844,823,984,545,1835,806,1954,1916,1786,2088,72,984,2073,2233,1435,2047,1417,537,339,676,1692,410,750,6,1832,2028,383,456,812,414,738,57,410,203,951,760,2177,1367,519,1284,2166,575,225,106,2071,134,503,2178,585,581,775,2105,530,1975,1459,1549,1892,1547,992,1075,1473,1399,717,1564,267,1036,1995,1547,1730,625,1628,468,1497,657,699,1346,833,569,2078,1108,1305,220,1272,739,727,112,1158,1839,2232,1948,758,194,1557,1450,317,1564,1067,328,447,67,1789,2023,217,792,1892,554,690,1142,1253,2094,306,1630,1584,1426,293,2228,1794,480,983,1411,299,1475,481,100,1664,1880,315,97,1285,1935,1259,775,460,340,1037,1398,1445,1254,1559,518,1649,1968,1933,1748,2206,1928,1760,1061,1391,2014,65,1240,1797,823,1970,1956,1466,427,1690,1707,1873,211,933,1618,670,1828,93,735,60,496,1174,1942,2151,1498,623,344,1596,1815,84,1165,166,395,1660,1626,1467,1601,1534,1006,511,650,1218,332,1340,456,22,1211,306,1381,758,627,1793,117,332,1589,1528,693,374,983,425,68,1011,2136,116,1076,342,382,1108,858,1671,1580,1116,1044,10,585,36,1902,1174,1582,614,1350,2228,355,1959,533,937,428,381,1010,1815,965,1099,1006,1921,1189,1003,337,1519,113,1085,1445,1044,1078,731,1899,986,107,548,79,1038,40,795,520,682,482,2111,1238,277,946,732,720,1726,812,606,1977,586,681,1116,1811,1397,178,1231,1823,745,1240,668,535,681,1431,91,1116,918,1426,1698,1462,1216,2238,887,888,69,1782,1672,1610,874,173,1597,67,1862,1017,1673,695,1148,1925,1382,954,979,1497,808,1890,1343,1509,143,1680,286,0,1590,997,741,1777,1816,130,227,1003,956,1982,615,760,1444,116,477,729,2064,1979,104,642,1140,902,336,1661,1395,1160,1315,1940,938,1575,1050,906,1637,913,818,662,1902,911,1360,1175,2067,1963,1952,1831,2184,2079,403,1464,491,228,855,1200,1998,854,2208,1584,694,1321,226,257,652,256,1095,1238,461,405,1795,1936,844,563,378,129,3,1975,1070,2052,1372,1352,2122,619,1474,1854,465,1772,773,1747,1769,794,850,415,1183,1380,815,540,1908,1414,1915,951,1265,1385,1222,540,938,1460,1238,1851,1308,47,2128,1538,1301,1673,1600,577,2010,1257,111,266,1787,1467,1856,42,2235,594,1930,546,1932,1525,813,180,1360,868,1753,2057,1038,996,209,1630,133,2163,455,724,730,1956,1681,1634,1481,442,336,350,639,1109,1712,801,821,1072,1529,1690,75,2208,2185,536,83,469,1920,2130,1831,2053,1644,210,1234,1733,849,2146,792,366,1678,2009,1793,1882,1773,1303,1540,2047,286,1567,1914,518,1618,131,165,632,272,2216,842,638,1503,911,1174,85,1045,718,1022,1239,680,1616,498,1410,882,86,152,2147,1869,745,393,1137,1535,1371,261,722,1874,1369,46,565,1799,1614,1770,347,1087,2190,295,1397,844,1244,416,2218,2241,2194,1258,1092,976,610,1753,406,183,1812,98,1993,1983,1859,1954,121,1968,1435,2224,686,1527,1982,2171,1782,1073,1699,1682,1343,1274,1455,1431,255,999,1054,680,2014,1866,2113,1119,366,376,392,1120,1214,874,357,1486,1514,1543,394,900,65,798,938,1256,458,1770,2123,996,778,339,2162,2084,1683,2241,98,1140,50,1843,832,1863,1732,2115,1878,2022,1133,578,1956,1654,258,1564,1924,1676,423,285,2066,1486,509,1463,923,1895,2063,408,370,114,1810,67,2029,722,431,1260,2012,291,2123,1294,387,227,1386,1370,1177,2138,35,1879,2129,1076,469,1565,41,275,1606,139,8,57,1599,1703,1485,1981,1656,1222,630,1965,1738,49,311,234,250,834,1987,997,392,894,192,955,62,224,825,1926,446,33,1600,2061,1683,1855,76,2176,1723,1735,1860,1710,2116,924,736,1841,1518,813,2183,924,838,1114,46,186,1980,65,674,947,1967,592,2175,1682,1688,1305,2025,1734,745,391,1258,1926,2198,691,1869,1824,1136,299,758,1101,972,1434,102,1506,1645,1239,197,2244,1564,1767,534,745,1174,679,1823,302,642,313,275,542,259,1750,840,1891,1745,827,2020,871,670,1088,609,1224,2224,1752,772,1479,39,1451,849,213,455,1507,1457,75,1712,1639,425,785,507,897,2214,1103,216,501,2017,221,383,1249,1476,796,272,75,2081,842,2133,393,1932,1290,1154,1746,1800,2160,186,601,2076,1687,45,1583,1350,281,2082,2042,428,1958,2140,413,1086,1513,815,209,1916,1791,1506,2056,436,27,1701,672,1312,783,1635,1318,248,651,1683,136,673,1092,1775,1499,1441,238,2236,1123,210,242,2243,1736,2020,1106,841,20,806,1295,1356,651,316,64,1917,656,2045,255,931,844,832,931,791,861,1149,799,1325,200,177,915,1069,1613,571,2195,1381,30,128,365,1762,572,218,1529,1943,783,1817,601,222,1074,515,276,1991,2120,1052,719,923,1876,835,1456,327,437,787,131,998,889,849,1534,2031,415,1016,678,209,124,2200,1656,392,2152,1569,812,2111,1922,1249,384,1999,1,1597,1499,171,1339,1512,932,1201,1279,404,2104,1889,3,1033,1317,1079,1362,1668,943,41,1382,430,1326,1223,713,740,1144,2067,1489,1649,0,1561,2085,759,913,86,1596,1087,436,1292,2088,242,771,876,1455,1229,1476,364,1924,476,831,1059,1881,1151,1393,647,1094,324,891,959,2194,730,1303,107,157,876,670,1619,1671,777,695,1116,527,866,1958,2202,1486,2165,664,307,1148,1644,492,2181,575,983,2037,1809,387,1655,1441,466,1403,367,1143,408,1161,2167,418,56,2169,573,1463,2155,2134,1057,332,2193,1294,2030,1443,1061,1812,1819,1683,1245,1717,916,1938,1714,1203,1377,1440,314,91,54,1157,630,578,543,1017,1122,958,612,27,1004,2042,40,605,274,1260,1485,67,67,574,1232,2210,765,1086,1165,671,2043,1329,1167,547,1736,881,848,1046,1573,2131,320,2076,840,1437,364,936,1131,944,1919,898,1218,1629,1170,727,182,2234,2038,1747,2101,197,369,1242,1813,1116,443,1471,425,2239,524,1439,1087,1087,2126,725,607,1824,1332,953,1920,2137,1018,1261,432,1100,1499,800,1196,1779,370,1355,652,743,640,1481,1718,1186,683,1811,1819,851,606,2020,1437,950,169,774,255,372,1981,1675,1067,486,62,1029,856,368,1039,1114,497,391,788,1503,1249,1432,1732,834,1166,2245,1837,2012,1140,557,706,1529,761,1623,2027,784,556,1781,1712,1216,1561,1016,1806,1627,1837,109,808,397,280,1018,2019,1958,808,1146,2151,1584,2199,789,1981,565,407,599,1053,1924,1352,1107,1194,1664,2047,2021,1408,2108,40,1165,40,2026,1270,1733,1545,255,432,924,1876,638,1729,1837,1096,63,1087,454,1956,1066,933,1129,1876,216,129,1722,1324,630,1497,1315,1836,1589,2166,462,1345,1672,1206,479,91,1536,1501,1044,440,635,1333,1098,734,372,542,578,1839,1502,1316,2069,994,1608,987,1926,1426,24,14,712,2244,1625,313,81,768,622,408,1782,2170,371,266,1674,1666,840,1050,1132,1561,1103,1855,72,1366,758,1116,1998,1145,1819,173,147,648,334,57,1337,1171,167,1081,2123,522,1404,1383,568,1225,2014,854,830,80,141,215,1,153,1981,1458,57,1004,194,1804,1542,1046,1550,1986,346,1195,1598,1945,2233,592,1314,1808,1176,618,1240,1165,1462,1994,319,251,1437,480,1918,899,435,2021,373,1531,1659,230,143,680,909,1086,1461,616,626,269,1148,2020,748,1183,246,762,1926,1196,422,1424,602,1081,923,1848,1913,1138,1864,1981,786,1914,1380,227,996,1595,310,552,539,1518,209,2145,1543,1361,1113,1887,1308,550,745,274,969,2233,695,1711,1140,823,546,424,1314,215,1302,2131,330,1134,1598,409,2089,1227,2217,1579,960,444,890,1424,406,2205,1019,846,1412,171,390,1371,1981,773,1954,141,995,1667,624,372,2121,428,649,2161,295,830,1319,1693,108,1784,2187,727,561,818,1335,1152,15,343,1256,2012,1773,572,1964,2040,265,1753,933,215,493,42,666,2124,480,2230,1302,520,1236,1121,2033,211,515,1268,2119,1819,584,1477,2074,1234,448,1778,2238,1029,1267,1367,1485,485,193,1140,1202,1435,695,1160,721,346,244,1888,2013,2135,546,2016,730,1829,661,1231,397,1773,1910,785,644,24,365,2005,1538,1563,823,2246,1390,1721,437,450,1176,1502,955,1281,300,1396,387,1801,2084,7,1907,1929,567,571,1148,1290,532,1825,1193,2148,1103,33,2214,1015,2062,2106,711,776,1467,568,949,110,1978,88,2036,2233,1087,1558,1259,1953,791,1818,2218,1816,1014,1926,840,730,1445,1949,525,561,1003,1119,2193,676,494,2072,499,123,1517,2004,1795,1160,397,611,472,1086,1047,53,2156,1849,1169,422,1633,1073,2077,991,1413,1598,263,1539,1564,88,196,1402,345,689,1823,869,687,604,225,118,1854,251,2076,695,985,1657,697,28,5,198,1026,141,741,101,1278,1895,942,737,1180,2194,2055,701,1174,584,1781,207,603,1716,133,1444,1337,1173,1724,346,405,1086,797,1114,1732,1819,1679,2140,1075,1408,1454,733,109,1121,806,814,1935,274,18,1891,1034,2208,1099,35,154,1357,2208,725,430,1237,23,1252,2221,205,508,757,1274,1662,2230,1007,1685,141}

    2061

    1771

    Returns: 619381626

  27. {1013,1173,666,690,159,943,338,366,551,246,1073,1464,1684,1231,1610,1283,990,1473,270,814,1489,1681,583,1171,1760,272,435,1702,733,1490,1911,107,1601,956,1797,1451,1128,618,1840,693,615,355,489,911,664,1277,266,1925,806,616,915,176,453,1503,1752,365,1904,1601,511,598,753,1131,265,1352,117,502,1868,1614,1255,750,1409,1380,83,43,347,1120,15,974,1832,1301,1679,1178,1099,567,686,562,1699,1797,1685,1907,1334,1092,1787,1748,1333,1844,58,1697,875,1497,1158,1050,136,1925,1457,331,880,1559,1068,965,632,94,795,1490,1638,1576,994,374,573,1433,1718,415,1462,821,243,1378,650,713,1752,1158,915,1744,1392,732,716,1464,1422,66,197,587,1925,957,172,951,382,1406,7,1468,1597,1524,1128,473,219,1038,412,1399,151,638,1739,1686,114,1335,1074,1589,474,1154,11,1042,1453,941,1704,1774,804,556,1204,1617,975,1489,1514,1874,273,1211,836,185,606,1925,479,1787,847,1838,1625,1047,572,373,374,1665,759,484,1510,1538,791,899,1098,1282,331,1460,1853,1171,500,1857,1519,1175,141,337,1835,696,1804,1447,18,1670,1431,1678,1917,733,303,492,775,590,1173,1560,1801,1915,1897,1885,1490,1210,680,716,501,1178,578,1936,1647,814,1318,516,1603,915,1518,885,114,1544,383,1039,373,1402,1627,90,295,876,1648,9,1725,1632,167,577,915,1724,767,1606,1296,1187,1729,226,183,163,1322,959,936,873,164,230,117,289,418,1630,1079,427,1187,424,1928,61,1332,350,1799,702,165,97,315,1369,479,499,549,1049,222,1506,1534,624,704,1085,1672,365,1759,1881,749,1766,405,752,1168,919,1823,1667,541,1110,1828,1080,1328,987,1353,1413,434,262,964,1056,146,975,1154,1877,1113,1837,1550,1394,972,670,643,190,1547,1600,1879,481,1893,136,1465,680,542,493,656,619,1548,316,53,1137,720,877,1849,1145,36,1281,197,571,614,924,1096,946,464,1508,1263,1338,239,1369,1525,1575,34,1777,1310,1253,1055,638,1457,9,1055,1236,1055,421,1040,527,67,1309,1128,1296,539,304,1510,1401,260,1412,116,1243,117,1496,1221,1645,533,1152,1794,230,866,1759,864,139,1184,184,797,865,1659,1630,411,303,740,1604,1794,1809,449,1631,709,1097,1606,1587,1662,839,455,613,665,1918,1043,659,954,982,258,1866,1309,667,19,974,1406,1500,133,1911,1385,807,125,608,431,726,1617,338,912,1785,1479,485,1801,1826,1436,1460,978,511,1720,34,802,1642,1924,726,1632,893,851,1070,365,983,770,100,462,161,1710,702,1236,607,1841,118,354,1683,994,1053,226,1480,1079,1831,1560,1062,1931,1458,431,403,773,1368,984,800,791,1382,618,263,1889,387,608,1273,1694,734,724,1411,1065,1459,76,1805,1412,1833,596,22,332,735,1162,174,1106,1426,106,1857,465,894,161,1265,747,1693,1003,1655,392,189,621,1433,479,447,397,1416,807,518,1259,260,1223,1498,1823,789,1159,483,1712,1253,1384,1249,1605,1504,1289,0,844,520,1867,385,519,1514,365,684,512,692,258,1604,1320,1694,1128,164,473,667,1790,853,145,1743,1064,1020,629,1859,253,1462,1071,1171,1588,1788,1172,1400,1345,1711,230,369,772,1450,470,1258,999,470,120,1511,1875,1447,305,860,257,155,1924,499,870,1812,1087,276,948,1496,1353,1171,660,629,1756,83,157,364,1165,759,261,1520,1287,344,253,105,403,1851,1150,793,1136,1755,994,1545,1715,480,1843,1394,1881,5,611,1191,756,497,383,1109,1705,661,134,640,796,1075,1866,1608,492,1675,1394,406,773,756,265,1727,1455,1130,199,1839,477,192,1077,92,955,1527,1793,716,79,950,728,1223,1224,1103,542,331,669,322,1596,1306,1068,359,440,1185,512,224,203,1229,1555,1402,163,680,370,43,378,1555,1069,1256,629,148,509,1636,1520,681,1204,447,294,1515,1222,1495,528,699,196,1679,1325,1430,1927,365,1041,737,1432,1700,1730,188,1808,553,901,1735,462,809,63,177,73,138,926,181,1030,1127,898,394,107,1817,908,148,43,473,512,1460,1771,200,566,1723,1040,881,1144,1881,879,1376,1203,1269,1335,880,946,1348,13,1720,1843,391,35,1782,1337,1549,55,406,1361,1663,952,1669,968,465,375,889,1794,35,1860,1360,1560,1105,97,1126,1755,820,1175,1591,1512,502,1624,884,233,674,1766,293,1250,919,217,1402,1274,1353,1900,1889,769,1759,711,1253,1902,1400,393,1319,1529,1209,159,511,1730,1605,114,1671,459,783,1224,1116,512,881,908,889,951,995,303,179,960,551,506,1847,1821,154,1643,1830,1788,1543,339,1872,1758,264,242,1831,564,1369,1765,866,928,1781,554,1700,474,212,1534,411,100,354,225,1441,250,1721,1357,1365,1565,1650,1503,644,996,1503,660,358,900,1047,215,866,1869,1007,1237,1503,304,923,1616,969,193,65,1067,71,55,1507,317,1345,1068,1587,1004,1335,1613,43,892,830,1482,447,396,1060,32,175,495,12,1037,440,579,724,214,567,1066,1407,0,1153,1143,618,1937,210,1766,513,753,42,653,1137,667,1152,764,888,875,1625,1816,424,1666,991,587,298,159,814,1029,1015,1197,918,1800,387,1202,1595,1308,1700,1389,115,1586,1009,735,604,308,756,4,8,631,1308,518,88,500,1935,460,1590,1270,849,1226,1323,1523,535,431,13,1360,1302,332,488,829,543,1490,543,1343,118,737,356,795,300,416,909,537,306,1336,1438,1324,773,3,404,1853,550,1207,1190,1112,1889,925,476,43,1395,1217,680,462,1186,1448,1780,1605,1314,403,867,990,457,1428,1604,845,838,1839,1144,1565,1404,1360,1505,1256,1205,1141,1639,1437,318,1921,511,1843,1230,684,885,567,392,413,702,283,1729,1840,76,981,1796,1160,1497,1137,1527,1189,1581,161,739,886,1837,1526,912,1123,892,1826,315,1207,702,360,1889,431,380,783,1608,716,1901,1899,124,91,612,1295,753,1085,586,1428,1184,1045,566,1738,27,1200,374,1490,210,1327,23,591,841,1838,1614,1684,304,98,832,1496,522,1798,1269,1060,1727,400,989,1373,753,451,34,1446,1615,782,1681,1713,337,1604,1147,1031,693,1503,1090,748,683,654,267,106,1807,1040,541,106,451,1823,1792,747,1935,1933,1005,1635,773,795,1873,1771,926,610,230,594,28,1387,1086,543,64,97,1632,676,1422,1391,1717,17,594,1671,249,60,864,1744,708,1216,157,364,973,1742,1646,576,9,763,627,894,966,1223,1255,268,1654,1299,1881,1874,1213,487,1607,381,1861,120,801,461,215,1739,93,495,1528,861,1858,9,815,490,1082,1916,194,431,286,1491,1881,607,1364,8,773,683,1566,1073,316,1375,611,1429,1353,530,331,757,895,657,1678,1822,833,182,71,1564,853,800,339,552,914,364,623,1695,1758,1153,778,432,1443,580,1278,967,1124,1908,523,903,1417,1475,1246,72,810,542,907,1596,313,1490,29,509,982,145,1784,984,733,842,1611,1170,661,209,1605,1613,363,341,1034,971,960,1852,1164,68,1658,472,664,790,532,933,103,171,423,890,835,587,59,78,948,904,864,1022,1101,601,1192,1796,664,240,1649,1157,618,995,145,598,1935,402,1439,765,522,1524,851,760,1540,111,1759,1900,571,723,1782,708,410,1036,1830,1666,388,1157,1809,21,1914,538,438,220,781,698,393,1238,1111,1330,1614,1251,1328,1517,1508,1934,990,1141,1480,1752,1899,1023,1812,1449,1212,689,1137,799,773,1633,498,113,1260,1044,1706,371,1698,1508,1467,642,1904,781,726,786,1698,1177,1609,1402,621,1857,998,1878,1644,480,1163,133,1427,1525,1191,222,1518,1777,754,98,216,44,1794,1299,1624,431,699,98,1535,1042,149,1926,393,1390,1145,694,1076,216,1545,1484,1204,1518,1118,1058,1604,763,1018,1268,49,50,814,1152,205,746,545,104,1137,1166,766,1104,1190,1724,579,1049,96,1527,174,1245,1353,662,519,455,1072,389,1925,358,405,946,97,19,1475,31,675,341,1698,1742,722,1362,1699,1569,728,602,1903,1524,716,1492,540,1072,575,319,974,370,1937,577,1769,324,1917,714,1450,626,228,1555,1103,1224,1615,1679,1160,1412,1823,818,1094,272,937,1176,495,1590,1632,279,1171,1779,960,1421,1681,150,1881,577,436,883,1825,1793,661,1016,1010,691,126,1508,1480,1003,166,195,355,1153,1456,309,1799,119,1741,896,809,1097,1417,719,783,1278,38,1403,418,831,165,698,1371,1928,496,1284,1835,1010,951,679,1278,590,755,385,1205,140,13,1262,773,1304,598,1757,438,60,748,1747,1865,1471,680,1901,936,144,1888,1142,1896,1539,803,1565,1187,1247,904,13,1099,1654,1669,1633,742,97,405,776,867,700,385,1678,390,790,1631,858,1825,972,55,260,1931,634,1296,1061,246,1483,1893,1359,1326,1708,214,683,1641,918,1360,1749,1798,1721,463,1856,1772,1315,913,366,140,601,97,953,1750,1495,212,1904,1417,44,108,500,765,1003,1559,700,1638,599,1027,333,1640,1029,1095,1634,1159,753,1364,266,544,742,792,204,615,968,1570,478,1011,1617,960,21,1819,825,1350,1618,598,1281,1288,424,705,776,1489,604,889,1726,1309,556,1070,464,572,1408,1563,159,358,428,512,0,208,1033,856,738,823,1133,1089,1546,869,946,1429,1162,1727,809,1293,1564,997,727,1232,961,1457,982,859,1549,655,1774,1414,1912,300,1103,1343,1207,95,1536,709,1278,1926,320,218,109,1920,179,784,705,1848,1740,1587,1126,1481,518,1042,1369,981,431,910,1269,34,1808,26,1922,17,925,334,1650,968,1432,1423,568,1038,721,1673,20,1769,399,222,921,1307,1036,476,1069,1512,229,988,1162,1309,1048,1937,729,557,1528,1620,327,548,1917,1900,980,965,693,834,564,1330,1515,1621,995,1074,174,1802,1746,136,1558,31,689,1097,777,311,833,1305,944,310,437,1225,732,897,536,742,1174,663,1108,977,43,1189,401,586,477,1013,1884,216,558,593,1275,677,1657,1244,49,1251,1683,179,1310,1236,240,697,1873,1577,1471,467,1347,1631,1278,1341,1666,1121,274,460,1438,1882,125,507,1078,974,311,30,1139,858,1179,1878,300,1073,1275,464}

    {712,1158,207,450,633,667,840,158,162,1690,1059,173,840,1089,1900,1133,1507,1795,430,1730,93,1396,848,750,909,936,40,159,1307,932,874,1835,782,307,1810,740,312,1532,1180,1905,774,340,1700,1498,1152,976,763,385,1495,1394,1399,1425,1344,1763,839,542,1736,277,430,373,115,167,1052,1624,480,223,550,1898,187,1061,713,1272,49,908,146,1181,646,495,110,1401,726,1193,1037,479,1279,135,1426,1235,106,1884,705,1404,1463,1599,1641,985,923,725,1789,90,1303,855,1503,1063,1290,1783,639,458,951,833,168,1848,1433,1604,637,1756,1573,1169,661,1734,683,1604,875,707,196,314,1026,1000,1081,296,698,689,880,1851,423,1911,246,1777,511,1011,446,1125,1624,1521,1035,30,1518,1552,943,469,1098,1379,412,1476,1650,614,730,153,750,38,1280,1745,636,1312,649,89,670,886,999,1480,881,1083,1069,970,347,285,1219,1316,190,1208,1555,1413,718,1764,145,505,136,1263,693,1469,1011,918,122,1506,1036,153,339,1121,426,1838,536,1050,1390,1574,1559,534,244,1003,1880,46,592,1898,1101,1410,1591,13,99,620,1596,1429,874,1628,452,1719,1778,1582,1682,1093,929,908,1342,1565,1677,1457,1068,577,946,765,490,326,1396,1002,1231,982,1793,836,1826,983,656,1068,99,91,132,1223,1850,1223,1491,974,1625,1136,1823,1739,1230,992,1797,43,1450,1891,1557,1297,487,1366,1870,424,679,1545,794,924,596,1210,1240,291,1897,651,624,809,1919,914,680,1906,1852,1886,395,45,826,1661,444,1576,963,536,179,256,1937,567,361,425,624,529,408,564,1036,1710,720,1832,1529,269,45,1571,1026,304,939,1645,1689,1257,1558,358,1816,673,1155,1223,1386,468,330,476,1578,706,957,1075,784,0,1117,13,869,1377,1522,1865,1344,577,1470,1884,1134,811,1374,1513,905,1704,1091,1316,996,1663,1937,130,1814,1864,1444,1439,1689,242,1751,928,170,599,315,1676,1668,1925,444,1106,1694,1860,1490,1826,323,1601,717,637,137,852,75,450,1014,1348,102,1863,1371,884,378,1739,176,1681,1137,330,1552,1223,1656,490,340,1530,727,1158,286,212,1622,629,473,731,959,1363,390,756,1514,419,1600,821,1133,1456,819,1842,35,1549,1554,20,1781,443,297,1276,1237,1442,1746,680,1141,637,1869,593,1227,647,163,1579,409,1756,1811,1890,1313,584,500,303,1198,1637,1771,282,656,1422,1269,1140,1887,156,1558,177,765,726,1651,955,1932,798,962,1419,1419,1543,1447,569,504,112,1156,1533,827,948,304,1285,953,1490,803,526,1324,541,631,1640,1720,1610,918,1744,1233,1319,1478,1678,638,1744,1267,33,1848,1056,541,447,445,981,1150,304,87,1514,314,1228,298,1311,1188,688,1405,6,400,1303,309,1854,685,892,753,106,862,1728,376,486,466,940,1311,655,767,1714,661,248,1003,387,1828,410,1432,1796,1439,96,715,221,533,788,88,1149,685,484,1770,775,1178,1684,1699,1576,743,1877,567,1536,1196,1572,581,1299,146,1818,1700,922,1497,1806,868,160,349,1035,909,178,1487,1128,180,752,1104,615,152,822,1610,186,1128,301,593,88,1860,1194,221,721,1388,145,459,417,1528,1382,1360,1465,658,1825,73,1356,1363,38,428,1768,259,731,474,1519,1025,749,1617,667,633,1490,441,281,1542,1839,1157,1635,1889,809,1102,560,1332,572,1869,195,297,198,949,812,761,708,1214,1381,559,808,1273,1889,1786,561,1251,1062,1195,408,289,1199,1499,1529,824,603,1387,1347,990,1224,259,1349,536,997,600,1249,761,801,306,1578,979,1273,1110,546,22,1111,1644,1774,731,1427,1935,846,1465,902,748,1298,1111,370,250,149,896,346,1084,1885,1381,1687,265,169,697,1163,1759,1730,1397,705,353,1103,1884,479,1177,947,401,1813,169,662,1641,9,1266,669,1217,781,1355,1786,164,519,1003,233,1156,1242,887,1171,1386,108,1171,971,1866,369,72,482,45,1619,1057,129,1141,991,684,67,1923,763,1674,629,51,1759,872,350,1542,495,988,1828,89,1204,1653,926,47,1844,1019,865,1144,6,629,917,1187,1135,771,1358,687,752,1889,306,264,479,1840,1417,180,342,174,1407,149,755,1781,232,1667,1700,1541,1068,539,1404,1282,603,22,871,1596,100,84,766,234,582,362,147,1138,441,1602,964,1006,677,61,1737,1450,37,1043,1712,196,1168,928,1072,920,718,377,1500,431,271,403,632,618,809,1365,1770,1171,817,924,1113,525,597,713,1754,1709,1340,473,908,1552,684,670,1157,585,777,1720,1887,387,288,661,1773,102,280,1619,650,814,123,100,1745,1567,1123,1028,1650,249,43,1854,191,1068,622,857,1589,1490,1562,1586,1386,251,1124,733,724,624,551,1310,1574,1853,257,299,736,61,1295,930,1367,1881,686,542,255,1401,1707,1718,1207,1776,813,1264,1733,1584,1271,278,1154,285,1302,801,438,699,368,557,1434,721,783,1153,914,1380,590,946,1604,768,350,1783,571,373,1522,1836,1263,628,329,1786,1055,1783,1424,440,1171,1098,1199,1237,718,60,835,1797,722,1579,1330,1823,835,1501,749,58,972,778,235,1080,495,74,1190,1629,1724,1111,1668,982,13,628,86,1885,161,1253,562,208,1002,906,1929,1938,1384,1718,1709,339,1107,1692,211,896,1097,45,1137,1500,419,1145,553,92,175,1573,541,396,1490,1937,736,238,1659,1030,887,752,645,734,1623,1152,1635,1398,624,316,1574,1505,1757,1329,1630,934,206,1032,1303,1712,1937,121,1691,190,422,937,304,742,1694,1009,1604,315,1494,1890,192,1435,273,1812,1316,505,1794,1331,142,877,1465,1827,1516,45,1201,1205,1214,508,762,916,718,1439,928,82,1527,851,307,945,843,1319,1509,542,648,219,1738,15,357,927,1881,579,252,1464,543,1632,317,569,134,854,1722,1211,931,1271,355,1502,442,1097,1791,564,1626,703,1491,1753,1148,25,348,971,186,1363,1677,1598,795,741,352,1671,26,1915,336,1576,1463,708,935,814,1383,188,498,736,763,290,1872,1261,678,531,8,710,875,1133,750,192,1860,1114,1775,1184,1189,514,127,1729,417,758,1935,1763,431,462,1466,12,752,207,1014,1351,1604,1838,324,1069,0,178,605,571,1559,492,755,171,884,1865,298,1793,785,726,454,517,583,1297,925,1864,329,1910,1885,1436,629,379,518,304,1142,509,1737,10,9,163,986,565,1452,1215,1187,1370,1564,1767,1934,1815,1249,1934,63,1490,109,1073,1665,734,1872,57,828,1060,1224,763,1407,748,1398,44,21,980,586,1115,1852,1124,673,755,414,992,1672,292,27,62,1366,515,1507,48,1628,1531,1167,787,1634,1354,1803,355,1214,1834,421,1169,1551,1556,307,609,1306,284,31,827,621,312,632,404,54,1537,764,287,372,422,685,1696,1736,257,1632,1339,474,321,587,1036,169,1449,1119,1558,329,161,435,1436,250,794,1286,1716,1174,1732,726,1723,1207,1799,166,1189,570,429,1585,702,149,1576,1322,271,1346,335,258,85,1107,1420,1223,126,159,1565,523,801,922,164,1812,202,717,265,262,1632,647,1151,1628,190,1418,915,708,80,1921,1688,1549,878,1321,672,1448,1604,1755,1022,832,67,509,282,1195,901,1228,1204,208,1223,456,809,600,325,538,1527,487,1680,496,1360,1152,1530,1433,942,1766,980,1703,1444,1838,1895,1344,1820,120,329,1161,1777,31,574,1300,213,1708,810,275,1474,1885,1239,491,1467,1561,1039,1755,570,814,1154,551,938,1824,339,1124,1893,81,39,805,601,885,908,1580,1623,1101,588,371,1553,269,1801,576,811,717,1670,783,1527,893,1829,247,459,751,1254,750,1088,1624,1055,35,1855,14,1743,420,268,695,1731,577,1461,958,302,494,245,896,374,916,1666,304,974,595,1465,1509,1271,1353,706,118,1679,398,710,1097,202,1360,1223,1120,1469,122,122,1105,1008,16,897,1618,1913,1078,1388,1206,1177,1709,617,1199,1021,2,1638,1709,1871,1182,70,1488,311,1241,779,1456,1836,1900,1089,787,401,1616,271,1762,35,1683,1372,872,673,1299,497,319,213,1046,1310,780,778,1317,1547,276,1277,1824,1644,567,1132,195,1012,1592,1364,1137,77,1152,827,324,972,1701,1677,1612,814,1930,450,638,115,611,1351,274,128,1774,1198,101,1705,1898,1605,254,1841,1017,1892,407,316,1269,547,757,959,471,1100,744,1220,1393,786,34,150,1895,908,337,1252,35,512,1825,3,745,156,1218,373,1826,668,1128,511,447,553,945,879,1394,1457,1174,555,725,1617,899,896,370,914,1882,1909,343,1248,3,602,1845,701,682,1610,1627,1450,1587,1186,146,1797,366,1054,630,1427,305,1036,1119,1383,22,1095,101,1024,853,1232,328,1168,1291,620,882,1384,1329,1914,1384,503,1147,1309,246,644,989,691,698,1421,274,175,1864,1454,1831,1894,652,1493,902,439,962,1706,839,997,1129,1926,631,1294,55,384,1162,579,1742,1664,1089,1587,278,1724,1099,1152,1,919,376,733,1862,1583,1884,1126,160,1234,479,1876,1104,143,837,448,747,996,721,659,1568,1485,1521,1589,1540,1749,13,1470,1742,1612,1127,993,1847,1522,1051,473,1625,1122,345,641,735,280,227,225,1477,530,625,1098,1141,803,433,928,217,1401,1718,1244,1808,1704,1416,1253,885,750,496,140,1461,750,41,1181,742,1652,1500,1660,499,1248,1599,891,331,119,321,461,561,1013,1739,1292,563,671,374,56,1727,589,918,1853,486,76,994,1252,1018,714,200,214,700,1473,19,258,1145,1216,246,1051,679,1884,644,24,510,212,1138,783,1764,1253,1877,521,1921,546,1137,1774,43,850,470,73,868,1532,367,106,69,1281,1594,1251,904,1236,1517,1504,309,1365,241,6,32,580,1578,809,698,1846,1001,1382,1368,1464,201,1823,220,1274,891,237,1777,968,515,1761,1883,1764,52,1146,1737,261,117,140,705,778,1667,365,1440,816,231,1486,1239,1889,1553,1415,265,583,1129,957,100,1306,1126,1691,307,1190,475,274,1625,351,1507,635,1117,131,1684,1591,597,1360,266,1406,254,863,1514,1898,1390,386,1445,759,93,1472,524,1149,748,401,730,60,1183,971,637,1824,236,1593,1860,1194,1559}

    57

    1376

    Returns: 840956015

  28. {290,42,1391,413,1103,909,337,427,1660,1458,587,984,715,427,233,241,1242,438,1028,475,1236,1482,259,1169,759,466,654,1196,402,602,1078,936,1339,855,400,1547,718,1124,246,1195,1660,814,498,807,716,1080,93,1047,746,417,1026,264,591,791,743,1076,875,1265,1480,1385,349,577,1665,3,26,1188,1062,1012,519,665,835,1414,1097,1541,1251,1452,1470,1654,1662,1061,561,1316,379,1029,237,467,1043,617,404,1365,24,203,1121,34,54,1280,1566,1558,1116,1481,1455,43,27,242,11,820,788,1098,839,1250,1131,51,285,1029,458,502,644,1243,1192,921,889,345,596,534,212,1451,1256,677,1030,8,771,1464,989,509,1555,1059,850,887,1482,979,465,675,632,244,430,755,493,712,277,1344,59,888,499,773,1229,1118,483,1611,1336,131,1559,752,1562,166,700,475,1656,870,147,481,1251,1175,827,1119,475,1035,1394,1178,862,673,1354,1076,59,847,1154,510,1552,1291,472,354,1231,453,1661,455,935,683,650,1585,1091,1605,203,1197,51,75,1083,1569,1336,778,751,1228,266,1585,89,508,75,1008,572,1462,372,311,1560,1671,193,1561,893,20,1516,389,396,1647,1297,48,833,423,1210,1356,545,906,795,583,1209,663,711,1334,1478,138,1110,575,1467,1282,574,1381,836,650,387,677,52,1205,751,1391,800,971,455,875,865,125,389,408,1191,1660,711,480,301,1109,1237,560,1580,194,64,1552,1619,934,184,762,28,1229,1627,779,1323,8,430,554,254,1311,870,1285,1510,1543,363,1124,911,259,785,1002,1240,739,1154,837,700,546,266,1622,196,433,1627,526,1627,345,1345,421,1031,996,959,1508,532,738,124,525,913,1357,665,230,1285,1222,375,1239,924,1477,868,1670,105,834,1245,789,45,938,1210,1009,711,539,1133,867,581,1474,496,262,6,973,1316,1596,370,818,1519,865,1530,917,1606,1121,744,414,1417,805,84,1464,738,1154,1097,974,841,371,1205,541,78,204,82,956,1272,1200,1640,1270,1248,93,348,554,1416,814,1344,897,25,396,1271,1279,716,1328,964,561,1606,244,949,475,942,1402,1151,1538,743,919,1312,85,1547,1114,432,896,994,324,854,1185,901,366,1247,552,471,900,1022,633,270,815,954,90,663,439,1411,1087,1572,1004,1092,1094,249,104,406,439,140,872,1393,1044,336,1537,31,1486,1573,475,1508,1287,1273,286,276,228,689,1341,1217,549,670,1589,282,718,995,72,911,459,472,653,246,1093,807,1120,17,114,990,1126,182,101,827,228,1113,620,1539,25,1670,1176,1509,1091,840,1656,1614,878,104,1067,516,796,1547,65,1361,573,1293,1663,243,163,1485,1111,1083,327,842,176,1054,222,1119,169,173,1375,1090,328,248,605,431,515,535,400,217,911,269,1481,351,173,1469,115,179,96,1160,196,908,1425,595,990,982,1161,1423,1299,570,1078,590,1522,523,316,1651,1589,999,1109,579,849,1029,1528,1439,1487,1246,1359,851,251,376,1051,1306,1179,382,38,2,1576,223,1549,647,412,1485,649,1567,1073,448,424,1545,42,920,1517,1371,1434,387,395,513,530,722,222,1238,249,347,1105,890,93,259,1287,449,793,1545,151,751,127,1317,228,877,1323,241,305,1372,742,304,1344,941,151,1504,847,1404,1660,342,639,157,1409,1266,1138,76,661,1024,801,401,1214,683,822,584,982,1315,966,1655,561,817,1335,807,607,1241,1498,927,573,1585,908,1593,131,235,1414,1588,1421,953,534,1422,1482,1243,213,97,1308,594,1377,677,903,1304,368,1048,720,533,802,382,262,1624,1351,878,381,1410,79,1539,370,1586,507,1277,669,700,425,1512,964,1488,233,1199,385,1362,1568,79,346,185,506,644,280,1412,235,182,1392,1284,1295,405,1235,244,1290,346,1449,469,1025,791,1167,1513,147,219,365,709,188,641,1473,615,500,22,940,606,1670,1373,753,186,1312,602,955,291,1159,1395,1506,908,880,1344,1455,979,1488,170,1582,1596,421,172,1302,1198,637,894,584,1401,1468,1600,1356,1039,1328,1401,937,1292,1166,837,711,1340,1340,902,62,737,486,826,41,1414,614,1423,870,352,398,1274,1096,647,968,796,158,503,727,619,646,895,98,412,491,306,655,1446,833,1517,710,1341,1477,377,1352,419,49,161,617,1497,1327,1038,1491,1324,132,1456,845,586,1270,1299,540,611,392,978,833,326,1237,1430,1447,1047,1571,339,1068,1508,380,884,1484,120,1383,484,231,586,428,522,1163,870,845,914,1508,1001,143,863,19,638,1369,170,347,1154,1560,1262,914,933,1050,105,930,677,377,565,732,505,1241,1551,1137,297,834,429,935,1485,239,1449,412,335,849,329,377,976,348,827,88,487,693,749,869,1258,769,1417,1623,644,418,367,963,790,922,1007,439,201,134,1100,25,1147,1174,1190,1052,1233,1026,1295,307,1640,1617,1041,1614,1247,1352,479,1267,1652,1486,377,584,323,964,798,1578,929,1331,1622,1103,649,550,1334,1389,1244,1058,301,93,1431,1420,82,352,1552,1393,1265,559,1429,996,719,1595,974,961,364,868,1406,1330,222,255,521,1507,65,434,930,868,664,1155,1286,659,995,247,1518,1023,568,271,4,590,963,292,1173,868,899,1198,184,194,1395,116,914,979,1006,31,1438,178,236,1117,452,1670,248,604,881,1039,307,1077,633,729,1399,1003,688,114,1175,1080,1377,1532,357,346,49,21,60,858,1009,1243,961,585,1513,13,561,581,1067,319,45,35,1322,1011,1,981,696,456,1407,1339,1115,285,1455,407,1123,279,1542,553,15,416,1396,543,569,578,1498,700,295,355,197,62,687,458,410,543,1031,406,983,1064,898,1651,717,1152,102,743,573,1368,265,1670,892,443,190,736,1221,430,1427,1222,1287,226,483,11,841,1319,1072,344,254,310,724,653,488,347,414,1126,1530,1177,542,934,674,411,1405,246,371,1613,618,1138,398,1447,1031,902,1225,767,746,118,1318,483,1592,831,1109,1144,1287,583,1466,1366,415,1574,276,273,924,86,145,694,1517,210,1035,1272,165,303,346,1657,1568,225,1560,1192,1398,1635,514,1040,917,1544,1013,995,1511,819,1471,686,582,179,40,1632,353,911,333,45,1574,201,413,193,1484,1581,173,84,1076,905,884,365,723,19,705,1376,1064,1586,952,252,1397,1054,644,410,880,833,1046,1434,653,1007,1407,332,1523,1287,548,1232,543,865,1039,598,1313,952,680,1301,383,1360,1554,1218,1139,1610,1078,1200,1527,742,722,224,1616,44,501,1555,1640,947,376,478,1250,1348,358,1134,503,634,156,1212,525,616,219,1187,721,1243,841,914,1552,45,1536,1219,1648,714,1268,660,126,769,1053,807,1392,1464,244,1651,337,1367,1387,1164,318,886,704,1194,1202,193,865,1264,1658,1347,519,510,1325,1273,1615,1329,1536,640,495,301,777,33,1027,1232,524,875,173,215,876,1586,1670,769,1391,1033,1125,651,104,875,345,441,160,1624,1573,169,64,1082,95,1246,469,1294,66,1555,1482,1232,830,860,1460,547,634,365,117,1555,1527,1349,1138,809,912,1013,684,1664,1307,910,474,620,961,1563,896,775,1487,1597,1612,1491,1085,518,657,179,794,1123,1483,1298,776,1197,688,1074,1434,610,1223,974,148,1484,728,1651,1423,75,1149,401,1613,1216,147,1505,518,1106,525,757,614,1322,1584,847,442,1154,644,644,914,1064,1492,877,1144,1353,398,1392,601,1445,227,1621,1127,377,297,1379,682,825,1164,614,331,58,922,25,1279,1564,464,388,784,1309,991,689,952,1636,93,1187,934,1378,1514,422,1457,1334,904,1486,1496,349,509,1010,112,964,419,898,957,754,209,1339,1034,840,1401,361,1355,1497,1330,1015,537,1225,253,524,292,268,1436,173,1389,1611,147,699,413,945,179,1672,1230,68,261,433,294,1437,661,7,99,257,147,1121,750,521,753,1252,597,993,166,382,1276,797,1459,249,966,744,1127,438,238,1261,849,13,1541,477,9,835,401,1142,558,1156,628,1317,781,1338,297,588,731,561,228,466,249,621,1393,1450,1220,869,1313,31,1312,929,1573,418,774,1123,77,494,914,1094,486,1508,174,989,52,497,979,699,1055,1021,276,505,136,421,793,365,326,764,1551,159,753,827,1004,1495,695,409,939,1390,702,558,1028,885,576,1224,1006,1617,254,916,1418,608,1080,1602,812,53,984,888,595,128,823,1329,845,1107,787,767,468,1472,1328,68,386,398,155,765,625,198,1641,187,1161,760,9,199,1600,391,1528,314,524,179,194,166,81,49,94,465,622,1086,192,503,918,1391,325,1633,1029,1448,1202,654,1302,1296,590,595,1485,321,848,1508,1282,287}

    {147,93,870,87,369,331,929,263,398,943,208,1088,1411,925,1601,132,432,437,1303,300,669,447,794,1168,1114,613,313,509,1631,770,1049,184,1554,1478,1650,1575,1590,1189,26,845,996,1288,1206,351,114,1612,636,354,1383,692,44,804,1503,1500,541,1365,709,1014,1451,1461,1199,1007,150,989,512,1629,1383,341,616,43,1211,40,1146,743,907,1511,666,5,671,883,759,1157,181,1233,668,276,1233,1396,694,482,999,179,192,1138,678,153,38,1574,526,644,66,720,1056,492,300,424,595,893,275,1112,1534,1396,338,1481,1128,728,1158,219,1290,855,224,1172,1126,175,797,530,365,756,960,618,122,103,1302,511,1383,574,1323,998,1207,1493,1414,124,1431,307,1350,1312,291,1556,441,612,1555,191,1380,985,1634,1626,91,1184,36,1404,599,1611,407,1136,1621,322,1102,403,1069,1434,929,1377,84,1244,527,457,1383,32,1215,184,1511,1029,667,1117,1567,538,1469,370,1114,65,689,1435,364,544,846,1650,1081,1154,1469,116,302,866,1598,1101,747,951,1456,885,1486,1285,1083,172,1115,1287,567,1356,1563,274,308,1670,1454,928,1643,1628,272,1603,623,803,476,1194,1456,817,1432,1505,874,432,192,1160,549,242,520,1487,173,1304,307,1594,1603,817,1032,352,1538,1314,1246,1529,337,1522,283,808,170,83,1576,767,649,1386,370,1398,1031,9,1343,1257,405,1378,1377,1004,580,379,1607,1150,1289,1191,586,960,641,168,49,674,451,908,1628,761,55,1484,456,1517,12,288,945,212,261,1341,1018,737,314,1241,73,746,249,894,715,487,555,618,1417,1261,1122,1018,1487,1182,1295,382,1580,139,1169,1305,1377,1206,320,1235,596,1013,1630,959,1124,1511,1664,1450,680,943,1413,568,558,1483,837,298,270,414,1485,1104,453,819,324,1111,264,487,101,1642,150,769,258,1502,1577,908,969,563,1029,1231,676,386,642,1399,564,283,1670,1426,799,1552,1218,162,628,16,189,1565,1108,403,1484,838,1444,454,1077,1333,1645,1169,177,473,974,1563,357,693,1531,1642,727,1226,1065,1072,849,278,1613,501,232,944,486,878,1644,947,1414,276,806,33,413,470,1031,584,350,691,841,874,1365,434,1300,1136,628,1317,1057,649,252,223,1555,832,349,1285,1140,283,1428,932,857,1020,877,377,325,171,947,1161,1051,456,1097,525,464,111,189,1258,1131,1108,964,1536,705,870,261,1526,669,1312,734,958,578,993,1587,1256,631,871,490,1227,1009,1359,1587,590,749,1208,740,1099,1596,692,927,68,1230,1332,1573,829,868,996,1173,630,1022,933,587,962,417,550,1035,593,700,240,1266,861,1111,1142,1264,628,1032,41,662,950,740,1247,167,730,623,945,740,1247,313,686,1144,1191,1281,1151,459,237,233,394,1465,1070,37,1240,1660,1200,1094,542,1477,1031,983,49,1279,1089,346,994,533,997,1183,1070,426,183,994,383,1162,205,1321,299,966,638,478,121,26,949,1063,1246,558,59,1154,489,381,599,209,1515,688,9,59,1230,93,27,595,709,191,1508,885,465,902,440,8,1017,85,1567,937,1094,1670,625,144,849,1158,664,1047,1497,1656,837,19,377,843,1514,1573,18,1659,1487,384,767,656,284,1557,203,1012,1621,666,952,32,158,918,1146,1014,1287,1407,421,268,1045,331,869,982,704,1434,518,1310,98,1197,633,1074,245,1514,1421,1408,758,628,1019,934,1505,1538,978,852,1594,707,934,1263,309,600,1381,929,357,6,1648,824,1166,420,401,1052,1107,1327,383,1442,996,1048,1045,948,926,782,1514,45,844,39,1427,1507,1455,453,319,80,452,1092,1391,1348,868,856,1341,749,266,950,169,991,299,1609,1608,871,1550,1558,1123,1429,1646,65,774,1363,200,991,1533,1014,741,207,706,1016,280,841,920,1345,1345,23,390,461,1443,1596,1180,1338,713,1238,1388,378,907,957,38,1121,229,1005,443,711,139,1012,1028,1424,100,725,1527,1071,1382,347,746,956,316,1286,141,1042,441,384,1395,224,180,1260,1520,1132,994,190,450,693,1433,1440,965,853,1320,123,1576,1130,356,70,122,1613,1143,650,317,1223,1281,1270,476,476,1559,1326,112,958,1108,635,531,1157,1128,1224,52,943,1377,41,1214,683,348,1571,1154,128,190,1156,377,670,1499,1004,1253,679,1255,648,349,1108,1430,1440,23,970,296,365,1026,584,195,557,810,1170,825,56,1540,1282,1201,961,28,1145,1499,374,1620,718,1556,406,1121,428,584,1065,191,1479,924,1508,551,923,822,641,1036,1494,755,225,743,986,1293,1472,398,926,990,881,517,1275,558,807,914,256,113,1440,980,1583,1604,114,1485,896,1120,1599,145,1163,276,638,1542,54,864,915,1442,38,1386,307,1439,460,634,1378,787,500,1470,1429,634,109,463,967,1631,828,184,270,63,1651,504,868,40,1628,1254,671,293,1213,1166,841,1075,894,164,34,929,383,1653,595,1248,1647,1389,961,1554,975,257,271,1540,359,214,1049,652,7,469,1546,314,685,354,672,250,1278,1145,1206,1490,813,841,1629,716,789,497,1418,1118,788,432,1215,1447,629,821,1093,345,1094,691,10,982,1203,650,5,1613,1487,172,1380,1181,382,469,1037,536,1154,1296,207,1346,571,805,236,81,435,1337,476,1171,662,992,783,964,29,727,786,1160,1303,346,931,1473,624,1080,1186,994,1339,1029,168,696,743,216,525,859,1486,1285,886,1618,1079,1498,1169,968,125,1670,66,1026,1128,344,882,82,1415,1655,34,1497,1066,767,392,878,1671,1435,1355,1012,130,929,724,1575,241,703,558,891,995,1418,590,708,1273,464,38,746,568,977,291,464,745,599,399,1649,1165,52,1430,1215,1014,1514,1493,710,1230,307,933,1535,1506,67,1074,647,377,987,1249,612,1481,236,142,271,1449,47,8,1356,886,518,802,84,1341,1579,43,1508,1225,768,1173,1414,538,560,1607,780,1234,556,432,1497,1525,1638,1194,1169,690,1541,1110,343,184,1278,186,50,735,683,1270,1604,859,120,1669,195,1493,1299,281,297,639,926,347,558,763,1238,288,445,690,905,596,64,135,62,99,1662,373,1034,259,449,1193,26,103,1486,387,689,621,1087,1215,433,257,675,1106,794,627,263,1199,1443,976,398,1283,462,1083,362,998,1468,46,643,212,360,446,1548,1282,290,236,999,935,896,1476,1447,129,420,1483,455,1222,149,1049,766,1084,824,1135,935,1144,974,1327,1524,1034,362,1261,698,436,696,291,11,879,972,1533,763,481,837,119,398,1199,1137,1419,1451,92,1605,759,1320,227,259,587,1048,1663,109,816,137,618,1503,1668,364,1576,1095,269,605,935,169,421,396,711,1376,723,1336,436,537,1560,382,152,1393,406,1453,941,1655,206,529,514,244,1362,521,312,1156,0,1342,1588,1151,886,179,966,90,398,723,34,289,1049,207,1624,1117,106,133,347,1045,711,439,79,1669,1634,177,1557,928,1523,1123,174,601,1593,196,1273,1663,202,1384,609,56,993,14,1108,74,1074,228,959,1470,1441,719,984,964,215,1407,71,584,95,1316,1596,874,274,715,1476,12,502,1497,220,624,485,1218,951,616,1039,1666,1449,603,1204,1194,1486,1644,908,1313,1301,94,1046,1445,1061,898,205,677,1445,274,170,1389,377,1450,1007,590,20,1595,1153,1489,914,1536,626,36,1272,458,149,653,221,947,439,1541,792,110,868,1226,608,1591,748,1403,697,961,1480,416,69,542,811,570,880,1025,1225,433,331,1282,1392,1336,1625,1406,1345,1502,57,1187,308,763,1029,587,92,811,179,1344,236,893,1630,1555,1125,769,1029,193,1282,1038,1312,953,669,1142,1428,267,95,444,174,1425,685,1553,1400,10,1259,382,78,476,1570,1014,108,1464,1436,576,275,1613,211,1335,988,1212,8,1385,234,1060,262,1334,1230,1472,586,300,1530,1521,1423,979,188,1478,602,1148,1663,1660,300,772,454,1519,825,1191,397,1413,392,196,1209,154,592,1161,1501,1430,1371,260,1022,1639,726,405,959,357,30,1585,641,44,198,94,378,1001,178,439,353,432,318,842,1450,476,1651,1483,271,1475,1094,749,81,1463,1456,934,315,61,528,1658,334,1370,387,53,1405,1069,863,330,107,405,1355,1529,645,104,634,445,1514,989,26,1225,1529,237,747,1374,393,1530,189,1376,1222,1000,566,1595,7,858,396,1428,181,349,628,681,146,1667,1510,701,946,84,827,536,246,1129,254,1364,1358,1481,1493,683,658,733,1278,805,216,1120,589,1595,180,352,432,218,1345,1583,873,90,1492,559,504,205,210,1094,918,1392,1269,1141,364,1606,865,935,562,104,1092,340,736,1637,773,1392,115,192,1280,1334}

    1449

    1556

    Returns: 702708803

  29. {175,44,180,206,125,173,18,136,59,157,137,152,166,3,44,143,142,18,189,112,102,7,205,201,102,112,182,53,151,162,146,133,130,49,175,76,75,53,9,57,117,77,57,62,51,13,164,1,34,72,202,26,218,40,62,45,90,57,84,24,30,116,1,218,39,69,203,110,113,1,135,177,71,50,218,133,57,107,139,218,172,49,167,90,54,202,57,66,51,8,154,62,199,83,103,194,54,217,45,91,74,118,80,104,38,82,95,26,116,197,178,86,134,145,21,50,137,41,153,14,97,59,6,73,73,98,67,3,193,166,67,83,84,137,37,115,140,159,44,96,121,15,78,9,214,88,106,27,79,189,32,119,105,180,124,115,153,108,85,184,9,114,52,101,153,106,28,170,44,145,25,186,69,55,50,178,44,191,168,3,216,23,67,29,177,1,86,119,17,27,89,78,4,204,33,30,50,131,86,4,153,139,4,63,59,109,212,192,205,11,155,127,89,208,102,68,61,209}

    {120,206,44,142,194,28,135,43,81,201,53,206,11,16,11,208,210,3,1,4,42,139,36,10,184,47,116,119,62,76,174,148,59,58,153,122,77,165,56,74,202,14,183,133,48,44,214,202,115,163,200,53,179,154,149,164,100,44,175,49,35,51,218,128,217,46,44,142,20,94,158,69,144,169,65,215,161,32,183,188,26,190,125,88,147,67,137,165,185,20,205,59,12,53,194,115,204,175,145,160,59,207,38,188,214,49,20,187,60,156,175,99,3,12,203,49,160,136,180,171,53,5,213,92,141,179,129,20,106,28,132,195,87,64,5,6,44,100,141,175,79,120,31,136,203,202,203,163,141,76,98,77,74,116,169,98,70,145,201,26,11,116,110,163,144,198,176,175,31,207,112,0,174,33,59,22,123,64,59,67,171,97,201,157,206,93,136,111,162,57,66,197,62,211,102,117,147,23,126,40,0,196,19,52,181,130,196,13,2,67,166,74,150,178,138,40,23,3}

    14

    168

    Returns: 528643064

  30. {121,31,205,12,147,88,19,74,148,258,7,239,264,249,70,30,88,80,150,164,89,189,93,233,171,144,224,14,102,151,245,21,185,161,89,120,47,233,221,155,68,134,117,92,255,85,113,86,116,54,94,21,44,243,1,40,248,46,112,6,33,147,232,9,95,54,74,228,222,51,168,259,39,77,26,125,21,251,90,96,136,66,165,73,237,81,168,88,197,255,99,163,104,133,102,233,129,114,39,93,77,203,13,34,232,110,259,87,180,196,255,147,22,150,172,49,152,249,57,61,218,8,36,74,204,81,237,160,206,51,88,160,38,260,34,234,178,37,261,209,55,82,135,53,204,252,91,182,75,66,189,88,101,222,140,116,217,11,198,161,122,8,262,251,111,2,0,70,24,194,143,246,138,188,162,164,51,234,105,5,257,22,92,6,230,52,59,61,161,163,32,139,88,48,154,167,61,263,175,161,19,210,105,98,118,229,166,256,242,241,224,89,41,202,108,154,176,84,232,237,254,127,196,237,140,187,48,217,195,153,43,109,52,89,62,216,126,83,261,232,97,119,82,173,182,188,238,233,123,106,152,62,91,3,88,157,66,213,161,177,240,211,38,118}

    {46,197,167,185,12,162,237,166,175,106,16,242,60,192,49,88,100,162,24,181,150,119,119,181,75,95,64,65,189,62,48,223,169,72,235,135,92,143,237,133,201,258,191,193,178,99,156,29,115,227,105,23,206,108,62,57,130,26,159,183,259,106,63,74,252,234,261,115,244,16,114,129,100,59,58,159,193,105,11,116,231,56,170,114,94,213,165,14,137,15,105,29,97,21,208,245,248,181,199,25,80,100,124,214,247,91,23,147,92,184,221,88,113,147,119,215,183,87,74,20,194,226,72,105,135,63,172,18,135,9,124,12,114,88,249,87,250,181,131,186,91,38,181,182,186,4,2,190,9,112,71,181,42,36,116,200,128,94,223,241,194,23,39,216,162,238,172,189,202,60,252,109,149,12,118,225,253,191,2,31,236,204,103,220,259,10,67,91,224,24,58,53,259,179,28,13,50,140,166,245,76,4,137,206,229,207,97,203,112,126,69,17,13,219,165,150,163,94,124,27,215,14,259,231,88,53,145,244,13,62,22,14,66,201,146,132,149,236,35,101,78,158,212,168,91,174,107,45,9,141,3,22,236,223,2,57,232,79,121,44,81,215,194,142}

    177

    45

    Returns: 521399481

  31. {635,75,639,31,460,71,247,593,309,375,621,428,600,414,612,503,129,404,402,292,319,243,199,94,160,538,256,351,459,239,454,530,247,640,634,484,288,633,314,298,267,36,638,510,489,532,106,271,167,517,567,350,238,598,522,539,585,103,633,497,537,524,642,322,527,559,172,196,130,473,625,154,36,492,153,655,260,518,119,358,187,141,379,660,247,597,629,444,490,567,193,492,126,609,75,618,458,385,249,494,539,206,380,461,534,2,519,60,76,327,639,488,178,167,16,241,535,56,45,180,10,157,541,614,24,345,611,400,124,550,380,428,569,71,345,340,9,316,249,262,478,471,529,60,454,476,187,486,353,649,252,586,315,386,641,394,657,42,66,396,97,605,183,53,621,433,92,345,22,607,505,346,121,627,374,322,383,324,419,167,630,100,613,444,308,246,323,64,355,440,540,505,96,657,534,416,438,233,152,255,226,658,264,143,34,175,498,240,404,28,63,537,72,604,203,54,17,217,251,125,181,221,11,655,368,380,122,20,443,306,440,1,608,504,476,50,354,650,374,575,252,536,555,290,135,431,135,36,546,513,621,545,290,15,134,210,231,535,531,595,399,21,646,328,56,632,171,428,471,345,170,53,103,99,336,635,28,101,428,19,458,75,252,408,250,156,125,560,646,414,182,619,171,644,130,409,288,369,154,336,193,196,503,255,484,369,507,187,359,239,73,264,222,357,641,30,91,587,515,105,11,382,424,133,195,369,389,413,338,478,47,533,419,63,520,291,169,581,225,264,479,373,576,530,657,639,4,347,366,472,544,16,377,507,176,65,237,218,237,184,647,520,468,209,383,553,264,654,113,532,195,245,171,425,164,641,219,60,599,181,44,504,645,204,606,489,254,533,602,447,574,145,154,623,195,104,493,626,376,450,187,509,232,425,64,213,619,101,357,660,367,511,648,211,460,657,390,255,265,227,336,11,189,539,40,440,171,463,460,276,464,465,624,247,213,139,566,12,657,567,18,557,275,548,253,474,389,239,504,160,11,492,310,513,114,584,384,549,465,366,198,227,76,468,629,112,643,493,603,31,273,388,521,432,145,169,399,320,437,187,419,487,79,480,228,565,563,449,513,536,659,187,562,366,191,429,381,329,470,269,299,39,145,0,119,299,146,233,599,224,382,389,331,305,441,29,90,556,488,353,129,49,204,30,563,640,456,201,189,570,391,492,7,230,348,405,504,192,144,514,343,458,506,176,305,462,86,11,161,621,637,178,658,411,488,136,231,483,264,531,11,23,114,499,137,61,182,336,563,451,287,500,472,63,387,231,624,99,593,204,353,219,505,288,136,193,210,516,411,246,358,553,259,582,537,351,567,176,62,275,527,415,62,266,46,278,125,127,477,563,583,366,389,627,365,375,494,334,272,307,319,574,262,107,434,296,86,453,380,414,186,232,282,445,602,132,203,289,412,513,478,180,598,43,454,358,602,601,283,343,549,337,598,362,78,420,213,628,339,280}

    {300,276,356,312,555,286,599,338,581,363,166,130,624,119,465,542,412,469,158,336,279,561,578,282,229,362,167,572,80,326,553,570,289,314,315,660,99,149,76,660,394,568,435,229,570,599,167,277,237,4,37,569,428,70,240,69,427,438,143,300,641,508,62,352,502,68,374,223,121,87,167,131,176,199,336,496,5,567,561,189,628,132,495,601,451,549,56,233,305,158,220,242,436,467,30,209,636,260,511,160,30,130,321,594,85,300,599,609,287,71,417,67,62,548,234,373,599,88,29,293,515,528,431,244,207,281,415,387,48,624,203,528,524,161,580,397,598,526,188,142,653,335,383,212,563,454,448,365,33,198,455,450,311,477,102,520,632,586,65,55,86,377,271,199,255,154,419,159,28,180,151,338,391,415,130,89,552,516,410,442,583,453,635,116,238,426,501,471,149,461,560,128,625,430,49,194,476,23,357,551,18,109,591,543,406,349,179,18,182,476,317,165,220,227,99,98,330,93,412,339,124,31,515,512,448,422,49,40,450,407,395,340,441,118,560,588,257,446,371,611,17,491,120,74,127,461,175,435,498,113,301,302,25,454,275,424,652,203,369,284,405,613,366,181,270,406,344,113,454,502,297,554,107,660,639,341,372,153,194,564,614,108,567,291,640,259,342,392,644,656,236,86,263,598,366,625,343,564,235,468,384,297,113,35,200,338,303,268,382,318,423,83,89,526,547,313,263,323,393,535,563,418,629,484,248,277,274,396,570,322,6,452,417,68,189,340,167,123,264,370,415,330,156,332,592,8,520,99,124,206,260,530,59,599,138,437,475,339,132,207,215,325,510,536,203,173,99,447,290,449,300,45,31,574,366,207,135,563,512,115,126,585,80,40,414,304,321,38,123,336,155,403,237,599,174,56,84,32,488,371,294,357,163,3,651,563,285,162,213,51,420,290,384,40,647,560,354,14,621,438,150,119,408,485,333,145,362,539,28,52,614,80,93,126,338,241,209,197,260,396,300,22,321,457,454,536,377,513,233,58,405,147,493,379,401,291,13,482,307,79,589,112,252,429,361,637,119,202,272,454,395,376,304,505,559,407,634,600,560,82,47,337,117,638,73,68,428,364,596,465,68,452,136,558,119,214,628,140,115,454,197,322,396,557,98,658,511,529,205,188,487,579,405,95,395,624,454,276,593,197,523,292,362,408,32,177,125,251,563,110,208,639,512,593,37,302,41,408,452,26,26,213,339,165,331,187,295,595,622,300,261,161,263,296,77,27,444,610,87,185,297,589,178,189,624,322,574,560,148,466,525,247,610,360,263,615,396,86,577,588,257,631,308,323,619,29,190,300,593,113,168,62,140,438,355,560,563,493,258,228,571,446,487,399,372,625,81,437,227,210,178,465,595,374,87,528,439,529,458,398,193,239,74,216,293,502,111,487,39,546,82,239,343,365,378,524,252,616,593,140,620,644,581,366,167,590,617,573,560,57,212,481,421,537,412,233,18,405,189,209}

    391

    347

    Returns: 208372035

  32. {681,852,684,2137,270,242,829,869,626,332,2401,2591,1471,1010,2026,2469,2174,512,2092,947,1547,597,1096,900,1283,633,998,339,1184,2331,1231,2841,2010,465,2070,2410,378,149,2684,1295,2231,2715,2649,2030,259,938,2336,180,1695,1590,1164,4,487,2272,1922,678,2079,304,2517,404,2605,1717,452,877,729,201,1819,2379,1684,139,2390,241,1717,1441,1137,2160,1012,961,2660,704,1179,806,710,69,1988,2521,2685,2442,1746,506,794,2048,204,2548,2814,1067,2084,2477,1619,314,418,1156,348,2826,353,378,1851,1072,2556,770,2342,2522,914,176,1761,2051,1663,748,2403,1515,1694,2225,503,1671,2205,308,893,540,1857,83,5,1900,899,210,122,1319,1120,2392,1573,11,729,1799,213,1637,1236,1750,1122,111,453,462,2430,377,1136,1272,2442,1442,2272,481,602,2489,1110,748,957,1618,2120,2426,141,2624,2242,2657,37,1054,204,1824,1017,1854,2411,1340,2801,313,1529,2158,1440,1825,1517,859,557,371,788,1219,221,135,912,1887,1972,2271,270,287,186,972,849,1347,52,2616,928,2061,698,2146,566,2737,946,2362,2397,2187,1964,1841,1724,1454,237,1114,2287,2178,902,2267,2405,2681,1801,192,1594,1385,1383,213,301,2658,2396,873,625,457,1430,386,1989,2160,203,2757,592,2834,83,376,712,2094,1564,2008,2323,2347,1596,396,1616,1861,70,1327,2248,1334,1796,924,2100,880,954,2474,1460,232,2778,163,111,745,726,335,1971,310,2754,527,289,2505,2627,503,1479,1344,1858,2224,1298,480,194,2069,2646,1846,296,311,1745,525,1218,1022,1111,405,1036,2343,2839,2288,2420,2322,1272,136,325,1976,2835,1747,802,2082,459,2219,1293,2469,715,15,63,1523,479,1747,1338,38,393,121,536,2392,1176,827,2259,1409,979,454,1925,1453,2097,1369,555,2696,2078,2017,1305,159,997,1280,1050,696,656,5,1481,2471,2578,2075,981,883,1032,2552,1898,1205,2523,1876,589,115,697,1212,1665,1471,2225,2188,561,2385,2568,1459,1631,1416,2120,1253,1568,1351,462,1477,2673,2481,322,2414,2431,784,978,1359,2219,2210,1982,1154,544,740,540,391,2439,366,541,2596,714,116,1670,2196,1776,2422,2643,247,2659,1408,2514,395,610,794,1568,2827,216,1301,2112,1714,2011,390,2784,1336,2499,2838,2561,2163,882,1543,2784,2284,2121,818,1135,363,1069,1821,344,2346,22,1020,2052,1563,1118,1637,850,2770,992,1166,1326,1826,523,2564,2187,2521,2418,289,2011,2039,750,93,2637,995,908,1228,2517,1527,2327,2198,851,1954,91,1404,1144,759,1031,1750,2635,840,2775,1635,212,982,1273,739,656,1374,356,1671,89,393,1183,1552,956,280,14,1302,2405,778,1030,1512,445,360,970,855,2236,1579,285,2395,1870,2179,269,556,867,2456,663,1577,521,1750,1820,1642,2581,512,1830,248,580,84,1236,718,1290,2650,1297,865,1686,1521,379,1274,2071,1425,388,68,2636,87,1705,512,214,958,797,413,1315,2309,206,2702,2166,2204,145,799,1807,2144,367,1600,193,2234,1875,2115,223,123,2353,2491,723,280,1768,2494,1859,1460,570,2478,1894,1706,1599,1691,618,577,1983,82,646,1325,605,1850,241,265,1209,896,1486,1002,2095,2120,2641,340,299,802,1165,89,46,1090,1009,1711,1787,1025,2744,2058,841,783,2709,541,2385,805,785,2471,2714,1279,389,1321,551,2125,1037,1707,634,1409,1217,2492,528,2557,2753,2184,2795,1556,569,1122,1726,506,1626,549,184,2438,2264,2777,1561,1010,2272,2692,681,2259,2417,467,1491,1886,2225,2277,1210,2177,1623,683,1634,2296,2268,1504,797,1392,1800,568,2533,53,403,817,2597,1086,2345,1157,249,2229,2270,96,1889,1677,30,2325,876,1804,1807,869,1634,595,1686,1073,782,47,2481,2337,1620,1700,1164,1555,1239,1687,1143,2089,488,213,1465,2577,801,1470,1369,2686,218,2315,1287,2297,1784,1210,2342,1908,1050,1222,1807,1062,1789,871,131,696,2166,2017,558,176,1918,1747,1414,304,1061,1584,2209,313,1141,1942,1590,203,1304,378,2774,1588,1029,872,1112,1915,2352,1796,191,2502,2697,1660,305,2416,960,1814,1423,289,2339,586,121,10,2551,959,612,1637,822,2387,2601,1395,576,2354,2521,552,2630,427,2258,2334,2387,983,481,2383,2341,1634,381,2417,2387,224,2001,844,2073,725,367,986,2391,716,1834,632,2164,917,2742,1064,1713,1785,390,666,433,1463,1267,2767,1284,2596,786,1720,372,2337,1858,295,2534,2167,2635,2704,1375,1904,661,375,2029,1123,313,364,2290,2020,1171,1986,2732,2572,1042,1438,2434,509,906,2367,43,271,1247,1018,1460,1945,2138,2373,1465,141,300,1262,1126,1339,800,2406,704,1349,68,1914,887,1767,706,402,745,1503,2387,2077,1973,907,2196,1566,1446,1817,440,1908,651,1451,884,1282,1701,204,1858,1693,1180,1996,606,1079,2562,193,2325,968,1824,490,2841,1232,68,2503,496,2098,1058,83,709,2575,1878,424,2037,93,2675,499,1658,602,944,2292,264,2293,2007,688,813,996,547,1942,250,1910,262,2300,1039,75,1854,675,1556,336,318,2254,1758,2799,700,1241,9,1611,341,596,2527,1585,2309,2028,790,2559,1645,1693,1251,221,934,1218,1287,1714,2386,1109,148,1930,983,1861,2306,368,1671,1007,2412,1483,804,1519,2584,2336,1933,1710,1295,883,436,1196,703,2457,1033,2389,2643,561,2251,2521,1549,2817,1441,1726,1573,772,1373,1343,2183,1677,1877,2070,114,2339,1588,450,2742,346,56,248,1447,125,162,747,1245,1679,1380,1135,830,988,2464,131,2802,1924,1311,1567,68,2013,630,1584,412,1047,2634,2666,1866,30,2841,2428,1727,844,1183,2588,1698,644,1823,636,1892,1979,1225,2166,1103,1995,592,2731,2107,1818,10,2449,2416,864,2404,607,2689,1403,2491,2623,71,1736,755,0,1198,1566,158,852,2156,1483,2700,1743,707,185,1204,390,926,749,2107,2825,1529,1548,1980,356,237,1571,1543,596,2779,2475,41,526,12,119,373,1471,2164,1304,2259,2202,370,1321,1818,839,1999,775,2540,1962,1513,2487,2387,1515,2265,2419,538,2125,1094,1732,224,623,231,1713,45,1700,1081,592,2139,216,2408,1442,2673,2010,1909,1350,2068,2366,808,2120,765,226,2676,1385,2523,851,2485,309,1992,55,946,2257,2430,1701,112,1603,1633,1614,54,1514,1065,2614,2701,1428,1622,963,2417,1249,2036,2222,1129,2423,627,1672,2753,2706,2520,2509,605,1868,1934,306,2537,933,564,416,329,1548,1277,1842,2517,642,1213,58,2513,1537,1444,592,1675,1329,372,938,1418,1509,2506,1944,2704,2318,1265,1428,2693,1825,652,549,2769,491,103,1270,842,96,1432,2249,2604,1706,1991,1400,1440,1567,134,585,2120,1,1993,0,1899,1852,2522,711,1774,331,1634,360,1473,274,162,1607,1829,1024,2119,791,2400,1061,1532,1111,1551,1519,2720,786,1731,2556,2151,725,2278,248,51,1881,1748,1080,1950,378,956,1713,35,427,680,2278,2301,1864,118,764,1851,2359,1846,413,791,784,354,1470,1525,2790,1192,47,1377,178,907,509,2290,186,2171,256,219,1768,725,472,2763,2703,381,240,1554,518,3,216,2680,1388,184,803,148,479,1860,2617,459,2030,1953,1229,142,1512,2006,1909,2697,2036,1893,2669,2605,289,1887,718,2175,1778,445,1947,1645,1424,1956,1373,911,1125,2011,2582,223,399,1025,2481,1376,55,155,9,1510,1723,1950,2820,25,2499,1155,1582,2762,1993,835,1701,1054,1975,887,2127,1546,13,1467,1182,2565,1987,2219,49,2463,2078,57,2298,99,1214,1423,1859,422,889,2354,2074,1157,1045,529,974,169,2531,1784,1167,2457,2453,2102,588,2256,390,657,2253,574,1356,1556,1845,167,256,2186,1507,2317,1249,118,2697,1786,1528,1701,2546,1221,1091,162,1908,1938,1503,2243,85,276,217,1718,1595,434,2523,1650,2339,216,959,2457,1914,1599,183,670,1615,10,1875,743,1225,279,1484,1664,1746,1007,87,1788,2744,161,1292,578,125,153,2818,1935,122,2743,2047,2364,2801,1499,2702,2004,234,2330,920,1481,918,1438,716,612,784,245,35,1867,2668,2211,838,2526,1381,1807,1981,62,1891,786,2466,2809,774,1625,547,1333,2275,1112,1730,2589,58,42,1684,797,1844,875,1310,2232,1766,331,617,1057,1456,2803,1872,1887,1176,530,664,1481,1217,983,498,2476,2290,113,330,2283,1630,1684,870,725,1568,232,2715,2363,1678,1960,2403,817,2500,2696,2739,587,2479,1609,2505,49,604,1977,1457,2009,221,2000,2529,2158,648,1377,1918,1354,1761,1355,2126,2475,1421,1112,1006,1747,1407,2082,1908,2508,2450,1278,1158,1800,2309,1634,639,2245,475,2154,1871,861,1747,2125,2224,1523,773,1465,1956,319,1724,512,2253,1270,1224,1147,1869,1299,904,591,542,2682,2521,419,263,1208,343,1806,146,2109,248,760,2430,221,2804,905,2475,2014,700,1099,1233,707,99,1800,360,441,1255,2846,1157,1496,285,83,2097,1386,461,2258,1743,2236,2339,1596,2743,111,989,2088,2788,1608,2712,2132,2416,2425,2772,35,1458,2331,1671,2473,1836,1009,1407,1684,14,2378,2237,1458,1754,1974,565,2461,1644,2417,2623,3,254,2552,645,253,2455,878,2323,1973,2479,395,2612,1631,2402,302,2551,502,1828,2364,638,1635,2194,466,83,1409,1537,2510,2311,587,232,1108,2812,2246,923,2534,1696,2264,2751,869,968,1916,2490,1093,1253,2715,2421,2,1215,994,2441,2694,1533,425,2308,1095,820,1921,725,1880,43,1468,2644,1997,2509,896,1992,2461,2302,1536,1497,830,797,1703,1168,458,1638,853,2551,1753,599,56,1277,545,2712,118,710,1096,1533,728,2191,500,2551,2688,1231,2713,251,2184,1379,2203,2149,686,2720,1719,1967,2030,2574,2743,2168,1317,102,73,217,1258,1914,735,872,1485,707,363,2647,2313,1680,1021,1088,1266,59,408,624,1898,2285,1016,1735,748,2671,1883,1649,531,1501,1868,1117,275,2050,2603,2417,1728,1066,1658,1029,1313,1361,2547,2348,2599,959,1489,2806,744,977,83,838,752,1992,556,1118,1117,732,608,2413,1648,510,232,2054,2639,2837,1941,925,1077,1257,1621,898,105,2543,599,2133,1989,1842,1423,1177,1868,2811,2433,2422,2433,1304,413,2620,613,1331,1490,2405,1631,2653,2419,1542,1538,495,834,2634,1674,860,1743,1747,141,1920,1534,2357,2750,1121,2551,720,2435,2772,1100,426,2519,1037,1958,414,1682,1846,1036,1336,0,2343,2003,39,2462,368,2562,1059,2676,3,2638,2448,262,1234,1757,409,2543,858,1713,2539,349,1956,2590,804,2230,1461,1404,1588,2430,2314,1106,1434,58,2736,2238,2280,2572,2184,1989,2315,875,492,748,253,1802,1701,307,1909,1119,1879,315,1851,2562,103,307,1868,798,2728,40,1576,315,514,683,2123,2685,2571,2816,2437,2353,797,263,2088,2247,355,2330,725,464,1828,2373,1961,512,2847,2736,1572,1700,2252,767,2351,751,424,2763,1794,1308,1636,2426,1335,1830,758,875,884,509,1153,1037,965,801,1922,1857,800,1134,632,825,1471,964,463,393,1135,1243,522,1038,673,165,2668,813,221,2280,2270,2415,749,2055,166,2605,545,392,1062,246,367,2583,2261,517,1340,20,2682,1211,1875,1268,2432,528,215,2477,1696,1100,2048,1251,2060,2198,2810,2489,2045,2842,1801,2532,1590,2604,651,1223,465,979,1363,1427,973,1868,1652,1772,680,2719,493,2495,1695,2273,2410,2648,2528,2781,2521,597,1701,729,1287,1275,1294,1454,1679,2697,1700,1914,1746,984,1657,1605,1540,2340,2000,1420,1171,781,1671,848,2760,892,525,2478,789,962,2041,2575,468,1810,577,518,2187,424,1326,816,1445,1999,1668,1993,674,2319,192,1565,2439,1015,540,1307,1636,2033,2198,413,1838,1191,826,2558,232,1510,1051,2488,1461,1948,544,2177,2168,2321,301,2350,737,2825,1715,901,621,2115,665,2747,2456,1783,1673,677,1008,13,1686,1359,2793,1304,89,2724,1679,2556,1560,744,2214,1631,172,641,244,2064,723,1718,2098,2114,252,1765,743,55,1955,1774,320,1079,695,2743,131,1466,618,1871,2000,2639,1401,1318,2656,2304,1695,155,2139,605,1057,1454,2105,1220,2024,1945,83,2556,2291,1336,1329,1095,1599,446,1405,615,1601,1573,1366,2704,2832,2053,38,1305,940,835,2599,573,2563,987,2112,1630,539,1219,2316,1438,922,1284,571,2116,1914,2119,1979,983,2445,1184,2101,1162,1588,1357,1118,1288,2486,535,2024,2629,610,1669,543,1755,257,107,2138,615,2277,2233,337,2130,282,903,1126,1722,868,2435,949,1013,460,1161,2478,2027,99,1252,29,2749,1247,2269,2232,1436,818,2607,1506,1699,1137,638,2813,2132,1792,312,2385,2094,2525,2830,1911,56,674,641,1346,877,396,40,35,767,742,35,1105,1670,74,193,468,2419,2727,1604,1783,91,2398,1414,2391,2727,250,1162,559,55,1725,691,2066,650,990,1935,2669,1114,2626,2656,2579,492,725,476,803,474,829,800,61,654,2610,2556,2585,2614,483,2136,1469,1258,875,2628,306,368,2280,1521,2810,1342,610,317,1905,66,2025,802,2124,214,756,908,1409,2111,155,2524,2345,1932,1414,428,2399,716,1782,1219,3,2019,2453,1435,1550,745,1485,2620,1975,753,205,656,1903,1544,864,964,20,2457,1187,566,2288,1908,1783,2179,885,870,2601,1187,1078,1125,598,452,2469,1005,601,1564,2561,7,1975,144,2540,2349,875,2845,2639,1145,2236,1536,423,2458,111,1980,2421,2401,2521,2333,567,1542,2162,619,123,906,34,2200,2089,140,261,2124,138,535,667,1529,411,1596,974,65,2562,2839,459,1252,1313,1207,2458,2125,1081,2630,1322,2782,2586,1417,1002,108,2816,1272,553,1526,2017,1013,1227,1975,655,1619,946,2705,1971,2481,2510,1682,1774,449,334,2047,2487,408,785,2667,2748,1989,197,748,512,2782,1435,1666,2741,2253,2551,1785,1701,1411,1092,1946,199,2040,1058,2662,1831,1796,1744,604,2537,2613,1643,1289,201,290,2106,439,1718,2152,1555,519,2732,1035,2673,501,2489,2390,1805,1157,208,230,1674,863,389,1543,413,1503,2063,1313,1831,2230,2206,2198,1240,1554,2322,739,820,2124,555,786,122,1245,2056,1671,1236,258,237,1874,2399,61,1989,1616,1886,1212,1131,2712,1020,2721,1653,1636,1285,415,2047,233,2413,1244,2600,2314,729,1139,407,1810,2539,1415,805,268,489,2484,2531,2250,2138,83,701,2429,2609,1467,935,755,797,2107,1208,1908,1241,1439,1389,1967,63,563,1713,121,2212,1609,777,586,2674,703,2817,1717,1616,2222,589,1150,1557,1364,410,1454,927,2761,886,1126,2094,2765,294,229,942,2128,195,2708,2342,2755,1424,1999,1055,2318,1827,702,2444,2295,2443,875,479,1552,225,1807,35,697,797,2429,2040,2791,1348,1679,2204,227,2097,2627,682,1692,1256,382,2814,2190,64,2427,438,521,1156,2420,1260,2174,1747,2425,351,431,238,2129,2134,1606,1924,2603,406,1774,16,2617,1230,840,2509,1337,702,1454,1919,538,1518,1583,107,27,1366,2145,1202,711,1282,2150,993,1889,2634,1138,1576,2402,545,1368,1742,2592,685,277,644,785,1221,2837,2598,1628,1722,1009,430,812,2125,2192,64,810,219,2840,983,2510,2455,243,1272,1536,2574,1602,828,2612,1103,1326,1172,322,775,2344,2436,2218,671,1942,2253,619,1112,2249,671,1569,2545,145,718,1042,2239,36,2056,276,2590,1972,404,1680,1957,2366,616,401,254,488}

    {1877,2810,583,1875,1139,1910,520,603,2187,1948,1974,850,479,534,1339,1337,2663,1378,575,952,1789,620,974,757,1717,1568,451,1254,1076,43,168,2362,1148,724,1790,888,2266,809,363,659,2689,1989,2806,1521,226,18,373,1928,2771,2823,2668,1121,1439,1716,2454,2741,2650,2138,337,1687,294,1559,2289,525,566,2148,450,2744,2770,341,2195,1075,998,1370,372,1039,2686,2377,2807,771,2428,617,1752,2687,906,1034,160,1009,2519,680,1446,2225,46,1091,1675,1183,1683,202,1732,1099,1344,1022,1788,2772,1733,126,971,1204,1842,941,64,2416,2142,2142,891,808,253,881,980,91,284,557,860,1833,2827,556,1845,1740,1888,2085,2303,584,785,1785,727,1366,2289,858,2059,2199,2098,1773,301,225,2828,1049,1780,1081,1368,2193,537,2451,1792,1081,1586,331,2829,39,2538,2177,877,2306,2706,266,1476,1443,2732,594,1715,1976,2204,1699,2777,731,2774,2784,416,1390,2493,1159,452,465,2567,1791,374,1138,2655,293,2023,710,857,141,2556,58,1562,539,2382,1380,1535,425,152,1598,80,2713,1183,911,2515,2742,1837,1096,111,1480,2165,2447,507,694,2031,2242,94,503,466,1829,1557,614,177,408,1203,2030,1189,2159,2581,1391,1535,1423,1412,723,1965,1151,1188,962,2185,788,2431,660,228,1569,1039,2718,2222,42,479,689,184,1854,1048,121,1431,2039,115,2523,2766,425,1468,502,2805,16,1855,663,1756,486,1193,396,1800,2046,2547,2749,1385,2400,878,1796,1471,776,1455,2600,517,420,456,1128,1808,125,655,1760,352,951,228,658,1806,540,33,556,2176,2703,705,2768,2424,587,1091,2455,793,1580,2259,1291,1325,413,669,1082,1814,990,952,2578,970,2844,2772,741,937,2311,235,60,1747,142,2831,2710,2794,2315,2689,1112,1393,1703,404,1768,157,1150,1372,211,273,1936,2016,567,1978,2700,440,2305,1388,453,1220,643,1847,390,2465,239,2561,482,550,337,809,161,792,1924,1543,808,821,1612,747,842,1387,1849,268,403,1852,1349,432,1816,2204,2420,1330,2469,1399,1263,208,1528,43,763,265,1216,120,1178,725,1260,1510,1714,1556,378,2308,578,814,177,1828,2085,2623,243,2719,2279,1070,819,345,2473,1671,1959,219,1349,2468,1671,2249,2041,1450,2173,802,2809,1381,334,413,2536,970,1794,1919,2227,1985,1279,209,2387,533,1699,1742,2640,1709,189,2490,257,974,2086,101,479,117,1713,979,2649,1942,83,284,457,2259,10,2796,1516,1679,1077,13,1337,271,1136,938,2566,785,2030,1841,21,1926,1797,9,2011,331,991,1395,2831,413,311,2237,2380,783,104,656,79,2773,738,207,1769,122,1412,150,786,1357,196,134,543,483,1868,1998,2359,813,807,2836,2595,1747,528,986,1524,2547,701,2736,23,751,1087,1388,1739,1925,1318,1528,2489,365,1098,2707,2257,1925,2682,2032,1430,2120,1485,2507,1339,1071,1259,92,680,2751,2124,2354,2133,328,711,1132,1890,1927,2353,1671,823,121,184,141,664,1112,1827,1175,1264,338,2343,445,1696,2800,584,317,2670,2053,2711,2083,477,704,2036,2744,1701,295,2025,30,641,2358,1515,2015,2276,515,2683,1278,2099,2671,1178,377,1009,419,2295,711,2597,2564,13,1133,2018,2248,2149,2023,490,2689,1796,179,1609,711,899,2487,2373,1254,2307,1762,1568,2290,1184,362,437,1749,2027,2252,1661,146,190,1212,1046,1076,516,974,2080,2385,1229,2442,2645,78,1539,2191,1358,2447,1415,2260,1449,1162,1014,1469,335,2070,43,623,1558,1106,606,222,1738,38,1973,2841,462,2177,1136,83,2302,616,1474,2219,560,1592,2323,383,1455,1202,966,224,237,2497,152,2730,1215,2241,1973,2467,2819,1160,442,1528,2676,2357,2628,155,1896,855,1338,2549,1610,189,1297,32,2258,2457,805,869,2057,672,953,728,1763,249,297,1560,2150,594,61,1669,1864,1530,671,12,2124,1258,783,2402,1413,2339,1001,2472,1169,622,1971,908,66,1589,675,1372,586,1995,329,378,2410,2675,1829,1033,1939,473,1634,349,730,776,1101,1309,2375,1502,1747,1804,2125,497,2740,2241,2810,1566,2237,687,521,865,321,2652,969,516,2390,2208,1835,993,52,56,1690,858,121,2720,839,582,1010,2516,2136,2481,1081,395,2023,1184,2105,2716,1133,2135,1620,805,843,510,1637,2522,90,1493,1737,1438,2027,478,1056,711,1727,2071,1704,2284,758,1747,53,127,2679,2343,2568,2133,699,583,2390,2413,137,1637,1547,568,2625,507,1124,636,1828,2849,1464,2307,2010,761,1598,257,2693,630,2793,509,1670,2359,2150,1863,1849,148,2735,1346,1517,2750,109,2648,740,1620,2170,1438,2005,99,1906,1041,1843,2431,465,1137,1592,759,1217,2431,1475,1003,1397,1935,1475,1218,224,2078,1630,1050,2261,2543,757,1083,1252,469,2598,713,0,2465,790,2225,1150,397,2296,164,511,1047,1504,2261,2174,484,1774,1036,1563,2222,638,921,1040,1671,521,477,2044,232,1236,2631,1236,2232,1902,1738,2540,824,91,1126,1619,1376,94,1834,2085,1747,1573,152,2558,1184,173,324,2550,1104,2742,1505,1568,444,2393,970,762,2036,1732,2231,2376,1350,2473,698,2226,2621,2690,48,1183,949,716,1085,1659,1616,1033,1717,115,2466,2027,1492,1912,1935,2726,20,2757,301,1052,836,1457,1993,2530,2582,2315,1190,2743,1241,1681,197,1871,1871,2743,2045,2748,128,2116,512,1346,2298,343,2673,2141,2787,743,1806,973,243,2230,62,333,2268,591,2244,1341,2133,1021,118,2686,2191,2136,2751,2668,2090,1752,1068,1170,1751,344,280,842,420,633,2587,864,2202,1897,2334,289,1598,84,1107,361,2147,175,1578,2703,2174,1238,683,1594,1454,910,2725,941,429,736,1943,2336,2558,2550,1747,2043,2104,2554,729,595,1088,1656,65,1023,1809,1581,2042,2149,2659,1476,2181,1594,1033,1197,1097,1605,2690,2676,1226,2307,2659,2012,2324,97,176,2070,1864,285,1272,2279,1365,1089,461,2518,74,2182,710,2259,1803,1568,993,685,1997,2690,853,578,327,1326,2087,64,2022,1271,564,505,2465,2669,350,2131,1913,583,1582,877,2790,1398,2697,341,1752,1409,216,2665,1368,2676,2553,521,1332,2576,184,2739,1705,1040,487,2176,2697,1634,1515,2569,1911,1217,2008,1335,2745,590,2399,2717,961,1754,256,1814,1491,24,2086,2776,1848,2606,2759,310,1545,2000,2034,2256,202,2462,2797,2385,1751,1939,1017,833,473,776,516,1718,1053,2742,1747,2388,2682,1063,425,1181,2752,509,1570,77,384,1526,1923,1137,1362,1582,539,1215,2558,443,1994,2777,1076,2220,2676,1235,1685,2617,2574,2458,1420,1607,1324,1951,1984,416,98,2271,368,1588,2169,2460,894,1234,1998,1222,745,1591,1269,2516,465,2690,1279,2733,1741,649,134,470,2315,2486,1325,2679,464,2604,1664,44,2446,1734,1589,2664,846,816,1010,2403,2699,627,2049,1884,1860,19,2504,1406,2072,1993,1170,1427,1788,2741,356,1697,1856,2775,2779,2338,2647,1420,2180,809,1679,1793,1937,2081,2239,2446,1546,2733,248,2177,2216,545,2519,283,1740,154,1586,1500,1209,26,1796,938,2413,2593,2124,236,2150,248,2570,585,1360,1517,1494,1027,2069,1312,894,2332,469,2217,125,837,1314,711,2784,2718,1798,138,1955,1751,783,1475,1683,494,1327,40,359,1343,1848,1445,1609,357,2758,1467,297,2396,1377,938,660,2442,284,2002,746,805,2155,2668,759,1566,546,842,2540,465,1976,862,1219,431,520,2133,2527,562,2383,976,1259,593,10,111,76,1019,1691,1019,104,2740,2780,165,2288,2577,1142,1524,652,2815,2040,857,1970,2253,1186,2775,2492,1657,811,991,1016,774,2809,2384,157,548,2722,1126,2580,2483,1215,115,61,985,2796,1618,2025,1511,1659,1248,105,2440,1858,772,1510,2466,1639,2848,1651,1127,1603,1028,637,1278,404,1956,1307,1286,2313,2144,2235,566,948,2553,1807,2703,253,916,1420,907,1464,1968,1501,1511,1824,116,930,1300,1100,1712,2223,832,1565,326,1747,2747,2288,2611,2759,595,350,855,837,386,2582,1554,1845,1322,2269,2606,2078,1598,2013,2423,1462,1770,1203,696,2749,323,315,304,540,2817,2390,95,591,1999,251,435,755,1150,911,332,865,583,2831,2265,2429,2221,1717,2370,2285,680,44,2810,171,403,271,194,2725,396,595,655,1993,331,733,194,1850,788,2055,1056,91,1995,436,297,1710,769,2139,132,1941,2630,2809,1320,2070,1103,786,1429,2262,86,2825,931,132,2248,398,1474,1617,2652,797,2179,1487,448,2304,1907,1058,1433,2687,251,358,829,2654,1655,1452,1676,1197,2619,1797,1490,143,1678,2478,1830,457,2121,2310,1304,1564,504,1446,1481,2041,17,1018,626,1267,2610,564,796,1719,1454,2560,363,2315,2172,3,2122,2494,933,2651,2521,1194,915,1654,276,1998,1796,2691,147,1852,2113,175,1915,2725,2034,1955,1510,2301,1627,741,2543,1478,2707,394,631,1973,1810,1113,2369,61,2555,1773,2464,1343,320,2057,975,2074,1503,2802,1520,1727,974,1495,1999,2677,1491,2232,8,487,2191,2719,118,2118,1491,2199,1811,131,503,2742,278,13,2668,1353,1859,413,479,932,1633,1999,1112,297,1779,2278,2825,2054,2696,31,2832,2668,2350,2446,1804,2364,276,2835,2065,2259,1575,255,2052,2668,2239,1607,1935,2331,665,2394,579,611,2507,770,144,1312,2840,1728,1634,2350,2764,2355,2437,2732,2740,540,1943,1023,919,844,1895,2571,2562,1715,1019,2076,593,1886,2330,2439,299,2743,2229,1853,1284,2566,2512,1446,1535,2026,2311,314,2481,1730,334,2777,2161,943,879,1998,890,1106,66,770,1401,1219,2690,1313,1722,2016,2092,1508,2311,1928,385,2812,1689,1426,702,808,2213,1077,1587,2620,267,285,504,1226,103,981,2419,2562,1702,1664,1856,893,1588,2813,1448,1935,2138,1950,2361,2189,768,1360,281,2288,1588,1747,2112,119,1609,72,2792,227,110,2339,199,2192,2807,1115,2348,1671,92,72,1864,596,1354,2056,156,1204,1779,799,412,1498,2249,676,704,1918,528,2652,2496,967,1384,958,2557,525,1540,2426,1549,1382,394,2748,2543,470,681,139,1174,791,950,845,802,1632,412,425,2610,2498,2706,2150,587,1258,614,2344,2808,1468,2355,1237,1911,655,1842,2294,1242,1755,2783,1973,15,1389,454,2676,1596,280,2618,632,2697,1020,865,1891,1771,2491,2513,2738,604,505,1327,1865,2367,1990,1286,182,513,590,2824,2404,1047,2788,328,457,546,491,230,1000,1629,2536,48,241,2553,1556,1882,2320,959,49,2537,1239,2699,877,2239,253,476,938,2091,1442,1095,390,2376,1729,412,220,2696,30,1550,583,2286,1297,2331,1885,1654,297,1832,1553,2289,2843,609,1641,692,1037,6,301,2602,1860,187,1695,1118,719,1371,251,2371,537,1557,2123,2342,260,318,1026,2067,850,1079,893,1764,1967,766,1594,461,387,1109,2248,2806,2742,2120,1394,693,1909,598,1940,459,2322,2300,2062,1287,694,198,1567,2221,1358,2518,1950,1686,1060,1531,853,1528,1637,447,2090,1383,197,1275,1121,1457,2485,430,360,661,2385,2619,1481,1105,1057,2197,2402,495,1588,1920,592,272,288,821,2634,415,1983,1969,517,914,886,1770,1378,983,596,2035,1528,1230,2723,2235,2419,2340,2735,779,2518,2160,1858,660,129,2831,628,1497,303,1909,2328,2467,657,1250,1612,274,1423,342,2822,514,251,2402,489,1588,2535,1233,161,2432,1309,2504,1468,1236,2784,2326,2367,1472,1901,367,92,525,2551,1043,786,2108,1126,1835,2665,1815,2646,396,1541,291,2574,787,913,1705,2464,1873,725,2385,123,1266,1484,669,2096,2525,2143,1025,251,1185,2368,1186,1862,17,1389,2374,1662,1316,1488,1463,1718,2402,680,1258,464,289,936,2470,2324,2553,1388,1535,99,1420,1166,1243,1799,795,498,3,629,2365,1739,1574,1781,997,1856,455,2438,1620,653,1812,2294,752,1771,2761,2763,2769,438,2835,2184,2110,773,2593,647,1440,139,2375,1273,64,2742,2540,685,2633,2207,554,1810,258,286,1494,665,2157,1954,1423,3,982,961,668,2082,118,2017,134,1624,2634,369,45,1689,2403,929,2622,2403,2196,2228,2255,874,1919,343,1130,1535,780,1437,1949,1004,2043,2778,1701,2699,2150,100,2675,2546,545,1061,924,488,998,524,1754,1352,2693,2789,1739,837,825,508,1158,1633,1603,415,897,1199,1966,1257,162,2523,1108,1296,2496,1594,2370,1173,1044,1051,2048,895,1259,1084,2192,1244,1139,2344,429,1469,1655,2405,1822,1929,1595,347,2620,655,2480,170,2356,2726,2729,2334,1813,1932,2008,1708,1151,1096,2381,1046,2598,77,1304,141,2618,1410,2,1085,2661,1409,1163,1684,762,157,1002,1102,1201,1667,181,1812,2027,2458,2402,1261,854,1607,1214,485,1588,174,642,1647,776,2805,2360,1544,111,2272,457,2038,2742,1206,2632,151,88,703,1345,1407,601,2825,1323,1935,1217,1458,1747,1402,2715,464,2447,2237,2282,82,2523,2746,1605,1547,1933,2536,785,2168,2299,2829,847,1484,1759,1624,1910,1266,2136,133,130,680,2720,1861,188,1535,1357,421,412,470,221,2700,2827,1247,2259,2671,1419,973,2615,53,1640,1602,2672,1106,1203,1301,1842,650,626,2506,395,2279,1809,1973,1528,562,2311,782,2329,2372,110,2635,1909,593,1724,2465,487,1442,2234,679,938,1284,2734,1795,1203,1829,1146,657,2743,892,2652,1636,2562,1963,1222,1894,2380,1993,1322,2226,67,2808,554,1821,1678,1320,677,1476,2543,1842,371,2201,2727,1597,1993,292,799,572,652,48,1999,2627,2259,1352,1234,1872,1761,574,2511,1968,102,681,1916,2678,556,816,1057,786,722,2215,693,2219,1306,1910,353,2735,1745,2698,1542,1950,635,1362,1166,456,2409,1701,2093,1422,1649,1281,2117,198,1326,1808,2342,2756,1231,2168,1195,1993,1193,571,2425,470,559,2728,2544,471,1303,2462,549,909,532,2452,710,738,1603,1372,2397,69,2700,1775,2132,1550,1892,1818,831,417,2592,253,1010,945,1292,106,2312,1162,5,2309,55,1239,2204,727,510,1561,2602,398,1074,21,1265,2257,1383,50,317,147,734,1104,1842,593,581,590,858,815,1861,1482,1721,383,899,2110,420,2590,1613,222,262,1839,1952,2696,1396,1931,1328,1254,826,577,282,400,298,1367,2542,1975,655,513,1617,1777,2274,856,1703,279,419,1598,754,10,1608,1200,1217,2120,996,2797,250,1011,1383,656,1700,2403,364,880,800,432,708,1356,2785,2593,2184,316,2501,866,745,280,625,111,2166,2335,1818,2798,2608,1762,1568,2594,2222,1700,526,2477,2536,110,1855,1171,2573,696,730,1542,640,110,907,2721,186,2605,380,540,55,475,2821,2750,224,680,235,2048,1651,1430,2092,725,715,2816,2631,2682,555,1275,873,939,241,1493,851,935,1593,1762,476,1534,35,1266,1618,819,1140,2153,118,1584,573,2703,214,1674,690,1845,285,1639,1116,770,1246,717,2013,2301,786,725,2466,652,1209,958,62,1512,889,1276,52,564,2740,124,907,1916,28,2835,2021,2334,64,999,1746,2782,488,1919,721,2023,1149,77,1688,2833,1540,2263,2103,1212,1152,1407,243,2713,113,2459,1934,2311,794,2676,776,2482,1471,1346,756,1917,1829,1219,1914,2786,2281,1683,1522,662,136,2402,1219,571,2338,600,1646,1840,2708,2407,1634,2622,2544,2375,1542,2642,805,1632,2124,81,947,955,1974,2240,2140,2489,130,176,655,1222,62,1955,2541,765,1224,284,2695,200,835,1874,1671,1642,831,1891}

    2685

    1274

    Returns: 143100175

  33. {1433,2388,1813,1485,564,2461,523,583,2008,768,2107,1208,2420,185,2816,1176,2826,2897,2227,2498,200,1535,1193,503,2044,396,2218,1234,1117,1241,1353,79,641,605,1403,2621,851,2899,1012,1526,1906,1399,1549,222,1794,2886,1332,1677,998,2389,300,1401,306,175,932,222,1026,396,2461,278,1990,1410,1915,647,659,1185,2321,290,2346,930,236,1992,1923,897,857,2840,976,634,125,1079,3,1227,2275,567,1780,2148,2514,218,743,477,1483,2909,1402,2679,2155,2189,1702,2226,1008,1252,1829,1819,2001,1841,512,1704,1394,800,546,2024,2921,163,913,123,575,2483,1879,1789,655,211,174,85,214,72,758,1349,1773,2655,1027,2495,2797,1895,2244,2316,19,2357,2506,1068,2174,1624,1371,2645,446,1185,2285,2757,2481,1096,1052,41,836,1046,155,1865,2518,125,1527,193,1971,464,1191,2037,882,2758,2126,2655,1493,1741,892,2417,7,1449,2517,437,267,1549,697,866,2247,2659,594,1776,1219,1109,1588,675,2551,907,176,2337,1105,641,325,2886,97,1115,956,1015,2516,1212,1077,1970,2685,1423,2488,2735,1957,2037,2328,2093,262,1734,1805,2503,2304,449,287,187,230,816,596,894,60,1949,1218,2809,997,2395,2750,2547,2834,265,605,1422,2388,2583,2161,523,111,1001,889,1492,2137,1369,1746,2053,1327,1470,725,2591,1523,743,1666,466,1008,398,2575,965,1577,943,2031,442,1852,1588,2743,2712,1091,1545,348,1177,2180,1529,774,473,2540,2237,789,2425,1637,1233,996,937,2078,2055,2333,2883,2611,0,1769,158,2146,202,1725,2310,1519,296,1226,1742,793,2116,182,675,663,2193,1837,1563,750,767,106,1138,1096,1084,2194,344,2181,2082,926,310,2794,2039,2136,84,2731,2475,183,1865,764,1561,360,2580,1977,1876,2460,1663,2691,1010,2551,297,2539,2768,2396,2026,341,886,174,947,236,1430,1866,1132,2883,2174,1845,2832,59,1476,619,1740,1224,473,59,37,2787,1228,960,1123,1773,251,197,1543,2598,2501,294,382,2702,2602,1107,1778,2007,2719,1448,2066,1704,723,47,795,840,2464,199,1120,648,850,914,2687,53,1352,1402,1303,153,1370,335,2134,2306,353,685,2767,1259,2488,1193,1090,2053,2415,72,1479,1590,2868,2443,1525,2001,761,884,998,2439,1461,1397,905,2485,795,2743,2788,2386,2314,1210,2172,2669,828,1686,2470,1167,49,2034,2723,1159,2556,1714,2840,193,1011,608,2589,767,2835,997,1946,2847,1354,359,2076,2469,516,315,843,647,2335,1616,2411,557,234,1944,2799,503,975,856,1298,680,869,741,2869,190,1448,881,1510,884,2523,2658,1559,2501,2852,713,2475,246,2429,1311,966,314,2725,2099,1054,1945,271,701,2265,1394,1218,1759,2140,2854,2504,2474,1305,605,940,116,2477,1093,2495,1345,2180,2805,447,1045,2169,261,1677,1165,1972,2180,2575,621,999,359,307,2877,1959,2130,771,805,1974,1271,2058,2180,711,2908,744,1308,2260,2790,1555,1240,2828,1842,1685,2044,1681,2661,2728,491,658,1134,249,2793,2293,8,2157,1950,2555,2187,1056,2372,1706,2832,1140,443,362,2790,1796,1275,266,2362,1560,109,2739,1559,2519,2125,525,1081,2482,242,1715,2124,1125,964,2174,1060,698,1033,1070,2188,2145,632,1118,1761,1835,1008,1677,284,2333,366,1348,2290,1459,2820,2899,149,2723,1695,1610,2639,1447,1735,2528,289,1262,2578,927,432,796,2194,626,662,2053,1680,1760,266,2568,1289,803,1367,1920,2053,1513,403,68,2596,1414,2585,495,1703,2519,869,822,497,812,1632,2477,2818,370,352,1401,807,438,1979,1725,2269,2103,1707,768,246,1077,165,1814,2823,1839,1621,488,1960,1886,1893,2853,2383,1852,1799,503,322,1261,561,2416,2787,2492,2781,226,2425,1690,2072,442,750,2774,2199,2409,647,127,2915,873,1472,1321,2662,992,1826,1315,2677,2526,2398,2767,668,369,1383,1185,1859,2732,377,2350,2337,1892,1717,1230,2288,2217,72,1130,877,1444,660,874,443,58,2507,94,2135,1246,2655,2400,2047,34,388,2829,749,2304,890,471,1185,1014,476,1879,122,383,2109,2377,99,726,1760,2438,164,1360,2263,2597,872,1534,843,540,1064,1421,334,2722,353,544,1181,679,748,1134,1023,1541,2894,207,1288,14,2062,816,1503,673,1593,1090,2674,1026,2721,2052,1296,2202,1985,980,2665,1246,949,190,2083,875,22,2706,436,356,983,1104,1743,678,81,818,1707,2016,75,498,2777,336,1519,449,2502,127,396,2301,2007,1495,1137,2201,465,2413,1885,2437,705,2236,788,255,1371,21,2482,1687,1410,2029,23,2817,2247,2589,211,58,2613,779,1273,270,225,647,139,2051,1541,1210,2778,2488,2795,2592,1644,2825,1821,581,1569,1539,1974,2625,876,2471,2737,306,1925,1488,2724,2440,1601,82,1146,1091,2798,801,1251,2391,1304,214,557,1275,702,598,1983,683,1666,2061,2590,2216,2266,2354,528,23,2798,2569,951,1105,300,2145,626,1019,1472,644,2424,1581,199,671,571,2567,1228,1776,2701,1427,2381,1428,2154,2018,1888,1425,2629,1386,86,1948,2420,2024,1858,1498,1164,87,540,1352,1278,1731,1969,351,213,2877,1872,2405,708,1998,1011,1567,1391,2095,1677,112,303,2145,26,1692,871,2622,2781,199,451,2191,2691,1091,2221,1136,1270,337,2250,2220,2238,1363,970,1189,1025,2681,1432,1141,2891,915,2589,486,1044,2412,1336,454,8,1724,2248,1436,2169,1611,647,1513,1116,354,2818,2725,108,2145,77,1726,2496,340,973,2531,2808,1127,2805,788,2851,1285,994,248,393,2282,132,502,665,102,2510,586,1369,1829,2631,1236,1258,1681,2103,2710,1162,1988,2035,2646,2376,1416,582,2043,244,714,559,718,1097,1729,2253,2274,1194,2294,2858,1457,945,1058,1371,1880,2344,1067,1341,1564,430,2528,820,1205,1026,1378,2750,876,1516,447,333,2384,4,2898,2108,1504,473,1250,1320,1867,2190,359,760,885,604,2355,2419,1430,212,1834,1120,2870,2691,2477,2913,1399,2123,2501,480,1166,2660,422,1010,1670,2903,462,512,977,1458,1801,2494,2453,216,725,2004,2337,1654,1764,1128,990,2204,1384,1031,358,1889,1087,2564,783,2644,819,1664,2092,188,1353,2191,1364,567,349,1275,659,1142,592,110,1611,1103,2210,2519,272,1620,2753,618,1364,201,699,2241,1343,1164,1618,823,1243,1430,1306,1363,759,1972,2898,150,2868,1414,2322,2555,1548,1075,1252,1365,908,2645,2766,2540,184,294,382,2678,2609,1967,700,1708,1525,2380,258,2221,2337,670,2729,1451,2240,387,402,2383,1309,2101,1460,695,2164,2779,42,1539,2117,1940,135,165,2466,2525,506,872,1860,166,1401,1589,1539,343,758,2039,794,808,2173,1663,571,2205,484,1026,1418,866,315,1613,1097,986,536,1299,2400,414,1925,2809,1869,2171,2129,675,307,1622,67,637,950,1846,1109,2123,134,2733,237,2152,2628,949,2629,1411,1080,787,1982,1915,2873,1250,1773,1459,1117,2773,1912,1644,2387,800,408,2778,1415,1886,2575,2636,513,799,1494,541,1236,1159,742,2292,1781,1127,454,2380,2368,1728,2323,2535,1398,316,1206,1651,2588,1267,1585,1547,2061,1763,606,1711,292,2731,1706,2818,1345,1045,2278,2218,879,89,372,2848,866,153,2431,1371,1120,2141,2044,2387,2625,932,761,1676,1432,2332,977,2490,1791,2059,2889,2547,73,1404,1656,820,2595,2250,2055,1000,315,2300,2857,2139,2515,2530,2536,1546,1244,2092,497,2587,1607,1228,2209,1452,2240,1960,1509,522,494,1777,445,2145,2763,1845,2878,1355,2815,1600,331,920,1601,1057,2314,1195,2826,1597,35,2364,138,614,48,1376,2105,731,1357,1378,1658,1028,194,1313,504,2036,1172,1747,1344,1270,2854,2291,2627,746,1867,1467,2105,825,404,2106,1237,2228,2547,2774,1377,1360,1998,290,235,721,845,565,1751,2671,501,2159,895,1643,2250,129,2478,2705,519,2482,2916,2848,1353,1689,2251,2346,2045,2790,1124,518,1722,1966,1036,2102,2061,1426,409,2704,1174,788,1766,2695,2129,1492,1663,1610,1024,2214,1845,894,2560,351,304,1901,451,1772,160,1543,1475,1061,888,1184,2324,1835,338,2479,754,2892,229,220,113,2184,2241,1043,2199,1832,1039,223,2384,2751,75,1023,2806,1545,1807,1678,2540,1685,754,2002,1430,150,63,1501,2688,646,768,2028,516,2020,20,1823,1906,1946,2294,940,169,2825,558,1434,2150,457,2902,2061,696,2572,865,2367,1794,613,2110,2508,112,1239,134,2359,196,396,93,580,1755,2215,1669,595,973,406,2692,315,2551,1587,2139,2026,2632,2742,2678,2303,538,992,565,2447,2231,2725,290,1441,1908,1077,2462,963,1080,683,1639,1964,2011,760,1799,1109,1269,814,1005,2843,928,1065,2845,1020,2266,1626,2494,418,2157,1549,66,1030,1445,539,753,293,245,2459,2570,595,2770,2668,1915,1011,1981,937,1685,853,1003,2472,2087,2675,892,1810,656,1536,1090,1806,2573,2037,1258,1229,2653,201,1545,2161,697,1012,2725,1825,2635,2275,1442,463,676,2266,1642,653,1757,2314,367,292,1729,2726,1983,874,2576,295,431,2249,1006,1798,1469,1704,1252,2687,620,2571,66,1942,1941,2117,2796,400,1910,1790,1430,574,2016,2913,872,2660,492,2429,1859,720,2075,1766,650,1141,2433,66,399,2536,891,1952,1131,2504,1670,1945,2600,691,2807,2195,290,1789,2014,2886,1002,90,1725,1563,2618,837,1616,1142,980,503,2039,2746,1240,999,1486,220,26,2598,1213,509,740,2584,2747,144,2643,117,1044,990,615,527,1945,1182,159,1059,2690,2227,2378,2404,104,2622,866,1165,2720,1478,2150,542,804,2547,2159,786,44,583,2624,1090,1640,2078,2703,2041,37,1024,1775,2632,1683,10,1914,448,1858,803,620,1742,2404,1112,1045,281,1925,862,932,2024,2610,2584,1294,2309,206,267,694,294,2266,2882,58,1396,2294,870,2570,1156,867,1063,803,644,256,1653,156,2691,2013,2809,986,1570,1276,2766,323,2720,2383,2579,2808,2600,529,967,1816,1388,1088,2037,540,1903,2185,1877,999,1704,2270,14,396,77,2706,1547,2030,2838,1178,662,1868,1435,2884,1087,1281,319,122,280,346,376,177,1236,1316,2299,523,1590,1159,2120,775,2796,1911,1656,1427,389,176,2482,1481,1308,1254,519,1118,2440,944,1002,2048,732,1138,1737,2656,1378,2785,547,934,18,1889,2339,1692,861,1374,768,2340,1511,2680,719,1121,1187,2696,1051,1243,2085,2883,1302,2844,1572,1485,2079,2613,2890,527,2258,1364,433,506,2262,728,2212,267,1381,99,2916,2424,931,341,1426,1562,2694,2717,1454,146,2144,2351,2565,2187,1313,2834,126,2655,2664,1841,1545,2617,1197,2585,2681,1932,2154,238,878,2858,2290,1439,2616,2137,1757,593,12,860,1679,110,2586,2760,2028,2727,1417,373,1658,144,1393,2630,2577,1087,2300,1333,435,2482,1630,2778,2791,2245,1868,2602,707,1962,162,1362,1565,1232,2068,2774,996,752,1183,1288,1231,328,2903,171,2250,1074,1868,2186,2616,1786,1131,8,782,1841,2672,1155,203,2424,2178,2326,2448,567,379,738,1292,727,1141,1788,1705,2511,1283,1702,764,2732,1421,1480,37,2022,2751,2812,711,1100,2146,697,887,1371,2288,859,954,813,1734,1233,804,2150,285,2691,374,1936,46,1318,470,1174,2342,773,2692,491,2011,1456,912,58,1257,279,481,421,1484,2676,2065,312,2712,1144,682,2756,1676,524,2280,1778,1149,2115,397,2791,603,806,1896,2603,2004,684,2520,1909,2335,1192,804,2601,2652,505,1322,701,2537,422,846,2184,2243,1411,1847,1760,2831,2655,225,1533,2507,1723,1900,2210,1273,1537,2559,1386,1902,116,1797,1198,2385,12,469,430,739,2058,1882,1900,2324,2559,320,2163,439,1852,1639,1240,994,29,1087,1244,1042,1041,2426,2873,1838,2373,2466,2689,1170,2125,222,1466,2439,1930,2208,573,1372,2132,110,2772,804,2209,2039,2867,993,829,1360,893,567,661,1918,352,2438,2250,1595,2224,1587,2741,139,2493,2111,1253,1767,2554,1471,2080,533,1713,2232,1594,506,2877,1598,1580,1718,2779,1968,2382,2111,710,2403,1846,23,2827,1277,809,211,486,1034,2496,1984,435,1857,2585,971,2635,1971,844,1700,302,1001,2033,889,1762,23,1608,2867,2266,2772,1245,2754,804,1863,245,2754,2435,682,406,1134,2119,1838,794,452,1845,876,2589,2840,2006,2084,2338,1900,1706,1631,2792,2899,751,767,890,999,2550,2837,341,2071,1379,1852,2067,1283,2612,2235,2527,2885,1730,326,2279,965,762,1848,2503,1244,125,692,1432,913,774,2458,1542,884,355,1070,1160,69,338,1000,613,498,520,2084,2465,2747,2737,336,278,2817,628,1773,788,1617,370,2902,2913,2050,167,188,274,1856,1994,939,1258,516,1741,870,2427,1804,2142,1012,609,71,1702,1910,199,2674,356,368,2272,566,1593,1540,1218,1495,215,911,1514,1884,2179,2632,1136,70,2448,2084,1725,176,451,386,1326,2157,457,865,708,1518,2373,1346,1026,2737,2153,623,2454,2888,394,2052,2541,1007,2071,538,2316,2266,2460,2822,2019,456,1791,1471,1068,1358,14,1965,865,1205,313,131,467,1908,1987,1945,1050,148,1890,2352,2535,84,1552,1130,1645,1871,1660,1317,2154,1949,1905,2410,1739,69,2345,1885,2750,2438,2247,1341,1455,1609,180,669,926,2263,886,2330,2558,1827,1378,2194,137,2750,850,1913,2181,2152,435,2475,2388,705,2668,729,2067,785,1890,2309,83,1905,1267,2309,0,1227,2391,310,1612,2147,987,1078,2002,442,1172,667,1575,1892,177,2881,722,2176,572,51,2414,2750,1395,1225,2058,654,1197,1462,1057,1363,2450,2254,1427,1400,2405,460,1566,2620,2804,1677,1391,2913,38,2788,589,379,2237,2649,1641,593,537,1011,2135,1339,2443,1296,1945,2529,653,1350,1857,2892,2160,2161,754,2519,178,1264,460,1198,2401,1327,1558,1809,1235,2561,1038,1898,1215,2115,2540,1970,247,1341,2911,1479,962,2351,1446,31,1931,1447,2314,1143,1328,1784,381,1139,2918,237,161,420,138,1105,2459,1408,584,1517,471,1538,1630,2649,2412,24,269,122,1334,919,2145,417,2445,2727,1530,937,2526,2361,1819,693,717,1823,1649,2566,1623,2387,455,165,2709,2481,1081,2727,1507,848,1056,73,2590,2298,514,764,1480,200,2108,846,1698,736,2058,929,1151,2655,318,2337,51,1619,176,946,2395,1432,2517,1434,2096,1605,45,708,1474,1943,2681,304,1236,2183,2862,522,1062,841,510,1265,1846,2799,2878,2335,1954,2266,843,1068,250,2849,1049,918,2421,2809,2267,2706,1958,321,2303,2,1342,1702,1402,238,1635,1787,2529,1375,584,2468,34,1657,2864,1762,221,596,1023,1635,891,2651,2519,1732,2892,286,2817,1839,176,818,2743,1617,527,785,2840,1125,2240,2119,2519,2513,228,1292,2438,2259,2708,187,367,2686,39,273,2596,2106,437,321,1015,426,425,706,789,1563,1430,2473,1106,694,527,2737,1915,904,2594,2840,522,1904,2215,633,2234,1822,2391,2581,1800,1415,254,2839,1392,1825,757,2814,2188,1435,2246,2574,1189,1831,1125,2299,2330,1131,2399,1405,1277,2497,1290,600,2545,2247,2315,1216,2335,509,2673,1055,1264,2439,2855,872,2307,1574,2873,2743,2225,509,2353,2839,2512,1371,2040,156,740,950,2371,868,299,1142,2003,990,2874,127,2168,1407,2400,423,814,1134,504,1748,2346,562,2499,1224,1078,1870,1852,2049,2154,2504,550,1681,2648,2054,1419,1859,2588,2858,566,2571,517,2173,1769,166,1361,2170,185,352,2305,1767,163,577,1111,2196,2162,961,2156,1716,1344,1513,1101,171,455,999,1691,1341,1998,2345,378,2077,1035,1617,2818,1329,2807,199,1192,1082,411,1961,987,1911,2422,1077,2898,1764,1351,2607,277,1670,2441,2765,171,93,367,2737,2673,2426,2810,969,507,1199,1220,1854,0,1111,1654,621,1766,2560,2200,342,772,349,543,427,786,1748,2351,2908,1922,2664,2278,2632,1799,1010,2562,577,1555,745,619,515}

    {1485,1347,353,2170,1726,2192,577,2619,732,1353,1080,1013,2752,275,1863,800,2451,2737,981,2133,873,1133,2413,920,451,2418,2144,303,2536,707,2169,389,2755,2913,145,970,2536,606,2332,936,2622,697,317,677,1137,1337,863,1993,2042,2906,2818,2327,2309,2686,2480,1729,913,2270,155,487,2043,2223,1188,2891,169,907,1339,618,1524,1840,2089,1526,2470,1778,194,307,2719,2300,851,2678,410,2751,237,2230,751,2002,601,653,2776,1171,37,781,739,92,2674,2011,2879,406,955,485,1479,832,205,1378,2503,856,2897,1211,884,602,757,306,665,1410,606,2883,1133,125,1421,1207,555,2297,196,2562,2021,953,2780,2454,699,906,5,511,1588,1057,1675,1310,2890,672,1802,2660,1793,428,1612,64,199,1182,2003,2424,605,1100,1904,1428,1368,2395,1815,617,2817,1160,1218,1019,2078,2104,574,374,2887,511,1953,2730,550,2130,59,55,57,1228,372,1203,1855,1755,1319,1870,1870,2821,1050,2767,620,1842,1771,189,740,503,2691,1003,1720,176,2379,118,1965,1526,2001,1692,1232,1823,2503,1734,2189,1107,1494,818,1471,2036,1804,468,199,1056,96,2152,1727,1929,65,2171,1354,606,2258,842,1389,26,785,2582,2408,2638,68,1056,2641,1628,822,2340,1853,554,2498,2150,2842,816,1340,1711,79,585,1652,2075,1978,1703,2413,676,1655,407,1173,1192,1478,1347,1097,2897,659,2534,2349,1095,2383,1932,1852,1791,1315,1231,2337,1753,1320,872,2476,1083,305,1491,2696,2115,2286,2224,1274,972,1760,579,2421,2766,1811,2797,524,699,74,2262,141,2495,1371,2249,1060,1917,287,98,298,134,39,1414,2487,2076,291,1406,563,329,1105,2034,343,1078,1573,2850,1394,1506,1112,2510,2261,1502,1566,1208,1480,527,453,1604,1587,2221,1829,2005,769,697,384,1513,2452,2000,1360,2022,350,2159,244,681,1668,2297,2579,1820,2505,2052,2130,46,925,2329,1924,1879,2901,1287,215,1000,2761,2542,2505,1904,1734,2300,1512,1100,803,669,2347,2891,949,2791,2553,190,2665,2558,2759,652,2650,1871,1766,2194,1526,1231,601,2653,2642,2549,2309,1897,2859,1371,1720,243,2002,797,866,1160,2674,490,2373,2528,2674,1792,2557,2536,607,965,1744,820,2504,479,1359,790,688,1884,2135,231,1371,872,2912,2519,2095,1833,1358,1498,287,40,2792,2655,105,2334,851,2638,890,2610,1056,2262,1558,2825,2848,1263,1927,2297,228,2519,2252,568,765,1806,2657,2094,2343,1091,1328,2538,84,662,1611,1983,357,2208,2657,1881,176,76,1025,416,2313,1011,1021,2027,1860,1372,2428,1259,2898,263,647,188,2796,331,115,1359,1173,2058,410,393,253,2084,1846,2264,1465,1411,1676,432,73,1730,1446,447,487,1143,616,1647,521,763,2198,1036,2253,294,1068,105,1944,2481,435,499,941,1571,2544,1727,2423,1283,1770,1495,1549,1023,26,1625,1984,873,2700,1719,838,54,2244,884,577,2358,608,950,493,71,1056,368,324,2817,534,2132,1911,2856,1865,1921,893,1556,2463,2747,567,1859,2163,1750,1448,1472,735,2175,2763,1633,1899,252,2201,645,1223,2396,1747,2747,26,1448,2819,2528,489,2127,2865,576,715,346,770,2571,1892,2532,1984,755,2548,461,1109,1755,15,754,19,2380,2106,2153,102,2561,306,1586,1795,182,2390,2610,1667,2399,866,2158,923,2296,2811,2119,1684,1289,2073,1183,457,1582,1998,2674,1529,1575,2895,1696,2509,1595,2379,2086,2280,1808,1941,1171,1615,2099,2884,2657,1844,791,753,1727,2715,389,838,84,1031,804,1719,2588,1386,1174,950,301,2421,1984,1710,2812,590,1205,1989,186,917,2089,2554,2486,2604,2370,1480,1201,2448,526,1353,1650,847,1214,125,1998,1966,226,1017,1480,307,2446,1827,61,1783,315,1725,2314,154,697,2631,2815,950,2613,1421,1985,1885,2424,127,2889,1914,1354,347,2157,1451,503,907,1815,728,2207,461,1550,396,531,541,2584,1584,1030,697,375,2588,1599,2789,1808,1305,2456,2640,1163,1428,1245,584,1248,647,2257,2834,2605,530,2526,2326,805,415,2626,2119,766,1668,1102,657,2458,419,754,1846,285,507,2509,1241,2521,2781,2392,2751,2023,561,1815,991,2211,1509,1602,2281,1048,1694,602,49,1831,2151,1836,2764,2058,1080,2738,1706,1725,93,2679,2066,1116,2727,2096,2533,2018,1607,107,924,2290,632,1682,466,1038,783,1480,2558,2046,1921,1375,2016,613,1706,1097,2169,2350,875,786,419,124,1202,1236,2608,1407,2206,889,2654,1391,833,784,2210,73,1249,2665,260,2916,252,1390,2088,317,1727,2624,636,2420,375,1833,1432,690,709,2800,1807,1659,160,2165,1346,1505,587,2266,1799,1091,208,2404,1604,2913,1755,105,2510,1517,422,495,2811,1218,1374,1898,1955,8,1158,2380,1981,1952,434,2309,740,820,657,2705,1811,701,632,483,2789,2533,1217,2271,2915,597,2258,450,2037,2477,2615,2543,2340,1142,733,2150,2277,2090,1948,1497,921,2546,611,570,1717,373,1562,2741,389,1945,2073,2270,246,608,907,2032,2674,2699,1281,724,1277,2892,1069,898,2832,2138,639,2796,1058,1131,2320,123,1778,1938,1418,2541,396,824,1380,2458,1434,1638,416,2284,1568,1172,95,391,2069,1515,902,1725,33,1091,2119,1754,931,2081,1951,1255,321,619,1510,1286,1563,1755,1229,1499,2842,2573,1127,190,1579,101,1091,890,420,740,2859,1983,224,1898,705,1829,802,2139,2483,1791,1119,1494,2136,1386,1293,2093,1797,1349,2734,482,1883,1259,50,163,2140,1539,270,1592,2524,2273,2001,573,900,826,1930,2246,2306,3,664,2189,629,1498,2290,1562,24,185,2118,2489,1284,1306,463,2906,1258,2398,1691,1562,1251,2663,1394,2899,2784,990,914,2834,1812,1801,1726,2667,1476,528,500,1767,1094,1357,1360,547,1068,1938,2665,1701,687,2037,1859,432,440,2107,823,988,1726,2369,2646,1310,2242,1654,1169,2113,630,2439,2897,2474,424,722,425,796,196,1368,1018,103,1297,1727,1114,119,1688,598,2823,1040,219,825,1975,2196,2453,1111,1807,316,469,1372,747,320,2682,1997,1638,660,1500,1999,866,1111,1734,1152,1322,1545,1071,1376,1449,2850,462,1321,949,2492,2285,394,550,1480,2596,545,937,1665,640,1134,2824,659,815,2647,1711,1812,831,293,1616,1939,1653,2037,2250,207,1979,61,1258,1213,294,2073,2896,2130,329,2627,817,846,1408,670,2544,891,1135,1189,522,1774,2694,2839,248,1379,1032,1843,2322,2128,2697,84,1433,370,2900,506,1992,399,2694,1134,2256,187,2774,1806,62,95,1963,2810,907,1087,2063,2788,2418,760,133,2036,2165,1850,1758,2057,142,349,387,117,2660,284,359,2752,658,647,1413,2308,362,468,109,1615,1476,2835,1799,2270,2745,1138,1028,2442,396,491,548,701,1351,2872,992,1986,2848,276,2360,1449,1784,866,181,2157,1114,1903,828,1134,61,957,559,2793,2430,163,1399,1260,1982,1811,2624,903,2834,1249,36,1387,878,224,1132,1566,645,2859,147,2698,2246,968,2503,2472,1353,1009,157,2736,2596,68,872,2596,599,1110,167,1443,1451,2782,2633,1769,106,669,1692,371,2428,1519,2222,2714,2525,68,1081,2873,2477,1831,828,1501,2766,2098,2584,1817,50,242,246,2777,1935,1262,2241,1479,2626,1765,441,1041,1697,1029,140,1869,984,295,1058,2465,2201,651,1672,2152,1760,513,1803,1003,307,2874,168,2215,810,31,2642,71,1245,647,1057,28,1291,1214,2601,1295,364,1231,1434,2387,2599,1232,2510,99,1353,2589,12,2674,642,26,2144,744,2391,186,380,2552,2162,1021,213,1267,322,503,796,2311,540,2060,852,2297,1222,2413,750,1719,2695,846,497,2070,2703,1409,2716,68,1180,394,2312,501,1087,2875,312,210,2692,886,2133,1455,2012,725,26,1906,1025,2153,345,2497,990,1468,195,996,2606,2923,2914,2308,1839,1247,1712,1605,1115,2157,982,1238,2384,2868,1893,204,1052,868,268,1727,2108,2341,723,2522,1575,1921,434,655,2547,1674,2084,1917,1677,561,1098,381,263,1114,2667,1438,1519,2449,2418,883,976,1508,2879,1445,548,2596,2439,1395,230,2216,1331,1789,1778,1179,1153,572,1087,1854,797,332,2404,1430,534,1741,2453,2038,773,701,2484,2153,1677,858,512,1482,1602,1995,430,427,1704,2844,745,656,1119,576,259,1545,873,2693,578,2491,311,1534,1090,1848,390,2210,395,1386,1956,979,1356,169,14,2325,2855,472,864,2266,1548,104,2236,2374,2005,778,587,2838,839,2802,1894,2397,2091,80,2783,2239,2913,2616,1851,173,2097,391,1255,587,1068,43,1376,486,1638,2871,1030,628,1890,2593,2025,2673,1805,2406,2803,796,186,1861,614,1130,865,1366,2218,2770,1005,795,1229,172,1489,1201,331,2790,999,734,2692,1747,876,2846,1647,2318,2162,1236,1073,1221,578,2807,1419,666,945,2309,209,947,2224,1443,2727,1098,1341,241,2500,71,1284,949,1875,170,2064,1947,1092,2319,737,1432,1830,1422,1325,2452,2894,2363,95,626,1479,2197,2402,1511,762,1686,1064,1948,2117,2841,663,16,372,670,2167,510,553,689,2255,1374,2720,2428,2623,674,2193,1177,1425,1487,2429,1874,977,91,949,464,647,2716,2106,1432,2251,2680,1268,367,354,1004,475,394,1752,1181,2565,181,181,508,1124,2892,444,2147,2681,1709,1843,2597,1916,2457,2317,494,1553,2880,1912,1907,2017,1878,14,643,901,2295,1723,1371,119,2718,2130,2896,930,2197,1047,2787,2851,2671,647,2910,2833,66,1812,1382,2000,294,100,647,1693,1852,515,387,1945,2050,2667,1619,124,1885,1854,2166,1738,819,2122,2763,2115,480,1671,2695,2536,23,2045,2861,2655,854,2731,2147,145,576,562,1547,2230,136,1676,2762,1450,2266,1406,2171,1582,2618,1931,794,1213,2111,1022,2426,2163,428,6,182,2873,2113,2693,1711,718,2452,2836,2535,923,750,252,2419,840,2230,1544,2180,2845,2290,1824,434,2090,1373,1592,2428,1862,2778,1998,389,871,2877,2022,1387,315,1992,214,1044,2753,1089,800,2115,1137,264,1780,516,910,2496,1025,394,1734,761,1520,2716,704,2905,2394,816,2505,1196,979,594,2213,120,2084,52,1323,1866,1662,1602,978,2375,332,877,203,510,474,1420,152,2810,1130,147,723,678,1086,401,366,2818,574,199,1379,1076,1053,1103,2715,89,29,2525,1421,1650,580,1224,1198,1615,2549,635,1807,320,1132,2061,1944,387,1691,1490,2621,127,426,1617,2744,282,1064,1834,2883,740,2666,227,119,1328,1252,1729,1239,2435,1935,280,1058,1855,1392,2380,308,821,1940,739,2126,1495,1412,2734,1014,2556,1457,2269,450,1204,1122,191,866,1645,1496,2114,2919,1691,2287,1382,516,823,2219,2884,0,554,2177,1799,2855,20,351,2799,2610,1797,451,2543,1661,1778,2327,2549,1621,1550,664,608,2873,201,1545,1332,2766,306,1747,1140,1433,556,632,1267,1062,523,503,1085,2408,2037,1117,1855,432,2637,2302,456,630,2537,1734,2590,811,2022,1953,190,2766,412,1399,1190,2564,2336,2725,2154,739,1210,1198,2803,436,444,2268,900,2614,2306,2830,2879,2359,1578,2111,546,2395,509,1102,2455,2063,192,1130,2273,1089,2766,272,2086,1984,2119,503,2075,1976,1988,365,1087,2442,2797,1432,1382,1737,2850,886,2920,1116,798,729,1192,88,2848,2528,1431,1177,751,314,1494,2309,612,839,84,588,420,1397,728,1578,2748,1518,374,2700,2289,2306,899,166,1426,1917,1225,1952,2085,141,2051,1351,1161,2236,408,238,33,1592,1804,184,405,1279,1849,109,288,349,594,1167,385,1919,1421,1386,730,2080,1981,2276,2005,1417,1421,657,922,1200,1736,128,2634,1733,2769,2468,1864,2899,1941,1576,220,1873,781,466,1721,2414,346,1107,1245,2665,2022,2778,560,320,1756,1691,977,216,61,2145,1417,2233,2418,1779,2771,540,967,13,1282,1828,1121,2863,1396,2673,1785,1367,922,1798,1458,2061,211,461,1648,135,561,896,1814,1881,1941,330,2488,2143,451,864,935,1887,1301,841,1381,1725,1531,1934,257,216,1607,1267,1996,1692,1602,151,2779,2304,2126,2694,2339,484,265,2218,1147,2780,2642,1782,1914,1019,1126,2273,309,537,482,298,1096,2596,1385,703,25,2786,2523,1134,2237,1129,1130,2220,2075,629,1307,2684,478,1351,2897,2074,1108,2121,958,2016,1335,1242,2893,2159,968,374,2799,567,1099,550,78,2331,2283,1136,2240,2363,491,2567,130,2711,2627,1810,105,845,1366,550,968,709,332,319,583,1380,1721,1554,1025,1885,2916,701,606,916,2365,552,2479,1432,1617,1236,516,2061,1066,92,1512,1437,105,1114,2907,2076,2195,2789,2575,2239,392,776,2527,1616,2149,1025,59,2692,143,2467,1638,140,821,181,1670,1615,2866,199,2626,830,543,466,363,1531,2356,360,2674,2115,985,2187,1397,1477,2106,1706,2122,107,2060,122,666,764,1240,496,1926,2420,995,2309,1148,2425,1522,1010,1603,2012,1220,1329,1986,849,1150,438,1312,2692,61,1085,1528,451,706,381,2037,1815,1378,1052,429,948,946,1191,763,514,797,950,827,1145,1120,220,2820,1749,1467,1978,1070,2111,1910,2774,2623,29,2025,1479,2009,2807,2579,233,2553,1821,100,1262,909,2197,413,2689,411,1530,1280,2182,375,551,1375,290,2576,2162,1045,176,2180,2221,1596,703,949,1768,1127,2033,1785,56,1175,1883,1760,1615,1218,1591,2876,2208,2126,2432,1265,923,1186,2861,2210,1102,368,550,1006,1699,2150,458,1715,2203,30,352,1020,2015,1747,2696,203,198,2045,2189,1114,1111,1130,902,2740,1616,933,768,805,2729,2240,274,2877,915,740,1076,1186,1338,1991,818,121,2885,633,1434,2813,2300,2916,1521,1517,880,187,189,932,2869,780,716,1283,1161,1016,114,1998,347,2713,2283,1429,298,1558,1595,105,1080,510,1557,2056,1076,2391,810,1440,1617,522,1330,2849,506,1664,2345,26,2563,629,122,1952,2585,2548,2774,835,264,1881,1583,1090,2117,2548,1222,1705,206,1875,1569,2291,2443,1755,1424,1823,1673,591,2385,1933,1973,1817,2749,2206,1453,1903,1646,2724,2611,2536,1473,1575,656,2434,254,1463,2441,1871,2293,1856,442,292,140,1824,2564,2054,2145,2297,1157,777,1572,1544,1010,1980,1107,2917,180,2171,1072,1917,746,161,2180,1204,129,32,382,844,999,1830,1541,732,2150,2536,2683,1606,199,377,649,459,1459,2230,1551,2731,648,212,1955,580,826,1313,2407,1565,1374,388,1973,631,2383,2871,2913,175,1629,569,2839,2269,240,1664,2862,1823,2043,2644,1121,2250,360,2444,2547,2307,2436,990,2763,660,2735,59,1252,1587,624,1945,2426,2098,367,2646,1891,2336,934,2366,1909,1636,767,283,2314,1395,547,967,2917,1182,2115,1818,2393,1296,577,2135,1859,1311,1615,1,1300,2169,253,1884,1256,2622,847,130,2080,625,339,792,2904,712,2290,117,327,1972,2635,161,1512,1204,248,974,1432,1272,2025,966,866,1708,1003,627,580,612,1472,232,77,2850,1734,2670,1928,1113,405,2716,2460,251,899,2350,1026,1433,1209,638,725,942,549,1614,139,2519,2180,1568,1898,1692,1532,994,2697,1712,199,2687,2150,2064,1400,2433,2860,2350,1193,1634,370,2351,1184,9,1246,2140,1854,2526,610,2626,2297,1158,1722,2741,1747,1037,2115,2787,2707,2112,938,353,2462,834,11,1424,2100,1464,535,1913,1784,1598,2765,422,2523,2724,1615,2268,75,571,239,612,2353,540,622,2191,2782,153,1745,190,1726,839,217,1048,363,1945,959,1324,686,2674,2131,1904,2786,2896,516,179,989,48,532,2413,1603,2731,1001,1315,756,627,68,2470,1168,1303,27,2112,2612,417,357,594,2359,859,1087,396,1769,2010,952,1192,377,2806,1171,1270,2348,1402,1461,1266,1747,2775,2665,998,504,2801,2790,2096,1627,2220,2229,2866,1684,2397,1725,986,1986,2398,804,482,17,2922,1027,675,2832,1715,2143,237,990,1937,95,1154,361,855,1314,214,1584}

    2118

    16

    Returns: 345061044

  34. {94,167,116,157,37,10,40,62,87,6,12,61,111,34,169,122,77,80,11,52,13,159,115,157,97,75,159,141,108,27,52,105,14,167,34,166,34,57,32,11,56,102,58,21,168,125,88,73,168,100,87,164,40,24,79,32,94,36,87,1,139,6,93,137,58,174,40,71,78,2,17,70,173,158,40,162,71,56,67,144,159,16,44,38,17,10,152,3,174,140,40,65,30,84,48,50,64,29,63,90,16,152,166,10,165,86,53,155,103,117,6,96,145,10,126,93,17,21,9,30,159,144,161,68,116,145,130,131,112,156,99,16,101,43,146,144,136,90,122,15,147,157,65,113,148,77,143,1,169,157,42,34,122,138,170,171,77,130,119,108,17,72,110,71,159,34,83,114,172,33,106,98,81,105,121}

    {105,120,78,34,87,109,116,161,160,154,118,144,89,46,69,101,56,138,39,128,4,26,116,84,87,68,164,111,107,79,26,122,67,66,17,172,82,90,164,169,68,53,0,30,158,23,58,17,29,99,149,132,138,2,160,28,85,173,162,167,157,135,77,117,97,23,106,51,126,90,117,153,21,91,87,161,123,134,116,78,18,10,26,174,41,79,167,1,87,87,112,5,45,123,34,142,89,65,82,47,155,55,142,168,162,21,111,95,155,49,77,100,127,9,150,60,129,138,22,92,133,13,19,175,20,151,31,145,104,47,151,59,7,117,123,8,108,159,54,45,168,142,76,75,82,12,14,17,157,35,63,141,87,124,34,23,142,142,111,173,52,173,42,153,25,21,116,71,151,162,163,30,77,74,8}

    117

    79

    Returns: 691174788

  35. {584,944,1261,1042,295,930,1125,1207,1604,105,1098,128,754,1101,270,1278,324,1354,1267,986,350,872,365,1220,267,1304,174,1209,593,1672,1588,92,1002,977,824,783,1097,1585,1078,74,119,1467,1225,1020,1351,1663,1022,477,883,373,846,964,985,1556,1570,1669,29,373,1406,1577,174,352,1451,457,90,1014,899,218,43,220,421,980,705,1404,943,23,625,1569,1440,499,924,1513,1350,1573,1064,915,441,778,795,623,1445,832,1486,990,418,1455,346,903,876,393,1003,449,1143,948,1553,319,136,654,200,1314,1711,971,1420,690,279,1610,790,1560,571,1467,911,1026,559,41,1379,703,460,1202,838,594,1534,424,1088,1708,1225,273,573,1534,266,1545,134,1187,736,423,1273,79,346,1275,1536,639,1115,516,349,1417,1720,660,1563,1551,919,553,735,164,907,1291,115,1057,1170,239,1618,1347,1460,45,552,603,1435,1217,260,51,383,877,1601,1452,389,566,1386,1391,1277,1213,1496,1181,226,1699,762,466,512,1535,1319,428,1668,308,74,844,1423,400,1094,1289,747,770,1364,1152,1328,924,1147,1612,1054,1182,1656,1579,1621,1164,187,1648,1393,498,1501,1118,1543,27,1192,1002,466,1673,1317,440,1650,1336,505,319,220,1414,379,79,940,122,616,1681,1236,145,290,397,926,1082,1484,760,641,1405,997,1356,1047,1399,371,1601,887,926,640,1293,228,1650,1158,1249,1483,1715,253,786,205,1260,178,1400,172,1601,133,1095,804,703,396,1536,515,1446,1657,953,509,490,56,246,102,64,1101,1291,167,343,1237,1305,81,1479,87,996,1571,1478,891,113,1007,853,1356,112,126,68,416,1486,447,532,452,1527,293,771,19,1580,1582,1433,105,196,1118,1270,1414,1552,1499,155,1412,176,1611,1162,1552,1352,1567,269,1537,1292,197,466,1274,1036,796,1462,423,1046,264,1440,351,132,801,468,255,666,957,1467,1128,1013,818,277,1562,1309,767,139,830,938,242,837,130,513,101,252,929,671,698,1492,848,404,1417,1078,28,517,1119,943,1719,264,263,936,1485,241,1423,1425,1153,1110,727,1685,1648,445,974,1223,755,877,1532,302,464,1108,210,226,345,1006,545,428,1185,914,1355,606,1470,882,679,1097,1398,1061,707,830,1600,1539,1141,390,492,889,1013,1422,1571,760,1505,470,703,864,139,797,1031,1563,106,74,1438,463,1023,329,130,656,1251,1593,1313,1392,1495,1603,1524,1480,1255,98,1527,1357,715,276,1437,834,1009,264,157,1484,894,1576,1250,774,1346,1575,597,76,1029,1246,1484,235,316,763,896,395,1029,543,1262,508,1287,562,1181,220,194,1682,1213,1256,74,1060,772,475,967,503,714,872,1052,992,1544,328,1532,264,1579,137,43,1546,215,684,554,1658,960,468,975,1694,1040,1574,1507,942,1430,1635,673,1414,1462,380,1686,534,1088,1618,1415,292,1701,1116,1605,123,1150,1663,985,1186,78,491,1717,110,1481,699,1463,1241,916,295,1684,801,1178,1271,1512,595,332,1317,599,286,1458,1517,344,43,1484,1072,1466,429,960,692,1250,723,1715,533,802,1585,833,906,565,114,164,838,145,338,6,51,1712,66,416,216,1353,1279,109,1008,738,1089,654,52,1467,1414,840,649,1199,33,1703,1466,354,61,846,573,1239,1226,1327,1065,1303,56,441,466,906,1045,550,1523,103,823,1119,1645,1654,1554,1079,173,312,1425,59,146,478,86,763,1311,77,126,535,577,654,392,427,13,1284,1486,33,1496,88,1,683,1548,587,1191,502,1042,931,1545,861,1232,408,1212,1578,1187,582,404,444,1414,824,1061,419,880,929,320,941,354,438,766,1335,361,732,1030,156,1461,352,345,455,614,185,524,1586,928,1198,1229,337,364,1493,17,1093,60,655,964,1635,448,854,375,147,1520,1618,1649,391,924,463,937,1037,1139,442,116,1600,1720,963,294,763,1047,310,1180,737,1533,473,19,1190,378,772,920,222,49,1302,409,1296,1057,1071,211,1181,633,549,70,465,1626,1596,1369,1489,155,522,299,308,1632,1253,1007,654,1432,416,1376,470,761,39,1426,1332,128,239,1405,1115,114,741,934,141,1530,724,206,1636,661,1254,869,359,202,36,132,842,828,976,600,90,913,1398,525,758,1288,1426,661,1419,1610,19,565,1047,1114,1304,291,1305,84,1067,311,687,133,587,1042,168,966,169,1628,477,1434,790,606,1695,909,1362,1418,64,97,620,892,238,1594,334,14,178,851,766,301,955,530,605,163,923,607,1486,929,1417,1001,1242,372,1602,832,365,1689,1129,12,1345,1115,1676,120,1467,161,1237,1230,320,139,264,124,1333,854,725,813,93,1022,0,319,1332,156,403,1086,1173,984,339,1325,733,257,687,1159,884,168,1522,501,1168,1251,1089,1226,602,503,170,1403,558,356,259,1070,22,297,964,833,699,133,1582,1123,1150,274,951,860,1196,473,596,1195,790,746,501,1090,318,838,370,921,358,70,1039,666,609,375,1499,942,571,477,1541,1698,968,385,1612,795,427,958,981,557,788,719,1633,585,806,89,939,1172,368,792,420,391,526,925,1361,1425,1163,1435,56,958,968,1012,354,1344,1466,104,1421,142,1144,310,1175,1310,1165,1478,224,142,1183,1024,710,1668,1300,360,1370,630,1038,1369,1337,1498,1349,231,993,1169,1407,1036,361,1321,153,1562,817,1017,511,1379,319,566,1364,664,1535,1044,401,409,1587,1701,808,398,21,647,1166,1504,1177,445,606,164,0,64,154,1224,842,890,514,1265,571,144,1061,154,1371,1217,1115,1393,212,1477,986,1472,1512,627,78,1692,525,769,945,1466,295,862,304,1601,1078,284,679,771,201,1549,895,1278,1282,1386,79,125,362,1016,842,1216,1445,545,341,1503,281,199,299,372,1414,1611,20,113,480,1519,1607,1655,606,1394,103,783,21,1548,729,233,1114,727,1691,942,377,1372,717,1156,1141,791,1396,1307,467,50,634,1641,629,1704,806,249,373,388,441,714,421,3,495,396,871,888,525,1674,202,1490,1155,1548,368,63,1533,1523,375,70,655,27,84,17,1508,666,1653,1248,596,757,766,1438,1660,1258,1210,227,784,54,1086,184,929,1383,922,425,457,221,1068,367,242,944,1263,843,94,1081,780,409,268,1020,1277,1266,447,1062,123,68,535,10,452,1682,153,1191,1202,574,1306,662,469,981,1148,442,460,1528,974,473,503,541,1136,476,827,1186,233,165,308,1341,1435,1095,1523,345,450,775,86,1248,1222,1011,1411,1457,87,1102,12,114,658,1601,1227,1146,1389,1316,318,793,940,1299,1329,420,1437,645,271,1011,453,231,560,1430,1323,1479,381,168,1661,685,233,1617,456,1111,966,387,1313,411,524,866,901,391,1277,1274,252,1254,685,614,659,284,672,1364,1349,502,102,1454,181,659,154,1429,1036,118,333,577,610,314,171,1479,903,1041,72,756,1213,1268,985,1208,640,655,585,1642,234,1438,49,675,1452,1649,197,740,1397,1101,1540,1548,1395,604,1609,494,1498,627,1451,754,1288,1077,983,1477,1265,1622,1002,1179,565,544,622,1243,96,1580,157,123,1281,353,327,529,717,310,111,518,763,1415,1540,173,1097,1229,263,1622,949,1641,632,414,33,113,1269,447,1066,1438,974,299,1709,1022,414,1415,300,885,166,1297,840,74,1204,395,403,768,1608,1128,345,58,1305,1294,1186,822,399,679,1193,295,142,1273,745,1183,1473,80,683,1004,1551,568,1036,289,1500,1425,1286,614,357,1023,1482,1619,1579,629,1176,320,468,674,1274,743,1178,295,730,320,1071,1690,1101,10,1486,1397,221,1017,982,1584,256,844,504,1268,1184,220,960,1619,683,1154,745,12,38,1477,214,769,5,856,1047,1278,201,1356,697,335,524,1246,63,376,900,387,755,734,918,191,920,436,1179,765,1295,131,1691,1176,24,113,313,721,466,1016,703,168,688,459,404,1161,1601,140,1552,57,260,1094,182,1159,1008,838,1016,1516,819,244,208,1671,936,568,947,556,974,1039,1555,978,120,185,1411,725,865,958,1414,1415,783,1088,467,1160,980,239,453,825,720,342,316,1421,973,212,866,1283,326,173,215,56,1361,1542,363,346,1047,148,43,1199,706,1105,987,26,1616,445,321,220,959,273,752,628,1686,1052,306,1018,1059,1679,965,1168,712,348,1403,1323,868,1265,213,632,53,1109,207,1436,518,1377,287,264,25,1047,1374,275,1015,1623,699,575,1693,668,956,988,497,1342,1615,1034,372,137,1471,574,255,1149,1712,1699,308,778,1442,970,831,120,196,1158,1676,504,126,467,1058,901,1548,132,481,761,1029,950,587,571,126,643,848,1647,1109,980,365,1486,1117,85,331,613,819,1600,847,1172,1714,489,245,197,1676,1717,195,711,515,1113,966,238,1517,462,470,1084,576,315,1554,56,779,1122,84,549,1646,1577,1223,1358,1547,1664,1708,1002,1634,1017,782,16,450,855,934,1623,73,434,639,1602,1453,557,1635,578,1398,383,731,1684,1227,1265}

    {936,722,1446,855,1550,1270,933,317,451,1228,960,985,794,266,233,534,644,1471,1133,1548,372,979,1496,1216,1076,924,1346,108,1670,1328,1535,691,535,468,923,1092,542,1659,1321,345,1606,451,1526,1086,257,856,288,482,1425,365,824,744,512,789,1597,1304,1384,694,1289,507,935,1485,1628,1375,1514,139,1651,615,416,293,1335,1266,1043,32,885,0,1706,183,323,236,1351,1518,1253,128,771,290,380,204,1548,1602,956,74,336,1406,480,813,726,223,1343,0,946,622,671,663,1510,504,651,858,67,1258,1334,1405,1705,1254,1155,715,1721,1592,247,811,1417,1592,590,1263,1446,851,636,611,549,1696,35,1597,593,555,277,309,1366,1452,243,282,540,168,1582,1381,752,185,1610,422,1614,699,1372,134,787,1233,1240,463,1298,835,140,1545,1150,1510,330,1253,1213,1041,1055,1707,1037,1595,1267,620,1252,220,531,1601,1478,978,1135,758,1047,799,1162,528,976,621,152,565,1623,1438,33,445,387,150,468,903,124,839,1447,969,83,689,232,1280,1388,1137,546,1380,180,1183,1532,1412,754,1176,375,1114,964,1330,126,363,1524,37,962,1633,1197,844,775,1008,699,432,1393,993,350,1293,998,1282,1024,1558,1490,10,460,1019,1622,320,1101,1644,973,544,1115,316,433,382,479,904,1191,833,292,1366,1363,1080,1186,1209,521,1187,643,441,773,375,10,1501,1115,482,913,1448,742,821,1410,1643,1128,168,1374,802,851,777,674,455,648,772,455,696,392,365,1681,684,1381,1433,1368,816,1479,90,1335,1601,824,1129,1385,701,1400,833,573,789,954,1365,330,1671,1278,1513,1659,1010,62,1127,1088,84,1195,1202,1510,790,1043,1662,886,566,290,1053,797,974,1271,932,921,517,1506,243,583,52,164,1485,1474,540,927,1468,917,581,135,1431,141,1151,682,1490,769,137,455,486,307,1620,1301,1196,164,658,1100,1389,254,548,1429,1223,1683,67,459,1413,1464,463,431,1000,1146,725,1633,851,1693,918,12,774,1420,23,160,55,409,426,680,414,394,69,199,1601,1335,1428,828,1428,463,829,1257,67,1320,349,117,1713,112,1158,1346,417,256,1555,1390,551,531,807,974,1350,44,1638,743,790,1718,1511,52,503,550,1271,545,860,1086,1462,681,1724,1275,1336,1621,571,540,477,1456,1624,1372,346,1339,1480,84,1212,293,239,810,953,1033,116,1716,1123,263,28,127,272,604,247,785,116,988,308,1069,936,593,316,1340,1570,446,1016,579,1322,1415,944,789,1617,1058,1366,1317,1366,1005,592,733,1450,373,1167,1496,1355,896,1182,112,1373,1252,306,533,1551,996,368,1341,181,759,1509,1203,551,1204,1063,958,295,564,1548,739,519,1420,702,523,709,477,1352,506,676,712,1071,779,1272,937,1449,119,223,807,664,1564,458,1284,702,1413,147,360,1278,1444,812,1183,1300,512,446,384,1581,510,326,1021,1172,512,1592,939,981,176,1047,952,1285,1632,1350,1014,1467,746,10,1540,1172,1539,347,35,461,621,1606,375,339,852,1453,874,1706,1627,68,1559,1312,1438,1667,850,1100,1360,672,587,1171,1534,1308,1245,1577,1408,1707,781,713,1250,295,1723,405,70,1180,1180,415,1629,795,1029,488,986,770,1557,924,160,1188,772,247,1563,639,1040,291,653,985,405,330,1227,1374,1441,1242,561,1100,199,999,168,407,507,18,661,964,1495,220,567,1590,869,181,121,998,1369,901,1336,621,849,1584,441,1650,626,1048,563,1600,737,1123,680,249,672,1472,485,809,95,1145,924,177,1486,512,1020,1096,255,593,1212,592,1545,1266,648,638,198,570,197,612,577,220,1019,1398,482,1213,1136,1650,1677,455,716,150,340,1334,452,109,1127,1324,1618,1104,1459,1712,826,1502,1648,1150,203,1091,73,1637,437,693,1187,44,626,1566,515,1099,908,723,75,314,1251,1112,699,634,46,618,901,1358,212,1417,1187,317,400,410,514,472,7,857,1121,1101,306,1329,1094,1445,576,1470,1290,322,217,1132,219,1036,759,1497,1107,1521,82,675,937,497,229,1382,176,549,386,189,1377,547,810,791,940,1438,628,92,572,753,486,431,187,1037,1093,71,619,1218,1710,1723,795,1639,1002,986,1414,414,372,659,192,1163,1510,100,485,132,699,568,126,1367,1186,225,454,1457,1625,1213,679,1720,1490,1348,308,1025,594,751,1138,474,1462,1601,2,397,199,1463,566,187,450,1136,202,773,1181,487,569,1363,1205,598,365,1442,1082,1167,123,1395,642,240,594,912,1409,34,1116,67,1702,520,1552,992,471,1663,910,56,745,1329,32,1325,606,399,42,303,138,1435,622,483,1073,1335,882,1157,199,418,556,1388,1397,1565,540,1318,236,1430,956,1665,1620,833,1362,1365,1537,1589,869,1154,489,1071,740,597,1162,1210,631,832,603,164,90,1301,1114,763,1411,647,817,477,805,1510,529,278,1701,728,135,320,151,443,559,324,1671,608,1072,452,279,781,718,1527,1652,1266,860,1592,1221,983,412,1083,1326,899,1517,320,690,944,280,1318,604,501,489,84,618,892,1601,1592,1688,613,1552,416,683,991,295,248,418,519,1105,437,374,622,1124,1235,584,662,1114,490,1260,566,1606,1036,1364,1671,1098,838,601,1476,940,559,1533,1520,507,989,1416,704,795,744,1494,873,643,1568,489,1041,800,1075,753,1359,147,1713,1488,537,859,68,982,863,1047,748,84,1712,42,198,199,1028,476,1561,1265,635,825,109,493,540,454,1370,1335,158,651,779,0,1650,1042,354,262,1452,652,1413,617,1598,995,1630,728,1466,1099,749,990,1443,1126,1692,1476,1089,571,422,750,1384,1051,1662,957,399,450,430,551,1316,1615,698,924,1101,1655,159,291,581,203,1103,753,687,1438,545,952,296,1591,1280,480,1140,887,1061,1549,678,1267,800,1496,964,607,463,1180,1206,56,1430,1536,592,305,1027,915,208,978,345,175,1599,674,872,1219,1264,1252,345,760,263,646,132,73,1487,175,1456,619,677,221,972,862,1336,105,422,168,285,1678,1214,798,751,953,301,353,355,1474,1551,1631,545,179,425,129,1002,673,960,471,149,588,1548,439,906,1213,1639,1240,1040,119,1209,11,790,1186,283,1524,643,126,51,1362,875,1154,1467,670,824,559,1569,1427,413,1384,667,593,1378,1035,496,1256,193,471,283,1602,586,1424,59,216,1429,1201,293,1684,1145,810,650,1142,1722,1467,1475,580,190,1259,69,99,64,188,425,848,1055,1572,725,422,1336,708,932,1712,1686,572,773,1640,914,895,1602,1494,74,290,38,265,147,799,1008,514,282,1583,1415,1049,282,86,536,1278,486,1315,254,1376,1180,350,161,731,453,1047,511,786,1428,1507,91,1479,1187,764,885,209,1590,251,1131,73,878,1414,316,747,261,898,1130,1150,643,441,1680,180,486,399,1139,1273,1374,1429,845,319,814,1246,1365,1200,1034,366,1062,468,420,517,1181,369,90,1504,22,548,746,819,657,1601,220,827,800,408,997,1429,178,634,1431,126,1502,24,1003,994,1399,420,434,456,1534,104,522,476,1249,1158,682,766,455,1215,1247,1412,665,346,1213,1189,1194,1425,1531,879,147,253,416,30,1125,624,1489,1259,731,61,375,40,518,1109,676,683,467,60,1437,1011,894,802,1280,267,773,1666,871,1668,1439,647,452,1531,721,1331,731,539,1525,880,1090,815,937,669,565,551,1157,800,1056,1422,1048,1120,212,1350,545,1413,695,161,1700,1242,1087,218,331,615,1272,558,1158,237,893,823,1431,363,902,1266,336,565,1231,524,1395,549,484,168,841,756,1238,1660,423,1524,1596,365,1293,4,905,1674,530,1074,138,664,1496,1440,803,1582,145,1061,1515,877,1062,1629,1127,500,1600,895,1339,1301,1381,870,386,1438,684,223,1439,1431,807,560,1401,54,375,156,1684,48,791,1444,422,964,684,47,798,1687,65,379,190,1134,1529,1488,8,1205,1688,461,94,1395,1465,881,1122,1595,42,833,1555,686,1276,1402,143,1198,1047,700,673,698,1044,1387,930,1408,1047,1020,1043,742,402,240,974,855,706,75,556,482,795,1675,153,10,1273,166,1151,836,375,1533,456,1362,1317,1465,820,207,954,1115,603,255,776,296,7,1123,940,1085,1538,186,119,258,1206,1529,509,1071,591,869,1692,1174,576,1393,1274,931,1346,348,957,1043,774,162,867,596,1610,320,684,1421,753,824,277,15,940,1032,1277,300,821,107,1465,996,64,589,140,270,1421,559,465,263,1408,897,1623,953,1713,1162,1469,809,1332,31,64,833,1289,250,1171,1047,1307,1525,907,1586,1673,1435,1223,1338,1047,35,1415,1106,298,1417,1663,684,291,1050,1013,92,1697,1318,1672,1544,637,780,179,1089,848,1362,1294,317,1710,948,876,1030,549,961,464,84,397,703,1498,435,1613,70,1629,1182,926,1430,1491,253,114,1685,538,336,630,1394,379,578,132,230,1722,325,1004,527,1681,1277,406,1244,1234,9,1329,463,713,218,1211}

    1464

    53

    Returns: 847795328

  36. {1027,1253,1051,872,1135,1063,1242,1358,672,167,207,247,287,1209,563,673,860,1573,327,445,492,902,37,389,722,810,685,740,556,92,469,81,477,766,1365,1285,1579,4,1455,1525,991,1538,558,1463,70,1251,1336,331,445,288,1218,126,1566,1213,522,949,591,601,1537,1394,1440,749,690,1399,228,1104,952,743,1272,840,592,745,400,696,10,1168,456,790,230,588,866,610,483,500,709,460,759,1282,816,540,691,231,124,1136,548,1414,1506,721,939,1346,1059,777,742,1025,1300,1340,1001,312,893,214,1180,469,1484,50,531,658,1567,227,65,225,1454,763,126,368,236,1541,1041,353,1045,1227,142,89,669,292,1142,1264,307,525,46,169,379,286,907,1545,1551,48,1359,1349,1222,1237,1119,856,860,1109,54,1528,881,572,774,601,1070,962,256,536,634,676,416,821,1564,145,1550,1559,1056,1224,959,911,237,1486,889,418,1036,403,788,779,1346,105,405,383,975,1012,590,650,1403,477,113,1243,679,803,1463,1282,1350,1498,230,1545,114,889,1194,722,173,858,72,798,655,902,307,1067,722,1474,234,590,1163,832,579,326,290,853,1023,56,1183,79,412,1140,1309,33,40,835,56,582,824,312,1433,1142,162,1373,1484,613,81,909,1246,1063,230,566,182,1285,63,190,1377,373,1011,1312,1427,17,258,1507,1237,1405,698,417,998,438,277,1199,177,1102,1417,1227,636,1356,618,424,392,1202,231,1343,947,1225,1444,787,1514,1499,422,646,1540,1362,1552,458,86,187,1309,590,1170,629,1043,182,1317,1144,591,878,93,1130,489,0,209,576,1515,106,1068,621,795,40,339,900,1493,1288,74,1577,177,1470,1080,974,1060,1398,641,1103,185,150,1450,1255,885,1525,554,849,1238,1339,1069,193,1000,852,1508,884,978,481,1538,1154,681,547,1287,239,978,54,32,587,249,1406,898,504,171,650,1098,112,1451,1085,712,230,54,290,1506,1164,1389,90,323,822,205,575,198,396,581,1459,1164,817,858,729,35,139,92,978,114,402,410,90,318,480,275,1270,973,1421,1516,437,963,347,1197,788,614,71,258,1330,1107,1371,918,181,250,1276,1537,229,103,980,387,281,1176,151,67,986,856,1341,891,1373,1147,545,1200,1042,860,210,1112,1378,93,377,1520,1162,1500,610,1274,1180,719,711,452,79,841,596,97,966,95,127,258,170,834,620,84,587,1181,1278,1493,308,224,592,1082,560,811,1219,677,610,206,422,1245,691,1353,603,251,1001,363,351,423,333,672,157,660,782,1249,642,778,1316,1332,1153,213,202,195,608,1226,329,1049,1038,510,363,543,1124,49,482,1228,220,1308,867,489,744,1554,1073,84,1051,1454,251,1132,1387,72,701,1154,557,236,0,1521,451,713,974,364,814,0,1379,970,257,183,1314,1300,959,840,271,1476,447,1350,952,1230,284,441,1513,1127,307,516,535,1028,18,1442,1096,338,101,1511,552,1357,294,995,1048,649,422,1410,1018,251,1497,761,1200,1319,223,634,135,567,627,270,805,729,512,1322,1334,83,1043,104,522,1255,994,891,1338,1520,1230,1401,704,722,1277,895,815,178,886,591,842,1443,610,1182,481,1583,1395,970,845,1206,1431,699,1515,56,1167,786,1063,770,1187,66,1282,240,1070,1111,61,1246,577,73,46,1377,401,421,974,999,773,315,1463,1182,926,1076,159,972,90,1131,1354,197,1233,939,850,195,1165,275,736,279,1234,257,1100,1359,1168,316,1528,682,116,591,602,918,967,5,1487,990,771,1125,141,1124,1356,738,754,78,879,805,14,749,797,376,237,1029,34,1453,473,879,430,1360,453,1583,984,477,616,1176,332,369,940,954,243,1469,619,1581,1282,1495,75,1205,1260,1043,1531,175,1225,1397,953,955,1491,764,355,262,1124,596,966,1335,838,768,416,862,650,1060,889,1087,441,68,642,845,822,1177,315,1430,1413,1052,1270,1324,897,1318,1236,535,394,1535,441,1327,1035,469,1564,252,255,806,1078,1024,163,688,522,408,581,219,605,708,261,1494,1570,1090,450,359,1124,1422,831,36,1150,236,1153,441,545,779,1031,374,73,1526,902,343,546,817,19,728,1556,97,1378,186,1503,1293,896,291,746,1480,577,1095,863,1194,340,1166,597,237,340,552,863,672,739,334,750,755,767,451,271,1009,1586,426,599,34,885,392,591,912,1271,1420,568,30,275,1088,564,468,727,268,1561,1006,923,868,43,320,677,718,1327,203,667,1271,822,472,1431,138,802,787,1139,125,305,1422,1591,199,539,671,305,88,328,1305,519,414,819,181,628,521,82,476,253,883,533,574,1402,1527,1565,25,1083,653,944,1531,776,1330,697,1154,92,968,204,1508,1458,260,849,489,235,1176,1546,1290,804,155,1529,491,246,503,84,496,123,872,1240,1223,143,101,1446,58,1356,450,1468,923,232,1099,343,981,1127,1248,523,482,310,1305,1412,721,449,281,1149,288,217,870,587,1267,789,1429,1464,625,1262,525,538,719,454,1543,389,1410,1408,596,12,1221,1519,1221,1046,51,1211,1197,662,1214,247,1025,976,1331,255,464,1158,216,1573,555,979,752,1093,831,845,979,206,1114,129,507,43,45,337,1588,1438,1552,232,790,465,1378,1566,591,1449,519,594,819,1052,1571,1566,18,1560,22,1099,1560,1032,1244,865,221,256,1206,9,189,969,275,1302,509,570,413,882,1224,645,573,1507,615,94,959,952,386,529,1466,245,1310,701,100,1327,689,1150,200,1069,973,1032,366,348,1537,267,1113,1425,1501,443,1374,109,341,293,275,1243,82,152,119,265,1134,761,1335,1487,702,644,855,275,1197,317,719,508,447,748,389,1099,1391,957,397,367,1591,1214,828,1487,158,118,483,1585,307,1492,1197,1338,1071,1369,645,266,101,1222,57,738,75,626,1255,451,1498,672,415,1203,723,243,1028,64,800,1389,1012,363,312,1477,440,410,449,1352,1411,803,564,956,1540,548,1355,952,1193,942,375,1437,722,488,275,398,203,1064,125,1160,1488,1475,818,928,803,240,1393,530,172,1025,804,1354,739,941,1536,1020,747,210,1350,241,1025,1390,999,848,324,567,912,1152,1269,510,202,753,253,1012,1309,250,236,817,1567,569,579,275,394,549,303,386,1031,1030,1448,56,1004,558,512,1116,530,581,849,350,1458,1269,369,1131,1091,1548,242,190,1152,8,293,1224,761,35,361,831,315,301,787,994,739,1504,942,224,255,1095,1145,392,478,411,1436,796,49,236,1261,1369,582,780,1241,459,1496,114,1470,635,916,306,1134,1591,1584,1145,912,261,722,1370,1160,1309,978,134,951,1236,27,1352,46,347,190,981,1177,686,466,758,1562,951,657,1321,620,773,1545,340,936,296,1472,224,289,1373,542,1434,717,1153,171,303,1171,733,630,1224,638,1237,1133,322,1518,14,639,620,1584,102,345,380,1519,640,1528,903,591,1555,670,1147,588,1096,202,624,739,596,1222,747,803,978,627,352,369,1380,274,63,1404,1402,522,1419,21,550,353,263,950,712,1586,762,444,420,1378,972,112,934,423,1118,758,1133,1122,1338,1530,1208,616,283,473,673,547,406,300,298,702,1327,1203,671,840,185,1440,850,1151,434,308,232,1098,137,131,1220,1376,985,1350,1041,77,941,963,729,1512,393,1584,109,226,46,765,1045,903,1537,244,787,1283,934,1153,63,1401,317,620,1126,1375,3,894,73,1196,258,1401,644,1191,1359,1007,128,847,1431,112,489,827,1307,391,19,399,1295,1284,1401,405,42,238,1359,1548,729,1502,1103,673,1178,1370,12,1108,1030,84,650,41,125,1539,1233,44,1369,1172,57,805,1354,1393,871,1247,710,617,31,1256,1448,1567,1569,461,1148,840,485,1425,1462,1188,1413,841,510,707,1139,701,1023,379,472,1359,285,59,1040,739,1171,509,1048,1466,1122,269,117,795,632,712,738,530,618,1467,960,565,306,1050,1440,16,1308,933,643,907,927,1280,902,963,27,209,1106,931,1410,737,1017,470,1124,1099,589,725,1217,697,792,948,483,593,831,307,1344,526,886,14,1082,410,1158,410,187,304,874,1290,1019,1156,946,1483,967,280,973,1529,261,1573,1263,1193,587,623,261}

    {571,157,1206,1325,340,1270,837,663,912,309,11,888,963,524,482,431,317,571,386,930,1031,801,14,1178,559,203,1544,1367,564,1326,823,1573,1561,218,1029,978,735,180,334,24,1327,959,1301,1529,386,594,1076,52,606,1460,1589,1039,1407,147,782,480,708,958,435,1359,739,1537,109,1438,371,814,1057,939,1212,397,1146,1388,58,630,675,447,1484,2,1323,133,873,1116,1096,469,989,570,909,530,733,1110,382,13,717,203,618,457,1002,676,778,873,657,1515,157,619,270,1521,1237,1426,1263,1457,358,1545,1143,975,422,220,212,1190,1330,678,110,1496,665,872,1551,939,16,405,1161,1377,1372,541,1310,744,639,993,1223,1415,1563,847,642,1448,239,1415,248,271,919,1466,684,1366,580,607,245,136,1510,81,577,1206,1222,1056,1424,1004,1409,1079,99,1096,96,850,1089,425,1508,419,395,362,1544,1176,938,983,661,307,1513,939,785,389,604,985,1244,1458,1309,303,1196,180,1020,72,1072,363,1451,207,932,420,1029,683,365,981,1163,331,379,622,1093,308,275,1522,153,1552,66,724,945,451,1567,610,524,405,1127,615,1186,936,937,515,148,817,717,1389,1313,1440,188,825,1154,920,814,1360,1333,370,606,435,1469,180,84,1063,66,1097,550,846,583,726,1139,600,1332,1060,584,804,858,548,274,895,166,185,117,472,4,489,765,327,768,966,107,220,434,1061,1441,1072,619,549,1041,701,779,1091,202,1118,962,1095,1263,686,1137,1419,534,850,485,769,885,1133,348,695,1304,349,599,409,1072,458,216,978,902,949,1183,910,412,1190,1056,1446,174,1117,344,365,1283,197,1264,641,734,1001,1183,725,1119,1230,1395,1198,994,1362,948,35,1297,122,272,732,201,522,994,1388,209,544,1302,525,1184,1016,1396,794,409,1264,1038,39,1427,1526,1298,520,873,558,890,1542,295,1226,1221,921,903,1438,297,824,1098,1547,583,1129,814,680,1284,1360,1247,1542,666,1173,432,72,1471,1179,850,165,44,642,1210,62,1289,359,1061,600,588,541,803,60,889,1291,1470,790,536,1361,47,141,903,1058,740,433,1022,152,919,594,1231,682,1409,1164,1445,332,739,1490,1250,834,1303,34,253,272,784,505,730,507,1350,1531,290,739,366,218,1038,185,735,1378,408,1110,990,1275,58,443,333,448,1244,450,1451,1493,994,1409,1290,393,890,160,1522,343,805,1440,620,820,1218,1286,897,934,669,517,1540,989,1243,115,133,32,928,1274,532,189,1175,859,407,949,299,42,56,1553,8,479,1428,623,210,253,735,1158,1094,1300,1453,1183,703,439,410,675,1541,1414,76,1432,1367,1334,956,207,341,94,905,9,1479,925,237,807,1180,686,1325,29,636,1493,133,106,1430,857,656,283,1195,213,994,883,689,1541,905,1579,579,1193,674,1557,925,1523,261,1286,357,812,554,657,894,1116,1091,324,809,1155,854,1116,901,1576,913,234,904,549,236,1235,101,705,1223,1200,1151,831,1103,462,261,832,1258,975,1406,189,1478,1509,1003,427,746,1592,156,889,619,610,958,770,527,775,152,956,188,132,146,1110,511,651,446,517,1342,695,1500,443,176,1525,727,63,259,841,1092,1065,1463,106,1382,85,9,1047,1389,256,1101,191,1192,863,21,1513,495,243,559,1466,756,375,513,518,1184,815,1066,57,1373,1552,1271,1263,296,1348,1400,463,1152,422,303,615,1356,63,319,758,136,344,692,752,913,620,1403,712,1529,974,177,1019,284,1215,1573,445,1123,1309,832,1493,737,1416,943,899,1020,739,385,1364,928,1383,603,38,168,338,1578,196,236,502,657,908,1115,974,276,977,422,982,1378,1503,298,880,1138,1103,796,1239,253,1204,18,1345,768,1158,1582,1418,779,1228,598,1564,630,1293,643,963,1591,1229,1110,902,921,905,630,193,1057,493,813,1537,560,1185,192,67,1403,770,1022,1359,1034,1519,397,1566,968,1292,275,1205,647,120,1232,988,1404,1537,1313,1482,1038,1154,1131,687,365,12,978,731,874,1029,1465,996,1081,275,348,1537,561,356,82,1220,1426,24,716,630,390,1569,484,1423,398,69,1532,560,236,307,805,189,482,805,81,1330,1404,420,435,942,274,1537,786,993,851,26,1549,997,1318,974,1327,1268,501,917,732,314,483,295,416,324,561,1306,341,12,171,1096,1257,687,549,513,570,346,1489,598,188,1139,702,447,1099,487,622,132,618,729,513,1054,1145,562,828,633,384,1057,957,899,20,1138,858,289,364,595,1435,1280,1281,689,1303,858,87,1213,889,1075,513,1347,1077,321,1160,1095,1191,499,1581,1055,157,1582,949,924,1591,89,1135,885,1150,742,915,974,655,546,914,275,103,1406,1222,923,1092,935,1537,1380,1008,428,453,1174,1224,981,258,1253,1319,585,1190,319,1469,1229,619,883,1271,1086,659,1273,283,852,739,1266,363,1005,498,1449,899,1564,1147,1057,582,1392,302,889,830,295,244,510,1517,211,786,1183,136,1313,899,673,791,967,1030,624,1151,1452,1044,537,1517,85,378,1467,781,597,1451,208,1562,978,28,1242,829,202,337,461,290,1435,1244,695,1569,144,898,578,1053,979,1381,1074,671,20,121,551,477,734,245,687,910,32,818,874,603,360,961,1157,1359,91,1159,92,795,1481,255,963,546,1424,388,739,1116,1458,674,980,228,1438,1035,535,1206,372,73,1105,398,847,1262,157,342,1540,264,554,1212,741,857,589,142,172,1086,1234,56,858,1152,1037,1552,494,1295,140,83,911,1557,1163,700,1320,6,1368,1031,1141,15,514,1315,1010,592,1494,520,39,94,482,1252,1189,1216,537,1091,489,1054,157,488,658,71,185,530,2,1178,506,256,105,1128,207,1118,1031,255,93,1568,634,203,330,974,451,682,828,586,808,99,579,222,956,907,1217,278,198,687,1392,726,336,164,194,1067,1217,706,25,584,729,839,193,441,886,1542,179,220,1004,1299,260,159,1174,101,1211,1529,643,1430,146,770,1423,654,359,836,1269,254,214,1424,419,1345,1417,583,112,1169,161,273,700,354,702,435,425,703,1264,1540,603,1421,466,828,1561,1207,645,714,844,233,981,1561,1386,29,1409,1192,1286,1206,921,678,275,819,1176,727,1338,1456,7,808,1033,442,283,971,1533,490,598,1486,16,974,112,800,712,1534,544,1013,879,1501,1338,968,599,328,467,813,847,1022,1470,1020,471,964,1570,419,1359,325,79,887,945,1041,185,671,1505,239,833,328,1259,19,1492,1383,875,134,1127,830,811,353,261,815,475,581,1473,342,1063,813,430,369,950,1254,1580,1330,209,905,215,1439,1120,1485,237,1126,311,869,876,486,130,74,1433,428,1329,23,1506,768,1015,877,772,54,1022,803,80,1427,822,281,1163,347,1590,74,1062,1385,560,637,922,518,833,366,1311,525,561,1319,1238,723,1440,558,825,429,589,854,965,720,445,1419,1351,924,436,476,483,1575,825,258,351,752,338,242,952,409,787,1582,609,154,1014,1358,1110,635,111,309,39,1311,1337,694,1493,1404,1235,404,647,1447,159,117,1294,356,474,611,977,1274,1178,1173,1383,447,929,1093,1556,388,480,1180,1286,549,1042,826,455,715,203,1365,55,149,1150,669,668,305,1077,177,74,1154,446,786,814,1346,648,1365,861,1561,1096,1564,879,708,992,282,1158,530,686,1049,693,1279,760,1265,451,512,598,1140,1436,793,664,98,591,610,1436,1222,1572,584,1532,858,783,1461,1098,1325,279,1286,1241,29,1249,687,136,904,1121,416,170,1028,184,427,768,137,612,512,1524,898,652,665,579,1054,53,22,381,1558,1021,1376,1483,892,202,1054,611,836,670,1337,1516,741,1091,1197,1013,313,843,987,916,97,375,1117,891,74,864,43,1076,39,1448,563,674,751,147,615,1177,1237,1529,846,1236,187,1131,1432,164,16,1264,1242,1587,1501,902,656,1406,1383,604,941,843,1164,757,524,1573,1026,1389,260,97,307,548,108,1158,1147,635,1439,1435,482,335,1084,1069,1574,1493,553,1309,1511,1363,181,218,450,569,819,768,799,1561,1296,994,906,528,541,1567,497,1131,1030,999,631,450,780,1328,24,1197,1384,1201,1,1045,708,1420}

    692

    501

    Returns: 577221492

  37. {724,318,1575,85,847,1013,1798,833,262,227,1267,1696,134,548,1022,324,1683,62,129,632,998,1212,524,1623,162,986,699,240,1101,1008,263,340,965,561,85,772,90,1886,372,1936,1308,52,1278,75,1606,1720,573,1753,1353,1701,599,1154,901,1456,1599,729,1447,981,94,1301,1671,758,1205,1888,945,1701,1417,1873,779,13,595,1405,1374,217,1057,583,1292,318,1150,94,952,1544,1350,1036,394,999,1389,775,273,1319,1256,715,1817,233,1936,1704,999,338,1857,1273,142,830,1864,1330,834,1198,1825,226,1939,1831,1511,636,396,1042,1373,368,378,1210,1823,1444,435,1006,1451,1375,53,494,330,757,1063,663,64,1550,1084,617,1611,1406,1178,183,23,1050,366,270,885,1126,793,226,1479,1379,1096,52,1374,438,67,1325,1020,481,1095,637,1447,230,1372,838,1092,1673,825,75,1481,1705,596,544,1634,765,438,1062,29,903,1660,107,1871,623,714,1471,1781,1244,1586,601,86,746,1402,984,1823,1459,1204,268,1822,1008,1810,843,745,190,1333,1230,1711,1335,1376,1158,1329,1677,811,1724,1326,1637,522,1767,669,197,826,1202,1274,1204,381,680,1214,389,1229,979,319,1867,1037,438,418,457,1288,370,1895,1682,1651,225,258,842,1807,57,492,1117,1523,1016,1148,1609,1533,1142,912,202,1247,652,377,1713,1430,354,249,1280,1253,524,1257,1705,1024,4,1433,1636,1372,620,1375,69,164,1047,1108,1033,408,657,1173,1442,44,1214,800,418,663,1165,1325,315,455,1914,26,284,441,884,1159,1437,77,1823,1421,1420,1262,1507,1690,1629,1124,745,1386,186,1232,1562,1696,530,347,1447,225,1677,1842,428,44,1488,831,829,892,238,467,1130,436,1570,1164,134,68,1702,376,94,1748,1086,766,1280,1631,56,74,1173,1542,732,1192,1394,131,829,1905,1672,1715,941,1632,1048,624,1503,1824,168,1900,1200,382,341,1577,1613,1022,1700,219,931,250,1920,626,1912,1017,1168,909,1368,1841,623,462,1219,475,1461,1659,236,1810,1266,1070,591,584,572,1083,885,1342,1682,147,688,1832,1504,540,307,1800,1808,878,513,668,1771,887,1529,1132,944,462,1171,478,1431,752,557,1155,1365,1396,506,318,159,1569,1076,239,1386,175,177,1110,1092,1340,240,1180,246,1149,435,1009,1061,1711,68,1807,934,776,1678,1619,1087,1816,632,1676,1330,295,444,178,1112,1502,415,868,715,28,1557,1119,1110,976,681,13,1791,774,1758,1203,1404,74,280,1623,402,1744,477,109,566,1098,1471,700,685,1479,1707,240,1657,1319,543,612,1486,1638,1703,1903,99,1650,1430,282,618,1238,1188,46,458,1749,185,477,1722,1642,1756,247,1641,788,625,399,1369,580,1316,1340,203,861,562,664,704,1714,1184,764,1801,1956,76,364,1797,928,1738,641,48,491,1614,1533,144,1316,1029,265,437,1076,1372,1379,94,727,255,281,139,1225,244,521,1919,1481,609,1737,2,507,1709,204,1110,1645,1240,1079,71,731,287,1077,472,897,570,1239,1361,1911,1610,1730,157,938,845,1710,508,1470,1081,1811,1884,1126,1661,1876,1834,684,1470,1073,12,1696,402,1542,1725,957,730,360,1144,1817,1071,1189,524,664,1904,1158,1579,1161,1601,358,74,7,269,936,172,318,879,576,1891,736,1574,612,304,1383,772,1275,1399,1399,539,1044,1400,842,486,1040,1372,813,1035,395,664,46,1569,352,62,1310,297,637,1457,699,1700,783,957,596,1004,783,1586,1774,1418,1858,1000,1955,1705,714,752,245,327,576,1218,1846,1431,1488,1924,1413,1342,720,641,132,24,1461,1171,189,464,1678,1272,1725,1596,1049,1940,565,1496,1078,1672,1528,696,702,1836,148,621,469,1019,518,1206,804,840,1942,1582,1552,1116,342,816,889,297,1278,48,1025,1357,1181,565,1158,1289,492,1862,1342,457,1881,307,201,1392,1345,1449,1307,603,1953,1322,185,1591,222,496,1654,436,26,1529,942,932,592,1889,963,1482,1220,380,1195,498,275,858,218,150,141,704,446,1667,1180,74,350,392,855,1349,1436,1182,253,1106,527,1081,1085,21,1340,1888,282,1702,1885,1213,920,1392,253,38,1334,1864,318,275,353,1636,592,993,807,925,1729,1410,472,1494,1479,1273,23,314,1128,1885,1054,1564,346,932,175,566,1843,829,1286,1298,1371,1064,524,1677,1531,1882,1555,957,837,52,111,1225,968,1355,253,990,1876,218,1648,1470,1664,394,648,192,200,677,1598,558,587,576,1763,1751,1735,537,1911,135,932,469,1792,1068,1262,1656,900,735,499,1220,202,548,1668,1584,487,765,1735,958,1202,1700,880,1961,613,334,1849,1471,187,1138,1829,920,1475,129,1782,1300,635,870,1612,839,20,755,669,643,913,1438,325,25,1780,1887,1880,1444,1002,1727,1336,1069,11,471,551,1557,488,1925,842,784,558,1571,624,660,732,1936,1076,210,1379,313,1739,489,1408,789,1470,1113,1724,114,327,392,1612,1557,1521,453,132,1071,1297,1893,457,1283,7,152,275,428,203,1830,834,1617,146,1570,1905,146,1018,1123,1520,1052,1754,1872,787,636,668,165,994,494,1519,248,976,1276,1665,1762,1247,1960,1729,184,1223,1289,307,73,876,1573,1091,1366,200,1369,1946,471,288,1193,1177,579,1907,261,81,1719,307,130,1958,435,503,837,822,1482,211,1446,635,181,245,1818,1502,523,417,1794,329,299,853,119,1780,895,778,1444,919,1791,506,1521,502,796,89,283,253,692,46,1625,1510,1082,398,1569,1587,284,532,541,1549,1850,1177,1060,72,1015,326,1593,1882,82,1474,1780,748,171,127,750,469,1105,1296,630,464,1896,714,1064,1354,1522,1136,229,1053,572,754,859,88,648,258,1039,331,1290,176,362,842,1420,1454,365,1624,457,972,646,46,1915,219,1505,1236,1424,86,259,1299,414,1851,877,1365,660,801,701,110,841,630,140,1156,1810,1814,1682,1755,1941,1765,1656,761,212,924,1229,1358,614,1780,1842,380,438,101,1290,1415,377,1910,208,1223,541,559,285,1609,1328,814,425,703,288,1174,150,1184,1189,1770,251,281,862,1052,507,1768,855,337,1920,1441,1557,873,1256,229,768,436,547,561,454,977,1669,1505,1248,46,1557,292,618,1647,194,32,1793,310,535,868,975,542,971,905,494,690,1600,1683,1744,1711,438,971,1075,1487,1732,329,1788,807,1314,1706,1465,610,902,1724,480,1398,373,646,609,60,1149,889,266,1927,609,922,751,1039,1716,598,5,1204,1858,697,70,1528,59,1707,1930,1443,500,513,638,1259,1203,1502,1414,60,1833,174,1262,848,397,1224,1287,1852,1283,386,1883,1424,1738,1605,1004,240,245,1784,1873,463,204,809,930,1571,586,1284,1878,1208,333,1243,1852,940,1081,1424,1867,375,978,778,1023,270,1356,1141,705,1008,1046,632,958,391,1201,131,1427,674,1795,914,464,1674,993,750,1103,959,1870,1448,689,1095,734,226,1510,1199,1588,442,1355,115,282,512,448,1263,1743,1700,1635,601,1643,769,103,1960,576,1203,1849,1110,406,898,335,1388,516,1327,732,444,300,494,1594,572,1807,642,621,575,1330,756,1652,74,268,1202,1733,1675,1765,1547,417,535,1077,644,846,1072,1082,1228,1927,708,727,193,959,1292,653,176,1194,55,369,1591,1135,1445,680,1448,101,1244,1787,1819,1524,1740,317,897,1630,325,1052,511,179,1234,122,1605,1237,83,1043,1032,745,931,1568,1670,213,1479,332,1702,351,128,1163,572,561,1464,339,1955,1431,1575,1619,1947,571,1780,1289,1295,328,983,1390,958,799,345,1140,936,261,760,1229,561,1508,1317,1108,1051,457,1080,374,1949,1166,1123,116,1180,74,999,50,1937,800,1765,1249,490,1284,291,568,874,1033,979,1833,878,449,906,1619,1330,1943,991,616,503,1680,1065,859,853,627,1413,1542,1376,546,976,1525,65,528,535,740,550,101,1279,617,1064,901,729,1269,798,331,1061,845,1419,331,1121,1936,1634,909,260,784,42,1526,565,216,1168,1489,409,533,16,1718,1480,309,1441,39,905,252,793,715,1844,104,617,1412,914,709,508,1322,1075,1087,356,725,1162,358,621,91,846,240,361,9,95,369,1309,1005,684,1086,134,365,1468,1879,541,1481,532,1048,1405,1175,1699,1364,529,105,9,1915,1227,194,438,720,1869,995,1481,0,1331,795,1184,1223,1219,1625,276,103,903,1506,739,1721,469,419,86,830,332,774,1468,794,456,103,410,150,743,554,29,1625,989,1434,342,1628,822,1577,1847,822,1367,47,1816,1677,360,477,890,687,1447,722,1435,1233,374,1450,1565,1708,557,1107,565,104,1228,871,1238,349,1344,224,75,316,1531,609,1086,1441,1343,35,1305,431,1066,410,379,157,1813,1217,272,1773,679,702,725,1536,1543,1134,1607,1419,1918,1494,530,805,1490,1012,1775,444,675,1033,1248,76,422,1899,96,533,1775,1292,181,973,357,1303,340,1679,166,352,119,1093,733,1360,1376,644,1254,216,1495,1175,919,543,1752,1636,1571,910,1514,1089,1289,337,664,1897,243,1622,439,188,886,514,25,1778,347,1825,911,1129,82,30,970,1649,1619,1533,1043,1217,98,1619,466,256,253,752,1646,1058,1409,312,1787,187,1519,1659,943,1441,284,1339,0,71,177,1776,661,1441,170,1238,833,530,50,966,634,1384,1246,358,1779,1470,489,139,145,588,144,489,750,576,1725,797,788,1927,1739,1449,1255,1039,1908,1936,1805,1405,1437,1893,802,958,883,1790,1925,858,873,1111,187,1423,436,328,83,1860,962,1050,459,1399,937,1780,369,215,1259,469,1812,1438,951,1115,1202,783,1856,1880,294,142,1833,715,1553,107,438,695,1171,1841,1050,259,50,589,522,927,1311,543,1385,1645,343,78,1135,1342,1604,537,156,294,1922,1315,463,463,707,403,780,1566,1786,872,459,1110,1572,405,1360,955,915,956,175,649,415,1185,1470,367,55,225,942,1417,68,192,1959,1680,1084,991,1177,233,1697,161,74,223,179,523,214,89,1515,1527,1079,108,1691,8,52,1885,573,853,385,1196,438,411,329,652,447,1922,1926,1552,283,484,928,10,144,1485,1087,844,782,865,405,510,1328,472,1283,1307,752,167,531,1629,169,1233,194,1563,1467,1714,729,1376,1814,1841,402,738,1627,1213,580,1167,436,1619,232,1316,1267,65,772,1501,989,1741,937}

    {525,609,842,17,1284,1653,493,46,1586,1153,735,1,118,293,759,1550,267,930,1879,1451,286,1187,641,1177,506,1470,1916,1861,167,134,1216,703,1804,279,135,37,148,1316,1269,491,910,1845,1934,1067,22,59,1135,1868,309,745,463,37,683,1447,180,49,1644,1610,459,334,433,1179,1709,993,1585,1049,1172,1393,698,1681,1684,1534,1363,772,1041,384,1014,700,490,74,297,435,1395,419,538,1917,1777,389,519,1197,1048,198,1246,960,1370,1492,1807,480,769,1610,1250,975,489,585,263,774,1174,1804,1350,1481,1039,769,1788,1942,1930,1888,1076,1933,762,1921,513,1791,745,814,597,10,1753,1902,547,1064,1196,1597,984,929,328,1366,719,27,1628,134,1789,283,1839,1422,1337,479,1609,123,769,43,1320,1729,1023,725,637,1784,997,1400,1555,1306,1807,1687,619,205,378,127,68,1656,36,1210,907,166,1824,592,278,773,1082,1815,1706,843,274,650,1239,1501,569,1824,477,1857,1811,1046,317,1100,1084,1821,308,1662,1416,101,284,1741,869,993,359,628,665,1852,358,1072,853,24,1853,883,1647,1451,78,547,362,1693,612,666,430,1554,856,1597,1140,582,1907,231,972,26,1595,363,817,533,305,1713,1138,1066,1539,1632,916,574,988,126,208,275,1711,87,1152,330,770,1223,300,298,1387,593,1944,1494,422,1421,384,145,504,364,1421,1596,270,545,1426,1526,1330,540,1278,6,1955,750,1616,204,1135,950,1855,1076,1010,312,1576,444,1931,1201,1599,414,1274,181,1694,477,1793,285,1807,1618,348,1452,1439,1050,1566,372,1622,703,133,106,798,568,1212,430,1234,737,1568,818,1923,928,1120,1066,1190,432,1342,1448,1609,1621,166,1151,1884,14,795,435,1820,500,998,581,1931,767,178,1057,724,1231,1374,864,342,1557,1233,1297,850,1626,146,856,1890,554,1867,197,514,150,1299,758,1434,1140,1867,89,1746,60,220,84,1249,1898,221,320,565,79,465,969,268,945,679,407,1055,1951,147,1505,742,82,355,1513,408,353,727,470,1033,1571,1224,309,248,137,1007,428,101,964,957,866,1912,284,508,1896,1089,1538,1888,921,1325,676,835,428,1687,1289,741,1470,1351,1808,1863,52,489,1724,461,1827,1867,145,996,1848,950,27,548,1909,789,888,823,138,400,1769,297,1031,777,933,562,251,96,1644,40,1395,1640,142,1639,186,443,1747,700,205,1426,1500,857,1616,1920,659,609,1592,808,1377,664,63,301,1063,1381,1030,621,1066,283,309,851,996,282,1567,1612,1609,1469,18,1133,1698,189,1806,543,1244,189,307,629,166,1667,1881,317,372,1076,57,1190,133,1627,1908,1434,1648,1434,547,1500,1202,653,801,424,1444,1539,967,1945,1386,1825,540,61,624,1115,912,1466,303,114,1039,1039,1808,123,1630,437,415,1763,895,1690,1954,1088,1121,1929,753,225,1076,188,485,495,1414,547,1031,849,1560,469,1645,1038,1242,433,1687,1275,506,1689,553,833,1923,1169,441,894,1841,1057,1165,438,1143,993,205,1486,641,1054,529,1060,605,1810,1546,1049,665,1183,1230,440,433,1375,151,1428,1497,726,482,1709,39,1409,741,55,821,1113,261,1304,1159,1285,1342,1262,1495,608,1086,1008,1483,1517,1647,954,645,33,705,677,1922,1252,1655,486,828,1220,1023,1561,1017,990,1896,209,1519,444,1933,982,1289,1768,1899,1184,1094,661,813,1938,246,1551,227,1011,1758,552,725,275,628,608,452,274,173,1569,1145,1296,1368,1615,534,711,1000,992,1499,1053,289,590,602,528,708,1736,980,1121,1093,1728,1745,1131,1948,1083,84,896,1301,499,1575,774,1176,1604,1002,227,1797,1139,18,1043,1598,826,920,850,1682,980,897,74,1854,1542,1202,635,1160,833,806,1905,1575,489,1001,95,412,682,1728,1082,1313,781,463,1666,1039,604,1199,185,206,166,1799,1632,750,1064,744,113,1939,1195,1785,398,1927,451,618,656,1451,45,149,1628,189,360,468,863,166,723,1548,1782,749,774,1352,924,947,1377,853,401,1335,555,1190,1619,744,975,1068,870,1669,1511,855,1559,673,991,968,1407,1027,1022,717,1472,854,344,798,881,970,702,1906,450,54,222,1024,1717,489,520,275,598,630,1495,1888,412,939,1251,815,1484,1932,1250,635,1801,1362,172,1138,258,1211,53,1620,1261,1711,932,295,1569,144,872,564,1637,509,156,1893,1950,1586,1859,1064,975,944,669,52,1323,908,1895,1240,771,227,1796,703,1661,1920,254,1463,1435,963,560,1391,665,241,719,459,938,179,263,1609,599,1550,149,166,923,275,1233,1263,1497,1621,1492,721,65,793,1959,1022,247,1603,1913,169,694,494,1169,1491,522,1049,473,426,1741,171,1277,233,284,1648,1072,1120,1721,548,753,213,1239,946,1711,1369,1420,1575,1809,961,1928,1719,1726,1888,408,839,124,1122,1264,732,1807,13,50,330,1224,1127,1298,256,1441,22,1245,24,1933,185,336,600,1282,993,468,798,1038,660,1590,715,445,517,1313,1052,1326,1940,463,1536,387,5,827,1487,431,452,317,404,1149,41,1418,1354,126,1520,1470,1495,1127,971,428,70,247,1737,197,1881,932,438,1744,581,121,516,42,718,1574,1240,151,1570,712,628,1757,304,1605,429,1487,6,1849,1826,628,1773,1310,893,1840,910,1515,741,1478,1000,452,139,994,124,1633,1888,758,1936,489,1267,1955,428,1254,1765,325,180,790,29,1440,658,693,611,1789,199,1661,127,1221,1660,26,1622,827,797,1750,434,408,1239,735,462,1153,795,1185,1115,739,1575,549,296,15,329,1293,1017,610,607,1222,271,1783,1807,290,344,1151,1602,1329,13,1905,65,281,416,1742,1807,633,1712,1080,1476,1817,1325,1332,1807,98,615,1687,575,1537,1164,1271,31,1195,1380,1810,1824,1539,1237,1138,1719,1281,1109,1393,798,556,460,592,583,253,1226,953,710,1850,882,1817,1708,132,1360,1784,355,459,845,911,1382,1922,1008,810,123,486,1738,543,620,1153,691,275,1157,349,306,1235,1134,1454,1520,655,321,1672,243,32,421,1424,765,974,1191,1238,154,622,1399,1080,842,426,66,1397,1343,1312,583,618,504,1570,1106,1467,899,1158,475,715,756,987,393,1132,515,1273,1558,785,55,1895,706,1365,635,523,822,718,1444,1068,817,1077,463,1526,1376,549,359,115,198,122,363,30,1118,1797,1081,1700,791,1461,882,1952,853,1215,1079,795,1512,11,1077,98,836,667,1957,1141,229,992,1874,1306,164,846,728,558,1680,1196,1739,1672,423,1209,1875,1059,1313,548,118,1077,283,1838,1743,221,165,1445,1017,1907,1331,1580,634,1764,1445,1734,1013,1169,3,828,1248,117,155,78,20,1082,317,940,1656,1907,1828,257,530,737,1780,291,1347,51,391,1294,414,1793,1684,1477,902,792,514,869,758,1565,418,1489,80,288,832,6,972,120,1003,160,1479,1090,237,340,816,185,378,1789,1468,1701,1122,286,648,905,1677,1026,1690,476,1052,1383,744,576,460,636,1033,158,633,1033,1636,925,181,510,586,957,311,529,930,1435,720,1136,949,1556,798,1513,783,25,1684,1097,750,1731,137,1372,1706,1627,1104,1483,996,722,414,1685,1064,893,1377,240,1112,1432,1498,778,477,1630,1102,1660,618,1869,416,1513,627,1716,102,224,207,976,1866,1907,1760,1045,1403,1046,1589,996,678,919,308,1426,1334,1761,52,523,1056,623,137,563,1338,1271,1552,464,376,1270,1692,386,1112,695,1074,1,1532,614,1684,1319,63,1647,1022,1471,1195,1902,774,497,1540,1899,1268,959,1374,464,143,1267,1028,152,1265,852,1086,1419,765,1389,1363,824,1806,1647,1487,1755,1647,1071,580,1302,1260,1581,1454,259,93,658,1701,1378,1881,976,1516,1039,278,1686,1629,1251,234,302,1865,1750,1541,400,1142,443,733,1901,1060,786,1341,1146,939,1493,255,1226,444,1519,956,185,985,1359,388,369,803,845,647,34,1460,1229,1486,1318,540,1346,1137,1533,891,994,716,1237,1431,656,1298,1849,253,286,1267,323,196,1578,277,1498,1503,1803,1879,1935,727,1860,92,1798,1453,1674,252,1302,519,1097,16,1530,1509,788,1658,1079,1481,856,1228,596,1571,38,1267,1895,1808,919,469,1596,1114,1207,653,94,563,594,369,780,1405,1688,1518,390,1772,819,1633,1950,1808,1348,1769,1916,1487,1175,795,1387,935,798,592,1920,918,517,548,1755,100,1809,713,1688,1033,1479,604,654,1454,1377,624,74,1329,504,662,1930,1545,747,1258,172,360,581,1722,917,1695,745,1629,1503,1492,827,1077,1877,1445,1462,959,1569,1425,1840,365,1112,420,1463,1667,1608,925,373,1499,19,73,139,905,1079,74,1860,970,580,959,1766,616,1619,1034,1765,864,778,1723,1238,1039,373,268,1320,843,885,1784,460,1100,1169,830,1332,539,885,110,1281,1731,860,1788,1432,606,920,536,371,1609,1421,998,1177,1742,112,1949,474,1617,543,578,1394,1923,967,625,185,24,1068,932,904,957,776,930,1001,101,1764,430,376,1833,609,1644,98,1493,1586,58,1213,1125,1782,1824,692,1394,885,466,865,427,772,173,489,1147,1885,879,1443,307,934,867,1455,763,895,152,191,1429,1469,990,136,413,1158,246,1360,469,1324,367,1701,1750,1802,970,1401,1837,531,1291,1429,1308,672,632,1241,260,1414,1542,282,1780,792,931,1394,1761,383,1819,1572,163,577,744,812,625,1914,121,1510,1170,1533,919,452,505,82,640,714,1234,235,61,602,1222,919,414,264,1418,242,1888,729,670,1411,533,1760,1158,875,370,1162,1892,1726,1473,683,628,513,926,677,1458,1246,633,426,1176,941,1363,1894,1583,1671,182,750,567,1190,1729,178,1426,1267,732,810,1870,359,573,1564,948,1441,1524,957,526,457,911,957,1557,1029,189,864,624,190,1186,302,1467,1479,1443,501,925,157,1086,716,188,483,302,282,1330,1021,1661,1535,225,1663,1095,1578,322,1835,153,1436,387,459,364,284,1413,1090,1424,10,842,671,1939,170,1906,1637,924,1123,734,1799,1115,1744,228,524,1158,497,93,1671,125,1195,716,533,1126,171,820,195,364,662,964,979,631,1414,497,1521,438,451,1321,896,1894,639,779,845,547,1359,1958,143,1099,502,1582,327,845,1688,756,94,1860,1859,360,1759,1885,1729,1331,1149,686,651,152,276,1229,97}

    1657

    349

    Returns: 957602104

  38. {264,37,210,42,289,127,56,0,11,58,215,178,73,265,97,279,286,87,13,74,127,67,122,289,188,235,176,117,225,206,57,186,188,281,106,287,136,2,276,284,220,137,239,31,221,60,43,199,117,180,210,277,48,202,69,29,18,167,153,39,35,15,257,162,90,102,0,200,158,4,122,264,65,212,210,77,48,27,82,263,134,48,63,93,113,222,252,223,239,287,245,223,95,107,123,227,70,30,243,185,1,153,239,99,81,255,177,236,126,143,139,154,159,234,81,117,207,90,166,264,110,280,116,283,76,47,135,194,85,109,9,200,252,279,89,113,128,194,37,68,168,246,188,78,29,107,136,76,155,61,286,102,105,16,111,271,111,43,118,235,189,209,166,233,228,148,235,32,166,216,90,151,245,161,233,119,70,152,238,57,270,14,261,120,226,182,51,115,115,20,41,140,154,183,14,220,1,143,57,222,231,264,122,53,274,164,94,119,216,107,10,197,164,233,99,254,162,221,35,65,194,19,99,15,202,256,86,122,282,288,80,148,255,274,150,29,190,37,60,208,163,91,205,284,36,76,62,267,147,194,47,179,230,120,290,67,76,4,52,277,175,112,219,17,173,31,81,207,133,217,171,184,235,173,222,241,273,166,59,266,254,104,149,34,103,14,253,205,60,56,291,80,207,117}

    {266,245,29,108,162,265,46,247,5,59,88,24,239,37,26,92,34,261,222,169,83,82,210,92,6,285,193,69,210,194,14,277,148,84,245,22,140,81,213,245,29,294,138,25,258,44,233,150,100,226,222,167,59,135,74,96,199,210,229,261,66,101,154,272,144,195,197,140,8,36,141,93,224,99,268,172,254,281,206,163,157,252,18,250,150,0,49,156,171,73,232,197,253,122,85,185,292,172,272,160,75,23,159,249,55,204,271,239,163,103,60,185,242,241,254,40,248,114,196,2,46,172,159,211,21,103,56,2,108,86,98,283,121,12,4,181,235,85,57,205,260,61,191,220,241,182,253,71,33,3,192,22,82,192,145,199,67,135,159,130,209,90,154,294,97,23,173,113,262,103,122,225,7,213,218,50,81,286,51,135,268,81,124,64,166,281,216,187,210,192,233,201,132,29,289,79,87,163,214,260,36,30,57,256,222,233,254,188,134,98,212,75,237,293,24,125,174,62,131,240,148,33,90,107,142,251,92,213,135,199,72,184,254,5,254,19,51,239,69,132,278,158,129,269,194,228,244,81,256,221,256,185,258,239,163,38,158,165,37,76,30,216,84,122,36,150,259,146,148,282,170,54,203,275,136,61,215,220,28,35,198,73,31,43,183,65,88,210,176,45,140,245,164,234}

    9

    39

    Returns: 160789175

  39. {400,126,82,322,310,285,149,406,226,343,393,107,378,284,232,353,346,393,233,310,399,136,155,414,122,166,346,109,245,71,68,203,407,60,225,56,215,144,297,51,310,103,159,23,17,320,330,326,243,346,27,88,137,193,207,209,83,312,19,323,398,200,180,211,337,395,124,191,99,267,283,229,171,146,8,369,9,259,136,84,354,330,41,230,54,227,237,110,149,246,268,208,129,5,350,49,56,371,300,395,158,63,178,121,290,167,59,291,352,324,132,256,6,39,141,297,197,23,67,305,281,263,266,29,238,37,252,4,155,391,188,312,142,162,105,248,20,416,22,47,373,320,187,236,144,290,345,89,19,371,283,268,372,191,50,380,344,282,280,209,351,80,404,157,374,128,12,156,419,171,249,169,227,6,383,301,163,59,274,201,91,271,170,237,221,222,45,190,198,421,384,98,23,288,85,23,393,385,112,269,376,274,250,365,45,395,110,133,354,344,214,227,105,185,405,333,172,328,235,148,308,18,351,163,72,331,395,70,400,300,268,72,392,127,154,411,340,298,87,139,423,119,22,316,200,127,110,324,137,1,17,144,392,213,4,246,351,45,23,147,314,253,226,105,275,4,309,110,72,76,165,290,204,365,250,142,277,422,372,126,375,27,147,282,310,113,5,140,274,102,325,240,386,44,186,331,255,292,56,415,412,258,251,194,331,168,18,292,383,60,339,175,263,157,164,104,395,103,407,252,149,238,282,386,139,217,349,25,169,143,11,333,324,135,23,261,338,362,44,294,239,356,259,304,223,111,384,23,400,94,4,396,222,334,77,351,171,347,216,260,271,35,274,13,413,400,209,367,114,32,194,421,318,53,330,95,372,235,150,152,125,360,395,395,401,404,123,291,9,255,418,85,202,372,316,310,169,123,152,389,145,122,376,47,115,126,281,159,326,240,45,180,237,135,100,64,90,242,314,216,389,300,350}

    {286,36,5,363,362,371,365,206,315,177,265,367,205,89,182,22,183,273,84,347,344,365,23,389,329,72,279,359,308,323,371,86,361,247,20,75,115,9,21,74,404,381,325,229,81,10,349,64,395,84,79,101,326,42,25,61,248,362,329,348,282,65,276,391,369,127,232,255,239,100,312,117,239,227,85,72,408,342,331,133,330,19,84,122,353,278,177,203,393,151,216,367,45,60,80,50,160,413,387,231,384,388,30,69,120,282,43,377,400,46,274,275,51,253,5,221,189,126,68,9,181,31,46,295,335,97,313,357,28,218,395,16,183,99,157,40,162,183,199,341,254,89,249,349,131,42,124,395,289,395,81,335,24,0,369,140,99,223,167,389,70,219,377,121,100,146,277,212,124,358,48,91,317,209,410,42,55,362,23,81,118,340,384,224,103,394,227,326,173,140,257,395,62,96,328,60,22,219,288,392,3,221,382,203,241,52,263,248,395,189,228,395,293,9,327,175,253,116,132,99,164,140,355,174,400,196,239,332,179,294,326,78,262,113,239,140,239,266,400,393,297,306,38,44,8,302,244,310,73,57,195,76,240,183,175,150,48,34,362,299,362,22,108,30,263,204,274,184,316,33,354,176,379,109,369,390,285,226,376,306,46,421,308,264,365,287,186,15,124,202,171,173,165,348,409,307,330,397,93,39,172,362,196,178,26,109,296,221,57,290,5,254,420,322,7,264,161,226,326,320,70,192,410,130,403,360,29,151,153,92,288,272,364,351,327,186,285,123,14,138,106,332,173,109,97,171,51,371,175,18,366,297,36,136,98,101,7,92,242,209,58,188,66,137,220,326,310,68,35,406,288,72,79,180,63,362,303,321,255,368,144,282,167,84,105,401,370,163,160,210,50,2,5,8,336,134,393,214,327,160,74,311,282,319,99,72,9,402,212,44,270,9,325,417,391,319,345,234,32,378,100,74,242}

    312

    84

    Returns: 130867393

  40. {76,466,55,752,658,741,272,329,355,564,709,52,579,30,569,723,357,637,677,208,393,703,384,209,488,132,247,359,352,724,493,70,247,408,503,287,700,626,290,581,206,165,649,680,513,471,743,680,434,240,740,452,405,314,38,557,708,140,589,195,383,12,444,566,189,455,551,203,630,572,568,716,402,143,158,112,310,601,660,232,63,246,455,156,671,747,508,658,224,94,486,274,605,61,493,704,193,435,339,117,379,606,189,35,126,373,490,500,236,101,668,12,119,492,363,136,119,52,266,461,474,716,304,727,612,258,86,36,429,634,413,232,484,268,594,541,140,380,420,576,470,218,517,90,182,297,260,492,456,725,305,465,420,356,510,60,533,690,427,661,33,744,4,308,329,346,149,261,69,49,693,742,370,472,311,418,578,467,631,649,701,663,448,410,571,63,513,251,343,97,439,733,4,449,712,751,241,452,442,631,451,452,374,169,274,710,701,64,428,232,95,401,689,132,171,57,564,571,640,432,392,571,730,501,188,439,353,327,569,297,588,731,394,19,441,634,616,676,484,693,434,181,384,329,504,352,665,720,126,712,92,389,39,724,448,531,13,197,34,211,672,571,604,79,217,199,337,162,387,219,121,623,150,276,498,308,721,560,440,729,349,623,691,228,651,158,1,31,457,352,125,110,97,377,723,66,21,161,219,581,670,556,363,394,588,731,327,382,321,289,291,27,185,754,225,425,97,356,367,511,484,568,285,552,371,222,232,146,180,164,710,631,347,649,0,550,537,657,115,588,40,165,222,127,658,423,523,394,698,598,750,699,189,666,31,545,569,161,229,692,606,536,488,262,608,256,570,438,160,421,194,274,454,233,661,370,133,450,734,97,656,127,139,75,174,386,127,223,628,243,688,185,516,171,106,462,636,527,532,368,508,432,642,381,498,187,390,540,178,518,647,282,366,474,682,381,192,571,344,705,120,734,452,362,359,387,138,744,517,564,419,449,20,72,101,185,614,584,360,286,540,561,437,662,600,150,485,428,377,482,216,173,254,148,574,109,411,618,556,653,332,329,721,321,755,740,659,488,383,343,472,662,329,2,403,45,697,281,402,721,412,140,32,143,75,186,453,721,216,59,186,581,727,152,110,608,302,527,688,287,579,730,116,223,230,51,459,732,384,66,350,689,533,253,739,377,527,446,320,184,318,44,642,641,120,447,414,712,502,621,369,327,625,90,468,420,463,274,716,249,417,455,517,550,539,90,612,45,514,340,51,575,25,66,259,38,178,475,607,652,53,484,265,223,298,160,424,605,656,232,23,412,558,561,419,262,280,397,684,179,397,73,145,610,247,497,29,354,192,326,565,281,185,357,400,403,229,330,128,151,582,142,685,335,207,724,98,614,513,376,446,32,624,473,42,139,468,213,174,57,110,541,317,345,563,58,308,555,497,64,691,458,576,477,413,712,431,57,70,81,278,222,455,613,134,530,686,110,388,491,509,385,314,129,167,573,556,422,351,506,711,320,587,447,172,314,115,396,674,93,663,522,289,649,80,492,277,184,585,487,229,445,78,484,753,747,736,143,287,387,176,529,217,467,395,267,641,331,612,365,44,575,693,591,537,498,484,599,546,63,512,208,202,620,534,153,10,483,650,656,561,24,681,14,287,624,685,44,581,593,547,517,450,17,91,306,487,293,738,504,300,685,435,295,62,344,562,671,548,658,636,22,673,333,602}

    {719,242,199,75,320,196,403,702,423,296,207,724,475,162,634,535,312,63,68,493,423,370,26,699,347,137,348,273,401,30,50,487,193,641,229,299,18,576,634,40,85,251,245,578,190,66,551,285,489,656,83,229,84,368,407,679,260,667,744,292,270,188,298,38,476,30,454,235,581,675,166,279,549,692,239,529,702,467,168,34,601,178,399,398,707,553,314,665,479,139,507,229,313,110,177,84,46,58,322,293,735,88,122,671,139,127,320,112,712,470,480,730,87,232,257,738,570,296,547,177,77,0,628,648,409,157,125,84,105,111,638,285,293,397,615,352,526,61,132,28,349,635,687,691,677,686,484,350,572,346,599,241,101,685,458,567,175,435,402,157,142,439,154,372,420,387,602,309,266,313,289,621,157,3,715,710,675,366,740,350,446,126,217,223,387,79,596,493,313,475,718,661,689,641,377,646,597,389,356,316,222,352,475,367,737,393,603,634,508,627,54,227,369,443,437,430,96,379,179,238,541,86,301,76,107,364,11,693,248,696,322,717,231,360,285,629,422,299,658,654,363,677,343,423,172,170,569,549,474,730,285,104,515,173,587,98,455,332,130,643,172,374,726,595,537,530,567,478,668,633,605,135,734,721,367,683,175,101,553,367,237,264,394,102,364,423,204,85,175,324,68,274,222,60,54,358,511,180,505,82,511,132,747,123,103,97,523,503,357,225,212,283,247,623,113,489,561,664,686,717,319,443,269,250,450,100,183,673,715,669,124,673,570,226,645,18,328,120,102,755,214,220,244,126,407,714,484,374,587,42,581,205,647,218,159,671,726,30,472,7,475,386,84,754,221,393,206,300,733,176,659,74,722,343,308,201,374,341,437,529,335,592,197,631,351,472,727,15,606,692,487,89,716,543,261,394,319,163,692,164,465,641,294,293,221,588,731,432,274,579,727,660,422,263,37,520,296,76,138,162,39,67,174,738,530,685,128,416,65,576,524,415,738,320,434,374,99,613,97,510,141,741,276,622,612,9,6,203,544,60,745,639,412,418,449,195,599,509,342,440,538,266,577,392,508,271,12,387,118,285,746,344,195,333,309,66,717,325,616,219,452,681,37,717,583,375,38,114,210,749,256,611,274,334,275,198,695,350,494,361,646,731,734,496,479,210,284,44,288,303,302,615,242,641,595,131,315,41,307,336,564,495,30,738,699,655,616,135,367,217,586,8,285,43,663,699,631,571,449,536,580,156,537,377,625,519,105,507,625,712,207,357,367,523,55,215,144,721,292,394,155,274,453,462,363,345,9,590,323,484,610,27,157,559,716,317,625,293,256,132,609,243,351,157,706,430,34,619,56,619,513,747,678,525,179,378,4,310,218,197,527,348,200,300,658,132,472,642,132,503,510,232,11,178,421,204,542,570,612,383,632,338,617,47,179,5,243,694,551,14,404,320,108,92,561,54,491,212,224,189,465,713,497,675,185,631,557,48,197,699,276,554,658,197,156,571,284,115,728,329,286,152,521,393,417,282,16,361,675,281,147,310,643,406,581,749,510,423,641,176,738,600,105,420,17,436,274,6,400,599,528,481,76,627,511,636,469,517,464,612,721,748,460,578,644,606,750,53,255,364,342,329,357,229,276,107,452,54,304,648,252,205,319,191,385,697,435,234,433,0,555,426,137,154,148,591,30,403,619,219,250,71,149,430,320,546,184,510,563,255,499,279,343,446,391}

    503

    669

    Returns: 596639247

  41. {1775,1618,1973,13,755,781,348,33,821,112,1407,1925,1766,1397,1781,1073,638,551,548,1751,1025,1737,629,2029,156,1640,1896,393,998,1339,919,1346,305,355,634,817,1097,561,471,1480,487,28,282,870,730,464,793,1575,1037,199,1064,710,1394,264,1254,1718,1130,1596,371,2034,1606,422,1443,809,1993,942,557,1267,1280,661,317,520,664,1298,1472,1068,678,1887,1459,1742,183,905,702,1935,1148,1719,937,1496,943,946,1153,896,663,839,1359,365,390,1029,523,159,843,235,1743,1589,1060,396,1531,1297,693,17,326,1828,2006,479,1423,1681,394,1052,1430,1036,49,679,1077,1054,895,1270,40,654,1787,1486,1745,1936,496,1495,323,712,1607,30,743,1912,1084,2019,188,1100,1132,1786,1588,1841,257,981,1280,1768,1202,1250,1017,1671,111,1763,395,1896,73,1920,1746,1341,120,1226,1839,1116,683,1153,231,1625,1863,1427,1674,833,244,570,873,1685,1897,31,1816,1725,831,1314,976,252,32,998,794,1008,2035,1146,1581,863,2015,491,765,46,1535,1477,398,1602,1695,1038,285,128,470,271,1336,742,1068,968,1481,351,1118,191,38,1543,1900,1708,1667,1631,364,1277,639,716,956,1652,234,1358,1270,357,243,1134,818,141,355,1057,51,869,1037,269,1362,633,1659,1530,602,1644,1379,1551,1989,1010,1075,83,812,332,1362,1658,32,806,734,450,943,776,764,1452,568,1805,1897,1054,1018,1383,1170,10,1683,900,1429,1304,203,296,18,1397,545,141,1029,328,1892,1286,1036,1681,1723,1019,66,680,982,588,265,427,1690,948,159,1721,1019,1689,796,778,485,1233,1892,1941,395,1339,1164,1834,209,1460,701,912,1306,772,1083,290,1607,1044,74,412,1671,579,1359,1657,790,722,124,1631,943,1242,868,818,1713,565,2034,1667,803,10,864,114,1142,1326,843,1505,713,1875,1799,1385,176,967,1777,1036,277,911,993,1344,308,1518,781,524,2002,803,1637,808,223,980,235,859,870,1439,668,692,1052,1616,1036,803,1819,191,749,609,1498,68,1901,1663,1942,222,1534,728,1097,1610,344,1942,1891,1702,510,1036,1511,705,1161,2021,1270,442,1312,984,362,1000,24,672,168,1544,35,986,1748,471,1,529,719,934,1563,1956,1500,2030,919,373,306,1983,1215,360,1840,439,459,446,32,1703,1224,339,692,696,1074,1998,1053,623,1490,182,1206,1535,762,173,1438,1316,25,989,1020,239,402,851,83,773,1861,1123,469,1052,1148,1643,1482,912,708,163,214,1137,715,396,1878,795,1154,976,468,1309,1030,75,1763,1993,1529,1493,474,1256,979,840,623,899,1786,183,1895,1724,1068,1084,763,247,812,1980,269,1199,1088,1220,1798,583,619,788,578,1613,449,1212,1218,140,444,85,1471,1831,877,91,147,81,1712,1239,1369,689,999,718,1634,655,580,51,552,274,1579,158,992,337,319,479,1184,513,1375,1580,1242,723,849,1598,277,439,556,654,641,1448,43,1759,677,1824,1649,878,1564,674,504,982,1287,1443,1294,801,160,858,345,137,1287,963,1488,1661,1761,865,595,1571,903,847,215,583,34,18,1910,1406,1527,982,2008,701,1516,225,1708,1407,322,1762,1030,1142,186,1280,310,709,920,311,519,1934,265,1677,1517,540,1830,1968,1074,1050,635,581,932,524,353,1588,601,647,1126,1729,659,1165,293,1376,957,809,943,1210,993,1884,201,1537,183,1622,1512,2028,1363,649,1803,1257,2030,1812,379,1533,1780,318,641,1163,435,77,633,1648,1591,435,1690,684,1017,1263,384,94,1148,1428,1587,1594,556,1080,1541,7,758,1740,113,423,536,311,885,1853,1857,1021,1564,1512,817,1479,1691,1043,1795,717,535,134,755,1738,309,134,999,607,371,1339,1938,32,1052,2020,1787,1920,1232,1918,1281,1307,1611,1119,982,542,1625,1552,53,787,1001,1074,817,431,620,1736,1497,880,502,627,1502,1084,1246,55,117,1514,1328,363,169,1013,119,1933,393,1152,1272,524,1528,298,925,482,1074,1172,1433,1201,603,1041,1811,1953,1514,1160,1596,1412,804,1405,1721,382,1822,364,1772,874,912,1098,115,1178,1313,618,252,497,962,29,1311,185,204,156,1282,1936,2,575,419,1789,1047,1865,1790,289,270,588,363,1953,1512,1042,638,1496,1201,1161,120,367,247,460,1679,1619,628,1839,329,1262,339,549,1908,1846,815,1336,1902,546,1671,1755,1564,621,1480,633,325,702,1000,1049,1320,642,1849,147,654,1384,1281,1531,10,661,1451,1342,181,1845,1853,1107,1930,1403,1560,1436,183,1030,1427,346,1920,1017,1405,998,936,1354,42,87,1431,476,692,1099,862,1741,671,1912,965,633,1069,422,1268,1674,1802,1688,1343,1492,1608,1303,1003,1458,1271,1736,943,1517,862,85,1365,633,596,1144,821,1115,1163,1736,706,1364,1280,1761,359,1853,1743,1102,1625,513,1667,1692,1903,200,314,50,1004,1765,809,363,1446,211,691,683,297,351,329,450,186,2001,872,275,1790,1944,548,12,861,1796,187,1283,767,379,1470,1291,1335,312,1572,1101,39,1103,1844,2017,1213,1882,1201,158,1907,119,985,1111,1236,1489,1180,1973,1332,964,1259,134,1568,17,907,1140,1876,1325,1278,165,1836,879,1869,601,1596,2037,120,1556,81,772,1060,33,1872,2014,977,207,1360,359,1,568,931,897,1115,1134,1318,845,1330,1902,1275,1479,1812,1902,1441,60,1371,1723,796,671,420,1161,1509,704,1961,1462,986,956,157,1773,1782,358,95,1920,1137,1871,66,973,198,51,601,606,1067,714,420,1641,1065,134,1190,1684,511,1753,1064,1127,1036,433,737,400,1119,65,469,1901,408,149,975,128,597,1950,1447,1417,1118,1617,6,913,914,1301,1955,931,1780,1654,300,1842,1735,716,241,700,789,368,1323,1626,1601,772,219,729,1543,904,1088,1911,1271,290,986,1347,1538,178,1249,1750,1118,571,1296,1068,1665,1424,740,959,1065,1484,1541,550,695,562,1035,963,188,253,1283,1902,1290,1149,20,1676,108,494,1222,214,1213,1713,856,780,732,830,1369,433,1632,1865,135,316,1103,1459,1710,425,1858,1018,655,419,857,2011,1850,243,1530,141,966,1923,1345,336,1045,1524,233,474,896,315,1746,522,894,1202,929,1518,539,1104,1517,1022,1903,1919,431,181,799,859,811,942,1411,1589,956,1237,208,932,1958,293,721,1896,1769,1393,1687,530,1084,633,196,2016,2020,1508,1991,1339,1956,55,1008,1828,625,1094,1667,81,141,1249,890,1510,918,1579,785,697,1825,307,921,1046,838,922,550,47,1048,1125,167,300,2023,681,658,1581,680,394,807,259,1092,1852,1991,1787,1494,760,1553,503,562,1785,176,327,1979,1870,1655,694,2028,575,1707,1015,1157,1594,1119,901,815,1658,438,1335,860,1039,981,915,1674,628,1932,404,301,284,1757,875,1414,648,151,5,186,1844,343,928,83,767,1917,1250,1658,1806,883,8,438,1624,1408,609,295,1519,1392,1556,1964,217,1769,1741,1503,908,218,1681,1898,646,991,258,786,1000,1044,300,1345,1331,292,369,1816,744,1374,1305,1874,1422,1740,1715,128,1944,955,1386,1090,363,394,1623,705,1497,2007,1118,1368,1513,1387,1083,1416,1107,896,1960,751,1503,663,951,726,1580,537,983,1564,846,751,930,570,1159,1536,756,1752,1579,1822,1723,595,1893,1106,1499,63,1892,1317,74,1694,1906,1760,1587,1667,1954,1549,493,457,1288,1465,384,1093,1285,76,1603,1693,1830,1627,479,836,68,1983,686,276,1669,451,641,1418,305,1011,1481,1065,394,1593,889,135,440,1949,1722,1088,1164,577,1941,1475,1120,1505,204,1213,1279,1909,1306,207,977,1753,1655,605,1956,1299,1041,527,1443,463,53,688,43,256,786,966,1504,479,1779,251,920,804,861,1217,1068,856,871,175,931,130,178,1652,1261,1636,374,783,1518,1694,1418,430,1442,210,1974,1177,1238,736,1148,1437,343,751,1932,565,527,2018,1418,413,1804,943,1690,1578,1606,147,1439,565,1096,222,1741,644,1734,1164,1538,1095,1876,186,1487,1110,410,247,1848,1849,85,1396,761,79,1497,32,1783,1227,403,1826,1060,479,1924,438,1783,404,1927,716,1105,1980,269,1585,1497,299,1594,1230,861,1932,1835,641,850,1719,287,1443,1109,267,843,1585,1239,1966,1463,2000,673,615,960,773,1089,396,336,1033,626,583,1963,225,1308,283,1291,1584,1248,600,438,521,1920,833,1373,141,1283,944,1112,1070,1829,58,1638,589,1940,538,1829,233,239,1414,118,1362,1986,1950,1415,354,1132,1662,1426,632,52,556,378,1049,1957,685,1001,672,1841,1470,1595,1212,1087,1902,51,842,1541,2037,1283,1841,1300,823,1836,1505,623,1880,1051,896,1897,193,633,1077,64,719,141,266,364,2032,958,642,211,13,883,334,1401,172,173,666,1462,449,1192,7,1374,480,1127,1999,500,508,272,585,860,583,1954,1866,1357,1521,385,1648,1907,716,989,1579,1593,1207,663,1592,271,851,1237,816,667,1325,52,458,1261,1483,1174,1482,855,1088,918,1269,1538,1148,302,1871,41,1418,426,917,2032,1984,633,795,1457,835,1346,1570,1456,1148,1080,1874,924,1042,455,461,1518,1306,1700,1107,381,534,198,204,936,1056,867,1654,889,172,273,1969,1274,881,883,974,954,1861,1580,1894,1194,906,1972,1103,1849,177,1564,987,1218,1210,971,870,388,1599,4,317,1501,64,633,332,363,370,1955,1966,2015,5,1891,1,1517,978,1946,1389,67,1538,895,1178,103,1333,1100,1667,571,1267,1069,1867,157,720,335,1731,740,1375,1470,1402,826,154,200,1353,1132,1138,1714,687,831,1236,1210,1019,133,1789,379,741,620,1574,824,1034,1557,1727,2015,1365,1956,935,522,535,854,1345,1582,1454,1858,1834,1637,1976,352,167,794,1021,722,1524,646,1692,295,857,1843,1717,1629,1453,661,1445,1459,936,1205,1819,1463,1136,657,1872,661,162,1833,829,697,1850,994,1515,1280,301,383,561,1632,1504,661,590,66,1991,1286,641,405,1339,1899,304,1629,135,1543,1650,748,32,1468,283,1685,1683,1984,1996,2034,1741,1696,1413,507,1604,390,1340,656,394,721,265,243,1548,640,779,1634,892,671,268,1292,102,814,777,1928,1642,113,1880,254,2020,1564,407,823,1185,195,1813,300,431,250,771,2006,1066,1927,1344,1448,834,1339,1173,16,1050,370,2023,1150,1358,492,105,1555,733,1545,1278,250,797,90,839,1536,1524,276,1984,1873,137,1462,49,638,923,1626,1141,1376,1904,1834,143,775,1131,45,1624,11,1056,746,717,1795,1907,188,1076,1867,1223,185,1577,579,214,1450,707,521,709,759,1371,1649,238,131,832,1562,593,902,23,1685,886,1235,705,141,338,386,293,1809,261,161,982,1694,617,1820,1652,844,562,1081,709,831,1245,164,468,1354,171}

    {479,885,903,1420,1469,1497,1841,768,988,1134,320,795,130,71,1556,1869,1583,1077,1943,128,1715,1219,806,1673,204,246,1148,1733,274,1564,1645,1233,630,1027,1086,1931,1876,539,1243,945,1271,1750,1007,100,118,339,1724,472,1020,1381,2004,622,349,740,246,1218,541,166,1117,703,1837,614,1196,438,1394,1675,524,542,1165,591,841,754,1227,1336,271,1956,1161,1505,943,1039,1631,1006,1139,1538,752,1667,301,57,1003,341,1756,159,1134,221,1754,1971,1651,1169,517,1586,1517,1907,301,1462,488,1135,626,351,368,1960,1567,1550,1356,1345,1307,555,83,979,1589,728,1749,1869,1440,2026,953,570,1580,1352,1903,1832,831,857,218,702,951,624,1176,1436,1565,1404,507,278,456,1915,72,129,870,1906,982,823,1874,1854,477,1265,1593,2011,705,2006,321,668,243,1270,434,313,109,1734,1860,716,1370,1533,981,1231,1048,587,1585,1031,982,1,1269,41,1518,1944,924,1473,116,1251,1932,1710,1326,189,566,1479,135,267,1183,1726,272,1020,1921,1244,648,1619,2009,70,333,1443,300,1003,967,96,1203,1425,772,1673,794,1548,1293,1827,1612,429,1247,1709,20,806,916,1657,660,361,912,1202,534,236,967,1872,536,1028,1784,1674,19,1227,417,20,1485,1829,1883,956,13,90,275,998,1264,781,429,1625,84,1126,694,1179,786,1676,219,805,379,1121,97,1966,1096,466,1215,845,613,804,239,1326,1993,464,1771,781,1741,638,766,1382,1541,1107,374,1470,843,1869,1443,1399,953,128,1401,1266,665,724,81,852,645,563,1449,978,401,731,1380,1005,1898,909,253,36,1743,1252,1694,1588,226,1443,931,1071,1466,560,437,821,1937,697,1193,884,1085,1129,263,1576,1009,1174,1956,1394,1780,276,676,640,7,670,1016,1437,120,1237,715,213,504,1497,1679,943,44,1030,1240,180,458,1372,1939,94,1715,130,835,1608,815,306,1109,190,1177,1188,743,489,1319,1679,370,727,1248,392,753,1992,14,584,1434,1996,643,821,1020,351,1729,54,1954,2013,1505,472,696,866,148,2019,1113,1968,856,1921,1310,454,762,1863,896,136,554,619,1414,1045,1797,583,1018,1379,764,2029,1729,132,1875,1240,1872,981,608,442,637,77,1434,517,1023,1546,619,2003,1221,1238,13,820,726,1527,1352,1438,1215,788,562,2003,484,887,2002,1809,750,1187,441,570,1228,1215,13,1491,207,277,1611,1156,885,631,1602,1334,1768,1237,443,1880,85,1851,957,1225,1812,924,1074,967,458,494,26,1917,1126,943,1426,1889,1419,147,139,128,392,799,1227,1599,829,1560,119,1253,1027,1505,1656,615,519,1670,958,1674,228,86,822,188,1535,453,2004,774,943,1610,1672,561,601,1818,1259,1625,187,1445,315,1750,1337,561,1861,1654,1865,650,1306,97,568,338,1573,2005,1890,565,964,479,1901,227,573,745,1167,1335,1379,1978,1787,536,2005,281,1197,1284,1615,1459,565,939,941,1593,1824,800,1290,130,1597,80,447,1450,995,999,2028,1631,1695,772,386,1602,712,138,1173,1322,192,1633,373,1283,541,1754,651,557,575,532,280,1631,1021,1476,1387,1358,1023,1523,548,64,1013,1214,1847,202,1587,442,216,1554,574,2037,313,497,1699,473,848,624,880,375,1995,532,1248,240,722,1013,1953,562,48,958,619,98,540,829,1131,1881,684,1199,1986,893,397,1786,173,467,449,1904,715,1523,1772,33,198,855,438,1841,1131,921,296,727,1145,30,358,1304,248,164,1152,1000,1085,981,657,1658,78,1211,1963,442,654,1951,222,1942,123,766,614,726,1593,1936,2015,520,1885,1983,828,1155,1234,817,1071,744,1195,924,709,260,1320,1208,1541,1516,1282,1639,740,1278,36,1385,394,1454,1858,170,150,898,132,414,1908,654,1585,3,1558,1346,1892,1541,31,1984,1103,1414,229,1892,1122,1443,1809,1936,1059,1443,1371,2025,1503,1363,1113,63,818,1908,1306,770,1869,241,1411,1997,1182,1713,725,586,2019,1078,1808,1688,111,697,1368,1254,268,911,1023,830,99,2018,55,1777,138,1017,999,518,1795,1178,1864,1435,941,1867,194,1587,1040,286,1850,1229,347,133,1918,147,1797,1,1600,448,1767,1640,623,1065,1151,1075,1637,1664,468,1758,814,1792,970,289,1032,617,1747,270,723,1791,1302,1642,326,443,591,1988,56,1402,926,411,1115,744,772,1419,972,497,1104,1864,728,804,1410,611,921,196,1212,416,1289,233,472,1815,1022,1585,856,2020,1986,1276,1124,1886,1805,716,839,2031,1014,940,1981,1306,1302,255,1128,267,1327,1990,1523,567,1141,1987,1855,218,1033,1326,1073,1414,807,1362,1103,609,85,962,131,1250,1566,1868,95,411,32,1589,642,629,1513,241,1568,1199,711,1914,110,997,2022,13,1788,809,1147,1800,1730,1701,379,122,2004,1969,1023,1025,253,419,1821,1189,587,1367,963,604,596,526,342,317,412,1674,1674,1946,1657,290,826,2023,1115,1541,217,1208,1403,366,807,1286,697,950,1610,563,1509,1258,572,83,1134,1446,1011,1109,813,1163,1953,1965,1280,992,1902,396,1082,592,1329,1200,998,630,2034,627,1446,319,1828,391,20,652,229,1810,1090,1776,1568,588,1782,279,1559,1854,575,1608,1866,1165,1207,1258,1705,929,330,479,1079,1181,540,827,739,495,616,474,1536,21,106,696,155,172,562,1180,964,1975,932,542,1339,1201,1302,588,1622,1541,684,702,1758,184,716,345,697,796,1853,1253,1794,1028,1684,599,1888,1080,626,220,1744,1107,1171,1390,1326,1549,2020,1430,1360,1524,535,728,700,837,953,1522,224,137,1938,1853,92,269,445,1732,1062,710,1769,416,379,498,4,409,1729,1944,294,928,785,55,880,726,1526,1321,1219,1903,1677,880,1700,1382,594,849,641,612,1603,1471,392,1818,1628,1908,464,923,258,1701,300,910,605,1506,821,65,999,516,1071,1560,1126,1700,483,1360,1225,1730,1947,1046,329,1166,1208,721,1518,1191,1808,303,1916,521,61,1707,976,421,1391,1348,1021,733,1630,2018,92,1579,359,815,145,533,583,1807,1770,528,921,413,229,1059,366,565,1540,1255,387,1945,531,1443,1158,83,1058,370,1972,1859,1109,1351,582,1701,1743,428,1953,564,382,1811,565,131,486,1180,324,1812,146,672,1793,705,1175,313,361,277,388,747,2033,1103,230,1038,88,1479,1774,262,335,1131,1804,888,1594,966,1378,490,1216,1920,774,1609,961,1726,1012,543,661,1684,1621,816,1845,340,1863,1716,810,1687,1107,1100,1508,783,115,1705,7,1853,1224,1623,1539,619,1958,559,230,1135,1707,170,158,1850,1832,100,1277,1508,1121,1290,804,1926,68,1112,1463,499,1126,1683,282,1322,990,1824,1414,1704,549,1736,692,1800,1907,1980,792,2029,376,81,1162,609,680,384,228,1820,2024,275,1448,478,1986,14,271,888,571,1821,174,9,1518,1302,742,1355,880,1724,1479,575,490,1657,661,418,1955,1711,682,996,2021,95,495,1653,1206,1477,1853,1414,127,204,1053,1635,636,1646,784,1250,1259,363,1072,1183,1795,478,1361,1731,540,1219,1794,1237,162,735,576,62,1058,233,152,1671,1739,1997,59,1780,70,760,666,179,130,1210,1836,1376,515,1520,104,1894,153,1699,478,2012,1834,1404,225,993,1569,1353,131,620,393,582,280,418,1339,1286,1905,525,1061,1949,1063,1445,1075,1507,896,1982,781,64,987,1421,1320,272,514,58,894,1311,1932,1507,1202,277,96,1315,1576,1055,1798,1588,704,1660,1745,1090,1789,979,1091,947,610,341,1666,653,624,882,1474,290,675,797,1913,346,883,662,860,2024,1155,406,719,57,1527,268,1942,187,1135,809,1647,1338,661,125,350,65,1786,1967,317,1464,1204,1241,89,1759,1984,1976,1687,809,818,1229,1470,1140,1764,2020,334,23,1702,126,1716,197,211,1119,999,505,291,1267,1853,313,2037,246,1366,107,1758,1202,636,1455,993,1877,1929,398,1463,1695,205,675,1320,629,862,588,1977,225,1674,1218,1350,514,1564,611,1101,12,1316,1074,1952,1824,366,1678,517,1275,38,1461,1303,633,685,1597,1421,55,1686,385,1306,1576,1459,590,558,462,148,1295,1533,141,525,1895,441,927,1625,791,2019,1962,1532,590,903,987,1409,1812,2023,1114,1590,856,1948,1189,46,931,1272,1148,232,750,1922,1235,1518,504,895,632,1880,212,1708,1692,619,1533,540,452,363,853,356,7,1625,924,142,1680,1622,640,1363,1547,1836,1983,1637,1360,1444,368,392,1324,1509,1725,993,377,688,991,921,544,1317,704,1667,839,1359,762,1823,196,407,1579,1403,699,1985,1582,475,1498,207,592,932,1251,1478,996,247,101,1879,389,1541,1912,782,293,1108,1400,1045,981,1801,821,214,1077,689,565,1970,1856,1900,933,1506,1814,976,314,952,358,93,1030,479,1925,121,1778,1998,547,1213,379,1531,206,1535,1119,662,849,1694,791,723,608,1605,345,1134,317,2015,690,144,1678,666,686,1023,392,1862,95,1552,1273,388,1974,815,1168,779,969,114,1976,74,527,1074,1420,1173,1752,256,354,1706,1683,1920,199,883,982,1838,1446,1628,818,101,2034,465,1706,428,557,183,807,1729,1432,1824,2034,577,1697,1198,1979,1997,208,1395,1608,553,1444,1699,1296,254,1607,508,780,1541,1966,69,1596,1684,1698,1509,949,386,905,1471,104,798,1283,1620,528,290,1068,1030,1453,270,698,1966,499,624,2014,1629,1227,1467,1902,1542,891,527,415,1650,1073,27,17,778,878,497,1260,424,82,464,1196,1736,1186,812,1920,237,792,130,320,1497,1608,621,540,1728,162,2010,1066,540,1024,669,580,941,1596,15,921,1821,855,944,964,464,603,400,1026,15,1875,330,156,569,1740,1209,115,370,912,1930,1536,15,782,1822,159,1593,483,331,1831,709,1769,2027,1941,315,1353,1614,903,1452,481,1414,1250,721,412,1091,978,1398,249,1682,451,432,1084,1377,1956,1067,1143,1061,47,1994,802,825,819,540,1956,936,1133,1391,1838,962,2023,1900,1984,1021,1614,1345,670,1365,1918,1103,479,789,1674,1770,1817,335,1705,1259,300,1568,640,190,2028,1071,501,22,360,660,1003,938,1021,673,1959,37,1194,686,1720,1886,911,461,59,1561,458,1668,1907,895,1971,210,327,1134,520,651,1038,281,242,715,1787,1931,1525,1728,1747,380,1449,1349,512,1067,1837,275,1326,1614,691,1602,758,176,1247,1140,1831,772,778,692,288,1201,1902,1997,506,1126,876,368,1002,999,598,147,593,1983,363,628,780,1689,1255,565,563,0,372,1725,458,365,738,608,245,1685,1448,1564,1923,464,2036,652,1083,1791,1977,924,436,536,1359,538,1740,509,2014,572,806,1734,541,394,1633,561,1086,581,33,1579,226,399,757,428,806,1523,153,131,769,223,2010,1388,1270,750}

    740

    1461

    Returns: 823776956

  42. {11,39,35,86,101,9,28,122,84,0,45,81,134,68,3,21,118,120,114,0,124,72,99,92,114,24,90,121,104,134,110,27,26,91,24,78,117,129,66,121,103,49,58,39,48,129,50,104,1,133,64,121,108,41,37,87,33,97,87,82,76,73,6,69,76,33,10,130,134,89,45,23,11,43,127,19,72,9,86,124,57,16,130,132,72,99,10,4,46,45,10,102,54,123,40,2,112,74,94,27,13,115,47,100,52,11,79,70,98,128,73,86,121,134,38,114,71,53,125,64,76,97,113,63,79,25,105,23,109,99,129,121,121,7}

    {1,80,99,106,45,64,29,98,62,81,33,122,19,74,113,32,2,10,49,36,19,22,63,116,8,121,43,83,124,18,29,64,66,114,64,131,51,29,86,100,122,30,85,28,26,117,85,34,69,60,12,15,122,124,129,107,58,64,84,52,95,42,88,5,114,114,77,111,57,78,87,96,119,64,134,64,129,28,9,23,116,100,100,105,32,88,26,24,38,75,55,48,39,64,9,7,85,59,73,78,27,33,74,133,131,129,126,39,31,43,114,122,14,44,114,39,97,21,27,67,63,20,38,17,134,112,64,56,106,93,65,47,2,61}

    71

    132

    Returns: 7883993

  43. {940,380,1052,218,272,800,568,313,992,68,786,5,781,653,133,836,857,814,242,363,1288,263,931,486,463,759,665,969,224,345,573,638,674,961,815,1267,802,1078,13,815,244,514,229,681,696,1207,105,737,1129,235,150,966,963,1108,638,384,1040,487,1300,1281,1144,562,1076,1126,828,964,508,562,137,1191,357,558,15,311,631,638,493,464,917,893,306,546,1311,1259,1042,1052,1038,988,950,653,1185,506,49,1175,1035,139,1059,877,1047,347,904,131,649,543,270,895,761,0,609,799,1024,284,51,613,41,25,1184,515,1055,386,11,381,1181,1190,1095,554,486,30,60,1229,343,311,315,1193,220,1145,882,485,555,302,1295,731,49,805,910,180,983,580,972,1036,178,151,566,602,516,154,550,425,1313,1233,1102,1123,948,704,1016,147,947,712,690,1167,288,570,812,556,6,55,63,483,1116,6,1119,226,490,355,38,587,1309,805,671,543,119,1126,355,767,219,247,948,371,45,559,1081,233,369,27,362,557,475,1207,581,870,1028,693,335,154,165,642,1161,1106,67,877,1207,649,688,579,146,1090,1163,239,1113,7,743,663,298,411,933,1139,35,1287,141,749,955,646,273,1117,47,586,1224,630,742,1024,950,717,800,322,332,92,744,121,354,1100,924,1078,331,502,161,822,591,1017,658,689,154,1263,26,832,1112,1125,635,441,526,1278,1266,890,643,79,365,1122,539,446,1227,657,387,130,232,407,732,697,389,319,1145,861,141,344,107,678,393,1158,474,71,2,1086,313,874,1097,112,509,41,121,297,92,832,17,1138,757,906,194,1077,661,236,815,386,541,771,1052,373,659,495,855,1132,782,3,944,389,159,1241,32,544,1018,55,1093,404,351,676,507,618,1226,684,347,685,743,1174,155,1081,492,878,770,835,831,893,239,1150,1036,424,769,1127,819,263,253,363,807,480,1198,495,3,1022,94,62,1186,1239,397,394,893,1135,1002,1079,572,69,620,893,499,77,877,1159,104,718,845,347,808,676,1223,1,720,671,141,903,822,615,875,1066,498,980,1064,308,1146,419,374,1134,128,772,167,847,226,121,53,1300,150,317,1257,359,841,1084,740,382,604,1317,775,435,894,454,668,869,93,1235,1311,1057,735,434,1299,689,1058,1304,487,90,730,595,577,1279,49,495,778,2,936,348,552,814,1036,920,1005,333,1254,832,1088,1100,36,189,480,337,772,555,840,1243,158,497,375,603,180,355,1034,1019,1111,14,930,831,602,99,470,225,179,887,623,1084,1134,1167,1036,1141,487,948,457,1277,412,121,329,1142,977,1172,921,956,650,244,108,347,148,1215,903,326,586,154,1015,1259,974,468,1110,110,978,404,300,1272,243,370,1030,91,8,1135,66,404,283,904,1023,694,422,910,190,1070,586,1083,1313,826,541,1257,963,256,1057,907,1196,937,452,1300,83,1282,1094,848,885,491,1096,877,356,893,1124,1030,733,777,4,463,222,352,446,827,1282,698,727,736,731,691,463,57,801,265,784,159,1314,323,652,1267,258,1057,1189,1217,317,1057,777,1269,271,667,106,668,264,1245,168,619,1018,882,246,58,691,505,799,441,436,48,1244,333,384,496,1161,891,645,940,129,711,525,634,1259,1180,103,1040,247,408,1207,1072,847,454,1068,48,209,111,1233,82,455,260,605,421,714,840,557,863,1284,561,938,523,102,220,56,540,167,798,1004,401,885,509,1269,565,764,858,840,516,731,530,38,1265,231,1162,88,953,296,239,1123,293,753,236,1194,44,969,27,494,101,1155,1217,655,534,1188,143,853,775,470,555,186,1176,905,1216,571,971,702,659,166,195,185,592,1310,420,460,211,1029,199,1039,124,376,811,506,1296,891,140,644,1260,601,313,7,403,1199,1001,962,261,1179,357,241,939,918,88,470,589,233,1238,572,242,501,527,64,361,532,89,865,1175,906,692,416,166,352,1223,1079,815,346,64,1316,581,417,406,1055,310,876,1234,746,642,625,940,582,927,776,941,55,1170,255,346,511,653,1040,351,779,1098,1266,737,832,432,956,543,1250,150,668,448,1222,25,84,264,834,1315,460,560,204,932,252,794,1111,328,1112,562,1067,671,946,903,411,397,1254,411,220,901,286,214,461,884,806,1067,1273,128,1067,182,945,611,309,618,391,0,823,1004,424,825,310,666,813,1221,489,61,981,1220,994,842,456,484,359,81,138,1033,1057,238,638,754,1116,297,213,1279,237,64,350,308,679,254,404,250,467,217,212,729,1210,926,197,1098,996,908,57,355,738,0,31,1146,838,90,510,1188,17,883,63,40,26,367,368,1092,294,429,70,665,1160,433,799,951,948,397,193,850,678,888,426,815,496,1205,52,1008,1196,129,474,454,323,162,828,602,696,1287,604,42,813,680,1171,999,81,53,1138,1247,308,790,295,1307,491,935,401,325,87,461,1007,487,1254,186,917,943,1247,1137,303,1053,924,750,455,983,452,1034,645,1154,1005,1196,1088,866,659,578,707,976,1063,1026,675,248,409,682,413,161,7,1172,289,1152,1209,1012,177,110,1268,937,88,588,778,784,940,281,328,268,1190,449,791,530,561,999,443,1220,228,237,827,1306,690,750,4,98,639,787,1228,22,809,508,192,23,799,442,485,883,1,701,1297,866,347,1046,143,621,257,350,925,797,282,364,455,28,802,418,1267,374,401,1255,234,1268,1059,1302,1003,752,558,76,525,318,491,599,72,430,422,304,487,805,532,971,447,388,394,410,849,1006,583,135,445,948,453,676,796,736,852,568,263,597,573,948,1135,159,417,201,978,1218,1118,747,331,722,726,993,0,222,657,299,669,1050,736,309,1088,1152,915,897,1255,196,28,1140,1194,744,149,873,512,509,1103,902,1007,278,1166,553,777,163,461,856,779,221,735,548,360,307,541,623,967,1136,407,377,1101,1036,1105,1268,405,796,259,480,1178,320,120,651,423,535,430,1014,762,983,130,736,324,970,1082,1260,474,710,688,111,134,818,1248,936,844,374,271,805,1092,200,989,440,654,574,587,784,1217,581,211,962,169,971,1254,412,331,461,72,1112,798,1259,1213,1121,884,1240,1210,229,769,822,418,101,1083,1280,749,1110,332,755,1308,99,1065,346,154,396,348,797,307,207,1198,401,472,637,1011,1024,1103,549,515,108,643,537,689,408,974,399,1228,840,1142,27,1306,409,810,336,811,479,633,670,793,1016,893,660,274,141,1168,1107,666,1152,595,366,154,1094,1220,864,870,384,737,744,174,150,1143,1097,884,1099,594}

    {713,871,693,1268,122,1127,513,432,315,88,837,754,850,1261,287,1105,796,502,1147,1047,118,439,576,767,118,728,922,1234,408,405,676,830,995,587,936,452,1135,733,1029,466,305,602,547,467,359,395,955,1259,724,343,27,566,593,216,847,333,24,1057,1169,934,511,765,923,464,674,741,434,179,1013,18,1212,819,763,673,323,1125,957,173,985,1092,92,595,220,507,241,212,140,1152,910,222,34,535,1198,1301,0,1205,550,324,80,784,202,1089,699,18,516,31,1178,564,659,544,979,248,90,694,26,429,684,160,459,1211,153,614,304,213,355,1269,1182,1210,219,762,191,883,503,462,361,728,796,349,624,1283,805,59,542,349,361,126,816,1116,279,580,1155,463,1057,563,275,174,817,39,766,578,607,974,167,970,814,1232,677,425,1051,760,236,313,1155,209,267,805,1109,847,839,611,788,164,213,363,957,1049,329,411,742,663,64,198,466,444,819,919,411,266,1076,119,1036,335,767,328,2,136,1093,1166,283,831,513,501,427,487,64,237,1206,461,205,20,696,398,582,1125,1255,575,722,1087,654,1039,473,1197,1000,975,878,1164,977,387,928,519,1286,550,576,502,1257,1289,1236,1059,940,107,326,1085,203,879,1198,1138,1091,428,1160,24,1264,298,672,1245,981,1293,400,492,229,678,1216,461,344,1041,745,247,610,952,827,308,188,1032,450,1004,997,1058,608,823,245,223,32,474,850,703,1014,401,754,328,109,720,352,327,916,351,837,793,815,914,832,222,64,611,1256,733,191,545,192,187,1056,498,1203,460,603,318,516,109,320,1061,827,668,414,437,567,446,253,157,192,130,947,275,779,1303,1292,608,1020,1201,1063,125,1142,774,528,1152,469,1208,502,212,671,885,899,654,24,1237,420,524,401,562,568,1089,1199,432,1043,1021,160,238,1253,1161,34,1053,1273,978,404,1280,752,206,1093,814,546,1273,122,144,1119,415,56,455,95,1306,1285,382,836,98,1177,339,707,247,1198,649,336,529,1246,1133,109,89,313,867,522,1221,448,1171,115,978,283,623,795,640,73,739,10,1161,1135,343,517,1130,712,558,700,390,88,476,758,100,1242,142,83,722,1040,388,1126,77,733,297,1154,1145,689,536,645,213,351,948,1305,108,1096,385,263,945,1042,37,543,92,1151,725,1294,958,979,1057,1187,815,27,1115,1262,756,1148,353,1107,32,1031,579,1259,312,933,89,396,883,440,204,840,576,15,936,504,1273,128,824,688,171,1025,361,338,1204,653,974,1093,767,1240,307,1122,872,1080,923,1151,1214,500,1241,536,283,1062,1119,613,721,268,343,361,717,735,656,558,1091,1092,749,411,973,213,1258,301,346,194,88,845,287,1279,815,172,1145,813,68,265,641,1120,630,686,647,118,97,128,753,146,1302,315,717,400,885,1108,833,271,569,169,457,846,572,126,1027,716,1207,1281,213,794,197,1142,598,1210,1207,954,96,785,396,929,329,65,1113,491,657,902,1060,614,915,85,263,29,1309,968,722,301,309,1104,1259,1020,953,170,632,648,86,399,762,623,481,1050,1074,1257,1145,182,465,112,803,1207,1044,1286,1243,1304,1119,885,380,1225,213,769,1139,21,464,149,1063,43,892,891,51,214,900,862,327,343,1018,111,732,872,240,283,451,215,1229,394,147,205,216,780,147,247,239,951,314,57,498,847,1200,629,112,373,805,279,321,492,959,998,341,1224,1196,1198,1269,210,973,727,673,932,1100,1248,1259,315,772,313,3,827,361,982,509,1198,1042,455,706,1240,445,651,693,1217,291,1280,330,316,1217,372,439,140,724,148,523,290,742,968,672,1057,180,1105,617,437,1251,87,362,367,408,1225,639,974,1083,1249,162,1109,1112,564,1194,167,1259,942,522,56,247,889,1059,1275,1036,1098,923,127,137,1318,1203,349,988,1054,1311,92,1274,1122,1048,713,39,1199,92,948,4,3,572,664,561,1165,440,181,152,12,18,974,1219,168,334,86,789,159,244,114,18,145,1106,1230,859,233,709,5,227,53,317,576,866,394,463,16,285,1128,407,1245,946,1090,1247,1311,1076,278,387,584,805,371,1186,130,523,101,167,690,1008,1240,494,854,665,477,1224,815,841,628,912,90,98,671,176,184,1026,506,1045,1058,551,618,292,1114,984,1156,1152,649,638,1170,141,181,264,940,1194,132,958,259,591,19,40,1217,668,384,281,153,541,231,466,917,782,828,1168,783,462,1073,1057,527,767,1204,1270,558,179,751,490,646,347,1192,967,1298,324,358,636,749,457,910,1104,20,990,1284,144,227,1069,239,1178,88,129,522,726,715,585,1034,1022,239,740,687,287,1032,92,671,696,404,950,767,639,341,1109,469,405,997,74,536,1312,923,509,880,202,801,190,1204,566,578,482,712,1131,829,330,1009,1244,683,948,1075,860,322,1157,1247,523,687,622,1291,1275,784,833,606,1227,848,113,420,1134,772,164,178,531,578,965,212,265,373,1247,911,1161,276,214,1231,342,54,208,1066,1092,129,347,730,988,458,676,1116,46,1207,881,236,479,747,1008,790,647,487,696,813,1104,1202,834,843,584,8,50,509,1217,50,212,472,521,1284,874,1023,1032,1024,797,909,237,361,175,1279,487,431,1139,224,987,1198,997,392,1066,116,695,1026,625,399,1135,522,86,1224,366,1062,58,833,610,1217,1207,327,78,837,1173,546,792,231,7,439,707,33,343,249,533,509,1047,917,1037,277,735,653,1276,94,108,1283,383,748,600,781,513,776,1230,821,1163,309,671,991,754,1010,1135,590,164,713,213,892,717,690,782,259,280,1183,784,290,1188,279,977,777,1259,9,664,949,820,662,38,436,1259,290,1153,1286,1062,1285,813,297,192,765,608,1271,478,896,357,38,1240,538,414,313,541,394,617,523,591,347,1210,913,33,886,742,375,416,953,1179,7,64,596,1059,469,898,1055,612,960,1207,626,518,1071,358,1146,150,632,378,538,723,185,340,868,705,714,735,356,734,1290,1318,851,708,842,866,1149,12,105,543,1252,202,117,245,678,42,502,1315,579,161,622,768,161,558,75,986,1231,962,773,520,488,978,471,343,492,342,849,607,263,790,438,222,235,440,719,251,137,269,1003,859,173,103,653,1025,1023,67,361,402,230,743,379,1319,804,53,191,1205,63,722,741,414,1026,998,550,431,233,186,616,790,1207,963,27,737,664,194,183,156,168,1134,882,1159,1259,719,506,1316,453,659,1195,505,262,24,71,743,842,803,627,1092,1306,123,97,735,646,249,640,1249,1068}

    759

    1077

    Returns: 310345070

  44. {327,840,217,922,642,732,224,622,692,656,919,361,468,741,539,974,717,582,354,642,630,81,170,701,363,231,497,55,47,664,944,617,149,727,112,252,618,828,340,429,421,143,452,572,794,101,304,254,692,499,647,295,457,831,115,801,883,289,808,807,452,634,775,338,765,345,186,949,2,169,644,480,260,650,846,61,782,110,772,815,529,775,222,75,989,953,68,865,857,343,269,410,481,259,535,7,167,190,104,995,760,800,971,636,244,811,195,604,83,899,139,552,871,625,804,670,975,113,259,496,14,973,733,228,502,339,881,871,305,824,155,254,808,582,1014,622,887,222,984,937,339,997,807,886,302,576,206,296,518,539,481,908,744,358,15,158,702,559,809,188,54,778,457,882,353,42,947,150,943,835,536,724,573,678,739,429,879,543,164,4,610,466,599,422,900,734,80,946,738,444,873,843,243,630,562,33,65,491,170,605,848,971,404,784,436,142,634,862,473,837,1008,288,429,788,692,9,110,265,962,859,267,960,50,83,40,159,534,330,720,186,964,633,519,448,968,181,292,26,753,802,573,219,100,19,865,558,399,296,911,513,864,913,120,368,526,625,773,810,102,393,698,206,643,175,679,602,902,370,771,828,839,217,408,277,783,636,286,533,982,220,788,272,661,730,777,103,82,677,890,210,736,82,76,122,285,536,804,916,33,924,769,486,78,588,825,642,88,369,525,373,747,854,633,518,457,505,34,834,931,950,560,711,1014,159,653,401,970,498,47,45,100,675,780,0,189,645,1004,577,68,547,842,601,66,830,884,84,435,279,480,589,697,214,442,61,803,54,850,719,838,176,904,990,626,793,647,942,152,328,573,999,423,146,723,379,582,875,809,476,447,27,33,674,226,594,100,139,792,521,117,156,28,151,715,203,161,174,502,940,986,49,612,148,588,711,430,139,595,316,665,846,649,145,649,560,308,340,538,37,61,1005,703,633,451,994,271,55,257,597,114,856,773,249,431,263,118,216,254,1009,662,888,201,808,453,977,921,142,282,523,85,555,578,753,61,420,241,858,386,969,623,841,202,701,47,970,656,793,107,231,879,866,659,356,88,78,25,101,723,770,400,752,880,739,195,657,523,388,217,833,563,409,924,48,624,299,903,76,729,195,938,332,611,159,855,640,817,176,298,154,397,69,745,493,376,733,168,106,902,205,524,163,543,369,832,52,844,262,492,334,74,281,332,579,28,2,316,186,789,485,976,277,103,670,946,424,127,850,856,999,443,415,963,0,756,545,1008,674,847,340,877,100,42,559,339,553,992,130,869,26,858,617,937,826,662,449,680,189,129,938,632,913,532,97,121,620,490,571,913,318,550,802,496,936,981,637,13,316,757,241,762,902,140,613,104,612,258,490,0,417,194,942,498,442,969,12,75,275,658,463,406,373,448,297,888,259,969,889,191,171,631,123,155,0,508,853,464,483,685,370,574,175,51,153,856,808,806,377,267,20,173,466,425,471,272,864,981,21,828,282,165,655,533,282,320,278,305,877,912,865,56,340,626,189,747,505,187,175,1004,954,788,687,171,499,4,353,709,770,184,320,737,824,332,258,582,450,660,704,462,512,801,641,74,247,996,626,794,621,590,284,582,850,145,420,1013,353,741,174,681,125,588,802,762,347,970,599,752,628,893,812,559,898,502,264,216,908,352,115,856,427,519,848,200,588,932,254,278,390,638,322,457,967,823,166,662,175,371,195,1004,1005,930,89,302,918,572,464,748,979,509,952,736,969,399,235,660,522,683,26,908,806,189,340,812,363,633,583,942,456,959,701,99,372,405,870,553,239,546,209,401,423,603,736,224,627,962,477,223,729,316,257,804,693,485,563,72,356,41,598,250,663,743,393,360,799,878,233,982,354,234,869,617,737,127,149,87,541,347,454,593,963,136,651,688,459,462,268,517,793,864,391,386,610,211,258,767,31,317,509,0,419,174,846,461,969,927,905,212,314,785,261,615,635,892,208,942,582,168,426,572,719,253,945,551,527,922,209,167,174,913,475,473,918,993,735,787,931,467,534,966,515,652,527,978,57,731,764,155,222,429,177,495,68,174,784,423,619,370,213,768,586,5,935,574,181,44,72,350,845,540,778,963,466,693,70,511,138,568,596,199,171,240,382,440,794,602,238,385,192,835,316,178,988,849,319,718,877,783,720,28,26,140,566,807,140,248,574,125,224,176,748,257,999,82,880,162,62,296,771,64,954,127,502,73,42,93,90,280,623,164,145,596,106,724,148,108,91,35,868,986,702,305,124,633,574,561,927,592,277,501,160,347,163,618,651,182,694,615}

    {260,257,842,42,229,126,937,766,245,687,997,804,573,41,217,204,272,20,897,714,219,872,819,323,357,974,413,47,256,579,904,174,915,902,970,161,688,75,523,174,478,814,1000,662,1003,560,403,71,254,758,221,612,172,778,616,643,24,356,976,326,653,564,956,923,847,194,679,302,606,378,793,763,0,282,923,754,412,186,18,377,62,63,333,283,356,505,218,277,134,574,78,187,849,102,982,783,335,154,145,753,999,912,155,574,555,527,325,295,871,592,30,287,672,110,969,342,46,881,638,569,600,218,510,382,191,933,0,135,77,601,937,838,1015,570,44,245,340,1011,803,423,738,268,367,336,754,325,176,38,395,13,255,867,478,172,556,400,29,751,3,949,122,896,131,410,458,722,564,0,100,175,603,930,161,740,404,720,232,557,39,506,628,411,567,910,754,866,615,486,186,128,429,743,480,778,704,321,266,514,948,985,67,778,36,972,490,826,943,868,457,626,537,484,96,217,619,532,10,646,925,68,40,889,398,769,726,585,725,350,65,462,969,344,874,329,886,674,96,175,168,61,779,605,954,336,803,114,432,853,613,197,542,130,467,153,465,731,615,198,489,244,343,603,389,928,85,217,138,660,666,881,57,786,1002,95,460,137,938,105,96,349,235,909,898,1004,690,842,61,669,194,692,873,83,209,488,722,965,781,44,197,53,749,498,962,147,80,643,457,319,341,876,303,828,337,181,645,180,781,570,22,626,917,246,937,58,469,664,105,455,809,320,793,175,550,270,381,18,755,828,613,70,809,23,895,480,92,499,808,415,648,695,700,65,375,907,705,100,456,942,1006,383,82,113,904,220,466,808,957,689,910,904,174,738,852,793,114,16,94,143,951,510,546,177,63,626,1014,654,568,156,257,183,90,946,641,920,587,902,686,190,276,248,954,752,903,650,964,254,45,421,353,187,273,987,308,673,31,161,804,207,590,237,469,152,762,139,742,697,170,128,1,818,457,457,199,969,717,528,392,699,816,495,302,309,75,578,259,251,797,14,84,943,876,572,315,389,242,584,712,723,185,157,692,225,470,682,119,46,311,679,906,0,738,270,534,667,765,301,728,551,309,56,134,418,540,171,236,396,920,116,474,893,1009,655,867,472,307,437,746,66,186,932,826,873,674,853,343,8,494,935,361,798,864,757,287,503,144,926,1012,762,998,729,468,961,830,287,503,990,214,645,433,295,966,879,394,980,299,969,318,366,494,356,86,862,55,889,521,617,678,300,370,425,174,3,124,11,381,77,357,227,720,582,677,609,694,151,295,35,95,656,633,445,182,860,12,671,293,507,675,761,898,304,645,930,670,628,759,418,322,195,480,384,662,219,774,508,500,925,373,862,434,50,377,689,98,914,174,3,353,913,954,224,520,163,142,306,795,842,954,60,18,706,136,617,656,621,124,881,863,805,958,291,572,754,497,82,73,145,818,463,61,416,6,725,925,791,589,684,110,487,676,387,191,472,751,123,891,574,482,613,581,109,351,821,407,385,414,934,829,215,959,95,732,982,694,446,813,510,310,143,6,311,861,491,478,692,45,234,28,819,531,929,846,829,350,582,798,356,382,63,941,671,653,290,83,653,668,165,364,572,348,313,742,822,831,629,596,851,465,356,840,691,196,128,752,601,750,445,348,978,466,438,47,306,708,308,486,314,2,17,939,661,235,363,288,690,111,474,901,1010,316,529,343,44,198,418,309,582,209,378,843,784,880,939,544,316,179,846,516,628,59,28,504,365,141,725,913,646,155,828,676,77,380,841,353,59,115,591,713,888,308,592,420,487,439,835,277,346,898,0,399,580,443,770,428,33,925,412,374,230,775,548,943,316,150,359,530,436,864,194,319,441,1015,965,897,446,149,651,787,317,981,377,554,1005,182,486,997,297,248,376,752,174,83,753,575,639,598,707,525,554,770,710,185,721,809,894,479,235,23,789,457,788,722,96,941,245,13,827,139,988,37,862,915,910,648,1009,427,466,32,290,268,254,680,109,79,540,1004,22,881,412,294,843,356,662,396,716,295,875,762,40,502,411,1001,0,133,840,257,645,105,790,607,561,175,33,336,898,193,400,843,809,915,638,373,81,355,11,796,161,741,347,475,638,993,394,270,449,712,556,77,658,869,331,150,105,885,38,156,558,696,465,502,622,804,132,316,592,206,123,216,176,92,534,420,608,458,812,101,43,324,113,776,565,941,883,787,244,180,412,1006,116,18,282,614,353,588,524,930,1003,267,743,991,161,402,836,739,28,983,873,143,621,1007,92,145,951,549,631,362,787,862,357,312,508,274,559,955,1002,820}

    578

    704

    Returns: 159226672

  45. {294,2866,1775,58,210,2722,824,1515,104,732,837,2369,98,2952,2369,2832,131,1289,401,642,2965,145,2446,579,2964,2495,407,1834,2859,536,749,2538,2063,804,1096,1266,1719,290,345,343,568,1556,2135,1433,1850,26,1183,53,1078,1717,1817,844,470,873,2324,2775,1139,1283,1912,637,1355,2456,2668,1208,959,1533,1745,2344,2454,977,2225,1623,304,1465,1552,1994,2654,1602,2543,1,1768,601,39,2200,1640,2069,2728,1702,1377,2754,882,2481,2384,727,2285,1955,961,1789,201,133,1530,208,2743,2148,2972,937,123,2826,1718,362,2591,903,613,533,2078,1063,1372,2215,1747,2512,2826,660,731,1127,1304,275,219,1962,1437,664,2453,663,2796,390,1891,1811,2693,2151,2022,1904,2945,1821,1380,72,214,617,2503,2142,887,1782,1545,1765,340,2672,2961,2101,1010,1966,132,2957,1948,865,118,1030,478,2264,1362,1509,693,2807,2771,353,2991,1342,419,625,2758,2853,716,2003,2924,398,1327,376,2498,2228,1879,2524,2610,1479,2323,2446,2729,1673,1739,1564,2843,1429,412,2459,2912,78,450,776,589,744,1439,215,1347,313,2246,1649,304,2251,1160,984,1809,2075,1862,920,1946,1158,2467,1908,838,29,634,1273,358,781,637,157,1586,1054,2888,2706,2600,1549,2108,1696,1333,1382,501,1915,1778,74,2429,1219,291,2231,437,2721,1268,1551,1239,2778,486,1425,1035,2929,1980,1347,1870,1447,563,305,2261,957,2942,1586,1192,757,2349,1599,2106,2935,366,282,1036,2246,1938,728,179,1122,1599,321,1233,1645,2378,630,1424,911,2193,2928,822,552,902,334,382,159,57,1409,1820,2910,485,1221,1303,1129,324,1700,2251,680,2529,361,703,640,1009,183,185,2698,1989,1901,1950,1667,1997,87,2372,1077,2835,495,534,764,67,1317,2559,2159,2405,2157,2553,435,20,1726,629,459,1049,2118,1129,2006,533,762,2961,292,1633,1140,2415,2744,2697,1474,2760,174,2026,2984,567,298,415,2506,1947,729,2113,1860,588,2826,387,2428,2591,2352,2279,2277,2741,2769,1515,2678,1092,2189,2904,1602,54,1060,1559,1241,931,805,551,299,2419,2011,481,328,749,1397,846,1436,1647,1448,2690,2210,1147,2590,933,1616,941,1406,1149,1383,2090,2340,1333,456,416,2043,2432,325,1682,287,2750,152,1203,1798,2041,175,432,2731,324,1769,1664,2925,2940,412,766,492,470,1767,7,331,332,2307,1983,200,2607,2795,970,1203,2750,2041,1689,490,1029,273,2676,1500,1267,1130,1095,1277,605,994,2689,542,760,2478,1061,1753,1703,2209,2301,779,294,2943,1872,2459,766,1240,1683,1031,1763,1022,2935,1957,84,1188,496,557,1559,2729,1738,1176,2355,2093,2744,1936,643,1957,2898,2899,2451,2,1714,957,488,840,1567,2609,455,262,395,653,2258,2741,2124,1267,405,2526,2653,2145,1801,827,1755,1860,2937,717,1581,2367,742,219,594,2026,1545,2211,1383,2457,635,47,894,1034,2775,539,2824,1967,2852,489,223,2005,2914,1465,721,2708,2606,1223,1507,2716,2290,2337,197,2987,2598,805,100,1043,1036,2647,1577,2001,2148,2392,219,2592,426,2133,355,2110,73,2183,1655,1040,1417,1801,467,2897,1454,2903,2541,2454,1350,2905,247,815,1575,2590,55,2813,1632,1876,1658,205,2637,2137,1726,245,1967,2149,2106,2805,390,1962,353,1888,389,1616,1592,409,2681,2297,1069,2922,1596,2052,192,2388,1339,541,2462,2634,2459,78,1380,2761,358,1118,2726,2369,2530,327,2045,55,1351,1998,2284,461,1288,1685,1012,2941,2719,2239,2389,581,2468,1535,2278,2577,1554,264,51,356,2620,922,1327,2532,2887,2112,2309,1298,2253,77,828,1144,691,1968,108,1427,15,2603,1851,24,2556,1096,778,876,164,1764,2478,1709,1686,2040,2915,421,1073,2633,2556,2629,1000,2458,1566,2579,2568,2356,1174,1408,5,62,598,2304,1552,183,2448,1758,1368,2204,322,1531,267,2635,1844,1671,1128,2216,2735,27,1527,2771,184,147,1843,1042,2141,12,2016,1116,482,1576,1963,2318,2872,1338,1955,1800,323,888,2671,936,1277,2589,2331,403,504,1621,2734,533,2542,2725,2902,1808,2723,2206,1879,2745,2931,2587,65,541,134,119,325,2935,153,2095,806,120,1342,1752,162,61,1089,2385,1121,785,1830,2398,424,2338,466,898,498,1018,962,494,2878,620,227,2024,2237,971,886,523,2923,1594,1784,293,2150,1980,2212,1797,288,1503,1548,1031,609,1306,1547,1147,2855,2583,2958,2552,352,1733,1190,987,307,2291,2519,1106,1219,2211,1998,1254,1391,1431,775,539,191,2428,1314,529,1555,2935,2611,1320,1117,439,1280,1918,2261,2147,1156,2166,2121,444,1697,566,2458,2213,975,7,1839,979,1150,1554,540,221,91,1628,53,318,287,1918,984,334,1911,42,1336,373,145,1969,1530,1242,2128,2452,2222,710,370,1751,200,2518,1700,2694,2993,504,2588,2885,1955,1089,2726,337,179,1225,1345,152,1221,1189,1874,241,1519,2806,1108,1357,19,1499,978,2248,2062,2524,461,2150,2745,2164,2223,2395,140,1539,418,2239,1131,1374,1939,2070,1161,2216,2788,1038,876,1025,2077,2713,384,73,1835,2980,2866,2312,1830,1402,2966,0,533,1250,1835,11,1733,2848,1250,1336,308,1294,139,192,1206,1093,1052,1438,572,2711,838,1953,2521,793,1032,2813,1250,2032,2749,121,2306,2664,2974,1895,1447,2327,309,2298,2071,2332,2003,212,2460,2066,686,1558,1844,1690,218,1333,1697,2653,2384,1642,491,2189,2888,1302,2155,1340,471,2072,2803,2552,137,1049,1278,177,2884,172,748,1091,2795,967,288,1863,933,254,574,2231,2673,2560,674,2428,529,2677,2862,1476,161,2392,1026,2148,2983,2991,251,57,483,1223,577,2255,25,2044,1523,2938,2186,1974,2668,751,2029,1756,924,1137,2419,1475,2313,262,2866,283,70,1428,130,2251,969,2549,774,2398,772,1621,357,1715,2470,689,1084,1688,949,2706,911,2843,2668,2107,1757,1589,2250,904,2218,843,342,2982,535,2701,2726,271,330,309,2133,1133,292,1484,988,301,46,1116,2429,777,1321,1524,872,2351,50,1146,1770,1194,1581,2010,927,760,756,354,2748,650,2905,2515,827,2826,2075,217,2457,1372,222,1668,287,2249,366,753,6,724,1638,189,1116,2950,2344,792,1730,294,1477,2578,1459,116,225,1865,1726,1650,2076,926,2395,1608,2106,81,1183,626,235,1299,2082,1201,1595,2717,2882,1663,397,1559,1903,2978,583,1871,1574,596,1691,341,1919,246,1394,394,1509,766,91,740,1325,256,1338,1250,1913,917,1831,40,1053,1365,384,713,2783,70,2718,2271,2101,1429,1307,1416,73,1124,2561,2590,942,344,305,107,1767,701,1101,1877,1798,252,2743,2614,125,1525,2667,1364,2749,510,779,259,2484,712,1526,931,1938,804,451,1962,2691,749,2668,2741,2258,1166,1942,1293,1986,440,654,521,502,2960,2861,950,2604,1572,1202,1679,2863,2038,600,1352,857,2718,462,1102,468,2263,616,883,2820,2058,491,72,1939,874,2930,14,2207,1196,297,2797,234,2383,1419,2771,121,1688,1539,2990,632,1580,197,2821,921,399,2395,2098,1544,859,2986,2295,2390,1669,1390,433,1201,1451,806,2644,1077,1237,710,2262,86,2324,1451,635,1973,637,2191,2417,551,1060,1310,2397,2890,2271,2184,908,53,313,350,2167,4,176,602,2951,380,2921,1951,288,2891,367,868,1671,1250,945,2750,41,596,1627,386,1805,2644,1407,119,2868,2603,1887,2971,1765,1882,1549,2636,463,219,476,436,33,1201,1567,2825,2092,635,2829,439,2232,1590,1001,717,1242,2982,1024,1187,815,555,1749,573,169,1467,1957,1330,2906,761,1891,538,2101,1384,381,2480,1050,2469,150,2438,2521,1099,2603,471,782,862,1441,1487,1578,140,2560,692,569,1418,1069,1916,879,1934,1207,1941,2023,546,899,1682,200,365,1465,2796,2884,1397,1008,1123,464,2343,1832,1110,1318,1055,2428,208,2896,937,2977,2537,391,2457,2188,2417,2511,243,2467,869,1153,2595,1921,447,2985,2660,1654,2216,1138,674,2145,1149,2419,2251,1929,2967,1398,1656,509,1198,197,314,527,2148,498,2064,2631,47,2376,2266,277,2226,2862,140,1201,1753,905,2603,1115,1671,2471,1633,2563,2016,1653,926,2738,1283,328,2107,2421,1060,1286,1408,2540,1409,1284,286,299,2892,450,759,117,1140,1966,1476,879,991,1517,2682,2315,1800,1944,2083,2002,530,1733,1196,762,158,957,519,218,13,2241,50,1248,1792,2443,1401,2178,1397,1289,560,1462,2576,54,1956,1610,272,1901,1103,745,1813,2246,2427,2980,2192,2809,2605,60,1126,1290,1900,1320,2848,2547,727,2058,1100,2797,2912,1871,2320,1984,799,243,2052,1086,247,1637,2727,2778,1603,1422,2094,2838,70,0,2468,912,2739,539,520,2787,1574,1563,2627,1344,533,2905,1198,1004,1435,1057,543,692,2199,1288,1141,2833,1548,2803,299,939,871,2131,18,1527,2994,2843,1783,849,1255,2032,2285,2613,1077,2972,749,550,2614,121,1479,470,2581,2978,1430,1939,2808,1812,1211,198,1157,2034,2494,765,2036,1278,595,591,574,1960,10,1728,1306,1944,2550,820,992,371,1733,1195,1092,1366,1314,652,254,381,439,2859,2572,1177,1420,2781,807,2161,626,2664,1288,2740,1106,674,1990,2131,1354,2951,642,310,1964,2667,2152,2207,2015,222,2528,1656,2467,2818,1651,2993,734,2708,2803,190,2774,1346,1692,1647,2762,2216,1770,653,2216,0,1219,2736,787,2737,958,379,1585,2422,772,1688,863,1459,1614,2569,836,338,1427,1675,2792,1059,2214,2928,1886,219,1843,208,1738,1505,1408,438,1862,2315,1330,200,714,2914,1429,2428,2220,319,1156,114,154,182,595,260,441,553,1480,1828,1659,1111,2841,2497,1317,702,902,1710,501,2935,77,1306,1179,2246,1005,2490,433,170,547,1677,334,270,1472,1271,2506,1373,2425,574,969,413,1098,1871,15,1868,496,1548,1705,2519,473,278,296,1208,7,2087,1845,689,278,1629,1999,64,404,1312,1625,1553,1646,2177,843,2400,628,1530,860,1593,881,1823,2645,630,2840,1105,578,19,17,717,672,2240,2007,2264,2467,1232,1331,2823,1746,299,820,537,1863,2046,2665,563,2362,1803,565,507,1955,1972,1014,664,523,776,2672,1624,1671,1036,174,2591,196,2590,2750,1567,53,2493,2811,1352,2755,2970,2359,1897,2326,127,2961,884,1244,1765,1891,629,2068,2677,2410,1400,1701,790,2826,2120,2202,769,1516,704,2498,2444,1002,668,1404,549,1549,711,479,2242,2185,417,2884,658,1461,1118,2216,2626,686,545,438,1934,1816,1005,1947,1881,1089,2435,1586,1570,1545,1671,882,2548,2344,1190,103,1931,2836,2319,989,866,417,487,1616,121,2601,455,893,1100,1456,1785,2722,18,2642,588,916,1275,707,2345,1042,9,1966,1971,2724,2736,166,2413,2281,1333,1824,1147,2284,2061,1512,2201,1902,2231,1412,740,2290,2095,437,79,778,2500,2868,2575,1545,1412,1462,1247,325,2845,1386,2741,2357,276,2159,1168,1826,1053,1457,2625,162,2466,682,1765,2074,2086,504,1376,2032,2164,804,511,2293,1061,2395,2747,1770,2584,1408,1201,526,2830,2303,2499,2767,2118,1341,1545,2491,973,1544,30,2685,1914,1113,1317,2836,2304,1758,2828,2189,1461,615,2899,1675,2687,1747,2903,1237,1479,1314,1442,222,2858,2473,2299,1991,1620,2039,458,1982,294,2884,2537,1847,491,1425,1667,199,2041,1738,2655,654,2919,1655,1370,1734,2962,101,2035,1593,2496,2463,2285,1346,2830,1452,1005,2161,794,430,2343,1492,1379,1744,943,1820,2366,1637,2673,763,1794,422,2775,707,1940,1468,2356,99,1090,1662,2912,1738,712,1368,2253,1691,1590,1112,1958,536,2440,1173,424,2946,443,2560,1020,569,2836,2231,2669,1961,2412,804,2424,744,2432,2686,726,2073,1297,1421,1606,1585,521,1757,482,1878,741,2249,2215,836,2488,152,2280,406,2984,1975,1967,483,1186,1070,1462,2381,1184,284,2568,2372,2560,2393,1991,227,1609,2289,2936,2963,2837,2934,2157,1714,2392,757,2697,1596,1481,638,1220,1643,991,2715,2690,884,1569,2127,897,575,2695,985,360,95,265,1674,2034,907,2653,996,1798,2100,1350,1559,2153,90,2803,2812,2900,1008,1403,1511,1580,1043,274,758,1561,2369,1601,2402,612,790,2385,2602,1548,2951,476,1327,2282,1578,953,2216,2945,1623,1541,2725,152,653,870,2927,352,65,1676,1876,2219,1332,2221,2884,522,2993,2558,238,1864,576,1666,465,1213,2144,1790,860,2427,228,1104,1616,1448,1633,2539,922,2013,2848,2369,257,2438,1408,1611,1467,2125,2659,1970,174,2611,1320,1465,173,736,1129,206,1862,2978,2928,1489,392,1416,512,613,2437,2961,299,2257,1267,726,1356,2740,2901,1615,2379,2425,2465,1747,1469,2435,1313,2625,1867,589,865,1590,2472,1380,1252,1093,1793,756,2527,793,2915,2267,683,889,2842,974,2864,1058,767,1074,354,2552,1140,1203,2931,1164,1790,2982,890,935,744,1189,856,1583,37,1058,1585,2865,2425,1562,659,878,2058,1106,667,2373,1824,155,1450,1330,2670,1670,488,310,2552,46,2805,2179,2586,1559,1413,100,82,670,590,2935,2707,2935,1641,2313,407,1527,868,2175,1755,425,2911,2154,1328,1664,965,2449,2885,2025,2688,1933,717,1771,1770,1136,1143,2807,2877,856,137,2933,1815,2595,414,113,1069,514,1316,1704,1378,1374,1681,311,2816,1374,1514,1315,525,195,2534,1552,410,84,445,1935,2047,1197,1113,2150,2661,1076,1883,1843,2244,2231,1977,146,2877,1633,1049,811,1473,2751,1283,2536,1321,1981,630,2833,167,243,2344,1851,2026,1584,121,2370,2329,2267,2804,1238,192,1505,2414,2254,1250,502,1737,2824,1960,1802,2116,36,396,248,1552,262,1007,2934,160,1736,2912,1203,1296,635,151,39,2008,2555,2203,1511,2157,562,2384,2136,2956,2779,1081,1791,2212,1568,985,831,629,191,1139,2964,588,513,1957,2050,310,2825,982,1868,1389,2741,426,2646,55,2147,817,1288,1819,2820,384,2466,2007,1919,1588,2020,1043,1736,666,708,1177,2851,437,1434,2246,2864,854,731,819,2150,1800,2005,1852,2628,2329,1833,2263,1708,810,563,1954,1095,362,2119,2533,934,453,1945,868,304,719,533,2003,580,2116,2709,2147,267,1258,166,2840,919,2003,1900,2373,255,1300,202,2222,1805,1348,335,1314,2373,1472,2674,1987,618,2586,2390,2521,2866,21,983,1441,1907,639,2826,306,2163,2806,818,1693,626,2021,2260,1210,2992,1056,319,2444,1462,896,236,1422,749,1361,1209,532,909,2803,2978,416,2103,2385,268,1186,2146,1882,2668,2810,2914,435,2170,990,2826,1673,709,734,2968,2195,1802,1258,2763,2452,1874,597,1421,2921,1203,1201,455,1790,2865,2923,2809,2846,1276,2158,71,1714,377,2102,1695,2231,125,1174,2325,957,664,710,1532,811,2607,2181,2014,2076,2821,2564,1274,285,265,1447,1839,2214,1956,1593,281,1041,2826,2939,510,2018,942,1079,2052,1776,940,1798,717,1804,2369,108,2808,1825,2021,2344,2406,820,1829,1967,84,129,1217,2671,1957,390,2437,2174,1237,282,832,1513,1590,1580,1237,1412,693,955,2651,1973,1720,2768,939,1766,2728,1738,2104,2615,1315,1764,770,1851,2233,2502,2428,613,1353,2805,2901,1128,2441,2293,2544,2513,1954,748,1120,2309,2140,1371,2333,1333,2279,2285,1955,1344,2751,2320,2702,717,2781,2699,1128,1440,1125,2736,1660,2769,1226,491,589,755,2368,1039,408,1957,1139,1850,550,839,1960,641,1709,149,138,502,2422,2169,1501,1620,2596,2162,1426,255,1830,2982,485,924,917,2542,2978,919,1171,1711,663,1785,1152,1498,1527,2636,2436,1891,981,1583,1701,227,2336,1462,1297,2952,2524,737,1665,1464,1037,209,66,2261,2687,263,2615,991,1347,2247,850,1495,1007,2942,375,1324,1734,665,518,544,843,1389,135,1689,1405,689,838,1258,2658,112,2069,606,2672,478,803,987,1295,1015,731,2149,1837,2129,1261,2109,2566,176,1898,2802,418,65,438,1270,1103,677,1422,2991,1445,79,1008,1076,1295,2423,526,2034,1440,1930,1700,1344,2541,2632,2033,2862,952,1879,1834,561,1593,1185,2524,1228,792,760,1188,1567,2972,1002,1869,721,2286,1796,299,1330,673,324,490,2857,1688,399,548,604,340,1739,1809,1044,2858,1358,861,1488,1928,535,2907,2635,1549,1817}

    {1246,2553,1209,2843,1203,1159,563,508,1309,187,1747,715,1403,1223,7,2657,61,1729,1882,1841,1955,294,1521,2574,785,1851,2795,1780,1719,2723,2581,1182,280,1058,1903,992,2270,525,1624,79,521,421,418,2908,1604,2078,902,1957,507,203,1045,2058,2762,2395,2784,2149,848,2947,1609,1548,165,1145,2216,1346,1130,1754,2761,2945,1920,567,1173,185,1849,2363,766,886,2898,1229,152,1107,1560,400,1306,1184,1756,723,885,683,2380,1163,1476,237,2622,139,431,1574,548,192,362,1917,2565,1323,2663,2477,2189,1585,772,1338,476,2146,2465,1018,450,1193,1892,1145,900,224,109,2641,1129,1886,1648,2490,1486,315,35,2138,1946,2028,1287,1308,2360,1049,2762,2242,2046,65,1321,1350,2049,140,1550,2413,1256,434,813,898,646,2848,1638,782,237,1783,1793,73,771,699,2713,1594,1011,1288,1490,1454,125,197,707,163,457,2116,178,622,2246,1292,2358,1765,462,2770,2301,1534,1542,2882,316,599,2853,2411,2519,45,2903,1711,66,1862,303,2165,2223,1180,325,991,2516,1598,2417,1699,2321,1765,2260,1236,1163,706,249,428,2094,507,1126,1680,1396,613,1487,2546,2447,2311,2334,2719,2163,40,1521,15,809,2145,238,614,1905,2059,2238,2065,2884,1159,2654,32,1,1901,842,1200,2105,2374,973,2507,2163,2001,841,2224,2344,2014,2902,1863,980,2426,2643,2351,84,227,2849,2009,857,1725,40,842,1585,443,2955,2418,193,429,1154,908,2272,1418,1108,2738,1630,1642,2326,2034,19,1908,2626,1061,1664,2992,550,548,2489,76,1674,122,2056,1960,2187,689,776,53,634,2884,550,1227,1038,2794,2085,1624,1402,572,1456,997,1531,2139,2877,1501,2158,2957,750,2154,1403,2485,1355,476,2039,2391,281,905,1837,647,598,2867,1626,1911,1662,929,368,1737,1861,1423,2877,1360,2644,1217,2710,1900,613,18,1300,1893,1051,2453,1597,2171,2078,279,2322,1383,2841,1348,671,1152,2183,316,2824,983,124,2001,2788,405,157,325,1734,1411,2806,2700,1196,294,2747,1957,2464,1384,623,773,1350,2052,2310,1613,592,2611,2340,2679,58,2568,2847,2871,1999,2954,2935,152,1552,1527,2452,1387,233,2380,1767,2078,64,477,2048,2675,493,1778,2197,762,751,861,63,1567,1102,1585,2801,2417,1317,1145,938,2454,358,244,1552,692,1895,1310,2312,2854,1272,848,2401,530,914,1848,2815,806,1854,306,508,1037,1549,1631,1068,968,1363,1938,1980,1735,799,1145,70,1876,2291,629,2386,1966,2605,294,1737,438,131,462,1585,2383,552,2693,2403,582,1380,2806,2336,2567,1472,2030,2951,409,2218,556,1208,2934,2243,1741,2509,2958,2294,1684,2055,2976,2144,1328,695,1264,1397,2155,215,1397,1802,2765,418,2772,2132,248,279,1822,553,378,2951,1540,276,746,213,2276,812,1428,930,1215,1265,2679,2585,1372,1338,760,2056,343,931,2714,613,845,69,256,2696,1343,1249,2445,841,2711,325,1061,2843,2328,1392,646,2868,2886,584,2869,1680,1172,2034,2926,2252,493,2579,598,1325,1999,2792,380,8,1817,951,1447,1284,38,1172,1073,766,2396,427,454,144,1021,1863,326,2424,1032,869,1043,1067,2733,125,67,253,1682,2257,2668,854,913,1442,1469,2841,411,1173,438,902,2991,1058,2268,2122,644,1944,2371,2947,2656,1282,2525,2779,1974,2327,1337,742,2346,2194,50,347,2172,239,1276,1181,524,1381,1765,442,2591,490,2803,128,1494,1065,2656,2544,1351,1758,2320,1324,1289,2827,681,2500,34,1922,499,267,1009,2916,1528,781,1712,2311,874,1211,905,2031,2599,521,2706,625,2862,1338,2319,685,431,1005,1184,856,1366,1383,2343,1504,138,1482,596,694,329,110,902,2439,2285,1772,1281,2354,1889,2271,2487,2362,1800,895,707,1843,358,263,1380,2950,1218,2176,2531,1591,1291,1125,1037,1955,2972,366,796,906,1408,1344,1319,605,1575,2394,782,98,679,2951,524,2833,2958,1589,1692,193,1432,992,1740,556,2374,1495,264,1905,1944,38,2437,1106,2079,2361,764,2780,1834,2718,25,2396,931,1636,1918,1798,2929,397,1151,2396,549,394,948,1694,2470,2668,2476,611,1977,1587,2865,2521,2296,341,1108,2279,2095,528,1508,1222,2682,880,2623,324,216,149,1155,2230,1021,510,1768,986,19,2918,2560,484,2909,126,2023,2437,593,2308,2856,1456,2806,2250,2393,2332,1803,2876,84,2648,753,603,2932,2283,186,613,2095,392,194,2450,510,381,1703,2960,943,688,1933,2150,1169,1663,2463,1589,237,2759,1748,1544,1588,2255,17,2671,227,2560,2813,503,1263,2001,757,2686,2152,2739,2816,2750,1094,2944,278,1955,2007,932,2517,1545,2477,2019,2407,2869,2026,2742,2059,465,1494,886,1420,68,2683,2704,1483,2901,2017,506,1013,1234,1464,312,2221,684,493,1813,1733,1764,2420,1756,2088,661,619,393,2605,531,499,564,2800,2795,2684,143,1988,1410,2921,621,928,1375,2590,1952,2893,1672,2751,463,2569,230,608,2865,345,401,2894,1191,364,2486,798,1925,2350,1129,1799,2597,1272,2697,1976,1208,553,1622,21,347,2230,1367,749,1633,326,421,2730,467,2216,1855,1813,91,154,2916,1564,1121,823,2788,2502,2683,1267,373,1807,1574,1593,1208,1711,512,1773,1196,144,1586,2279,2097,2151,460,2301,1476,837,2506,2012,489,2535,1683,19,2127,2431,2654,574,1097,1789,1937,2465,1835,1762,626,1366,2195,338,330,1139,645,2386,1408,2565,34,910,1227,2442,2537,2593,344,1585,1948,1447,1335,2666,604,1465,1506,1716,819,671,884,850,980,692,1170,760,1766,735,743,661,2195,1768,1586,240,1559,1726,1747,2780,1054,1406,2458,2662,57,877,1179,1225,2522,2362,1612,781,505,1275,697,648,553,760,2848,2338,1203,662,1999,1119,1160,1790,75,312,1723,1274,2730,195,1379,513,999,1083,250,236,2265,2430,639,2365,1374,2978,629,350,142,491,17,175,872,2160,1530,368,1301,424,2903,2320,1871,171,2488,435,1909,7,294,979,2638,1896,1900,1042,179,381,65,1415,1105,2729,133,801,2292,2177,2791,1129,2552,363,1145,2779,2377,1349,210,2428,2162,2733,2173,2939,28,2962,1214,2716,1623,2229,700,1971,1652,486,2189,2630,1191,1212,2522,2850,2895,301,2736,2926,1298,2668,1713,472,1682,659,1906,2157,1687,2615,797,920,2084,2860,1934,2706,2709,2353,48,1269,1564,558,371,2603,1930,2096,2330,2454,1449,1072,2126,1071,1088,1074,2166,571,1350,1492,1875,1346,550,2328,1485,2063,891,1339,667,608,497,232,935,2054,2945,2519,1077,725,2351,2975,1245,2609,1249,2243,601,2860,2107,2449,713,2470,2352,2438,2194,1842,301,1428,1940,2002,1368,601,1770,463,2641,2461,2159,2951,543,1395,294,2091,1178,1446,1461,1885,2005,1505,1922,325,2484,2256,1578,2881,491,368,644,1006,585,1007,2985,2668,2556,2777,474,448,2397,344,857,404,239,1199,103,1317,2540,2621,97,1709,2765,2289,22,1399,649,1260,2227,96,2070,1960,2536,2668,121,997,2342,499,2289,2860,1108,1938,2818,2729,987,1226,2118,1925,59,203,2761,2137,805,1639,259,992,431,182,1508,345,1527,173,191,852,2361,1017,1231,581,1894,631,266,350,2951,936,1314,1435,398,1945,1471,2876,1066,2988,2328,1918,369,2003,853,419,918,2217,2791,2371,2696,2969,91,317,965,204,1056,2143,1985,527,1899,757,2723,1287,1108,1156,1001,50,2734,2934,217,1567,2541,2228,509,539,2202,644,1054,2557,1836,574,1264,944,535,2718,2118,801,1368,1376,656,596,1136,182,355,1570,1899,188,2624,1089,128,1765,1830,778,1315,2737,1529,970,1586,1096,863,1253,1291,311,1173,1633,1751,1126,1609,1882,2080,2378,1719,966,1151,1335,2551,342,269,219,2978,156,2798,1360,300,2281,1328,1490,1112,543,2218,2403,2871,1452,423,373,2774,974,2917,16,1879,1316,1527,1883,546,318,192,2320,1199,881,2913,760,1309,409,2316,2715,2854,789,1061,564,1779,1786,732,2129,2673,2947,38,1439,973,2884,1832,2086,2212,1073,2177,273,946,141,1788,1338,884,1856,2428,2951,1009,2352,1943,1578,2793,1064,305,1480,2586,1838,852,2115,1880,879,1262,2574,768,1177,1952,2135,1514,636,52,2550,1707,2467,586,2899,136,2677,2935,270,2085,2526,1145,2435,2756,1768,426,385,2065,664,821,871,567,2706,289,1653,2399,1076,306,2995,2768,2606,1795,2180,1727,1742,1250,922,604,669,196,2050,1470,2189,2885,2341,117,1649,1198,2589,1015,1585,189,2720,651,1227,2854,683,211,1992,1736,1183,2273,94,2734,2123,468,2189,2809,1917,1454,2417,2775,32,475,1559,1359,2569,848,780,2720,752,2645,2743,2650,2720,92,1734,2305,2581,2251,1339,1424,872,1423,210,2130,1146,2741,102,2995,915,1664,1857,823,2216,786,2554,1373,2591,101,1083,72,480,2821,851,1548,2348,2832,2912,972,2352,738,1770,1257,802,1035,901,963,721,1019,1760,1520,251,1942,2333,1843,892,2712,1585,2560,2462,1046,1146,722,1443,2195,1397,1022,64,2618,1657,2136,1478,2607,106,41,1607,635,1472,1338,1288,613,985,2416,1618,1280,450,372,319,2574,246,1496,504,2423,2890,530,2639,1058,1737,80,1143,1335,2060,1859,2182,88,610,1037,1200,518,1977,2315,23,545,1461,1601,2048,1979,12,1323,2879,2160,1501,2951,1084,923,747,2111,1460,1752,210,617,2386,2961,267,1932,1,1061,2580,1201,886,779,1182,2738,1798,2613,157,1177,1142,800,1458,2478,2410,126,586,692,292,2821,384,2989,2945,528,1408,1840,880,855,1936,670,2747,79,2196,936,3,1824,226,1957,1522,1087,2521,664,1042,1289,2811,2757,1718,1375,2167,982,2041,586,912,1995,2929,1204,841,1341,449,899,533,1650,2417,2474,2594,1473,1518,862,1701,1037,2443,1700,242,2217,915,2291,119,1443,1439,2641,613,1264,1993,2937,1317,2188,1884,2378,1463,1604,2604,2772,79,2245,444,1966,1922,1152,1251,2953,1503,491,1505,49,435,2713,2005,2644,1910,2723,2067,2610,2138,2793,2458,1414,923,1018,1740,1557,1106,1421,2730,2251,995,767,2596,25,1433,1083,2377,2769,2212,1492,491,2927,210,2044,133,1528,2875,1806,2404,1403,464,829,2806,1560,787,795,1585,383,2802,788,284,853,885,1530,1971,299,1929,351,1365,1891,2663,2753,912,2878,1073,1230,626,2409,1716,1785,1392,730,1409,531,1568,1,1445,2033,1728,1147,2230,1203,1358,1738,2925,2147,485,825,586,2641,1750,808,1511,751,2917,2053,1075,858,2865,2352,624,1605,2317,1659,38,81,2786,2821,1268,2656,1405,2884,1897,775,1205,1661,772,2834,2561,237,2889,2131,2382,2281,766,1902,1166,1677,1241,2387,1801,902,1174,2014,270,1334,2859,2375,2163,1821,1787,2519,2000,2090,1372,875,1398,1175,2874,1580,661,753,2010,2458,1364,883,1044,702,1706,1789,1388,2552,336,2156,2664,2582,1573,1167,1644,2251,2923,2479,644,1116,2948,2121,426,1300,2693,2268,1471,2858,2318,1199,0,1840,870,1567,2651,2302,2501,531,1706,1207,1761,261,830,1688,2217,908,2991,292,2931,774,2408,2003,1587,325,349,2434,1890,665,546,1714,2205,199,236,238,1476,517,1487,2918,1723,1781,1566,2287,1453,2300,2779,657,617,2828,2939,2086,2772,998,960,2743,2030,2785,2012,45,1978,2211,857,2524,675,65,2713,1693,2275,398,2072,2860,2452,733,2818,1724,1774,1579,1328,1148,150,583,2813,754,2161,74,2230,1879,903,332,1959,2868,1778,2483,516,73,2266,2541,2866,680,2766,1999,2814,1886,25,1713,976,484,931,2834,1361,1664,2898,1160,2417,742,2877,208,2042,2216,1617,1507,339,1777,290,1491,2679,1135,2741,443,220,1383,1600,2274,17,2973,348,1857,639,1521,1435,964,937,1722,2347,521,489,1374,1134,696,1322,2747,2705,2798,1643,1168,2141,184,2884,2269,1543,766,2797,1930,1814,2043,1835,2085,1810,2261,1443,1191,495,2614,1923,168,676,2631,632,654,2202,1409,766,912,893,1996,2198,1758,105,2856,1743,345,323,1103,1399,1285,2514,589,384,834,631,38,2349,2406,2612,2703,1726,1987,89,366,359,756,2662,1201,2069,141,474,2407,1464,850,320,348,1641,2595,1003,2144,1538,1466,1641,1060,2052,791,1545,2604,2085,2776,2727,891,679,1344,1497,92,2723,1256,2364,1754,718,1669,2789,2116,689,2351,2131,1545,2629,2831,1479,2793,1076,2171,180,739,2524,938,1418,170,1062,978,2264,685,2848,2159,1505,690,1875,2682,465,2217,1790,2519,279,2309,1700,507,322,2206,1924,1126,127,2634,1693,2928,1356,2312,661,2616,1304,2732,278,923,2842,2649,80,1640,2055,2334,2822,2400,302,1565,1247,2640,2364,570,2983,947,2594,2717,1211,1106,1048,2850,2569,2004,1775,2709,2380,353,1027,1858,2981,1105,2433,238,2523,1033,784,100,83,819,35,222,721,1303,163,847,1571,1045,2924,1123,225,1607,2526,1393,1814,956,2605,2696,1840,1311,2767,1385,206,1965,1515,799,2652,2839,997,2618,192,2573,2285,181,2753,1606,2804,2712,1650,1683,2545,340,2124,1083,1853,1077,2019,707,1848,336,312,2443,633,1112,2057,1770,2729,2962,1945,2201,2047,993,2485,2843,2265,1141,883,2163,1104,2692,108,1539,1734,225,1299,1356,2939,446,2873,1790,121,93,2476,1208,1560,1607,2352,93,2465,620,1643,1444,1930,2000,1305,2009,1827,705,1369,2339,1511,2504,1078,1065,535,1377,2783,1172,1058,1243,1052,103,2617,1527,2134,627,2089,1399,2245,2370,1130,871,1162,1838,1656,1536,1843,954,2168,819,539,1926,286,316,1732,87,2901,111,1733,2796,744,1326,1080,1929,50,510,404,192,2398,609,722,2050,587,1795,138,634,2775,2590,1549,607,1462,1283,2918,2373,2598,309,1957,1545,1028,556,1527,1361,146,936,2335,2680,916,2014,2264,2526,2750,7,772,2037,1259,2790,1801,957,1578,1528,796,2484,2920,2354,476,2563,2190,2748,2854,2503,2979,2003,1383,44,2099,1457,915,817,510,1109,2896,1992,1902,2729,1875,691,599,1377,2055,1759,1008,1365,2958,196,2157,2510,2727,1140,284,2370,1031,1903,749,478,406,937,1950,2125,207,1670,833,2243,392,2895,2212,495,37,2682,2505,23,2613,2150,2413,2455,1010,2520,229,1846,2826,1907,2880,2288,2883,925,1757,2253,1261,2764,814,1329,2385,2251,1843,2208,2248,535,1898,148,554,2173,1582,1949,2768,1906,2862,295,2475,2492,330,1147,2981,621,256,2918,2571,976,1305,936,2622,2789,2752,2127,2349,426,2679,867,1235,1918,2135,2773,1885,1048,1467,848,285,1780,469,1719,1061,68,429,264,1328,176,333,225,285,44,692,819,374,1007,2206,1766,1118,1078,2914,2935,387,1619,56,2117,1279,2281,835,1126,518,882,2429,360,1253,86,276,616,1047,1006,1427,1634,2148,1044,1706,2570,2949,2925,536,808,2377,757,115,2312,969,2377,2686,1744,43,1873,72,1651,1219,2625,2114,682,2047,1233,933,2601,2753,1938,680,2826,402,2333,2562,798,2403,2798,502,515,809,500,678,2799,1374,577,619,1698,2454,1738,2290,962,547,1033,995,1886,2246,2744,926,311,841,869,1508,2482,346,1224,1062,2674,1674,2967,1510,643,2195,2799,2351,2395,1735,1901,310,2081,659,1537,1459,1114,1866,1804,528,492,2793,2550,414,2189,826,1447,139,1966,15,1927,1677,1129,2435,806,2235,2498,550,2717,1016,2236,2888,1731,452,2673,324,1631,2854,1098,2695,1176,1455,908,1567,1219,523,1490,783,1023,1043,749,752,2632,2608,227,1517,2304,2106,2819,413,1201,2139,1967,218,1818,2398,1856,247,2782,2231,2259,246,1549,1931,2738,2571,1683,2245,31,2843,1678,2039,720,2320,1790,1493,653,2807,2790,2255,2993,2937,2959,1019,2051,1977,1132,1944,1359,2493,1219,1082,2032,774,2574,1216,2805,1635,602,2619,2185,2982,830,310,85,1721,1165,634,1752,816,2671,2862,408,2856,2172,1797,139,687,2870,1241,2947,297,1208,1257,150,2727,231,130,655,2003,2556,769,1316,2795,2368,1837,185,486,1768,2671,2746,78,2951,1546,72,197,559,388,493,1984,2508,1162,1085,1950,778,1502,1913,2817,455,2185,2304,2328,698,864,2884,2716,258,2419,1919,1956,765,212,2450,2844,1951,1503,2767,429,504,315,1985,2633,420,292,938,757,2827,2418,2027,1293,2314,843,2234}

    1803

    1394

    Returns: 110831132

  46. {43,130,163,89,196,77,103,55,204,19,199,144,115,143,163,128,51,8,59,212,195,92,88,110,191,47,204,5,5,139,93,189,113,35,197,111,152,108,4,196,126,24,167,80,61,25,1,171,71,44,42,86,123,200,186,70,39,124,216,156,107,79,82,217,118,212,152,141,23,84,110,147,130,127,211,80,38,174,162,37,4,11,172,204,123,64,149,5,211,31,182,187,150,127,178,175,101,107,117,154,204,169,127,86,145,180,47,122,146,204,130,107,102,27,31,50,128,116,91,40,0,59,195,150,4,7,10,185,150,215,83,93,110,121,81,96,204,1,144,37,168,53,192,130,166,85,192,194,205,64,204,61,130,9,177,143,109,67,98,171,193,58,184,111,139,208,5,63,163,34,34,218,136,147,5,152,13,158,52,129,46,13,110,89,24,63,23,168,48,189,15,66,138,118,218,72,157,11,195,8,153,99,156,188,133,119,183,113,198,73,204,126,209,104,155,90,97,28}

    {64,112,35,25,41,28,45,177,121,214,26,75,89,136,53,74,214,2,69,84,207,170,89,83,123,121,126,134,30,167,175,82,136,123,83,140,82,45,69,89,159,142,179,113,65,170,89,134,17,213,142,4,87,145,4,199,140,85,138,143,86,148,105,53,76,145,213,132,15,36,107,181,160,95,152,141,153,181,52,150,21,99,110,57,210,138,209,215,60,29,151,78,62,111,122,16,54,53,80,33,103,132,19,164,168,177,68,163,140,176,4,14,209,160,48,16,124,110,174,3,132,33,7,134,64,72,135,63,101,94,111,63,17,153,95,59,187,120,140,18,167,32,190,24,200,151,35,130,214,20,165,4,167,12,62,22,203,103,15,137,44,113,215,125,106,5,110,49,173,131,109,153,26,59,6,59,92,2,63,59,166,206,56,100,12,126,114,74,24,148,152,64,131,80,135,201,186,187,152,119,161,202,3,76,11,121,76,69,196,189,69,196,69,8,96,198,62,121}

    19

    182

    Returns: 253654048

  47. {433,826,335,2,465,752,1050,271,1037,1048,338,138,162,639,1037,848,1041,415,137,299,190,1044,940,997,958,567,242,323,411,662,808,448,726,98,921,400,845,646,389,238,528,641,278,177,960,605,974,567,211,197,977,198,110,105,634,802,509,258,375,59,10,886,297,975,262,1047,348,662,424,843,460,747,472,199,966,904,786,918,923,178,315,537,453,276,660,882,897,35,652,889,910,177,402,370,341,386,430,487,634,390,91,616,663,555,903,225,244,999,222,844,813,1049,150,766,269,975,495,224,200,1037,335,51,201,47,954,904,769,179,793,10,520,62,1014,46,1005,339,181,92,127,25,985,774,548,928,828,751,1011,368,170,253,327,466,830,604,695,1015,917,91,432,273,211,138,896,504,291,298,147,904,16,1005,271,353,587,838,814,230,50,825,984,4,652,578,994,71,635,836,1006,599,880,422,856,888,969,981,819,623,758,497,655,162,885,301,2,543,33,736,486,14,232,496,591,848,191,367,728,874,769,489,86,272,766,217,594,182,670,309,704,663,160,968,597,833,1027,1016,63,159,594,600,614,25,119,236,118,638,112,767,311,124,400,510,111,970,157,313,890,152,677,172,301,295,644,898,616,723,385,111,1027,1005,800,249,382,2,311,244,950,331,362,582,332,684,446,1037,563,430,10,240,735,318,718,829,583,451,945,12,88,965,853,65,86,172,729,631,425,285,990,1016,566,396,135,989,782,486,1012,337,361,830,515,512,360,713,350,19,917,806,798,687,960,619,5,656,105,319,411,218,295,553,678,371,442,903,851,543,454,84,944,66,571,783,547,889,651,30,270,719,655,245,939,102,830,280,469,111,123,830,639,347,304,471,896,118,1009,109,572,798,441,997,991,86,442,734,362,429,167,466,988,396,758,193,412,63,628,691,64,514,685,885,806,1046,636,489,17,353,777,803,5,707,567,246,911,663,1013,501,295,987,101,862,80,650,326,968,375,769,430,558,430,337,933,862,230,94,620,246,559,517,476,562,335,356,267,303,52,904,779,373,842,27,973,908,1007,597,7,428,12,752,389,344,688,846,560,839,639,353,5,840,1006,757,966,574,889,477,807,1040,892,365,907,417,157,596,213,155,974,656,40,679,815,541,271,525,949,277,973,238,935,284,252,479,541,325,524,461,72,117,333,177,663,396,385,902,436,649,806,425,666,390,138,351,483,776,432,985,81,214,744,446,307,213,196,682,810,435,494,502,462,634,933,302,525,993,8,927,673,649,979,377,686,219,948,489,656,279,297,716,987,1020,116,761,57,404,652,400,683,137,798,865,702,783,307,996,411,463,310,331,662,237,1045,162,929,333,467,797,1011,533,796,101,288,309,715,1035,860,482,514,89,562,440,876,847,49,261,472,983,392,470,1024,58,410,311,669,722,23,645,717,179,158,25,980,528,166,778,462,1037,973,492,620,805,325,20,690,1037,340,920,448,418,452,1016,986,851,603,523,139,642,13,221,778,773,604,675,806,207,835,623,243,987,934,735,699,456,615,521,41,473,73,972,49,950,809,281,59,450,85,747,971,706,913,1003,359,835,129,327,95,365,747,770,21,34,331,449,446,925,481,796,497,570,1031,1045,192,739,528,210,928,488,991,750,824,192,176,799,781,390,697,404,372,431,46,585,892,1005,45,332,841,536,825,958,517,393,1036,965,431,132,202,193,502,408,611,981,494,830,884,906,105,842,963,88,1047,247,393,607,179,557,593,675,38,182,421,705,622,759,938,374,120,59,909,219,661,933,235,692,497,408,1010,896,982,931,181,950,389,105,871,600,590,492,220,393,26,300,84,670,312,559,455,897,59,845,334,890,1001,769,770,626,1006,851,136,579,135,283,382,688,913,978,1005,469,770,17,1023,532,246,75,335,651,122,821,497,39,680,257,846,43,1037,663,967,198,407,62,548,425,621,615,760,174,920,716,1029,33,265,976,79,97,757,64,779,853,475,42,486,717,980,806,410,11,393,110,979,189,682,431,188,688,502,994,404,656,529,921,974,686,891,171,838,881,115,953,187,822,451,861,844,96,489,637,491,650,693,380,522,490,1030,953,277,522,586,44,344,373,234,1018,388,505,289,215,584,60,890,955,544,68,970,1024,241,791,48,14,617,419,57,298,946,561,269,806,540,472,54,901,639,761,390,486,965,532,610,968,317,186,382,17,862,329,551,515,265,478,308,811,735,269,735,56,84,1024,135,861,396,832,1005,742,115,948,1012,576,573,748,71,767,206,961,347,179,897,256,958,867,620,508,571,98,992,439,1001,331,14,445,1027,119,403,207,577,688,878,353,838,493,46,95,749,12,69,186,336,654,648,603,608,648,603,245,100,773,14,198,229,891,657,539,230,931,731,720,1036,255,553,9,412,696,879,587,328,157,979,545,375,1016,196,272,412,550,452,878,623,971,932,167,423,700}

    {203,966,91,22,251,248,434,340,799,518,514,408,795,64,103,3,578,859,597,230,730,1046,596,618,881,1018,666,592,266,233,468,397,515,976,627,354,1034,1005,1052,230,218,214,469,409,1015,967,538,53,557,757,797,568,322,748,681,504,25,929,105,768,194,898,586,150,999,833,440,677,334,1011,1046,249,694,833,650,587,334,698,400,890,526,393,851,1006,383,673,153,675,784,639,846,574,959,176,528,763,485,68,1039,566,1038,175,323,500,349,807,79,406,736,413,365,559,55,769,259,431,601,470,150,906,873,720,951,664,427,515,845,390,639,546,525,803,712,458,404,851,567,482,1032,1025,102,1050,787,226,812,709,624,798,272,472,697,415,743,834,1012,74,285,464,1050,373,215,1051,503,140,1013,138,372,559,665,951,804,1019,491,342,169,889,837,230,668,519,314,527,543,292,891,733,121,643,14,318,959,715,66,621,334,13,899,14,158,868,1051,1046,683,1005,893,1022,475,298,67,2,676,529,655,571,897,92,801,119,571,298,818,638,585,775,10,342,331,510,639,128,108,951,564,625,995,506,962,375,238,727,320,134,813,18,329,204,121,668,308,1041,400,480,180,513,404,969,78,753,143,176,683,271,425,24,231,756,1036,1045,230,547,877,309,157,149,13,833,693,670,326,386,823,939,17,688,154,437,404,140,676,684,1006,425,109,385,514,324,790,889,14,652,958,862,14,921,424,14,992,430,954,671,208,499,842,260,179,426,861,836,220,400,309,816,915,403,922,1040,394,221,201,457,581,539,603,961,552,718,382,942,860,227,506,19,382,708,21,736,296,703,87,927,328,331,45,688,714,305,689,15,28,1030,139,968,799,988,679,133,648,603,866,952,933,901,294,311,149,321,393,779,428,885,937,675,428,430,701,422,698,765,82,598,541,530,161,991,1009,130,526,173,219,167,267,198,20,131,47,474,282,317,608,640,1037,923,404,425,1002,620,974,255,678,366,374,472,513,174,752,339,529,286,210,557,594,947,541,924,608,597,352,672,969,872,842,968,754,344,712,296,593,255,1009,522,343,957,1016,310,974,1048,837,121,815,725,99,854,381,367,208,941,294,956,735,980,621,864,27,416,98,103,789,471,163,68,647,759,598,116,233,169,788,749,586,633,455,745,1008,991,243,660,274,564,243,399,528,547,511,311,1048,29,926,70,690,627,914,473,236,732,70,548,6,243,1037,815,587,309,55,997,411,1048,881,927,783,827,752,210,951,933,872,1026,589,97,752,965,114,216,1000,808,741,579,110,334,887,515,730,608,612,207,542,17,815,684,151,1004,653,90,964,580,1045,311,265,516,173,198,164,414,357,609,256,14,853,165,193,574,293,83,516,506,340,212,505,120,606,149,1029,268,250,844,678,901,76,139,14,792,133,736,447,723,1013,737,455,67,620,1008,732,1009,168,660,661,632,472,330,998,556,603,727,532,1045,792,173,549,401,522,148,698,86,404,806,363,495,889,904,643,94,7,446,969,461,402,848,597,486,930,839,927,275,456,36,1028,372,666,878,219,828,911,340,176,193,581,666,569,926,781,186,920,431,855,67,167,546,789,535,981,553,979,472,248,181,721,338,497,7,843,602,918,335,157,1008,735,242,59,98,728,782,33,230,404,658,711,254,540,709,515,762,424,435,629,183,287,727,356,146,819,726,420,207,747,59,104,391,232,825,152,894,1043,184,324,459,943,338,561,37,688,870,622,493,484,263,362,521,210,369,622,630,492,233,125,752,209,498,567,378,579,107,415,723,264,371,1012,545,111,511,455,51,97,613,405,185,755,579,425,831,462,718,735,667,749,726,659,51,972,436,604,126,724,857,849,996,43,852,93,785,889,1048,231,811,534,59,988,384,38,381,901,218,346,89,317,671,335,325,639,306,194,468,150,592,327,477,1028,541,208,234,361,514,841,600,106,444,519,393,114,362,689,922,395,626,6,113,309,372,86,80,187,145,468,660,1016,40,430,443,738,256,421,798,438,976,554,919,1042,1006,239,772,863,595,290,358,588,1019,31,167,627,500,297,105,609,140,869,156,532,574,981,912,437,820,355,812,1033,669,489,817,495,512,207,881,1016,507,61,858,187,634,604,667,533,1017,349,714,752,331,111,142,454,691,408,59,851,847,141,929,557,575,474,764,551,489,559,316,580,16,259,205,135,65,656,884,379,895,746,461,356,499,198,1042,77,529,740,883,255,986,376,287,548,550,999,195,387,1048,674,174,771,0,302,532,597,228,1012,944,512,314,408,447,541,223,900,114,1032,669,710,687,567,322,691,144,533,750,398,18,850,875,923,84,623,531,497,794,311,32,939,759,420,571,363,836,1,624,1015,489,433,580,999,905,889,655,900,496,804,615,267,511,248,780,64,1012,364,107,882,245,499,668,571,345,1021,833,263,233,912,412,1017,465,670,936,311,565,218,916,171,948}

    271

    815

    Returns: 432745083

  48. {414,68,21,436,454,20,321,378,97,116,146,249,438,273,103,129,430,300,83,190,220,418,202,80,53,112,222,433,455,220,12,113,38,57,287,305,264,322,169,401,19,402,189,421,240,359,184,50,112,146,341,250,398,39,27,292,156,397,181,239,452,71,420,405,63,137,370,311,279,15,89,6,424,130,31,50,358,58,406,151,323,418,444,189,287,421,175,50,8,264,264,318,65,459,95,158,251,45,114,152,263,443,34,121,271,192,222,266,136,402,440,238,66,239,345,279,252,434,216,52,315,25,308,137,351,293,333,443,410,423,372,192,0,159,386,324,369,338,69,370,114,85,106,361,103,353,60,248,204,119,100,174,331,365,58,279,28,129,74,438,251,406,326,277,203,58,318,255,240,449,141,266,370,257,423,52,150,418,64,383,450,84,395,50,446,153,111,144,139,244,86,193,370,105,80,400,147,129,266,219,175,357,200,292,205,428,131,352,20,254,82,179,130,438,241,14,94,426,409,123,109,194,188,115,82,174,30,343,153,447,405,36,279,112,235,274,4,243,177,2,60,428,148,283,145,352,239,375,393,253,37,127,174,160,412,69,63,17,242,176,358,26,206,146,400,222,264,146,372,149,264,242,203,283,332,241,124,277,23,70,248,213,203,425,239,389,251,0,157,147,247,91,175,118,52,79,113,459,213,370,359,405,348,142,452,10,77,159,149,103,258,86,203,298,210,225,301,175,67,362,260,447,275,30,385,17,89,12,337,190,86,163,306,171,186,409,278,403,356,126,115,337,100,232,185,381,357,347,180,411,442,422,88,172,452,307,95,319,280,153,21,138,108,67,103,268,74,339,212,79,106,260,21,384,152,315,381,73,320,321,53,286,43,6,284,22,148,53,366,330,4,182,190,140,176,288,308,78,303,8,357,163,12,327,295,107,223,421,407,248,278,276,55,94,80,5,453,40,173,321,137,42,1,154,365,178,20,31,312,438,65,128,423,438,148,304,65,307,342,70,29,27,61,195,214,438,427,314,258,445,272,157,450,307,416,90,315,405,304}

    {408,123,418,12,434,42,67,267,352,20,264,13,390,261,236,48,149,439,63,247,159,290,114,130,413,259,368,105,436,196,357,387,349,80,245,373,291,262,104,256,220,211,14,404,341,313,103,305,322,371,419,317,130,455,325,117,456,232,390,458,435,261,425,251,23,138,265,176,420,57,440,337,247,172,54,63,209,294,120,31,286,89,169,302,407,37,300,264,76,153,230,407,457,363,13,87,256,365,115,92,229,328,337,122,61,227,451,175,379,42,165,83,42,9,82,259,425,451,193,143,187,49,164,289,53,442,347,283,135,405,151,455,233,199,96,38,184,381,237,374,162,5,94,438,108,98,429,200,0,271,438,305,56,4,200,35,49,12,47,155,309,24,143,80,305,400,3,42,258,26,278,315,337,200,344,161,378,377,185,145,299,213,419,408,72,441,0,317,85,0,172,412,171,308,26,423,365,380,258,185,234,450,191,302,145,134,246,349,46,385,349,243,31,42,230,75,149,153,369,381,185,145,326,31,168,350,337,421,14,390,217,42,7,431,388,330,391,394,38,108,243,344,32,155,304,102,198,409,130,287,96,396,170,22,158,53,412,346,216,336,61,24,390,125,156,38,357,85,335,394,438,378,286,72,393,354,151,201,221,41,282,33,183,101,240,437,81,153,297,215,18,196,142,334,207,162,217,321,423,235,246,448,158,281,417,31,408,38,432,212,236,93,355,111,432,181,261,11,38,439,364,224,103,329,151,116,190,223,67,317,44,226,6,167,31,276,283,130,410,66,99,301,285,279,153,296,270,61,268,126,88,261,27,353,61,133,171,361,112,258,228,166,121,423,96,420,410,192,316,269,399,175,155,295,385,433,158,221,142,376,31,231,315,118,388,280,145,62,408,131,229,185,163,132,130,224,340,94,349,100,259,382,130,67,89,204,110,56,367,415,40,208,42,307,131,51,352,379,373,127,90,143,29,270,438,458,407,310,259,25,255,8,325,325,74,365,16,132,77,436,438,444,175,295,172,360,182,134,389,227,247,189,392,197,44,0,59,149,218}

    309

    157

    Returns: 401802116

  49. {1625,1508,419,395,1066,798,114,1098,526,919,1959,1478,129,822,1343,596,436,1510,1180,765,1027,1154,1134,1825,1160,176,918,1583,1584,1,1811,234,381,1464,2009,1154,127,174,379,777,193,627,1349,57,1964,1646,1216,18,1541,1834,1302,1177,1532,1421,1692,1679,307,1116,1690,1674,1621,347,656,191,1844,1772,2100,1810,1481,278,1370,1970,1110,194,2006,48,483,1729,1752,1220,1103,1398,1122,324,17,2100,255,290,136,127,101,1279,1733,145,371,1002,897,1032,2053,479,1404,177,1479,4,2127,1937,1095,2139,1954,1139,338,590,833,169,1630,2084,41,705,1783,1166,34,72,529,400,1518,1270,97,618,1443,1931,1135,2092,1074,606,1915,1971,22,1989,523,398,1408,1001,692,213,515,1677,2080,1410,113,851,1399,1912,818,1869,182,209,368,573,1689,274,1221,1050,1275,98,1772,1139,2047,2029,763,2056,1858,1052,1794,1603,65,1227,1671,87,1070,1992,1815,1315,185,1717,1126,1036,769,657,1978,1736,1866,1728,1528,367,448,787,785,590,1330,1848,446,1825,1066,260,107,463,495,673,1235,1747,2027,646,1222,341,533,1672,1650,1560,1514,785,369,2030,742,0,351,527,1789,1762,121,91,1134,1329,242,1311,642,1400,1809,1826,277,7,786,2030,404,852,1313,201,833,1694,1359,1281,377,1997,142,588,745,215,1550,1732,154,1614,1632,2047,633,1898,1525,283,2100,343,635,848,1566,532,1145,1797,2072,1357,669,83,165,112,140,1561,944,137,218,1534,757,1315,510,1963,1373,2099,243,2061,2007,1863,546,887,50,796,1984,1819,909,1512,351,162,449,371,536,409,288,624,333,781,1545,1962,1397,2116,798,1536,1324,868,1811,1544,1154,1135,126,1018,2092,1355,1100,1584,1627,687,1764,222,975,1383,732,1772,607,1861,32,154,1095,1531,1552,1361,1733,2068,1847,943,1800,1213,180,1721,718,2145,1993,713,884,74,2126,2091,2,1168,1389,915,2107,2066,1464,67,1051,2079,400,835,2040,568,1653,1838,1580,815,1271,917,296,428,1898,1521,2142,1660,1485,1866,1697,1986,1382,1900,1821,2106,130,521,708,1678,872,790,1665,315,639,485,710,1681,1076,338,1821,1868,510,1096,1792,128,1565,1785,1922,1759,98,1798,827,1079,1638,766,1096,1458,112,559,1241,355,1306,136,662,819,935,314,927,1591,488,1907,216,617,949,503,2076,335,2015,1,638,487,1314,1414,1725,960,1535,1246,1228,1906,126,2077,379,476,432,1571,241,1412,441,1131,1885,791,1013,1832,1184,2116,697,1703,199,77,1378,1993,521,928,437,666,2120,987,85,1206,2080,1800,652,1967,567,1876,657,1454,595,2083,716,1238,2110,918,2002,1302,1674,1578,1730,1043,1286,350,386,891,1480,715,581,1477,166,934,1060,1280,1750,319,1569,2133,256,2003,1103,239,1581,593,64,1938,2025,856,2118,1304,410,558,916,151,2028,634,128,1304,1138,1069,1933,470,1349,1010,1776,732,1227,16,464,2063,1327,1885,936,320,827,1103,542,1177,1163,1599,1141,1529,1039,1789,1639,1323,1845,1224,1929,731,1149,1767,1333,79,248,1844,607,1,713,1814,1849,1365,1361,1272,1199,271,1190,543,1044,1700,1708,1610,192,651,1843,899,1894,537,492,1189,252,57,7,1050,728,553,825,1544,972,575,94,478,694,522,1177,1478,2072,682,582,241,1637,1217,643,1699,889,1056,947,1395,1341,1791,2048,1666,326,1138,551,1302,424,1848,553,965,1144,260,944,251,1300,1527,1987,1763,1792,1328,2011,2108,925,219,1743,2011,481,798,426,152,1116,1417,275,1648,2059,1789,1552,1441,1697,724,541,1244,1469,1549,1582,904,1371,1846,1312,801,1881,1198,600,1334,1448,1682,359,1233,628,600,295,1717,2091,52,138,1097,1937,2116,725,1086,1770,301,665,434,1050,458,1323,1189,1997,1984,780,1159,1977,425,1754,1705,2084,2094,1303,264,435,648,829,637,1981,453,903,763,416,145,1584,1467,264,146,795,2108,900,437,1557,504,721,1602,1782,1064,90,1194,341,1936,227,546,120,1612,1103,1559,994,859,1346,1827,921,124,376,1935,1306,320,1333,797,575,1331,1428,584,494,310,767,1714,1550,263,525,1292,1529,1264,1001,2062,1661,224,626,1787,1438,7,983,1373,952,1883,1408,1654,894,452,35,325,387,546,240,726,1309,95,295,219,811,489,546,1621,1108,395,1007,867,253,749,1461,1187,224,1191,1166,1867,412,14,205,749,341,1831,484,1103,1229,1141,1319,1712,1181,1012,195,7,1085,781,2116,2032,1562,1961,785,1842,1104,1721,565,1712,2068,774,1656,1565,1503,1795,1464,870,9,330,306,1999,1014,922,853,1303,164,1629,879,489,953,417,518,654,1603,825,2026,1034,1430,763,1276,1826,1080,682,261,1863,1166,122,1192,1096,70,1268,1575,18,514,2068,500,636,341,1234,500,875,837,177,1581,584,463,1072,1213,1592,507,1922,1058,898,1683,1157,414,1910,186,1056,1155,2127,1727,990,596,749,86,1029,127,1984,959,1275,926,1405,1354,525,1519,1068,1915,1564,2109,794,296,244,1560,504,1538,1126,1488,689,1523,1924,98,699,1840,2027,1949,1946,514,554,905,717,1322,472,1416,2029,270,353,316,2017,579,14,572,2007,1159,1055,771,1658,2115,1932,575,732,874,568,2021,862,1660,1250,881,1923,403,982,2008,1663,2080,1501,321,61,937,1106,949,1960,2081,965,1337,1179,636,199,1696,1001,2073,2105,473,1061,302,1789,34,1799,1430,302,508,559,1882,1868,112,362,1346,1716,1564,1702,1463,915,682,486,1455,1646,1384,666,761,1363,2101,1356,1497,340,1138,1787,2012,1053,1422,17,293,319,106,296,1756,1826,902,1002,1707,2043,1416,304,1492,752,1878,281,1274,1914,438,68,197,1154,868,488,638,1888,804,1945,1603,690,1963,11,763,1210,1419,346,621,526,2142,837,1896,2022,771,478,246,571,1409,47,1872,279,993,1801,995,1418,1013,1826,749,1768,557,1891,1753,1812,1706,400,11,5,1424,810,226,731,1292,1318,729,268,2132,871,1759,984,1935,17,873,1263,1132,1030,2024,527,437,1814,2062,1763,555,1590,1875,978,45,1606,1222,160,1652,105,2129,463,1852,1125,1204,280,494,84,705,1056,1391,976,235,117,2108,1826,1240,51,912,2112,1748,966,1828,711,701,1959,1563,1334,1636,183,1208,1165,531,1653,553,1243,2052,1938,941,1962,1990,1077,1433,580,254,487,491,1217,34,2020,1930,1552,671,352,1948,204,429,706,224,924,691,1907,968,597,665,613,1313,286,536,1882,2071,1058,1804,161,1317,1320,679,841,1531,751,462,807,749,1706,1360,1341,1518,2038,28,796,855,242,1894,927,1774,2022,1954,14,1117,1704,971,802,1259,1239,808,998,1543,1250,1031,360,887,503,1611,727,322,1143,295,793,304,1994,1446,2135,712,856,1628,723,1534,1744,1944,1447,844,1910,688,1912,1402,2141,1811,984,526,1401,1726,1524,1132,92,1564,544,246,1733,654,1082,1807,659,667,411,1182,1202,2128,1287,1438,1396,1015,1153,43,2085,1326,1070,2102,1509,211,1842,1860,1766,654,1462,878,1041,101,1572,854,463,1908,1629,1358,2046,1263,505,1750,447,161,654,1046,903,1750,1392,445,1502,216,394,2143,1777,425,2114,1281,440,1033,1966,1771,1204,425,1023,1247,598,80,531,217,2006,2040,1155,760,749,127,734,1162,747,15,1132,195,1743,2040,728,894,2059,1656,1292,1254,1740,2057,1559,747,173,1894,746,1787,50,1150,2137,2120,1355,1843,224,1833,1672,835,1955,1428,1728,1941,885,1662,727,2021,1737,1557,2021,80,909,2108,1224,2053,603,2033,550,800,1862,300,182,709,1507,879,216,767,775,232,1909,1609,420,23,918,422,1841,1142,271,2044,521,323,629,1653,1917,1468,81,1291,1399,103,753,347,1119,284,873,1135,1856,2093,910,1408,358,1104,1345,176,2051,744,1893,1972,792,1454,737,1840,997,1657,1930,1476,858,2129,1960,312,83,1688,415,929,1166,1802,69,293,436,664,1848,1850,1092,445,1460,222,1903,666,311,1792,1879,1977,114,1510,2071,1901,2091,1621,927,1930,1032,88,1019,1166,934,1142,939,443,619,546,1145,1834,984,1907,456,80,861,53,1908,1907,1315,1985,1530,20,736,984,275,1574,695,1840,1908,1568,1525,1026,1824,427,735,888,1587,997,1132,1203,602,1424,2027,2014,248,1515,437,1647,861,2077,806,175,2067,916,262,2049,2132,734,1004,506,501,36,230,1428,1454,1374,1818,1837,10,1649,1232,1223,2135,167,592,768,1919,247,1346,1273,1172,1989,1390,1643,570,423,959,861,1140,1547,797,1631,1724,78,1445,2050,1811,672,2000,2126,98,1011,1270,1613,1384,587,1032,91,132,624,92,2130,391,776,952,282,1984,142,1791,1728,478,965,1621,1345,354,1203,852,547,257,146,1899,1421,665,344,98,2140,280,1925,1932,684,215,999,612,399,1972,568,150,1824,450,1166,200,1792,178,711,690,1668,1424,635,525,576,275,383,2062,1332,955,1118,1515,1257,1896,1290,1984,602,1998,568,1228,782,661,1620,1438,64,1162,1700,2087,2091,1282,1798,1755,76,1217,144,1086,1624,1042,1983,842,467,1454,859,1265,1625,634,332,1837,506,1921,1625,948,1226,1646,1230,1213,346,2023,101,2037,877,1944,1660,637,248,1857,831,2019,1870,2093,194,1632,470,87,442,1789,1451,503,659,2006,1574,755,1959,76,1511,426,2115,1156,2068,874,1646,2079,608,640,38,1231,1047,861,190,1218,1663,1107,2064,719,1504,677,122,1556,1127,1118,1534,983,1537,466,163,5,2047,1532,1199,1442,667,828,569,1141,904,254,918,295,987,1299,660,1417,1027,1631,1976,154,905,568,1103,733,2078,1680,1296,1070,392,1345,1602,1599,31,1812,1187,379,338,1761,714,1990,1464,1633,516,1017,310,1386,826,1009,667,2022,1262,76,953,406,1199,1721,1905,1162,347,297,1603,1709,283,1582,1311,1425,792,1772,2083,1125,954,1638,667,1017,783,1560,871,2116,595,704,1297,483,1070,1166,210,563,1245,865,1728,259,68,2082,1040,1883,2016,870,748,1674,376,1257,390,1869,768,927,1634,703,347,1885,833,1278,1573,1226,931,632,1587,1823,812,470,246,1453,1470,1064,1268,612,202,806,16,1357,210,1393,739,1057,1673,1155,181,2131,2086,1473,1614,105,2022,1897,1113,477,1297,1337,1001,1043,972,1035,59,354,315,250,607,176,1018,2024,1052,1325,1806,232,2052,363,421,932,2108,1307,1808,1874,356,94,698,1322,469,1633,1535,1198,365,1788,1228,93,1038,1498,467,588,871,1629,1638,2130,1508,440,2120,763,430,2108,912,1424,1595,507,94,370,1017,883,306,822,1121,916,492,805,780,915,1424,1912,632,231,207,1722,1765,719,924,2035,970,1685,614,962,159,2074,861,1948,807,1080,392,1308,1336,1084,525,2022,344,1037,732,884,546,1814,742,80,2039,1017,134,1357,1005,1907,963,1907,708,498,1749,7,845,1414,844,1960,1285,208,2119,457,1827,534,1423,855,172,679,102,635,959,585,1172,1833,1125,346,475,693,184,156,236,1506,1301,940,53,1642,807,642,1486,940,487,572,456,205,904,848,1630,1236,1081,1918,639,1324,1275,1716,1130,887,1701,1175,249,1266,1020,1257,1227,151,339,1436,1923,870,2114,1570,1920,111,1375,322,348,179,1185,1772,1567,1202,2062,1594,1207,1335,135,2091,1561,1999,18,409,1152,317,1711,1147,403}

    {1796,1814,252,1704,2134,374,1364,47,1916,1154,1333,1192,139,384,979,824,2141,1992,909,1339,460,1334,454,609,426,495,904,550,625,2088,1653,1096,1617,617,1965,160,1042,566,2036,2093,303,1029,397,1814,1148,1300,5,1352,405,1952,635,2067,1908,1466,1814,526,765,1923,1803,686,704,875,894,972,1126,1464,1439,2005,1166,722,1723,2064,1365,836,1274,255,930,1781,1681,1417,1477,33,195,1031,121,1321,63,1748,72,1154,1615,1137,1457,1651,1230,503,1574,1099,2045,2097,525,24,1112,537,123,276,785,1011,1372,143,216,681,1348,1193,1700,463,210,1110,382,116,944,1083,864,1881,2,354,1136,347,1392,1225,1011,948,1469,2077,1240,140,1363,870,275,1999,1726,2034,1922,567,342,854,133,1158,168,1993,2075,1760,786,1852,98,493,781,1415,770,947,727,1303,896,1388,2004,847,1368,556,34,917,825,1490,305,1166,44,295,690,373,379,212,633,153,2128,1043,240,1986,2053,1030,69,201,630,1253,1417,211,1398,1986,831,1462,1289,487,745,1327,1399,190,917,685,1600,599,1616,308,1358,1464,1896,1270,80,1214,1513,1741,203,1050,1120,237,211,275,1811,479,217,1989,2130,1604,1375,2113,813,1260,661,1228,1613,647,154,269,214,1551,1721,674,350,1278,344,2077,124,595,163,1112,58,1674,759,1987,1323,385,2122,889,611,338,1167,2042,160,1892,370,915,1494,1243,1684,1473,503,871,1813,1786,370,678,1415,1534,582,337,1087,2027,2004,673,567,600,11,647,838,1749,595,1048,1472,822,432,1707,700,428,731,989,359,258,499,818,1167,1021,1790,496,1273,346,21,224,2113,997,1305,1133,1093,888,1239,1641,1829,1618,546,182,1693,1810,677,810,1032,572,518,1990,739,1566,1723,109,296,1597,1991,133,1711,2098,1758,279,859,2138,17,1369,2143,1054,1843,1950,581,1120,1095,1025,1999,1998,1982,73,123,163,1779,1080,719,683,50,672,1907,1984,175,1219,1934,1127,1362,98,1539,817,1552,2101,906,907,665,913,763,642,1738,961,1941,1040,1776,1358,72,1814,415,1934,1586,1423,1261,1646,396,828,1912,1607,281,200,1777,754,711,1073,1522,7,1951,553,328,441,1380,575,856,992,1431,778,666,1598,498,507,1990,617,1965,1176,224,27,1731,1019,1517,89,241,686,847,266,517,1799,1907,560,1118,1291,1894,1390,1398,1383,420,603,1607,637,618,675,34,571,163,1415,938,882,1437,225,1565,583,1401,966,1014,1365,1255,354,1833,623,1658,1853,464,1533,1116,824,2003,721,535,0,7,1913,1555,615,1557,187,238,1569,1556,53,635,2093,345,1178,1222,1161,378,831,2124,1921,1830,155,1715,172,812,1370,225,221,1159,1656,1156,1723,42,1691,103,1775,1389,1241,470,957,1832,285,194,437,763,1659,125,785,959,579,375,1464,987,397,1483,1220,1137,552,666,1237,620,3,330,2017,935,229,784,779,1459,1513,1566,1056,1647,1445,1724,1423,1286,698,1623,1541,1984,371,25,1520,1554,479,793,536,164,308,1452,673,2054,216,1240,495,1814,1467,42,1066,1718,732,1477,647,907,1049,242,1394,1855,1589,480,278,1392,1958,1042,433,1243,1096,1542,1721,1876,924,1625,2144,149,455,916,1837,152,984,918,2070,1647,1381,2144,851,763,2078,1928,607,1152,832,1954,265,2091,1647,1923,1179,1347,1283,1294,1472,243,1366,1752,78,2017,461,798,1183,1423,1861,2013,1147,1340,803,2026,2016,1268,541,1444,679,938,1700,973,236,1094,310,489,1773,1249,1178,206,1817,1942,338,909,1013,2071,782,1816,727,641,963,652,139,553,347,621,1151,494,49,1052,1738,1882,1811,1585,481,66,1791,1495,618,140,2055,1174,574,977,1778,1504,287,1690,1680,964,66,1599,1119,1491,756,1019,470,566,1130,1134,1927,246,1940,1613,2121,382,579,958,506,1213,497,194,2145,1868,344,1751,787,1089,401,1850,436,1490,1582,582,1373,107,1659,352,11,750,770,1560,455,1344,1615,716,2145,1593,1464,929,142,1999,1162,1154,1982,1110,748,1749,160,1802,731,185,918,1486,124,1356,99,676,559,468,743,1313,1056,1426,943,1335,426,1251,1789,1752,1662,1182,744,569,1050,1540,785,578,482,2053,946,171,147,1956,380,1126,357,1519,587,1677,2010,726,82,1632,1772,1276,96,1907,1435,749,1996,267,621,346,899,163,1050,1007,1028,691,1750,1981,1127,1703,1949,1526,502,232,604,782,1066,1211,17,960,1995,7,195,165,487,1689,1729,220,884,1523,1951,980,1763,1551,1090,1811,1959,2129,487,1293,2123,1166,837,2046,869,1456,649,1960,2114,1577,1075,1213,943,1975,1784,646,163,1534,1310,1056,881,526,881,389,984,1966,1119,1256,1667,1748,572,838,1301,857,985,1353,920,250,332,631,1687,432,370,870,1489,968,922,1269,439,266,663,1743,1338,1082,775,287,98,94,361,2095,754,626,107,1386,1079,1147,1877,351,1999,1172,1590,964,101,1834,310,918,272,622,866,1969,292,512,1218,1096,1537,470,846,865,351,1863,911,1686,1605,747,1003,1615,655,1324,206,1430,922,1601,1704,216,375,675,334,1190,1655,1902,1653,1905,402,101,551,2077,944,1187,740,1670,2101,904,591,626,1826,1716,418,56,1739,662,768,1465,1928,1105,1713,1780,487,1980,248,1705,526,100,980,310,805,922,1960,956,490,1040,463,2110,1429,1006,720,1967,1284,1841,462,611,1215,1387,1000,1640,1604,890,843,1240,568,799,703,2043,1673,1979,961,743,1569,1206,751,503,1394,2032,597,1757,1818,1399,56,1124,114,1350,1948,1552,1720,110,140,2026,632,1045,530,1085,46,701,1925,531,1484,1101,1630,617,1063,672,1350,2131,1335,1146,2096,1341,1022,1447,1489,1201,1606,1968,1417,862,1559,244,751,1676,971,1886,2092,1049,650,1111,513,1096,115,1215,471,1705,2103,610,1698,873,1865,782,1171,2062,918,1304,394,1903,426,1749,333,1342,383,1607,1626,1833,485,738,1782,1890,519,2118,1172,1524,1656,1481,956,1906,568,1935,950,1247,1206,2117,1151,812,1265,682,1329,24,157,364,1833,586,1154,1507,966,1082,596,1440,1838,386,702,2039,2068,393,371,1132,1762,923,509,1044,433,1917,809,1462,1397,1377,917,30,270,1359,1553,1267,431,2136,670,2017,1450,871,381,901,1664,1147,92,644,209,546,974,98,926,1196,1586,1065,501,965,1370,1305,524,555,1064,1752,937,773,1560,1771,121,759,299,1994,351,1645,1324,118,812,772,1619,1641,1475,1103,1433,843,430,142,1471,1810,539,135,823,564,634,1228,1988,392,1292,170,1973,539,1854,1035,1520,936,1320,487,1046,892,2089,1678,455,1943,672,2055,54,522,1693,1942,1873,1731,296,1821,2047,617,2031,607,969,746,2065,1863,993,1953,176,1759,160,855,478,11,1546,1737,318,1798,1949,1429,741,1115,1482,211,153,403,653,1367,1548,434,561,1376,1091,2035,1534,2012,1894,647,203,2069,635,1688,1079,1198,1300,482,17,60,968,1644,1327,1961,1640,1431,782,1961,1148,74,1494,632,26,1851,1564,1170,967,1519,2018,1608,2022,1212,289,1882,1721,131,2058,452,1580,1992,961,142,1403,1187,1907,1500,1929,1123,1793,568,107,496,474,1027,834,1907,233,1057,1258,1486,1705,1656,1030,149,1741,865,1868,1880,39,1746,696,1830,11,584,109,1531,21,7,80,2030,428,740,1826,60,1899,797,1694,628,15,1938,1406,158,1393,27,16,959,1493,182,2091,1008,396,1621,1413,589,2053,305,996,1828,1516,1178,420,397,1323,863,1208,195,1333,948,1926,1432,991,758,25,449,2025,1550,549,652,8,633,1717,1635,1559,342,1592,417,2068,995,359,560,788,273,254,582,731,1747,461,1663,537,1088,1463,1835,1074,1957,1102,1439,835,751,1094,2115,1749,175,635,568,54,57,1923,1955,730,1086,2016,1447,574,1735,1690,1110,1762,1498,2060,417,309,1328,847,2011,1016,917,1228,164,1103,661,1904,1573,435,1907,642,588,779,1266,600,1876,2055,1407,1851,546,1467,172,1278,1267,601,820,1474,1954,886,291,545,40,1749,1610,1505,1895,1842,1558,1304,398,953,591,908,62,196,716,540,940,1204,1000,1553,104,1137,973,65,1248,890,528,2022,1659,1095,1864,1831,2009,765,803,597,44,1228,2133,949,1469,816,1890,265,982,55,968,880,1646,1080,538,613,1575,198,1059,1588,1294,645,2099,710,459,1160,1173,906,876,1548,1247,1438,348,1062,1128,1786,1780,698,1582,1350,1130,944,1147,1424,1178,1295,1249,176,1250,2061,1500,1828,2080,1186,645,1239,1354,849,1487,189,1607,1625,634,1228,520,2048,814,1716,1316,743,1169,195,1759,501,605,1018,575,1205,1197,627,489,2016,108,585,2072,1071,1937,594,767,1618,1,1288,2102,1175,2129,1868,1236,29,963,1449,1188,310,1186,1655,194,2028,795,53,352,865,536,719,1914,53,1734,2071,1242,945,529,705,2080,839,958,764,388,413,774,1067,151,1430,2079,953,1499,1193,1248,583,943,1719,819,1742,1286,395,1136,1911,859,1698,1200,1030,12,656,50,2024,1869,107,1721,1974,855,1453,587,396,659,1002,689,11,1710,202,1277,953,19,1340,1082,245,1390,1195,1826,855,557,1398,1884,1554,1822,2034,529,2052,549,850,336,1944,1251,1937,1932,616,554,1251,1235,2132,1938,584,799,2052,1814,762,1947,406,668,2093,37,63,410,1338,895,758,1552,1821,691,1619,666,1778,1923,1298,798,223,1669,1784,1819,789,977,986,1769,1917,807,665,2010,1871,1080,1933,1464,335,172,1078,674,34,267,1406,1959,966,806,1844,723,1839,153,1695,1000,119,1511,878,1178,17,7,296,1323,1860,349,1939,420,548,979,313,1420,2015,666,504,1845,860,1662,1503,1566,942,231,1880,1936,1800,1605,1959,56,1441,422,139,848,113,210,1534,577,840,13,258,2068,851,1486,996,380,1299,614,731,933,164,719,568,1528,1887,981,1394,865,548,1289,1228,951,1930,1638,868,319,1477,1229,622,1050,1579,1778,777,1307,527,785,568,1908,122,1020,1711,444,690,1424,1351,1324,1182,2068,893,1622,282,266,1315,195,976,2099,555,2029,1629,278,1863,1236,9,403,148,465,1836,821,183,1805,425,193,423,1423,947,596,1114,750,1965,1197,1742,1898,1998,1874,1013,1774,392,451,2051,854,253,1462,1906,1,380,869,1398,1294,331,731,830,1434,1229,472,372,983,343,1544,1708,878,867,1345,1960,953,1385,204,1038,434,71,747,1745,496,978,1733,287,1226,1333,1789,989,1502,1820,1388,1675,1164,980,348,2111,2031,407,189,195,1152,228,163,327,2145,310,680,1134,814,385,1213,1596,1158,1058,1833,1835,2125,2090,483,1770,582,1029,49,1496,1292,726,1454,632,1439,546,1459,407,1791,799,716,331,913,1315,914,1167,818,1770,366,1041,964,2047,188,1889,658,980,1544,763,1075,1583,165,749,656,1024,84,1765,1830,1227,313,292,1372,220,1733,595,75,1220,329,988,1379,1754,1286,1414,888,511,6,1209,1859,1765,1898,430,830,1309,408,421,2007,1129,2001,2017,845,732,265,47,62,1547,1982,1398,1014,1923,707,2006,436,2099,2041,1196,665,2020,298,1411,443,2013,659,1227,1252,2104,1937,1230,2084,2100,1576,294,876,24,1083,806,562,412,58,572,1759,141,831,1636,1225,644,771,1109,1158,44,852,61,682,1837,1427,1723,831,1424,927}

    1450

    531

    Returns: 645864933

  50. {2517,983,1960,1343,1724,2701,537,597,1046,1434,295,1418,208,1626,600,732,2192,1143,1403,1542,2540,78,1011,1415,2165,2311,404,2371,719,2530,1737,2448,481,1003,1202,351,1656,2176,601,2684,2437,1470,1247,578,2439,1662,2289,1455,1658,92,913,2025,1191,1157,1796,905,2532,1482,439,2186,2525,2251,239,98,2043,345,823,1240,962,1399,2577,566,1016,148,721,222,2052,2546,928,463,2495,912,2588,288,1548,2479,2235,1351,355,569,321,2230,1045,1922,614,981,321,2068,1669,1396,647,1691,526,1366,2536,2271,250,1225,1265,10,2553,1686,1247,835,1652,654,403,853,1472,2522,1533,436,2776,1136,1040,1060,416,501,1335,1417,1210,2158,959,633,381,2759,895,1698,196,1017,616,1071,2213,2348,2328,2208,1730,2032,2117,2752,2359,2667,2392,154,886,2525,2215,2756,1248,1463,14,2236,1363,1202,21,155,840,279,2658,2048,1282,1585,428,2484,424,2420,2139,2502,2539,269,2381,1076,677,1842,2401,582,709,1474,82,1753,614,1605,2399,1836,2013,2535,2440,856,1681,2452,922,718,983,700,1325,161,2711,1869,2022,1393,2178,1780,1786,2715,755,2422,2591,1523,2330,2496,1602,1218,1742,170,2444,1617,2306,661,2595,1381,711,1716,422,883,85,1374,1040,2486,2254,89,1915,2366,726,1356,2284,206,1453,404,199,361,2020,860,1540,820,2039,2571,1668,2538,2482,598,393,1871,640,2532,2113,1011,2727,58,932,2419,2027,1825,328,978,811,1604,1649,1477,195,2404,2005,54,578,1880,1036,1752,944,904,2122,784,736,1229,1097,1882,1364,1906,180,1421,2629,1825,763,566,1678,1749,2224,796,2679,496,1828,404,621,2636,2717,680,2242,277,1500,1148,272,20,2531,1608,2255,2626,2034,617,2692,1110,765,1372,997,2093,2500,1001,1934,1035,985,1141,2483,551,590,2671,2134,1976,1825,1367,2346,741,291,2653,1581,166,1591,1526,983,1243,1187,2267,1644,1420,221,2460,322,1829,830,900,456,1300,405,292,1755,2382,1311,438,1679,583,2401,2283,1727,655,10,411,1273,2132,1992,2444,1749,2384,586,2123,2569,1364,49,1415,2621,997,1972,280,1949,1165,2059,2762,614,2357,2526,2300,299,609,2120,1889,109,2348,695,905,2489,1747,1858,1050,201,175,1908,2402,974,1901,1651,408,197,1649,2038,1322,715,1880,1631,580,846,2003,187,2611,219,1463,1690,1054,742,1819,195,329,1058,1659,2360,2055,2468,1004,628,1314,2066,1330,1444,2405,1602,2450,274,492,58,2137,1909,136,624,2226,1107,34,1136,698,2051,1370,2403,1620,2265,247,1927,1227,531,1068,251,1009,2263,2383,2601,1313,2616,1825,2221,1172,167,1885,2254,515,2159,2124,83,1165,1849,473,774,2646,128,303,647,2105,1160,1760,1792,1426,442,1335,326,1300,2234,1702,2540,2382,1906,2230,878,2529,268,1799,1634,204,1127,443,2575,1888,1707,530,547,1300,1592,1714,1315,1218,2411,1721,310,539,2684,855,30,2525,1664,681,2748,1174,187,726,1147,516,2594,998,341,2515,2597,441,111,444,1066,1033,490,2109,442,497,1753,821,2226,507,147,1127,209,1307,987,1529,874,746,1279,2171,1609,1169,1176,1725,2042,1451,1338,1713,2463,670,1896,2221,1036,1949,2155,813,16,9,269,215,1368,1459,246,1770,1022,2714,778,2717,19,2514,1193,2338,1165,2069,536,2279,1171,1073,740,2303,2554,304,2692,299,591,1575,1349,2627,337,1202,1648,1482,1227,1574,386,1070,7,2476,2705,1772,320,1740,7,1116,142,358,434,350,1265,848,914,1081,914,1876,987,2631,2491,2026,2004,1892,1946,1790,195,2513,93,34,197,1508,1658,2742,835,88,1978,1454,1094,1089,912,1538,2682,894,2011,1188,1816,136,442,695,832,100,751,405,122,663,1867,578,2508,179,766,1785,1703,653,58,47,205,1242,2578,1798,2267,630,555,2355,46,2443,647,2062,254,1556,1955,815,2582,1801,1736,2689,2531,1253,1559,1488,2351,1456,2135,976,1896,1087,24,1158,751,636,764,2257,693,80,147,745,62,2201,1873,1765,2774,2086,288,2404,1831,528,1155,1465,2601,1129,1876,1402,555,2047,1578,1587,2230,334,90,1314,539,2606,1532,2342,1602,1687,2204,460,722,536,2185,1918,1278,1987,12,2681,339,1670,834,567,2504,2733,1599,2364,206,982,710,721,747,214,715,1762,2015,2397,941,955,2242,555,2319,993,1163,1413,355,1900,2473,2640,2403,425,1943,1245,524,1623,2593,2158,2208,1415,1746,230,850,2088,418,467,294,1107,1550,2683,579,2313,99,606,1379,82,51,1175,1763,1620,2329,1943,1813,1570,1105,2285,2126,25,648,442,1668,478,430,1181,2743,1666,188,861,1154,488,1396,55,1972,655,1634,2281,511,441,1429,1217,1633,2422,2020,2359,1203,531,1044,225,1032,2340,1817,2648,2726,623,2617,2042,1248,231,903,2199,2238,896,829,2310,1978,1200,1339,769,1364,818,1982,2570,1814,237,2472,929,642,520,1002,2462,2205,2176,1663,1750,812,2414,938,2033,1623,904,1960,2717,61,2773,132,2269,127,1198,2417,2338,2225,195,2355,2096,2523,633,1996,1985,120,1342,2747,2260,2497,1190,269,2289,1360,2562,1069,2639,1607,1304,2648,2491,78,581,235,2625,452,50,1876,758,1262,180,2559,1498,2423,59,399,1077,1664,2135,743,2429,2734,97,471,2489,1129,10,797,294,2344,846,2741,2233,2758,1729,817,377,755,224,27,1730,786,755,2439,1728,1345,747,1750,2099,580,586,118,159,1167,1489,425,2618,2478,2199,466,2343,87,2710,1871,2186,874,1588,498,355,1414,476,2237,1476,2519,1192,2494,2375,2740,1281,380,1420,1319,1694,1289,2099,52,455,567,602,89,2671,2585,2680,1467,2696,40,1676,2310,1455,1225,2706,254,1510,2224,1783,1232,2542,8,2334,1023,1504,2505,1040,627,372,460,626,1231,2263,1208,905,1396,1664,2642,859,772,532,2387,1209,954,1755,2347,2486,1003,1076,1234,1722,1670,486,2036,1916,2217,1196,696,2756,270,421,2328,1257,2024,141,109,1373,1786,1480,243,610,2202,2598,1261,296,2537,357,2087,637,1319,178,454,527,2768,723,1154,521,652,248,663,1313,2406,1732,1637,2043,331,2032,928,792,1063,607,2527,166,2064,1567,875,847,133,1242,2229,2532,1435,338,2308,2577,1587,2524,621,2166,426,135,2202,1540,789,136,1829,1813,404,498,2249,1526,2229,862,978,2184,1686,438,1502,802,1156,417,1485,345,19,2611,2664,793,2608,106,1757,2710,1624,2734,2501,782,627,1285,124,2735,1851,1937,1717,13,1610,495,867,675,659,588,2193,891,2449,2651,739,2517,67,583,937,1585,1560,412,2604,1983,870,2277,2500,2321,1649,1033,1595,54,827,2242,1664,1889,534,790,354,2090,1176,1728,2669,2120,783,702,2612,776,1967,763,1177,2170,476,466,624,1186,694,1423,392,409,541,153,204,1918,1246,2459,742,2456,192,2070,727,2400,1513,2399,1148,566,465,434,842,2211,1389,1889,1043,1464,2556,2118,1440,1884,1266,716,1451,769,1639,1806,1434,714,2643,751,1727,1816,2347,2553,1154,873,998,1402,161,1788,1292,1127,1070,151,2346,2355,103,909,188,133,2403,202,58,2751,2245,2161,1473,914,2017,555,2724,2523,1554,1417,578,1334,932,738,982,2280,2470,1490,2385,2522,910,1152,1966,388,395,634,414,2659,596,1962,555,235,1288,1750,2158,1226,359,1561,1589,2229,1190,2010,910,892,1704,1988,2571,184,1009,1565,2593,2538,1973,54,507,2427,448,2268,955,2469,1047,1275,2412,802,1805,2454,1018,2159,2113,1162,2312,1321,2622,179,1688,1737,300,834,748,754,476,824,2125,669,2501,685,313,1567,1301,474,798,513,2304,2274,2100,2589,1936,82,1008,1599,1066,398,2577,2592,118,968,2385,2158,548,2380,747,21,2188,1068,427,676,2192,1518,955,1436,436,550,211,2382,2131,999,1314,617,1358,1972,1279,2569,452,774,2401,711,21,1573,1471,286,2435,369,589,1022,2020,2081,2699,2351,1516,1186,1054,508,1553,1085,268,1895,1130,473,2023,1883,2180,2073,183,637,13,1811,28,1977,60,964,839,934,2574,1094,1228,2548,2054,364,1647,129,1529,1195,489,267,1374,2088,1351,11,608,2341,760,762,1790,2166,2381,2765,588,1326,2209,2395,1911,961,2356,2425,1732,1591,64,2021,1214,1977,1313,2558,2593,881,1233,1204,1132,1686,2400,348,2269,2765,2575,990,2545,869,692,1205,187,6,2412,1163,523,523,1801,2588,1889,477,759,263,548,1665,2347,896,1151,2507,1705,2614,1708,2552,1648,968,2410,2066,2546,2371,41,1083,23,2458,2369,585,846,1174,1990,1716,1004,2516,2030,1779,529,1825,160,1581,898,2638,2358,2767,971,272,2482,1412,2032,2638,1061,834,2755,1344,587,2014,210,2774,302,1706,1535,1733,902,642,417,757,1087,2179,1644,1638,608,2007,1809,749,1166,694,886,1983,1902,2127,2265,977,2265,64,1948,1639,1874,476,208,1712,1054,1723,2597,95,1703,1837,56,1414,1150,2557,473,2347,2638,49,1076,391,1721,1026,339,1431,2649,2532,2261,331,2485,806,2135,1615,2121,1096,2031,1278,2398,554,283,1497,199,214,2199,2322,1548,578,1544,1372,2208,2777,1651,21,1523,2293,993,2198,1899,1348,2523,1775,1281,1610,2706,419,1327,902,1297,1179,666,516,587,1681,1803,623,605,1033,2432,1607,1306,2201,2286,229,1566,901,836,870,1741,535,1536,1813,1508,2101,666,643,2237,1831,1587,1674,1277,169,1571,571,1978,2152,1947,1109,997,1600,955,2122,844,2523,2580,772,172,73,725,1353,1093,2363,2649,1561,1012,1055,1912,178,1361,1136,952,1915,110,554,2736,505,914,1555,2656,2306,2414,524,2435,1344,947,578,78,487,908,663,1456,241,580,1151,2478,2403,76,1550,1326,735,2173,1220,323,1723,2266,1389,1351,882,292,21,930,282,1348,623,2199,2285,2538,908,260,163,162,474,871,2670,719,1945,1858,1029,1888,1371,1183,957,935,1522,982,256,483,849,2191,1466,1619,1436,1485,1121,823,846,2728,1868,749,1645,1960,5,667,2425,55,1384,2731,2020,876,1212,2241,702,285,432,2052,2759,2693,1633,389,1661,1439,1409,2771,1611,533,239,2177,1280,1380,612,653,340,1513,271,132,2339,1396,178,1277,1732,2613,2740,2566,1716,2678,147,374,1443,1310,2389,1933,2484,601,2133,1363,552,559,256,2035,1396,1549,1260,2244,1879,1440,2626,252,2491,1777,1314,2369,950,828,38,713,1769,1293,2009,2717,380,2604,2294,2617,2570,1084,2754,2538,917,819,2043,549,428,101,2555,1084,482,168,949,641,929,2022,174,298,1166,2355,1897,805,2726,2410,2630,2075,2109,823,373,924,816,1630,2608,1105,1910,2654,1546,2227,1780,510,2551,2304,1701,2643,1911,711,1527,1825,403,1054,2780,967,1578,294,2477,1331,1464,353,2017,619,841,2262,233,810,2477,602,535,1402,2404,588,1942,993,806,285,749,1730,1723,1087,430,2464,53,308,502,675,453,578,574,266,1171,2231,1128,536,840,1187,543,1652,1918,195,1401,794,2197,236,545,1591,2284,293,2690,767,198,1502,1101,78,2268,2109,1136,316,1459,2460,317,1683,110,2223,1326,1176,1570,2172,322,2296,608,2224,2367,178,2426,575,361,712,2553,1433,2573,37,1981,979,426,320,1447,425,1118,1801,298,972,658,1694,2094,1898,1347,1072,2590,1503,2625,988,332,1686,2158,2614,1759,2379,1203,1722,592,2511,1206,1230,1300,1692,2260,1114,747,2689,1392,1707,2757,161,2578,1283,1978,1494,141,442,1639,1794,383,1903,2523,2697,2772,2392,643,1237,578,2730,172,1256,2578,943,990,2584,2540,1596,2261,1161,2212,585,715,192,2369,2190,220,657,954,2354,1262,11,1041,2182,1924,2676,904,1010,2727,356,161,528,268,2480,831,601,404,2434,777,2502,2008,1427,48,434,2396,672,2183,149,1165,2635,444,2767,169,210,2470,2008,754,2740,1062,476,555,2633,347,403,446,1914,1693,1041,847,1946,2372,329,1202,152,889,2199,1443,1127,1211,203,1893,71,1417,441,1456,2673,1728,906,2003,406,320,1808,2039,867,89,560,2271,2252,187,2388,1875,666,1515,186,1457,1218,933,2037,1537,21,803,966,379,1592,1519,353,2201,1229,1001,936,564,1688,1097,769,721,2495,246,2332,1992,1548,1770,691,1853,181,615,2400,1073,1405,1215,587,1189,922,1667,2113,1751,2015,1592,1302,456,1414,113,2404,2153,436,1051,1022,1011,1291,913,794,143,1251,2325,1588,2745,1386,914,79,540,284,2041,111,2503,1984,1263,1067,720,1424,2509,1550,1623,1981,962,816,1753,822,1627,2688,2119,1461,170,1773,1801,2179,1137,2216,659,1446,2652,150,2657,1087,2641,295,281,1499,941,35,1462,1781,1642,483,2164,1897,2739,1563,838,2286,1225,709,1843,1994,1087,1511,1352,1899,1037,709,1635,297,1912,2149,1202,928,366,203,1186,1248,2574,2283,1339,1789,825,1355,1373,771,165,2638,367,2513,2352,384,1505,2268,1025,2717,1664,1771,269,349,1145,307,2136,449,282,2548,1428,1309,2590,782,868,2182,509,1604,2269,2119,2120,730,1068,1407,2368,277,773,2582,1283,1631,1728,1206,31,1620,2237,414,2087,2007,2406,1165,451,12,2236,2348,1001,1049,1027,1594,1487,2200,1832,64,2183,1298,1202,2060,859,874,1383,1414,1606,1901,2710,1036,1034,111,667,1097,1268,2101,2071,1197,1042,126,318,1530,2548,1066,125,2507,2548,2615,90,1860,1843,2713,66,86,1181,2312,2729,1600,1184,1189,1623,397,147,2513,1222,212,2663,1522,1019,1574,1912,963,1813,2232,2733,814,147,1572,2097,887,2733,1724,1346,2133,2172,1545,537,1480,390,2105,1832,191,2285,948,3,1978,1097,689,1847,1021,2241,2722,2157,801,1846,2578,988,2258,137,2015,1526,1343,115,2644,2780,115,1224,1935,1432,917,1570,436,2523,2400,26,285,730,240,993,2288,121,2108,1316,2542,682,1854,311,442,2548,905,1244,1939,592,476,344,118,1187,560,1552,1578,1218,2759,767,2550,161,1550,866,2427,2172,915,1593,620,2182,1515,1455,865,1569,1921,226,1484,1099,1910,2350,2616,2113,528,2098,1671,1214,1362,267,1301,1998,1792,1437,1983,517,953,1531,1888,664,1618,688,633,883,2643,1500,1728,588,1068,1113,1410,2759,521,91,2152,1138,1126,1489,2778,1202,1997,69,1408,1292,404,1466,1636,445,2726,1961,1201,1366,1718,1497,578,2608,1942,164,2444,1946,61,2400,2547,838,1622,2336,2635,2574,325,921,1953,2113,1243,408,11,102,2697,1106,1645,2413,2358,406,458,1385,2264,1287,1165,2759,800,2089,39,1655,652,2661,176,1112,763,1915,792,160,2401,634,1971,435,226,24,2245,1081,1676,2328,1213,1658,1008,1520,1290,2115,480,2563,2491,831,185,505,241,1652,1341,1558,2052,1165,1756,1895,1098,1833,1007,673,2358,2140,1084,1599,592,2299,2600,797,1521,355,456,2171,2058,989,140,1185,104,2616,2749,2223,2,1944,2655,1200,2043,2237,2442,1835,1776,450,2276,1108,1164,1165,1871,389,816,2538,1736,1294,2284,172,1340,379,1149,426,2148}

    {1805,647,2225,1368,285,402,633,2657,2170,2555,2596,998,2056,2052,484,2627,1418,109,544,553,381,2581,1088,1468,1052,516,1768,1244,1270,631,346,1072,1893,1008,928,1436,2280,1217,402,344,1104,1700,494,1673,671,1506,1913,400,2253,2521,1750,2354,794,2431,1969,2194,1039,1166,2444,2192,2297,1165,1151,186,1291,2109,210,909,2368,1455,360,375,812,1442,2117,2400,607,20,1053,1583,1704,1202,2753,343,1507,2293,353,455,563,442,560,2146,1601,934,929,462,1173,1144,1305,1119,1895,1650,2461,553,363,2330,2458,2738,353,398,1396,310,2355,897,359,2579,572,1439,1915,1665,1376,2708,963,1636,1948,2282,172,242,1103,1096,2078,1258,660,1529,887,608,2759,900,2056,1380,1048,2134,2493,2067,2128,1539,2469,35,2058,1046,1389,907,2176,2096,2726,1641,1597,809,2739,2264,2608,2074,2609,2352,1496,2730,1682,2066,908,1325,2562,1974,918,179,1096,2191,2416,2590,1086,669,1147,1140,1943,365,669,2579,840,2081,2348,1856,705,404,370,2471,1259,1209,583,1285,1414,2473,2202,1049,164,813,274,1893,1781,1147,2572,727,227,2401,1424,2454,1021,1214,1040,1431,1649,2511,2614,1728,2419,2162,1033,876,1370,1575,1432,532,1675,590,1129,258,534,509,2772,2150,1236,2495,1719,652,780,1212,1920,2295,763,2533,2302,2534,653,408,2298,716,863,646,1877,2395,707,994,1406,331,1370,1765,476,1076,2756,2585,1284,1379,2518,1123,436,1639,1181,1422,566,637,1644,462,226,246,1249,862,1008,1896,2447,1291,2487,1767,326,1970,2445,1351,504,503,988,473,922,1142,962,105,679,1996,1408,837,1742,2305,1076,802,15,2337,2143,2576,635,2436,361,638,2516,331,603,2286,336,1614,1862,319,10,199,825,1524,2446,1256,2704,1509,1608,1334,1438,1815,2040,2209,2275,734,1334,2416,2689,832,833,2352,36,49,865,193,1136,1478,1157,684,2014,1857,2775,2499,1330,2040,99,2152,1863,322,1593,1940,2370,1199,1286,1531,2403,1951,1838,2567,2475,1995,848,1102,1129,284,1907,2283,1022,1395,1852,2293,1279,2126,1699,142,1255,1612,268,390,2376,528,1501,2769,874,2672,788,2062,782,661,1802,780,1291,2632,2214,931,2086,207,2090,1975,1324,63,1220,1362,1414,96,2553,189,145,2414,561,1664,1180,518,1401,2610,1076,1390,71,870,2393,182,1090,653,536,2216,459,1629,570,2168,1100,2022,1364,832,772,1340,478,885,173,288,2266,248,1574,1657,626,1284,1564,2201,180,2520,2757,2518,2020,519,1873,2364,986,257,1458,731,565,2504,1139,1054,2294,1632,515,2367,1317,604,2016,1508,1205,2611,2538,951,1465,2299,1795,1065,392,1067,2640,1350,724,2392,1562,1746,2434,1484,2067,1813,855,2397,2781,380,352,378,767,1974,1666,2584,63,1645,406,1902,1906,578,1398,30,1258,2348,1027,1508,2744,1015,1141,338,1818,195,1045,667,2356,992,2188,384,301,1946,2729,1464,1248,2553,812,1279,733,905,1894,1866,1639,969,42,2314,737,2642,1052,2572,2140,1229,2287,994,1513,1269,1127,2358,2075,531,963,410,384,2247,646,1958,2082,959,536,2021,2763,939,1152,2068,1484,2468,1502,1865,2348,2763,1146,722,120,1118,245,214,2361,1939,2140,629,2759,1860,990,372,2765,899,1625,2365,1320,60,688,252,796,2269,1419,784,2008,2625,107,1241,2255,702,1173,118,2606,2222,2501,195,1152,136,563,1728,2755,1685,2220,1952,2540,228,2674,1456,302,320,511,2649,2416,1015,1630,390,194,1989,1512,2153,1491,2387,524,2190,1728,2046,43,2174,2066,2328,1977,1080,2470,1831,2469,1750,975,1559,1204,1118,891,1182,2001,433,2020,1050,330,1301,216,2349,663,335,1646,1031,695,234,1598,1352,2259,969,2108,1630,1279,2666,721,384,915,268,2116,1355,2552,2149,2421,1375,2391,2539,2212,962,678,2138,1097,2010,2058,1024,1919,2615,2541,306,514,1279,405,1516,2040,1795,1005,1313,2747,2109,262,2084,728,1930,124,927,585,1902,2539,1165,2425,729,283,1122,254,1367,965,2510,582,1818,1838,1313,958,2104,449,1308,1493,920,1318,2056,2148,2160,1157,1861,1956,1212,532,1000,2543,429,1523,1730,2538,311,2144,270,1559,1414,1638,2221,2511,2688,797,1022,740,2718,2503,2063,179,441,1890,1762,2444,544,1327,452,2329,1074,269,281,2646,1014,1579,1847,327,2465,2557,2542,2072,566,1328,1336,1215,485,662,368,624,1950,2006,2709,1237,1597,701,2353,744,2270,2696,757,2612,1257,1543,1176,2765,1803,1129,909,1276,413,2221,2467,928,2633,2242,1357,2,2500,1553,2377,1875,2091,2488,1248,1332,1689,2189,1669,2524,406,2373,870,1431,491,2456,1431,1252,845,1491,163,376,1225,273,178,331,2723,2043,1851,2416,1491,264,647,1645,1727,94,1827,2698,1839,2154,512,1016,1382,642,1198,2628,1141,334,2045,1769,1931,224,223,2561,2470,548,1924,2696,1865,1315,2547,1069,45,2369,2667,870,1194,10,2167,1565,884,2579,2249,95,2427,1347,81,2362,1743,2550,1640,835,1728,2628,1181,111,405,1235,770,1357,1821,1563,914,2296,712,2695,1232,2623,2524,1324,2316,2008,1564,2043,804,1272,1476,163,441,2375,1895,1893,2495,2185,2153,674,1664,2694,2722,1888,513,1809,2409,1212,1163,214,2466,1639,2278,2195,2169,582,688,816,385,556,1637,195,2236,1826,1855,1745,1319,1271,777,1442,1716,1970,2379,1056,2407,674,1677,406,726,1066,1115,905,2671,2631,706,578,1191,2355,125,1820,443,118,1251,396,1902,59,2403,522,1872,1481,2756,2552,1628,163,562,2285,1036,2746,366,1488,1469,916,2684,1900,2559,17,2154,178,2599,49,1613,2700,2604,484,1796,290,2296,1569,812,1317,632,810,1271,1757,1340,2094,375,862,2154,2646,970,1249,408,1892,210,985,1070,1977,1214,2252,2528,1379,2492,1657,644,2755,1436,1566,775,2698,2287,2269,59,879,753,268,2731,131,902,2435,2714,383,1249,1754,1660,1813,197,60,2451,2158,2038,1889,1036,699,431,2735,2443,2349,1036,1597,2502,925,2513,832,365,616,531,542,1100,2681,578,1251,2197,790,566,1419,588,1964,2577,2179,1030,404,386,2703,305,652,2021,2425,1279,2078,255,1525,2549,1169,1462,2588,951,2560,1606,1968,1926,938,920,1156,500,2568,2761,1528,2433,2677,2170,448,1022,92,1529,261,2344,116,269,1207,2660,2730,84,1703,557,2748,912,1801,621,1581,1572,1508,183,785,2346,391,1184,1053,2373,1695,2719,1428,401,1400,2590,2665,745,2301,2740,340,2628,2219,1058,1460,1062,1313,437,2243,2662,1747,394,1584,2517,1431,1706,534,1159,2637,1185,2191,1828,2140,94,195,72,2378,1235,1283,779,1589,926,1480,2682,998,315,189,2408,2611,2532,309,2686,597,2600,876,184,1530,1780,460,1431,2312,1550,1493,1710,2509,1844,1491,990,1130,1561,225,2018,2685,2102,2622,24,1162,2163,449,2702,1957,950,33,1011,858,1954,1433,1941,1044,1173,852,2225,40,1368,2466,2108,1461,1903,2524,1784,1744,1378,2422,2062,2536,2775,984,1658,278,1959,1279,2180,2493,1140,712,888,1312,427,2047,393,2748,1779,1317,2490,590,55,218,712,2394,2203,1028,909,605,1417,2680,2173,1377,1410,1720,1416,1483,130,152,2065,2148,1174,1923,1592,2437,2112,2375,2044,1212,499,1963,2022,1896,750,2119,128,2250,1476,960,371,231,1349,905,2026,2565,1158,1838,1091,1437,1340,407,1038,2766,951,1841,408,1219,48,2435,144,1618,2643,309,86,1330,178,1415,1800,2026,140,457,1925,1354,440,2142,1120,322,2117,1448,453,287,1864,1804,1673,1605,561,1697,1646,2077,1889,2045,2764,988,2259,1309,526,987,92,69,2317,70,1163,528,2743,267,2743,1013,1466,2457,2028,2236,270,986,993,898,1011,2770,2178,618,800,2484,2386,2619,998,1133,671,1985,1178,96,1643,2441,1206,2242,2441,178,449,276,232,1793,1414,857,2518,2107,2479,372,1777,2702,2645,2269,321,2430,223,1688,2474,607,2646,269,65,1990,2315,1630,1036,2147,1414,1070,2605,1157,811,2080,2304,1917,1978,2506,1314,958,146,2151,2736,982,1603,2248,1552,893,1965,2594,2256,1332,258,114,1472,997,589,1990,1928,423,1049,945,1376,199,1064,1575,2539,613,1665,481,213,1517,1654,1020,73,443,2096,2000,2306,1223,1445,2092,1095,2382,1375,787,2767,520,1560,2650,450,1857,793,518,2760,2374,1148,515,1163,1781,2290,996,987,2347,592,1347,557,716,1286,2553,1603,2422,2267,1643,651,515,2177,1571,1552,1747,2208,40,2588,2453,525,2266,2715,1938,622,231,32,1992,1131,880,1166,2129,88,840,1638,1270,331,1134,942,2775,505,178,2523,1907,2717,425,256,1399,1758,1240,158,919,1886,2237,2330,2228,1434,2204,1979,317,1121,156,1898,1312,1101,38,2227,2692,2587,362,2424,1201,982,1441,2390,1376,151,1346,123,649,2307,2434,1898,2266,1788,490,1490,1181,1500,741,940,1547,2725,1368,1584,727,29,2195,1190,2021,420,1392,1038,1411,1623,1325,1630,1367,688,324,1899,1208,816,2736,342,2325,19,482,1834,794,2019,1620,1480,1538,1489,2761,1142,1582,469,2011,2236,2019,1243,21,1747,1278,658,826,403,1387,2156,1616,1932,2647,2324,475,18,1878,390,160,2444,658,311,1475,1764,761,344,177,995,1489,2206,104,1558,2687,2008,629,185,2310,4,592,2739,2020,1885,1447,2553,55,1449,1906,1586,2239,1212,1887,1329,1169,1840,2265,563,509,1766,2076,2244,74,163,1839,773,1367,1295,1191,133,202,327,1192,99,1877,2305,535,1503,1301,139,1479,1181,983,2341,2053,2638,1985,2038,2044,1980,1462,2363,1492,1362,1731,2490,470,1557,697,171,287,0,1340,2219,2326,1640,955,1735,1785,1859,752,1170,1684,2415,1611,1430,253,1145,1774,791,2052,447,266,1254,178,725,2075,2207,406,2040,1508,413,1800,1748,1078,493,554,2483,2234,35,442,1904,1064,1571,763,1050,2106,95,394,251,2264,1824,1432,1106,2403,2182,2222,380,874,1993,2737,1810,803,269,212,2677,1325,2141,2691,845,1124,830,2590,2709,1249,1709,653,2523,445,2324,2488,1038,2720,2692,442,2237,2209,1922,2219,132,549,988,672,1966,998,2103,1848,1386,478,2602,2418,900,2544,1820,2118,1880,1991,1653,2164,157,2322,1985,769,353,1644,285,2453,2145,1088,2607,1011,2576,2117,1313,1473,717,1905,956,2559,1097,366,2109,546,1298,534,1812,661,812,1831,1082,122,75,1403,221,870,1249,645,937,2169,861,24,1887,2540,1136,1181,1117,2466,490,289,2258,529,382,1823,312,620,2212,18,415,2062,34,317,2762,108,2525,1577,2340,1425,1399,2208,854,2538,184,1639,1950,506,2447,1057,2036,2192,359,1797,2712,2235,1391,1838,1779,2272,904,945,2757,2190,516,2671,611,572,2081,1153,1497,2033,1955,2277,234,341,2103,2699,1546,2335,2323,703,1561,442,672,42,1819,1986,2334,1568,1850,1551,1989,2470,2315,962,1763,2621,1256,1591,2270,2470,1257,2095,1446,1125,1801,178,2155,2721,2719,2385,2374,2158,1734,461,2343,2119,282,843,306,1442,1572,2650,137,665,521,1647,710,991,2286,2414,2292,458,2667,1359,1138,1278,2634,1541,2581,1264,1849,2375,2367,851,577,898,1494,1039,2649,27,1461,1113,1949,1630,2645,550,899,2170,1249,1173,472,1333,2002,2258,844,1188,184,1038,1486,882,688,742,1438,568,485,573,1875,2079,2735,2564,2516,872,2114,190,383,954,2462,2246,2668,484,2297,138,1746,668,1937,2273,872,2732,870,2286,1995,1202,1320,608,784,476,394,1875,837,2014,2655,2175,289,1599,2158,998,1745,2638,435,1962,1529,774,1788,558,1,213,1576,49,688,1111,1422,2227,2604,862,1494,584,1079,2432,384,1767,1692,593,1981,1096,178,2111,2113,1004,1712,2559,2485,1323,1534,1672,1580,416,2409,906,21,484,1404,1190,2142,2330,1397,790,1314,708,2562,2020,651,537,1555,864,94,344,1484,2187,117,1480,1583,2524,462,2269,180,94,1534,1715,1010,2268,810,1696,1206,2621,365,1807,333,404,2097,84,178,1710,1845,1221,973,2280,1676,1723,2333,2597,1083,2331,270,2154,2724,1575,1200,2166,1950,890,2270,799,1431,2767,2181,2026,95,2583,1394,1059,683,426,1999,1676,554,2746,1090,2773,877,923,748,1176,117,2218,2512,109,1184,633,2537,2471,394,181,2403,1590,2552,2083,1492,1633,2174,2100,2511,642,2652,1870,1036,768,1367,536,2052,2422,2472,1822,242,265,333,73,1250,2620,380,141,1898,2455,2750,2584,2647,240,911,490,658,1436,2628,51,1434,212,1228,797,1558,2012,2196,35,2714,1267,1891,1603,125,2152,1912,686,1749,2103,2241,1225,2227,1314,946,1394,1399,567,1785,1709,947,1849,905,322,247,1454,2348,1881,1791,2320,2274,2078,2240,2013,1488,250,1680,975,1256,1100,1045,2130,509,2309,314,931,2714,1927,1168,2586,2604,275,1943,2755,354,1673,2491,805,2049,464,361,604,2581,1470,1858,2636,996,1010,2584,120,599,1998,1171,855,1226,1442,1212,1309,1006,1239,2515,2085,656,2261,974,2524,2026,292,2538,1016,1471,2441,2008,1139,2750,772,1418,2330,378,756,180,364,947,1491,1337,1146,2631,1746,639,799,1418,250,2011,1388,2315,2259,2498,1666,2412,928,200,768,690,2043,1480,2149,2472,2380,2551,1030,2020,167,1171,1125,653,2345,2299,1450,899,2282,267,470,1161,152,488,2523,121,1526,1442,119,2291,832,2061,317,980,651,2644,276,339,799,1048,2294,1420,479,2509,640,2110,2428,280,259,1575,305,1757,22,217,688,1583,1298,134,1258,19,2270,2134,538,48,928,1092,1248,209,2606,2030,2726,2640,1369,2222,2683,166,2428,1036,1075,19,2175,795,2603,2173,2173,270,1792,2214,687,2670,1977,2507,2397,1462,576,1830,224,1314,2355,1237,199,976,1526,1683,1928,1889,1848,1062,341,2654,1299,2481,2188,2455,112,110,2531,1858,2391,488,1489,1928,2779,1818,305,2087,194,77,634,387,1190,583,781,158,594,320,1652,808,1418,147,2230,1623,1750,704,2298,1920,699,2352,1782,78,1419,2347,1495,737,2284,118,1506,295,468,738,763,1726,2624,1898,153,1633,2043,596,302,2170,1893,291,2050,2387,797,1781,178,1500,1778,2532,1746,2530,201,2721,2438,1621,1862,110,1711,1365,1936,2477,1566,1990,2244,283,238,2185,2327,1649,44,1285,1739,1059,597,1190,2140,2145,322,1525,1944,1452,679,2014,1238,2152,392,1738,1151,1001,1554,2580,42,221,2601,1819,1202,2014,2675,1531,1761,2318,470,2772,1216,57,1307,448,1929,1436,249,555,1274,2778,1445,994,2066,723,519,1626,1901,475,1135,1391,2707,464,494,1660,2466,1303,588,807,136,1651,2053,874,186,1278,782,981,1792,1296,239,2306,1691,614,2284,2035,1262,625,1990,1633,1528,2183,1409,1301,34,454,1787,608,1514,2254,1249,1664,1161,80,812,515,2057,797,2343,328,1612,650,2199,2684,59,761,1149,244,832,2210,595,68,2620,2361,1468,1987,1673,327,1176,1630,1330,1243,2421,1173,2029,126,2352,2563,2545,1623,2716,688,297}

    781

    1345

    Returns: 184420521

  51. {1287,947,1541,1692,1685,1482,1856,2358,1722,1475,2274,1592,2389,1185,818,184,1182,1754,1649,1794,1744,1905,1596,481,1597,470,1404,2390,626,752,193,2205,679,2323,1625,235,2227,1866,206,426,425,2189,1672,1931,13,1202,795,1486,1065,1581,2219,391,759,1720,2028,1463,2244,912,715,146,713,533,627,558,718,2011,1322,76,1618,1475,845,2116,239,1948,2023,1995,907,1439,1622,2307,494,1108,1600,1174,679,1980,272,963,621,2489,522,1413,1784,1686,1659,2319,1829,1093,228,1596,902,882,2529,2423,483,1547,1186,1865,2132,750,2128,990,1164,1248,2059,1293,263,94,1383,1752,1947,1558,1986,1713,49,1492,769,567,1801,2300,742,2511,1019,2516,1655,2477,1513,2020,1925,527,1945,2294,1929,2348,1164,1027,2112,2010,265,136,613,660,1287,1686,1399,842,725,2425,1049,2050,2126,2245,464,1971,82,698,1325,1281,1678,666,373,1035,147,1958,2055,215,745,689,708,943,1606,572,1745,1201,2254,1569,652,913,431,294,2142,1846,1786,50,1262,562,1370,1828,102,1117,1806,792,114,1980,808,1467,930,1664,339,1320,1366,1333,2215,872,662,2448,2199,503,658,1747,626,63,2382,1664,188,448,1687,2368,1031,2025,731,1759,714,78,7,367,1661,1068,379,1660,44,817,1412,1746,2070,1467,2014,2397,2354,1079,1876,1444,850,1101,2034,1411,81,944,757,553,1096,225,2521,733,713,2157,553,1761,373,2217,1919,813,799,1410,1613,112,834,953,1829,1747,83,478,2293,2069,2112,447,2125,2086,2366,41,1939,1682,814,2472,1707,726,2049,2512,214,1147,1770,1225,2312,1614,1346,1941,1451,1470,1640,914,2170,2356,148,2056,1619,1623,1632,1533,2000,2115,1738,1502,1739,1131,64,2033,1308,2316,1164,323,603,1927,1522,907,735,58,149,973,360,1857,941,2317,547,1553,598,1372,180,565,1280,532,517,1313,1972,848,569,230,1060,1448,1829,1614,872,227,1802,1558,1492,730,1035,2444,867,1969,940,662,896,594,834,2170,74,1431,2357,2436,1720,466,2204,223,1662,365,2359,461,1963,1773,1800,670,1077,897,1202,1637,2170,1750,1285,1432,277,493,1020,2364,511,1894,1831,1948,1972,944,800,1101,330,1725,907,930,1944,2221,592,554,58,1375,339,796,405,1280,2546,1844,13,2024,1288,1896,1513,2314,1513,1025,2064,515,1483,131,309,1873,612,188,2295,122,2466,891,2505,2465,2482,531,414,1646,1617,103,1000,356,1408,1296,1271,1451,31,285,96,604,2440,816,178,564,1529,1534,510,595,2507,1211,1427,1376,2156,1124,661,351,2117,739,624,1049,2180,1962,2102,2164,1189,156,1069,211,1633,617,1089,1372,1601,807,1111,113,1920,1692,1390,1243,1075,285,553,1961,2242,1396,128,106,1824,1184,335,2187,2467,1994,1720,703,1613,698,1324,1357,270,921,174,133,1765,1377,2291,1341,1217,2077,237,2344,1566,1097,963,2529,1427,1607,2055,823,258,1125,1752,763,368,1791,1571,2313,2005,1985,2146,502,251,2098,2177,4,2389,193,2481,775,2328,912,1739,1165,1122,527,951,1474,2095,485,393,430,279,655,2228,2482,544,758,1895,677,2432,256,511,543,338,643,1037,1956,1754,1589,1940,2466,1978,189,834,1230,1681,930,1447,1652,1250,820,241,1827,1286,2031,2383,885,782,1708,633,613,1383,1334,2232,445,2190,1861,1509,1351,291,625,1978,2517,6,927,479,121,2474,652,2353,1827,148,1193,1472,1992,453,1875,2393,1679,904,1860,1502,2360,1228,367,449,1372,163,477,1402,1857,783,1939,694,548,1189,233,2313,1498,20,1440,1305,113,1165,1373,77,2164,1757,441,2233,2,319,1121,2209,530,1962,414,1888,37,1430,1135,1799,1756,2159,29,978,566,1073,1334,1612,1759,1884,954,1854,879,978,381,1285,557,654,651,546,341,1365,480,849,1565,470,265,1385,661,1069,1042,1578,1353,1374,721,867,2067,1379,1304,2090,2329,1199,722,1172,738,244,2053,2549,667,727,2011,1794,1751,2428,2005,109,2036,1225,758,1703,2467,1796,24,681,1432,1248,1417,566,965,2,1812,265,1685,1989,2337,2224,664,880,2548,533,1815,734,423,905,1426,1432,1093,2403,903,2338,140,505,2018,797,2553,1829,2406,969,2368,1541,1722,1795,23,359,861,1018,1012,2354,856,361,849,173,1334,977,2171,1591,959,1636,1270,582,2304,2148,1496,2186,1679,1002,1372,2367,418,1686,1693,1354,2473,54,346,1638,1616,973,2106,579,1281,2295,963,644,2075,484,1966,106,272,2289,2110,1876,1544,1062,242,1903,2127,875,794,1690,1287,838,2139,1979,491,2428,1003,942,489,2136,412,540,1993,1242,1382,2335,1118,1279,1612,816,1104,513,1868,87,1375,1055,769,647,1473,984,236,2127,2271,2514,1508,213,530,1510,187,216,2469,154,802,1276,1638,1112,2184,440,2144,1837,97,192,740,655,1214,180,293,601,949,1233,1240,2525,7,710,878,1685,433,1940,1229,1371,185,1425,2250,317,984,2202,51,2442,2384,1059,991,620,1816,1598,594,1437,1561,1575,2223,2070,783,1810,213,880,978,2126,1596,1052,2506,2296,2502,758,1057,1483,1155,1144,357,2150,2481,1049,1715,391,1129,1603,410,356,1706,1732,1332,1785,377,1088,1491,764,703,278,1153,1317,1120,1511,1880,45,2556,941,2083,1687,649,1686,2342,1123,1488,2413,2513,1249,2558,553,406,1696,2431,2274,1109,1364,1254,2399,498,2420,1663,723,880,274,1274,115,2332,239,1537,1325,1811,231,1629,1878,186,1280,28,158,2380,2549,2051,1234,128,35,1478,479,1640,1649,2014,886,768,5,756,932,470,2057,867,1129,1998,786,3,129,1857,2189,1455,251,1481,226,1507,1057,1981,1999,1827,869,232,1333,75,1305,2549,314,2080,779,1214,1187,228,1847,2327,1729,1634,470,589,364,895,1189,1495,1696,2190,2054,742,1362,2543,21,1387,2487,623,1932,1483,468,198,2544,1729,1204,1206,166,423,1860,846,2187,1082,2496,45,725,213,2188,1535,1117,786,1192,1808,685,2217,1274,356,198,1080,2225,10,1476,1783,1036,2519,969,71,1208,2272,413,1583,2040,291,759,910,1748,256,1259,457,776,244,2158,2333,1939,2435,1975,214,469,2208,351,442,115,938,1429,576,965,2229,2460,518,719,1261,622,1432,632,437,2256,1531,2133,2418,1277,625,13,387,1785,670,2176,1914,1340,2339,1739,1303,1188,1380,857,2295,575,1032,1339,213,1856,750,72,1559,2267,997,1881,223,1450,229,1436,717,2063,228,2510,203,1569,1361,328,217,404,1164,1803,639,837,1036,723,1885,1327,420,400,601,162,828,2131,449,602,2376,1322,1167,415,2302,1107,2363,2107,2549,2524,336,1537,121,1050,556,2479,2140,29,1538,1098,1280,178,191,2151,2540,1632,1531,901,484,138,2560,980,1760,2468,748,2136,442,1601,1926,130,2150,1073,930,737,576,780,2311,2048,1216,1403,765,1419,1624,1400,2212,2503,30,509,821,1857,1871,1639,1698,43,2492,1135,1126,1589,2351,1613,2373,425,512,645,1822,1577,1930,553,2041,1526,1952,591,1253,950,2050,2069,2000,487,566,1644,942,1227,1442,764,1095,1676,365,2160,998,594,1424,827,2131,172,2036,764,2520,2552,1606,1164,229,768,2518,388,1601,1497,1543,1439,1659,2167,1900,1991,1194,599,1122,246,979,2198,896,2543,667,883,2347,1868,395,414,122,1293,1235,1515,1292,112,48,1616,2417,361,704,1127,2554,1634,1041,1203,917,896,1898,1,2,2426,631,1949,1308,1154,2011,2257,1668,1674,1519,2197,2187,1623,29,243,2523,691,420,1878,2076,1292,466,2373,1451,190,2076,507,608,1390,1599,682,1766,228,445,20,1283,1909,1315,482,471,311,2319,405,996,437,323,2187,1816,1557,1779,1203,358,1597,468,1525,1775,2098,315,678,1220,302,1204,1665,1268,88,1655,1200,2083,1612,255,1644,523,1975,1681,2075,2198,1561,352,58,1932,2191,958,523,236,2311,435,1090,2183,70,770,470,2224,134,235,960,963,1554,5,356,1093,464,1748,513,457,335,935,2151,431,834,1943,384,2477,373,277,698,945,260,1331,2443,597,434,2113,321,1335,1863,2110,1876,2440,2549,624,2213,2009,486,615,46,113,2541,885,2428,1297,2010,1738,2373,1079,1744,1389,1078,942,2000,608,2161,1582,2552,2197,2281,723,451,1339,3,549,1432,2301,1714,1650,1328,1196,2244,1204,528,725,2379,392,2301,92,901,1464,670,2507,63,197,2087,1261,2092,256,1293,2011,956,145,1234,112,2400,1090,1363,2298,184,901,2548,1195,207,135,911,1907,893,1691,1419,1311,177,2130,609,1729,810,1569,1648,956,1518,1407,18,766,2118,809,1322,186,2452,1348,1332,1843,109,796,4,2073,965,4,2479,1969,308,242,1414,1054,1467,453,1699,1416,2247,137,2144,1527,852,2375,1750,1213,1239,237,162,2391,1684,349,768,1798,1451,383,364,2230,906,1046,1121,1137,1164,1148,1276,935,920,2487,1099,2505,1649,1700,1542,389,1658,437,614,1071,1990,931,2083,73,2217,37,1680,1074,391,1681,1363,1432,230,2479,655,590,1457,377,380,1648,2404,532,657,218,2463,1635,1123,1832,1928,219,1861,775,2121,2175,362,632,815,1068,1440,322,1102,2073,2076,2084,1595,1709,63,1808,1211,466,2157,1323,2284,2165,971,2304,989,1602,2016,1226,2325,1425,2317,1912,2275,1752,833,1604,1116,1960,394,2327,2374,356,2,2430,879,165,1336,1491,2389,108,1244,1763,722,297,9,2280,744,2372,1821,287,2368,862,949,11,1187,1170,1489,405,414,1618,2298,518,1076,1560,261,2306,1076,731,1941,15,2038,1011,1857,27,850,2027,655,1244,1209,1434,1768,180,2033,1392,207,1319,419,2369,2191,2058,2548,452,1965,1129,1795,1982,167,1938,1244,1608,705,2010,2099,1418,2277,310,1187,2057,616,532,1471,2379,1851,2544,978,649,290,921,116,1643,2561,1714,274,37,1585,1675,685,1873,1604,985,1875,34,1835,397,748,2257,1691,1752,433,1092,1612,1784,1122,1206,2371,1409,397,1833,853,984,1627,452,2228,1201,776,682,2088,780,329,22,764,1869,1602,2222,2170,1516,87,1428,370,1594,983,1358,2387,184,2474,1865,1879,908,1158,552,1318,859,1834,1263,1292,1812,153,500,240,2076,2014,2275,884,2141,668,764,851,706,728,526,347,1255,844,577,121,1655,1135,1460,1446,2385,586,946,2477,820,200,1623,2182,1224,2257,291,1524,1145,898,840,1084,1941,2138,1566,1044,950,158,2371,1139,1415,1732,2305,281,2305,755,2558,275,133,1220,306,1100,1091,183,122,658,1472,1308,433,1877,714,1664,1275,1949,1058,1222,922,445,1723,1715,1570,2519,901,295,1266,230,687,1711,1126,2074,1315,547,1776,1576,2273,1836,672,696,337,1299,1040,1063,1099,518,1881,2263,1714,2492,1018,1724,2442,1497,386,267,1023,532,27,393,1626,998,1829,2479,1654,1729,1443,2536,303,1631,1049,645,736,2349,767,1229,560,807,1305,209,170,343,2308,201,80,1293,53,1069,2373,1969,2220,2106,1293,1122,2210,1414,934,1883,1550,711,585,2322,1063,1891,306,748,1280,1497,364,620,449,1440,146,1408,1405,1440,1798,2104,589,1098,1266,1686,52,737,1021,111,1180,996,2481,1834,1759,1667,1371,61,2120,1803,1932,335,1244,2093,1901,1965,2388,42,978,1616,2152,1104,2424,788,1729,1255,1171,277,244,656,323,2111,1065,824,352,2192,667,2451,1964,2084,385,292,1161,2322,506,690,330,133,1149,2543,706,1217,1074,1966,1520,1594,139,2006,476,2237,726,276,1420,2508,1870,1530,1237,1865,1563,1017,992,830,2027,1657,1212,2362,2175,416,107,1371,1185,1864,4,1246,2534,1873,592,1365,2451,950,1067,2288,2403,2228,1107,1234,10,633,942,570,2276,1418,405,2094,2393,1969,1829,511,1028,1508,1931,2140,2226,461,373,1768,405,66,1509,2244,85,703,141,2518,12,2233,2533,2363,211,288,957,1541,464,161,2243,1593,398,249,507,943,4,935,340,880,872,1127,2443,994,751,496,75,1496,2191,1985,1383,1722,985,1292,2341,1720,1251,1591,518,2414,2425,2430,872,1131,325,765,724,1612,564,958,1411,748,1303,221,821,1694,473,1371,1499,1612,1325,1459,11,110,316,1996,748,1318,708,1888,2428,1058,967,1093,1916,1022,1956,1634,929,905,1417,1632,787,1924,659,94,848,1307,637,2351,783,13,1696,1040,2507,944,825,1561,2114,443,2146,898,329,229,544,527,1827,966,2151,736,1758,2454,2153,208,1832,2531,705,2310,465,2517,1840,910,2230,790,2003,302,454,2238,945,670,919,554,2305,1229,1163,921,545,1802,1571,791,981,1803,1767,1010,363,1187,982,1191,1319,1223,1040,568,1639,93,2428,2329,1986,119,1454,1734,1976,2299,709,648,1597,2190,1681,1885,587,803,339,1872,868,859,117,1607,646,1190,2282,318,501,89,924,1947,2276,360,407,2391,989,2005,449,653,1079,2069,1059,1267,1840,1953,1380,1888,472,1016,2290,998,2445,28,221,295,2381,2422,634,2376,1727,1724,731,2378,2559,2412,2152,233,1953,673,442,2550,2297,2227,330,1114,1522,1874,737,798,1129,600,1425,1113,1549,1281,2497,2244,1367,2086,596,1699,2327,1749,776,274,954,1230,1298,1221,1201,1960,1835,2462,1166,1411,2446,1873,580,611,414,1908,1739,954,699,891,1890,967,610,2043,2488,1279,561,1072,735,2171,607,91,1164,1760,1564,520,1267,56,1439,244,201,539,1886,282,1743,2060,2481,112,2415,2337,2510,796,869,2526,1048,54,237,444,811,2470,854,896,1043,1768,1530,297,1083,1413,2416,1698,1135,1066,1775,930,670,215,756,396,1490,1978,1030,705,932,1304,923,2111,2035,393,307,303,10,2158,324,1877,871,951,1707,2492,2373,1559,2286,357,1369,2255,245,2085,1315,1678,1528,2129,233,1494,4,1210,412}

    {166,2257,793,154,1508,2528,1245,1845,858,465,2315,46,1686,256,188,2287,1041,180,298,401,2108,823,265,112,185,2113,1879,1497,2477,571,1605,2146,1501,1788,228,2158,1804,1212,2123,2435,1911,930,333,347,2197,29,784,1698,1037,901,776,390,936,1508,564,1597,1406,961,2528,673,438,1007,679,2365,2166,372,1885,1527,1702,1477,2070,2472,1509,1783,2430,1780,130,606,1864,471,2151,942,1365,2435,626,1634,926,1854,2509,2557,2238,1906,126,1702,1892,412,1161,1278,689,1868,2228,295,1098,2444,59,185,2489,1634,541,1612,1495,449,1826,1964,746,2359,1393,879,2173,2109,765,413,99,1681,158,2449,1052,2491,429,1491,935,2075,1998,1521,2445,1616,2463,572,1009,550,2401,856,1053,725,2420,196,1281,311,1334,2479,644,2094,1614,2125,1286,1140,1821,2311,861,2236,2077,1879,330,1061,2520,1808,1679,1973,641,592,2394,74,936,439,1460,992,933,262,296,1652,94,2346,1115,1609,1807,366,1827,2495,1045,2136,1388,2280,1504,1997,347,2559,925,1733,1003,1653,1061,650,1902,2450,1566,155,203,702,2090,239,637,2082,185,1721,574,1989,2434,211,277,1,142,2498,1989,994,863,982,1508,1490,2048,378,1015,636,729,2429,1248,1592,966,424,1020,566,27,103,1726,1680,693,57,248,50,1104,1717,1616,1236,750,2505,1150,2311,2241,1804,2326,1726,1415,930,1690,1929,426,1065,1344,666,1358,265,1128,1098,878,534,1004,954,1842,494,74,2170,1654,32,628,1002,1076,2515,2443,1219,2351,1157,2370,163,1916,1187,1610,1810,41,816,1197,1452,517,2217,2103,1572,800,350,516,1550,428,2009,1462,1773,640,2096,1496,1729,707,905,439,1290,1315,2129,2343,20,1406,353,887,232,2228,1630,1902,671,286,2143,2126,122,1664,2122,1551,1101,1485,2162,1394,1032,671,1352,674,102,2131,8,1984,1621,832,1742,1383,842,2321,2432,1596,1245,760,2554,2537,889,569,561,281,535,772,1444,1720,1819,1531,310,1191,497,305,1278,1844,999,1532,611,1902,2535,158,2516,1316,308,2145,2020,1415,609,1171,460,1538,391,302,1770,1782,567,1506,1409,1831,2106,755,158,2466,107,1425,1033,593,1983,1539,1157,485,2092,1011,2033,2298,2364,638,190,455,1105,2276,1177,1769,1425,872,571,1667,399,1715,1326,1244,1816,158,35,168,2092,788,1777,1355,1314,118,1751,1899,2032,1142,1838,1696,779,2117,1239,918,334,490,1851,2011,1067,2281,2249,2252,1536,1957,1807,835,1910,1310,1512,2103,2409,1585,848,170,1938,2237,569,1306,2132,1542,2196,1805,1943,120,1513,1561,1768,277,417,1147,1920,556,1787,103,126,265,1269,836,2233,2542,1939,528,1454,1673,2368,295,692,2435,1485,962,136,363,2066,1694,2136,1990,0,125,1772,273,104,540,659,1921,178,57,1988,162,1203,403,1954,325,1498,1843,2118,992,294,2012,1509,331,754,1051,498,2538,864,1683,2458,670,1030,883,431,1606,1867,978,206,2163,798,1095,1587,3,2214,1954,1265,993,1272,2255,1904,581,1671,2124,2156,2122,509,1668,1568,2222,1691,116,1714,900,259,373,256,1664,2289,1813,1338,1122,2322,1230,991,1510,371,1825,2376,65,344,2391,157,450,1857,1634,1129,1977,2309,2546,220,1779,1970,9,1079,538,2299,1654,1797,942,1711,2059,1838,2234,2179,1439,1660,253,672,1848,2392,1764,1433,1134,685,1537,1123,1905,596,1838,2361,2076,1814,831,1740,346,1917,1667,761,2427,2262,774,483,150,475,2410,2170,999,1501,96,2136,976,822,1679,983,176,1857,946,1852,1008,404,2443,1807,1582,1592,1849,560,2521,337,2185,1731,2452,2194,383,1770,2013,484,2352,1026,1254,2154,538,1876,2488,1356,1218,1407,1440,1959,2228,928,823,2386,2311,210,2549,2323,324,2384,1642,1157,589,1568,1612,2500,1176,833,551,1513,190,2474,2451,887,2475,1277,1816,938,1455,693,1425,2174,1422,978,314,743,1941,2220,618,2474,133,1225,1606,1068,1453,2021,1244,2499,986,2483,2158,2147,1397,933,456,440,1317,329,2393,653,1772,695,346,1885,1857,1258,2267,1179,295,268,1454,1741,2562,289,2306,1106,1309,311,1585,354,1347,1282,1934,1773,1920,601,1602,1090,2015,1680,67,1963,701,2203,2231,473,2144,1039,812,654,100,1868,2186,172,777,749,1934,2264,2001,1463,655,1823,356,952,1620,2501,1047,1645,881,2253,1217,78,1296,809,413,1447,982,1476,2016,524,2258,1993,1516,1125,537,2336,1150,2438,1399,1342,704,1198,2485,1960,1135,1798,1023,930,1672,2283,159,2376,2083,2434,1511,20,2542,993,2532,1419,817,624,806,963,1922,2409,2248,1403,1709,983,1995,2432,1670,594,2029,413,1951,1094,1107,492,2117,1091,2475,474,211,938,257,1416,2279,2489,190,510,872,976,222,313,1300,2525,1198,688,1641,1079,1871,1403,2093,1819,518,1794,1817,1322,1648,195,2074,230,1853,2216,544,225,2055,1466,114,181,1302,977,548,1812,1388,1280,34,626,948,302,584,1298,2418,1810,586,762,1964,1038,1798,561,186,1064,2061,1061,1688,1511,2321,1141,75,104,731,1491,2511,916,1712,2250,39,1139,320,1268,747,47,1850,1054,324,1929,1555,347,1401,2282,1071,1571,1419,330,2396,98,2529,2016,1829,2049,436,1522,203,1868,712,1458,474,892,356,283,1085,1633,2504,1780,25,2509,732,2160,1457,861,103,2215,1272,414,2270,839,1830,731,1707,41,1425,1689,2184,1820,247,1742,1605,332,2329,1114,1946,1018,2046,396,1952,2087,1378,165,6,2056,509,722,1644,1927,1237,2507,1880,2022,2210,817,2223,1175,2083,1507,508,2002,1183,194,1936,87,83,2062,1423,1790,1375,2261,2059,2424,707,1698,2068,538,1798,1281,1680,1225,381,2516,303,1855,1282,534,1702,1631,500,2375,50,246,2081,374,1634,808,1093,519,1277,414,2467,741,2236,1723,1606,70,2453,1034,2206,998,1065,19,250,1797,995,1101,2467,1590,2547,1169,1542,1136,2272,2495,272,1399,2037,1157,1101,1798,670,1287,975,2207,2265,1920,422,2456,560,1715,408,1205,1130,1369,746,795,2554,1221,1070,1035,1467,79,1746,1098,523,1653,1810,1456,2480,879,25,1103,638,2246,547,414,1832,458,1893,2276,384,2056,1798,256,982,1857,1376,990,2019,826,611,2199,2020,284,1101,966,1974,2018,2504,630,115,339,175,1156,1548,698,1119,1013,1580,1159,2298,235,1724,123,127,422,402,2168,1526,650,632,748,1556,737,1675,2065,1710,1728,2281,1762,1550,1232,534,794,2017,890,1914,1000,1705,802,1729,2373,2451,1918,1454,1517,605,1355,2421,1005,2486,1207,756,2259,1767,1205,117,1961,804,1695,1545,1463,1203,1811,1329,2284,581,488,484,1809,1887,2027,632,572,2305,1530,1383,857,564,801,1716,1802,1040,2555,2115,446,2326,1599,1710,2293,1983,1972,663,942,1919,2451,1043,1647,1273,1162,998,1302,225,1876,902,2235,5,1279,2176,265,2045,81,428,600,2343,1551,2197,2217,2228,1840,274,2323,2503,192,1617,40,1545,2076,2307,1364,2452,795,2100,1225,1616,802,2076,462,962,12,2278,159,939,1606,1834,2004,1638,1596,1127,1537,735,1441,1615,239,2311,225,1619,879,1857,933,1381,1294,1718,2137,1854,228,330,619,675,1256,888,1813,2525,654,2432,2451,2151,499,2039,1542,336,536,105,2407,2368,355,2119,2011,2217,487,2138,206,1686,2269,1852,753,1765,181,431,1244,1193,1144,1955,737,629,775,1252,2211,1823,1627,1679,449,1261,2014,2126,1086,1869,404,1458,1592,2429,1656,1006,1368,2108,2052,2462,737,740,960,563,2531,1287,2503,637,536,206,1677,1788,1956,718,2306,1484,306,382,1807,2523,2345,1161,1217,802,1546,800,484,1152,411,163,1146,835,2558,1001,2002,1315,1447,2115,196,1342,1327,420,1018,975,833,1816,1882,281,459,573,2260,2495,662,48,1898,1111,1584,38,735,556,1568,1792,1789,876,1720,1707,1148,1295,1334,2239,1291,987,974,1815,1345,265,1471,2217,529,2343,1742,1115,781,456,2025,1716,2486,1859,266,59,992,656,169,2305,2324,878,866,1024,420,2083,765,1079,1555,1305,429,558,1343,1020,299,416,1714,614,2061,303,81,1098,1491,432,683,609,775,2071,2204,2181,1391,1854,2233,1594,1444,2153,1625,2165,788,1865,16,2005,311,2201,2347,1484,652,1588,465,1135,646,964,1335,1438,256,2474,737,2318,2391,1729,1947,1987,235,1849,1279,1933,2240,1889,1893,95,2047,1915,2445,2437,1231,1592,1806,664,324,2016,820,261,1256,2408,2207,1798,2349,865,2517,285,479,1301,816,2017,1287,17,1281,2152,1241,1360,583,1832,2125,1436,258,1338,1175,1168,1396,652,312,2380,1515,559,1138,255,2507,2000,1829,1995,1624,894,2434,818,157,915,1454,1574,860,1350,1736,2381,1233,680,2365,230,27,972,184,2217,263,1573,1803,770,662,62,2027,968,1605,837,1312,1447,538,582,1213,234,810,1019,2527,1681,1434,1828,2030,171,221,1005,1794,1363,899,1321,300,1007,381,1463,2239,1135,342,1529,1107,269,1936,742,2048,1116,2201,2218,167,1608,1421,1852,391,2513,1443,1296,133,2056,1389,2330,2050,473,14,2530,1079,280,2493,615,174,1851,2266,1798,1820,1700,1173,203,2058,478,1079,636,35,444,1937,2536,1573,1469,1774,204,1632,1537,1685,2433,1795,99,1220,2432,1344,1029,375,1735,912,376,1715,1189,2320,2322,1188,1952,2111,1770,2237,1714,1790,2350,589,966,1408,2173,182,924,1135,1679,1276,521,1860,1264,310,1493,2504,759,122,2227,307,1768,2490,2555,1625,1728,2187,506,203,1479,1178,1877,1639,1492,381,1394,819,578,1394,1697,2466,1322,143,4,1248,2515,789,1868,1110,1801,441,1225,33,573,2091,1538,2355,571,466,69,1541,13,1967,1289,1397,1517,2459,1451,2040,2416,1301,2560,662,122,2292,2135,2268,431,2316,284,2089,564,1049,1040,369,1932,589,327,1496,2097,1143,2467,881,999,1217,369,151,308,655,954,1395,246,2284,2514,1793,2368,1307,2092,544,111,2340,756,594,348,113,1522,84,2463,1,1777,756,980,622,473,588,1480,1760,1135,888,1398,2300,2507,1349,1257,909,2136,2195,195,720,1795,2249,1820,261,1590,1200,101,191,261,773,1710,2072,1264,1425,785,60,1384,1189,401,1116,1991,2155,2423,14,1753,1781,1549,771,1599,31,50,2149,1749,1110,26,2427,1950,2257,2555,2405,2043,867,1611,1151,499,1537,1270,1810,872,2551,1732,1150,599,2363,440,1755,1639,393,150,2373,890,2443,2314,1054,623,427,941,1065,1352,121,2031,2381,843,1385,1786,160,2464,2293,324,2188,1579,1634,1508,2059,2331,1232,1072,1687,2196,245,1302,646,873,2003,847,669,1978,969,340,1710,1269,1784,1098,1962,912,1087,2416,1803,978,1286,2526,306,667,2340,1552,1124,2395,1736,1686,1147,2065,1372,460,1992,1002,1610,1435,649,104,144,265,1841,1968,224,1019,684,797,40,901,1037,2007,389,164,399,1019,642,553,963,621,665,805,2368,271,1720,676,1645,1439,884,180,877,2549,1304,1268,1820,1655,1557,984,1359,1358,1582,1370,2289,1438,542,1722,1651,2275,1876,1291,1124,1526,283,870,2334,1586,2042,301,982,1261,1653,605,778,697,1440,415,496,855,895,2330,2083,2184,1793,888,1832,68,2362,1449,1252,1432,96,1337,2441,1909,594,2248,2471,971,21,2398,1942,1181,1614,2222,630,1857,2,1354,1987,1491,2411,1605,1592,1095,2517,1621,1132,2495,1858,1719,169,2238,960,265,937,1790,763,1327,1733,1283,1631,2434,539,1724,1851,689,327,166,22,1056,307,670,395,661,1293,1229,753,1601,1165,2178,1247,207,1445,2407,701,1020,509,1614,1330,870,1660,409,1923,167,428,644,1113,1217,1014,1340,731,516,716,1816,1540,649,421,1238,532,345,945,526,967,2504,1553,1198,132,1187,2134,1651,2105,410,1977,1701,1972,2528,988,2172,1301,2478,2016,1207,138,1943,635,662,2191,2408,1515,813,1747,2433,553,2402,124,177,2555,373,1639,280,2238,1894,2177,473,2004,2101,2391,1862,1386,1778,128,911,504,1813,1277,1596,36,2270,1213,1471,2313,2447,2438,1122,326,1503,1081,1451,2208,1602,575,2349,2520,86,424,2522,1595,1795,2008,398,1600,1313,1169,1116,2403,1171,555,274,1276,1730,28,472,2251,2455,1137,1164,1514,1497,317,457,1197,1509,700,148,1215,2525,2484,955,2373,630,742,1284,449,1461,51,1403,1785,665,1839,842,868,2027,256,970,1468,2279,633,486,186,857,1897,179,1251,873,1147,90,1487,1960,2323,930,1211,622,901,395,974,2285,1909,1500,304,23,577,1527,158,1324,634,1239,616,742,1562,697,874,654,1523,1672,848,519,1032,1035,1650,2112,2365,1679,405,712,2488,1769,732,1666,1041,771,2401,2549,2494,976,1402,305,361,1076,1771,2545,829,2323,1712,723,414,2241,937,2173,1465,252,167,686,1698,337,480,2200,1522,946,2444,1818,128,1669,1567,463,1491,467,2303,1594,2548,55,1163,2373,2044,26,495,581,1737,1620,2313,2026,2293,1329,1530,1160,757,946,202,1133,2539,1472,508,2010,199,133,735,1961,867,2280,1537,1881,397,2339,854,834,1577,1628,330,2341,623,985,1911,59,1169,2377,975,2510,1927,1279,1026,1281,2078,1433,437,514,1716,264,314,1220,2111,2304,2461,2079,1115,2198,449,667,654,2451,1160,1913,280,1795,163,1463,2440,577,1022,841,1009,1736,633,2391,1180,933,2546,1704,1786,375,1088,2002,317,1255,1731,2375,1902,1392,1116,1920,1150,2474,1724,2232,1244,2316,305,238,1845,2515,1260,1553,420,517,113,589,415,29,764,1925,1505,254,2419,152,173,2457,791,2479,205,1394,41,1977,695,2439,1714,1346,1950,525,2169,2050,2094,2207,608,1935,2193,2304,2504,1840,760,1339,2476,567,1953,1115,1639,1939,277,1497,2244,1633,212}

    1855

    1330

    Returns: 163720013

  52. {565,1003,243,81,1293,274,1247,1041,481,853,1011,132,1391,1123,1383,1208,702,1180,1435,795,1368,799,1294,1061,560,39,494,1083,1573,281,1141,1173,1501,158,1434,1447,1392,1051,184,978,980,1209,214,1104,721,287,1542,1350,222,81,1511,611,685,1341,37,877,170,242,1380,845,1213,387,77,1247,1167,942,1294,1521,1022,400,1016,904,1429,331,986,278,400,636,1252,19,1485,1361,172,712,167,1070,651,1115,660,295,1537,830,1176,558,583,448,1250,312,960,291,659,1423,1228,297,1101,214,229,500,1563,180,201,519,535,1034,1183,1329,675,793,826,677,1101,408,331,634,1116,1078,1067,563,1160,1408,1523,204,998,48,129,541,1043,1095,1426,1113,1486,1474,168,985,37,740,811,88,1081,1439,1322,910,1210,1045,912,627,1452,1333,463,1359,101,1154,667,1163,572,1433,1448,1279,978,657,1069,1248,634,809,631,499,791,1293,440,456,934,449,172,737,262,656,295,1555,1311,648,1136,1527,1303,1365,468,735,1373,416,634,463,680,1547,832,340,1221,645,700,1018,706,1526,1041,1266,1013,622,544,829,1036,507,91,516,1476,1336,1077,1427,620,869,10,1429,341,872,1312,1121,852,451,162,761,442,1332,779,1169,53,684,1397,686,316,793,1559,1053,479,298,1451,596,533,682,1118,56,1551,166,144,951,21,931,1562,888,617,1271,1152,1122,726,1233,56,796,1278,1308,677,1224,271,1472,1519,130,566,347,223,1055,496,1442,763,1350,551,1117,554,645,81,1270,400,1305,874,386,1409,701,159,134,925,1356,20,267,1540,872,1363,1059,42,701,27,1360,1430,398,1448,1315,1281,171,1127,989,1411,84,365,835,1107,1334,1445,983,145,1342,65,808,1024,823,529,1570,1326,156,805,1063,821,70,327,1395,512,172,578,487,1146,236,954,624,1008,400,1558,1239,1027,442,392,1342,492,761,22,1200,303,89,169,997,47,1154,1485,122,310,68,474,1101,842,542,776,1137,1357,172,879,1538,1104,1415,749,1210,347,204,1533,514,1109,741,1551,36,1390,664,264,948,407,1470,536,1185,150,831,924,382,942,677,1473,1168,1046,508,223,1341,1467,398,24,1058,1131,165,146,1247,1033,1463,661,1179,779,303,728,208,559,1302,1517,1550,1039,792,1380,753,819,639,984,1142,1428,1484,807,284,1016,1507,1278,1225,1452,1121,568,1538,464,1181,795,401,43,1073,60,825,267,338,1076,637,45,314,1114,475,532,442,205,837,270,106,1429,187,190,1438,674,315,711,378,700,905,833,1149,0,165,260,74,689,1037,158,894,1328,1327,1348,882,77,1017,383,330,152,833,1015,115,431,1097,251,1573,150,1115,173,45,238,721,153,1462,957,1034,783,1381,1474,850,725,899,459,4,1017,791,1467,303,429,1197,659,90,931,917,1015,571,1421,1391,1247,1419,150,1133,1353,88,867,1491,1306,243,1378,630,399,138,1303,115,921,903,436,592,27,409,69,375,149,580,68,161,1221,1155,612,138,497,1479,851,219,126,294,191,794,814,165,1136,1455,1259,789,1488,1042,835,829,126,1345,1399,1124,1239,75,1028,567,951,319,1252,1368,870,1582,126,475,627,1156,207,1077,471,837,607,555,27,1121,1391,256,545,51,1115,880,57,424,421,720,95,816,1462,532,1135,858,996,405,1058,505,707,747,727,642,470,527,13,1110,1030,113,1156,621,891,1305,426,300,32,704,719,485,1521,1030,106,1106,148,122,682,972,1401,1495,1343,533,1047,1204,596,84,203,567,551,842,1424,1311,1563,785,904,1499,101,1126,166,608,1327,1255,1193,861,1432,1324,1287,1046,235,799,1235,523,925,1337,870,565,225,1441,663,1540,1006,1336,1371,105,979,625,913,1169,198,1091,844,1185,1341,400,1159,10,424,1269,1052,130,360,229,737,1080,121,297,1454,364,1071,966,171,26,445,1093,1126,394,1436,516,1455,857,442,1042,342,1239,667,62,690,1336,350,210,611,1142,844,410,406,1468,226,1335,368,338,981,1504,44,1282,1206,72,1160,295,1471,1437,1481,1212,808,1074,1184,548,1573,84,1537,303,831,538,1141,410,560,1503,70,1519,20,207,259,354,186,121,1155,1348,1527,674,130,1102,1125,1350,139,280,1192,150,275,524,51,997,750,897,854,387,1422,851,193,460,532,627,624,1166,175,835,1340,797,339,357,508,862,1444,1386,766,422,60,996,605,975,1031,1164,1527,1398,1387,790,438,239,574,731,728,125,753,356,545,783,754,759,747,1004,1470,1481,1450,1298,1291,587,643,252,108,578,290,372,169,6,887,949,1214,628,1546,352,50,1528,446,1512,922,502,747,541,1376,882,448,735,305,544,1318,168,1012,1021,966,308,841,395,824,1554,279,79,1070,1035,1557,646,1556,215,1237,117,907,1051,298,618,515,1044,1495,797,1514,252,1557,337,301,141,897,494,679,826,353,609,1070,373,17,773,1522,1050,41,1549,437,495,367,764,562,747,1349,1138,47,335,119,578,815,1015,1405,1046,1271,1260,43,1546,399,581,355,824,136,242,501,1214,942,683,661,250,970,1477,553,558,60,892,1480,459,183,859,1189,937,994,1224,1012,467,708,1194,810,1518,203,218,611,375,1554,1250,1447,624,1380,815,600,25,1328,1258,930,503,553,1293,788,1504,294,609,1166,1290,989,771,45,1573,864,998,155,1383,1255,1188,1214,1235,413,1580,1001,1246,430,1045,4,882,1380,546,1169,457,768,564,137,1352,1123,305,1498,1142,1078,974,705,659,550,1456,1064,971,1167,534,335,803,885,444,183,1446,1298,834,3,600,575,279,752,150,907,829,162,1011,77,329,703,178,394,103,106,432,1494,869,1031,79,266,37,1241,145,865,993,1368,295,1466,1222,660,1399,484,1347,1228,1510,1175,1029,531,2,1289,200,1034,118,816,791,995,189,1562,196,569,467,829,964,583,439,50,261,399,1495,173,731,840,1235,93,1200,298,508,942,347,1532,594,52,298,1378,277,925,399,1199,1382,442,564,1577,756,43,1175,1147,1133,777,137,1577,540,892,1541,173,1049,816,442,1312,1107,1560,522,313,12,51,1,390,1262,571,451,1013,1448,476,1203,705,379,611,1464,875,237,764,867,1545,376,262,998,1245,743,435,103,987,330,72,230,1296,198,659,527,1567,134,1423,119,1422,1191,1133,299,772,1489,715,1180,389,1254,13,855,787,1280,676,221,673,400,981,1539,1298,315,1568,1557,1561,463,1017,519,362,453,443,1254,455,642,1518,421,472,576,596,145,777,490,718,876,962,585,9,653,307,659,150,1169,1205,551,1225,1529,136,261,588,1371,1003,205,489,723,1017,1229,29,137,1333,1384,652,302,664,31,1396,1433,1283,816,1108,1553,558,6,724,1061,464,671,739,1531,820,1198,6,207,1539,1084,1558,922,1041,1019,1132,1556,733,861,307,1060,1013,247,240,1078,586,982,1139,68,1326,35,1567,581,1142,438,952,433,328,1350,211,898,1519,764,625,553,399,641,173,406,1095,1087,637,10,1559,734,271,721,401,495,353,581,180,1239,168,444,721,870,1139,348,66,762,1097,747,222,305,298,58,844,849,1052,932,459,7,466,1032,1465,1401,118,1530,1458,326,539,1399,1103,451,903,404,761,1520,341,953,769,1377,1062,1313,346,557,7,756,1372,273,505,1452,1540,496,859,1007,911,440,4,1016,41,1419,1057,14,1155,1371,552,1007,850,323,845,1302,114,504,1466,1121,1026,318,509,751,794,1156,188,76,1532,518,292,479,1070,726,1420,1562,568,1287,56,575,814,575,77,197,23,1001,559,597,511,677,306,722,67,666,736,1250,1130,1388,1245,1292,1,742,1350,618,388,1089,919,602,172,267,609,1543,495,381,1330,488,815,215,880,1431,227,304,940,869,926,655,128,223,301,721,1195,442,565,267,192,1273,972,1519,479,1220,1340,606,1452,198,759,974,1235,1571,1480,493,856,1003,140,906,800,1079,1108,717,520,757,1185,1166,603,990,1447,1422,1216,1414,1247,1030,1579,263,959,1355,873,144,1153,894,246,1226,475,1529,177,607,41,959,136,146,1166,1507,112,859,418,1251,440,613,1384,51,844}

    {212,1247,869,39,525,672,1401,734,381,1480,895,814,1464,538,893,1562,1126,1301,266,202,976,262,182,586,972,419,1560,1493,1529,1277,1293,1498,295,347,998,393,1321,166,1017,1157,1244,565,1278,804,465,1181,1235,1286,825,1013,399,1405,442,291,561,40,332,1010,1135,1358,538,1127,229,165,286,418,951,1153,819,1247,1054,1067,977,565,1401,1519,553,53,894,89,837,16,1405,1498,673,1013,504,94,672,869,344,1507,664,1095,1479,1295,798,161,515,955,1391,916,1117,1108,786,780,1473,693,427,999,1309,6,833,236,714,1374,1425,54,593,938,396,491,299,528,1096,346,1275,1513,486,1040,577,1346,1148,1068,892,498,618,738,717,779,1284,1181,940,1073,83,56,410,547,895,19,1298,215,1263,509,199,681,1170,806,611,1404,343,338,269,1227,1023,1180,790,553,2,1133,1214,1233,1422,222,1578,827,119,319,76,612,1001,1066,633,1544,690,1521,1242,155,611,29,1163,75,4,136,1138,70,1399,573,78,778,138,300,1573,1496,8,1013,214,927,971,72,1070,1298,1238,614,1359,441,1059,99,1575,46,1515,1370,908,1377,581,920,366,1350,309,1535,949,454,587,814,104,1081,590,49,211,1478,1443,1506,58,1197,352,1520,1394,851,1048,1003,1013,1557,944,817,769,117,142,1465,782,963,1139,650,1538,34,193,642,948,892,649,951,386,578,1500,1320,801,567,1018,325,534,658,989,1336,173,940,123,736,1575,102,498,1392,1484,697,1328,1190,1492,154,793,923,526,385,460,1223,397,266,255,1072,1061,1401,1254,931,1291,1185,701,1465,732,407,639,442,6,317,800,1196,460,306,1043,1350,812,670,10,47,1089,208,643,857,1162,440,847,1247,183,211,781,546,163,310,1250,1134,628,847,168,1498,348,914,979,325,229,771,1062,956,1113,1126,785,402,691,919,916,1393,591,1391,762,137,854,160,173,963,556,1065,1252,1075,644,561,1220,1240,1503,688,417,1235,1013,1198,1425,869,370,236,1532,1172,1167,298,1425,529,1005,1162,1447,835,1469,698,1418,1232,86,1023,506,1245,1047,1139,1482,251,649,1190,552,1118,1457,15,1236,281,940,1119,801,1058,1280,13,1119,72,330,854,235,1468,1484,1177,764,316,345,1188,493,395,989,562,1079,51,432,751,161,394,262,636,301,977,1283,1038,965,998,208,126,83,358,583,296,731,1459,553,857,584,647,1228,92,439,166,1541,611,579,929,1213,1344,247,1378,106,981,214,489,234,767,1218,845,548,863,1515,1095,71,741,1429,563,745,151,585,671,1041,614,1447,950,1019,578,862,1464,276,742,1020,724,165,1300,49,161,236,1070,1228,168,1039,1565,1174,1161,1003,1184,1364,134,1418,1135,962,704,400,1271,1080,800,101,271,30,1149,1379,88,1515,1313,163,1230,346,351,1133,164,640,777,455,164,411,194,415,1140,1002,530,888,772,83,1197,615,391,1461,907,223,717,77,29,1219,450,837,641,1112,813,842,1317,654,631,125,1391,1130,968,1378,581,1172,213,660,1554,726,227,483,428,656,267,679,606,695,1201,252,97,839,314,1186,884,590,849,1405,1417,801,1309,760,729,907,742,946,635,935,1308,1552,729,998,218,403,1421,1578,1231,332,81,1070,729,249,1314,1264,355,185,1000,1187,1308,711,1508,690,1083,617,1487,266,305,478,43,1450,1447,599,80,607,735,717,629,282,330,1128,235,1090,303,458,5,1016,1407,1361,206,1205,1293,805,207,1470,1143,1519,1247,31,670,1108,1510,761,631,662,751,1371,958,47,534,1139,1406,1373,497,217,1323,602,570,1319,458,1234,891,699,970,107,1043,156,1204,1451,507,363,1192,1252,96,301,400,143,1092,228,1051,581,411,623,1257,465,71,1139,1007,292,610,1071,981,250,41,219,748,133,1158,1560,1311,842,89,1247,807,896,83,21,1541,368,251,1252,133,292,1235,469,589,988,1564,445,1413,1495,967,607,1165,435,38,961,1086,867,1094,306,420,177,1543,534,768,1408,1076,1095,313,767,1430,179,1298,1185,1574,1323,743,1365,1506,701,280,973,89,991,1268,1151,432,578,709,509,1457,635,1056,578,1202,1102,252,799,471,1340,405,659,488,511,262,267,221,1098,135,1079,432,531,598,1328,479,418,854,311,254,442,599,575,1178,1267,1560,998,828,890,110,1243,1527,1124,844,1505,662,177,1298,831,819,288,810,71,879,303,364,1279,181,90,1316,442,1504,416,1444,51,952,844,663,571,1226,881,96,4,569,1529,131,1127,1350,770,1145,735,611,361,716,73,867,698,1074,1283,291,1519,513,1327,854,482,1516,4,272,1401,144,63,1111,1183,1233,753,675,324,385,1113,80,936,632,735,1252,578,1120,157,562,759,710,406,713,209,1409,1207,1559,216,1346,391,993,1299,868,1025,164,155,295,564,462,320,1131,463,675,677,1311,1356,1429,647,1382,967,493,984,79,345,1403,334,1307,728,1532,1276,939,980,82,394,1133,1462,322,1074,771,1315,886,35,389,1350,554,199,1562,461,82,615,475,253,567,1225,1561,677,28,1174,1402,530,900,1247,394,244,410,565,1302,1114,742,924,1111,631,32,1339,510,67,77,459,1484,638,669,246,974,169,1543,1391,32,1369,1303,1001,347,845,799,1460,370,1560,223,235,619,1297,1534,500,1581,943,1217,916,1559,340,835,432,890,845,1523,1206,98,60,866,1304,822,978,1298,846,941,532,136,551,423,1470,290,432,521,432,1576,149,1315,1278,72,300,127,990,1425,93,81,1514,155,87,209,1087,64,1375,549,330,265,677,1509,1061,447,1284,1333,761,1328,1082,1369,1511,945,1559,1249,1140,969,1280,909,235,347,1532,1205,581,928,235,1080,878,301,19,933,918,414,1193,483,1144,1265,1250,656,818,33,562,1395,250,961,765,977,619,543,282,772,1073,477,1150,366,1116,245,631,257,1058,880,1322,1120,207,1100,1126,1327,24,124,1533,258,565,430,537,1041,1473,1133,1560,913,163,1468,466,473,1467,1162,1391,438,902,60,1284,1362,1509,1271,604,1079,463,785,1145,625,1225,237,363,967,1527,608,444,1497,611,626,464,839,398,1200,173,1020,820,159,1285,1063,991,750,1536,1383,1367,668,1378,1124,1314,640,1538,288,168,1327,1520,467,1569,319,1297,323,726,726,1560,802,1190,1470,365,670,589,1288,195,299,613,744,692,399,578,357,128,1261,396,1141,1215,116,751,1351,1354,1548,807,1278,183,276,915,380,616,446,1402,633,1215,349,438,1538,10,20,1357,333,1061,480,63,947,408,176,678,444,1449,1253,1389,1366,1551,220,860,880,758,192,843,1036,134,763,1059,691,1462,778,1189,1430,289,233,347,961,109,633,1274,1271,321,553,399,293,820,1370,1251,511,1440,784,1455,1224,887,1115,371,558,721,319,161,746,1014,797,1338,787,1155,377,232,726,59,883,1129,1475,134,735,369,479,1256,1354,583,1059,500,596,1325,224,1183,1289,1525,111,563,794,269,146,1,444,1524,1086,752,76,250,1502,374,461,871,1583,1039,24,1284,582,871,1532,1112,1331,326,1211,165,248,636,1297,394,1295,1359,1429,434,1412,1416,1273,924,653,271,1317,1171,838,689,1329,951,384,1453,1179,1283,755,980,1270,208,70,336,100,1380,604,1328,848,763,515,285,707,517,1293,273,1085,1340,1112,1357,227,1410,1169,268,123,764,1390,536,707,1512,933,425,1009,266,251,1315,340,799,18,658,1160,210,83,746,660,1340,426,1572,55,614,1068,521,1246,1383,775,1066,585,889,85,1136,1399,411,842,696,77,687,51,174,222,774,183,1315,4,1,795,271,1396,452,11,1292,925,854,1171,992,675,836,266,694,701,1099,163,418,875,2,897,1182,121,56,13,867,165,40,910,241,1240,1485,1558,172,1200,1483,63,959,6,1043,730,147,593,1057,444,544,1385,724,601,996,1305,164,499,770,68,318,800,231,565,89,120,493,193,676,961,690,185,1400,665,314,10,926,359,1558,236,1098,1538,733,1272,1432,901,412,1242,595,89,472,140,594,110,735,364,1310,1490,928,635,1088,1566,283,1105,926,701,61}

    1075

    381

    Returns: 783107610

  53. {1704,509,140,45,153,40,1102,261,70,1737,427,254,294,125,1321,1822,689,1750,1773,18,583,529,1295,887,1427,151,1101,832,719,235,949,1132,224,1030,1396,1082,618,1313,1740,532,1090,1419,1513,139,763,391,1334,24,1317,198,1322,465,1582,1324,942,1223,690,435,1731,1467,24,397,215,1367,723,720,1371,1199,331,1651,911,1693,1159,1031,1136,691,1143,812,478,1597,1523,582,158,1257,295,987,592,1289,776,1633,283,1483,280,172,1703,854,379,1072,1576,320,1425,1526,634,1508,385,1022,369,298,309,992,146,1113,563,308,138,83,1441,1223,1341,661,713,269,14,1811,893,1097,703,119,1278,268,984,1498,413,425,959,1091,1420,1227,58,582,131,542,567,1259,268,654,216,1691,19,779,1323,38,991,756,611,522,622,1308,1400,658,1707,1666,1453,1450,681,977,1659,889,854,1627,414,1711,576,1071,540,446,1651,1400,1224,1059,1105,556,767,683,340,691,1469,913,1437,206,1251,361,32,1668,532,306,586,999,828,1483,57,1260,839,1336,1609,170,1629,365,631,859,500,79,1480,37,881,1741,916,1530,1794,530,1341,1479,753,1515,93,970,1393,271,1494,1319,395,772,273,1408,864,321,331,372,42,1052,1164,1582,1366,820,448,1764,1322,1599,294,333,1226,563,561,996,225,947,1560,137,338,1458,353,989,1138,411,170,1044,1393,277,1284,1527,1338,142,933,126,543,1348,1074,502,219,1354,913,938,1439,224,1446,357,1011,1631,1753,1483,339,291,1078,551,970,983,4,175,1640,1005,699,1024,1417,679,583,156,1276,149,800,86,1130,1597,584,582,1309,300,1317,423,733,35,209,1324,307,376,273,769,1149,378,1110,272,649,163,1217,1124,102,1582,1156,126,146,1144,1643,569,1621,1671,794,543,1287,17,430,533,733,411,1343,1418,493,1511,1314,1488,1353,745,911,1309,683,1327,1064,124,1431,1665,48,1319,1610,403,1323,1473,1381,770,1070,274,1413,258,773,929,220,1454,808,1318,1012,1529,1689,1201,1781,1650,1531,468,163,788,87,792,954,1623,1448,596,978,120,1466,997,950,224,1238,612,117,1630,616,820,516,1384,862,1471,1525,1302,748,274,1439,675,730,1483,1418,123,1256,229,855,288,972,1531,1351,57,705,1596,1480,312,832,1811,1768,747,1149,681,73,909,1129,1120,640,1330,258,659,970,518,1331,1353,92,1428,1585,463,638,653,1553,201,1110,563,942,55,1249,78,851,956,255,1536,1590,562,543,992,1295,284,1502,98,1516,506,789,508,706,235,195,99,1210,928,1667,189,1522,1317,39,1386,1169,728,1555,193,1081,315,1124,343,1215,1557,1510,1270,111,657,891,577,103,897,1786,944,1337,389,1231,24,306,1392,1812,1415,1761,532,575,296,1128,674,183,1389,715,1769,710,126,573,194,828,1452,828,1492,581,1239,1801,1579,1779,1205,1117,1433,687,1821,259,1214,1114,266,819,311,1566,1769,1603,532,582,1364,805,1391,1692,1028,1378,1462,1632,1122,964,1532,346,1827,191,650,391,1234,85,1008,612,762,69,1254,442,36,302,1161,1407,704,733,1211,890,260,1571,1684,1475,1245,1395,371,1121,1061,281,989,1462,887,224,1056,1538,78,1722,514,41,935,502,52,1622,1348,1254,1698,408,1547,1617,476,679,131,1506,93,27,1035,1737,1345,605,674,1202,756,1320,6,826,404,1272,754,1284,1215,832,507,191,181,391,370,1467,596,1709,990,495,1626,1166,519,361,500,1275,486,690,228,1797,1555,1311,733,617,653,13,1724,1462,1225,910,1079,1325,1427,909,791,816,170,1174,193,1641,240,1409,269,184,521,66,51,1692,1821,9,1188,1307,93,493,17,1533,1210,936,1752,978,171,817,127,1711,833,549,1790,1730,1194,1558,1423,826,1230,1473,1300,796,146,1348,836,479,107,23,1672,416,1342,1562,268,1392,1482,868,844,1670,183,1388,1111,279,203,440,1576,893,1462,1335,838,1814,1165,697,161,1604,1389,1127,1458,1170,1707,1048,1206,1393,991,605,1193,1016,528,1161,1551,716,742,67,1675,1680,1770,1409,975,960,411,122,355,818,284,1029,1381,41,1323,326,1188,1384,919,130,712,551,728,118,110,711,1655,487,358,393,867,1509,895,269,1311,676,641,744,608,52,765,508,180,570,856,666,195,810,1210,378,786,728,478,878,1598,1328,163,1597,117,578,872,901,950,1045,584,1267,469,758,1558,169,983,803,1626,1300,844,1123,341,514,1787,1116,56,1464,870,447,131,574,1462,1040,971,1556,7,267,382,1605,797,176,918,958,1019,93,535,596,304,965,337,454,705,1339,1096,1688,1279,494,747,728,574,177,1399,609,622,1799,952,656,277,13,1471,1235,570,175,424,170,1493,1821,456,13,52,369,1210,1137,3,1243,160,1064,1381,1576,1182,1055,1098,1720,103,707,1215,1772,1484,1474,1250,1567,1393,1489,3,5,1667,1709,1115,30,981,581,249,240,378,1740,1415,1433,613,1557,547,1616,1442,1640,1058,184,1561,1628,259,436,8,1185,1335,188,17,952,1415,1729,792,248,1329,443,1252,1714,231,1284,754,44,1110,904,845,1337,1712,642,624,1681,1674,880,107,1216,619,1348,1315,1052,78,1427,587,957,1700,652,1444,1126,109,768,1638,361,1605,1056,343,576,151,1471,261,1230,888,1461,60,389,1306,291,1422,919,1228,360,1453,92,417,656,154,1685,1382,1783,459,234,22,416,77,1088,1089,742,548,1425,1642,1743,778,496,974,1307,184,1724,122,1762,588,361,1276,132,1305,948,713,356,1080,1536,1046,1572,1773,518,1432,294,459,639,1693,1734,548,1600,218,508,637,708,775,1766,1370,1069,864,282,1016,627,0,237,1825,322,947,1157,395,1698,328,815,1476,85,784,1648,998,488,709,906,1236,74,129,767,1392,1213,621,1158,1454,934,635,624,1226,1226,16,811,188,1519,1659,11,1200,27,1679,391,1298,1423,934,1788,1401,1390,1740,558,842,820,1014,62,1066,293,1768,105,911,230,416,1332,579,187,1307,1329,1648,735,655,355,1659,1729,522,1605,1793,1409,201,1731,1703,1558,1080,1008,1740,1380,859,288,922,927,1555,1451,29,978,201,1671,968,431,1551,1012,1237,326,211,199,619,269,464,1813,696,604,1201,1519,715,173,559,1356,724,724,1715,49,9,21,1084,1410,1056,963,1226,1813,1156,201,1120,373,1194,502,1004,71,1238,106,1102,966,1457,1054,162,598,63,706,1827,613,1114,1712,335,749,634,1820,1114,240,1038,672,656,389,365,46,1145,1086,1228,586,1633,320,1473,419,370,1481,1073,1721,1771,805,1601,832,1759,1363,1210,351,119,1171,1003,1210,834,1007,1796,1153,1171,17,349,799,489,1615,546,942,275,153,1062,141,483,1034,909,1178,163,1598,1757,734,1637,1773,535,1398,931,1159,1219,885,1075,1258,238,1161,1501,1458,1548,372,1144,1372,526,937,503,781,738,478,1116,419,122,582,1789,831,1278,1510,592,1595,815,1757,785,263,1125,523,417,1447,361,1384,986,1018,584,568,62,666,49,1778,1377,1317,1525,359,1508,757,636,1491,923,1613,826,1394,1625,382,1588,1830,133,1678,1532,231,473,1823,252,679,1054,794,1628,686,1206,1624,612,678,987,946,878,836,589,879,978,656,953,353,1521,1235,633,775,1696,1158,919,486,1471,1468,952,1182,97,697,993,863,488,1505,565,802,1442,311,1745,1289,685,1233,1007,1285,1073,845,38,1742,599,792,1189,892,1646,1067,1007,342,1252,1581,1235,95,1815,664,100,1446,210,717,1269,242,209,1582,811,299,715,1398,489,580,1045,361,1472,1415,535,430,1422,612,50,1632,1716,1210,483,1531,1240,1057,939,512,1114,1583,548,408,52,204,701,1347,1749,593,330,187,476,1727,688,263,751,609,146,35,1692,1462,524,767,43,1064,485,1765,860,673,158,1585,732,1629,568,146,1367,1480,620,996,807,1212,535,692,798,1006,200,292,554,823,1175,136,1195,90,1621,1424,1135,338,1010,1516,970,1415,268,1236,515,1690,888,582,837,1000,1183,755,973,1732,1096,1330,1177,1650,1139,1728,760,1314,1719,61,1671,578,937,1679,916,1645,461,314,1359,917,232,254,976,493,185,1570,1361,427,1201,967,107,1663,1332,460,491,330,1134,861,796,1818,1423,1093,397,469,1052,903,523,1502,577,178,170,9,1396,1196,490,728,1156,1007,848,601,1482,1594,1204,1181,300,965,727,763,1176,152,908,1195,265,1012,962,627,593,923,1317,1543,1151,756,760,1385,1301,855,364,1612,480,706,1728,241,842,646,364,792,872,1531,332,1304,1797,1392,218,1358,778,929,141,482,1810,193,679,839,434,605,1523,1734,718,1248,413,1222,854,1094,546,1568,1429,12,1647,407,74,924,1383,89,225,472,1264,1091,88,342,516,731,1129,1344,372,831,924,70,451,1136,1120,74,268,994,766,235,614,926,1505,1351,835,539,1443,1620,140,665,475,1269,1621,1124,971,305,135,1457,1363,695,249,615,204,498,719,1821,545,1266,1739,376,1580,170,1138,459,1522,1822,1108,1750,961,1798,1713,162,504,1825,691,1591,245,467,1277,48,1802,721,129,1238,1425,1000,575,417,984,964,15,1761,674,684,1561,307,1081,391,1530,767,1037,1247,1117,1565,1752,137,1462,287,1611,85,879,1610,612,596,988,1714,326,108,235,783,66,835,1366,406,1462,1502,1701,583,144,1009,952,1290,508,55,383,1805,681,1087,195,1520,595,1500,1824,1587,368,923,723,1705,1326,307,1545,609,1047,830,1267,81,1222,1827,1084,1458,790,1325,990,1498,1070}

    {631,1310,170,1518,1486,286,829,702,591,1043,330,93,142,1617,225,78,131,254,607,502,531,1747,292,698,1366,1561,49,395,1248,532,1099,932,392,1155,297,47,1577,535,359,1314,372,1024,146,400,1795,1167,1602,1103,438,1748,192,611,653,746,1136,427,1662,359,1001,1765,936,559,165,64,233,670,1359,701,939,1179,3,793,1608,178,407,1466,355,732,157,1356,1785,481,548,1032,1344,1142,979,1808,746,1737,1454,876,1612,1392,1435,1774,1117,632,1760,1796,158,1018,258,442,1085,733,1469,898,641,1499,1268,1036,603,1711,1452,893,1705,31,1147,973,1426,366,1261,872,1000,1195,640,400,1791,1050,980,1368,706,560,1061,68,644,1257,792,1776,885,1790,1827,1246,1283,1028,530,1149,159,424,529,187,421,535,24,184,1819,801,1018,1779,53,1410,1049,426,1095,1440,307,143,207,1148,1410,944,1574,1503,592,263,122,355,1771,1631,466,1339,785,1752,396,1557,237,1631,556,765,1479,1567,1576,832,1160,638,1469,667,1767,1744,1735,1176,340,1141,872,842,581,559,592,1231,1056,165,1639,987,1619,637,1034,651,1801,688,472,470,127,1401,1298,1413,640,1594,142,827,459,1194,93,1668,1352,1147,121,1725,1447,59,1260,519,264,1145,1397,163,142,256,17,260,849,1483,789,806,1333,75,84,494,792,215,152,277,166,825,644,1241,958,251,1669,225,683,1738,1098,1423,1046,701,1601,568,699,853,556,78,995,213,1297,186,111,1478,299,176,608,402,498,1247,873,1119,1002,1329,325,1424,1822,1091,1147,270,187,17,1350,1181,1000,1581,242,74,740,322,132,148,250,933,402,1407,1535,158,1026,466,0,1162,1094,537,636,411,1012,715,1005,193,778,417,571,630,714,292,1371,1716,319,190,227,202,1462,1631,559,358,1726,1710,754,1809,1529,705,600,231,195,1731,904,347,1564,250,1657,548,343,871,1593,593,455,469,726,1357,617,436,598,174,739,1373,1711,289,170,828,1125,1748,1126,1203,127,828,1376,846,1124,1473,1247,595,28,1467,9,1109,1326,309,243,441,1244,1634,221,398,1314,1384,750,864,1628,1061,48,1780,603,1013,1062,1309,1390,969,1178,1300,1477,1188,1192,102,1283,720,334,1229,985,1697,1168,1601,1582,1136,193,184,523,10,1443,1430,40,1557,220,493,1782,410,1696,1523,671,503,721,327,933,536,847,150,1478,312,324,1057,557,1133,223,1796,474,1828,168,1601,1720,1070,63,1790,697,199,502,436,1625,1334,741,433,348,137,1363,1093,1360,888,1645,1594,1483,1327,381,546,583,290,350,1478,1822,17,1220,1364,114,1172,16,945,310,1210,648,1516,453,1826,1324,766,469,1143,1305,1107,427,1745,236,517,1231,1363,801,736,1172,501,1127,124,209,1418,991,1255,759,417,625,285,1646,1786,869,946,1065,1628,1236,1784,74,1521,1021,1096,478,278,462,1467,1231,958,652,579,305,115,996,503,1471,315,774,982,743,1471,116,1262,1086,153,974,997,1604,1072,85,411,1547,1204,442,1487,492,352,535,90,722,872,1676,1415,1518,84,432,63,481,784,55,167,1631,1207,990,192,505,1221,1683,877,989,1707,1060,377,478,1775,28,1033,913,788,1746,885,1549,1467,83,1274,914,246,1652,1402,562,1711,186,1249,1490,52,1562,1462,760,1084,1658,1758,861,784,259,1227,443,579,725,841,544,33,1376,741,1632,1350,1432,155,1072,1463,1277,1552,448,1200,576,469,470,244,1820,1756,1163,866,840,381,1687,1467,822,1464,388,668,134,792,845,363,1457,117,1662,1553,120,270,1620,628,193,816,277,892,112,462,52,866,1506,1799,1356,1440,428,1292,660,598,1247,127,196,941,329,439,1156,939,893,256,406,1294,1363,34,447,826,1291,670,792,1540,1512,82,26,1146,1681,610,102,402,865,435,1618,716,866,940,1378,179,1794,1723,1061,103,1384,668,368,1582,1141,1265,313,276,1174,439,1140,652,1232,1621,655,1653,1508,1406,188,1136,505,1585,60,278,303,598,345,1550,852,462,1488,1300,885,1361,1091,231,1177,1191,1094,985,247,1240,235,1640,1409,341,177,450,300,900,1683,1294,14,799,1603,270,1400,1594,789,1521,1235,619,150,1349,1650,1296,1083,1706,1273,408,996,1501,318,644,786,933,1409,1728,643,633,631,926,131,1505,1544,795,881,1330,1242,1027,201,1522,1449,1075,1288,1085,1510,955,1470,585,1604,662,1051,1801,443,633,1696,477,1660,1194,394,191,1455,858,1131,1826,314,1656,1158,1076,231,405,416,696,620,1083,1614,1201,550,1207,423,1385,1459,1024,622,349,595,1253,1496,158,885,1599,101,1748,454,22,44,1640,1538,814,1155,1051,1210,399,1260,1369,83,737,629,55,163,915,1634,1557,1189,1534,433,96,195,471,1650,1299,88,195,883,258,792,1414,438,654,357,763,360,1745,1127,1379,1271,899,889,452,541,25,1436,1612,13,476,1249,509,355,1677,371,1438,429,1576,1077,654,1398,680,362,1699,1631,1063,1669,1386,370,374,1561,786,220,1583,1296,564,278,1131,1095,426,552,1471,1039,156,912,728,226,1456,637,425,1702,54,995,1092,1597,579,1371,317,641,1501,147,1186,1148,1667,92,1129,444,1222,420,276,401,748,1012,857,951,1522,874,663,1673,925,881,1409,936,813,222,588,1594,392,1443,1411,1644,208,1384,1806,579,43,606,376,1023,1490,701,983,1355,1465,483,656,765,59,553,735,645,1323,950,1042,583,52,597,748,1208,156,826,301,55,735,1528,1788,1074,80,769,1326,1323,818,355,367,742,1100,401,898,1437,1553,146,502,1734,628,1586,882,1531,1282,1401,629,956,224,1620,1817,1806,69,104,384,113,495,549,1000,1638,270,1752,132,47,1537,1346,120,725,248,1036,1541,1094,1073,310,513,363,57,532,1286,1695,1234,559,1246,1754,1635,675,1717,153,1559,316,682,1774,111,1659,780,843,1465,1573,1555,602,199,979,130,1518,832,1303,419,1418,693,1141,936,615,752,39,694,889,197,1542,1252,72,78,1467,52,146,809,387,755,792,85,1806,779,1718,787,1116,915,1058,1800,1482,637,1090,593,868,1525,11,1418,1569,364,721,1033,19,1104,1471,1067,484,212,1631,1728,653,361,1640,205,1451,915,7,1386,1814,1052,224,937,128,764,1440,153,696,833,579,354,700,380,1239,944,1030,63,201,1667,924,1226,60,1233,598,1575,239,442,870,1162,1553,1053,1804,1439,596,887,1253,55,1576,670,1315,292,944,771,343,1209,634,307,1507,1379,1524,1189,1316,276,1504,1628,322,667,1043,632,313,164,74,843,1636,1016,1727,1686,1300,1492,1473,141,1476,1434,729,1485,1522,57,20,1280,1145,901,481,1607,636,990,409,1631,497,115,1405,1293,1013,1150,398,1490,1380,1099,307,521,237,679,647,1539,1360,1057,786,1631,91,592,828,1415,937,1339,969,1173,1462,527,1658,1470,567,704,217,1060,896,1071,256,623,1510,907,333,145,197,706,1371,778,1018,1460,1227,249,1237,1367,905,210,1661,858,1440,930,557,871,1514,1021,855,1416,1748,756,1754,1577,1645,2,1497,1174,832,427,74,195,909,90,60,675,7,374,889,576,995,1152,125,546,638,1733,883,942,1352,1811,921,1815,1517,804,1187,820,1180,1241,281,499,1263,146,158,909,324,55,1079,1561,1337,576,1471,548,594,642,1384,1501,572,1228,1561,1268,272,150,609,894,1649,462,209,553,670,839,1037,1516,899,744,704,661,584,555,777,175,1293,1709,57,1385,1548,1453,1263,258,1685,1190,1518,1654,510,978,1323,1114,245,1369,821,1308,527,1117,1017,898,1198,224,1380,1705,1638,1457,323,94,1736,1567,214,934,1728,163,1807,1607,292,525,1365,1195,194,1109,1742,130,1377,84,139,1471,1816,756,1393,1114,1124,895,525,1284,1477,566,1584,184,520,439,457,673,1002,1483,1036,1412,1340,1655,619,163,1410,627,854,578,1531,1359,159,417,1572,732,496,1492,1195,1520,1150,934,502,1606,1495,1803,824,957,1491,950,1071,1199,1487,45,1162,1112,1069,415,1491,807,541,1828,1184,449,957,237,859,416,932,338,209,391,1546,1278,1694,257,1272,459,1355,349,1006,1022,1583,1387,590,668,279,1516,343,1131,570,592,1329,109,191,1015,1467,1239,253,1375,1025,1,1364,920,1326,628,1678,377,412,146,251,947,1238,55,78,218,76,853,792,838,1801,1682,1393,1343,80,1792,758,220,156,1407,1312,1625,677,65,534,446,250,1062,1374,875,1429,523,386,943,1160,1192,1563,422,215,797,652,1659,758,626,509,937,455,1731,1763,1589,1701,1407,1482,833,3,814,566,344,1592,1036,76,98,511,1445,1006,884,99,472,1445,1783,1760,1751,915,16,1404,262,1274,1229,518,567,953,193,375,1210,1118,74,721,661,603,160,1356,336,1352,879,458,1138,1281,1415,392,437,833,1277,886,828,668,1699,1691,1403,445,250,462,1739,184,182,1822,292,792,1036,501,1467,177,1362,1512,1685,268,390,1631,1138,1793,1114,1324,1145,853,1054,1154,92,1488,502,1421,1663,90,219,1106,320,936,902,649,1387,1018,55,761,617,567,376,984,592,1554,1708,1473,1536,1068,120,1777,810,240,427,478,1642,13,509,1669,782,1218,1578,488,1277,1604,158,531,370,1197,112,796,538,1427,259,1390,990,117,669,509,947,222,1041,292,855,417,840,1512,1635,1460,1207,665,12,786,1140,1305,850,1512,1604,839,1755,566,397,1063,535,418,32,1829,987,512,232,997,1437,447,1664,966,95,748,1020,12,119,729,625,546,845}

    1747

    334

    Returns: 18219722

  54. {124,81,54,44,80,68,67,150,25,1,74,88,63,21,12,60,151,28,103,23,21,124,143,82,34,28,128,44,82,22,4,65,153,118,137,157,121,122,31,141,39,22,39,0,19,76,13,151,113,35,52,161,75,46,33,160,41,94,106,21,1,145,135,105,5,107,155,97,93,110,153,149,87,102,6,100,132,104,100,96,120,159,131,57,53,81,87,34,47,87,99,44,64,21,129,142,83,50,71,43,145,78,7,32,63,127,72,26,130,151,130,66,75,70,90,136,98,111,155,2,51,43,53,67,58,94,40,49,107,16,54,83,22,35,2,67,27,51,149,158,25,73,64,104,82,87,22,92,77,144,89,116,146,6,106,101,61,145,142,24,11}

    {143,138,100,4,42,115,62,65,14,116,86,15,144,108,48,53,84,160,9,107,59,30,78,66,148,55,53,78,65,82,48,27,16,144,103,39,143,160,136,154,143,115,70,151,108,71,41,51,46,82,64,9,45,44,46,156,48,124,140,161,153,101,107,125,80,90,117,78,20,145,22,124,109,7,114,85,157,119,145,22,35,42,61,50,37,125,82,21,22,143,39,36,156,43,59,2,106,100,116,125,61,155,93,124,91,146,59,102,95,3,1,154,54,18,149,98,78,79,119,74,139,112,94,8,56,123,35,40,38,160,14,40,152,147,84,161,29,126,20,144,111,159,69,133,161,58,142,11,4,82,12,10,75,53,17,134,159,15,100,6,152}

    38

    90

    Returns: 874727653

  55. {652,1705,427,684,308,1077,149,1301,1151,1623,215,138,77,111,600,1243,1039,910,1023,1376,687,1177,346,559,1040,1389,1360,1372,838,1539,1166,496,138,950,1543,300,589,1271,1318,1483,1461,1038,850,597,948,176,1247,978,1423,29,157,1099,1450,1588,1135,129,929,16,751,352,735,84,338,441,1093,1588,726,1500,1092,1427,1413,1687,341,1259,261,799,422,104,1305,1454,1412,39,1024,609,41,1335,1644,1687,67,1008,1455,1342,1245,288,1265,774,1443,643,1101,796,1188,1320,1440,374,988,1572,726,1040,1066,43,370,1499,1276,677,1219,1014,1501,1596,1339,478,781,1674,972,207,1364,959,287,972,634,713,1376,1669,59,684,444,1445,169,1417,1205,415,1106,87,859,533,31,20,1294,1020,157,938,1063,30,661,247,1694,704,115,10,1188,386,1025,158,1260,1588,757,154,255,1415,666,1439,1490,250,311,1110,1449,1725,241,1438,145,771,758,10,237,256,298,1461,614,639,229,722,1540,415,495,88,948,1157,1518,864,1012,1231,1172,1412,1383,1159,1487,1211,589,1482,72,205,1236,779,331,998,1119,578,1413,1699,1263,1117,1000,949,1005,597,946,134,1332,885,99,94,1195,1609,1388,1089,664,1235,1729,3,991,1208,1711,1468,1615,439,29,1575,605,1010,1370,1278,530,1144,1083,280,1083,1041,813,209,69,1376,864,1596,1572,828,1351,1371,1680,817,911,864,858,1054,1553,131,1163,1464,1379,303,1557,1102,359,767,256,937,1505,695,958,842,102,1262,1547,1541,1606,140,1041,962,1033,713,1011,134,871,1305,290,1563,596,381,738,998,160,1664,824,175,1586,1523,1088,515,605,1471,1072,57,1682,1400,1018,1096,1213,824,1245,7,48,1660,303,22,1710,1581,560,1547,825,843,1138,1223,1142,1516,1521,387,1659,678,1037,117,1608,1118,832,1527,44,1075,1053,903,1195,695,185,1626,957,1145,588,1208,1593,1723,1068,514,575,441,1357,1384,756,589,353,1383,581,753,1411,715,1300,1248,1375,661,164,1187,1025,1211,361,577,638,909,1635,585,1224,82,1269,293,233,1186,302,703,207,836,871,78,1324,1366,87,978,573,269,968,1437,1486,1028,1076,980,331,1150,1019,1194,33,238,384,1184,255,360,1238,1471,1297,642,1007,1459,1536,234,327,1552,645,661,728,227,305,1116,835,1588,1412,1655,1490,1210,1542,1514,856,503,863,1642,604,1532,151,1124,1197,1286,1602,324,1489,1621,1066,1606,765,909,49,1623,1229,1568,35,58,1051,647,1247,999,1172,1394,994,43,1214,693,671,268,1442,761,376,629,845,125,1470,164,1422,789,574,938,1343,269,64,1240,66,670,590,573,742,1581,543,1521,13,74,1633,1546,1320,1497,691,548,1594,1165,282,751,1346,1220,551,715,607,471,1727,726,104,52,1533,597,858,1138,1553,758,1541,661,809,252,656,626,945,1317,809,711,589,389,1456,1042,932,18,1092,861,847,1094,881,1687,1292,583,1687,719,1638,1113,7,1482,1596,1331,1630,261,709,1588,1596,139,692,496,1433,1108,154,345,362,1519,85,351,52,684,157,621,1278,330,699,1434,29,1064,995,1532,820,1480,235,191,734,276,1375,845,1263,318,1636,599,369,1079,866,623,144,982,630,1278,785,1154,1238,694,1263,1569,593,620,978,688,150,734,718,388,40,1297,590,1308,911,980,652,142,1153,1248,975,201,1297,1661,1680,1496,1201,927,262,1443,689,710,816,472,54,1666,485,1019,349,584,1470,1621,904,1032,1510,1232,43,945,877,2,1239,198,1538,770,999,856,975,1372,1193,1359,1129,1413,1649,577,797,13,117,1721,75,1301,1470,311,19,586,119,1060,863,173,159,829,1696,653,260,1489,1109,478,1087,1237,200,281,477,363,888,912,899,1334,1479,1484,1683,1236,1342,1237,595,1649,1538,22,1437,534,1598,500,709,1512,1035,839,684,1465,617,1558,241,1444,17,358,867,1717,676,746,701,383,1685,1316,1085,895,1685,1240,1120,854,940,1072,1450,988,1293,306,188,1643,338,753,50,1309,902,631,1419,161,84,736,1698,591,1184,1345,176,477,453,192,1447,993,199,1403,478,1350,636,1335,1531,651,110,960,497,997,419,822,475,681,436,743,562,932,1551,883,557,92,1647,1197,1321,508,352,400,1687,1641,37,1581,1671,1052,264,616,1057,1172,640,1717,324,1433,1190,1198,1671,1302,247,1059,1111,809,182,1481,1262,1671,803,957,545,260,196,580,1167,1670,1022,1708,892,804,1687,1409,667,1661,1521,121,1437,1444,369,851,793,736,1305,802,1389,1182,1110,1082,1441,523,420,274,1175,538,1620,531,1541,547,429,572,636,304,1411,757,389,934,726,717,432,1543,1231,1208,1397,683,1067,1208,996,243,555,359,516,1355,1165,899,1004,801,102,132,622,866,1250,547,1389,849,981,442,977,446,951,583,261,1628,1452,1147,884,227,857,1043,94,1400,1018,542,1443,757,968,419,766,745,559,670,1153,1348,1655,1176,321,537,1347,177,113,1563,34,753,462,798,1561,111,797,1526,536,106,1040,184,1487,1389,1049,147,1333,510,322,487,1582,352,936,669,1322,461,1383,1088,1242,661,965,683,838,218,512,233,1402,560,491,1382,231,313,1690,405,1680,1471,1687,588,1425,653,1637,1254,754,498,82,556,481,234,692,1495,1717,952,1612,868,1385,990,318,1684,785,299,136,372,1147,1144,221,1315,1244,12,1543,948,283,728,937,1172,1344,1279,669,352,93,1702,2,1719,1017,1210,679,824,1109,1395,352,286,1092,104,1170,789,1473,832,1546,1152,160,463,589,1715,1316,764,970,309,159,1709,147,972,1058,230,217,1356,78,1334,1194,879,841,1331,168,958,564,168,1257,693,942,556,1037,47,87,1596,128,560,1594,1567,191,807,1216,652,422,921,1570,190,1639,1056,1277,441,1326,1718,693,563,1098,1139,821,819,502,27,1030,957,1517,491,151,1524,444,1475,256,53,773,1474,1007,619,809,769,389,1531,180,34,790,1338,1276,526,237,1440,392,1429,560,212,392,22,57,269,1556,930,689,1260,473,914,1599,85,619,984,246,587,1111,1022,749,575,236,1608,1439,52,179,1627,368,299,277,1395,1425,754,1632,1348,1354,1266,981,485,830,117,1715,355,1680,887,1703,483,541,1626,1241,1693,1111,588,752,771,1586,1393,1424,1148,1606,1584,927,571,1145,1278,1412,926,931,488,242,739,1652,1455,733,464,803,274,1021,772,363,1252,265,1064,1656,484,726,371,1616,1367,151,866,1495,160,1469,1716,557,271,1636,628,915,952,470,767,1698,390,1647,690,1221,1668,938,1204,712,1042,1360,724,1723,438,310,1287,1695,49,438,1618,1313,180,1563,513,28,1595,1126,465,1457,827,1175,1282,864,560,231,1367,1280,1314,1414,1478,447,748,1172,425,1172,1693,58,202,690,1245,469,702,525,637,1044,1641,1462,494,1302,983,1270,82,585,574,483,299,714,696,730,822,514,107,501,1323,1526,1540,447,1572,1428,1125,470,1070,416,458,1000,1286,1413,930,1273,1255,1652,445,800,1513,393,1006,675,568,1058,37,454,1492,717,589,943,1225,776,1658,1216,550,674,296,819,713,1312,416,1472,466,1460,1522,172,1381,102,1160,299,94,1506,1042,1654,343,1517,1722,646,227,1025,746,1099,683,736,39,278,239,399,948,445,1365,1110,1268,114,335,1595,512,291,193,139,141,1245,1055,109,1014,174,1715,1543,115,153,1654,1337,1223,380,1271,581,68,566,896,329,297,1289,19,1435,1662,1188,1030,1459,362,202,963,609,1137,351,1054,858,398,1033,1145,438,227,1578,1605,957,405,1708,1058,1382,136,303,484,202,312,1091,219,1019,1311,1087,1070,529,479,1191,652,1640,1084,32,919,957,1161,565,1179,1215,641,1337,1144,672,1519,613,496,730,1002,216,570,1686,1622,992,385,35,691,487,1037,885,1107,1627,1327,581,662,1331,976,23,650,400,1139,469,979,677,1162,713,1009,1241,1601,303,661,1720,505,561,649,1123,1245,46,902,1184,450,861,1396,84,1600,886,1515,1111,699,1049,680,572,664,813,314,1082,824,483,844,379,1394,1486,664,678,499,1123,1231,1246,1258,1355,706,521,560,850,1707,794,1211,256,615,1471,686,1334,72,1645,812,1653,818,1707,402,1704,1628,1677,1229,570,418,1059,982,1062,1421,705,96,154,1245,1704,996,1052,497,952,705,1188,443,832,165,670,174,722,74,1687,1651,442,1203,250,1039,1705,890,190,459,979,1114,473,1171,946,203,1472,930,589,378,775,651,1358,914,43,330,387,1577,1721,1154,1003,967,1292,1206,1172,7,627,582,4,443,952,1361,400,1680,1190,983,153,1353,978,996,599,48,199,613,975,519,642,905,80,903,320,331,709,1401,1132,75,207,1476,506,258,414,739,234,418,785,535,541,873,210,494,1036,1276,229,1699,1517,382,269,545,1259,1221,425,340,826,1579,528,1488,1158,664,175,273,1096,98,406,595,212,23,55,735,792,1140,1273,584,1663,1637,1329,15,1351,327,128}

    {1449,1285,1253,1646,1530,409,1273,664,343,727,1609,1513,134,1290,135,1717,1430,48,867,126,339,1377,391,1591,1095,1617,14,1260,1518,1198,777,1687,249,828,572,1142,1147,612,111,1637,540,118,966,1477,390,1249,1529,1619,276,757,1107,1587,1081,669,1508,8,479,946,1131,576,788,702,1304,1222,829,213,511,1720,916,1322,1717,375,856,1331,1566,89,513,661,1206,64,1659,545,831,822,861,1373,1416,1025,1463,1368,1,1460,525,786,557,1167,606,1382,834,1441,1054,1547,1670,1636,1582,60,928,1179,651,1655,785,193,1420,728,96,1478,1697,930,1385,988,546,661,124,319,832,1313,1404,178,1495,354,168,762,1569,636,117,589,264,644,1573,90,1363,864,275,543,1638,484,117,1700,918,1236,1706,1244,848,128,303,1463,1317,202,23,970,404,281,1723,56,1172,1576,1410,1614,627,1657,323,1431,1018,522,1305,1381,1702,604,1278,1214,1717,1387,133,1097,1560,1679,1142,731,1360,1306,851,576,469,1538,1390,1357,583,1244,585,1703,1540,434,446,1687,123,359,737,496,34,1026,1677,1654,399,85,390,598,754,389,986,1504,1584,1684,1664,636,1468,1725,157,1362,832,70,305,1640,893,1727,194,217,1466,1512,31,1678,1465,1427,1034,1006,1228,1053,336,1055,573,22,1434,1699,406,352,861,1036,976,1000,929,791,1256,635,1482,1288,127,1487,1212,1136,1702,1123,1541,105,253,364,363,1283,559,840,105,390,181,228,389,1127,1650,935,778,1000,917,1185,1597,1574,1032,1406,668,1182,814,695,1513,1059,1323,148,1553,116,608,644,991,1415,554,1427,1489,975,1196,891,944,1128,619,894,987,1684,1159,560,441,592,263,660,1035,1136,1691,163,560,421,1675,168,1192,449,706,208,744,1123,868,897,1180,880,1299,566,862,1314,448,331,57,214,126,527,904,307,1726,13,375,730,1386,487,146,860,497,84,1622,850,1654,435,881,720,1602,912,1087,1474,1174,876,552,583,831,175,1717,29,428,1037,673,344,1474,450,166,100,1622,983,1625,518,1165,288,1608,1612,1653,956,1316,914,152,1378,718,101,669,26,1139,441,872,381,359,308,11,230,521,961,78,457,1337,1188,466,134,1557,653,821,1670,1109,1128,768,683,111,83,363,559,861,567,73,1699,1407,829,288,513,1196,1613,245,102,1268,1209,24,151,1416,1308,442,105,1685,1342,167,784,1611,10,1285,1127,954,866,1209,823,1296,665,242,247,763,1606,693,915,1154,1624,545,244,197,474,633,947,224,237,206,1519,1197,1459,1571,848,723,408,732,613,925,833,1185,284,1360,357,242,272,1469,560,717,971,15,1340,220,1264,771,656,1654,96,1110,1030,787,221,1504,1623,519,1483,964,362,684,1127,1172,1543,1239,1310,85,588,970,868,103,1143,1687,782,1166,1656,1336,975,1672,1178,156,1662,1061,799,683,1562,691,864,544,1467,1584,1601,1307,22,1592,9,864,193,134,1223,1328,985,834,138,639,545,922,608,1110,1514,1082,885,266,105,1426,984,926,1667,780,36,982,869,377,624,760,1567,717,1612,223,1525,759,1485,685,319,1394,324,1546,555,1509,682,839,1502,1112,908,1042,123,1550,1374,442,1453,1038,507,306,1334,328,280,1070,1431,1460,1386,1134,943,990,827,1093,1561,1348,1701,402,1541,112,829,1085,414,467,1673,1668,217,1255,1717,137,569,1294,373,1164,1314,805,524,1069,1572,225,256,120,1319,1403,1580,573,269,1585,936,899,1340,878,695,208,1029,204,0,789,1032,1083,885,1041,1065,294,783,385,137,464,610,81,891,1155,1498,1218,974,534,920,815,599,1424,616,151,392,1494,11,871,716,331,741,1590,1230,201,45,583,1109,1253,1086,834,1149,33,1083,478,1190,1689,1392,440,1517,75,1555,1031,616,480,451,1408,535,1232,1357,1669,933,553,1248,272,1202,1251,989,1554,871,863,1135,70,721,89,1018,557,1516,1391,1308,685,138,1279,143,664,1226,775,1432,485,1564,1104,1215,33,728,1035,1709,871,732,338,173,1093,479,332,930,189,996,1138,1340,1453,1100,639,639,602,669,164,1585,319,1255,365,527,1251,1449,503,996,1013,882,926,1503,1197,1489,1412,1349,1490,617,343,397,183,1598,1578,1648,1712,715,1340,1098,1267,899,138,1541,1145,811,1383,1695,1356,663,257,1672,1702,1337,1115,705,1239,603,1495,1046,1196,1452,1665,1341,973,359,1071,781,691,439,905,755,1536,846,1688,770,188,1379,1337,430,1020,576,1399,155,582,1234,206,1146,1491,279,1186,1652,1545,1387,1144,226,715,130,410,850,874,297,1331,1448,1439,594,1243,415,106,1413,240,37,627,1283,1337,704,654,1601,837,1189,652,402,52,29,685,866,1634,1034,251,493,676,227,1441,1068,289,402,1211,503,160,1413,1337,117,1446,253,46,990,579,1451,1383,998,331,1334,147,1085,352,331,1602,275,956,1503,669,204,541,1470,1596,166,1437,1103,91,489,1526,1370,1715,1187,1228,1321,1428,1150,1108,113,1574,1006,1078,425,197,231,325,1674,1330,326,1676,25,726,331,57,1291,486,900,100,1714,6,215,1029,648,1195,1631,1234,175,1366,1495,1466,1128,1552,1619,1692,474,1233,367,818,859,1446,317,316,1565,1073,628,1382,473,725,1727,707,1352,652,1380,362,751,1713,1200,901,231,1358,1641,1145,1407,264,598,560,1360,619,294,363,1121,1377,1489,1482,271,883,1514,700,33,590,797,1255,599,758,1583,460,157,155,468,514,941,1650,395,600,508,879,464,1054,1329,1161,845,1382,560,476,1454,97,1173,797,729,1534,517,589,1723,359,1141,1697,795,1495,1179,1241,329,554,1197,855,786,298,842,1099,187,1321,1595,202,824,1096,1317,285,561,1217,61,288,657,1015,941,1027,855,1490,1604,1503,194,301,1389,298,211,1176,853,698,318,601,1300,1497,1168,1340,1610,49,740,904,1609,1281,623,334,1562,641,561,1025,1041,1117,1706,1520,84,865,339,655,577,1680,1572,117,1544,741,403,1162,1711,710,1573,162,1640,97,405,1587,1181,1175,1430,1025,1278,1581,401,520,934,1316,769,1293,1197,217,875,1134,890,427,599,364,708,1272,1082,1040,1212,1025,1133,879,842,948,1405,993,750,205,102,195,610,1236,526,1492,1710,1049,414,1487,565,1436,1284,1110,104,1122,1461,718,328,1171,42,412,85,452,1346,1245,1069,294,659,1105,906,1241,474,1307,1489,1275,84,29,106,97,1017,498,579,975,1350,1216,332,564,1567,1538,396,911,1347,532,664,1507,404,424,599,1363,1608,343,1152,842,1707,319,928,661,1639,793,159,1658,702,1702,1721,1007,1702,1596,1261,172,978,930,1175,389,717,1538,892,1187,955,786,842,1256,397,864,1055,279,1145,108,806,1258,1663,1211,583,256,530,509,1668,1687,1705,1662,517,417,1187,1088,695,456,144,960,366,262,1260,21,1332,618,1050,1549,1571,1524,868,999,15,86,921,1620,160,1066,1169,129,1418,1544,1497,431,562,1303,1384,1245,288,757,1497,930,43,508,881,898,1048,523,412,648,65,1610,426,1721,1589,841,492,706,975,1022,1015,355,1260,1451,673,938,1412,400,0,963,1322,1640,868,1363,1284,670,1077,954,1255,38,518,181,618,1304,214,764,1639,717,287,352,1602,1025,160,170,671,1441,513,115,337,1016,270,907,879,973,1553,1397,380,912,1637,1607,1157,1437,1351,1703,1176,292,254,1638,632,1720,308,1090,1288,1083,168,433,1304,889,542,830,1020,337,51,555,852,405,1359,621,1244,1100,1153,1139,886,1105,973,1514,1308,1451,1022,984,359,808,22,424,411,1080,1239,55,1226,789,1681,1724,1319,1543,43,611,197,1272,1350,1127,619,526,975,1629,914,1134,508,631,579,953,102,771,1074,1660,478,1071,274,365,262,1369,15,669,414,292,722,356,1281,1002,122,1535,367,1038,516,1099,668,1189,589,1645,1048,622,1655,549,1008,842,692,79,782,1017,1627,199,1262,359,1035,968,970,1537,333,569,1213,55,1245,1287,957,488,1338,930,1412,288,334,208,63,438,813,539,1001,1042,1413,536,1458,1020,535,533,1671,226,1334,1407,1705,870,1227,1267,288,419,350,1274,1266,219,1493,1142,348,391,665,1241,582,1528,95,1047,1669,330,173,1511,1388,1393,625,1207,347,923,1548,913,71,514,1183,1110,697,862,342,267,1683,394,76,1596,54,1152,17,27,1021,222,1093,972,536,1199,847,1708,1363,389,413,259,924,558,628,1363,427,186,992,939,868,658,1679,693,31,1144,759,1654,482,1559,609,241,233,62,1105,1066,604,1557,1045,5,432,1603,1295,410,1709,1421,589,426,1350,1202,1727,1130,1334,171,1231,1121,1141,926,315,329,423,407,1020,1070,1363,227,490,437,1182,405,1278,1325,796,718,1334,882,767,1139,279,722,1717,1298,310,1134,140,747,232,248,1687,969,136,1156,1398,1166,455,333,749,863,583,1214,764,1104,1365,1728,635,815,1699,717,143,1221,1224,504,990,303,311,1666,1273,551,810,295,1241,1601,853,179}

    1674

    823

    Returns: 145016688

  56. {35,738,272,398,474,1372,1884,64,8,955,1512,1042,1502,1394,1940,294,1617,1637,1716,50,102,847,1535,620,360,1471,1617,515,927,814,1435,463,2213,921,774,556,1190,196,1518,881,1299,2051,2229,1177,1160,1609,538,2218,492,1262,693,61,1991,698,1771,1511,1350,1663,1159,1097,677,486,96,1738,1044,976,554,772,1083,76,990,858,739,988,684,1894,702,201,381,1460,1439,962,2180,1871,976,1035,1341,301,1309,1151,653,2175,117,1790,644,441,1746,131,497,2012,747,178,551,1536,160,1531,1893,870,1260,1513,614,928,2298,1368,502,2040,1993,271,1443,2135,2166,724,1368,2243,1724,4,949,1646,2005,1837,1973,2020,673,1921,2204,2056,1567,1993,762,950,20,12,302,468,1524,1936,2078,904,2101,1055,518,1786,1030,902,2121,60,1706,298,1644,861,636,252,623,1844,481,1331,433,1544,289,1850,560,1364,811,579,1564,917,2270,56,852,1246,1961,718,1432,1712,1427,2013,1306,885,703,1797,1727,676,437,1345,506,808,1762,1017,434,1516,668,765,318,245,391,390,147,467,400,936,2123,1610,563,1783,410,2275,1608,1366,311,1911,1862,1109,420,1277,2223,1896,735,2127,1067,1693,1495,2048,1758,1269,234,1765,2048,2116,1926,2089,2069,1251,1835,1161,69,1416,1864,237,678,1424,1529,1767,1775,1263,1534,1262,509,2298,2181,1456,1134,206,1689,257,1081,1117,438,1523,1849,2013,17,165,1379,13,972,929,2026,1171,228,2163,1469,1951,1485,56,1211,1094,2318,1304,29,1531,1822,1806,2070,1658,783,1854,383,200,1764,1162,2156,1254,2061,1568,54,972,237,66,1737,556,413,414,349,1571,2007,1365,346,1014,1975,1960,636,1031,101,1810,2210,388,941,1356,783,2139,120,2288,849,1327,1140,1777,2288,650,1399,1718,1869,2131,716,1471,1173,1116,370,2085,435,926,2246,1681,1341,1962,438,1728,406,1902,858,772,480,2093,636,790,282,1431,694,1490,1008,317,2012,849,1398,1947,1443,1594,1078,1990,642,907,254,842,1591,654,2259,39,1477,2077,2262,2245,1342,2168,215,615,1059,1170,446,2164,830,325,600,2275,2055,492,307,2,456,1657,222,853,2177,1802,619,1218,2215,1124,1905,2040,2049,638,2176,153,1957,1466,1275,1740,162,251,605,936,1696,1394,530,171,299,405,2165,2257,679,1755,1303,826,1465,1098,653,1435,1556,1303,715,1415,360,1097,803,1645,1496,604,1461,2019,613,2166,1863,237,1279,143,841,2296,1451,191,40,281,852,1713,928,1135,2268,1092,1948,630,680,1138,1173,2052,1206,1346,2060,498,1514,943,959,542,1785,19,259,1682,128,824,1308,1621,1688,114,559,1179,690,1200,160,315,667,302,1374,963,1852,1155,1524,1884,1528,2249,1144,774,2278,480,2310,1438,537,444,915,1926,608,491,1060,1595,1428,860,393,679,1433,1476,506,606,883,1049,532,516,2126,503,1431,1943,274,225,888,227,14,1451,2075,758,1376,696,1985,996,1442,100,1380,72,950,312,899,1436,879,634,530,1792,1759,2210,941,1195,615,625,2307,177,2042,1528,593,1827,1709,1210,2212,1638,653,1545,909,576,1364,1914,567,1157,2266,533,277,1032,696,1026,306,1312,1763,1462,1111,217,510,315,1187,1219,758,1877,836,2226,555,1425,1498,2176,2213,1838,385,984,674,1380,2225,1968,1397,1034,172,781,888,1006,1383,746,431,1322,578,878,2014,659,129,1401,1380,1016,1496,1385,446,355,1565,858,1030,1453,1940,16,1311,1128,1288,369,642,1032,1221,1847,1253,522,2261,1055,226,772,1502,140,1635,1993,322,347,830,1640,119,218,814,51,1108,1867,685,364,609,2073,1222,1157,694,1514,2001,1045,1824,186,1450,583,296,785,1176,1080,2242,810,2097,1211,2259,91,2284,44,1122,534,879,1853,910,2255,1832,1087,712,1220,162,1494,1252,1500,528,549,2111,1834,42,2146,1649,1127,1469,1402,531,1373,2048,565,1398,2033,1577,1944,2167,606,837,686,953,1551,559,1124,1479,1723,1391,698,2048,1848,2082,1278,660,360,661,1358,1678,896,713,444,1798,736,744,2026,2246,755,1124,1525,1941,1057,337,174,916,1871,459,1701,1158,1617,779,1640,2077,277,2162,641,146,145,2140,2249,1528,1155,1887,323,1622,486,197,627,1720,1427,1031,175,1960,7,1177,1211,1526,1091,738,598,730,1158,1216,924,1397,1527,698,2111,2106,612,631,2148,1700,2004,59,1182,2194,1116,1524,1895,2223,1688,1929,309,1836,183,1780,1182,432,1060,345,1026,1646,2061,685,854,1679,812,1093,599,900,974,268,1920,1463,1403,2059,142,1444,22,838,812,2224,717,1436,519,1627,760,1890,554,1140,1507,426,337,1229,218,1371,766,1967,1003,1235,1422,1841,1236,1931,1547,1351,424,463,2010,1449,143,1228,347,1112,373,532,1645,729,1357,2199,2015,1812,746,1122,92,49,1060,1183,1773,1923,1655,90,1312,1375,1469,1492,416,914,1159,696,473,1843,677,734,1345,1995,1356,816,2233,1312,1603,360,1972,729,281,289,156,1413,2240,1673,1839,2234,1906,1333,1199,430,79,1355,875,226,2047,1587,391,1469,1040,243,1076,1479,1249,880,1893,2200,1025,1199,2126,740,655,1705,1341,935,1191,2020,1084,1574,666,2314,1174,570,1906,40,2158,1104,487,2082,354,2061,464,673,876,2121,2190,550,35,296,269,1407,1900,758,1525,1205,930,226,389,1118,289,769,1781,1381,2060,887,950,630,757,385,670,499,1304,614,425,222,2186,423,1899,1241,699,1282,1053,658,1909,1070,1207,1704,1883,2007,1980,1369,1719,2218,1619,1619,96,1093,2137,1518,2283,197,1473,1652,1124,1132,1848,1028,1857,1239,493,897,2264,2267,470,2213,801,198,1901,1600,1179,1608,1969,640,1348,2171,982,1245,2172,393,959,1560,1952,765,1068,1919,665,1816,1310,2203,1804,1876,412,1403,1647,315,363,631,2215,1325,1220,632,1089,2007,631,926,1934,133,958,497,1809,1212,1644,1882,1977,348,15,1356,38,1348,1299,1644,2215,358,507,2130,2135,701,1524,1726,819,1559,2252,1991,2079,1563,1867,861,1998,339,876,1265,895,2232,2199,1921,776,2060,578,1812,2252,2192,1941,9,154,2268,1549,1293,750,5,1110,1986,1256,1982,2201,2222,449,366,519,703,240,2293,1763,1387,1158,850,947,1857,160,887,229,1695,1140,409,2280,16,1410,360,2164,1548,836,2273,1291,530,1290,1794,2157,1379,1503,1900,986,47,1543,2114,1146,623,1184,409,2133,320,915,1696,2263,198,376,2121,1942,1167,245,1758,916,310,420,1321,1349,1764,834,1243,1009,297,2145,277,1915,385,481,735,754,2229,1203,1735,1796,759,1877,476,854,769,994,129,1515,591,155,1459,179,164,1226,1968,477,1849,2127,1988,1604,2030,972,412,402,1914,606,958,1400,709,923,1284,225,1903,2014,1879,2191,2269,266,241,2076,525,657,288,1624,1980,1040,94,652,1358,2111,870,1074,298,1515,2008,1958,1518,2050,199,182,1750,1229,1985,1954,2100,2030,368,1118,131,908,1419,2166,1643,97,695,14,123,2065,1098,1396,486,110,292,631,1454,2100,937,443,266,22,721,761,113,2164,1302,1810,750,1650,718,2142,613,911,195,707,939,1911,1099,193,655,616,1577,915,2215,713,1835,988,1266,1817,1040,862,697,1583,677,1900,1337,1530,1855,1625,987,2000,242,1654,881,182,347,1452,2259,1142,1700,2230,1602,168,2157,184,2082,1900,1248,321,1639,876,1916,956,1445,855,17,444,1376,2161,1525,1348,519,1951,1395,1537,1562,591,983,1056,595,2292,323,1849,914,193,1178,1324,1438,1518,1672,979,1050,1348,1132,883,144,1874,670,502,1285,438,184,216,734,1555,1433,1493,514,969,1223,792,2100,1043,858,249,305,2256,944,1131,200,155,80,720,1524,2023,1512,1013,11,1750,1847,911,1910,1773,813,2244,2169,1427,911,1267,2184,816,2173,2288,1906,1293,1355,798,301,2280,2040,541,1333,2019,48,2275,1323,129,2194,1300,558,302,784,1202,1940,1143,1925,1567,1970,2199,745,1906,1247,1946,2299,744,171,775,1122,488,1367,497,1457,194,1942,867,1915,463,838,193,2205,285,1669,1965,919,1461,630,1072,1937,1835,363,873,473,591,1723,868,1011,806,1718,2210,318,1938,171,1920,1040,1199,353,1498,1078,1928,1655,691,1907,359,1393,2220,593,1004,1471,881,1133,2312,1220,223,143,1432,696,506,802,1234,1833,1633,1531,1587,1075,818,731,1739,818,1378,230,1656,946,410,2200,1590,1633,1447,1430,1127,58,2315,970,1568,2231,1561,1120,41,720,1532,835,1703,1026,2046,48,2208,2289,1365,1779,545,583,834,1320,1250,204,2192,26,143,409,2030,480,1685,876,2223,1504,61,163,970,956,427,563,729,504,125,870,770,1475,461,2078,957,1257,881,1924,1194,803,1921,1356,1674,905,858,1146,2155,1344,767,1192,2087,190,1921,264,1213,1157,2040,2163,1941,1919,482,1721,1735,2033,1686,1369,2264,2236,823,303,750,770,1978,1407,1237,171,2126,823,231,1965,569,669,393,1528,1293,191,1580,737,1064,1732,591,820,858,1670,1511,2209,1341,1017,12,1799,63,2264,1668,1002,1091,1526,268,409,1994,2133,2112,45,1452,315,759,453,1379,2221,1846,449,626,403,1020,1074,1703,367,697,2183,102,471,933,357,357,1702,2201,1712,657,1465,2090,554,1189,2128,1227,2290,888,1301,915,1184,742,839,1300,242,2121,1932,684,1388,1804,1150,1632,1104,344,214,1690,552,262,2125,252,1811,1075,1570,1920,2253,2081,1754,1364,2072,1559,1964,1846,119,2229,181,2173,2037,2051,893,2127,804,711,448,108,764,2251,915,1285,200,943,37,1106,649,2130,1659,404,21,519,594,279,1824,2134,744,1584,850,1715,801,417,1125,235,1674,2239,1424,1356,957,669,463,1996,1450,1683,2221,1651,2299,505,564,1774,1949,143,1461,1742,1121,898,973,2231,1939,1460,687,1550,2285,2287,171,2301,2195,1409,621,639,1561,1581,1039,1113,1589,1657,897,1871,341,1848,2121,61,825,1470,2265,623,225,583,219,1602,682,833,2009,273,1632,812,2263,1134,656,964,1653,499,899,1483,1106,479,1236,279,400,1729,661,777,1040,1356,1480,284,1455,954,1809,2018,1296,432,76,596,33,1047,178,1216,2243,1743,2312,1214,895,2112,2105,2155,1299,2259,225,2247,465,401,11,2315,338,968,568,1273,2297,1328,839,1304,1651,1125,1821,1505,900,1641,1804,902,29,691,1967,1486,1004,1625,1511,1408,2250,1617,2064,574,1615,2168,1788,1995,422,486,1667,637,1384,1481,2094,1412,1183,2103,647,1953,1186,1540,783,1247,571,1606,327,187,2071,101,10,2223,1525,482,752,99,915,397,1844,763,1825,1653,1641,947,831,27,293,1760,989,811,2077,2287,1647,1279,1753,135,384,2109,875,964,506,28,39,1534,1724,2136,1817,1549,295,30,1017,380,908,800,719,1051,1171,1863,1004,2228,1063,1310,589,1181,149,1421,2026,643,2287,281,477,689,1585,1154,229,1111,1955,1910,710,84,811,513,1862,2017,675,1354,157,1112,1017,388,316,267,593,1123,348,1854,329,1820,1228,185,1310,2199,1436,350,1941,501,2014,1289,566,2063,803,1998,1508,75,1258,1754,12,783,1602,2060,144,160,229,1011,590,229,570,159,882,384,487,2028,536,2208,2132,592,1043,1499,1707,95,1786,1939,2182,1329,1461,1926,1429,981,960,534,1209,259,1812,610,1216,6,2082,948,1168,1644,330,312,229,1231,1522,698,748,107,1818,61,1180,331,1421,1890,1036,2063,856,1073,569,1765,1333,1240,1500,1566,328,1065,1748,2039,1524,336,823,732,61,56,584,256,309,537,808,993,1388,2117,611,1216,576,399,211,718,534,748,1341,191,969,455,1180,1359,1486,490,483,1740,1107,883,1518,1607,1333,187,986,1538,1103,1281,1698,1874,239,1884,1488,1277,1886,603,1940,1295,274,101,969,990,702,2093,1558,334,851,89,316,440,2040,1333,1583,1295,1318,676,1430,2122,2041,931,1415,1404,1069,1938,1688,274,1875,651,1041,273,1875,2317,159,891,708,308,1005,2301,1918,864,897,2019,1316,2026,85,169,1771,1903,92,978,768,1901,2139,821,151,1337,1932,1514,1770,617,1633,828,685,930,1675,1952,1403,1382,834,844,900,249,1765,1247,2008,1847,2304,2053,918,358,124,497,852,2160,254,200,706,1969,5,1592,226,2044,1476,1526,589,895,357,602,23,138,1760,906,1360,634,2083}

    {1215,1106,1951,801,2010,105,540,1360,881,1705,1087,503,1106,481,286,1657,438,506,2048,1088,575,1180,1939,869,372,420,208,2032,614,171,1420,1318,966,900,2024,1666,1189,2176,404,1172,1826,475,2058,2135,1840,1619,1364,1885,1992,1402,888,2149,129,1484,486,1324,1201,1229,666,1828,2291,1101,1947,2307,1802,988,545,1940,1229,143,1649,1687,2059,126,2197,905,1877,545,1988,787,1394,1987,1789,780,1722,1165,1673,1511,875,1688,1602,1444,1680,1,597,2149,789,1677,703,2034,957,2238,938,701,223,1570,178,1349,1279,1657,2147,169,408,935,296,1356,678,877,1077,1984,2258,1817,153,74,86,2135,614,1733,926,1261,1236,1467,740,1946,129,265,2250,1761,673,1370,1850,2027,1859,783,778,913,991,2176,1900,1883,1230,2188,2051,1045,1464,955,852,2044,298,1032,1741,143,2274,2309,58,956,1344,664,1665,437,1084,1860,1573,935,374,1064,942,1224,1150,1088,990,1294,238,1110,1470,346,1691,1169,361,2053,1620,1114,1950,518,1544,718,778,400,2259,879,1587,782,1086,2104,52,698,615,1619,1745,1736,1459,1847,606,1865,1848,529,2089,372,2150,1161,935,1667,1345,1980,400,1867,1531,1829,469,325,370,1865,1787,2018,1546,48,1063,1232,1804,101,278,1461,655,1825,1536,289,2080,770,2107,1864,552,1043,1104,1388,1527,1135,1612,150,139,1731,1987,857,1544,534,2287,672,1157,1355,340,1460,950,1248,1162,1802,1898,1113,942,2019,1694,88,1149,1115,192,187,93,686,647,1994,872,1266,910,2069,849,894,326,512,709,2298,1804,1504,861,557,1583,1873,2101,586,1808,1035,1774,33,1903,605,1442,1714,871,930,965,335,1594,357,1019,476,1096,387,723,861,951,384,530,1105,1753,1449,3,1771,1153,886,1491,2208,791,1264,1725,2161,1328,2284,1747,1064,1468,485,1964,662,1182,2073,1400,1438,827,705,755,1277,879,395,251,1437,1633,117,1427,850,305,57,950,727,1106,2108,494,2184,1058,160,1552,1411,1368,2002,2272,1283,118,1908,1195,805,1987,1614,2280,759,1604,2215,1332,1000,214,849,1616,2066,342,1299,1550,1196,2195,1052,2311,1728,1078,714,690,1588,1891,1675,1159,78,2199,1653,1401,1888,930,1430,2010,999,2102,924,2053,2,2271,1101,942,132,2303,2217,379,439,83,21,956,1823,1227,178,1431,417,1609,2307,1952,446,1598,1786,864,1197,399,1850,421,2006,619,2314,2038,1343,955,1697,740,1731,1486,789,326,1174,569,2209,250,1286,1287,817,1579,887,995,1377,2307,136,356,907,1091,974,1687,386,1964,2026,313,1751,2023,2181,224,864,2011,724,1177,546,526,1488,300,1152,636,73,1385,2315,851,895,287,1990,1615,2202,2286,1591,1795,997,2042,2035,1364,2175,394,453,301,1721,550,454,1035,1599,415,149,1272,55,529,2169,1847,2192,144,1057,109,1054,1140,1828,2177,209,515,1889,2210,439,1558,1866,1842,2216,987,508,2298,447,496,1274,906,1354,755,894,633,749,2078,849,2017,410,14,1601,2084,1161,792,1517,1929,1386,317,1491,2192,1217,1429,2105,1800,691,914,881,1545,2218,1322,2281,487,1618,1092,545,775,616,1683,817,500,1575,645,885,1353,786,2119,713,1194,1999,1263,2074,1062,41,224,853,259,1797,519,297,2275,420,989,1089,159,1300,2253,2187,1008,1813,850,607,1836,2167,269,1070,1217,783,1228,1511,1004,2140,2207,134,2299,1932,2144,554,332,1717,2029,1061,1034,1317,1611,127,511,1554,623,1258,1091,1286,794,1163,1924,526,934,1127,1005,861,855,2099,217,982,1987,748,1960,1888,1085,1801,1486,1319,2277,1376,545,869,1490,1676,445,809,1208,2196,945,162,150,1897,1023,1341,1268,1613,259,1758,1636,652,193,2110,1245,1750,137,1364,266,425,1856,1148,53,1475,532,973,1982,1979,1047,918,1292,2213,835,2114,1018,2185,1435,1800,1172,1082,199,1572,1345,62,2223,1528,1872,1988,948,687,2051,1297,1802,1699,568,1574,488,149,524,979,166,1951,2026,2296,1454,988,328,2315,2149,658,142,1638,846,627,1560,112,1644,49,580,177,1136,1084,753,1004,750,1766,1291,2269,1604,1365,1947,1885,1900,1208,646,2106,1854,1255,1512,205,1660,1977,1641,181,2025,209,579,1222,2072,1427,1194,1854,2314,1335,464,209,584,1449,566,1935,458,121,843,2172,981,106,1566,572,1676,1333,852,1531,1240,1636,271,656,290,1979,2254,2092,952,1679,1414,976,2070,1273,390,1700,563,657,1514,858,1678,24,314,651,1979,2045,283,2152,1927,1345,344,1837,1617,853,1617,698,2107,1405,2298,795,1497,2013,577,1694,935,1687,176,541,2207,1171,1126,65,711,149,1295,1440,1849,1060,2130,1561,1845,411,1955,229,58,698,491,1230,283,1233,1650,1619,2023,2218,142,1830,1198,844,298,2213,1569,1312,520,1338,1847,599,457,2097,1971,1287,1541,1551,1686,1861,1079,486,320,1550,2221,1570,1937,2088,850,2056,596,676,396,643,1921,1838,1837,1395,2292,1287,1548,91,1650,526,1160,728,184,1355,1793,861,990,1423,1496,321,1483,331,2218,2077,2061,184,1376,2138,470,779,1262,1097,1518,215,2297,2176,959,205,2254,2127,1807,2295,535,864,1026,316,87,1322,568,1881,797,1870,2294,1768,572,661,1352,1878,1642,1,1626,40,597,1525,362,748,988,2210,401,513,1858,912,1312,1340,758,1175,89,1103,1196,1117,1620,821,2042,2177,2127,2247,1244,446,450,798,1518,1749,1361,379,2222,1958,143,61,1634,2175,1106,529,1908,2280,955,136,2067,319,111,1204,624,1232,817,472,2054,1318,5,1925,796,1040,1734,1295,660,1258,1024,1988,1784,1164,17,2000,890,227,1920,975,2206,2200,1336,4,1578,914,1029,901,2206,1868,969,156,802,455,1090,1291,2280,2057,251,408,2268,1043,1153,372,1008,2003,1728,2077,1004,871,234,2102,587,1885,728,1959,2056,1765,2068,606,1079,290,1394,2179,43,316,870,1388,247,2162,907,1988,775,1716,1362,246,581,1865,1010,867,2254,809,1277,420,2314,303,539,434,940,1700,1756,591,1312,2114,1590,829,1123,2195,2126,141,139,521,1322,1021,2145,386,606,185,127,1436,1028,1275,1830,1474,236,733,1625,2100,266,1553,2124,612,1245,1368,495,1256,303,872,930,925,1692,1389,215,1514,1036,1680,1080,173,287,1270,1836,2023,1314,254,771,1632,987,1604,868,449,39,2093,874,115,1922,2180,948,1036,351,1424,770,1656,1710,2319,1156,1348,1158,1180,1156,1260,983,1660,1036,1847,1348,170,256,1772,231,306,2175,2096,1033,1173,902,845,408,1046,1835,31,1067,568,2316,404,1017,2229,2243,821,2115,203,1380,309,2117,684,2211,682,1839,1073,303,2200,101,866,758,1820,602,1671,741,2141,596,612,122,1416,1587,971,1897,1600,891,1604,2151,2292,514,119,114,1930,2305,582,1310,32,2243,2174,839,2007,875,1940,375,2175,1617,930,210,998,25,1464,1988,71,1478,2009,1842,1861,1730,2316,1192,198,503,168,1740,103,131,2227,1525,1890,257,204,4,1127,2308,2045,1177,641,324,2027,561,486,1025,942,2097,944,142,1808,1200,1521,2230,1625,460,886,773,2129,104,903,974,1979,183,2185,2229,343,622,967,671,1137,303,1503,1077,1037,78,1936,663,1361,2250,377,1095,1833,333,60,321,1368,68,967,76,1103,61,1318,1347,2046,280,452,80,148,1448,961,1740,1669,1145,204,1518,2015,381,1556,1442,1469,1033,791,370,1318,1912,952,344,2241,2178,1602,1653,975,2028,160,1597,2298,543,884,536,1557,1771,437,1937,722,1084,683,236,1605,274,1119,1441,55,401,688,2200,1141,1794,1180,823,932,1525,63,1132,1600,2085,2218,1116,1593,963,2116,1118,291,664,12,432,1022,1109,1310,317,1242,852,105,2026,1353,1469,436,681,22,544,1623,1040,250,1295,1390,2282,1124,18,2153,1469,523,41,1803,1350,1007,161,2298,374,920,1161,247,955,743,1204,2010,1996,244,4,1867,1924,17,411,1266,847,248,2245,71,502,902,276,2289,253,159,1921,2205,526,1368,1761,775,1138,2119,1788,1829,1266,2193,2272,1060,449,1160,700,0,1510,2041,1765,1511,2248,1489,1229,1531,1438,1848,1487,241,1966,2027,631,275,2100,922,1630,1127,1617,1545,2043,1339,567,810,352,1779,1795,917,1052,1106,624,2133,1582,1472,1364,1280,466,339,1040,1695,902,2286,728,1015,255,1628,2072,2061,134,2016,870,2234,1088,1427,950,1238,328,936,1538,1519,1130,1956,1,1111,1277,1757,725,1560,1036,583,213,260,2219,563,478,2000,2208,1752,1305,307,418,1842,1706,1596,1531,2260,222,983,1869,664,1610,1914,1688,944,1831,633,1945,1700,188,1360,2121,46,1187,2003,1971,1540,153,1765,1298,191,241,1941,213,1188,1951,1424,1396,149,676,1631,1815,2021,86,599,2237,1661,1557,585,848,1772,1079,1974,807,1838,635,1280,152,1185,1662,618,1334,1963,1100,876,67,1208,1137,1653,1048,1691,420,1366,1633,2127,1228,1615,1297,1199,471,1756,1850,2129,1356,2095,220,2221,304,143,1744,1617,2061,1791,2070,1380,1330,2218,1704,1501,2178,1547,34,1222,943,2207,1983,2036,2076,1819,378,865,783,548,980,48,263,1839,298,1906,232,458,2318,1027,1393,158,636,528,1650,1343,419,88,661,720,40,1929,52,1974,81,1122,1624,868,1005,258,642,793,2005,704,2223,884,2229,1518,169,623,879,2126,1959,548,1460,292,1025,915,2042,1760,565,1996,449,401,706,870,1142,2302,1533,1926,1259,415,1510,297,1634,1315,1276,1600,1409,1418,1356,663,416,547,1941,1144,1093,713,1303,2079,959,274,1851,274,652,1355,1837,1940,1,842,1837,692,550,52,2008,1380,1147,489,1352,974,1904,1376,856,1933,1490,26,818,623,1611,527,1942,1042,468,643,1034,2020,1805,80,393,1863,956,274,676,418,839,191,1939,189,2214,2143,1641,986,395,428,915,1509,2306,1714,281,1011,1139,1084,548,1087,1920,2040,930,737,440,484,840,1649,4,1082,1022,1531,464,221,623,930,270,229,756,1084,863,807,1586,1711,1837,1744,1312,1271,2154,1103,1997,1364,2304,345,1981,1422,1152,1165,1416,1617,1397,1275,193,312,355,2229,399,751,992,1769,1738,1598,2268,976,1131,1455,1776,1019,690,662,1917,2134,2247,876,407,2130,1476,1447,1892,1368,2280,1544,48,391,1728,1359,530,1628,606,2313,1522,125,614,517,832,585,1698,822,281,2198,902,77,749,2038,444,521,2034,490,2166,688,609,1446,1725,2223,1629,1452,1252,14,842,912,1026,1116,1267,821,331,371,1026,1102,565,312,172,938,580,1026,116,588,2272,2255,199,580,1838,902,1159,789,1814,2019,1122,1995,1870,1849,1329,129,83,825,1815,2213,1426,36,731,1136,977,162,2083,1524,148,319,2043,365,1526,684,858,1144,958,2195,889,873,1326,421,891,2067,2113,2072,713,488,1252,1033,1193,942,2170,1541,184,2022,206,908,955,934,614,1156,1987,1576,29,1460,443,49,859,2253,1913,2314,1795,1196,2082,448,1313,202,347,143,1036,1144,812,810,1901,856,394,1584,2213,1038,573,472,434,1932,676,566,1166,2238,2235,382,1026,926,116,1836,1730,1291,1416,562,1664,311,458,1433,964,261,1471,1484,1706,543,2254,1566,2152,2257,1140,1921,1525,17,692,283,98,1619,236,1308,1129,1417,601,714,974,2066,1926,899,130,1027,1234,1343,1332,677,924,1684,2022,1434,823,1628,1500,792,1392,789,2152,209,278,1422,1989,914,680,1880,429,1416,1369,2114,1658,1768,788,2118,914,616,629,1941,758,1823,1273,1245,1228,452,1648,802,2276,628,720,1185,462,2300,1129,1406,1308,1933,1542,1014,70,1848,1430,1027,2031,1836,1542,1619,1413,804,1871,2014,2185,2213,207,890,2100,799,2279,892,458,1868,643,1506,363,1641,696,1225,128,1019,1101,485,1482,1254,1824,233,1771,1520,167,1714,1976,1708,2189,1179,726,2159,2091,173,1771,2141,451,1962,985,309,1528,1486,711,2016,471,216,868,689,725,88,2086,978,181,1768,1118,833,96,2025,734,1307,212,1539,1501,1453,420,546,1140,206,553,1854,655,1012,1920,2120,1019,1637,2194,1001,710,2255,915,523,964,1363,879,830,1233,1914,661,463,90,1103,192,1030,82,783,1458,2062,392,1544,29,1778,648,1398,509,1071,1057,783,2126,926,823,815,1355,1748,534,2176,1782,2098,825,1161,180,1066,442,1308,970}

    2003

    1126

    Returns: 700376204

  57. {92,1599,2153,1634,1634,447,1869,1915,2290,1530,2397,1509,999,2407,532,1576,1164,83,996,2734,2123,1975,2076,2006,1470,2687,1442,2322,545,2202,2254,2066,803,2454,1429,3,1022,1739,2489,669,1625,2175,2042,680,1824,70,576,1963,1505,684,694,2293,97,1423,481,1492,1480,1902,153,515,640,712,1750,1956,149,1635,28,439,2719,953,2168,466,430,2480,204,1126,641,2178,2627,2635,1883,730,2546,1399,1113,1436,2520,1585,2000,2608,1873,927,9,1406,1056,2092,417,798,2485,1643,1575,1019,745,1032,1357,391,2573,1918,2663,761,1510,949,1211,1572,2144,2112,2350,757,693,2059,1807,2209,140,401,256,910,689,189,788,2490,1444,2068,2469,337,1394,2511,2143,638,1422,1277,240,398,1042,671,2676,22,227,239,1376,657,2149,2247,2067,2519,2280,1654,2083,480,2095,2731,1980,1088,1041,408,392,957,1019,2483,2730,69,2419,1368,1090,1540,482,1499,718,1267,1487,1960,1059,2013,2199,1215,2610,304,756,2,1879,1987,1459,2619,438,2242,1583,2382,154,1280,1996,1431,1678,1131,1918,2388,1935,1007,1276,1443,103,535,2628,528,2004,1779,1474,2435,2576,2728,1309,1441,2094,236,2729,406,342,1100,2110,248,2076,2276,2712,699,1343,2463,2139,1208,341,2683,1107,445,798,1664,2345,2436,2541,1780,427,687,2289,99,2690,1857,518,539,1592,399,2498,1953,1500,1629,1872,1797,1566,856,820,1757,815,2254,2409,10,1000,178,1201,2578,2413,2675,2688,2313,2197,960,1008,338,1994,948,2403,737,516,1962,520,2503,1139,46,2414,2066,1861,1582,1239,1405,1309,15,249,765,447,1394,1017,1809,576,780,2358,1236,1576,2514,1723,580,1509,2732,2273,2173,207,264,100,934,1549,840,801,780,1818,1614,905,1505,2401,970,95,1578,2476,1570,2099,218,2220,693,2194,209,1464,1673,2558,1136,2052,923,757,1972,2166,140,1462,1358,1088,1875,84,1786,1192,525,1518,432,1599,2051,2338,103,2534,1026,2696,1243,1809,205,2720,543,393,2165,1671,657,235,693,2700,1338,1944,1446,137,189,2710,2117,2141,2117,1541,353,1287,1435,1454,1247,1333,2032,1293,1683,1787,183,1591,1404,2116,967,726,10,1931,68,1745,1701,1648,2312,987,2088,1664,893,2074,552,2530,2733,2094,1899,1282,917,2555,1687,47,2525,2148,832,2639,2577,246,258,475,2672,1951,1700,2713,1546,1229,976,1351,231,1697,2444,1086,2051,1716,2344,890,2616,1013,2325,370,956,710,1153,2234,2381,627,2026,1536,1934,41,964,789,286,1341,937,1247,1721,1918,2570,1266,2228,260,2446,1619,1430,1382,644,998,2320,1096,1775,1256,626,1236,9,2139,2355,1835,1814,433,566,1141,887,865,1356,1239,1620,2212,1719,1837,2308,807,1105,2038,18,1629,1282,1417,1821,1681,1572,411,997,1379,513,439,2635,333,78,1899,1718,1839,1213,75,778,57,2709,2503,2621,727,810,1521,1862,1877,1180,101,266,2641,98,2274,666,47,1149,1412,2291,45,1738,906,252,7,215,2199,2176,204,1292,2166,433,2652,2593,1801,1300,201,1747,596,2153,1530,247,2190,1067,887,1114,515,1979,1534,720,2015,1338,20,945,17,1344,2466,971,826,2067,1827,1758,402,1853,1789,1977,2461,1484,728,226,638,560,2359,546,518,1964,1813,1965,2359,1940,1899,1560,1202,1709,1466,2389,1125,259,2026,2188,742,633,832,1625,2344,2462,1426,2182,1001,925,320,515,1210,970,888,1794,578,62,1104,976,750,2731,1030,717,2629,647,743,2119,1120,1399,914,2108,1185,2573,405,819,1525,85,2537,2321,345,333,715,252,1817,2289,1708,2255,321,315,1253,693,2620,499,1408,121,1922,2392,924,1350,1840,2714,1862,2143,2646,1504,833,2696,2523,2088,2589,1213,940,770,901,1621,2282,2,2381,1032,727,1608,662,1603,1589,2263,2532,1105,2376,2057,1741,2105,2024,971,2268,163,1457,1902,131,1008,1742,2405,1839,1982,1232,686,2718,2341,199,247,519,1410,2588,1836,2711,2479,676,2554,298,458,161,566,1295,741,2286,829,2625,2000,493,1764,518,559,1925,809,1805,955,814,447,2443,1585,514,1735,612,2620,2596,760,849,2430,1132,1178,1030,1338,430,904,287,1937,168,29,149,2459,1498,2686,149,1008,175,1225,6,1237,1326,971,2433,1728,2537,1533,2026,1722,1784,1955,160,2552,2297,1229,2417,280,637,2477,1380,2717,2587,2266,1840,2339,1445,1222,2401,2674,1320,1911,2013,479,1578,2587,2632,1858,171,625,1084,931,1064,2340,2541,1454,421,890,1799,941,1136,972,2457,1749,1637,1689,2052,693,665,85,1120,470,456,2044,2109,2650,200,2619,1739,947,499,1316,1867,1544,1194,2636,0,1793,2328,253,148,496,1968,887,1454,1075,2066,1115,313,971,14,2285,1606,2617,2327,1306,2199,2208,1827,1327,741,35,883,469,1554,1177,2736,2454,1741,1509,1767,12,907,2095,631,593,1636,896,844,761,703,1694,2736,2028,1884,543,1328,245,51,1646,2636,2472,381,590,1997,1585,1055,362,2045,730,612,2257,1991,2365,937,1305,1779,2719,1812,1795,2116,1136,1865,1809,2513,105,570,2453,1325,271,1275,1079,2648,214,578,91,1892,1626,2516,1641,1061,1346,772,2171,487,2142,101,2672,2574,1580,1695,2115,354,853,2463,650,1924,1023,272,597,2013,915,275,2486,181,1211,2518,2198,1841,2568,125,1954,131,1219,850,48,590,1718,2078,939,1098,889,1753,1677,2118,62,502,1213,565,115,1592,2019,599,1291,351,59,1263,1236,487,107,2201,625,945,1819,1271,1667,344,1686,224,344,2284,2612,1390,1406,308,1136,446,1084,2256,1387,2413,1831,1093,892,793,1127,313,530,2065,1320,543,421,2247,361,15,2155,854,71,719,2646,1737,1476,658,392,2066,1516,1311,2136,2386,289,2596,1123,681,505,1990,576,2333,879,2695,1132,1758,1304,79,2167,239,1220,1677,1920,1553,214,1046,2285,1156,2186,23,2399,855,1756,318,1400,2105,1949,2428,1759,723,1322,1615,594,1401,434,2077,2592,1655,1626,1450,2499,1829,1988,2439,340,2539,1298,2102,467,28,1562,1198,1333,1140,1224,1558,1792,2357,1850,409,901,1320,552,282,1539,2142,2292,165,2084,1613,2001,1617,1013,2588,281,1662,2008,1208,559,1462,1014,599,2060,145,1990,645,1026,2525,186,55,2553,2242,1510,899,472,785,1378,1496,1169,2715,841,2128,1780,1894,47,1545,1997,91,1203,946,1286,1536,428,268,826,9,528,1099,460,2668,2117,344,2106,1215,1273,199,2311,173,179,2060,257,985,1869,1906,36,1720,1328,190,270,2076,1323,553,1718,100,1194,1916,2621,464,2288,63,2280,1830,589,1443,2391,1307,2288,262,2115,305,2093,1497,419,949,2698,1471,2325,2026,2090,2666,1697,887,2239,76,1185,1663,1704,1069,2466,751,2202,2541,280,178,1144,2520,1802,1359,1518,308,1841,1097,162,2476,1464,1258,39,540,1518,1431,1802,1905,323,1363,1877,1643,841,358,814,831,1909,858,408,348,542,828,2244,2550,130,1228,990,672,1473,828,1606,961,1081,2642,1496,2576,702,1395,2082,2153,1589,1815,1945,2065,1876,2619,2660,1394,776,1328,531,2181,937,2259,1264,2225,655,1888,2531,2631,633,2687,2397,564,1968,1175,302,869,2477,778,1353,1000,76,2594,1716,1298,71,1617,1310,870,2019,1708,660,476,166,1414,1631,2261,808,717,1041,2527,297,143,2184,460,1783,1233,1971,71,1794,27,1850,2472,2361,283,1011,1136,2563,378,2575,2625,2014,736,484,2294,1517,1415,386,1270,377,644,2384,936,984,586,2465,1399,1804,1970,280,1636,1458,1431,463,466,1015,472,973,367,2162,2569,1967,356,1912,288,1631,732,35,730,268,1096,2275,518,2582,2475,1718,2066,2419,351,1435,1776,1174,898,2546,2708,1021,530,174,1586,659,21,2108,434,1237,853,471,151,593,1426,1004,366,1528,57,2380,373,2429,177,1935,2565,85,1440,2126,2629,2092,2406,2645,194,672,351,591,1345,291,1111,75,274,374,1957,2475,1415,1607,2361,633,2324,426,2281,2431,162,1967,1443,1845,1049,2105,909,2534,1924,2676,665,847,1550,1569,1342,2607,1044,1095,1163,1231,1000,199,366,590,212,987,727,1443,973,790,650,1064,691,1650,1434,2272,295,2305,1987,817,669,180,1262,1833,1351,2654,1563,424,623,52,1890,266,720,2564,1937,1043,1871,1024,853,846,2254,1353,1761,2007,2243,938,957,2673,1450,1897,877,1281,2325,1601,62,2611,1822,2322,2159,2253,2339,1929,1316,1531,1840,957,1048,332,2184,1462,101,1298,1643,1411,2196,125,2269,2392,1532,1041,1314,551,1653,1365,840,2689,455,147,1081,1607,1369,431,1285,1533,2485,1590,578,819,2250,1347,2589,1250,1580,954,2054,232,1666,1445,571,1944,649,1800,804,1220,1551,2277,1531,489,2624,799,2453,1674,2296,2050,1970,522,1164,2452,995,2500,1107,1378,1949,1268,1621,693,742,2601,705,1469,1804,35,2614,812,2704,628,61,234,1386,2521,281,730,1901,1370,574,2576,1534,2624,1116,473,2533,2168,2005,158,2151,2292,1144,837,1425,1774,1811,172,1643,1311,89,549,2694,522,1552,2425,1143,1569,200,838,756,113,823,312,1324,2444,1616,1877,2452,2091,316,604,159,348,2487,2000,251,1813,319,513,1529,1208,27,226,718,854,1519,2647,230,315,1178,173,276,215,2016,2079,841,2681,468,567,723,992,1382,2487,2156,574,426,243,1720,370,2490,2232,359,2114,1650,2457,2415,2319,2271,468,1361,1510,1518,483,2488,1573,2056,1283,2033,800,1211,1556,134,854,753,2449,950,413,111,2329,1599,1505,1963,1451,91,2169,2154,1533,2435,1335,262,375,1441,2230,1195,2404,656,269,651,323,2141,21,284,14,1005,2027,1449,2485,1344,1572,1632,2737,602,1022,2302,2573,615,482,2078,2025,1058,2226,2648,1746,494,2189,1602,1646,2213,717,1741,1437,1799,2395,1320,1688,15,1980,2720,193,2101,407,108,792,1241,2126,2560,1228,2126,2488,397,2325,1012,48,1117,2644,536,1772,1513,1183,1930,921,109,1312,188,425,2275,388,365,1899,38,816,2624,2061,2092,1102,1842,1710,1585,232,1596,2363,526,1344,2193,887,76,2502,18,2662,2449,2520,533,1780,654,1416,238,2103,366,1729,2630,1169,780,501,1842,1459,559,2111,2591,964,1650,1547,1249,1778,269,2356,1557,2497,1932,2210,2457,582,281,1173,417,1126,418,1408,69,222,797,450,1405,1532,2455,736,661,120,337,1905,2435,317,856,1100,1394,2713,2688,2670,1693,1248,2691,1221,1461,2480,440,1432,395,1468,320,2678,2489,1626,1572,1265,1579,2287,1072,1138,758,1405,731,1316,1719,83,1169,2147,862,1957,2113,1808,237,2475,539,71,887,1522,2064,2561,734,1242,224,1139,1877,2635,330,2003,170,429,1907,2196,1762,664,1790,1960,1703,2180,105,894,1597,611,2633,2586,1041,1719,741,1793,1518,1040,1172,641,1886,2121,339,371,1523,2096,1572,417,765,566,1382,2297,837,2170,1356,840,1615,239,2326,293,239,255,598,82,1698,2505,2168,2511,1629,1295,933,2645,392,701,834,2188,729,2067,1937,352,859,1501,1899,2393,2719,2602,244,1925,2160,535,2104,2646,2449,1825,2615,414,2076,410,19,832,2092,588,881,809,1993,982,828,78,1932,530,1138,135,1022,1216,1913,1120,1895,1481,91,765,825,2007,1335,209,930,1989,238,849,1719,1916,1081,1237,2207,1809,14,1086,255,2078,1013,421,646,573,23,1247,2035,2078,436,1315,252,2633,167,2283,769,349,1546,1534,1002,1969,1057,597,398,2193,2552,598,1949,795,273,2675,854,1583,2189,977,2407,1394,2134,95,459,1518,805,335,124,1824,2358,1383,1766,2246,2545,1626,346,906,891,1550,2323,2636,1959,756,1070,2219,1759,1337,1333,2464,1037,1466,2617,1092,2720,1072,644,229,1311,2066,2589,1765,968,1135,649,1084,1061,2525,559,2546,2301,2160,550,1192,1640,1990,830,1285,581,476,2317,2118,1472,552,1144,556,1783,1726,1086,518,1623,2073,1370,1223,277,1250,1352,1309,1214,619,1397,904,164,1627,2397,2158,641,1949,69,2106,1280,1485,1504,381,1380,461,2237,2167,2525,1628,2301,2592,487,1121,1154,972,2038,2352,1012,1085,1119,1409,773,1782,2081,1559,1006,190,486,1133,1908,1475,1595,523,741,649,2249,1989,2442,762,1475,448,1344,1516,2203,278,772,323,1166,1922,1617,1839,2369,2275,785,1208,949,1986,169,1847,2161,511,1795,1402,845,6,1020,2409,1759,1230,1477,693,1111,2381,530,562,599,2225,1388,387,1819,1968,1120,2600,1208,720,1602,2293,2273,2362,592,577,1543,2692,761,69,461,1422,1521,1048,1320,2147,2394,2717,325,54,2549,2009,760,978,242,1998,569,14,1844,1985,2020,454,973,1593,1344,923,1758,33,237,744,2524,145,1515,2217,1796,2567,2346,60,1120,2119,1336,466,2074,1613,909,2445,1106,2390,421,2481,1855,1716,16,1715,395,1347,2211,601,1806,20,2516,457,752,1349,980,597,2140,1329,1074,1588,2211,2367,1528,2726,1665,457,2563,761,538,693,2337,2051,632,2681,295,252,818,1052,1475,598,29,1462,2537,2513,838,2506,1357,2272,922,47,983,72,1297,1879,1961,1039,2485,1244,1041,1584,1941,1340,1537,1010,1913,2289,952,1872,71,1851,2109,2551,1706,2275,2473,758,1937,223,878,589,920,612,2153,2036,1782,1440,1510,115,781,155,1265,2416,2490,1622,1672,2021,1255,1928,859,2134,1899,952,1464,736,721,971,992,743,329,1257,2288,1390,1705,2426,2669,2318,2074,629,1802,891,857,352,1812,1354,1074,1220,73,1189,696,2084,2310,794,1089,297,1682,855,2140,2537,1509,1737,2358,1320,114,2051,1652,2427,407,47,2026,1196,2486,1460,120,2346,551,2332,2677,69,1496,796,1319,226,1494,759,2138,739,951,832,1337,2377,2712,1190,2454,530,1515,466,877,2080,2076,344,599,1716,141,1899,266,2405,2353,343,1467,2021,2690,2684,1814,84,1992,100,433,2213,247,79,939,584,1565,1459,152,2225,2125,2043,2553,2009,2680,1180,1101,1204,1513,756,97,1372,2093,652,2588,1920,1755,1478,1008,382,1247,495,239,1497,180,1989,673,612,2690,659,1094,538,1192,2273,1341,293,320,1546,2725,749,1070,1825,1176,1509,1695,1271,2403,1539,3,857,1185,2579,501,1560,2578,1279,2353,1030,369,607,1285,2694,1051,2291,1359,1926,551,1382,13,2406,192,822,2465,1664,1125,1518,204,1938,667,807,2273,1024,210,1091,1720,685,1032,278,2450,56,1655,1605,542,957,1019,32,647,2712,1237,999,2401,320,2441,1905,1290,1693,2723,2466,1599,1866,2697,1182,1184,1088,1407,2045,534,2,912,2635,467,1148,1639,728,2504,1863,2690,2034,2543,1512,327,1417,307,1158,659,583,553,297,2515,1832,2717,758,812,1518,532,881,2687,2401,1313,235,1752,1791,2225,1035,521}

    {1610,2474,358,620,155,2076,1212,1106,307,1700,766,1367,2260,899,2189,2550,600,500,1777,973,1528,1488,2358,2498,295,1976,1012,2514,867,2420,1398,1008,360,974,767,2130,2023,228,2349,2278,2034,335,39,1535,1437,1456,1078,1654,2153,1736,1290,1247,1824,1832,837,2581,1684,887,1452,1905,1190,511,82,2314,551,2338,517,769,1420,2128,485,66,1226,34,2270,97,1409,1385,2338,1111,2648,2268,517,301,861,2470,1574,1297,2202,539,2563,853,572,2051,932,1713,1978,700,1740,1812,2690,127,2075,506,1151,1354,2344,1886,2522,1828,780,2374,2083,1840,403,2253,1424,786,2264,1308,182,2480,80,2426,1835,238,1565,1666,252,1049,2161,649,2443,1623,679,1381,630,2086,1780,2665,342,1458,156,2513,1772,2707,1592,1806,561,462,2340,1234,2561,587,345,989,2019,1088,592,2592,2370,760,813,768,1317,1850,211,2659,1158,2053,1598,1010,510,2238,1680,2637,2076,2194,1404,1218,90,722,1744,1704,1654,1630,1718,1142,1769,906,2252,134,1171,1526,741,1703,1944,2277,687,73,471,1013,1428,637,1557,2051,1067,91,1560,1769,2187,1013,1918,1079,1771,1754,1068,1207,1658,343,1958,483,1128,1779,850,2488,1920,827,1906,1635,2689,2667,1531,2596,139,416,1341,1008,379,1641,707,2454,487,2735,1018,142,613,157,1695,1970,1556,1555,642,1436,764,351,331,791,1628,43,558,1190,1325,1760,1191,2719,485,1248,2129,363,225,993,2168,1495,1742,856,75,2651,97,2138,1911,2347,880,518,1571,116,2028,2541,720,1000,499,1020,2721,2,716,2089,64,1808,17,1372,1778,2641,356,255,2398,1403,1147,1145,1539,1247,1309,2312,92,101,1533,1354,1306,618,927,1902,351,2471,180,1505,2093,2232,984,2250,1658,1421,1712,2545,255,2074,2498,2138,1264,2333,1466,574,140,1125,2154,855,1651,2485,2598,1366,1068,1736,611,1260,2564,538,532,1931,2456,832,1439,597,797,485,634,474,1374,2304,1240,2402,2117,252,2048,1104,1626,182,1124,234,44,1394,30,2097,382,2655,2289,517,2358,2214,1539,1831,2716,747,695,1897,2282,366,621,1296,887,805,1335,1217,1227,2585,487,717,362,1246,1852,2092,546,450,1524,1367,479,1696,2609,821,653,872,926,1452,1217,2406,1756,1066,803,183,2622,431,1717,1397,465,874,213,2121,2140,244,576,2152,61,353,1141,2132,2055,1391,2186,821,2507,412,355,2361,502,2606,1803,340,2713,675,660,1328,101,778,2325,866,1946,2308,1448,1425,1167,2376,712,130,126,2653,1913,841,2698,1798,34,2189,2440,2708,1549,2022,1077,609,2423,1778,953,734,2300,2117,1465,1905,2056,1856,713,2157,2408,4,1009,1614,1336,1744,711,2598,2154,1277,1684,1676,1271,2595,366,608,1064,1052,2066,637,1742,2553,2615,2145,2657,2724,1552,1180,2422,734,29,209,466,2227,295,1418,1311,231,2057,444,1597,1008,2119,2559,2597,11,156,185,1392,2463,134,174,454,153,1600,1618,2364,75,499,1539,941,2195,1459,1972,873,1462,1765,204,2398,681,1342,2122,749,2247,1850,2595,2241,2298,1881,2358,2082,2268,1168,824,2649,2632,2160,1921,128,2215,648,700,895,2392,1885,1480,25,2671,2467,988,833,178,2529,2033,2492,678,2232,2029,717,868,868,36,1695,1073,929,2185,643,1985,1677,1243,1384,1126,2690,1070,1393,183,896,2475,765,1052,324,2576,1861,1137,877,1486,2656,2358,763,595,469,2401,1974,15,1838,1171,229,119,1413,1444,2667,1675,1795,2563,587,1245,157,75,364,16,856,1965,189,53,174,1224,2236,2160,990,127,996,825,1076,1704,2595,2650,906,435,1231,2413,1397,934,1386,2388,176,2411,2662,458,832,1017,1684,1483,2510,2447,2513,2035,1552,90,782,1108,478,357,668,2200,639,1235,2690,158,969,707,2564,2280,2659,2322,2018,1748,771,605,566,1745,118,1321,791,1339,1692,778,2432,2603,26,2281,1127,2258,804,549,524,2691,2539,2459,2315,147,1592,1036,1973,1508,229,85,1490,1771,1587,572,1302,2259,1183,2703,577,1842,1843,2613,2330,15,165,719,1013,1680,42,833,1735,2022,2100,1780,2116,527,1634,876,2722,1593,887,103,1897,15,272,1158,349,442,37,2692,43,1601,74,1626,1806,381,377,376,706,1334,33,603,1643,2638,2708,1464,183,2532,2527,916,96,286,1494,1542,2347,1407,104,1034,216,1824,1358,636,2262,838,2041,1609,2451,49,1308,2605,541,1991,1237,1874,2612,296,1295,1350,2491,1200,135,572,2307,417,780,959,437,1943,1691,826,1740,2065,1252,2275,2382,1947,2214,1182,2565,2021,1692,2595,579,497,450,1422,1394,2529,394,1200,1033,1161,2269,309,670,1489,2293,1613,1360,1157,975,2675,2409,302,1111,115,2196,191,1527,1309,1496,2548,2626,2022,2026,937,1880,2435,1334,2336,214,1344,550,665,1582,1197,905,954,453,372,2198,820,1640,1541,2041,697,534,55,2612,2182,2084,2173,433,696,2454,846,845,2414,913,2566,1082,1859,1868,740,942,1968,2338,2679,969,2392,1427,21,742,1946,1869,2475,1539,2363,352,1591,1071,1957,1084,2528,294,2642,1326,2584,2687,2586,2624,799,2409,2539,2712,2303,1233,386,1430,2526,1578,1341,1758,61,1813,1594,2509,101,57,1578,2295,303,1376,1201,1655,2286,1773,1836,26,1507,2692,2525,1909,2160,351,2560,1833,534,1003,1813,1964,2122,805,568,9,996,2471,670,310,973,2659,24,2495,2027,572,198,582,1835,2574,1070,2363,1215,257,978,839,851,1596,1806,1953,203,919,243,70,971,614,450,2181,2262,2065,110,682,728,1921,1373,1893,2696,1724,1132,669,1752,2275,2189,488,673,2070,2348,860,1916,1704,2200,1839,93,928,2258,1491,2383,2701,1282,1308,2012,76,418,242,1404,1401,1981,2494,2253,612,1924,1841,1038,632,2026,2502,2510,2370,2705,2099,2587,2019,1347,2288,1480,2358,900,1995,2014,1780,535,1669,1217,1467,788,1630,837,1132,2265,138,2586,2493,347,2067,1989,1412,582,2598,1922,2066,117,1688,2140,2338,449,2711,2734,383,34,301,1328,2354,934,47,1702,1144,1206,986,1982,1601,2075,1098,1390,1820,693,189,170,195,1311,197,538,2634,1328,778,2468,2088,2398,31,431,103,2137,1146,1977,1903,1028,2421,616,2108,1849,1975,380,1445,1433,2040,2548,751,2450,2223,754,1089,615,2422,606,698,2733,1004,2148,347,2482,1371,730,444,1251,1125,2419,1638,1278,2242,257,2524,1735,798,1770,202,2478,2028,62,1251,850,951,1672,2145,966,2486,1379,680,292,1514,452,1259,85,862,2449,755,2485,2366,718,2127,9,1499,400,744,1652,1255,693,300,2107,734,250,1988,311,94,1509,1973,1518,1874,986,1282,1856,1718,138,2710,849,2687,174,1282,260,2336,1867,2486,477,2693,1929,239,2683,306,1568,2599,385,2092,58,337,509,2270,2485,92,1334,2286,2114,1649,1120,2404,2072,1831,182,764,1193,2342,741,1210,1690,1110,2338,204,1343,2256,719,1294,871,1460,724,512,1643,1686,640,748,2643,1048,2351,864,1236,1405,2640,181,2534,2699,1983,1025,1778,2358,636,1432,1499,1155,895,1994,1611,40,985,1776,387,2405,2373,1713,1304,268,1734,2573,2358,45,944,6,1805,1061,1107,1298,322,1631,2190,2475,1249,181,1913,518,68,1262,1628,952,2135,456,51,2639,2484,1084,2374,48,1298,2126,390,2301,2177,1486,963,350,528,1152,1132,1695,2438,807,1377,323,1968,130,1503,1432,805,824,1882,908,350,1440,1693,1724,858,957,2306,1521,174,1674,1488,2309,513,1543,2117,220,1482,1944,1334,2690,2654,8,820,2401,1399,1035,395,966,2069,50,2572,667,1939,2121,1878,582,2674,2602,717,674,1904,1761,196,1220,765,2441,2104,1377,64,2556,2522,819,2666,962,168,1130,1389,2372,404,445,560,1060,951,640,1783,2092,2078,1970,1331,1905,2045,2667,666,1342,1813,2290,2096,1416,2140,885,1977,1130,2449,2281,848,443,541,1136,315,1581,1165,887,2707,1780,1150,843,68,1129,1933,1345,1670,1104,2318,65,75,714,896,72,1917,2179,2604,2153,2501,2334,214,1028,2201,10,2353,1916,977,1645,909,1301,2076,540,2140,461,1942,133,393,6,1362,2131,887,174,316,83,2363,761,1572,1656,2194,2078,554,756,1455,2557,1646,2452,1560,2530,2500,1231,2183,1762,229,2499,690,2140,318,2547,1919,717,2109,492,2729,976,1438,1347,488,1564,196,1215,1611,790,263,2556,1309,251,1732,1628,2475,1900,290,172,1731,132,2412,537,366,991,2425,761,2419,2279,1452,489,670,2485,1233,955,2436,2496,515,2346,1979,1506,1217,1594,286,3,336,916,1661,998,422,2061,202,1199,2325,496,2505,13,313,1331,110,2635,1912,1051,912,2465,208,1069,1655,1032,1905,61,1733,60,1424,2062,1730,352,1265,2466,814,2476,488,2017,2218,1799,2140,943,2106,2517,218,146,2617,1421,2382,2576,1943,371,1499,1444,2458,589,820,669,2564,849,589,1626,22,1675,2213,1848,1347,2605,221,1982,2076,1180,1532,1261,653,1359,2172,1948,1509,2729,1410,2340,1743,418,558,781,2421,937,852,1047,692,2548,1,320,2348,273,1291,2490,2167,59,1421,2139,1572,1926,2268,1330,2092,669,1743,1795,1970,734,2192,447,2275,324,1925,183,1255,1497,1109,180,343,1720,2368,2212,1773,1194,2496,2500,202,299,1714,1444,587,105,1076,1298,2150,2048,326,1610,1355,138,368,303,1027,1134,1840,1303,1063,1134,2519,846,1671,1563,1192,2503,259,876,1443,116,2,2221,858,254,104,738,859,2201,1753,499,55,584,6,1620,1144,255,872,582,717,1580,1396,295,81,2541,237,1201,183,1252,684,2318,1555,2087,922,567,1962,914,2523,2612,285,702,2072,1905,2014,2054,273,1708,2618,24,1561,163,1781,1854,2479,339,2149,2186,2564,1758,2640,1080,1661,1763,949,1025,2037,2124,2396,1913,1192,2385,1045,687,1062,328,1860,1061,708,1821,903,167,543,1188,1444,341,709,1502,1891,381,79,953,1453,2072,1604,1462,811,76,1770,635,2336,515,2517,681,953,2335,1794,871,824,865,416,1173,2600,902,841,1348,2448,1476,1957,726,2099,1527,1130,1870,1299,9,836,1760,1013,1926,2250,1886,735,69,911,16,2580,2503,1727,1382,1186,993,2242,2681,1041,668,896,688,1824,2098,1704,2639,1445,1167,2143,1519,2229,677,94,437,2396,2243,2204,265,2490,1646,2496,2583,1956,612,637,2419,67,1540,1660,1319,9,784,932,1463,979,2434,105,2424,2415,1447,1549,1744,704,1173,1247,2503,1626,2205,1125,1277,1735,128,1966,57,1688,184,2191,2549,2479,114,2211,1233,1132,2636,2542,918,988,1704,2240,1655,819,558,2632,366,2589,9,2085,504,2144,693,2544,1284,2174,978,207,1577,1410,1839,1054,451,2338,351,2426,1898,433,87,2388,2299,1995,1488,867,403,892,2629,1741,1806,2461,480,2706,1508,1655,1481,610,1788,1087,2336,933,1043,2021,1053,517,1375,211,1889,1905,1668,1810,877,958,1886,106,782,1977,413,938,31,659,2664,1207,2460,122,2687,2400,1407,534,2098,2155,1289,1326,1542,733,247,718,1444,624,1334,777,2027,622,2394,670,2282,1910,2398,1277,1578,9,2216,328,1394,2363,2224,735,313,402,2076,88,2031,2686,1332,749,202,283,600,1055,1283,66,2409,1532,2309,1220,1707,1215,2306,787,1999,107,572,1078,2317,2149,1735,1318,2343,1788,1520,2021,1316,1064,2416,345,1132,2570,2046,1870,1178,2028,1254,267,649,1144,2685,1923,1489,1272,269,2554,2393,2335,503,172,1935,1780,1952,707,557,1067,1647,1031,2687,539,2699,2275,2515,779,534,2166,1110,1841,2417,585,2194,594,725,1872,454,1964,1439,1350,358,1557,1163,555,1153,188,853,1018,9,1914,120,1907,1405,451,2184,1465,1729,402,767,333,733,173,2570,2181,1880,1347,547,1401,2482,1685,882,23,439,962,965,2098,2403,655,375,2570,838,2661,1612,1309,2712,490,45,1799,1720,737,897,617,1900,2376,1816,1514,2205,2251,2109,1295,344,279,389,1699,103,2622,2590,1229,1581,1957,806,2292,2232,1265,1782,1743,863,783,157,1211,144,2526,1538,683,659,308,2164,2648,64,158,1635,1546,488,2222,1178,496,417,833,2041,1964,2036,2534,1827,1320,746,616,55,1887,91,2164,1957,2628,1950,1834,491,2582,1801,884,441,2030,635,1326,921,2378,765,603,2235,1905,396,2415,1266,1277,2071,1585,1159,1830,827,2360,2645,1118,1611,1291,1591,1261,1087,172,871,885,2535,2679,2598,2651,1698,498,613,2361,1693,2323,1927,792,2558,1827,1083,1897,334,2682,1132,2191,2481,770,314,906,261,730,2047,1506,170,719,1181,233,1256,1113,2146,2422,2012,2412,1435,1642,463,2058,2189,1602,1718,2166,415,2051,161,2541,935,2702,2002,1466,659,2658,1237,508,2233,448,1269,2410,1567,1566,2727,636,1872,34,2538,1905,2160,941,102,1578,842,1507,2400,364,647,785,2375,1794,1223,354,1366,1220,2248,2045,1780,767,802,1548,2623,1940,1987,2316,1718,345,219,1725,1835,2418,1708,744,615,835,144,652,2469,2206,1787,1624,209,1511,1265,1793,1255,116,1623,725,1087,1016,1288,1103,2595,2689,922,442,2536,1075,1306,2181,2492,2292,2537,2120,1132,2231,530,894,1576,2243,933,1574,252,1633,2705,1931,2202,2674,1818,302,2726,1953,2658,1493,2331,19,2364,2166,187,953,1319,2218,2140,454,1657,1795,2524,491,1013,289,1170,1936,2471,1932,2011,5,140,778,2371,1238,1296,2014,2391,2437,1509,2202,2267,1278,1266,1065,129,1563,1639,241,136,247,1779,1419,186,939,1711,1565,1856,423,1309,2067,370,9,1518,1823,2361,1626,1204,2189,737,420,1548,1178,2471,2039,1849,2581,1343,1591,457,2133,2642,2390,2562,2540,2347,1874,813,522,204,402,1158,1746,871,528,2387,981,2632,2010,266,853,51,1576,2033,2346,2143,176,2669,1050,382,1205,1505,1162,384,1757,1977,1758,1572,347,1187,2206,2466,2049,2635,2078,2628,582,889,663,1680,1219,2419,2338,444,2088,2732,77,2318,758,1144,507,206,1896,2163,994,2065,148,1695,1288,1826,156,1627,217,865,1418,1768,741,1086,886,1071,1274,592,619,1237,175,2358,1644,1385,2087,1206,2142,1882,1563,1081,1029,1864,2571,453,1179,1533,1108,1153,1385,2013,1255,2245,1751,1468,189,1659,2063,529,2348,1772,1364,1839,1785,2508,112,501,2243,734,575,2512,1293,1255,2213,1279,647,1679,1771,815,299,1534,1247,1793,525,1112,2407,1355,334,563,1720,150,1755,186,548,1,402,1621,1846,1942,2281,457,774,2545,193,1417,2237,1387,2318,804,872,2648,1130,1090,123,775,797,1209,1257,1122,967,566,334,86,544,414,2484,2683,1595,1445,2379,2341,2718,1744,2198,1479,1623,2506,1984,501,875,791,273,1806,1546,858,1874,1160,597,2617,1922,1004}

    1304

    2404

    Returns: 43127806

  58. {212,58,478,244,446,118,481,25,92,582,144,207,593,104,350,224,3,299,361,379,408,246,256,43,350,76,284,648,264,99,91,676,339,620,372,728,660,428,316,207,215,108,269,504,318,739,559,384,655,302,522,19,734,20,540,515,366,495,641,499,176,274,342,182,733,66,575,716,95,11,200,283,290,677,617,728,687,456,463,365,605,637,539,716,172,651,17,570,364,674,79,168,493,108,494,464,732,357,367,504,382,149,496,380,39,524,511,438,402,713,80,436,720,597,625,18,50,589,292,537,154,268,20,430,21,230,628,542,423,595,387,603,473,234,30,121,216,718,365,706,541,305,720,114,108,214,416,17,96,31,685,657,640,616,129,637,389,745,375,726,750,185,347,117,467,657,27,540,321,509,421,362,126,501,379,192,167,200,285,377,277,730,557,622,561,409,437,20,354,97,472,227,315,288,418,224,524,562,27,334,518,691,739,98,269,32,55,388,390,498,175,378,248,114,627,163,735,321,69,356,350,431,564,302,616,57,199,335,101,350,702,317,743,303,684,248,493,724,578,290,32,71,181,124,87,274,682,0,572,225,348,218,69,315,96,687,581,149,649,424,570,119,109,29,135,32,606,666,279,32,405,523,33,118,645,397,342,552,719,95,560,9,477,708,204,237,640,585,496,463,46,133,296,369,506,55,630,275,709,378,674,555,417,491,45,610,144,520,471,643,369,535,129,675,64,342,73,277,98,72,624,531,613,105,289,59,627,621,529,641,137,241,408,256,630,205,478,403,525,616,696,539,508,378,589,174,55,536,207,154,633,618,744,659,709,318,725,548,179,524,637,721,345,94,449,158,312,585,340,83,699,477,40,569,525,65,345,322,249,190,434,22,227,135,724,559,612,638,58,134,220,254,63,473,189,353,222,184,236,385,247,486,389,302,720,463,311,706,707,324,646,293,251,29,165,272,120,54,629,724,468,248,668,87,36,13,213,304,470,42,670,84,274,336,448,621,202,690,108,745,577,682,320,340,733,267,741,93,576,147,566,79,587,337,542,434,202,388,517,419,717,346,266,149,550,234,145,432,252,286,274,628,81,538,166,379,251,156,15,527,1,225,736,68,668,479,482,341,444,110,137,360,601,334,97,347,401,733,139,378,682,462,311,618,250,429,154,149,96,402,611,725,220,311,121,514,177,186,650,652,331,415,609,532,380,136,653,401,695,503,443,419,663,729,737,634,625,713,409,291,436,284,716,287,700,26,429,490,579,21,455,530,223,35,352,559,261,6,749,400,387,359,704,256,77,184,103,100,492,218,681,582,620,362,706,226,386,518,461,748,694,584,249,52,324,312,581,301,595,528,712,543,576,244,251,446,84,750,446,132,475,309,664,349,153,665,434,383,624,237,559,243,160,709,743,133,580,575,554,114,238,196,534,497,710,697,228,698,22,427,35,464,51,424,626,151,519,355,731,360,373,488,184,95,411,685,470,546,305,464,458,315,534,646,514,738,498,613,371,158,596,288,239,114,477,722,674,139,108,570,678,716,283,407,226,529,368,487,328,722,641,576,576,580,309,315,740,480,656,670,511,697,715,591,255,251,89,313,127,607,172,398,279,173,113,330,358,627,663,274,569,726,534,294,623,605,597,735,290,575,195,106,644,314,597,647,281,705,595,149,618,500,150,398,142,299,563,263,140,459,329,121,274,435,48,447,301,214,62,67,422}

    {557,410,624,667,121,28,270,522,693,238,131,32,288,609,639,575,711,533,179,386,661,640,147,356,306,280,2,358,676,653,64,78,61,65,733,671,649,267,515,326,127,12,70,701,143,488,100,30,295,44,624,472,1,622,514,514,529,127,164,549,126,122,78,442,141,626,99,180,115,177,370,189,517,653,634,641,112,605,378,214,137,639,280,446,98,44,344,446,679,221,162,494,113,324,310,578,134,98,536,239,40,309,542,183,633,398,426,264,331,240,168,194,159,682,634,341,252,534,278,544,446,413,352,540,551,682,268,27,248,152,10,47,673,304,747,238,466,655,400,473,532,170,394,56,739,75,303,273,491,332,439,642,332,161,206,111,598,573,633,502,370,522,567,537,53,396,665,183,235,480,229,266,128,317,208,446,161,245,98,672,188,682,412,232,567,327,79,459,158,681,597,465,586,635,553,484,24,514,274,38,103,665,73,521,475,310,237,88,386,542,40,113,123,238,118,29,590,21,262,442,402,21,517,358,333,99,690,516,743,130,113,666,450,639,659,23,212,683,440,726,324,301,473,495,435,743,254,677,441,320,153,720,543,517,193,338,347,370,144,251,155,627,510,377,100,118,527,406,529,182,224,739,125,742,242,389,470,638,369,276,65,109,360,735,358,219,598,603,74,478,62,526,167,203,411,485,235,78,112,467,288,264,223,167,676,351,543,695,191,133,514,724,733,518,116,473,612,739,181,309,510,400,146,175,584,459,191,582,27,600,225,21,169,295,669,282,189,417,102,266,172,491,268,379,169,332,693,459,257,60,517,165,26,182,26,6,688,592,190,383,364,617,405,41,447,253,108,309,474,78,224,727,750,121,423,589,49,299,689,302,402,543,352,751,308,693,615,265,95,679,97,46,199,701,590,27,346,396,130,730,334,217,358,325,690,748,583,536,549,534,209,422,658,260,14,89,26,639,730,553,614,167,282,55,381,91,6,133,399,414,13,696,334,309,498,686,510,602,443,183,355,704,244,297,497,138,56,232,8,114,527,617,640,51,457,624,636,473,709,568,497,178,511,238,129,711,528,90,430,477,410,266,632,677,478,163,374,309,257,238,543,476,216,676,201,266,703,751,286,383,631,187,497,69,82,489,723,238,743,33,121,451,594,309,207,259,714,7,654,453,321,319,300,624,445,309,599,383,211,476,34,225,647,656,90,655,545,462,91,32,680,364,574,402,172,94,621,640,592,484,343,320,528,305,645,489,322,742,376,371,415,686,167,144,692,16,214,290,39,483,485,286,393,512,478,231,664,656,442,5,383,340,454,171,514,571,242,334,590,381,471,149,743,200,4,339,85,733,469,725,191,222,433,126,170,198,668,666,662,232,108,315,404,679,569,226,534,37,647,436,619,163,65,428,127,298,410,414,219,462,703,506,376,211,598,510,294,504,409,627,258,229,478,149,439,118,458,641,342,513,678,604,310,452,59,234,217,299,747,543,597,293,274,706,460,56,556,379,11,326,218,182,271,233,641,727,197,746,323,632,170,320,392,127,321,549,703,453,6,107,238,351,703,552,588,468,716,470,608,274,516,547,242,169,277,572,129,507,565,222,210,534,17,451,234,744,585,148,645,539,690,420,149,157,6,391,307,505,86,434,642,147,29,55,157,278,439,524,641,558,544,436,428,693,562,662,349,69,437,553,439,507,425,395,696,279,481,575,216,464,363}

    336

    515

    Returns: 409026936

  59. {1608,757,763,859,2149,454,833,1741,1582,1699,1769,1233,272,466,2119,216,2141,1975,1789,20,554,1662,85,381,1214,1950,1267,750,45,345,383,1767,2054,1532,1317,694,899,1462,1594,128,2017,2184,1186,1091,1113,45,1432,2017,1439,414,189,897,2222,164,2262,367,2059,1767,1091,1210,1645,1453,1660,2197,851,609,2147,1502,732,150,1430,404,1710,1357,1248,823,1983,1699,1239,1231,1235,2237,957,555,1601,1955,911,1883,628,1555,1205,360,2246,2205,585,635,723,1497,228,2015,517,1490,1033,2073,1676,1308,2003,805,149,666,1614,1860,1549,2121,1621,556,34,1862,1871,1392,1938,1656,365,1525,1147,1865,809,215,1210,727,1902,405,1882,194,1194,937,1684,1032,456,843,95,5,796,979,744,931,124,1209,682,1568,904,488,1108,1705,1112,345,2038,431,2241,954,2180,488,1238,783,723,475,2170,2120,470,1639,1393,1386,326,1272,1738,633,351,1430,270,2057,3,834,732,475,1197,2110,569,100,1780,194,2181,515,2044,478,101,1711,391,1210,2072,416,1793,1161,1194,126,1526,2056,1992,1115,2149,329,407,1439,2165,1564,1967,1883,1705,1299,672,1133,1341,1299,659,1978,1367,1166,2114,741,1454,1557,1377,160,541,1755,354,1034,671,1311,2039,1456,1240,2265,938,1876,874,2154,688,875,2191,1597,45,1427,1107,1940,1506,755,1659,68,1920,1851,254,1059,1705,1042,213,1334,1482,1395,1921,751,1296,2101,925,1720,1139,628,360,241,2239,1941,970,877,168,913,452,1428,1006,1594,654,266,647,1301,971,1750,1247,425,110,1882,1578,949,1119,683,523,1570,944,1955,1635,3,604,594,852,1888,414,333,911,500,1712,1465,892,1728,2123,1971,23,93,395,1638,299,774,706,708,1572,1088,1473,1581,20,844,902,1592,42,2033,1332,1793,925,2132,106,1362,1436,13,145,1415,2258,318,63,173,302,233,1477,1753,627,1166,1631,172,2016,140,1218,906,1199,1859,742,1123,2031,1685,878,726,727,70,244,1818,1171,126,873,1581,799,659,2193,2160,552,2173,2055,2039,1594,1989,420,1516,733,738,1624,1432,1733,807,2266,1159,447,1602,433,958,1675,27,2211,1786,1864,1268,1197,176,891,1947,1884,1692,2249,328,535,1816,1146,239,1770,126,58,946,1326,650,1032,2273,894,1613,397,555,41,1586,1106,1793,887,815,291,75,1941,2170,1621,684,498,838,1581,52,318,1198,850,20,489,46,483,1713,1993,933,1609,0,505,1474,117,2224,907,1134,1027,223,1217,1134,15,1631,1049,189,142,964,2153,1262,64,942,1407,75,207,1260,990,1607,1895,2202,1430,1021,1152,319,352,2200,2102,1893,912,1174,2068,97,1002,189,2027,1805,965,983,2032,867,1436,92,637,923,1835,2000,162,2221,2254,2256,209,1022,918,375,1546,1350,15,1882,826,157,1507,1784,2162,1759,2131,1471,2174,2168,795,219,1783,204,1022,1412,808,1168,591,1615,1974,470,2203,1990,386,285,311,568,1272,1820,1217,1900,2225,752,1421,1402,932,1075,284,316,498,112,1581,1646,1575,798,1241,1866,1683,442,1631,411,65,2132,2223,244,1022,2167,1749,1043,428,2231,652,653,1528,1013,233,638,261,608,546,2062,2074,1883,1860,755,582,597,616,1891,2019,932,1815,64,889,1960,380,1497,1376,983,901,1640,1646,1099,1147,330,92,1801,1006,987,2044,233,1127,1036,1032,2252,1521,440,1773,1963,2028,1655,1403,565,1455,125,74,803,95,1456,2041,2040,2245,1713,25,151,1257,2086,1604,692,2075,1383,368,766,1738,675,17,2170,578,426,2206,659,1905,723,2147,355,1925,1491,109,1803,485,612,1483,352,57,795,795,184,1567,648,264,1706,1646,292,1339,224,1294,435,1834,1514,1067,1020,764,243,544,1882,1804,1578,1725,1563,560,2067,1307,2003,96,1080,1602,1567,320,1875,1627,25,2080,2,1622,1889,1430,891,612,2222,414,1396,1281,1761,1232,1989,683,763,1639,22,1695,1681,216,1379,1880,2177,1270,1646,310,252,313,1745,2044,1331,519,1165,1258,1550,1257,1734,358,373,2219,37,474,2191,849,832,1908,1194,123,697,800,1345,1580,1264,1865,1752,1720,1927,1466,845,967,830,646,399,2043,931,953,373,1217,1568,1998,191,226,1482,1480,1460,1268,383,1690,599,938,1029,673,73,987,2044,1691,2183,1682,468,1081,928,233,293,590,1999,2051,2049,1463,322,1555,1431,1608,1631,1874,1644,111,1088,1669,590,1593,2025,1269,696,1079,1630,241,45,1078,779,1718,63,2246,217,1256,1037,1429,653,1447,1476,1569,1260,1153,2024,1870,1942,875,2221,1922,1486,1840,1547,767,632,771,577,754,719,1377,309,583,246,197,2233,1660,1407,70,1475,2071,591,2019,1722,515,1646,1192,264,153,1257,613,207,1903,1690,2264,514,334,329,1705,1672,1804,1141,1791,2003,2159,1436,1879,563,1102,1155,2181,1268,1923,55,759,2240,337,233,1333,2188,360,808,158,2158,2065,2171,1268,1953,860,1149,1300,126,1936,1762,1161,719,933,789,1884,1994,2106,1935,1156,1646,268,119,975,670,1449,471,2164,785,2019,2215,213,465,1833,380,2140,1098,1508,787,512,1327,1748,1926,1003,1892,256,1009,1996,1013,1470,1327,1991,1295,2049,98,1158,740,1193,542,352,1351,1035,499,193,1875,66,280,1160,1084,772,1842,2124,505,1191,620,870,760,1944,1356,1802,914,1043,2017,920,1787,1463,683,968,1843,148,1545,1826,199,153,1553,567,199,968,1137,1644,2196,321,2075,1460,816,1595,1017,80,2217,340,830,1954,720,1660,964,572,1116,2238,886,353,1531,287,659,2132,1518,61,211,600,1680,544,562,806,1742,1672,695,1910,798,853,120,55,2057,502,576,1934,1769,1062,1715,1751,710,2259,845,170,963,929,840,2175,2220,1530,1157,338,275,63,1375,411,811,1265,830,876,424,735,590,1255,397,57,1095,1382,1535,1839,1364,2253,1673,625,0,318,1270,31,1429,2146,2114,241,679,2204,1718,2038,1660,308,858,2104,1155,1589,577,830,746,436,1937,1756,633,1554,912,1562,414,64,125,2136,532,1788,111,1571,2250,126,962,2126,1492,1047,538,1320,2101,1290,2222,1331,1646,1900,995,2151,531,983,990,1471,2010,1713,1681,271,2047,2070,2216,223,1129,1205,306,1332,2147,1597,1228,950,361,829,1824,1314,1858,1121,1566,2102,572,252,1530,366,815,1447,2253,1338,1387,818,668,1188,702,2049,163,2136,1560,1886,2128,1821,949,2191,1914,699,1239,924,456,1725,1311,1512,764,1883,297,157,2056,2107,1106,1015,1072,889,2232,1847,1573,545,688,1149,338,1169,1677,2109,1282,231,647,2135,1658,1798,1561,1137,572,2196,2140,1799,1320,148,1284,500,2231,1581,1379,1590,1204,1649,541,1705,674,988,970,1848,1778,1231,1875,609,1894,644,1918,117,1819,720,1833,1797,1816,28,134,506,1620,1825,1927,1977,366,1387,1909,951,700,240,1306,1494,1898,639,943,647,1665,949,540,1529,100,2110,1738,2260,1603,2002,1102,457,1674,856,1631,1320,1459,2018,62,1611,2240,686,161,589,215,1607,464,2186,1814,2210,1362,756,1143,2235,314,1234,1272,1363,174,1790,544,1887,986,1688,878,653,206,569,1722,110,1156,1578,1769,1128,1722,572,2128,783,536,619,1682,577,1063,614,1590,1563,1509,1603,491,1578,1810,1965,1858,875,1141,1427,2269,245,2005,486,821,2256,948,997,885,235,1149,257,1865,1006,1163,1021,631,578,641,203,1419,1474,1931,842,688,1645,751,1023,1870,1148,501,1975,1760,1694,2011,1535,1922,1603,1572,820,1607,1488,1967,1114,400,773,2056,208,1846,1626,1740,1743,577,205,738,1217,2274,425,983,103,2043,561,861,773,479,2070,883,952,1061,1432,1875,1791,1459,1114,808,678,1944,625,845,566,481,573,867,1697,146,2134,2187,1538,439,1637,1907,1305,1176,711,611,1522,1077,1868,157,2078,2191,982,2052,45,1493,1149,1645,955,1782,2019,1945,1487,735,396,2132,2072,1841,451,180,613,1565,1482,1489,1362,2131,37,1073,1370,1967,1503,1707,551,2005,2008,726,526,1461,1308,1633,1954,1756,1865,688,978,685,1581,2050,1867,1641,1530,789,1653,1369,1331,1400,1285,419,1939,1816,350,1968,1287,1409,2209,1906,824,2168,740,881,18,1584,1843,1567,1978,300,1674,1162,1523,1464,980,2127,1899,128,1398,951,1149,1010,424,1340,1002,748,1928,1780,2094,327,104,1237,945,1797,737,344,443,1954,1072,381,401,2055,959,1354,714,754,548,808,1517,699,336,1119,1789,21,900,564,726,1693,1470,1351,422,2096,530,254,448,1666,1487,568,1917,2091,886,805,986,1111,242,954,2155,643,1898,1883,1808,1290,1891,943,1593,1782,1499,1841,407,242,511,1025,533,2230,551,2260,1265,709,2100,144,1598,1001,495,1377,1756,1726,1457,288,797,666,2208,990,1612,1100,1906,1831,1225,25,1977,188,183,190,1183,1580,2246,782,161,1234,795,1433,1855,130,2009,350,1849,1758,378,1471,927,1133,919,2165,27,455,1819,759,1457,403,420,196,19,246,1017,1270,1144,56,2089,1129,977,1343,1055,681,1954,1132,1444,618,2152,813,2032,1558,630,324,977,1450,1433,880,1336,1445,43,1593,1479,708,544,141,1538,398,2011,777,304,2035,910,1506,42,1473,248,969,2139,2113,1713,1472,1513,896,1225,1063,1494,1489,1278,1208,2173,198,1322,1541,1375,381,1142,779,622,506,829,980,1028,2063,919,1911,2262,208,434,881,1674,770,968,1850,676,1152,1803,1580,25,1273,1905,70,579,1827,514,634,437,1570,1282,1134,931,2089,426,2133,1875,693,1130,1608,234,1844,925,77,378,947,803,1847,2072,749,1821,423,1278,1470,1157,1454,1471,1139,2129,372,647,1540,1080,1468,718,1680,342,1032,1761,1411,629,89,836,1094,857,813,905,1692,1914,1141,768,401,462,764,1291,1798,1817,1807,2049,759,2047,1048,758,424,252,2168,1750,278,1980,1119,598,797,1674,1411,231,1102,1882,1659,148,1199,422,1800,737,94,26,2205,2019,292,1837,1484,78,377,1185,364,1925,2116,892,1053,629,2041,300,216,868,701,691,214,1780,1128,730,1977,626,863,959,630,388,1589,1875,2227,1082,834,2144,2130,2178,1471,1279,810,1203,1900,1335,269,488,1997,1330,1735,2245,350,1257,1243,1489,878,1604,393,45,67,791,231,1582,1654,1714,508,2202,1914,601,1708,2188,929,1086,763,1337,812,64,459,1194,1130,291,8,1395,1730,1922,1693,1373,830,220,290,1141,49,1034,2121,902,528,1338,1494,1488,1944,1174,497,1650,346,1392,1078,1516,2141,998,1407,456,413,472,1299,1606,274,575,907,2061,43,1251,1746,2080,25,903,1374,503,1489,1259,339,1605,753,482,290,571,84,769,1539,1384,487,39,872,409,24,1138,1014,1192,1809,1424,739,664,1456,243,1548,401,328,1540,1010,731,1671,1450,773,669,483,2142,237,1573,1211,922,2212,1646,1961,284,1341,691,1475,88,1748,323,11,464,1721,236,801,1245,827,2153,265,2039,1701,1924,170,1215,43,977,159,89,689,105,862,286,312,1661,234,2215,1891,2099,2192,697,153,583,299,15,115,797,2058,1874,2014,1627,2022,1724,1152,825,1436,1904,1031,1819,884,168,1425,822,1685,179,2246,1960,573,1414,769,1798,879,1882,137,394,505,919,940,2039,1116,1856,793,1276,113,295,1507,1485,1655,1166,808,2013,1089,1113,1847,2112,712,1905,107,9,1097,418,55,2018,417,868,425,1235,1167,705,1722,12,217,345,2199,792,1875,111,1747,1531,635,647,5,367,999,379,1380,300,1998,993,996,2226,1102,1216,1683,148,242,1664,913,1946,2161,1682,2203,1265,258,728,1634,1578,1190,645,1943,1845,2083,761,968,869,239,100,1644,2133,1538,2000,672,2195,24,288,1012,1899,864,1309,776,797,476,949,576,1325,1682,1306,1243,986,1631,2157,1669,1445,1603,1507,743,186,1124,2250,343,1494,2087,1534,225,1559,1351,1603,784,236,1452,1218,1845,1248,1757,1921,1786,1410,1289,1660,1776,1463,2017,1668,1466,452,296,1578,930,685,1155,2207,1973,1543,1028,2070,1627,1590,460,550,1207,422,1748,439,354,2248,121,1136,1427,2156,2039}

    {48,891,946,477,1637,127,919,169,220,387,1703,2189,57,182,455,2065,503,806,1882,1032,766,751,275,1401,1910,1819,1200,2156,1891,2201,2066,1073,1965,119,649,273,1687,259,1760,449,1793,2271,453,1744,1781,734,1525,1828,580,1657,1299,91,1665,1555,1838,692,529,1616,1646,1953,1763,387,1931,1689,2228,301,1179,591,1568,995,1963,860,2219,434,1576,2094,1245,1734,1095,1512,1693,780,606,1766,2153,238,1853,980,211,1769,691,1358,1756,211,468,602,2200,1104,602,1073,100,4,2241,678,2142,749,1982,2057,749,434,1182,1067,2105,85,610,1800,1164,473,947,2048,1002,2208,1960,575,305,1131,1612,863,396,1059,845,1812,1780,1764,1704,679,777,1028,1896,1320,1533,1970,2112,2076,1522,29,1312,1754,2262,989,1383,686,2165,666,696,876,391,634,213,1152,91,1602,506,1756,2267,1749,630,2191,211,1939,2194,2094,712,648,2270,57,1241,242,1836,1665,386,1233,345,2129,924,960,839,1030,2088,708,1806,1585,488,141,994,1821,856,1039,2053,1593,317,2013,2049,303,1731,787,10,1319,2032,1437,864,1420,2145,1654,733,132,95,890,1236,1804,2093,412,2269,210,1797,1991,1284,1994,156,693,1237,733,509,1808,2149,277,1553,1495,635,154,534,493,1504,961,1482,1427,2213,247,1584,1244,1154,2044,1854,24,1268,34,2042,25,1698,1662,2012,356,1646,260,2008,968,1705,156,687,1598,2046,1180,273,817,450,2095,749,2272,220,252,1057,2214,1098,1956,690,1849,1016,165,1427,812,1648,26,1941,1243,1085,691,1572,1015,1535,1346,1373,40,1195,716,976,195,1338,513,725,1454,589,210,1649,1774,1424,1302,2092,1691,1123,717,1347,119,1329,1667,411,1113,835,31,201,724,1087,1907,1344,108,1835,1778,759,1183,935,1837,680,1189,374,1706,1146,747,2167,1005,1856,1627,2105,866,320,1594,1528,500,783,1306,1399,1078,145,238,336,314,6,500,828,1097,2088,591,1933,1603,1388,939,857,2150,981,1524,977,2158,34,834,1290,251,896,1138,2103,1499,286,1756,787,2049,905,1172,1986,898,1067,1679,1900,1509,427,422,839,1366,1651,516,1192,2242,358,1954,153,926,615,1712,1142,1887,956,1056,751,1516,1586,1915,1489,1603,1852,624,1156,661,1091,958,1280,5,1197,662,658,803,1528,439,1999,1689,889,1071,1731,54,450,977,822,1395,164,1743,532,794,1430,207,591,80,459,478,2155,659,1617,1857,1721,979,1268,1190,2236,2135,1596,14,2121,539,227,504,1818,2006,1828,595,1552,1070,1194,197,1898,1952,1516,1469,1618,707,350,2029,1276,1579,1484,211,1682,2226,676,1426,647,1516,686,1705,1487,1198,1482,804,1949,1837,760,96,755,1962,2271,1323,1513,992,1810,1560,329,175,108,1826,551,406,96,689,1932,264,364,1875,2164,96,640,509,492,792,790,1617,578,745,905,34,392,617,846,1359,677,1135,387,1739,1964,1913,2056,1692,82,1195,1398,2036,1588,25,1577,1507,435,414,1327,145,1103,1980,234,350,1496,2008,178,25,1313,2248,508,723,1882,2086,1342,319,319,1315,757,832,1221,44,167,1308,509,672,501,210,590,25,871,1635,964,934,461,878,1702,623,1234,375,381,1619,233,1275,859,1748,986,1634,1597,746,1905,1578,2198,2192,1742,414,1041,928,531,1225,152,986,665,1857,1920,921,1756,211,580,1106,1441,1819,70,1289,1300,1585,83,881,1247,36,2263,1463,2129,217,970,623,672,587,187,627,2118,110,325,2266,2229,465,30,861,1283,2019,855,1423,991,1510,908,1702,414,1055,480,51,1717,1078,826,1375,401,559,647,1268,95,1076,87,1857,403,2153,1117,2021,344,1295,1527,1427,133,915,1527,96,1019,1413,1852,99,418,1521,1769,581,651,1135,349,1704,736,738,433,466,253,1448,1069,1250,524,1754,2240,612,1066,1117,755,247,868,467,851,448,1903,341,570,2128,238,1885,1297,3,111,1106,2039,184,319,938,95,1555,1436,87,616,886,1422,1621,1272,970,1568,836,87,1796,1587,2004,1155,1739,1579,1018,1291,423,531,1840,461,421,1206,1701,1623,1004,444,1951,283,1361,2183,942,1808,1887,943,1867,1055,404,389,1703,2011,2030,1015,27,2216,1338,2054,1600,990,418,500,5,965,2189,2124,2141,2010,1940,1373,1530,1659,1322,1365,1939,520,1468,1882,1551,478,2188,1161,429,1312,1872,1768,63,1748,66,1229,221,1722,2090,1614,688,2181,57,1734,1931,1310,87,756,1221,1060,1761,2064,1919,1533,1682,1024,521,1178,1266,247,886,2240,663,1537,602,604,1797,672,1969,1044,1639,987,738,897,543,1976,626,1647,81,1046,390,278,660,1883,91,586,71,593,723,509,582,408,1032,667,1979,1287,536,1794,149,1590,229,243,2059,978,588,2057,1476,2226,924,215,606,1734,218,60,459,2037,1195,607,1142,73,1064,200,797,1363,1295,2026,772,1353,806,38,1527,1692,699,1489,1348,233,715,1493,775,359,1961,1075,887,262,1097,660,264,808,1117,1454,212,485,765,727,232,1359,1531,1148,1114,1705,382,691,1293,986,432,2232,751,1848,1895,1668,1817,2138,1470,1859,1927,806,298,30,276,893,1685,1271,448,1513,1284,1616,492,519,1636,1818,130,153,673,897,768,522,282,1302,929,527,768,1891,1662,1541,864,1400,1118,770,1767,1166,2005,1336,2169,902,1613,2003,882,560,1205,723,1886,569,1740,211,373,1085,1147,202,1202,238,162,1067,1430,979,384,1499,722,909,650,2204,819,772,401,1619,1795,369,2145,826,1475,2250,1875,979,972,621,1182,721,315,1723,1196,1002,1955,1023,1723,2135,2169,1213,592,9,1994,2147,919,349,401,2228,1394,668,2163,1455,767,69,231,832,1481,1181,1455,987,1373,1385,194,498,1298,1958,102,59,794,1820,545,1175,259,1986,642,220,1080,1852,808,731,1200,1233,232,204,1396,606,1625,2190,953,1500,2001,1451,481,1580,1055,1857,1555,1574,2129,1344,53,1489,1360,605,1959,656,1877,469,2037,1760,1881,825,1416,2127,448,507,2158,1489,2079,1931,2065,515,1264,2255,781,1924,1093,26,1148,1854,2122,181,358,1460,1772,174,1828,414,929,2251,1791,2188,551,2075,1220,25,86,1393,170,1725,1922,490,340,1743,136,1333,84,708,246,1593,1187,767,2233,808,751,2274,2146,49,2206,1468,594,1386,589,827,1398,153,1539,1157,1619,1955,2117,2166,629,1729,465,943,171,1328,1520,1430,1790,84,970,1971,1303,1674,2069,1932,527,831,370,1884,1468,1727,1074,704,1987,292,144,1700,2268,1102,1274,924,2162,1201,267,2046,530,1718,596,1351,149,858,1012,1210,335,744,1184,1972,90,1065,1110,1225,1542,1988,767,1226,2023,1862,1314,2038,1224,1958,1233,721,2094,1152,1208,504,477,492,2113,74,1017,553,2246,1385,1519,1617,9,43,113,1300,1051,1743,1226,1372,1989,1772,1498,1678,1254,1716,1877,603,1871,657,1017,1161,309,693,83,38,368,953,70,841,1792,847,270,630,786,2085,53,1709,693,79,1371,990,232,1010,1844,818,970,2218,163,16,1380,797,549,718,2163,1474,537,122,558,435,1849,716,344,1449,822,233,2087,114,72,1646,627,1316,951,294,1125,201,652,193,2270,988,881,1816,2100,127,459,1798,2168,778,280,1398,2128,1914,1101,292,1417,1603,505,1619,1467,1811,523,1194,850,2060,1306,201,1405,545,1933,1943,1416,1969,173,423,334,1633,1206,1839,887,1005,1109,961,126,546,1438,2078,1404,1280,355,1898,655,190,1660,1168,157,2222,1253,612,524,1318,2142,475,1489,2022,289,1010,458,1504,116,1481,994,1183,837,1590,1813,2019,755,20,1640,1059,170,2264,1623,572,1308,135,698,1045,1798,1507,1225,1105,1629,1887,49,2084,1662,1689,1729,1550,1402,1050,75,1321,2128,1960,1591,832,1196,1319,743,186,185,1478,757,1523,1873,1442,299,1636,761,693,249,230,2058,729,941,1791,2188,877,169,2232,863,1455,184,572,1427,85,1150,557,2192,407,1714,1054,1063,307,1261,348,1835,1088,692,1643,551,2091,1135,1846,1872,845,831,1120,2172,637,466,367,1829,1589,2241,1338,1593,1565,1598,727,1090,821,545,1628,584,509,618,1105,1311,1140,574,2146,2098,888,1197,1687,514,494,588,1874,1166,2007,2240,1240,1823,142,2115,1249,1516,691,247,728,465,1255,76,333,964,1777,1505,1077,1611,1515,1755,2155,1516,235,1897,1890,772,1360,1590,2039,325,980,336,469,2243,2103,2136,1575,36,664,1817,1232,387,1304,146,1611,756,1368,1787,786,213,983,1511,907,2108,2032,1381,1413,988,1343,345,1373,173,362,1530,371,1482,568,1847,23,1750,1662,1520,131,37,1073,1028,1292,1309,708,1210,547,463,1658,974,1230,1430,2232,45,2010,439,926,860,2148,2140,1206,968,115,1434,1391,1976,1390,1830,703,1290,314,1765,1148,1583,1522,1259,1901,1599,598,1912,1925,415,868,1212,1268,1513,1343,2152,177,1966,60,1378,1247,1454,1141,1971,281,2261,2234,686,1388,1767,32,1227,551,1070,1292,376,1433,1663,1642,2137,1807,292,313,1649,1822,264,186,1462,525,1461,1756,5,1823,1804,1222,1052,903,1119,1581,1097,1455,1780,942,759,2109,717,1272,1308,483,1501,45,1560,1228,1690,874,255,192,1302,2271,1769,772,1883,149,1093,1804,841,1985,284,1263,336,1195,1058,1286,782,378,1186,166,938,2207,1060,1155,1607,857,966,855,155,780,129,1411,57,1170,1268,1,1869,1463,776,1752,944,1181,84,1277,752,1748,782,1235,1021,2082,2206,505,2024,1988,1145,1756,1516,1929,1440,1750,391,2034,1151,854,1163,1314,1415,1948,1122,973,1455,510,578,1137,1352,782,1792,1571,1066,1147,772,1252,2165,1634,133,2259,161,647,2185,767,1990,2105,736,1008,1026,410,2123,1787,1805,153,283,799,916,518,1878,1268,1194,557,2209,2094,1652,1092,2080,1143,1932,825,727,295,1377,678,889,1662,977,1556,713,1389,1192,1631,1826,142,15,970,1234,1798,1591,1500,1861,1987,1994,107,1863,1819,241,1736,1333,1506,936,250,814,1365,1288,1219,536,347,396,145,1338,269,2081,363,1408,695,907,152,1701,1683,1712,80,2188,875,1701,2213,1905,1957,314,157,1180,650,1949,2067,1770,1824,7,493,50,723,1981,1916,328,1875,1023,1327,260,1779,138,1446,1977,1411,1443,977,32,170,2010,1096,1517,371,470,1777,34,608,1349,1769,101,1376,96,1732,2022,75,653,1355,1642,1117,794,589,1083,1203,1364,1806,1670,1177,85,359,959,1590,381,2045,1536,2205,635,84,2131,1807,927,96,1719,829,1268,804,202,35,2179,62,2183,1054,1517,1173,2000,1992,496,2257,2240,1564,356,1967,279,983,781,1910,441,789,1475,686,1611,734,1910,1295,196,1411,2213,1241,1463,1846,1493,1955,1234,355,636,2136,1564,504,1099,1454,331,2009,1409,1686,1398,241,2000,119,611,1268,1497,1183,614,1771,357,1051,1288,1669,255,1513,742,1086,971,313,139,33,1604,1976,788,42,1490,978,590,1667,963,665,107,858,129,484,244,1583,1406,252,848,1602,222,1851,1068,437,1873,1632,246,1208,1467,1007,1461,2027,405,162,576,332,2247,2123,1757,1646,133,1317,1044,1418,681,1250,992,762,2111,601,47,1714,419,576,2155,1022,1430,2176,1331,1580,895,2143,2094,1775,1745,593,629,2171,392,834,740,1322,340,1439,126,1693,1978,2077,984,708,322,1930,591,328,1414,692,1249,1126,1483,1940,445,1749,143,1964,2067,469,118,2061,260,430,391,709,865,1582,2191,27,402,2032,1696,1823,807,964,582,858,263,1832,743,1286,1091,1479,1285,639,1000,2020,1993,1984,2172,830,446,1855,2048,1223,520,1429,2097,647,298,1958,1544,555,1011,1610,292,1398,668,438,927,695,1010,1209,195,1785,1753,425,1874,1869,147,2182,1149,1995,2111,1464,985,2143,3,1680,385,1397,401,231,2181,1324,1737,1473,1804,2149,2244,1723,1727,1872,795,1400,868,1194,2169,2132,1728,1623,1435,2218,1152,594,1194,1969,1242,2105,875,977,2094,1040,1246,1458,186,1071,802,235,384,1519,992,1461,435,1038,2125,1100,917,96,730,1344,63,1682,1645}

    2257

    1634

    Returns: 618418117

  60. {1070,316,1330,216,1026,1554,274,1327,578,899,913,890,1278,105,869,15,1078,1670,199,1139,1526,242,941,15,1217,581,1038,143,1518,1251,1463,599,848,1252,236,69,356,299,414,453,547,1109,615,511,1571,878,457,767,493,110,760,1143,1148,845,222,1123,331,383,954,899,1571,433,837,100,260,1306,96,934,780,1627,1111,353,693,1016,389,168,1582,1594,1095,1153,232,1057,1215,1590,1346,116,492,327,1120,1565,465,1484,179,179,345,857,151,948,378,696,340,292,147,337,274,1486,897,1664,275,1029,887,425,665,1089,652,1523,743,632,1619,896,380,1632,904,260,1454,1549,1054,1611,1339,382,691,744,112,592,159,1033,501,1353,969,1500,469,1049,226,1265,467,455,1483,1023,228,810,428,1309,1159,862,636,1352,1523,64,503,1119,324,446,203,1056,302,591,1576,872,903,3,791,1097,723,160,1113,510,384,1454,769,669,1095,957,1316,1528,1054,1160,1655,1161,1259,847,503,1523,1673,1604,1377,523,540,987,152,962,199,1591,1197,268,881,1428,125,1581,29,562,1552,945,990,2,1097,1352,1053,718,1395,229,575,1405,349,1528,1146,1391,1521,1214,7,596,211,250,528,143,650,10,1065,66,1025,292,331,460,753,1192,387,1406,1146,212,723,240,900,1436,1069,682,345,200,1514,1588,251,1432,315,567,900,665,231,184,387,1556,183,1180,825,922,623,661,354,743,1672,142,267,163,1223,644,1647,917,1045,720,595,361,675,828,46,1282,1124,321,816,513,1100,1095,887,15,414,842,1571,84,366,787,26,1581,476,1323,364,940,1563,1202,431,1401,616,1531,1558,364,975,1384,1211,1411,1023,85,1643,465,1527,1526,843,482,87,1217,294,447,306,1287,750,253,521,1556,436,1056,1503,152,1304,376,760,1217,1431,470,177,1391,258,113,180,779,1530,399,892,1018,262,385,502,1350,37,881,1651,134,1324,1434,891,239,1323,212,989,1273,45,93,559,1643,1392,895,274,599,1663,1653,1149,480,195,170,173,1127,827,232,1071,1173,1620,1668,496,1546,444,1399,509,315,1118,353,1600,1509,715,1000,647,1237,412,354,431,1117,515,986,437,1054,1321,823,839,575,392,318,1400,628,422,16,971,531,1586,1126,560,1104,1255,1504,152,878,589,307,937,1444,324,11,137,605,1098,771,335,988,931,1576,782,272,402,179,702,1515,55,1619,908,1403,979,324,636,1534,619,848,997,1468,159,1152,1111,764,832,786,131,823,1534,1283,1185,1151,1266,251,1239,676,701,1433,1000,1632,1119,478,719,1599,769,1378,458,950,518,1648,153,1285,804,594,1387,1577,485,84,1300,1658,645,571,256,89,1395,1448,1,409,1073,217,563,1396,577,860,20,1297,1458,78,198,849,1539,1587,1309,497,1671,1410,732,472,162,1601,763,782,154,1361,1245,628,1523,1447,615,945,90,118,414,1169,605,337,1425,400,49,1183,1608,1491,1402,1471,1015,1535,418,1587,1318,31,312,1179,996,609,870,1242,145,879,1051,1176,339,483,796,1193,72,1412,95,1485,30,720,138,1045,259,9,679,1457,274,504,883,1014,1453,638,664,41,195,1494,889,459,474,259,1425,1382,1150,1492,1091,1350,645,1099,959,498,407,700,1522,1489,1088,1162,1001,1169,1377,402,1599,135,892,1120,360,1220,195,1172,1058,62,1349,1534,703,1404,1062,1361,1303,898,1279,789,1260,1234,1609,1142,547,1474,536,388,1141,945,309,395,1498,94,977,544,1461,146,462,1072,229,1662,249,1139,1031,825,257,1460,70,645,463,505,99,572,107,353,1262,887,1632,379,1652,855,757,1033,176,38,620,1205,119,1604,1605,1,162,1010,79,1237,660,940,1631,172,946,1060,1579,1566,160,454,1046,11,731,1555,193,169,834,1629,1592,116,632,1639,463,1032,350,350,201,509,467,1252,551,63,135,283,81,272,1009,1019,596,217,259,1115,1030,1391,524,1393,541,218,158,792,468,296,1116,888,514,1540,366,1249,1398,188,640,37,1314,1477,1474,935,1288,165,641,1610,682,198,1027,1257,124,1645,1397,1472,1280,881,92,754,1190,902,385,1234,1052,1103,1334,84,920,1559,465,354,1026,1070,596,114,1065,301,932,1540,147,275,1141,844,171,23,1233,1085,955,50,601,489,774,816,1203,1426,469,831,322,217,1607,1130,149,749,878,15,1610,251,22,1008,1378,204,799,992,1326,878,20,1108,1316,1425,28,658,377,1153,1637,0,720,599,292,482,229,221,456,989,881,796,841,1385,1201,527,1175,101,897,900,410,275,1431,1623,68,1461,726,226,285,300,109,1190,1135,1644,285,1629,348,203,307,676,364,1317,56,508,452,788,817,673,392,568,56,177,1134,1602,769,789,327,283,32,1404,1064,290,529,427,2,1079,15,197,1325,41,733,992,603,1384,1317,970,268,1256,491,605,1639,1235,943,163,1207,1594,1429,621,68,632,497,128,286,171,324,924,755,720,949,307,321,275,1580,550,1582,257,61,935,109,882,1510,516,580,854,1559,1198,1111,1074,465,1431,1452,949,353,922,288,1264,688,753,113,1424,1536,1298,1072,1138,1002,734,1341,1584,1125,205,1132,1645,885,974,928,640,10,249,996,713,725,1357,1394,1512,436,1063,438,1429,550,185,669,1408,840,552,212,596,1328,344,852,653,1544,424,196,77,98,173,807,654,431,1054,1029,204,367,98,924,95,868,1277,162,1167,1277,192,1164,1035,1292,49,30,90,1150,1606,1590,1160,1464,1617,2,163,1454,1112,1420,533,1194,664,1563,1216,531,538,1542,1132,831,535,1632,1509,1443,469,89,1624,15,1553,1346,667,440,1322,1081,1158,139,876,1111,1355,580,351,257,692,630,1182,480,1361,1398,623,648,1640,564,1122,1554,1660,874,1032,880,691,1083,866,181,69,1211,1132,1011,1033,786,514,459,235,335,682,198,684,613,1329,1412,1419,790,473,892,498,1379,434,1354,500,690,548,1379,468,545,1339,752,348,157,395,1315,225,705,722,942,191,635,541,1043,1599,425,277,69,842,415,1570,1209,526,132,1170,1336,625,973,1537,953,1243,1446,777,324,377,69,14,970,323,153,1275,354,1458,1613,590,464,1145,1209,207,522,653,25,1340,629,1540,258,356,205,940,609,315,671,831,517,1559,1048,877,1049,1016,1367,1361,302,615,1182,154,554,1160,1518,1180,1185,1287,1633,490,935,541,1361,549,1567,1565,1544,1535,516,1297,1036,443,1599,1037,198,365,1399,886,428,37,96,768,735,391,1388,800,1419,1019,120,520,1147,672,450,1256,884,98,353,283,109,349,1525,881,210,823,1369,665,1524,784,157,769,1050,1444,1401,1075,30,96,199,1320,75,157,1599,1214,109,1636,707,941,1158,1427,1231,646,329,297,1462,759,1454,923,870,703,1140,1594,244,482,414,1281,110,760,105,1369,1476,1537,1563,87,694,821,206,528,305,772,1490,276,1020,270,1179,999,675,724,1346,666,881,1588,664,1609,1559,416,1002,163,202,470,1541,942,1126,88,716,756,1362,277,1180,1383,1435,807,836,1608,966,1267,1,520,1495,898,1374,1145,112,573,186,1631,628,251,369,1587,1579,1365,1443,1348,1656,1372,1516,1,167,236,1468,745,1669,1244,787,1145,1243,1639,406,773,742,341,1533,345,1538,983,820,1044,1304,1346,1009,73,1234,1324,1064,461,320,144,1352,561,366,523,1093,550,1056,1651,996,1519,286,34,339,618,1082,137,154,984,893,1263,483,1087,1037,0,1062,578,848,313,524,723,1666,819,665,1210,1312,1111,426,573,115,591,411,940,663,993,1110,247,52,12,176,1201,1641,1052,532,58,241,1238,1515,863,843,1224,934,802,1,649,949,71,53,278,1529,1550,1090,1090,575,1051,812,1051,106,1289,1092,1155,329,1469,1410,1101,1322,422,590,357,414,66,608,1576,1029,217,1258,712,235,547,1090,606,1337,615,474,1113,813,610,859,1369,255,386,544,739,907,1212,311,1220,21,1183,1360,1082,495,940,436,152,711,1211,956,1589,536,213,228,423,1421,859,1449,677,1127,715,163,600,867,609,1240,1140,1025,1003,1312,157,29,1361,398,1580,1267,1229,1226,1308,289,436,824,1514,880,127,261,557,588,49,1037,1439,1603,736,203,765,240,326,224,1136,1216,99,1645,353,898,94,739,1605,4,1576,304,420,202,1109,1033,947,903,1528,211,843,1270,738,44,154,643,1456,1358,770,28,1488,1133,69,615,499,1033,1068,1104,340,173,1158,89,213,1568,1103,1378,320,1401,108,909,103,332,403,865,217,1090,1666,363,211,1050,1333,1135,720,132,1225,1350,583,1500,348,50,1232,243,768,737,336,168,1523,1363,1251,1242,1410,692}

    {790,232,265,544,61,477,537,1524,542,710,182,1444,236,1599,1242,849,1096,984,1,304,1631,616,1568,722,1657,332,1037,894,495,105,915,1289,1286,187,494,575,1370,1625,1351,392,1523,1218,1158,1320,393,1042,465,194,1224,227,1630,664,31,705,510,43,631,620,1344,818,254,486,916,1153,131,1428,695,1166,130,0,762,743,299,741,1495,1025,1531,286,929,1397,104,881,605,901,1055,1387,238,405,351,867,1149,629,858,1417,1673,664,1120,847,1527,625,1313,789,372,1090,659,162,778,274,1328,439,65,1624,443,1135,1040,846,249,373,406,60,75,17,315,432,1147,636,109,516,1145,1010,1548,931,1628,1390,271,625,943,1649,683,560,277,598,421,1417,743,725,660,59,359,1171,1671,913,1381,1495,1654,1494,881,1289,6,1253,56,843,166,167,293,1561,555,199,309,728,1359,289,117,366,1094,1315,911,566,1131,129,1066,793,430,1039,1115,188,139,1026,1397,235,359,1597,584,958,1379,342,213,1279,1549,1096,1025,959,1096,653,748,497,790,726,218,433,1661,230,68,1320,879,1196,419,122,1296,1530,12,859,123,1527,1258,1316,252,1527,607,1437,994,551,1037,878,115,753,1244,1291,1486,1496,1504,1450,306,1217,645,682,163,69,898,1136,830,1621,831,1149,790,1218,1189,317,188,203,839,1638,1291,91,529,553,602,693,95,1441,396,347,127,1647,1268,965,340,563,1596,1540,219,205,1123,1013,1482,210,1012,386,287,455,715,345,319,67,1571,899,275,1219,622,805,90,1217,481,924,351,79,947,1062,688,1480,1599,525,1146,1273,1228,203,1308,941,1260,1451,730,74,1342,1390,1438,1211,1518,619,336,1058,910,831,164,285,1524,205,320,737,690,784,1171,121,1017,385,482,283,280,1356,1144,1368,291,1646,1373,1010,386,214,301,259,266,1,1294,225,1436,119,1320,1352,1560,804,1171,180,1350,1091,925,1109,723,897,233,1551,1508,1148,1153,925,1614,1549,1643,1119,218,756,1041,283,1343,514,665,1477,1093,1383,1514,208,160,162,939,1599,1065,1314,1519,1659,1559,368,792,1037,488,1528,994,112,831,97,442,683,394,1597,76,877,198,486,1006,1047,736,1581,658,248,1390,1098,841,550,797,930,593,1386,1673,1594,665,1054,1220,709,624,875,210,489,728,623,1022,208,1083,1076,1543,918,798,851,795,469,1298,154,1369,1165,65,914,217,1449,614,469,1575,1667,337,1202,514,263,508,1000,899,188,812,333,954,796,187,608,131,68,1426,614,831,1212,1445,767,776,1497,1628,390,881,789,575,1320,604,1040,1380,717,917,1044,1423,328,735,1168,1234,1132,484,652,1384,39,1486,279,1669,340,937,1430,440,337,665,484,1416,1493,1559,469,1336,526,951,1379,412,198,1279,282,761,834,565,1650,1271,1644,1137,601,246,1007,964,1505,662,19,607,1590,1012,441,1426,1254,466,1192,1311,95,1599,645,801,729,912,441,1031,188,172,1643,1466,1125,1593,779,944,412,909,1130,625,57,1136,1130,1132,340,575,1154,898,1172,890,689,1592,1256,574,1570,267,877,1054,461,411,143,45,354,193,1133,794,199,1125,312,985,1168,398,1190,525,28,1535,86,367,501,1631,849,831,769,1388,803,113,1425,655,771,1103,310,1535,1593,1501,976,992,165,862,1090,597,1580,1001,637,862,1184,353,1507,62,1004,19,1117,141,1531,1574,619,140,1506,831,304,542,1508,1261,1126,1616,78,481,220,1402,939,699,1463,942,215,680,326,220,1661,1473,727,864,1291,209,1466,1558,160,685,1447,1430,742,784,1573,974,1319,636,15,1195,1062,1586,981,936,119,8,1244,1247,132,102,1145,530,541,342,1209,199,1152,1599,105,1095,1572,1355,967,774,599,1376,1095,1593,448,1378,227,451,1245,873,471,668,992,735,39,1650,919,1469,956,1086,952,760,1024,1235,582,642,468,314,1019,1241,269,1566,359,838,109,306,1590,1514,951,1623,1275,435,793,1285,1568,1498,82,1178,1463,1377,861,595,111,1074,404,882,461,5,712,310,1313,681,325,295,11,406,275,366,128,1634,1563,650,774,1305,401,747,1481,195,175,1272,190,507,54,721,1224,1200,152,657,681,1248,1359,921,523,1181,156,554,665,995,831,281,1095,864,1234,1331,1053,211,210,1122,725,1502,629,1672,355,556,154,674,165,526,784,1632,1204,365,1500,741,1527,38,411,1458,639,161,251,358,519,1174,1209,1371,235,215,198,939,354,260,789,1495,1122,1301,1648,189,264,1346,185,693,1635,650,932,711,1310,960,1464,148,260,352,317,461,899,75,529,0,1222,155,1307,738,1595,311,678,417,209,1583,100,199,854,1027,1130,1512,1092,1158,1246,26,40,1029,1489,343,237,1606,469,930,397,970,218,1145,1217,646,1163,307,1459,917,1182,196,955,1422,961,1558,349,1546,964,697,645,766,1055,1665,345,371,99,1301,1527,370,10,353,587,1480,386,372,732,546,364,729,585,855,1177,475,970,1366,1413,1520,704,379,1034,963,1074,1274,1509,573,1470,1027,414,489,814,1554,53,747,354,1495,221,1065,1535,1234,790,975,356,1129,212,1521,77,298,558,826,233,645,1332,362,998,1499,1005,1033,1463,459,586,709,1154,173,1331,178,494,147,1651,94,1073,1460,1487,278,703,1063,210,1594,198,539,1636,780,109,71,17,790,956,651,1576,751,359,783,896,1202,1475,1098,1463,292,536,1524,509,1336,1030,815,374,223,653,811,992,910,626,825,42,234,489,1192,284,620,150,943,33,1028,557,700,1579,630,147,408,238,604,1404,1578,265,599,550,1106,534,292,822,892,813,930,767,449,614,1564,1029,701,1511,1193,1185,429,746,1149,1585,1494,578,793,856,701,550,37,1037,103,15,778,20,1224,329,1364,19,1300,188,1524,285,687,1511,1269,1284,107,1150,276,1032,1579,1064,1299,258,509,1615,1383,1430,412,1161,1483,1308,1293,1236,679,854,1343,413,1246,1206,1317,1174,288,626,1436,1164,147,1539,163,1623,13,853,437,1375,1137,1107,656,628,1335,600,1125,35,932,21,245,1020,1648,949,255,1009,885,397,44,192,1405,547,1290,882,150,1051,672,1378,1557,1502,1214,1217,337,1628,1114,1409,1502,1379,805,879,1567,890,939,1054,670,610,999,1483,249,227,200,905,212,276,1234,1212,1140,98,1127,297,1186,1467,1531,1223,186,543,737,47,972,906,775,970,385,945,315,686,736,1392,1273,665,553,901,1440,612,1121,1155,362,547,1246,214,938,1250,886,617,766,1149,1261,633,46,1381,937,1618,650,1543,816,740,321,851,698,1519,1139,806,1137,1630,850,274,303,350,24,1404,1569,136,15,739,831,749,664,1077,1108,48,105,1167,1131,199,570,1649,564,1311,267,1375,95,579,328,376,1368,1572,11,1422,527,1583,1390,1124,832,375,1579,812,999,823,592,1161,843,767,906,1638,688,349,1199,436,116,1319,152,99,1460,482,1299,190,1025,574,1378,1256,708,1642,209,100,1666,338,427,216,1061,634,195,334,896,1201,734,487,514,1345,816,273,640,279,1208,273,914,981,809,66,1151,330,41,699,174,1367,1367,288,946,157,1126,814,381,1072,1626,886,1021,642,444,508,83,1128,1176,823,664,116,1011,962,1028,509,954,210,1480,1,926,335,116,1076,1562,832,916,454,718,1401,706,627,1187,353,758,1139,1636,1149,569,1397,1418,729,1158,1072,867,371,855,842,1188,960,1153,47,469,168,1317,1422,1415,1308,199,90,709,1666,1093,1347,433,1129,1497,1244,714,512,708,523,1667,709,425,927,174,163,1490,1592,847,962,736,588,1092,215,1460,1572,776,517,1407,30,1230,1302,106,1067,607,1090,99,364,1338,670,1414,398,943,940,479,1157,18,1330,83,210,775,1442,1191,594,580,1213,1598,804,1429,1102,848,533,225,308,411,424,1235,829,1309,508,506,1438,1513,615,126,1367,263,871,237,260,363,267,346,51,805,667,1020,486,576,1153,901,1588,343,727,1239,835,36,870,829,814,1105,507,459,1527,394,365,753,645,1512,356,219,885,786,1276,982,1378,445,890,1555,1267,1137,1059,1015,1194,674,1080,596,133,817,933,1028,1651,1271,1361,317,263,212,1405,1090,245,1559,911,890,1590,1480,1227,105,1545,1455,650,517,1280,80,417,508,1479,427,1622,1367,43,1532,88,218,991,781,1547,370,72,709,451,583,1381,309,557,21,1136,831,1127,519,808,1001,1510,1084,5,448,1389,978,1156,652,2,1265,785,740,83,490,265,1646,1005,833,1465,353,1518,1061,1612,1478,191,23,922,27,468,1295,40,1587,1645,611,9,980,460,1352,1374,1221,1517,968}

    565

    1466

    Returns: 50054087

  61. {707,389,233,649,154,635,563,292,201,54,683,578,351,324,416,800,722,152,151,561,749,736,545,379,247,686,580,222,713,117,534,312,124,441,548,746,447,2,760,277,386,294,688,225,777,366,662,324,281,749,709,655,6,745,282,625,180,645,307,296,611,531,244,186,124,720,747,689,663,293,257,432,723,399,536,132,108,622,756,699,706,16,278,193,195,674,63,573,175,59,12,639,366,767,434,138,259,664,277,222,239,487,118,566,647,761,173,490,589,86,161,345,596,433,424,432,254,767,788,364,723,348,51,761,489,56,311,60,264,692,568,355,789,311,365,582,268,653,771,773,143,678,447,573,279,228,52,683,188,705,665,327,594,793,444,332,602,32,733,654,704,453,433,14,51,530,339,387,194,179,287,708,37,48,285,178,342,764,474,135,398,538,313,62,516,601,565,26,573,688,74,248,36,283,37,404,426,441,660,58,611,680,474,411,690,512,381,531,731,187,8,14,399,424,674,296,751,643,277,715,230,540,673,526,606,785,700,679,490,276,150,316,564,575,302,658,282,54,139,88,49,184,291,43,50,124,534,412,205,91,373,657,554,196,657,726,69,166,603,222,379,235,748,59,496,487,810,631,87,793,540,374,459,5,274,526,478,209,639,425,528,300,247,681,84,353,783,222,198,615,532,407,647,164,459,403,320,687,598,429,178,535,300,406,114,306,156,230,800,380,398,101,531,369,17,168,588,560,321,421,109,438,117,690,35,506,78,289,334,714,107,494,508,440,604,644,543,375,147,435,191,152,499,761,130,720,436,62,304,417,477,383,87,598,663,521,518,224,677,683,703,6,798,77,765,656,675,290,702,653,50,370,416,310,623,519,481,779,138,20,30,633,77,31,774,423,245,363,5,225,29,4,689,717,142,505,367,484,750,131,582,321,805,262,508,259,474,403,124,545,433,427,730,210,551,318,344,453,471,71,69,627,790,212,121,646,587,583,208,511,222,32,604,60,64,223,810,635,213,586,645,143,770,632,635,560,453,143,427,737,132,148,484,83,92,486,217,607,574,761,84,349,66,459,366,766,650,103,53,463,711,794,271,370,124,630,97,117,458,516,67,516,716,484,624,268,460,213,302,408,178,291,243,667,148,641,172,618,333,433,444,414,238,528,531,374,527,275,386,89,98,203,258,744,525,612,354,534,207,707,495,361,326,347,141,790,759,524,233,393,238,133,251,358,151,103,296,577,217,664,628,718,711,213,13,613,447,203,329,776,529,58,129,499,752,567,180,409,530,372,190,433,361,176,507,344,771,25,213,466,93,207,518,241,42,667,781,222,275,285,701,10,490,724,116,330,689,411,599,290,488,356,515,504,36,133,368,290,436,595,514,562,553,214,584,490,204,43,171,208,120,12,418,711,601,626,645,367,4,457,537,36,729,234,110,461,699,691,669,461,764,800,172,739,454,202,463,447,402,217,505,717,446,439,720,626,238,88,492,463,2,262,279,432,490,385,52,595,790,296,389,500,636,19,443,531,106,105,100,456,451,220,261,315,311,337,117,637,512,651,703,24,351,488,661,672,269,166,716,197,270,776,569,712,589,698,539,401,44,237,101,444,37,107,136,552,228,463,739,587,253,280,242,442,617,269,754,275,521,221,257,750,699,619,563,112,657,667,492,145,223,414,165,298,33,483,296,85,723,190,578,46,430,743,403,695,595,495,139,582,812,47,786,592,176,696,449,633,220,636,742,652,70,60,8,325,317,31,721,690,68,130,309,645,498,569,389,697,800,103,661,247,540,77,485,772,414,69,684,388,755,45,805,411,641,377,613,661,151,312,190,303,720,778,492,2,430,507,544,459,236,143,428,572}

    {145,636,546,94,505,736,296,755,470,484,719,311,350,656,653,382,787,441,117,615,482,388,22,209,769,202,62,90,698,177,96,300,793,322,414,184,21,79,600,221,43,332,148,607,256,246,692,137,569,304,800,455,181,122,517,512,571,209,117,654,485,138,68,471,722,30,442,479,184,721,367,23,585,295,458,160,328,340,213,464,195,143,735,478,717,373,414,572,389,151,78,727,674,279,295,361,415,263,676,284,573,609,182,567,143,332,60,470,798,699,638,203,610,480,267,740,522,741,462,240,232,591,507,784,412,443,704,155,505,215,808,356,450,493,579,548,217,370,690,365,180,704,670,804,18,734,250,296,628,782,682,447,598,695,740,437,740,795,275,346,638,494,588,503,68,164,723,548,98,203,219,410,243,751,521,814,222,261,431,175,208,670,798,676,763,112,266,145,531,125,728,249,673,485,357,579,474,809,761,472,331,386,314,77,157,462,512,507,705,295,273,167,699,732,710,723,421,662,596,508,671,730,497,143,698,612,662,13,238,180,647,600,154,189,21,397,361,260,218,89,89,159,360,106,134,144,611,389,657,279,519,286,547,299,467,267,203,422,351,579,258,563,209,118,483,405,808,463,106,57,351,191,441,605,140,556,106,110,478,64,694,76,386,425,424,490,430,255,446,336,764,381,328,359,668,38,624,720,145,308,51,810,299,781,178,762,254,268,394,483,211,502,291,720,793,497,738,238,216,806,446,791,277,69,654,144,27,603,301,512,458,781,226,324,69,526,59,768,649,357,270,180,799,607,252,208,512,458,484,445,797,276,249,172,685,554,501,679,421,385,18,272,614,171,656,442,800,753,735,533,21,777,811,243,166,452,690,272,636,520,395,751,709,540,112,51,710,666,652,119,141,115,634,581,320,484,444,800,806,267,656,82,807,813,138,559,21,640,305,695,217,459,231,39,776,685,191,550,557,81,487,709,0,208,624,684,156,680,679,607,645,276,162,419,52,191,604,549,288,233,138,473,258,218,796,513,541,334,621,42,548,192,376,548,33,711,567,570,737,400,370,70,578,111,153,22,290,199,105,611,343,220,359,600,507,776,581,757,257,7,15,615,61,468,214,465,109,20,259,394,471,371,20,665,531,203,297,589,237,126,335,490,558,53,80,171,102,649,438,420,36,662,183,51,474,707,373,397,629,184,34,657,723,463,295,352,363,741,814,198,455,675,105,440,39,412,725,290,666,792,321,652,636,645,555,810,370,261,780,768,573,341,480,614,403,185,664,662,534,531,590,170,761,463,388,364,620,370,31,54,130,268,756,462,676,585,367,174,700,340,411,148,642,661,701,390,792,410,802,519,751,124,97,448,145,75,431,176,140,95,417,666,648,626,86,451,656,782,576,20,387,466,238,293,458,151,709,450,671,67,30,62,337,475,229,319,272,484,124,692,237,472,476,636,223,369,798,414,300,591,561,446,234,398,127,5,123,28,390,672,608,216,323,146,169,429,599,593,107,413,528,30,581,790,81,527,280,392,71,138,433,20,113,231,40,362,762,567,548,741,213,533,391,158,581,266,73,217,412,436,65,311,425,645,786,201,8,142,31,128,41,758,14,797,762,394,124,709,659,723,261,206,138,443,454,481,300,378,800,775,122,104,582,499,329,728,597,702,575,55,801,311,578,394,492,690,200,36,463,510,11,109,509,790,470,542,687,106,667,693,422,499,491,60,36,538,54,447,88,311,774,99,84,257,382,427,440,492,504,417,616,291,25,1,233,563,106,758,396,149,227,469,265,180,553,27,337,77,285,9,807,235,302,523,216,441,72,41,287,21,109,63,803,343,338,463,754,15,526,163,217,3,497,384}

    190

    227

    Returns: 358230747

  62. {161,239,268,270,77,195,15,245,274,55,108,60,203,168,103,30,197,280,217,198,250,32,31,132,66,100,246,261,176,51,197,10,204,95,81,36,248,1,9,137,199,273,193,136,281,39,180,290,259,243,52,63,91,127,243,108,80,91,157,40,7,187,10,54,16,124,74,90,64,92,234,279,78,236,112,185,110,108,126,292,94,79,220,251,194,75,180,77,293,240,141,14,14,197,84,33,175,296,124,140,269,249,186,163,191,102,44,112,267,20,128,166,11,114,236,177,216,13,245,87,70,77,29,148,214,43,281,209,276,74,182,106,110,300,70,209,105,261,13,302,199,17,257,286,46,55,92,154,142,17,242,162,276,91,61,132,155,243,61,80,146,73,0,281,210,190,173,124,303,2,40,45,246,66,27,5,224,221,120,246,181,284,274,42,197,151,284,75,74,243,95,174,22,246,163,34,212,304,59,250,164,72,206,197,14,258,120,138,72,210,3,28,107,67,104,281,238,208,147,166,283,86,148,237,25,65,76,135,90,225,260,259,140,18,130,112,192,268,144,51,165,41,123,231,82,95,242,107,52,108,77,160,244,253,251,211,51,187,1,306,261,91,2,240,74,79,244,216,153,147,202,128,255,167,250,176,295,50,87,269,96,275,199,62,305,25,12,271,135,31,83,124,29,98,264,222,156,140,273,171,298,97,173,247,299,293}

    {74,115,110,110,37,83,250,41,294,24,119,3,282,1,243,208,47,124,160,241,18,71,268,13,71,208,154,72,222,229,227,172,212,142,239,80,120,101,1,103,186,232,58,214,184,104,241,155,12,252,48,124,25,81,22,188,211,138,210,196,158,148,303,122,141,171,152,288,193,248,246,161,138,302,219,30,131,193,222,72,235,139,280,228,129,133,150,87,140,213,1,78,53,280,248,145,11,287,37,4,108,183,89,52,197,79,231,243,95,246,55,199,37,119,55,93,201,38,83,49,296,99,202,77,70,267,37,0,88,87,197,248,179,275,169,121,9,265,91,113,34,205,158,1,53,124,301,170,23,99,256,253,296,305,128,259,103,54,8,163,107,72,208,147,203,43,21,285,81,72,267,171,80,164,33,180,13,31,235,5,167,261,2,25,283,305,118,246,226,109,238,186,297,289,59,56,164,267,238,143,19,189,11,245,215,137,65,10,79,17,41,233,85,227,211,178,69,218,145,125,6,141,163,157,174,291,80,25,214,238,128,298,158,249,272,197,302,269,82,266,163,144,128,103,68,116,254,53,212,77,214,164,91,57,51,117,209,25,138,253,111,261,28,135,242,263,57,163,162,232,303,177,91,212,77,2,246,72,159,277,120,252,134,18,223,194,200,0,96,26,262,230,278,17,1,207,163,77,35,247,149,201,90,130,13,208}

    184

    227

    Returns: 239888621

  63. {184,1414,1141,782,987,789,1160,422,259,23,1403,100,1055,1499,997,515,163,1525,257,1400,87,1385,1579,1472,255,136,1564,930,577,579,1187,1423,131,375,789,1614,1144,580,114,567,29,833,190,964,527,1120,448,516,403,1399,270,26,315,1143,714,930,1063,1416,387,1440,315,1495,716,344,1246,671,1516,794,1340,49,598,1602,629,804,1424,842,1110,1235,450,279,177,1113,769,926,1530,196,721,1050,674,7,64,21,846,1082,1071,583,1331,1002,498,747,658,907,631,426,1272,1126,1506,65,1105,1069,534,176,1311,1148,308,825,768,878,296,589,1434,1154,1006,61,592,1282,1334,1511,24,714,1467,28,1024,1403,479,1447,1221,545,1116,1580,1072,199,604,950,391,47,128,1570,85,467,1233,1090,1459,1368,1456,403,1602,258,1339,1359,1233,1035,918,1261,1575,348,89,371,506,313,1362,287,625,596,806,150,1279,1294,970,525,148,1441,1347,895,1341,631,1476,866,238,660,606,477,647,884,1461,1572,975,6,587,595,1126,816,223,145,210,849,484,977,1138,100,718,190,733,1232,1355,51,477,3,505,208,1564,1314,1066,1221,770,239,299,1361,373,1402,166,1613,1262,179,1354,221,809,211,474,40,872,308,974,344,608,939,1380,467,1097,1352,562,1175,1034,717,1087,1618,497,1063,1442,258,1103,703,381,1326,1109,1173,264,555,789,1131,930,985,642,92,1465,898,1210,599,247,625,1136,380,386,1589,1455,666,54,15,972,1491,72,209,59,938,1493,1293,48,1307,1564,1034,1594,1357,1113,1547,216,158,1428,45,1582,1412,254,189,905,193,1475,1414,746,1610,84,1295,119,1009,777,530,750,1458,920,331,401,788,1392,425,36,534,526,960,922,462,753,205,776,103,265,366,1128,591,1419,1563,1224,193,603,936,1119,544,147,272,277,921,254,1130,1297,966,1044,384,353,1451,1045,458,430,1469,292,452,404,232,1018,1508,678,1233,230,1542,346,1421,415,349,740,1148,1072,107,64,334,1465,1398,237,1582,554,1442,928,1126,1347,553,1322,1602,365,1054,108,1431,987,178,1065,1153,1237,1487,436,1286,0,45,1376,219,513,628,832,1589,732,1067,1294,1579,306,236,1212,477,172,1488,1534,767,1138,1335,1253,934,1550,1359,917,1287,1436,1530,1354,967,1003,267,1317,1603,1145,1317,670,120,1122,1602,885,621,1212,792,679,26,468,1484,680,569,302,261,1194,190,410,414,747,97,645,998,449,639,345,720,144,392,833,1462,880,949,243,943,1346,1340,1614,791,888,837,1080,365,502,806,1316,1416,392,864,655,1266,689,307,1111,708,859,1378,1279,1440,1208,185,62,269,1013,983,625,115,1057,143,84,742,1174,148,1104,1521,306,771,1573,504,47,1003,216,1410,816,471,936,278,1069,1142,583,100,1034,1428,667,153,894,563,433,559,1368,468,32,1611,325,356,881,1296,1301,676,705,1381,457,636,948,676,1447,233,1028,1535,779,305,237,1009,1029,1240,1599,177,691,1081,357,1453,1416,1564,1604,379,1515,695,25,750,235,1172,1223,1526,157,1137,86,812,165,31,95,1397,1476,1401,1491,1566,520,1067,595,783,597,543,1208,1268,202,1044,331,148,965,321,797,775,700,31,1596,985,1078,489,1408,327,270,465,891,124,1522,1062,1491,538,707,711,736,809,696,1248,593,1281,629,995,53,155,421,124,1319,1043,1097,1299,1023,344,351,1026,1023,360,205,280,1048,517,260,657,782,1031,629,77,1500,89,402,457,871,1216,1351,1609,1227,980,1579,374,1208,347,249,583,1578,1226,578,367,91,1064,602,1454,800,515,184,495,1228,876,540,359,1479,1601,1096,1281,474,886,1349,1062,1201,557,625,1485,1215,1364,1591,1197,1544,1106,1191,756,1521,591,199,103,531,1486,998,311,318,172,559,419,901,841,190,433,1513,322,986,33,224,878,919,1555,575,822,1098,390,114,1302,565,803,420,363,1287,581,376,664,974,546,463,636,1109,452,330,694,1482,262,1266,1496,641,820,188,345,454,975,1485,1242,239,1537,819,249,572,1060,1041,199,347,373,1095,82,991,466,365,1207,676,938,170,1024,992,958,3,39,177,296,1089,559,1427,816,358,1379,499,1584,267,599,1547,1083,1551,1585,1350,220,1152,1163,821,458,1155,1329,650,1478,802,1271,814,866,1069,560,726,371,384,1556,413,186,1021,55,466,1027,1417,1411,1001,1256,215,332,378,680,649,833,897,1073,422,536,146,391,95,1608,913,684,153,1040,1355,1206,610,1126,678,1324,279,1398,446,888,239,564,69,623,829,475,1190,29,1568,1571,1463,1450,1050,1566,740,275,96,740,1154,1173,1266,1029,228,451,1407,777,1062,1283,492,1181,1490,1091,190,949,1416,1284,1106,215,27,868,556,808,1522,518,465,1392,1462,877,1404,806,238,521,1108,1355,21,1503,1225,673,414,1295,1215,1528,257,1471,898,164,456,61,1579,31,536,1576,481,936,1395,1038,998,739,1027,1621,919,759,851,1176,958,656,1447,743,205,616,1204,1561,816,1215,491,1363,1494,792,161,574,228,957,79,674,411,418,1565,899,1207,407,831,788,76,909,192,1536,1371,154,612,1576,1255,1586,564,242,133,1323,754,480,1393,145,1451,1075,1442,1546,355,1001,76,1581,1172,1219,659,227,644,17,1134,1132,67,834,148,730,100,205,796,905,654,1587,138,1412,56,188,1449,1236,117,475,458,175,853,198,660,745,726,797,468,771,614,1126,1546,394,1064,698,698,70,195,1253,1347,183,809,708,1487,1285,345,1351,1315,1456,903,274,590,1574,860,720,1278,1617,344,408,292,1035,1060,64,329,1022,737,1508,55,406,315,1562,340,72,1242,560,1023,110,1519,707,677,1231,1602,260,184,297,887,162,962,1092,29,599,799,785,52,1394,1461,1340,396,65,248,643,567,272,546,968,1522,827,750,1382,1083,1191,349,1238,315,664,46,691,1219,730,690,718,1,608,829,1086,733,1219,1203,1193,129,126,867,657,1617,516,987,1019,798,240,951,190,1216,1151,1452,373,111,1498,205,696,1052,1433,624,1147,1157,260,520,1243,764,486,841,774,645,297,1614,882,1233,826,843,362,1171,184,59,1396,1612,282,28,944,1574,386,229,1143,1473,8,72,307,1250,1000,656,1537,933,1399,152,1352,1097,1272,384,266,609,818,1606,561,1099,445,1487,561,1341,793,444,26,741,389,1024,1532,228,1117,327,3,713,1067,256,620,1168,892,1244,815,1466,1070,601,1403,1569,778,83,247,1057,109,1119,678,529,1311,23,1078,472,832,867,1577,297,689,696,1173,1595,303,28,1091,190,1360,649,924,826,417,1121,813,570,230,969,345,139,278,1484,1106,368,1014,478,781,818,1403,1447,1030,1283,75,1509,1182,14,1129,542,1275,564,990,1245,80,1442,275,312,540,1024,1445,296,1468,342,969,210,595,101,789,908,1557,620,153,625,352,619,1316,1202,33,1370,1049,589,687,1526,933,67,157,976,862,1543,991,107,923,830,768,1351,467,540,616,466,700,1603,1038,453,711,305,296,520,765,494,205,589,768,861,716,595,1159,1466,578,453,9,249,599,1115,966,981,522,1050,940,1233,702,497,662,1410,861,59,472,424,298,1410,620,55,1358,723,148,935,1076,1447,880,189,219,1125,1495,1342,148,1291,179,1221,1588,190,582,109,1541,338,1400,1259,814,927,428,1459,344,1042,873,911,276,809,712,260,1484,757,1333,777,81,265,228,174,2,952,587,776,725,1444,71,930,1189,644,512,1091,874,1112,1126,432,1517,849,443,912,453,331,1296,239,0,1372,669,399,1573,256,672,407,1478,948,489,406,810,1242,859,1162,1308,1303,1015,1201,1194,588,1365,1053,281,459,524,437,1149,465,1272,1326,1620,441,1552,868,706,1332,616,540,889,238,367,517,1061,557,1292,1172,1545,733,1253,323,838,788,90,538,1612,632,708,1065,1320,1282,1442,982,1307,960,466,1400,1189,857,836,1318,763,1478,249,1251,1399,1509,430,364,1194,1202,296,1281,1266,541,1386,315,777,474,278,136,919,65,1344,63,1562,185,1439,883,1112,1245,1125,773,295,794,734,1129,1378,711,166,848,1085,374,1345,792,129,1215,1071,1258,1316,1410,1014,18,414,680,1447,884,1518,47,473,649,925,1101,979,676,377,898,1102,1106,1432,650,253,637,893,1221,768,568,489,1440}

    {1309,599,324,1134,367,401,1178,407,1452,324,1472,1185,882,998,141,705,1299,1437,462,1147,1107,415,442,470,205,19,1471,1552,51,1039,470,825,109,54,750,1126,625,707,564,1384,88,1008,495,1425,205,27,1220,717,915,490,296,256,28,637,110,1421,225,653,1382,1166,1366,595,1505,49,917,239,1373,1548,711,1589,1160,274,1129,297,1104,1310,772,850,1461,193,1504,1035,490,1367,1038,1501,769,385,1040,1080,1501,611,575,12,651,1426,1326,169,628,1208,450,1262,151,981,751,523,1051,910,300,1243,1169,978,1192,43,1145,407,71,74,1576,1025,271,297,231,1412,373,922,1564,218,407,1552,1141,1535,450,1172,473,700,632,1091,1589,953,142,1209,1099,930,1518,733,946,794,92,1195,946,841,222,217,609,57,1484,926,1519,957,1047,500,653,776,996,714,826,401,759,1542,881,168,1522,1295,1075,435,1416,184,1435,758,1471,424,835,1478,1388,1172,173,213,1485,199,663,422,738,318,1114,555,212,1318,795,984,95,749,1134,252,95,726,1460,339,546,307,1126,930,204,223,374,553,1590,1498,314,1211,1186,1588,1402,1094,64,126,1049,62,979,404,1558,1507,6,981,459,365,257,1285,316,637,555,561,540,1037,1007,1010,1414,661,461,108,832,1114,1023,314,293,371,1194,165,490,554,681,126,562,99,884,1362,1388,1270,532,731,1484,688,247,1517,823,1062,287,440,283,628,1291,1209,593,766,648,605,1535,800,128,56,308,438,552,365,321,199,407,1169,497,1371,1080,401,1559,368,1340,416,632,1241,714,904,633,290,515,1440,858,719,1307,400,303,610,1062,1398,1531,1357,626,644,803,397,1422,683,1462,1328,1169,1156,362,1327,1507,1198,602,754,341,1132,159,1451,1005,627,746,189,734,516,1464,1448,116,621,404,575,632,890,610,1586,1364,477,760,1324,1307,1560,233,134,1121,373,1567,145,1067,1494,374,1345,784,449,1598,144,328,182,1520,1247,309,1575,294,1203,595,710,427,865,1086,875,474,547,1129,455,1177,127,1341,1260,975,1190,722,124,1077,1537,1164,76,25,1480,287,1255,929,485,1208,1213,1093,936,323,83,1420,60,1162,205,1189,1299,1485,1044,1434,1372,1536,537,1191,638,1182,1485,959,1064,135,842,1313,1375,1383,1603,733,62,473,716,244,439,230,334,582,715,370,1301,1588,697,1293,1430,1021,1312,906,450,449,1418,468,65,516,1083,299,269,464,494,1406,1024,988,128,1457,1588,993,94,1336,1553,897,384,1433,826,475,764,1248,1290,1012,985,406,1391,528,901,617,900,341,733,398,1340,1156,1416,733,484,132,1614,1412,503,632,1388,1010,474,1440,133,207,1359,1298,1575,848,122,828,315,670,1088,320,917,1616,291,1397,571,519,336,1592,238,224,305,214,667,940,50,970,685,54,1600,1405,1479,820,1348,64,148,8,1219,1356,1082,640,1028,1188,1287,405,284,72,1570,833,388,337,563,84,704,449,728,326,732,816,124,1523,874,1497,657,436,108,432,625,1297,427,1321,1173,722,1436,463,300,914,1549,1162,1512,333,130,890,1113,1038,1481,675,389,1262,902,117,1517,601,918,693,699,459,1284,488,663,1513,626,755,479,250,1411,367,847,1169,285,187,559,548,1305,309,443,792,382,628,947,177,349,1283,1489,249,1017,1207,1619,1540,765,296,1021,751,479,419,49,1348,882,595,171,1531,523,852,214,828,184,372,839,1598,425,184,711,1265,510,343,323,861,1248,627,1312,509,937,1272,350,869,961,55,172,429,855,54,465,724,202,45,1409,188,1345,278,1211,38,942,1464,840,1129,189,98,897,321,1325,701,415,925,469,1296,1073,1426,205,551,1056,484,636,194,1390,1516,1215,915,1177,89,1529,932,1289,1006,1533,393,184,858,465,668,1525,66,483,1273,260,509,1474,1583,173,289,395,288,1337,238,1205,1158,1525,796,974,863,1066,1327,852,148,727,165,430,1532,475,304,140,1126,481,1433,1024,1413,844,1306,750,296,599,128,383,823,952,1206,653,1239,46,809,69,482,1004,1477,1170,181,714,1449,42,1208,630,1500,1539,1344,1212,172,559,1394,1464,1425,1298,523,1252,595,1279,932,943,1552,1499,68,699,206,73,554,1392,606,1516,660,750,1179,796,445,960,1208,1519,622,312,859,478,1148,988,499,879,1073,1267,1177,852,525,273,1443,423,1382,1382,1254,812,1527,1017,583,261,446,390,777,801,346,158,1023,942,344,1241,1030,1587,357,796,1532,1492,183,93,772,553,1146,956,709,1239,1126,4,1355,1563,1242,761,369,137,601,422,946,169,133,811,1118,1389,130,1190,361,335,1241,1396,954,1324,1121,1221,286,1167,1257,92,1248,607,882,750,1619,1020,207,648,247,807,1332,1138,830,1393,1076,589,241,182,568,460,815,689,367,175,628,1241,467,1593,1011,1200,293,1579,1003,824,1614,1361,59,41,689,787,1123,723,473,37,1363,201,916,311,861,608,1374,1355,1231,373,1410,1179,654,707,113,707,1288,932,1269,1564,305,290,108,544,1580,1117,1190,400,235,989,1434,422,319,1479,511,424,300,600,1221,517,1243,1212,850,1479,1196,854,1443,632,1009,1522,126,229,1556,803,722,945,1355,1114,492,493,1345,1245,931,1424,780,384,1455,1162,1135,1377,537,368,1133,299,30,484,150,885,293,752,1533,1030,150,503,1081,1180,1148,841,233,87,310,748,1575,1470,1542,30,535,1368,638,1121,1611,1219,1039,255,191,620,1042,526,544,625,1128,1343,158,293,203,960,1246,247,1264,1538,255,1217,372,905,1183,1074,391,182,860,191,474,1330,1259,496,1163,1134,733,1554,1282,999,678,641,513,476,11,301,540,106,112,700,1468,263,1184,1347,708,84,434,1296,1056,299,1185,65,693,816,859,78,215,1487,641,555,1471,406,786,1579,156,317,420,1055,517,1365,1150,666,1100,726,187,1076,1263,841,1530,153,1611,1093,140,1010,1139,123,1420,26,1095,979,318,338,412,1415,317,856,1032,804,215,1546,1455,707,1222,1132,277,308,703,497,452,1331,1580,796,591,1071,722,1079,430,1140,1024,1143,1304,587,1238,622,109,725,558,1485,1001,1280,83,202,1589,713,1016,65,533,941,514,1483,187,69,1405,1442,1161,22,267,685,447,160,1127,197,917,1524,1124,16,1449,470,1118,821,169,118,1470,944,1290,1552,786,1138,268,1214,710,1387,477,1343,465,707,105,594,1248,733,963,705,829,463,667,1199,51,357,1298,1619,928,65,1607,1484,44,730,174,1099,844,676,1000,104,144,1084,628,1478,1196,1204,618,34,1231,180,1401,1060,386,549,190,597,805,551,1137,588,1615,1340,376,635,269,77,998,1485,121,800,1241,1414,682,1511,1547,1033,230,784,1444,937,946,978,520,1388,566,100,1371,582,626,538,1444,487,1593,580,790,184,845,409,1510,750,1126,684,399,434,546,603,1580,1415,42,496,1072,1412,951,13,965,527,415,792,1265,1274,641,86,1499,25,1281,196,507,1564,1359,1231,305,471,700,590,676,526,334,1236,864,1013,1289,943,125,415,95,729,188,1353,1221,64,169,1603,177,1148,1041,1068,1460,1565,444,257,613,576,747,1393,234,236,1337,1287,58,1502,1555,954,501,1438,251,601,1566,845,324,657,5,1557,918,984,1279,652,462,1103,390,713,776,1276,293,1107,1338,1375,977,980,646,1046,4,65,1480,829,932,449,1216,841,1594,6,1051,821,1009,1591,1231,490,731,584,1059,522,1514,1195,445,265,973,209,355,245,576,420,955,870,431,1208,1386,321,539,157,1243,1297,516,190,529,769,653,166,113,1008,1597,1247,683,1230,1562,465,1371,672,149,1165,17,1124,602,495,1249,573,434,994,1313,83,1218,592,325,1393,876,1564,508,570,804,1355,1248,601,126,762,585,465,1360,4,1478,398,647,1468,354,369,1485,665,1178,517,1220,1277,844,180,166,1614,331,1161,1605,200,1399,1173,1234,289,194,896,1420,882,1429,669,959,1485,1129,102,434,1564,957,315,1351,744,1298,316,575,1376,141,1411,586,1229,1197,1264,750,856,484,246,226,1064,898,255,634,692,716,398,1369,1484,615,20,1256,312,829,610,10,713,550,277,1410,747,630,686,1190,167,1208,1547,1546,1036,35,817,1300,735,1388,308,1446,1058,315,1040,733,625,570,1512,1101,1355,971,143,1546,174,449,1277,433}

    615

    555

    Returns: 315566925

  64. {2371,5,111,837,1100,2277,1971,2246,2436,2135,1382,2336,2150,2106,1608,1375,1739,1263,1685,579,1379,1526,2056,1478,1625,1138,965,13,2444,1679,1649,780,242,1233,1379,1366,1826,306,310,1258,2309,1494,1064,570,859,349,31,28,581,775,1473,2220,2406,874,2157,1219,1682,167,1839,936,1515,600,1751,2226,1310,494,2395,769,1402,1924,2319,296,1252,1383,281,504,853,1775,867,1008,1997,980,2058,1412,1339,2380,2138,1675,1454,594,700,1318,1246,339,345,1989,590,1098,28,946,1094,530,75,1319,1190,598,699,1774,560,1832,1351,2009,168,2058,2369,1517,439,932,135,348,2022,1216,1660,195,1328,237,2325,2359,2247,1467,733,128,1151,2370,399,392,1590,651,2143,848,2216,1922,882,533,550,1452,70,1310,2377,2448,1768,2109,1553,1462,2047,221,409,1921,607,1031,645,1987,738,2382,1114,125,1202,813,1632,2087,1335,1817,1459,230,1860,1688,1942,2294,2432,1531,1959,266,1198,1751,714,2238,829,2344,2303,1957,1926,696,67,275,41,2097,1336,2353,2025,2018,1098,680,1330,843,1619,1498,151,2316,657,1175,1306,772,792,1961,1468,1055,1036,258,1831,1346,385,2121,2245,209,1846,155,1599,1015,986,1430,925,1048,2177,2010,819,1060,1476,1114,1012,87,615,2085,511,470,1209,126,240,915,1696,701,2365,2287,1102,1174,899,1569,1929,1558,1550,1935,886,707,1970,1998,1848,1299,1259,2335,355,1585,349,958,1265,1557,2242,542,2089,2420,2293,582,168,373,1992,2212,1895,207,1300,1237,1318,280,2305,1181,1804,751,1590,1255,1888,1588,1170,1436,2044,60,1630,246,79,2322,740,17,1019,1594,1400,1768,2279,2151,1930,1182,836,142,551,350,277,1439,1816,1145,808,1090,1523,1934,1056,833,2375,1728,607,984,1355,1028,1863,37,142,3,1486,1306,2262,2024,2037,1448,891,350,1740,2172,1978,781,883,1882,873,141,1191,2082,2079,1948,675,2119,1791,1781,1713,2005,177,2223,999,1636,1722,0,1877,1035,1885,962,1665,1584,2428,2011,768,2367,636,1417,1363,1804,1667,584,19,703,561,2029,1746,319,152,11,839,694,1960,609,1953,1014,392,2441,2187,1620,1681,556,1247,796,641,1822,812,1746,585,1317,614,400,1295,1118,2462,2440,1850,356,492,826,392,1971,501,1416,797,1914,232,2447,1996,1053,965,247,1398,2099,704,739,2348,68,2278,425,1561,69,527,314,2363,1583,724,1178,1019,1714,704,1718,2091,1423,1673,429,662,2314,2302,2439,351,1899,1400,1346,455,68,1545,2060,1903,1159,2416,93,747,1982,592,282,812,1396,1810,1576,251,940,422,1990,638,215,562,1763,2120,2132,37,1037,2343,990,1968,1195,2038,1580,2254,154,2451,1240,1171,443,610,2324,1390,865,1100,530,2092,1433,718,1310,1389,1287,2417,1893,982,694,414,1628,2179,2411,2347,607,462,1855,2017,1415,1341,1375,622,173,2255,2416,2285,357,1421,747,1680,2242,1300,1716,1701,93,827,1798,2289,2386,2290,1067,375,1180,178,1588,739,491,514,2297,1932,1636,2280,1287,1211,475,1243,2250,2321,2106,641,819,1777,1549,1308,510,1867,2279,2336,62,2241,1594,1228,2327,750,1174,1223,330,771,466,881,1561,1489,2057,2396,2310,1508,1855,837,1176,207,2201,1708,678,634,418,356,2080,1991,621,143,2131,5,579,162,2454,1317,1040,1921,728,795,5,730,193,1278,1513,975,866,2038,945,704,2076,275,2188,2430,259,1424,2199,1619,314,515,2243,719,231,500,1909,1191,941,198,1806,842,1563,1218,303,2271,1339,2187,1891,7,1841,2002,1124,1080,209,465,655,763,89,150,974,1860,184,149,1452,848,2199,1153,2159,1641,2229,1694,1841,2202,1077,850,1756,71,1716,1385,1564,1123,2,1521,927,1967,2124,2398,1581,2054,51,747,883,834,1005,331,1116,1659,1450,621,91,864,1600,1465,805,1867,1283,1408,230,1080,818,379,952,687,1479,1929,1560,530,315,2311,549,1887,1606,2051,1075,133,1926,1523,39,517,2015,475,105,1493,167,2422,1555,422,221,2007,1468,106,766,785,1049,775,4,1597,1971,705,1900,1545,1196,954,178,451,2030,1074,2094,525,1773,1012,114,1728,1443,126,1903,483,2404,1492,988,2237,870,2280,1831,175,300,16,1063,1903,555,2165,2026,2203,337,1320,128,490,1615,1231,1063,2075,57,1211,2106,855,1451,2251,917,2021,1965,1450,2067,712,793,188,80,419,1329,673,502,2148,1796,1936,180,2093,1689,512,1428,2255,2423,1814,1262,1056,1224,122,1703,654,629,2083,1940,2077,2337,1414,1864,1663,2011,745,851,340,326,878,1382,879,213,27,1561,1490,1285,1607,1125,690,1220,40,148,1418,757,1127,2384,647,1402,1019,495,834,0,934,2340,346,1834,1765,872,1802,665,361,2358,2442,2262,1617,2174,634,961,2102,1083,237,1588,2424,1596,996,755,1025,420,2317,2122,2299,359,115,2255,1020,10,970,1506,374,184,826,223,1296,673,334,1513,1369,543,1008,477,76,1371,1115,1248,1298,2305,1173,2057,485,1851,2314,1319,142,2335,246,857,1051,680,1538,659,1118,1785,358,258,1367,1249,1819,1604,966,1498,1953,2449,717,1471,1383,746,44,512,1683,2344,2122,250,1572,672,116,1494,830,15,1518,2364,659,163,167,966,572,2124,851,1875,2457,586,223,261,1426,1652,441,1704,1872,2107,1787,634,1818,1352,446,420,306,41,568,1777,1285,1434,75,1492,2349,620,308,1236,1310,811,2032,1993,1121,1112,189,1534,1325,1982,2071,440,44,2302,2152,110,1174,1966,2253,1811,2442,2170,720,304,1488,2459,1633,193,185,2015,1363,699,468,2185,2123,868,580,969,1229,14,314,1788,1076,1524,676,1329,237,1803,2076,341,243,2426,661,1144,1943,1578,1557,1210,2087,2195,691,2254,963,2229,470,1202,2041,173,1336,1724,1156,1154,2280,99,1595,676,1957,2375,1434,834,117,1290,1603,12,1310,1653,163,412,874,1965,2366,2249,2260,2053,992,1869,2436,184,440,1933,634,1493,1118,1315,1365,2055,1325,1517,1116,1118,2141,1169,1358,140,972,806,876,1855,722,1310,939,2206,715,900,87,254,694,615,644,2183,581,352,760,1681,1695,1056,174,2106,190,2115,2072,1311,1072,1377,2111,31,2312,1953,752,736,1873,2449,487,325,1288,1907,1724,1238,2203,158,0,1228,1379,512,320,2420,1170,1291,256,1192,1463,376,1617,2429,1545,603,374,169,687,556,1106,1938,2427,1225,2059,2442,2197,952,1374,2241,1474,770,1,1234,705,544,166,2264,1593,1403,2448,2363,174,308,31,1197,995,341,483,2190,740,1140,2130,1005,1937,1034,544,949,1452,546,571,854,151,1073,1472,1110,2448,1626,1351,154,1380,1909,669,1933,1653,318,2348,1053,135,1150,1032,1895,1561,2289,348,2385,2104,1151,662,1452,2370,2401,1360,1453,1056,1678,1993,658,616,552,549,2140,1986,2302,1322,1789,1017,363,554,1252,2191,2188,1200,1839,482,92,1447,1783,312,1645,1891,1325,2357,1103,36,1942,1962,2,1948,1144,1886,223,461,209,337,131,2065,1760,2462,192,712,2253,1748,114,557,1293,860,1545,1919,1302,2082,1567,2302,105,2420,1379,2435,2277,2043,969,1345,17,463,1096,765,2391,1202,2424,1117,973,3,2167,709,2205,115,1732,2407,2123,581,230,1520,2189,546,1413,1946,1928,1653,1823,1916,580,785,2244,420,2110,595,1707,452,2133,2304,1935,2351,2441,142,68,116,1306,475,431,1918,1783,1207,734,1416,832,451,1778,944,2252,260,1086,1787,2230,116,564,2112,1065,1754,1839,816,333,1258,2020,1932,2334,1399,714,788,406,1459,1908,293,1411,711,1923,1226,2304,2204,12,1669,2088,241,1688,1696,1547,2037,959,2321,1385,1080,443,776,1705,1370,230,2372,2246,1310,68,1195,2036,1272,1823,1574,1526,1955,1822,2088,2174,1352,1488,280,165,630,1841,2345,1281,630,1916,257,2339,1950,638,1810,277,2455,2369,394,1493,1519,179,1876,549,777,2270,1033,674,845,2456,1346,1526,1205,1639,1708,1482,1021,1876,2411,639,1261,1951,258,1386,907,617,1407,1301,2080,2045,2385,2455,1555,816,2301,2088,70,752,1193,2004,1475,147,848,412,79,1463,1823,2344,965,856,554,1764,1704,2064,1632,848,286,757,879,1156,1844,23,1738,976,565,1324,1526,355,516,69,1855,68,2323,199,2095,1824,152,657,2311,365,316,2174,1561,328,1273,588,1204,1123,2094,2013,1488,2418,1602,965,588,1661,1420,1983,1114,2200,1032,1054,2369,1275,528,1586,494,777,821,1266,1434,383,2235,1782,2372,33,2177,1282,228,1544,1520,2202,1111,1700,86,1031,1222,35,2205,1005,2409,208,1505,74,1825,1448,1434,1918,698,394,2185,2134,1139,1213,293,226,505,119,116,1677,218,2199,2338,2024,2116,2400,787,1460,1109,1984,2355,346,61,26,1241,1488,755,239,926,1251,775,542,786,1507,1198,36,937,976,2082,848,1446,1045,2067,1530,1854,39,356,1338,466,1221,288,507,1196,1308,1447,69,393,42,1891,345,1167,2257,506,136,1331,1357,49,1993,1684,2307,398,885,2100,1203,1197,2169,363,2336,69,1313,2098,2080,1974,578,2394,2393,1809,2269,1110,2342,1058,694,2224,715,2185,1588,1735,534,1723,584,710,1185,1630,1573,1920,949,362,2394,1901,2036,2340,2348,1119,2160,883,471,214,1564,1903,671,305,72,2350,216,877,650,742,306,1024,1113,1246,1038,726,114,2361,705,860,563,2438,659,1964,1664,555,1991,2453,1898,727,275,584,863,1624,1441,12,1,730,1231,2241,1903,1771,741,55,2272,575,283,2369,659,874,899,1430,899,789,86,2251,752,2260,585,133,2325,1538,2180,2419,2324,50,1737,631,941,2260,1125,1996,1117,682,1345,640,1026,877,730,2461,1270,1081,1629,2120,586,108,2196,2299,1463,2178,2306,2040,343,1951,1607,318,843,191,1497,1556,98,1072,2399,1138,524,313,1314,2181,1631,1620,1093,2092,2035,1614,814,488,1558,731,744,2033,1456,1276,28,1304,433,2393,2421,1966,1493,1135,1646,1122,484,2124,119,406,2011,772,2298,138,1812,1061,883,1834,542,1267,1072,153,2460,10,1347,1594,481,1396,34,1808,1008,1532,781,415,448,1207,1522,885,7,1316,847,1905,249,2241,846,1665,114,379,1759,2314,1370,1432,75,214,2375,1972,795,1187,526,1971,1887,1468,1653,371,581,1779,1558,107,1979,1250,723,1366,1698,38,2082,1825,50,2026,86,2221,915,1792,704,1492,238,546,814,1733,1734,2224,2391,416,208,1143,1018,750,868,1174,475,354,1312,1193,1475,2275,850,2360,401,2242,1364,1510,1335,2295,1063,1393,234,1843,267,2051,1753,83,1133,86,152,1808,2281,2246,654,427,2020,757,963,1139,1150,1843,1289,1582,2109,773,1928,1736,2420,623,265,379,664,234,466,1009,117,1356,1215,2021,102,2051,2058,1341,2027,1058,1954,651,2280,1565,1865,909,494,71,2224,1901,1699,1028,1470,723,2064,497,905,1844,1110,1457,762,1647,2341,2388,168,1117,1925,1642,576,760,2339,873,2274,280,709,25,184,616,2354,1064,1856,913,280,1855,1633,495,172,2249,2347,2415,2287,306,807,879,1854,580,2029,1888,962,298,1152,911,652,295,773,1964,413,1100,204,7,1535,23,835,1988,1891,1931,1108,792,2241,1739,1531,1650,1896,543,62,1460,1324,96,448,1560,369,974,279,1522,1752,181,806,691,1501,1432,793,1706,1940,2319,923,86,2264,618,1700,217,1248,1452,1161,50,1424,1163,1878,1153,150,2338,2084,1722,1711,2152,1635,2255,605,1971,2386,1095,2305,571,2184,1255,1425,1560,1670,1287,1480,1702,1993,2226,1955,669,2064,1427,662,244,2178,315,2280,2434,293,1584,2239,2173,356,760,1244,405,367,210,983,520,861,1575,96,2038,865,1202,1726,1878,1819,1996,1692,1713,349,1176,338,277,1072,392,1877,261,1731,372,2458,1508,1438,2202,806,676,613,1976,413,2241,1903,1837,1833,965,97,433,1583,2175,1392,943,1062,435,444,2402,2061,889,898,2181,2116,727,1592,220,480,841,200,1335,741,434,838,2161,1142,1275,8,2193,1772,559,1125,1908,1244,1655,1992,1956,1961,1754,1232,176,2427,2223,1915,834,733,1703,2014,821,1829,2235,1155,1466,1565,1915,2284,592,255,1509,82,1481,1316,924,1016,475,1449,1459,56,1732,52,834,1891,1436,579,2413,1968,2331,1350,322,1906,1360,2246,650,1806,1944,236,170,1034,723,1189,1057,454,1817,2145,936,2367,408,1705,566,2248,236,1876,449,1147,1341,280,2076,1495,2057,1443,1008,53,1516,178,1741,1754,758,1897,293,1237,375,2144,1665,1059,938,1996,1454,1693,1972,627,2115,1085,950,1880,1421,1434,217,878,550,671,1011,821,1424,1689,989,270,833,782,76,701,157,6,1349,1235,442,594,2024,1795,1348,1158,2103,1380,1768,59,1976,467,2122,2254,2265,1158,1815,1057,1483,1282,2367,1688,1198,1329,84,1331,1957,1857,196,628,1949,2223,289,2307,1219,643,1450,559,1859,959,1654,0,1749,209,174,709,1532,2050,607,2254,2255,70,438,1552,513,1047,1173,2084,995,615,900,1902,1926,2088,250,1649,1670,392,1237,121,1282,2394,1704,830,431,55,2008,2074,584,849,2174,610,885,31,384,1157,1873,2080,396,388,1281,120,1109,587}

    {584,1019,1201,2139,2076,1745,2402,2448,602,1749,164,25,179,581,887,139,1953,2382,1747,32,1371,1431,811,314,154,1615,1471,1821,1942,1375,2127,1934,1469,2133,978,1787,2352,1991,342,46,2046,1154,2089,1854,883,1487,976,2006,1305,155,764,1279,1416,1002,2160,1125,1307,640,1009,848,1193,1480,1254,2214,1341,1884,603,2441,597,275,621,793,1100,1379,2333,1321,497,1424,1606,1155,1591,10,1180,1245,2387,406,1309,905,1188,1996,192,241,2048,1536,1534,2113,1765,1564,85,802,986,1404,1732,931,2338,1499,2147,128,113,1147,1507,2325,2149,1588,2388,1801,2095,1730,2336,883,1553,344,1568,1601,1901,2062,1422,953,1547,1013,631,2375,2330,2128,2238,1340,1310,498,122,1932,571,860,414,1861,20,447,1835,1813,1811,89,596,1697,731,177,2122,435,2345,512,1545,230,272,3,318,127,448,2258,501,82,1806,227,791,1448,1765,2175,1010,2209,695,141,309,2292,2039,1341,792,2450,941,825,905,29,1666,483,1670,2072,385,448,1256,677,86,1969,1055,728,589,1617,1075,947,1023,1742,2371,2021,599,1368,982,2301,1955,1316,1043,1620,1559,470,2391,1179,922,501,487,2137,2153,1847,2343,376,1528,122,1660,420,239,202,798,1094,78,1491,619,2369,2320,2459,1447,1886,203,1256,115,1894,2441,1088,150,2158,2271,360,804,1943,2442,2436,1188,723,2376,1732,286,1251,473,814,968,1785,173,1382,1004,727,1357,611,2138,317,2343,1087,2173,1633,527,250,2233,2123,1278,933,1710,1640,2245,409,412,2150,201,635,1871,394,1194,53,2376,2105,271,2241,761,402,1575,1,1723,1314,474,1608,1435,2304,1395,58,2038,1361,2188,194,1646,264,1483,921,358,2033,1962,1957,462,2291,1211,1260,1825,9,205,1972,1826,1168,378,806,1945,443,1594,1849,2037,130,697,2113,858,1773,2055,1028,96,1228,2299,315,1651,2147,30,1476,735,112,352,1714,1451,2388,1934,2001,698,960,527,1689,1212,2087,284,1554,953,436,1971,1887,1710,2413,1234,884,695,1313,421,2307,672,1416,1005,1156,1433,2269,1440,467,2369,777,323,306,2336,569,1310,296,1419,2079,2164,765,387,131,1004,348,1160,913,929,2246,2195,2232,1912,2167,2264,1879,1695,2416,1603,908,47,621,705,2300,248,118,713,856,1303,1100,2142,1881,392,1559,417,1883,971,654,2063,1828,2237,757,521,1427,754,2277,21,1771,1785,1944,994,1693,1345,2002,493,1193,532,1837,1496,1676,640,166,1080,838,2371,2033,1773,311,2235,1653,517,1542,1808,1909,2218,2308,1327,1303,1158,2224,410,2201,443,309,2201,1005,701,1896,1481,198,1444,1261,1199,976,1653,1498,1174,1667,276,7,1527,2255,1929,1022,1703,375,1050,275,443,2408,41,2111,1125,1149,2231,2279,2444,1343,422,1405,1273,1799,1941,374,36,473,753,883,1003,871,385,1956,1195,2213,1873,1854,1823,269,45,266,350,1133,1661,270,1227,94,1594,2104,2222,1400,145,638,332,209,686,1040,160,1392,2126,1957,87,2396,1911,880,280,25,1286,1373,40,2094,1485,1422,2410,2340,1657,425,39,1016,1044,478,232,413,448,1543,454,2079,1551,460,1845,1010,502,1570,2255,1063,1866,447,2344,308,1862,1800,407,103,1697,1688,2048,1132,1503,220,86,270,1161,1993,2147,90,2176,1382,2386,181,2005,54,428,737,1122,402,302,1718,1571,556,1509,702,537,1787,2046,1644,608,1539,528,195,2326,1441,562,1687,650,1895,932,2414,456,1747,168,2285,1416,831,1847,2277,2316,1706,1783,2155,77,2247,1864,2123,619,385,493,2215,2078,542,1643,2427,368,476,1707,1768,1750,2226,1126,2117,1908,2338,1840,1326,255,221,668,351,269,382,1653,2414,2334,1036,684,1316,1377,2285,1346,1698,1208,2460,2003,2127,962,835,1891,446,1590,98,56,1913,1701,1100,1057,1238,1504,777,912,2395,1425,1227,1668,1307,439,976,178,1713,1275,1201,1512,1577,2256,1469,257,1909,264,2447,1358,114,1078,2367,297,1019,1790,1854,2000,325,2328,391,2301,1655,1459,2448,1336,2223,1319,1370,347,834,4,55,1096,2111,985,1662,1889,1981,186,2081,1458,2125,2256,182,663,1704,29,1779,1017,1480,2210,380,2373,839,2361,1098,903,727,1203,699,2102,1368,1477,1275,249,1538,432,209,835,942,1084,919,1890,2375,301,2072,1192,724,1906,1341,1230,1889,1653,997,906,2318,2304,2205,1943,1773,1649,97,628,533,1163,914,1053,2335,945,2085,1843,187,634,1365,331,811,262,1334,1237,122,1027,437,96,270,68,730,625,1284,1876,683,1426,2158,1756,1977,1046,1092,24,337,223,1542,1561,1079,2370,976,307,676,615,1754,2320,2445,1794,1479,376,2412,1717,2356,341,2123,2199,1321,1162,2156,1038,979,1546,893,693,496,314,2219,2280,2329,883,2401,2310,1952,223,206,1337,1117,3,2234,1992,2222,2162,1432,179,1943,969,1726,2318,222,598,405,90,15,752,349,1606,2355,1242,817,645,1794,1185,2376,1610,451,2178,2217,2265,1889,2282,2136,1661,678,1259,2070,535,309,445,411,1415,1434,623,2246,1854,2336,1580,1753,359,772,702,1949,945,2171,955,833,840,1712,1637,499,96,2058,2208,2415,811,794,677,809,500,1080,508,2196,1658,1620,1511,1788,778,1562,2176,606,719,1865,737,2234,1354,1995,757,1669,1036,202,466,331,364,1969,932,2009,748,2094,22,2240,2304,1940,86,2389,837,2284,223,1991,1387,1780,1390,285,685,2276,789,1210,864,1784,1185,332,1040,197,2189,75,2129,205,1876,62,327,788,141,353,868,1039,1587,774,1344,2170,549,1529,622,808,750,523,469,1719,1130,2388,132,136,2256,1046,475,723,184,2274,1572,368,86,1113,2018,838,2194,2153,268,77,370,623,281,2207,852,2235,377,1069,1136,7,897,1082,290,2361,1537,140,1918,1158,789,2096,776,2230,815,1398,504,1447,1771,1335,580,1104,607,1615,1481,1167,2124,1627,73,723,170,2207,840,379,2359,408,1135,1725,727,2032,1319,795,88,1154,1961,1120,638,542,273,1128,478,1307,1506,2163,593,607,605,231,951,784,888,617,472,1396,2448,2431,707,1736,1359,1893,2378,198,124,607,252,1383,676,2016,502,2160,1609,1716,2395,1767,1780,715,1268,1013,2169,1186,0,2269,2358,1935,2288,394,1479,1912,397,711,455,1817,2235,2033,2385,1672,1996,2034,1531,293,2257,773,1006,1540,646,1323,559,2235,2460,1277,1638,1091,1683,629,1926,101,2422,931,356,1028,383,1805,1952,2317,517,1881,159,161,1434,86,450,2165,844,626,1606,691,1409,660,1665,1820,426,2031,1228,1967,822,2448,518,2269,2346,2240,645,1001,409,1884,2049,1288,1360,1208,1257,1000,2192,538,2118,987,799,1917,2004,152,1896,258,2301,1229,489,1895,946,750,2106,2343,1681,1158,139,775,1683,1707,366,2162,2248,2130,1667,977,1246,1373,1656,642,403,484,1478,1479,519,2305,135,2321,1410,1927,715,2454,1952,1881,505,562,1402,890,847,800,119,538,1939,773,2269,1606,2368,783,1325,1636,1808,168,2263,2068,2165,1681,1210,705,1944,2023,860,423,390,564,1635,1579,1787,364,1771,2226,1210,2198,1388,230,705,861,81,1277,2236,543,2351,1833,522,485,732,1757,956,1980,1698,100,501,1044,715,2078,1639,909,1522,2251,1761,342,291,220,810,1131,1756,269,1217,1871,80,1915,575,634,146,2301,542,1414,621,168,2147,2052,2228,678,1493,2261,605,1056,1868,1691,593,1527,464,1018,2359,2227,905,1349,1752,1325,1727,1332,547,2401,2086,1544,1461,1870,379,1372,1458,324,981,660,2350,659,708,1804,684,916,518,1762,2426,1658,65,536,1779,1264,910,1100,2413,122,2283,1947,2422,2176,1170,1513,2385,2386,480,1929,1445,1916,443,2042,332,635,621,733,1184,723,2405,198,584,1818,1871,1129,706,1871,2002,1565,1999,793,2334,1671,667,2314,553,1237,1310,1509,2159,715,562,892,1541,2114,359,617,1399,2160,601,828,585,2305,1148,1107,1623,1821,1914,570,2265,1110,573,2420,451,459,1076,1607,933,2210,1570,1499,554,441,183,1416,766,1030,820,2279,458,715,223,666,822,1634,593,593,992,129,795,2214,1797,540,75,2442,263,1306,2108,2391,233,10,2285,2054,2231,1312,819,1353,1376,893,69,1437,2183,1401,2225,184,161,226,225,1759,1513,967,307,665,790,1070,949,1973,167,2357,1406,74,1028,524,379,1819,1269,624,875,176,424,2369,2255,1361,1459,1154,759,883,857,1976,1442,577,8,1539,1105,1832,64,2185,2024,996,1223,542,66,1958,23,2152,2345,2457,1904,1245,2021,1473,2243,294,667,90,1085,585,955,833,155,1390,591,187,1874,1164,1551,1892,74,1099,1463,1498,2381,567,28,1649,810,714,781,1223,749,583,135,1457,1932,494,715,224,1621,1510,1391,1091,2433,2259,1297,1697,1168,509,1271,1239,1997,1275,160,1180,1339,763,2052,1197,1926,2148,812,934,208,1455,494,957,1074,1342,1940,915,824,2177,863,1532,1275,806,689,604,636,1952,798,2032,606,192,1185,208,184,2012,1476,984,868,795,1532,1048,937,2224,651,2280,104,1802,142,280,190,1533,392,2362,1568,579,1116,2187,692,2299,1791,1334,214,716,1944,414,1720,1807,1329,1110,1786,2363,2420,1210,2437,823,729,1725,1154,341,1094,991,2054,688,2069,558,1843,271,2021,1042,360,276,883,868,1961,596,1811,211,1119,2004,1554,1279,2050,825,1007,1773,1005,323,2296,2299,76,58,581,1517,326,579,865,2187,2383,2269,904,1705,1459,1937,1704,303,637,156,687,1536,2250,2229,1769,1039,149,1333,1185,1621,173,1021,1479,2050,2166,640,1887,1612,1134,1525,1056,405,453,1067,299,2425,2211,580,217,343,143,2390,2063,539,2267,2369,1378,365,1952,1504,1509,1646,1985,1420,1612,129,1607,1766,648,161,1830,1089,564,1052,767,4,2235,2197,1755,650,691,389,2082,1802,1524,1732,1147,501,902,1456,879,1104,2028,697,1216,1915,756,862,486,1213,1787,2246,1891,681,1142,1957,276,501,707,2320,1115,1613,161,116,1926,1384,1690,1814,1910,2441,1514,1448,1137,2203,918,654,1603,964,587,125,169,109,621,134,1075,203,1963,622,2099,2420,1569,2244,376,2238,2443,1251,1653,1611,1900,742,345,2127,1036,1101,2400,2299,733,1753,856,274,928,943,752,346,2090,633,1814,1648,599,1258,1796,819,735,494,818,1853,1944,2243,579,504,0,2202,1815,62,1416,1791,365,1114,2397,2303,2403,1621,609,1715,1825,191,1667,245,1792,1785,48,2283,2186,806,1032,98,571,1590,760,2231,95,1041,535,107,863,1141,356,886,184,548,1832,63,920,1681,1281,1385,1005,1885,2185,2073,370,921,133,1957,2271,324,1852,2337,1302,964,2066,656,889,993,1413,1525,430,737,292,2158,1099,1722,1568,86,839,1776,43,354,1589,332,506,1851,595,1713,1376,730,2304,1994,1116,1146,1624,956,946,1776,1622,114,386,1681,1538,1110,947,612,1468,2379,1509,2041,1721,697,982,2211,216,2111,1983,883,321,246,142,1411,1502,1273,1342,479,335,1457,537,719,1429,689,543,1739,785,2004,1359,1502,1823,1959,2242,1066,691,895,1793,1016,1965,1124,2268,2005,826,1341,1276,263,2075,1624,1015,1743,1005,2260,1641,984,1698,113,123,1289,375,1063,2325,2429,109,2249,336,1091,1940,158,210,1908,70,229,1577,659,109,1285,2331,2386,365,2182,272,833,2447,1240,529,1341,1256,103,634,2211,1616,519,802,1206,2255,1047,360,490,1749,117,1000,1967,2314,1117,1274,380,154,503,254,1673,1007,1172,1481,381,2391,8,574,1500,2167,329,2101,1348,877,803,1735,1362,404,1038,1185,1871,1383,1177,869,1484,948,195,998,1709,1150,2451,229,533,901,334,28,1576,1170,1997,632,1747,1836,1717,1786,477,160,1543,2354,1971,692,207,2016,2273,2313,1345,1995,2332,1214,253,1294,600,1833,1482,1819,499,1988,515,1495,947,1268,1838,961,1776,1573,2095,1029,935,264,2106,2019,679,85,2267,683,378,2030,2183,1566,2018,1071,1341,235,89,930,1441,1781,199,1770,76,687,1160,2315,649,1080,86,1165,184,1661,1764,2266,1618,1273,1254,734,2374,1421,96,2231,433,1831,409,2014,1036,2452,2,1598,2073,896,784,1802,348,983,872,127,1381,1785,424,2165,401,1540,858,1940,1523,1149,326,1097,653,2433,160,545,1691,137,621,1215,559,1842,466,877,1459,1548,1858,1050,2286,571,1228,2321,2154,287,2168,1489,1394,1120,2417,2109,1590,1841,2381,1787,1636,1566,1589,541,915,3,2352,1805,1560,2146,652,1464,278,487,189,2049,2392,204,1292,707,66,1184,212,779,1319,981,1758,2059,1977,801,457,1317,1591,743,540,536,1123,2269,2338,896,1701,1411,1827,1183,70,1545,2152,47,746,1688,1605,1280,214,1166,361,1891,894,713,661,217,1034,1972,831,167,86,1458,1975,1840,1729,2253,1619,2116,144,326,743,2003,1942,1068,721,395,722,1359,1387,1346,2114,1091,1504,2324,972,1513,1074,1855,18,1216,1144,733,902,230,149,1063,219,725,409,1838,807,1397,662,1744,66,261,670,1884,337,2455,176,1686,861,531,464,366,799,659,1253,1119,875,171,1415,2446,1674}

    2437

    1965

    Returns: 634265371

  65. {453,806,820,418,125,176,1144,1031,44,973,497,486,808,151,200,1157,1058,984,1079,1337,1397,166,1089,838,707,1061,1089,1073,668,528,1228,103,113,1258,1228,1228,144,322,974,519,279,1020,1204,157,932,772,705,822,392,68,401,1050,741,1486,243,1117,1223,59,1076,1461,681,932,1175,936,1263,281,52,287,1266,895,119,607,975,272,1449,1100,408,535,22,132,192,249,600,1103,416,1027,612,848,1021,569,1294,393,863,321,799,446,55,1367,1290,458,283,130,1112,164,796,996,1296,1178,314,1418,311,303,1073,588,768,294,0,1384,203,141,1310,1396,1390,1330,1457,198,832,351,224,73,648,658,137,78,143,1039,832,1030,1354,144,813,850,56,249,489,97,1096,585,471,1028,124,840,1464,1172,1304,682,759,1140,848,654,1240,345,665,681,939,480,755,644,409,174,52,558,1042,179,1243,1479,471,1344,487,815,85,702,854,318,85,550,36,185,621,552,1358,486,1183,1364,1375,1471,1090,227,1221,449,705,181,1399,776,718,1104,1205,116,283,176,585,1093,986,636,1359,343,1302,417,1278,620,1069,1261,1044,1136,896,387,317,434,426,1224,995,869,1409,1295,763,717,1035,1160,941,50,1063,115,720,301,745,350,331,906,1163,1133,73,733,899,1477,1356,1036,1335,548,1207,1405,150,585,140,1151,689,1460,1491,654,234,116,1342,946,83,525,392,930,274,465,1278,1347,1421,1374,1014,789,1379,357,1129,556,543,346,396,85,59,65,1350,727,528,381,1341,1218,1153,11,1173,599,1473,832,477,407,1037,989,191,1283,36,185,80,1150,917,1272,1381,1230,806,1344,834,883,466,1253,918,1226,404,1141,1403,1417,365,1456,635,1128,752,1395,1037,88,1437,752,69,197,1200,1297,498,1435,353,731,881,710,1118,1472,75,636,821,845,1312,21,1251,1310,591,1321,1392,108,124,1485,344,1436,279,1412,1240,476,1129,1203,1224,1095,311,695,958,463,10,1178,737,637,390,878,437,216,593,523,397,28,564,1033,629,846,859,49,1286,994,900,1294,1262,740,624,1320,1296,724,1328,1428,290,873,802,1472,542,1067,1162,210,931,526,1304,822,340,1148,970,504,158,91,445,650,1002,1039,475,218,208,227,1232,652,881,1043,688,366,1172,784,343,613,185,1161,1096,83,419,139,1288,355,970,856,232,1392,1310,524,1171,1350,539,291,90,409,176,673,755,376,961,1380,780,741,1306,306,1320,254,1103,797,1090,380,899,867,551,1022,94,128,528,818,1259,319,400,282,1141,1361,4,1194,979,1250,1320,1432,904,610,1096,358,503,1316,389,13,347,1369,715,569,415,122,160,1342,731,1358,683,902,1382,977,415,1119,1033,616,867,1339,500,785,34,1437,274,644,1162,103,1041,1430,1380,896,42,1054,1182,260,68,848,1152,645,643,1023,1341,470,1326,331,866,43,684,1029,1014,33,1363,1412,1253,214,505,1318,1411,971,286,149,1094,550,1249,202,199,534,46,108,240,93,778,434,394,1172,33,501,24,724,1485,452,201,804,132,127,1294,768,1036,1105,5,1197,334,449,1389,467,1158,23,637,803,741,409,1026,1074,178,538,1147,390,440,1476,555,1217,819,47,153,845,1192,1290,1234,637,934,1489,745,71,938,315,1413,529,69,242,704,220,448,1469,232,814,554,744,752,929,885,401,140,1067,1343,1096,1380,683,1290,469,568,1092,738,338,449,345,1353,859,1037,1012,403,927,952,916,186,273,1102,501,1327,654,911,706,933,990,129,87,943,1035,848,246,1315,1220,372,1388,1116,513,898,249,221,1307,1416,1436,884,700,1024,104,1310,1171,783,423,1093,970,10,1340,62,1039,864,116,290,1164,979,439,472,1306,117,849,1386,648,106,33,166,1118,986,1402,237,988,162,77,601,983,193,585,935,155,1400,31,1480,1136,829,875,707,440,84,1230,543,311,810,1275,461,1341,195,895,570,301,1113,619,1052,147,1048,1270,1412,88,1372,1380,970,1473,453,769,642,87,845,993,15,937,1343,783,1468,309,664,768,1061,1037,339,106,102,1100,1397,370,1153,1128,1227,1204,603,427,822,890,407,609,457,1409,1441,1241,925,856,1477,1338,1350,734,1096,798,1341,1078,627,1335,944,1437,612,1289,304,1249,1277,112,1025,957,1242,1169,379,1489,1129,1423,739,263,1397,1464,1368,688,571,256,1168,343,1038,988,833,1342,1383,250,688,1264,791,722,1119,897,156,1432,1379,283,320,508,1009,1086,40,1156,1010,1167,1309,181,524,96,338,970,516,85,257,259,1463,608,1359,781,899,444,1316,50,535,1492,1176,1118,1097,999,1024,1312,1295,331,970,876,1176,1151,330,1178,976,348,362,709,1048,401,828,68,660,850,853,1473,270,1167,490,1313,1195,517,664,822,277,373,1460,384,794,166,307,555,792,592,113,998,1081,87,1196,136,1426,854,456,1355,901,353,654,1376,56,145,295,744,783,668,19,970,770,1155,249,258,295,390,1236,1206,613,25,1096,997,1453,1091,1334,390,970,278,1187,416,171,1473,34,1275,645,476,53,1379,815,1037,965,671,1059,1234,204,125,797,38,301,618,134,644,1144,28,1110,288,1287,910,149,484,747,1436,988,498,960,1481,1335,371,1221,1157,1105,215,1170,703,809,545,375,241,414,572,855,118,647,590,446,199,54,1172,1255,1342,60,189,1247,248,1397,1116,1212,1445,1440,952,614,1189,188,900,607,394,19,1209,940,877,1250,705,120,1015,709,408,419,128,584,1333,1088,690,1377,217,381,1141,1268,873,705,1393,6,1204,378,58,953,1260,468,1071,1073,163,86,803,266,203,895,1459,833,757,915,876,1341,486,60,795,612,1142,1449,846,320,418,1405,475,1390,246,1347,970,264,1059,746,1248,7,1109,899,471,886,419,859,214,1317,128,613,9,1344,398,1401,703,622,725,1049,557,248,1001,95,142,1341,897,409,428,1187,458,1368,948,361,779,678,1391,1166,964,105,1123,793,1178,245,1381,1275,1388,1286,602,636,1027,514,694,298,857,232,1014,112,1259,1293,864,691,1278,943,685,560,1348,1196,147,1032,124,528,468,1227,364,603,355,655,1037,1366,182,1462,656,1245,618,509,188,635,529,277,700,1040,1157,842,1286,577,1344,90,866,455,1276,1303,636,429,1086,1246,425,161,277,339,1325,198,612,1151,299,972,233,283,1346,475,769,85,155,373,517,1344,155,1096,1054,298,236,574,173,951,411,716,525,757,1344,136,507,709,506,1228,811,654,208,1346,904,1119,110,1000,1002,1065,1154,861,1208,1320,1222,1202,1133,330,1090,203,41,1489,1241,843,1480,727,157,729,1163,832,864,1467,1135,1263,1172,1252,1240,930,522,830,167,1080,341,1167,389,263,1257,1074,291,807,622,950,731,614,64,303,1365,553,1208,611,1062,150,1484,711,502,589,1191,1387,681,790,1067,1397,588,433,584,463,1481,152,920,1115,296,1436,1227,1434,630,108,170,584,1147,249,1139,661,1447,1109,1194,155,477,8,313,647,615,1488,396,41,431,1072,1230,1006,374,692,736,1073,331,495,1464,207,1331,719,60,1064,261,954,567,1367,991,348,1429,22,1039,525,19,422,893,1075,289,326,348,1447,802,588,681,902,1209,546,1255,526,475,424,1285,259,964,322,628,1370,900,780,315,1075,1476,1061,1023,414,258,1006,667,98,13,845,1301,290,531,1254,564,160,1247,1467,811,805,47,293,649,255,1118,797,207,1260,0,356,1406,775,207,927,436,841,1075,887,625,1312,832,1240,652,1371,1487,632,323,1215,240,864,735,1039,1358,171,800,120,903,900,1298,1206,757,969,296,246,1444,1142,662,215,1372}

    {623,1013,1182,865,1163,1068,1483,640,327,21,1281,368,604,188,594,818,1015,978,835,962,646,85,370,430,1254,1,1116,1436,1238,1490,316,98,1029,206,907,1184,572,1004,83,280,1136,436,348,831,1088,1191,1118,835,565,713,243,331,533,1182,547,727,390,1132,1190,777,1436,996,670,395,1146,439,779,761,1251,1039,305,912,551,1250,1219,1214,89,10,296,19,590,219,832,667,437,1254,1039,136,323,579,899,0,237,1319,847,429,590,1458,709,974,870,491,1057,844,528,1446,328,1303,845,1424,1196,1090,1026,1305,99,1168,506,343,103,35,717,1116,378,733,593,103,1051,837,391,190,1394,105,470,636,1178,752,414,782,510,1291,933,475,123,464,1131,1174,900,959,37,1260,578,52,895,146,633,1164,1016,0,1353,1126,238,320,1129,291,1244,1433,410,1011,770,581,1477,127,1451,878,893,612,957,155,1315,427,383,1063,848,835,1095,97,1225,296,1030,1427,1161,1374,254,1042,947,1006,979,797,1373,1106,494,274,206,1491,66,241,1400,1134,1380,900,1111,630,388,797,694,952,832,1275,1176,778,810,515,532,1425,354,1165,583,1037,1335,303,988,666,679,285,1464,708,622,706,228,1350,1478,622,1482,1096,1185,1435,325,234,329,714,197,1386,570,880,828,1489,871,737,152,1420,418,1023,697,1231,367,414,107,968,132,1481,453,1240,848,39,1436,206,484,690,555,970,208,1120,553,136,1159,864,1047,176,212,462,533,57,75,625,1251,1383,707,64,1015,485,114,464,930,988,360,1206,1005,1460,635,1263,1056,241,845,1043,663,1108,326,1191,1369,455,1364,1187,456,985,450,899,488,1057,222,187,598,1302,218,678,1082,801,103,1468,537,126,66,504,66,1364,1141,10,513,1035,518,1415,582,662,195,71,355,811,395,1046,390,1419,210,680,670,940,176,478,355,1157,742,1233,332,541,1352,230,1480,1308,1482,999,1426,1437,259,1063,1130,973,483,203,830,1354,1300,1084,1362,141,460,1286,1094,773,488,1114,1310,366,1103,103,732,1107,1011,1151,1201,1199,843,675,844,755,35,669,25,631,890,1436,890,3,890,1443,1467,473,1273,413,1416,182,150,865,473,1356,416,899,970,1470,138,575,300,1129,641,987,419,1380,413,649,130,566,1249,503,546,389,686,150,1280,1122,159,1114,1052,1158,113,1179,1083,1273,534,244,750,687,631,1006,816,1342,1244,1332,1114,1279,851,474,19,912,1116,706,206,1357,1323,594,347,607,1344,922,858,941,479,760,875,702,625,179,818,100,536,894,1285,1145,1284,529,864,1341,1354,754,12,484,881,229,1110,796,85,1236,595,822,1461,1431,1319,292,1065,869,265,1030,126,1411,1185,783,631,1191,612,148,672,508,133,274,1173,1251,1001,488,288,48,832,917,349,701,804,1316,277,1454,755,1204,561,1249,313,157,549,921,594,1363,753,276,1164,324,694,1489,1423,1178,139,1177,377,390,1066,198,80,1143,917,1204,1301,752,115,67,759,79,126,460,863,748,1239,74,657,1397,847,613,1448,580,743,886,117,1286,774,177,899,115,1308,44,61,83,1380,751,960,234,292,1292,1060,1204,1008,132,1492,205,535,414,395,392,1359,511,14,812,69,1398,1055,1322,1002,1433,301,271,1407,383,1292,853,167,680,1408,1389,1193,731,632,774,493,353,570,786,1310,30,1129,612,147,1367,1150,681,314,424,766,730,211,521,1186,384,407,196,559,1255,489,144,780,1351,574,1073,125,295,808,1008,1380,822,398,17,788,1280,587,839,69,712,992,284,1045,1412,240,1370,596,328,1040,882,1381,493,476,1161,815,999,562,944,1492,733,598,1251,52,924,322,18,1344,771,914,1342,1436,907,190,155,1261,2,398,367,185,903,370,302,1450,1029,308,1100,635,826,1484,764,714,346,280,1253,1221,1213,486,967,1092,1396,171,1175,659,538,124,1337,16,1112,386,1008,779,419,1137,225,301,566,1077,385,436,166,486,1269,1236,1070,1055,489,428,551,158,548,451,1378,908,345,985,899,381,98,191,946,578,44,1006,1336,770,744,594,1170,92,165,274,973,807,1347,1279,364,551,1449,41,303,1438,915,472,1139,481,907,1434,546,558,1310,1404,1206,811,315,986,70,848,435,264,693,1063,168,708,915,543,47,721,583,85,1450,402,1267,1347,186,1405,269,1216,656,213,1010,1360,1354,1324,521,1187,492,1149,1087,476,533,300,1400,1484,409,1323,382,789,105,1452,1210,731,145,848,867,85,817,1383,60,547,98,1380,1181,1180,1051,224,337,60,76,101,1178,1063,592,892,395,653,586,1341,1165,945,1424,920,573,1193,898,593,1127,1464,81,201,1157,1312,19,709,1085,1481,1377,378,527,1138,976,1285,363,323,175,216,405,698,832,116,1124,1116,109,731,87,875,536,1467,585,1299,1282,319,617,584,388,308,825,306,1394,524,868,131,275,121,1392,978,811,728,593,1367,1297,1003,497,1311,583,544,154,802,379,1323,506,798,1401,1344,548,722,532,459,732,955,993,172,1218,481,356,731,879,344,1090,1203,797,451,1198,555,463,262,1217,65,1049,441,1138,311,1446,1049,1039,913,808,1473,512,495,1342,520,246,696,1396,235,841,458,566,442,452,671,1299,199,319,1489,72,592,173,1265,26,289,73,501,1240,447,333,756,1099,336,188,1405,1274,737,190,694,1098,1271,850,852,1275,335,1462,742,927,200,331,190,1034,1363,699,1332,1295,245,978,463,463,637,414,63,613,268,402,18,234,1256,932,26,454,838,987,1087,103,1017,1376,848,409,869,724,484,928,587,1216,1466,576,310,847,346,983,183,548,1096,726,654,552,191,787,420,1202,287,889,726,605,758,963,969,1285,756,919,563,1227,251,886,411,234,1142,607,267,1084,926,824,438,120,654,896,373,344,765,82,301,451,439,339,94,297,1345,985,827,873,1217,676,1146,856,649,982,722,295,593,674,874,1130,343,602,970,832,499,412,999,549,918,1243,1235,949,128,1349,383,73,72,1329,218,875,676,1139,1237,862,867,111,793,1302,598,1347,843,555,1147,626,1483,399,1363,917,22,835,673,303,252,212,823,829,1043,1073,580,1426,664,1442,1396,194,1121,637,247,264,223,459,356,736,877,583,583,1110,1415,1383,504,28,793,1310,1414,274,1076,535,1039,888,174,939,1018,1483,981,1159,1007,498,1358,999,783,496,877,634,1251,1314,947,1164,169,1474,370,749,572,793,566,932,895,608,233,75,1255,730,595,826,351,1391,482,638,1122,1371,694,135,1108,527,222,51,20,826,52,28,1310,246,892,692,980,253,1481,1286,1465,1351,149,1056,1367,1252,905,352,312,566,1019,209,29,239,728,1185,383,1169,432,1289,530,991,1200,435,667,860,1357,815,1336,1364,716,677,274,1439,561,32,525,1244,119,956,364,597,330,1216,822,231,1073,1031,540,644,104,337,797,793,1472,909,1422,1436,608,1170,283,181,186,1430,838,1328,157,1311,508,1125,918,609,1136,1070,859,721,723,601,777,21,712,639,896,883,930,462,369,1053,899,732,1101,1491,659,503,1400,1170,802,1246,1410,1141,406,766,1464,525,1310,942,762,867,1444,180,929,909,989,793,1188,311,891,1211,534,744,966,630,1488,184,656,337,1307,624,501,226,977,1385,1018,830,450,1216,1343,290,1096,700,694,1259,1004,1012,459,1229,1488,443,548,836,266,926,1212,1109,229,943,606,342,1328,506,45,1357,27,872,651,1396,590,421,1036,1089,359,1057,213,189,1395,65,19,745,1320,113,296,923,1235,232,1220,1391,767,254,1475,1455}

    144

    725

    Returns: 147412677

  66. {2245,1924,1422,1986,1963,493,888,2917,2987,484,293,2640,5,1081,2702,2714,209,2461,1437,967,2746,1626,344,1247,1958,1874,2976,930,1992,1526,2309,2344,1940,589,2728,1474,144,532,1944,271,226,1003,774,1133,2871,2088,209,625,2056,615,288,642,888,1765,2550,392,2073,1122,1881,2526,808,730,2747,333,2155,324,1102,2848,1943,2246,929,1894,397,2457,936,2807,1646,242,122,1499,2606,936,1474,367,65,1751,2646,2872,2454,2975,904,1000,311,2138,2523,487,1138,974,2748,1383,56,1755,2486,2882,2963,1481,1570,2961,804,1076,2310,2991,1950,135,1413,1554,1925,2420,2776,762,2448,2204,1976,1422,956,2880,369,286,1971,1525,1944,2815,2826,2987,1977,1469,769,580,165,706,784,230,2616,1556,330,2498,15,2934,235,841,364,2423,2346,2429,2982,643,1936,2642,2811,529,2198,1733,1873,2938,1729,370,1258,1160,59,1042,1100,1696,2813,2489,332,339,1059,869,1415,2318,2196,2024,2889,1719,2367,2024,1123,1536,1163,2940,563,333,2731,61,23,2030,2403,1567,2129,876,1953,1724,393,235,191,878,1639,945,2894,373,2293,2109,915,1883,2157,2149,2324,212,1497,1134,2159,302,1436,2757,803,2928,2356,2050,1214,2301,470,231,1079,909,2366,1313,662,2601,2666,214,424,477,686,2409,1526,2069,1989,2246,2243,164,2511,2409,2128,583,2813,279,485,991,784,66,2576,1849,1093,1682,2995,2359,2462,1341,1278,1495,961,2816,1190,2579,624,2942,2866,2492,2152,2036,1014,1438,2020,2741,2237,2614,2963,348,2693,1641,2840,1852,2226,1708,1259,1796,102,2426,2193,641,973,947,2711,2271,2486,1992,1862,433,1521,602,661,423,103,1015,1608,1297,2719,2108,1661,2060,857,691,2112,1654,1034,2269,846,1139,2202,2147,2265,1914,2948,2801,758,1073,2128,1229,910,140,2556,1835,1590,234,2393,2495,2105,197,1972,269,2769,564,767,2052,1615,2645,47,2694,2213,2799,348,1914,722,2856,2792,1729,2806,2891,1720,1710,381,1280,288,2184,1263,982,681,1288,586,122,2728,521,882,2205,1676,200,902,2683,1655,1445,1795,1929,2215,2453,2927,2491,1144,2700,115,1036,628,51,250,2208,2511,1278,560,2653,2782,2180,1787,1882,2625,1859,2247,2809,1281,2358,198,374,1197,2102,1862,2685,180,234,2195,1209,2417,284,1173,397,762,634,2664,255,2588,768,1216,2979,567,2707,2523,768,1693,1276,2645,49,2700,7,293,2524,2614,2704,2796,2457,2125,622,2623,454,503,1887,38,1153,2681,136,976,1119,337,1504,2306,197,102,2020,2871,2246,2239,625,54,1400,157,1051,565,1928,411,1051,434,2618,1706,597,2494,437,2546,271,2309,2597,2576,1627,332,143,2548,837,2137,1358,1068,1028,116,2130,1910,1422,929,2807,2611,2288,2680,1479,679,2547,1310,2611,547,1167,1598,1706,2679,1204,1306,1756,1803,472,926,1532,2300,570,1591,73,478,1296,2014,2419,624,1282,2053,2699,1628,1902,622,1583,2308,2488,47,636,1122,423,868,1662,1323,1191,2617,1232,355,1917,2096,713,2501,2761,213,604,1596,2853,780,2360,2387,139,162,1381,2842,210,2976,788,2173,1655,391,1040,2803,1763,2759,2621,2184,1257,1292,1160,2847,2931,312,241,815,2213,2303,131,395,1880,1993,1067,2983,1648,1622,439,149,255,825,2481,2537,1516,1196,2692,2158,2878,2679,1958,556,506,571,357,2362,726,2841,1361,1640,1993,1225,699,2606,2425,538,2195,1153,1183,2390,1868,2512,2187,2041,2503,648,2360,2713,269,635,1112,2046,1987,1540,1936,128,493,2599,1156,932,694,1460,2524,1458,1926,2760,778,2873,1732,708,336,1539,2114,473,1190,908,2931,854,40,2868,337,2581,1474,2429,1007,1147,2721,2847,1514,2339,2445,1795,2378,982,2927,2088,789,2600,1035,2131,1917,2993,1273,2943,2893,190,922,893,1152,2190,2036,1784,2197,916,72,1433,2936,478,86,1276,1748,1218,135,2823,1242,220,372,2586,1825,1335,974,1568,655,1279,1070,206,2518,154,2028,1544,33,2095,803,547,553,708,1245,1288,1986,2178,1905,126,1497,733,1654,2069,78,2211,342,2121,421,2119,21,1384,1938,127,2366,2189,294,1623,577,2846,2328,2213,1777,1529,936,573,812,2499,4,61,2644,343,2998,1948,852,46,1333,1665,945,2782,1910,42,985,2962,1314,2306,2429,1978,1016,748,1949,1409,201,2029,366,1422,1262,1751,1438,1605,1239,2055,2379,1659,2808,761,1229,183,2494,1328,580,726,1477,2043,575,13,1249,448,1161,1193,1975,215,2046,2163,2402,2244,2432,2893,1107,1495,2594,2750,2842,1798,1229,733,565,1691,1132,2377,2847,2462,2142,1746,437,564,172,916,1936,1072,2704,890,961,525,2063,376,140,2141,1797,1433,1534,2561,2275,919,1333,1852,1960,735,916,1783,15,982,443,1031,1987,701,1930,1512,487,2627,1165,811,2924,154,2124,18,2206,2180,1917,2520,538,1907,587,2122,2530,889,972,2911,950,223,2986,676,2573,1833,1484,1769,562,2001,63,292,84,2892,287,1718,387,1279,2961,1600,437,731,2781,1681,870,886,982,2531,2998,1362,2684,1073,1392,1404,2131,2977,760,2055,1378,2012,1276,1786,304,2860,1781,609,1443,2633,1112,370,1296,1802,2304,1253,1034,2700,252,1782,113,492,2733,1647,1604,249,947,1340,1413,55,2201,2727,1555,2620,1781,433,161,638,2625,1210,860,243,2464,2758,468,1968,2618,2591,1655,732,402,490,1660,2124,1534,2620,1813,1278,1983,1229,2593,2919,673,831,1248,127,2282,245,1948,1965,1022,2402,496,1925,1542,361,2958,151,2335,2707,527,546,459,2536,1174,1177,2909,2105,2000,680,1050,1373,2738,5,2582,2033,829,2716,2805,1166,1497,552,2834,1148,2160,1211,342,82,85,231,2404,1988,1356,1197,750,305,2049,2865,1589,1140,611,2617,117,1444,1505,370,362,2223,87,479,196,1688,269,1648,1466,2012,12,1533,95,2639,1891,1745,777,2254,2120,2656,1042,1529,1411,2708,454,2483,475,226,2044,565,1336,387,654,1223,2825,1010,347,2557,2661,1672,876,1024,767,364,1844,1089,192,2350,1820,1758,2284,91,329,1412,1459,2196,2923,2120,993,116,2086,516,1981,1881,669,1422,841,1549,1433,2012,2011,2754,1919,359,2670,1109,15,906,2588,187,2905,460,228,1869,813,1457,936,2241,1631,2377,261,1209,1027,1379,807,2246,1908,48,1277,1192,1068,1866,1274,81,525,1874,1529,1116,988,2390,984,14,2317,2523,377,1960,1855,671,1561,123,1717,759,1080,1312,2030,144,698,1803,2209,2863,550,336,2712,619,2954,1695,961,414,687,1118,2577,257,2856,703,2596,2743,763,2798,2849,1709,2606,1235,357,1852,2259,1223,2229,937,2891,2352,1841,1531,2147,2294,1737,336,974,582,2867,2091,2520,1242,2254,949,1755,873,976,835,2954,190,2964,902,2729,1586,1665,938,2823,1808,757,521,345,307,2945,2615,1004,2008,1777,499,264,2214,1867,2322,1316,578,1430,2960,258,656,2998,2352,323,2213,2193,1736,315,395,21,364,2570,2842,1432,629,743,32,2082,1106,1785,583,1517,2706,1747,1728,2278,1257,1617,1956,198,93,926,1114,2776,1918,2318,487,1334,780,1939,1929,1921,2754,386,2249,2201,1455,1668,2184,28,1507,609,2614,2192,1307,2376,215,2196,1233,1553,1780,606,2487,1128,970,2355,1785,1608,2606,2675,560,302,485,2367,2197,2670,1128,2931,2888,2634,498,2788,1649,1904,2995,1260,159,2785,2754,1826,1061,48,2416,692,2428,1880,1532,2820,756,2337,1455,2405,1353,1871,2069,1563,2213,35,2724,2915,1449,2464,1369,1698,103,2864,1431,226,976,45,802,1056,981,1807,379,2305,2239,1409,1678,1740,2884,660,2514,160,303,327,641,2322,803,2362,1795,1886,1373,2580,1205,2537,113,539,407,1714,435,1488,1516,30,1680,259,1831,192,129,1203,2034,2450,2302,2997,186,2131,351,1850,2027,1301,1136,1253,290,1055,84,1032,2439,545,1985,1830,649,789,1147,2048,2802,944,226,661,926,1297,2955,2844,2139,1288,416,1899,65,2511,2255,1768,297,710,1415,126,2998,865,2925,2065,1115,2658,196,1948,2110,1064,1423,2949,315,2105,417,192,1724,576,2775,1636,2026,809,1158,2578,944,878,662,2189,2171,2647,1493,1669,2658,1345,1946,2677,2444,1315,2017,2928,2726,2589,204,1751,1242,1895,2850,490,2672,1471,2862,952,1922,210,2688,1878,2593,855,867,2577,2676,994,1058,2209,2949,2586,2424,1143,1058,828,1790,1409,2044,1137,1160,2498,1933,1749,2592,1445,485,842,2816,2135,301,455,751,2276,2875,1153,2297,1209,2971,1537,1550,1431,2568,2344,1125,2886,1484,2320,836,2162,2552,228,1426,656,2398,1992,1577,2719,699,2298,883,352,1624,1317,2696,2381,168,1774,65,480,1585,2864,77,565,2850,531,2452,2575,1447,2803,742,111,2939,608,230,315,1897,1710,2118,513,1755,1694,1073,2207,2934,245,211,369,958,2333,2501,432,1544,29,986,40,147,2122,1885,772,2913,615,833,1180,171,1635,193,1962,1388,1695,977,2213,840,1702,1960,2065,898,1186,677,1979,174,943,1445,1166,1069,1454,1480,2057,221,653,333,1927,1742,2421,2163,2267,9,1110,1280,903,1848,1608,1516,2044,967,2134,934,1295,1241,2351,2248,1137,892,2259,977,461,1602,416,148,1990,88,1540,2654,2646,522,1448,2955,2051,2728,2108,2220,1956,1928,0,801,817,1619,1605,2100,314,2573,2196,2334,2113,2088,1071,162,346,1753,2344,1779,95,1514,1291,134,230,439,1437,2639,2184,539,1817,1663,315,2871,1409,2818,568,741,2606,399,1629,2937,1704,2244,2838,204,2508,1463,2248,2339,2367,184,1876,1429,1154,700,335,1088,1179,1815,837,2984,953,2954,1360,1023,2364,2438,255,415,2285,2820,1990,2079,1795,874,1909,2522,733,1864,1929,2431,1326,224,2448,2313,443,1336,619,1038,1916,2670,2273,371,1631,417,1779,298,93,263,2067,945,842,519,1634,2563,485,1903,1749,812,2459,791,2505,2036,1689,1185,1792,2815,2076,2142,728,651,145,176,1585,1788,2552,167,2759,141,300,2462,231,1159,2277,195,245,43,393,2993,1810,2386,2865,2336,1320,397,2952,1405,1213,2497,1419,1115,2666,1338,109,104,478,1026,1528,1487,778,2318,535,1457,2075,278,2211,1880,2043,1906,2401,41,2219,1775,570,723,1007,2690,2572,2474,2756,1604,406,2370,1650,494,2046,2641,694,657,2196,1714,1176,1516,1900,384,2862,434,1392,2186,1606,1739,1838,1285,208,1464,1076,1046,1261,1810,2837,1461,2916,2615,1834,360,2338,2854,2981,2710,2744,2774,1687,1036,2415,2001,2154,710,1746,2317,789,315,2424,155,587,1734,531,1591,370,2312,547,27,2327,29,1885,2606,371,2146,2671,1129,1095,2591,2920,2226,2714,963,859,1221,612,2355,720,1917,1021,497,832,673,264,2943,2719,2660,1991,1949,322,562,2515,957,2005,2378,964,1431,1370,1587,1786,1958,1197,2885,1124,2129,2628,1653,1799,1601,2456,666,737,2296,1158,2606,544,431,1522,1731,2339,2511,1965,1566,2994,897,1124,39,2755,2184,977,1972,247,2671,1646,1328,1870,456,1280,296,1915,398,2585,475,2123,109,312,2246,13,1912,449,2975,1181,2035,2995,1883,1297,2608,2295,92,2814,2562,796,318,2574,2894,1784,1373,2492,1424,1179,1342,189,401,2422,2504,1886,775,1325,935,1409,1304,444,358,2666,383,1674,2552,2519,1558,1908,2640,81,1131,1620,1538,2293,1919,75,1567,2891,1155,1001,356,819,1201,232,2538,722,309,713,1680,2077,238,2780,799,1409,1165,319,1927,2180,2056,1221,1491,560,457,540,2076,1536,475,1562,1953,113,445,935,242,885,2213,773,446,1386,2689,2733,466,153,2340,263,2927,2841,1824,2266,2548,1179,2576,1887,455,1708,1745,1082,2535,199,1471,426,2654,68,1161,476,444,946,471,214,1284,1089,688,1090,2218,1738,1266,921,2012,2605,822,2507,1347,1240,40,703,1689,418,231,2493,1928,2611,2349,27,2135,667,100,1308,2978,87,2110,2577,569,2304,1006,2904,315,470,1124,1974,1638,1346,2763,670,1854,956,2743,315,2894,624,1278,344,2567,2465,1892,471,2975,2169,2151,1564,1573,1987,443,575,312,1722,2367,2544,2677,1601,213,2747,2755,904,1718,2818,2860,398,2525,57,1239,498,2962,1223,1099,626,2602,1932,315,2070,384,182,876,1420,233,1985,2019,1458,1283,1349,1821,2905,889,2565,2129,788,967,978,1397,2192,680,1311,610,954,196,1690,938,2239,1417,2244,2122,1047,1802,417,1728,830,1162,512,697,2811,360,2861,2800,1070,1511,687,1634,1086,834,245,890,1936,1807,234,622,2028,805,1142,2307,1601,2479,191,978,2643,1294,993,1408,2517,2023,1649,6,2613,580,2503,2173,1001,612,2156,1413,341,1631,1742,1524,2090,1099,684,1212,2344,2083,804,2970,1862,1663,1545,1280,2755,1857,231,1363,2512,314,755,1288,1929,2512,1527,156,594,498,692,2255,2191,2911,2495,206,1515,1385,2099,2817,1599,95,798,288,293,1332,2258,800,539,1243,1898,19,282,1606,2108,1032,559,1467,2106,2111,2206,1695,955,1961,20,617,1345,2699,2460,1925,1452,974,125,1779,2898,561,2004,165,212,2486,1827,218,1203,2089,57,893,53,319,2081,319,2545,124,393,2563,172,2235,585,453,1513,794,2642,1879,267,420,29,444,2923,2583,1916,1005,2349,2254,2481,2639,23,843,1785,2845,1278,2729,412,1256,360,490,890,2076,2458,2348,1880,2635,2583,2767,2375,2619,2868,255,2004,1519,925,2402,2103,2682,581,801,2181,1365,1457,2126,467,1422,243,982,1415,1941,1318,2552,2244,1131,2862,2391,1014,590,1501,1084,1713,2015,981,781,2802,2749,1312,1034,2312,2485,1028,399,2840,2617,2895,2715,2181,1428,1112,900,879,2831,2329,2645,1175,2652,259,550,421,761,13,1948,784,1562,652,1689,2558,377,71,2201,244,2338,2490,1520,582,1876,1436,826,2741,718,2490,134,2618,263,1631,1855,1917,2678,380,2080,1117,1375,1003,955,2012,274,2105,204,926,771,53,558,371,863,2235,2841,2201,2540,696,410,340,1615,1588,1814,1118,2679,2012,2548,679,528,2796,2406,2781,2256,1727,1294,425,2934,1860,1676,360,2751,665,171,2159,2933,1896,2353,801,2684,164,1616,2879,2718,2442,618,2215,2112,1807,750,2491,1324,2325,398,1843,1829,1667,1413,1547,1988,1480,2233,2642,971,1690,2260,708,2380,1725,2153,454,685,1992,2041,2923,317,1811,364,2923,1696,2254,1465,2760,332,1418,895,987,214,911,1919,350,1026,2175,2396,454,1656,237,2560,1701,1034,1053,1978,810,2555,2653,1965,1782,1822,2620,435,224,332,49,821,940,1975,2770,57,2814,971,2512,2833,2957,33,845,2337,711,1523,2237,2623,2644,1961,430,1529,2004,408,1936,2150,1541,725,1457,2542,2514,2637,1007,1350,2728,1719,1760,2824,1968,2388,2128,2587,301,1049,2992,2944,266,1254,1802,93,2114,2464,1136,1862,2326,1577,893,450,1880,854,2853,2667,2137,2050,493,2811,1350,2812,1087,600,1952,2050,1730,1674,2866,2697,2176,2954,938,2272,1743,2512,1451,106,1782,1787,2486,2812,2925,246,458,36,98,2548,117,976,1395,1196,1498,2853,2263,1609,567,1234,283,2842,1171,465,2576,2383,1754,1747,1288,819,838,402,855,1935,601,1658,836,1931,2555,2824,2472,1567,1465,288,1354,1278,1676,650,427,256,1343,1497,2610,917,1406,1370,16,117,375,545,397,2021,1973,1536,1491,2338,1965,381,908,1322,2238,2953,211,108,2476,949,2418,2220,2368,298,1059,2792,976,79,1387,579,394,2199,938,1196,2410,46,92,793,66,553,1746,801,849,146,2888,2020,2166,2603,1837,2201,2941,2693,1587,999,2159,513,1076,1514,270,1490,1043,1569,249,2973,1608,1054,1998,2849,2613,959,2052,1197,2793,313,363,12,1586,1083,2965,2463,1121,1454,151,426,156,522,1980,534,598,2799,2394,2053,2709,2242,211,51,1318,619,1313,1934,1805,1308,1256,40,1424,890,1639,378,1585,2316,365,2541,2210,139,2827,995,1369,274,914,620,1652,2062,1789,1088,673,990,1858,1335,539,2046,1482,2318,1140,1666,2928,1105,1757,1340,239,2901,1783,1276,1786,2555,2537,1492,2251,2956,2816,1929,739,785,1862,1323,779,2820,2692,2717,494,1625,2824,1956,1679,2049,1999,2406,2755,2622,974,621,2257,1417}

    {734,879,1246,2936,1585,2829,2798,2252,1654,2636,2389,1549,276,702,2348,2476,1933,352,1342,1125,1790,865,1239,2063,1374,1932,2735,1782,64,987,2870,1407,2707,331,1949,2543,1120,1724,907,2032,862,2098,25,2362,295,328,2468,760,569,2321,433,2046,523,2158,1494,22,2036,1975,549,137,668,729,2893,715,801,2424,2599,1313,1888,1597,152,2512,1708,1654,1048,2116,2749,1395,2858,1344,192,954,396,2722,770,270,366,2504,271,2579,1497,801,953,2430,138,1654,951,2163,967,1611,1304,2679,2286,2276,1611,619,637,992,1800,1958,409,194,1013,1160,2339,2412,234,2745,1518,1302,881,820,2885,580,1773,86,2453,1089,1560,1684,995,2642,2164,2616,2101,1154,834,2345,393,849,447,937,942,2931,1988,722,2790,1200,1772,968,1178,1623,1312,2923,1044,263,2399,2137,1399,1530,2559,1203,2507,2218,593,1999,1034,1272,1048,1094,2016,1986,941,2070,62,1402,397,1194,2018,2569,2133,616,1450,1434,172,119,2419,2158,81,1819,2531,2244,1187,1514,2097,1088,2710,385,2898,2874,1006,992,2989,2163,1809,2238,436,809,2470,21,1690,2881,2683,269,2640,2704,2757,1019,2003,547,1692,2292,471,2514,1707,2565,1029,1233,2839,112,877,2839,1703,2482,1926,2929,950,2503,2821,789,2296,1508,2128,828,2038,2732,544,2876,2373,583,1289,660,1366,26,1104,305,2993,1922,576,1415,990,352,2323,1378,2852,2713,2108,2701,2212,2753,95,2773,237,782,2534,64,2545,2037,2382,1315,2832,1381,1234,1126,1424,34,1569,48,392,1990,967,1268,397,275,878,2053,2730,280,2996,574,2893,390,1311,2026,1598,1611,2551,2734,2767,1836,2694,2710,546,2647,1343,2221,55,1808,2704,2261,1314,1503,1736,2909,1535,403,2836,1686,111,2047,477,1693,1807,2141,275,673,489,2775,1073,1372,442,2162,2491,661,21,2604,468,2020,2657,2932,305,1421,2756,719,2319,1576,1033,344,2548,1489,588,1153,375,33,1453,803,162,2655,2359,1578,542,1315,581,4,65,2983,397,364,395,1708,663,2374,137,2803,2315,2133,1582,998,2365,1377,2876,2777,1848,1516,482,2299,2436,8,565,405,935,1880,2313,2842,1992,2934,116,293,65,1531,1456,1702,876,2704,1249,1362,686,1203,739,1683,2502,1153,1312,771,2834,116,2990,1145,2921,1988,2653,1364,1608,775,1510,1970,770,891,1747,768,192,1376,1415,251,2869,1992,2456,461,1918,2783,2834,469,1636,1467,382,916,840,871,2713,1990,71,1781,791,2044,1993,429,983,2570,2236,1764,1331,912,1634,271,1760,2764,551,2168,122,84,1302,2330,2719,1478,2630,1755,2524,335,1236,930,2348,179,678,2253,1942,1290,2058,486,935,1938,673,490,491,896,76,260,2351,1591,1818,288,1619,841,669,2334,2848,1160,2674,868,695,2669,2665,2921,1825,2418,2337,2115,602,1227,2343,2512,1431,1075,2348,216,1439,1806,768,2025,1160,2569,106,1288,959,306,767,1168,2936,197,975,2855,774,2704,724,1536,232,1608,792,1478,2427,2049,1275,1367,690,2617,1583,2980,2310,65,2268,2066,217,1039,1580,1759,2314,603,1037,2834,182,2213,2948,2097,252,1167,299,1565,2971,203,2663,406,850,349,1356,444,2383,1549,1516,2590,103,1602,2797,2460,2967,2318,631,1509,186,2652,228,504,2496,2714,1559,2806,2082,928,799,510,1194,2204,778,2088,2725,2429,647,1170,1429,916,1422,1925,2922,672,392,238,989,2594,2183,606,454,500,1608,1263,2188,2691,814,2094,2546,2196,745,2044,870,1596,764,1619,1510,592,1673,1293,1378,1847,1362,990,7,876,279,2583,2711,2771,2690,542,2714,2920,1061,10,443,2862,1717,2907,790,1877,1507,1260,175,2760,1588,2549,2799,2683,1990,515,769,143,1823,1131,202,2925,67,2200,289,1124,1597,123,2619,203,137,61,2070,1141,1345,1168,1002,142,1715,1612,316,713,1500,2592,490,832,1624,2250,583,2603,1000,2478,2703,236,1791,2662,2467,551,1840,2740,2835,290,951,1683,860,1529,2385,1813,2876,1067,2902,2289,2261,2853,535,338,132,927,1038,2803,1839,942,1393,2541,1982,581,1229,2421,996,2626,2078,1612,802,58,1788,1042,1646,1724,2044,11,1355,2573,1807,2527,21,605,1017,1391,1529,754,120,417,689,46,2747,1409,909,777,461,1868,1180,1979,226,1846,936,2599,2287,413,2573,2700,2762,896,192,58,2638,1091,1328,2413,1546,2741,1895,1142,729,507,2612,2779,2290,2698,1816,1396,1450,1174,1411,1723,705,1135,2101,1156,2309,44,2475,725,1337,1152,1560,1473,231,247,2332,1599,2824,2339,226,2855,235,2404,776,936,2580,1770,2576,507,777,1873,1512,2537,1945,2167,612,2951,1146,2037,951,1301,2108,591,2266,1209,908,2550,1389,864,2271,2368,1256,36,1207,2062,1005,1762,406,1872,1506,1303,2132,1080,296,1425,2440,79,270,2435,278,2910,1544,186,2244,2147,2016,944,2229,1755,495,2357,400,194,283,1977,2529,1267,1562,2443,2227,982,584,1184,2568,1579,216,2666,1433,436,2712,2074,967,320,1914,675,2069,439,1063,2826,2565,2406,786,1699,2935,422,1892,428,1727,2182,2122,1143,221,686,863,119,658,685,224,439,620,183,1544,2339,908,1933,2471,2766,2397,993,2072,2209,2830,2466,872,880,2160,2821,805,2230,589,1717,2933,238,905,2745,2169,363,309,2364,380,886,1070,1252,1912,695,2306,580,1143,1440,1597,132,2222,2128,2806,762,1107,987,2679,2346,2404,34,914,587,207,169,1823,1472,368,866,2894,1656,2315,2131,531,952,4,2215,1284,61,1422,298,177,2120,2271,2773,2504,2007,749,309,1351,383,1856,2455,76,1150,2318,1860,1281,1205,2163,2630,2745,1062,2969,507,436,197,772,2755,419,1362,2411,825,1271,417,1093,1862,94,15,1677,315,853,1533,2800,2653,1845,2386,525,1398,858,2550,1403,1557,2392,2386,425,605,607,60,1359,1882,1865,2464,954,204,191,2016,1050,1724,809,1435,1242,2632,2224,1238,2575,315,712,665,2537,1601,65,99,2009,2671,204,1995,2121,1597,1913,1763,627,1523,127,341,2051,1,1071,2203,1070,2334,1291,1823,2302,2232,1929,2076,545,2958,2849,851,2292,1805,1937,1531,2440,1197,1883,69,2786,2510,992,1954,2706,1714,1430,1925,298,2850,2064,2543,1787,1614,1637,2554,288,1352,1506,2440,889,701,2824,1333,1154,2842,2101,1784,917,2088,1861,1593,1684,2179,2131,2785,1370,1055,485,1588,2984,2494,163,1951,788,232,2802,883,843,698,822,923,1942,2451,1751,1890,2754,713,908,1574,2029,1647,648,2966,1098,2185,103,599,1229,1864,1137,290,13,303,1656,2337,1305,997,2204,89,50,691,67,1723,2107,86,2516,2075,240,2081,2223,1655,1510,500,1313,438,1936,1516,166,2138,1985,2512,1762,1446,1187,370,1717,2061,847,1808,2566,2752,485,1543,197,1510,2681,1097,1749,2812,936,768,2712,367,182,1700,564,1325,65,954,1374,1409,310,2575,1863,2881,767,1197,3,980,1673,268,1056,2114,2108,1117,600,1884,1893,2575,2442,2462,181,1321,856,1625,2287,1858,1726,1929,443,661,2480,332,1657,207,639,1129,1783,2558,805,391,1967,1619,966,2577,1108,1431,493,1920,666,2195,1808,2681,1197,1215,1026,481,2601,2806,2080,2059,1959,1366,1027,974,252,285,1862,1127,170,480,965,2274,2509,517,2281,1977,423,40,1862,2998,2350,1590,35,1590,2355,1599,1581,2437,17,870,1804,266,396,2515,2484,1580,2364,1755,476,633,1130,1867,1148,194,1162,1816,403,5,1613,1595,1764,2813,2500,443,329,2621,2231,975,2778,931,1633,1659,1997,1169,2460,2271,2489,2613,403,1813,2426,870,1663,2162,1601,1877,75,691,984,1092,345,716,2586,5,912,502,1320,1519,80,536,468,1836,1996,620,2400,2481,210,2279,2279,2815,2771,2739,1015,2464,2262,1334,957,659,1541,1709,1433,1282,151,1794,780,149,2144,816,1795,248,561,2002,819,2147,925,617,74,924,1956,1441,2757,1418,105,1008,234,1126,744,99,736,2921,389,1195,1765,687,2553,397,2339,1516,1472,935,1946,1864,1986,1206,1416,2105,2483,1630,967,2301,1029,2318,133,668,1860,2145,1741,1091,1151,1725,270,1409,1137,2877,2141,2875,1226,1877,2992,2198,355,2864,2575,1692,2367,2106,2887,749,944,2031,2867,1141,1076,2684,1382,1164,1493,1812,565,726,1794,801,2469,707,1026,921,433,1508,2918,2631,1582,721,1382,2949,928,463,2479,2850,264,541,2841,1491,2331,595,326,686,1265,518,2611,2885,1339,1700,556,2653,2562,783,570,774,1175,2816,1920,2974,1560,126,2414,2036,2304,2881,451,1104,1345,1008,2793,288,2036,1457,1357,1896,887,1883,2571,2289,848,2004,1623,1,469,364,2201,1330,185,2537,1745,2153,2002,219,102,1905,1912,1936,912,2906,1128,466,1947,2094,1279,1381,1841,119,288,1478,1828,501,100,452,2645,1797,1005,1902,1655,951,960,1648,2433,107,2712,2831,571,2876,553,2641,1405,846,1761,1334,2004,738,1918,2997,155,278,452,2679,2130,2737,803,378,304,2205,209,2234,2648,2726,1013,2369,680,2058,2791,1516,530,1558,2773,2044,1592,211,2005,2847,2861,218,2781,2890,680,2728,623,126,2446,158,770,572,847,1244,2557,396,101,37,2189,1936,1746,1188,1091,62,2194,745,1926,289,1091,799,2228,1380,1964,640,2533,1488,1397,2605,1313,290,1790,1078,2441,2923,2968,869,2148,1124,1309,64,727,96,529,1992,2016,2719,1858,2815,2975,1693,1832,613,1931,2217,2204,293,1755,753,766,1690,1640,1950,1189,7,1319,980,2481,1073,2265,2131,58,1470,1810,1204,2177,1572,505,2498,648,265,1224,2649,2561,1025,1101,2394,304,452,1956,1969,1296,1442,1406,2006,901,1284,226,2859,312,2254,1348,45,181,1020,2915,1582,492,1929,1984,1647,1982,2285,1052,2168,1413,1611,2720,354,2201,318,499,2502,918,1870,2227,472,1841,1994,894,1077,2279,273,951,384,397,1753,90,2841,1407,834,1478,1529,2595,1084,841,113,1053,1296,204,566,941,1793,1495,127,780,2163,530,1313,1184,2935,2494,1745,1562,1225,1949,1968,2418,2687,1404,837,1862,2284,480,57,2384,1103,870,305,568,2917,913,2235,2444,1282,1392,214,1650,226,52,2521,1455,951,1782,2513,1987,1682,991,1027,118,2598,1694,1256,189,526,2386,253,488,2980,2085,1768,2501,676,2551,1347,797,2996,2904,2881,127,1303,2957,2382,576,1901,2272,2007,15,1606,2344,156,2052,1572,395,2012,2392,2556,325,590,2054,2840,507,409,1329,2548,2261,2476,855,2264,274,591,1711,756,664,254,1608,1343,2172,858,568,2908,270,1853,1217,2564,279,1432,1344,296,1536,2233,2160,1319,2936,561,281,1172,83,537,1652,2275,2363,2445,806,1070,188,9,2141,211,2106,2202,205,1182,309,796,272,606,614,1705,1066,2099,371,2108,2723,511,2371,1302,2312,426,2895,2968,2246,1464,1154,2068,1630,1753,2701,704,2620,1882,1837,2569,1083,19,290,969,46,823,270,791,962,1280,2264,1639,5,1962,1861,553,740,288,2795,619,2743,2196,1422,757,308,2993,312,1853,2789,261,1081,810,1791,2705,24,1926,2848,1978,2891,1726,176,2184,2930,1327,2291,1909,596,439,1899,2896,474,1296,1767,1451,765,1851,889,2076,1987,1300,1926,512,1085,2092,2342,1060,154,696,2768,1965,959,1059,1771,1621,1683,2512,1844,656,284,1603,2734,29,1736,159,324,1799,198,1157,2264,119,1681,2883,550,1579,646,2637,1280,605,441,2927,810,2582,103,110,1104,1702,435,2170,908,404,97,2946,146,1686,2071,2490,914,1483,2040,722,1006,2499,402,1034,286,2253,394,1478,2936,1873,533,392,214,514,576,2551,498,693,554,269,1184,705,2998,511,2613,1801,2886,1925,2969,1803,1231,630,2271,2537,2464,146,1396,2686,2494,207,95,1841,2707,2903,403,2810,2650,1281,2136,1262,1502,304,1794,1313,953,2354,1113,2143,2022,2322,1712,247,1150,875,23,1875,543,1230,2395,899,2513,1413,2188,1486,2502,1229,2947,982,2586,2075,388,1841,690,1371,2936,594,173,1060,1778,1462,1516,2050,525,129,372,979,1144,492,2987,953,440,1878,714,1516,2041,439,1554,1410,262,1143,1343,2947,2962,189,1486,2522,1626,2127,1985,1509,1708,1430,2771,1631,2539,259,1584,2004,935,288,1787,2800,2886,466,1478,1368,963,2912,2500,2910,1632,1298,2659,2516,1888,2979,419,2434,158,1074,1548,2857,2914,590,722,816,1041,359,2724,937,1675,2039,1608,321,709,1250,600,2061,2158,1051,283,384,2686,414,2372,2313,1032,2721,486,2095,548,1041,47,2706,2161,2337,1703,1737,1266,1842,1537,2712,2921,2464,1078,1591,1412,1666,1427,788,1889,1306,2625,1972,962,1030,2418,428,2521,1608,144,608,2775,802,1918,2828,1414,77,1597,2,116,2806,2503,1415,2457,2237,1137,372,2562,1718,1757,334,136,2042,581,295,2498,2104,1181,2865,95,1606,19,151,1497,1557,676,2738,502,207,2065,1642,2370,231,1650,2971,2530,2467,836,1843,1080,802,2578,1199,2473,645,1219,1298,661,2675,866,2843,1965,1746,2765,2804,2847,1390,1162,2794,2174,2481,1209,749,848,1652,1774,2264,1911,1810,1065,1396,832,1061,2398,289,2856,916,2901,339,945,927,1280,1,2184,2670,353,443,2609,2736,674,780,1057,2577,1618,2787,2512,1552,1019,2320,939,680,1286,1079,2241,2229,291,2679,2742,2338,2200,508,1490,2750,2299,2934,51,1667,2894,106,218,227,2537,2894,1034,2108,1270,1237,2275,1721,305,2576,2271,2985,2225,2243,1144,2820,2923,1966,1688,1955,1419,224,130,739,1697,798,77,1248,1571,1514,2759,2749,2934,2607,2705,2866,762,734,2408,2612,548,1284,1873,2916,2237,606,31,2683,1222,1208,818,1245,795,2240,224,1700,1417,1697,747,1282,339,2446,2668,757,780,1315,150,2586,1177,861,1251,2013,1529,704,300,2636,2447,2695,2972,2306,1832,1805,2086,2777,2624,293,2859,427,538,1298,337,492,2897,819,749,1580,1961,492,1766,683,1634,2899,1231,2819,337,825,2950,478,1630,1841,109,2176,288,1577,789,159,1290,1923,2654,1659,2088,229,242,1671,2087,2010,2497,2108,515,2433,931,70,1430,1198,1750,1287,2490,2809,1291,2498,1919,1149,269,2449,2784,1963,1088,2244,520,5,1033,936,1045,315,2446,2177,1304,1394,1755,2205,107,1083,1644,143,464,1320,746,996,2084,2512,904,1967,2850,723,2532,1202,1571,682,2996,933,2898,1424,2045,1256,2988,2179,1808,2409,902,1776,2162,2229,647,319,849,178,2731,1945,555,948,492,501,504,1877,1869,2661,2131,364,2651,61,2357,839,1278,198,1678,2595,231,920,114,2349,644,383,1299,1594,1597,1647,2075,1959,2218,509,1948,289,166,535,1685,2926,391,717,838,1012,462,2485,1343,1269,366,483,955,2165,457,230,21,1752,1802,2378,157,215,2370,1111,1965,1018,2999,2755,784,2380,983,1227,1389,1264,2601,1670,121,1990,2923,1279,1124,1137,1468,1807,2822,2011,1817,540,2642,2878,164,2506,1385,2932,1529,1819,2871,576,2851,629,2362,1987,839,862,1255,68,1992,2537,2917,1744,1401,2407,1962,2164,2901,824,2495,943,1524,2924,1315,2196,1230,802,767,2700,2772,2615,1572,182,2723,939,2841,1114,1607,787,1279,2006,1475,1271,939,332,1990,2584,403,245,1956,2484,355,944,628,2955,2117,2337,2357,2216,905,1334,2905,899,2673,1011,1474,1154,1645,827,1164,844,746,2901,1835,1220,1104,557,1581,1664,1154,1473,2322,1716,2060,955,2512,222,176,2651,1726,1705,87,443,2222,1009,1931,1615,1118,2947,2347,705,11,1754,2357,2528,426,2866,307,1234,1227,2407,2982,1292,1276,1957,1397,445,524,1735,2131,1936,241,1296,310,2959,892,1597,2223,1455,2451,1985,1610,1958,225,2382,588,2147,948,1651,1683,685,2280,357,1043,2997,2821,1096,637,932,545,1476,1643,990,2120,2361,1273,2479,752,1728,1053,277,173,1392,884,1848,1726,126,1542,1228,2720,1686,2157,2617,817,1717,2782,1104,1430,1409,2226,1588,832,672,33,630,2477,931,2900,1912,1238,2804,1616,884,2140,826,2341,2311,792,246,1917,2629,2571,1410,1197,1496,2210,2283,370,1551,1806,1954,2093,2999,1773,662,1412,420,2270,1604,1485,1432,632,1575,2800,1709,1230,508,2004}

    72

    215

    Returns: 99202102

  67. {2645,356,2055,152,1111,2734,23,771,2629,360,1579,912,985,1162,218,34,2429,1020,2446,998,663,1132,64,689,2232,2571,2379,1690,2107,2965,2469,2338,1227,529,2591,930,1902,1643,2575,1130,1701,401,2630,1683,2891,1438,2861,2878,233,2380,1546,2866,2501,2508,2123,2147,1302,416,1621,569,2488,1298,2621,118,2655,2817,922,2702,574,1429,949,2386,1418,880,1166,328,2204,970,2167,1602,2133,64,1934,1906,519,409,2909,442,2610,2508,2648,2401,2555,2265,800,921,2682,902,1071,739,2535,752,1595,48,2132,2413,1016,381,2559,1478,804,1409,535,549,2221,532,2724,361,1233,878,1959,1819,1774,261,2111,411,1149,961,2724,240,2460,354,1660,2843,2488,1100,971,2630,300,2254,490,2820,2829,1952,1256,1741,798,1344,298,250,780,1109,2914,125,1458,186,186,2161,2673,2294,1817,1344,2560,2323,927,2794,1155,2687,3,536,148,416,882,1456,1724,940,391,2146,865,2185,485,1878,2883,1467,1048,249,1100,278,398,1473,357,2129,2440,2866,1050,122,30,995,2135,45,2715,2159,587,17,2647,2951,1496,920,2171,2012,426,860,413,1251,1552,2519,419,1778,1760,2354,493,391,2221,1499,2622,1550,2794,1313,780,730,2000,1416,1998,2845,1242,173,2637,2458,675,649,1063,244,1132,338,777,2185,2305,673,903,1330,491,2459,276,1614,916,2195,1769,2742,330,545,890,1310,1676,1421,322,928,1995,1864,2509,2021,2981,235,809,2768,209,155,81,75,1770,477,2597,1290,2331,1307,805,1615,1153,219,621,1315,567,239,1345,1690,944,2190,1851,1612,340,102,2163,86,2240,2768,2279,597,149,456,2529,1713,1023,1173,2219,746,223,55,1643,990,264,1724,2540,1426,846,1486,1378,1185,2320,1813,1875,2631,983,326,644,913,713,1279,2591,2019,2044,560,1535,435,2741,206,2630,2548,343,2136,1487,2187,1940,1273,938,2487,2485,951,168,2391,969,2797,2912,1318,2915,2150,2225,1488,2441,262,590,2271,1868,2085,789,1159,971,1658,1516,2827,1639,2393,285,426,1085,2311,2642,1358,2491,2789,842,2170,1870,2025,1592,1057,853,2558,2366,1231,989,715,2632,926,1088,182,1325,2657,1910,1392,879,601,105,2635,2926,1771,2701,1399,1115,1299,1466,2653,2107,180,1756,738,1734,2026,1031,2849,1209,1354,2991,679,2846,1136,2133,869,301,2296,1666,2931,2850,2756,1228,2165,1748,2372,1099,572,1364,310,668,253,1360,136,587,795,1984,1259,948,472,2273,2712,2440,2871,1387,1051,1582,1768,622,2842,1893,1450,1458,1439,1700,2288,1768,440,2202,2728,2076,783,1634,1008,841,1482,4,1083,2577,2618,182,1244,1292,1134,2993,1580,555,2190,553,1501,2520,544,1482,1490,2744,2920,1097,489,1842,2383,1823,2535,278,956,21,1230,1891,340,59,339,2750,2370,1749,2745,1754,1457,855,2436,824,1673,1502,706,2119,52,2422,1946,2477,1951,1459,1395,1133,746,2202,1577,1553,1590,1667,1662,1196,2744,2645,2733,2057,2483,208,1293,2324,155,1751,2841,1360,72,2066,2632,1901,999,1753,2154,1482,2440,1618,2859,375,2501,1740,2894,982,908,356,81,2662,1586,441,2034,55,182,486,935,2401,2391,270,2034,1252,658,87,1419,1357,1313,139,1211,436,1105,2927,1750,2073,709,614,376,245,2222,1504,217,2517,1308,1026,1108,1491,1166,2997,641,503,761,1904,1917,685,1508,249,1554,1258,2228,2330,2355,637,2644,2097,2362,1635,82,797,2078,2032,2761,133,1859,1363,2097,774,1899,1062,2371,380,627,1853,1859,585,419,2831,1663,2034,1773,1747,1862,488,2985,1758,672,2304,2020,517,151,767,2340,2470,470,194,1545,1615,1900,2681,1943,1575,607,18,2208,906,264,476,266,507,894,2598,2724,440,437,1742,1005,2589,468,338,10,580,2189,1922,2474,1920,2227,2809,2359,63,1222,519,2261,1996,1896,1487,1242,3,696,1627,803,385,573,578,2833,2940,2936,1385,2178,1329,1507,1631,363,760,331,142,567,2820,1627,501,737,516,2902,1196,214,2188,1346,965,2837,406,2177,2386,1485,2733,958,1965,891,2438,210,148,2164,1333,987,2410,661,1323,2396,2765,992,153,892,94,1467,1393,2125,1764,2968,2259,1735,463,2076,2471,2162,1083,869,849,2033,1769,689,1551,1144,2390,2120,105,2677,191,1074,624,1775,2316,2718,94,2027,265,2583,1701,650,748,1219,196,364,1397,2696,609,2779,2862,2494,1230,2565,2767,142,2479,101,1054,687,50,363,1898,2016,402,532,2123,1127,2270,1304,1191,1283,799,2795,2713,1104,2864,2436,2417,2619,2300,609,2376,570,256,2894,1996,1091,351,1350,2584,2897,2390,2368,1108,594,1649,1232,835,632,2058,877,2450,742,2293,1,2231,950,1685,217,71,182,109,1691,1605,2793,816,1524,739,1949,249,1196,674,1901,2967,1183,2129,2643,628,2083,800,1282,1286,783,109,2170,954,919,1857,926,964,1188,1361,2219,262,437,2401,1227,764,2989,2809,164,2234,711,1482,1008,2438,14,2056,2192,2695,2845,1398,2907,1427,827,1647,1076,2177,2230,2542,274,2910,2275,2602,2834,2766,2049,2743,1081,947,817,2329,315,684,1504,707,716,1370,1217,2469,1619,262,179,2339,11,1430,2414,1244,2528,753,567,1566,2027,624,252,1687,1670,1516,191,2571,1267,2930,2550,242,705,2978,1662,2082,145,39,2982,2290,2034,2808,1185,649,1961,2014,2500,366,2328,11,1036,353,1179,1059,441,347,127,1792,1061,2846,2573,1936,350,1896,400,806,1661,2932,2435,2222,1015,2766,395,1433,467,106,2860,1203,1000,2933,2976,1170,2572,274,1394,1126,2169,1584,2847,1842,167,1976,1361,1904,896,2543,622,1697,465,1471,304,875,2219,2115,1686,2649,1698,2077,931,2030,214,2785,2342,1871,569,2910,1368,100,2573,747,1585,27,1951,2678,2470,1436,2952,1843,611,733,2831,2111,361,2463,2972,2737,870,1484,2014,2095,2483,2214,501,1348,2060,2419,819,2755,698,2398,1089,1768,217,1904,81,1442,2181,2985,1616,2593,2377,2180,777,1699,140,1258,239,1972,103,1243,1393,2260,1240,2161,1230,200,2979,2640,1921,2607,2931,994,138,2785,2411,623,2691,2600,1053,2805,1799,22,1440,1238,2893,380,1490,2286,2858,2630,1195,396,1069,2217,1006,2917,1382,2316,1547,2996,1688,643,1710,2694,1897,2298,838,1123,1958,2534,2930,2486,424,193,115,1076,576,2220,1783,731,7,2965,1600,1978,1284,2247,1576,2320,480,1140,2494,1919,1895,2371,2381,2979,2138,845,2448,1999,2924,671,2169,1867,671,1574,1880,2226,119,651,163,1,998,1377,2995,300,2408,2255,2014,600,1162,1530,632,318,2616,1134,853,2659,1795,1360,1546,310,2510,464,1379,1569,561,1069,702,313,93,74,418,21,2053,1933,699,220,1796,635,1460,1522,2810,2445,1098,1283,1138,1319,1100,1289,1922,63,284,2952,1295,2028,1901,1285,1374,2980,2190,2235,1629,1926,7,1876,787,1991,2722,699,1330,567,1113,2640,1721,1718,2368,2311,1320,141,2026,1946,334,1446,2232,2834,2605,185,1468,1291,2941,1965,1689,1069,1472,1958,440,2523,754,1792,1929,2792,2194,1483,1424,1793,1561,1374,1832,1461,1510,1197,42,7,2611,1313,1556,619,1403,1113,1556,300,2494,1185,187,2386,2285,598,351,2055,1733,2044,2019,925,1091,67,2670,1367,2513,2209,2639,1719,107,2169,2859,777,139,1125,1831,2604,113,1012,2429,2655,1586,2933,342,1651,1868,362,1003,368,1417,2514,2538,1652,1382,222,647,2306,842,348,1883,388,2830,1180,1402,2347,29,2460,813,2267,849,345,2199,159,163,413,420,2341,2451,691,322,2111,676,1229,326,2516,735,1121,372,622,1026,1602,760,145,2806,2420,1812,1065,1711,1492,2201,2407,2364,2690,2845,2221,2922,2810,1280,2161,2039,2177,1516,1838,246,1068,1180,1186,302,2384,2900,2854,870,1477,2043,187,1452,1578,2197,2316,1724,1439,483,427,2122,2425,682,1819,2461,1043,2870,479,1386,1585,461,2671,2675,440,2819,1655,1301,601,2207,2463,546,1042,982,2453,1631,751,1602,838,2854,1419,2041,2959,532,1134,1066,1225,2088,2572,2489,2037,1916,2934,1253,2660,2270,915,2995,910,329,249,2321,505,2515,812,1234,1430,635,10,2734,1044,1611,2906,2643,2026,880,1362,757,2628,315,1839,524,2730,1574,2972,1432,787,1193,191,1805,1906,1980,396,482,1779,1000,303,2571,1009,451,1378,142,2428,278,2622,2726,2834,2203,2052,2392,1137,1606,536,2176,2132,1763,1262,1573,874,1087,541,1642,247,2172,1910,1444,1100,770,201,1888,527,2464,653,785,581,880,548,306,1143,772,2999,1384,532,904,1372,2325,2655,1995,959,2898,145,843,2014,1692,2006,2699,1827,1342,1077,2280,1929,2490,1091,2453,1047,1476,1939,1068,2541,859,739,2492,833,297,212,698,2973,1297,750,2371,605,2475,166,2385,268,702,634,1444,787,1844,1154,1920,1328,1320,2495,2317,638,647,1863,2579,1218,1133,1813,2248,1423,1985,716,2988,2916,762,1,134,2434,1035,290,1252,216,2793,1965,1511,2240,2823,1113,2688,2813,853,2656,43,790,1555,798,1890,754,1905,2404,1526,1563,2517,2989,548,257,606,1808,472,2047,2656,1819,415,2322,874,2648,2630,1978,1024,789,982,571,1923,2451,2575,50,1098,2461,2380,54,1022,2107,2879,798,18,971,2585,2987,1835,2445,1728,2023,1919,1556,469,2549,826,2162,1210,893,462,2849,1351,2690,688,1476,2219,2337,2233,718,1594,625,427,2358,11,1179,2865,1449,2749,2793,492,2010,1053,1173,572,2702,943,19,1901,2897,1946,1837,2101,1993,2323,2746,778,1068,557,1727,521,1410,1404,2802,2721,508,1427,989,1242,1145,1248,1465,2652,1167,283,280,1040,1903,955,2870,281,2863,465,2061,937,1960,124,1089,2668,756,494,736,2461,255,1985,260,2928,592,1156,580,2099,2797,24,861,72,108,1468,2672,2744,1724,52,1103,945,1511,1993,1190,2574,1904,1044,1140,577,2790,445,2186,1036,2154,2654,850,1115,2016,586,410,1688,1803,2334,114,1635,2454,1638,1524,1390,2367,2972,1237,177,70,2692,1366,2442,1353,165,2430,1511,2333,1886,164,1476,1089,2340,1841,471,1489,170,2043,1007,471,2059,33,2326,1810,1218,1464,739,2108,1884,720,2947,1925,457,339,2461,611,611,1963,946,1049,2245,2518,1062,1940,2436,2209,2832,2480,2945,1789,240,1593,1627,949,2685,885,646,1498,923,1241,2780,2038,2451,2533,1519,938,367,2029,1546,2107,504,2942,2164,655,320,2021,1495,1085,1767,2890,2865,2988,2691,1457,2757,1874,2369,2099,429,1323,2313,2798,276,1204,1179,2196,784,1615,2962,991,1032,1322,1362,209,460,216,962,346,1069,1437,1086,1268,1506,2876,238,2866,238,595,1830,1704,88,2084,241,2357,307,81,1089,2110,1272,2823,861,1584,1513,1554,639,1655,1781,1536,377,2198,1562,2919,108,567,2290,980,2804,652,2530,659,324,1367,1966,1445,1888,1855,1051,2330,739,263,2630,693,1941,917,2291,2109,920,2920,2071,1773,1670,1133,1368,2859,2141,1774,2156,2343,1679,253,967,1031,1852,1076,1553,432,1784,1551,2112,247,799,722,2278,709,1389,520,2165,2066,1707,678,2689,423,182,559,2553,1746,2418,1407,1108,407,2773,1376,267,1763,2445,676,2008,170,1640,465,2967,13,2108,1497,2026,1069,1879,2272,1664,1550,2638,916,2860,1386,1434,1802,1330,2031,104,2965,2408,1709,840,129,40,63,1992,1110,1736,2985,2146,1807,2848,1033,2559,1062,2721,2713,2528,1319,2629,795,1337,1389,2440,1545,379,2527,602,110,1283,303,459,2675,526,2320,275,781,1795,699,854,1581,1229,1789,704,28,2350,1810,2874,89,1183,1955,2462,345,2994,217,2521,153,374,339,1657,2015,1588,60,1728,1637,2525,1511,570,1239,2630,90,707,1676,1221,1868,1946,87,267,1417,1343,2823,720,306,1576,242,1365,914,1051,1753,2125,2893,1538,1740,175,813,1308,157,1343,395,2907,1498,2340,1744,598,1382,767,2288,2970,1559,2757,1290,548,2592,2939,2761,324,1046,347,1390,1869,83,1869,1320,1671,146,1638,357,2545,2502,1631,1793,1549,2944,2463,2156,932,2030,2822,557,1618,333,1316,1471,1632,318,2720,1121,1878,2839,2665,2369,2550,1068,1511,1577,909,784,2019,2877,1591,1278,1801,1935,1309,2925,1797,2723,1072,1713,1885,2865,2605,2177,8,2693,1796,2938,2720,211,1834,2117,2844,2246,2177,1657,415,2136,342,896,1242,1010,2391,431,689,1650,1342,1302,551,2688,2800,1438,922,1308,613,2813,2248,1820,1726,176,931,1398,486,130,487,1051,959,623,1323,2711,1386,2797,2960,1782,2463,2278,484,2649,2187,721,1009,2100,119,80,1312,431,1314,2512,838,587,2014,1852,1910,1459,1999,964,1589,2769,1291,2405,671,2897,1230,1029,914,1328,65,66,1103,768,1255,1374,2387,512,2264,1444,385,1695,2847,2248,660,945,2603,1064,518,2772,2529,1023,95,980,701,2365,1588,2213,2720,1507,1138,1237,2815,2015,774,1516,2137,420,19,372,578,2263,1957,2834,259,1669,2080,1962,1943,2626,672,40,2938,1759,1053,2351,1208,2184,1713,2793,1845,2660,2074,2457,2686,1578,478,277,967,1242,2332,1069,1731,1915,1979,1335,2591,1776,2252,1675,1474,1350,1576,1128,2340,1649,911,2720,1642,99,2666,1811,300,1082,444,1610,1199,188,2954,1922,2101,1661,1662,1329,1740,1536,2818,2556,1525,1419,2496,858,963,187,846,2067,1649,340,423,1015,1350,1356,2777,2905,314,2499,1441,9,802,1294,1027,170,686,141,2109,2845,892,1283,1932,2435,1106,1965,118,2751,882,2767,699,251,55,1296,2782,654,2672,267,164,1769,1873,438,1019,1676,1435,78,2930,1828,2484,1730,2436,2738,777,627,177,455,1944,321,167,325,686,2948,830,2831,2494,2892,1504,1481,2808,274,2301,2648,996,2465,272,2912,1621,91,2725,181,2018,2808,1478,677,2327,2890,1370,1928,267,2390,2392,1138,3,761,32,1623,473,2285,576,1737,2282,174,2307,1590,2252,706,670,711,1659,1599,886,1501,124,1059,1859,2908,461,1908,1839,1493,2707,872,141,182,516,1100,1293,1788,593,1237,382,41,143,932,1633,1868,2219,374,2107,2797,2131,2128,741,19,834,1592,543,439,1604,576,2187,725,1340,1968,688,2422,15,2507,861,1166,437,164,1732,1175,2277,2873,823,1437,780,2526,810,2852,2587,599,349,2867,184,975,2333,813,451,847,2375,1965,1447,2442,1469,616,823,373,509,848,2260,380,1371,1085,521,1068,664,1635,85,2835,2903,2808,1606,2930,286,1009,1943,2672,2162,861,891,684,360,267,2752,412,2965,2586,852,2740,1380,610,2948,1574,1361,2854,1558,347,754,809,1111,1954,2648,2320,1413,1678,585,1840,112,170,2020,2019,2471,823,1962,332,200,1620,994,112,2142,648,16,2737,2086,2990,2529,994,2553,624,1989,655,591,1532,642,1094,1406,2397,71,877,1105,227,1321,2503,2449,1794,112,658,1350,2763,1463,2482,365,675,185,824,2631,1762,2433,2331,928,1523,614,948,2466,2337,1681,2956,2534,121,2631,2019,760,1684,1413,1068,1922,1746,690,2616,2196,836,371,2791,172,2775,360,2909,2505,180,2473,1779,1281,1003,2969,1620,1809,228,1699,1915,886,959,1341,403,1475,2029,338,1818,170,2615,2209,1281,2482,2592,1624,1479,1962,2078,1352,2713,764,2267,567,2409,224,1332,123,2562,2074,315,461,1664,1011,2325,684,495,1683,1331,176,129,2129,1274,296,1216,46,1394,2433,1,35,1747,187,2520,271,1192,88,1448,2109,1273,1921,2138,2789,914,2232,1183,61,202,2344,883,792,283,1905,349,2374,505,2670,1954,1443,754,2707,494,576,2651,1186,1585,2155,2258,2138,1872,1252,1564,2925,2016,773,427,612,686,2674,2875,882,2720,2880,452,511,887,765,2727,2556,1568,321,428,1613,1058,1476,1200,1767,2314,1602,766,1728,1205,2244,1927,736,96,1341,1381,2535,1028,116,1398,1209,1869,1129,1067,2670,2619,1967,674,64,2367,2669,889,2630,498,1869,1002,2500,2481,2848,1301,446,1123,1027,616,1307,1977,2027,55,1990,576,811,1887,1421,2724,726,712,2998,2663,297,2295,2048,2166,2699,2325,1247,1026,2110,793,2857,2690,720,156,2630,344,2536,1472,2441,338,1997,567,2704,2553,1022,1936,2868,322,1696,1512,2618,1877,2129,1533}

    {311,2753,1005,2529,2319,998,832,117,394,2810,1428,1859,1961,2467,2187,2953,2359,1319,2129,421,2929,271,322,1428,686,1620,1276,2470,734,717,827,1881,1309,1626,1950,1818,1958,423,975,855,2935,328,853,2710,2947,1499,697,2952,1638,2252,140,1765,1723,387,2759,516,764,1710,2153,1958,1350,2519,2201,2148,1326,226,1907,2694,1750,431,1804,1904,1347,1923,1603,2937,1889,1102,81,2855,2952,1339,888,2904,1370,443,1349,1518,2357,438,1257,190,792,438,1592,636,1515,195,1636,1847,615,883,2501,544,1342,850,2938,2337,1517,2376,1513,75,271,2564,542,1055,2873,1714,2253,2664,736,73,2708,2493,2736,1649,2343,2756,2803,2588,1300,1061,494,2855,2605,320,2257,1148,2442,1172,2952,178,1736,1090,893,1015,2030,2052,666,1458,1431,68,949,1657,212,1401,2079,2058,137,993,2746,2807,2668,645,2017,657,2190,1622,1958,2511,2054,158,2799,1614,2523,2796,1864,848,2737,2091,2141,2223,2684,541,2377,500,2291,1554,2590,174,1112,2406,1294,2764,776,42,2950,1229,2220,1824,2168,640,1598,60,2613,2729,2471,1122,2934,2164,874,687,2662,1766,1978,1259,2814,2430,1709,173,311,1201,2168,2472,1361,1774,1161,433,455,1565,569,336,1635,1073,18,2338,929,237,2010,66,1507,1319,2328,826,1084,1251,753,1474,1847,465,906,2130,205,1476,1117,731,2092,944,2353,655,2913,2465,2445,988,667,973,1368,1023,2106,14,81,660,2149,2177,1414,2525,2395,1702,2070,1627,1593,69,564,986,2164,2103,1348,2920,2228,68,408,2711,421,2881,1329,2447,556,2564,495,2931,1567,1710,438,2471,2594,1394,2155,255,2463,822,1305,693,1165,604,2107,1974,516,377,1045,2658,2833,2780,390,2770,361,2429,2401,941,1581,2783,473,2161,1708,274,502,538,864,2180,786,1147,256,1901,1827,216,2561,1643,2542,92,201,2392,466,744,2723,2232,1386,2837,644,1329,422,2495,98,843,162,2972,2565,2252,2289,791,2873,720,1947,2898,270,1700,392,2947,2241,635,2697,15,1133,1739,2018,658,2380,169,1525,1993,1755,936,2767,2185,2024,2668,2360,2446,985,182,1059,2570,1277,729,701,2102,567,2044,1924,230,1133,2537,2510,2134,1027,1766,2751,1806,2308,388,2048,2816,1188,2422,1546,447,2182,748,2200,1882,1175,2021,1525,2161,1858,2077,2832,2312,2058,1363,453,2912,2818,497,2429,801,1288,952,2141,1677,528,1561,81,1842,761,2172,2896,1595,1607,1296,854,646,2514,590,651,1000,2870,55,2562,1529,2651,2023,1232,1294,129,1580,2750,327,1070,2033,519,1901,2035,898,1597,1971,2359,305,520,2539,915,2967,2447,2919,627,45,568,2513,1339,2826,160,2224,1295,1476,1749,2683,2766,2758,164,411,1586,1210,582,2620,943,15,272,1390,850,1860,2711,685,1370,640,1157,2811,2190,93,77,554,1594,1665,31,2979,2744,2035,242,2645,2899,1761,1596,611,2438,1767,2034,423,1283,38,1207,2026,1228,1183,2890,1913,618,984,1646,2356,2130,1904,1137,2404,1102,2618,1017,2818,1765,1491,2218,1378,2416,499,540,2630,994,703,18,120,583,576,1633,417,121,688,1307,2440,2853,2094,2813,1726,2108,1053,1004,1253,530,2051,2918,1384,1189,592,966,368,698,75,1265,666,691,267,2256,2612,481,1213,1915,1975,425,406,309,914,723,302,1454,2895,2922,2723,18,2751,2087,821,1101,1595,128,2365,1269,1571,909,2733,585,850,899,169,218,117,174,2435,1443,602,1956,1743,40,2516,1798,1430,1777,1319,1676,2394,2210,1846,1561,1346,775,2971,927,2567,658,1986,1369,109,1332,2205,2359,1959,2746,2578,226,1022,1904,2400,2735,1581,1089,2561,697,1513,2322,1588,2670,2563,18,1037,938,629,2429,1226,454,164,2379,2543,316,570,2680,242,1877,1584,529,2428,292,1066,1169,2311,39,1431,2117,34,2490,1922,2218,2225,2784,1911,241,1947,1360,2590,2965,1426,2051,2281,1877,2222,1383,869,565,1098,2382,1935,1675,1972,887,832,2851,1408,1519,1239,2421,2116,2396,322,1152,2168,1805,1352,2336,1299,972,477,2121,2246,2795,2007,1645,1622,1577,2328,2248,976,2582,1066,1239,2770,384,2645,2299,1587,1130,871,693,337,1556,1531,2595,1915,2646,1200,1635,786,1287,352,1283,686,450,1654,2576,1193,364,427,2246,1848,2908,1316,2610,1201,310,1236,1936,43,701,2044,683,1830,2010,818,2802,2644,2368,2482,1283,2998,671,2378,1212,2239,1989,1078,1904,982,694,2429,1152,522,2797,2616,1109,2656,496,2746,2316,681,1664,225,1987,1482,1153,2268,2192,630,1320,1777,25,2402,2423,279,1160,1255,978,2649,2818,538,2202,2292,737,231,1394,1706,203,2285,2859,20,1627,153,1656,1237,2257,882,707,389,807,576,2810,2103,1039,1918,2886,2411,1514,1762,201,1540,2232,1139,496,629,2722,167,2607,1840,170,2105,2708,2010,1090,179,559,7,761,1347,1157,1672,2106,2636,1932,1130,1909,2251,97,337,853,315,1703,554,2676,2193,2884,808,2128,1080,870,288,758,1608,2824,2830,1106,1405,1930,347,1281,2021,2921,919,1504,2661,2986,2383,558,2525,107,475,530,2254,2001,76,1355,1360,727,2432,267,2875,2160,1069,2464,2216,2495,2455,2069,2324,1061,701,799,477,2876,1852,1271,144,2737,341,413,1590,1880,2418,2614,2866,377,141,1829,895,924,2405,2405,844,2250,2370,2580,2993,44,1018,182,2034,1320,162,2520,1195,2761,1856,2810,2044,2346,488,1185,1474,2297,1578,596,196,1761,2974,1232,1175,1052,2875,1075,2168,795,2872,2390,1263,770,2786,967,2049,711,1380,2437,2278,2563,1177,1167,2608,1525,1607,1638,1504,2463,2505,1246,931,754,656,340,2122,2353,2353,2648,492,1220,369,1946,1649,2385,76,1192,1035,479,2479,873,692,1133,33,431,1606,2139,2328,89,2294,1009,2288,1529,434,141,2279,1901,2309,58,1283,71,1867,113,1738,478,1279,883,1667,1141,2132,869,2424,2170,453,1275,1650,842,718,1472,999,2274,966,1502,1705,1534,2553,1056,2248,1732,1509,96,884,1412,691,189,2206,1643,611,2552,2587,404,2081,669,2115,2668,2232,1163,1860,2827,837,654,528,1983,430,2654,1612,289,2051,2830,179,1982,1521,2503,1476,2706,810,1455,2613,871,1127,685,1852,575,714,1712,2063,2181,2847,676,641,689,2444,729,243,129,589,2908,2761,1985,2825,1039,1166,1183,2438,2306,1311,150,2005,633,40,2520,2617,409,324,2768,2388,2157,2418,1182,11,12,1021,1724,871,242,2639,2202,1291,2626,891,449,1949,755,1463,550,2361,2825,2965,306,506,920,2889,15,2650,2877,353,2404,2110,361,534,36,335,14,1102,75,1141,1361,1882,2888,2162,2417,43,2359,1970,1232,2838,2729,1438,2618,2562,380,2105,1868,1849,1330,510,281,1482,598,1565,254,2722,1580,2223,582,2179,1338,1284,1557,1991,2997,1348,1393,344,1181,1665,2044,2564,1413,2737,2488,658,856,2113,2174,2675,684,820,2672,866,2672,519,921,316,556,2568,1267,2322,1330,2821,1946,794,307,2788,502,163,2796,485,2590,724,1401,905,709,2524,2649,657,1712,2699,2100,320,1079,90,2921,38,1769,1020,717,1560,2840,973,2664,708,868,2767,431,1657,1889,2761,460,1014,1283,1953,2315,241,1616,1648,2016,2133,2823,232,1089,2123,89,1010,1480,2318,608,959,452,2980,2476,1646,1434,2026,315,1200,711,269,1693,358,2124,2415,1627,1694,764,939,2386,2195,576,1102,444,1201,18,2183,2812,886,163,2862,2034,2667,1034,43,2897,2840,1948,1545,1901,1087,2363,2523,1928,335,2638,981,2808,814,2748,497,566,1098,1417,2478,2481,528,479,2963,1001,2645,2053,2363,2379,1814,684,440,2653,248,1369,972,2002,655,788,2270,1628,2872,1905,717,289,140,1544,1854,308,1491,1528,1452,2505,900,1847,2627,2022,2810,2655,2527,863,1320,2719,2246,2980,498,2151,195,2026,2173,2949,2064,588,1715,413,1076,1505,2600,1448,2404,1800,1249,2522,2570,1772,2625,1674,902,816,774,2989,153,2310,592,747,2907,2641,1389,706,67,2932,953,2599,265,2187,2571,2781,2963,2252,1586,91,2391,1657,778,2698,2456,71,1842,2248,1489,684,1905,348,2530,1242,2936,2394,1971,207,566,1482,1745,2311,142,2438,2278,1975,1969,1565,685,2232,911,1360,2226,1388,2672,1531,324,518,2383,2529,2244,840,2586,1373,1654,2746,1717,236,2053,1639,1321,2601,2538,1732,2774,1363,1368,2859,51,2578,431,2358,2243,1515,949,2765,2401,458,1653,55,1495,1164,2582,1560,2004,1816,580,2343,2881,1348,1787,1173,1313,492,340,1648,1568,734,700,2302,2917,1912,2175,1671,2003,211,658,1865,1657,932,1294,2118,2604,595,2653,1421,2068,1239,1036,1912,2970,423,663,1675,2729,2584,1130,414,1320,2843,54,2283,1757,2483,1226,1003,1568,2584,229,808,359,529,1238,1560,197,1580,1614,1554,1026,2498,1121,2345,2142,2682,957,1074,1229,2335,1821,1410,1091,1861,308,1092,2287,2395,2205,2053,2657,1438,1981,2646,796,552,2536,1442,642,319,658,49,2649,2187,1470,895,1130,2729,1679,2443,1919,1230,513,188,2745,1187,195,2383,1938,1437,139,2041,760,2562,722,1813,2569,2349,1599,2026,2872,287,2465,69,1981,1015,2961,977,2303,2125,1541,2655,2926,2937,1453,2253,2666,1904,1965,2886,2047,1597,2132,728,1150,2292,256,2926,2867,191,1304,1964,1729,2789,252,1979,1062,6,2828,2876,2430,1752,1977,1931,1417,1435,1880,594,1549,192,2164,1173,1134,857,740,2630,161,96,2544,2836,62,2629,34,39,1962,101,79,1737,10,2062,2900,842,1042,2182,2011,1682,2825,332,2609,1926,1583,1288,1301,1354,54,1821,1823,2348,2872,1547,818,531,37,745,636,469,1787,1443,1962,1074,448,1617,1334,2920,586,1243,671,299,569,135,2386,2700,2529,2346,1951,1416,2499,739,776,982,1302,2965,719,1667,2036,1391,2618,2946,2132,2222,2834,617,2937,1677,2990,2722,1312,2952,1146,1254,501,2322,2401,213,1113,1023,1750,1000,2438,2570,720,1870,339,1603,370,1235,2581,215,2801,1438,567,620,891,619,2098,559,770,2720,521,1977,2669,1553,1420,1328,2722,2531,2591,1813,423,2778,2237,829,18,1553,2846,2931,2005,537,2063,2045,15,1938,627,526,511,788,1089,911,519,2035,1788,1647,222,2008,749,554,897,2257,60,2084,2604,1174,2692,2846,774,2928,1095,627,691,374,2340,2368,2461,2506,558,641,768,1527,2439,69,2657,760,2966,2714,2266,1178,99,2013,2869,1885,2043,892,2494,1261,1753,2050,1492,2262,2132,2353,2703,621,1007,1556,2391,1270,255,2508,833,2430,2338,1076,539,1120,619,1328,1374,1858,182,926,2363,2562,1143,2435,47,933,129,1107,1407,1284,518,253,1996,1131,1093,1734,2133,1720,2638,2397,2661,2026,1585,1825,369,1370,2397,27,449,1108,722,2622,2557,1997,929,2313,888,2965,2732,529,2211,1260,262,749,2290,2485,1866,1176,1213,2452,567,1826,2430,2359,1214,1069,5,2631,2440,2445,543,533,682,2492,2964,1312,188,2121,701,1224,914,1943,866,1542,2471,1397,1467,2313,345,57,2883,2390,2389,1009,132,2635,1954,2417,1889,2415,1831,1028,322,1201,1687,520,2863,0,2229,230,829,1113,1556,699,2873,1515,2630,2504,2834,1152,1030,2420,1656,1744,312,1375,2590,1834,2280,2911,2834,1544,315,2882,859,1747,2053,392,915,1868,609,454,1946,2965,997,1937,1408,1520,998,1429,2044,1356,831,1624,37,2152,2810,1250,419,2673,1978,1722,963,2886,2733,639,1896,2458,1829,37,520,2535,446,782,523,2993,863,135,273,339,1116,2893,2058,2163,1210,709,1588,153,1616,2958,1810,60,2926,1630,570,1168,2407,2136,2012,2190,1881,2787,2090,1639,968,1411,2096,2109,218,829,310,1076,2403,2624,2105,45,171,2417,2834,2065,2109,1490,1265,779,2107,888,125,1769,2856,2754,1009,1400,1083,2501,2445,907,2532,2058,386,2322,2145,183,1728,1793,169,918,2432,2938,2739,2822,2212,1266,1881,2661,485,2834,2933,2996,768,2770,1503,2080,261,1827,2172,2084,828,2847,1210,2681,1836,2564,2455,2461,1069,525,665,514,1743,563,2248,1994,2123,626,1588,1864,1767,2774,1500,388,1325,1119,531,182,112,541,2806,922,2531,993,2284,224,1769,2346,2029,1039,1839,680,123,2191,2412,396,2861,1258,2271,1396,754,957,876,952,2671,2040,1565,1874,474,2173,1578,1135,2887,2242,1307,2554,343,378,2399,1908,1025,2631,2739,1543,2644,2547,405,2551,1856,1284,2267,2251,727,819,1719,383,323,188,2931,1725,887,2775,2215,711,717,1973,2172,2410,2053,147,2220,2995,2834,343,2127,440,880,2833,1746,1662,1993,549,276,870,26,2737,2822,2145,2771,1548,1094,696,1733,2838,553,942,1807,2630,956,2529,2561,2458,1438,1427,1892,2107,422,423,2198,53,2,2885,1114,2745,1699,1942,516,1039,2751,817,2479,221,494,1791,2965,686,21,2699,234,2762,1668,2104,935,1443,101,177,2325,1138,2133,2319,1862,621,1042,182,1988,1396,2404,1275,1422,584,1927,1367,1060,582,2284,843,1153,1910,2542,1601,354,1786,1115,2889,654,1679,1283,587,2546,1037,1759,786,2461,2460,2972,517,2497,1028,2521,1994,1425,959,631,2368,2954,2499,2634,2570,1400,453,1835,2257,2144,1281,1421,399,1705,1414,1359,2248,1580,1370,953,960,1518,2371,2447,2042,2679,1206,1000,68,395,644,2789,1768,1815,1868,710,2795,2404,293,1992,1440,2888,1068,1318,2975,2897,1317,1324,2479,1960,2955,2418,2089,1780,2885,1271,397,2404,1399,1007,1038,1436,187,547,1639,2143,1471,1495,1570,2468,1482,263,2668,390,2047,1773,1142,1271,2319,2075,2932,2631,438,2992,1423,813,1625,1644,2477,220,867,1676,2548,1610,1886,959,1124,1508,1858,2705,2747,2202,1030,87,2383,777,2438,56,2506,327,75,1283,2073,1769,2776,291,2652,1852,1396,1894,1290,1201,2007,2352,103,1770,1239,774,2606,2859,890,454,1572,454,2854,259,1823,294,40,1785,2187,2418,851,2140,2128,2373,2623,9,1494,1785,901,135,2845,1648,2802,198,2445,1962,2187,150,720,480,2236,1,1815,738,1609,902,1716,2633,2427,1026,1703,2517,2029,1227,124,485,355,2694,2950,2129,2747,2428,150,1784,1088,258,245,1833,1259,1151,1747,1539,2322,1678,881,54,2612,862,1985,1357,2072,2943,2065,2923,324,2019,148,2816,932,2472,1593,391,787,1346,1015,195,1460,1399,829,396,1060,736,2977,1988,1535,731,199,1215,2249,2699,696,2030,1468,1480,2078,314,1451,548,2185,1005,2732,422,1586,111,182,2526,485,2898,1084,2970,1643,2471,1196,800,2521,179,1901,1327,2901,2767,1096,999,1330,1126,419,825,217,427,1850,934,2136,762,230,1623,2009,2052,1914,601,2141,841,295,769,1264,1808,2277,2104,1110,1253,2670,1245,1571,2029,955,2318,2809,855,488,1680,2252,2458,165,1688,437,1184,2707,2593,593,2130,1966,2269,282,1284,27,126,1563,111,815,987,131,1712,2596,1641,2067,113,1303,164,2311,1222,2436,681,24,2238,1822,2202,980,609,290,1637,755,18,2720,1788,154,1176,1428,989,1671,2724,2566,2984,1200,1972,839,671,974,1478,2840,893,2114,2843,743,2595,579,203,2987,2404,640,954,922,1013,1284,2716,1522,695,195,19,30,1257,2137,1462,811,738,1647,1176,1945,1431,60,395,2485,1747,759,2349,342,2738,2107,2185,191,2126,1306,2133,830,1309,732,242,891,1648,1429,694,1147,543,1030,1452,1537,2228,2823,603,515,2670,2228,2897,202,763,1279,2808,2237,1303,1711,2876,2610,2818,2761,1437,1198,2806,661,232,1743,1946,938,2495,2057,486,1834,2475,979,317,2028,2454,2681,662,2154,2154,1002,1071,1163,1175,2536,514,1118,1843,2118,714,1202,845,620,2949,2403,1928,1941,325,1492,1603,1315,1150,1597,1194,1627,204,1792,966,319,2731,1648,1284,2957,363,120,2093,297,1706,1041,2159,258,1171,158,1535,2823,84,1281,2586,1158,2046,2168,915,1576,1232,1415,2523,1338,1646,2814,1749,1407,2692,2158,654,562,393,2431,2983,1985,1504,2340,1223,1271,1796,475,2820,2044,2192,1348,1346,1836,2331,2474,228,2426,395,975,2886,447,2468,2717,2435,873,686,2709,1793,2470,1478,2276,1790,2034,652,2768,1091,1336,2495,2563,2399,925,265,2760,2404,2797}

    2424

    1236

    Returns: 330043475

  68. {1723,1574,1285,1117,2195,389,1179,2011,2918,411,2230,1111,2168,1677,2813,2933,662,1515,1898,340,367,1982,1595,1088,2643,1299,130,2441,2363,246,352,1359,575,380,1460,2027,2602,301,1966,325,2967,130,1919,1607,797,1170,1390,2445,2119,1356,105,482,78,216,2740,1690,2548,2230,1735,2067,493,371,2757,678,907,2133,2589,1601,1294,1972,101,1321,2289,1631,1300,147,1963,1805,939,1107,2792,1096,1520,827,1894,1111,271,1138,1236,1886,1773,1179,1005,715,2283,840,450,2933,2422,155,1348,876,2796,1213,1545,1468,2123,806,612,1153,882,1710,651,556,1331,173,2522,592,926,2531,186,2525,966,2904,567,1857,1518,1340,2518,1975,1917,2578,1095,572,2267,2755,2593,2072,1561,1191,1206,1483,1188,2534,1618,2329,2831,2475,1988,1525,2921,2689,572,2933,2910,1143,1162,1479,193,2425,2076,2862,2200,1014,88,1939,1880,1505,1730,2672,198,2086,18,1869,146,2035,2702,1118,2301,925,2410,516,1076,2473,1207,2074,1934,802,1048,887,1353,1083,2354,2833,240,1085,2048,2801,505,160,857,1463,1667,2093,1719,2632,2393,1672,1728,588,2787,2553,822,553,2911,1384,936,2250,2836,2768,348,939,1759,1457,647,753,2109,2476,1778,1798,2305,1566,2857,2315,1632,201,2543,2011,1482,2581,287,390,244,802,1755,1493,2399,646,2696,811,2830,2344,244,2496,2693,1963,2701,1072,2919,542,892,2003,2717,70,1768,1231,2154,845,1207,1437,2575,2,1438,1563,1718,188,1572,2765,1908,2468,1906,1368,801,2863,2833,1619,1780,702,1616,2374,2428,1630,1200,2592,1867,714,2480,1837,2167,2509,1491,1701,595,1031,1721,1030,1860,509,1567,92,2680,1029,1724,2918,630,663,1818,636,924,2622,1780,30,2703,2410,2387,613,1953,2553,689,1797,2486,1334,20,892,1375,1868,2169,67,2088,1537,2237,1402,273,2723,1996,884,1948,2689,1900,234,69,1662,2978,2332,444,2276,1756,1262,155,1133,2134,1988,2760,239,2312,245,2160,244,2545,908,2901,698,1788,2229,776,895,2944,2476,841,1699,2341,743,2650,1157,1727,1845,691,2755,1068,2854,332,2596,2082,1112,859,1052,175,978,2921,155,2641,1683,594,1102,814,2868,118,1436,507,507,368,22,250,2170,2918,127,504,2525,55,1157,353,288,1292,261,679,2510,177,1090,2494,2037,1748,457,1412,868,1105,126,841,869,1391,953,2738,525,2667,729,1115,2294,257,2657,1802,1046,2943,2625,2876,356,1209,310,2435,1255,964,895,1647,312,1362,2760,27,1593,1344,1647,718,2004,1210,1302,2151,1600,2034,1643,2437,1567,771,2926,2699,2676,580,103,363,1522,1703,784,1220,319,176,981,2022,247,2556,2264,711,2949,1548,398,2906,941,1772,1203,267,1779,1748,1704,2444,599,1487,899,2174,2381,2481,1891,688,1983,1846,498,973,861,2787,174,257,2971,1458,1401,1218,1846,638,18,671,955,410,2836,377,1567,581,1275,2815,2541,166,1969,2928,1227,1135,1774,1163,2204,1896,1236,2905,458,862,2629,1707,164,2922,87,55,2646,1097,1131,946,1300,1209,343,2426,2604,898,1790,1065,109,532,1906,1099,931,615,1344,2346,1485,360,1786,2996,1884,1737,2016,307,2111,2542,1852,350,1931,1187,2341,1518,2470,1789,2061,1525,2095,882,534,849,2586,698,1736,1048,1129,2660,2419,464,2630,1069,101,481,749,285,2101,2902,444,556,1068,1682,140,2149,393,2012,328,990,2901,1383,2764,619,1585,949,299,915,2244,2781,735,936,943,655,1244,1963,1353,2968,1872,167,2274,1636,2645,1884,901,2840,367,208,876,2123,1838,2886,1250,652,213,1145,1623,257,98,2716,359,1254,1961,1378,1646,442,105,2366,1089,2583,2322,2477,2468,244,1629,2018,1203,1476,2875,504,1749,2840,467,2074,501,2161,1629,1803,725,128,2213,1855,2428,760,656,488,48,2779,572,1548,460,2634,2856,2375,2158,1703,2753,5,760,1813,1014,2648,653,2008,2339,2765,2572,2049,2809,1655,842,155,2987,2624,2230,1037,273,1455,705,1016,157,1022,1816,1765,1514,1401,816,2924,2119,1080,322,1208,663,1147,320,800,1408,570,384,1165,2924,121,1888,1031,868,1685,1197,1555,963,2781,286,1587,123,1327,1118,2202,2484,425,497,2844,1946,547,1806,1958,1353,55,2820,1236,1630,2981,2689,1110,2330,2046,750,2893,279,883,1107,2499,2453,2417,1150,2428,548,527,1743,2590,1865,800,197,969,2266,61,331,1345,1258,1592,235,1478,218,472,2043,424,2248,1191,2058,2373,736,1250,646,964,1118,1031,616,2702,1093,681,2439,893,1072,472,1418,976,2742,2410,2083,1067,1109,2861,1076,1494,1792,490,346,1969,621,841,1429,409,2823,681,1916,1124,697,2903,2119,94,1737,1395,2668,539,2894,2245,1489,2056,347,2552,412,1923,2277,244,2041,2066,339,1240,360,1252,963,1485,2224,2180,1879,270,2791,290,2705,1565,789,1597,1355,1141,982,2585,936,1102,532,1541,361,204,1932,1079,1293,2033,895,939,2491,541,1249,515,111,2672,680,203,1005,1127,1089,2611,958,157,1503,1459,2902,505,1076,85,1365,1357,2484,2371,2282,2089,1121,2734,1326,1421,1517,427,2692,2076,1080,619,423,1008,2273,309,2036,1141,781,713,1205,142,559,1904,176,1395,1531,963,1988,2775,2760,2495,219,1411,1973,891,1228,1534,731,1769,1682,1501,1893,1523,725,2782,2428,2890,2241,1670,1132,1661,626,980,148,2145,2873,1213,1278,983,2940,449,204,212,1671,748,665,2517,2433,365,1181,2916,2349,644,2168,2816,2489,471,1256,1703,2539,542,1435,2345,2529,2611,2262,731,2526,2333,1484,2042,2862,1423,211,2160,1141,712,503,915,758,449,2663,1639,1251,1021,594,1071,1816,1304,2569,683,1351,905,2723,2749,2371,1532,261,2720,1415,310,120,1335,2538,2236,904,1890,2753,2490,1853,266,1296,1704,1791,1760,2961,2764,1942,2732,1347,2945,2560,706,559,702,2428,834,2830,1688,996,558,2880,843,1081,2861,1413,1314,1496,1991,779,2893,2096,284,2187,2825,1515,369,1154,2064,112,336,2846,1342,1441,108,997,252,2992,2812,1697,197,1891,1078,1320,1239,1249,161,992,2451,1113,944,2072,2674,1580,1407,357,2596,1830,339,1245,2778,2011,657,85,1023,1487,1140,2553,951,1464,938,1408,1828,2398,1731,667,2046,1096,552,1849,754,856,2687,2528,1303,2952,2222,53,1672,1804,2607,2764,9,1193,396,223,898,1541,2853,80,2047,1735,2531,1858,179,918,1130,778,423,2506,357,1500,52,1220,349,1794,964,889,39,1963,812,752,2916,1348,2597,482,477,1032,281,1504,618,2901,2839,2026,2771,40,394,2701,964,732,884,1698,1812,1326,540,673,1182,1128,1455,1536,78,1623,1351,2588,2398,2950,1004,824,2994,135,2738,2334,1797,2622,1093,2996,2426,290,876,1247,2133,473,24,123,2995,2588,1246,2899,791,302,312,344,2307,1883,183,1717,2389,1077,1308,155,1750,1094,1092,1383,382,1519,1124,1003,531,2635,576,1134,2837,1537,1481,726,2280,914,2725,536,1156,2581,1084,1714,1005,2582,1274,230,1283,625,1114,781,2376,596,2670,1634,2538,362,2870,1670,1076,2334,1882,1658,419,2077,1804,2721,1439,465,2915,2476,2355,2795,2550,339,1381,2360,2555,2646,2268,2136,2814,2666,2381,2410,1253,2759,2151,1870,2923,1005,2984,2144,2886,2712,243,1266,492,2815,1329,1275,1139,2403,915,512,1682,1105,1833,1774,2491,156,1961,613,1628,1252,1935,1012,1730,1720,2750,248,623,2478,1898,2256,166,218,1880,451,1674,774,2527,1519,1268,2169,1035,2632,137,2279,851,97,60,1000,2747,2820,1177,828,872,1726,2195,828,2698,2629,2284,1728,771,530,1775,988,1551,2379,2950,1761,262,2381,1130,1158,287,449,2092,38,2729,1827,2023,2600,819,1072,2091,2078,2344,1395,1471,1205,2929,1840,642,1673,730,2396,2041,1249,1476,2819,339,2187,2933,1916,1191,2790,536,2697,244,40,2109,2788,492,1342,1964,2694,2483,1142,614,720,1285,1458,2125,1870,497,2326,2308,1809,704,519,396,1375,1809,1270,500,318,720,1873,308,743,1487,841,2958,1781,1948,2130,2455,1100,1932,1814,695,2723,2693,1931,2969,423,2444,683,16,2610,2480,1174,812,497,226,772,2087,2297,1902,1380,1373,418,2412,15,781,168,2368,2351,2316,2482,1386,951,1952,1103,1040,493,355,271,2837,2852,161,868,388,943,2176,358,2366,419,1075,909,201,1205,2430,1931,2276,1989,2628,1575,1487,1756,2933,1832,1125,2954,660,2723,627,344,614,1232,2362,1128,720,806,2603,246,1262,939,1444,112,439,1682,564,2989,760,737,1038,2862,1886,1400,2573,1050,1292,1243,2438,1431,251,1402,1424,1093,1926,1602,1205,819,2375,917,828,1685,2410,257,327,2869,2902,2030,2276,924,148,463,1842,287,1226,151,254,1720,445,575,2437,334,530,122,2896,1509,2656,1968,1041,1662,1768,236,895,270,626,574,9,1449,2905,1072,2163,708,1149,2671,771,1972,1021,1992,2449,284,687,1598,757,1720,2123,836,784,746,1024,875,1677,737,2086,1283,2871,723,1373,224,1743,399,2815,584,2829,1308,298,1228,161,1385,1417,815,1549,2488,2926,2086,2163,2351,1044,2958,2562,2275,193,1518,7,2124,2359,1596,519,2851,2962,2487,579,1682,1422,2426,1058,1993,2429,327,487,838,1380,598,1125,1728,976,221,2853,2382,2648,1465,158,1997,1842,1831,2051,1853,1353,263,2476,1821,2425,2448,2948,2535,2911,2961,1016,77,1657,2148,39,1050,2082,2086,636,877,828,744,1051,134,1455,1451,1395,1686,2691,2475,1050,2342,153,1936,1375,2400,681,1244,2568,607,1612,2242,1557,2320,580,1715,1309,2104,2160,65,1510,1209,2968,1301,590,257,1155,1232,227,676,1106,830,2166,2476,351,2434,210,2247,2273,2105,751,1120,13,381,323,740,2808,2157,866,1603,1268,1820,459,999,466,2524,446,1209,2471,2302,174,2707,827,1538,164,2653,1181,360,2832,123,1053,1087,2884,1501,959,1716,1963,1157,1284,1703,2894,1201,1896,2435,1520,1753,2694,1835,1199,2681,1943,2045,1010,380,367,2601,1266,2178,1903,524,1980,204,210,1628,1296,485,2027,2420,598,643,996,2633,1661,2810,242,1932,580,1007,26,2683,2353,769,2446,1333,2040,1938,1064,1613,550,45,1236,1289,2357,694,2500,2316,2517,997,75,521,1153,2642,2957,1401,1638,2125,2977,737,1894,2601,2596,368,2617,507,2227,2371,2702,1589,2654,480,2665,1046,2979,37,1825,69,7,1572,221,2152,459,2150,2137,2361,2194,2577,2595,1744,1256,1720,2129,1653,1473,978,252,1566,460,1883,2086,2832,2474,844,1148,2004,885,2198,376,786,629,2549,1105,231,2484,2383,2737,1326,1911,2962,33,2411,738,879,702,990,2098,1470,2672,354,2241,1993,1519,328,1698,2746,838,407,91,1713,2012,1165,2000,620,1497,2521,469,1820,1921,2737,324,2574,2979,2631,936,1566,2421,1527,267,2614,2970,2658,2469,2365,1682,1278,1344,269,2003,964,330,1292,1080,2985,2983,1901,1786,1427,1654,179,1372,2290,1098,1786,903,1585,1506,790,1288,375,2420,2548,1034,1895,1028,1960,1078,418,1126,2512,890,1485,823,932,2120,444,525,1830,2523,678,288,1284,1269,605,2880,2803,335,227,1484,1236,2626,2742,322,1220,2526,2535,1798,204,2666,1795,1678,1219,2214,181,971,374,2898,1466,1256,2106,2747,2140,1728,1897,2034,1162,1885,1006,46,951,2614,1360,2149,503,1377,2234,831,1743,2701,475,267,2987,145,167,1612,2130,558,942,500,2983,2911,2723,1698,760,2169,2774,739,1984,281,2554,554,47,1228,2433,2955,611,1566,1472,1296,1855,1564,2390,1775,1688,1315,1455,1224,2163,538,2130,491,2550,1807,2943,238,2577,69,1290,95,2370,797,809,150,1178,891,1918,44,2843,784,2432,1027,1089,771,2585,2958,119,1569,2299,936,839,1551,1663,2054,2779,243,609,1485,760,935,15,299,2197,649,2564,387,1390,1096,1443,2889,2383,789,1021,2099,1882,1817,696,2154,1518,841,1190,1648,631,1123,2091,2870,1207,653,11,1098,2863,257,614,2545,2102,2745,1698,1377,1507,1731,1153,171,487,2959,1402,204,1529,1236,2344,1387,160,2449,1140,1675,1734,1046,729,2826,2946,2872,856,912,1506,666,2953,1363,1401,2697,37,2985,257,2657,2153,2760,2472,630,2354,1264,2230,1635,2136,1241,2889,78,371,2797,2516,1525,1097,2996,2229,1121,1912,1386,874,2141,2270,817,2238,2245,714,2150,1935,2309,2384,2491,2481,2339,558,1870,443,1552,2367,1224,2493,21,1630,1413,496,2006,772,1912,569,2635,577,1589,2635,1792,927,1111,199,2959,1896,2771,15,2058,2712,1318,2907,2745,2078,1001,2989,2701,2227,1576,84,2739,2916,209,814,1230,31,408,2448,2612,592,2429,280,2171,1304,171,2981,1176,2585,2591,2033,2447,1621,1396,2794,1924,1236,614,1855,1093,1668,1940,428,424,1430,2209,2205,1060,72,2881,1997,943,1401,456,1260,649,69,2771,1692,680,2453,2246,830,1495,907,2509,720,1368,2672,2557,702,1332,1058,2033,1998,2019,2204,787,159,899,2281,1851,119,1096,2465,2925,1701,998,2100,120,294,36,1691,2048,28,1904,1229,152,1618,712,602,2561,2979,2487,1286,792,1225,2435,1188,2233,2930,860,1207,2599,1673,2126,2428,2303,63,2406,1928,1105,1390,507,1994,1652,447,2793,1861,440,2331,2129,59,1522,2509,1388,2404,2073,1372,2942,2573,1128,1693,1263,2836,2216,1976,460,424,2822,717,1564,2182,878,1916,2357,1629,2684,2334,296,2356,451,831,2105,880,1452,1233,2804,2278,2650,1055,272,1354,1474,651,2602,2835,1512,345,2437,1698,1138,2371,2747,2150,686,1483,415,2867,2896,68,108,863,1128,115,2978,2125,1002,329,1649,1099,818,2784,1533,588,1093,436,1756,2253,2174,2542,25,1394,1404,1244,2071,474,566,1267,2710,2844,405,127,2791,711,2458,2097,1685,720,1164,670,2353,575,759,366,1956,628,947,565,1128,450,1566,828,759,2784,2388,2186,1642,764,2969,180,1948,1927,707,2531,1954,1414,2143,2680,1937,1344,69,1370,2427,45,1166,713,1689,2404,1080,2766,1501,364,784,988,598,1920,1601,1197,34,2574,944,1992,2723,2580,2572,581,110,1104,1700,2485,2270,2860,121,1100,2867,2633,2059,560,576,2681,1224,127,2825,207,1820,1601,1358,2052,1860,2402,1271,953,988,2951,294,2217,2539,636,1568,1442,574,1857,683,724,1715,840,1733,106,2264,2346,2448,1884,2319,264,2025,2589,2319,2201,547,2394,659,816,2472,2053,1291,1940,2627,2608,318,1874,1790,372,2487,2187,2011,2431,2044,43,884,1822,604,1863,37,1703,508,656,1820,2033,1520,383,2426,2537,981,2307,619,1361,2669,1775,1097,460,1439,575,1973,2246,963,210,260,2205,482,2510,2042,685,239,668,2860,539,1761,838,2663,824,2168,1399,1545,2992,922,2085,96,760,80,553,1064,1921,186,698,1556,1249,2018,2529,45,744,2333,1323,2078,1527,1375,725,1097,650,91,170,1454,1238,2460,2164,1065,819,2293,985,1245,1234,2557,632,2844,2234,983,35,954,2996,2416,831,2677,1406,2425,2892,858,523,2574,1241,1238,1185,339,2329,952,2451,2942,963,2265,1752,1645,189,899,2663,2746,2541,1312,1421,2193,1811,2314,2798,1222,1171,886,96,953,1803,2727,1720,975,2833,600,1043,203,1521,2571,2739,1872,1419,2868,2256,2341,53,1891,1591,1798,56,2920,281,335,624,651,662,1908,84,2640,843,1603,2908,1376,2639,1160,1778,974,2444,1757,445,2961,567,2132,54,2897,1664,725,1643,2031,1021,2481,1651,1119,1745,2125,1823,2048,1015,1586,372,1238,2235,2179,1637,1849,167,1125,1188,2397,374,1014,2201,601,144,85,619,1629,2570,930,1059,1192,2464,2187,968,483,1282,1207,339,2175,640,1306,2064,1475,1998,1005,1261,2997,2079,2057,1405,2372,326,2936,2703,2799,2697,2399,2272,2196,187,1698,741,491,597,394,925,2343,1298,2715,625,74,456,2081,2998,2249,818,1126,84,2306,2764,2767,2160,2230,856,2924,2974,1656,1991,2837,243,864,2996,1300,1534,1877,2898,2155,1341,1114,2410,591,200,2159,1339,2714,2506,2351,2996,114,553,1608,2615,2171,141,57,1022,1231,1353,1860,2064,1018,107,2109,2168,484,975,1197,740,2932,720,1955,6,1910,812,1813,255,15,363,875,2501,2223}

    {2629,2193,2947,674,2517,1863,1935,1242,950,620,1810,195,1439,84,2837,2748,2987,1999,2285,1592,382,859,2795,2846,1886,732,2032,2596,727,1054,203,45,461,187,2025,275,316,2826,21,963,2690,1605,2029,2357,1232,2388,1366,1625,789,271,2021,2802,2596,326,1803,629,1539,2475,1949,2883,2533,2743,1801,1836,628,683,1910,1858,2785,1310,2545,2505,719,1057,2014,2555,592,1388,233,1149,445,1984,2118,859,2514,970,1738,1247,807,1283,2992,2662,2913,2474,793,1096,1338,2011,2952,78,1702,1915,2305,941,341,1351,2298,2731,2550,400,2112,2308,733,1883,470,2971,2504,1727,45,119,1590,2855,886,2971,1104,672,1410,29,951,1029,1214,1786,2116,1544,571,1243,770,1728,853,1900,652,514,1456,1512,230,1370,1866,796,1665,187,1307,1386,1277,1917,636,826,812,1554,1526,356,910,204,1576,1677,1304,359,1036,885,1735,2869,905,1859,1232,2311,2831,2352,640,2876,178,533,385,2119,515,2737,984,2013,1182,1167,2756,1324,2972,250,162,920,861,1243,1431,2963,1758,1660,67,92,936,1560,247,2498,1778,55,720,184,1615,1573,2899,765,91,2967,721,35,1997,2144,1055,1420,2268,2257,2190,2937,2226,1608,1205,1263,1969,2933,2224,2760,15,543,2991,1210,2195,2580,202,709,529,1626,2878,2872,1623,136,2935,496,1071,821,1183,2315,720,847,1770,537,482,2077,1009,783,828,1463,2059,1065,2327,2484,2350,39,803,379,2050,400,2566,421,2435,2985,2539,1793,1076,2891,5,1368,2181,547,2565,2862,2091,1720,684,2579,948,742,1691,2231,314,504,788,1400,988,2535,2366,843,2879,2219,1662,2774,2956,1906,425,2210,837,2091,2211,6,513,1163,771,1187,1429,819,272,2199,645,2982,17,1536,1537,1357,155,397,2763,1157,1603,1507,1111,111,225,1153,539,1025,1083,923,182,1207,1850,1581,1570,2359,2558,99,1919,1085,932,1771,413,847,2193,802,825,163,1042,1204,1238,2548,359,1579,2072,739,2688,1064,644,2502,958,2628,1940,1560,2084,1446,925,1190,761,2373,1881,555,829,2975,1016,1745,825,2462,339,1133,1517,2987,58,387,78,1672,2857,2592,686,17,2275,1688,2476,2431,683,2620,350,2647,2501,1819,2758,2191,663,2563,2725,1529,2733,906,798,636,2412,2726,847,2916,567,2990,1696,2532,904,2649,2723,2729,2077,2536,1416,2673,1461,866,2011,1424,2374,2605,25,2623,416,2139,1578,2649,1079,846,2319,1371,955,1880,2308,720,105,1985,1140,1980,1929,143,532,2399,891,2358,337,217,1982,664,89,655,463,1067,2624,2546,1493,1181,995,2334,918,850,2709,1670,453,1765,96,1950,2538,2144,963,48,1033,1288,1360,1190,2548,2094,394,1807,583,1398,2959,2707,2900,2548,2845,2185,2985,2426,2125,603,1581,1931,832,852,1755,2999,1322,2138,1117,2693,2404,994,461,2922,1929,1554,43,2233,2489,1344,1848,1340,2763,1093,1968,947,549,698,314,2230,1998,243,2540,1172,305,992,693,2084,470,2703,1858,934,216,2587,2382,155,1259,2787,2238,928,771,436,1289,1631,1778,810,1767,924,184,1712,1839,83,2495,377,1326,26,303,160,2544,2415,1289,1739,2429,2040,2613,2343,1782,781,1420,319,2672,827,1410,1070,2005,1843,2380,1837,2307,1353,1343,2560,2546,2751,994,2436,667,2234,1829,633,992,170,2517,1786,1499,2207,1614,1732,1209,1787,1878,1834,1396,1313,1649,116,2845,2448,375,1927,584,2997,2889,2694,1420,1105,1795,1207,1610,2703,2902,2991,1304,49,360,2431,807,1594,1899,2940,1272,2431,720,47,590,725,1516,272,2334,1677,15,2901,2229,1048,483,1582,939,2007,2652,2331,2009,344,2546,1409,2391,392,1995,2761,2074,2319,2340,1553,1177,1578,1255,1288,1924,2007,510,2827,2498,2844,371,2230,1653,2426,2965,2918,2468,2059,1470,2863,185,2947,2369,2507,1096,2177,316,1588,1083,1069,943,743,863,2520,714,309,1446,2334,1722,699,2250,1787,1021,782,2933,2125,2532,75,666,2168,1609,1181,1906,2364,229,2428,2131,807,1124,2834,2239,1624,1434,2298,926,2723,2989,1885,2744,2041,1462,1488,1834,1800,1247,834,2835,1126,2909,503,517,607,2259,1457,1101,95,1980,1528,111,1477,2911,1989,1047,1083,2934,574,263,1330,590,805,835,1745,2504,2690,1666,119,2225,1635,2989,2494,2017,338,1116,78,1317,917,563,1265,1260,2964,886,2732,2521,1314,1169,2897,2162,1392,1109,1095,715,1374,1574,592,948,1019,249,2898,2618,667,2943,1889,1151,2844,1320,1740,870,1403,367,2363,2551,556,2979,1513,1558,2918,1450,378,1930,2717,1398,1946,567,2941,739,39,1224,1491,1929,1543,2016,871,1300,633,300,2328,2125,1779,2535,1765,2502,36,753,1517,1490,658,602,1155,2269,947,2405,2447,1967,657,42,1972,2343,2346,1710,1453,1138,191,963,2103,996,2886,2499,2803,311,2444,2753,1212,39,2016,2442,2958,210,578,1556,268,2541,1923,1344,139,1445,1129,770,1609,2056,658,2392,1515,2146,913,2690,2279,2012,2103,1502,2490,1600,1978,489,1197,2830,1105,1045,911,1301,835,1816,828,1720,1473,544,521,1242,1862,1619,73,2560,2459,755,900,2611,1014,2567,2709,1959,2237,1833,1886,2043,2010,2058,918,1805,282,648,640,2310,1810,2053,787,2279,1236,1358,2842,2203,2616,2723,1061,1439,96,52,2817,1316,2692,2440,68,2010,1392,2619,2363,1493,2232,2577,71,1859,654,1241,1129,2064,2581,797,2724,2474,2557,1348,2381,710,1820,2680,1375,2662,525,2254,850,2096,2220,1520,2112,2307,1369,2456,2144,858,969,62,462,936,1672,1367,1537,1669,1198,801,1587,2933,1751,418,967,206,2938,958,2598,1376,1164,1788,1816,326,2143,892,2548,1703,1184,2117,1810,2690,755,1856,2658,511,1755,2181,2417,2307,1189,2060,1119,1884,1609,1856,1357,1112,504,2783,631,606,680,747,1205,1207,1720,945,939,1209,1659,518,2809,1078,2870,2128,797,2325,2113,292,1188,278,2551,1273,2785,2540,1241,60,1069,2576,732,2301,370,1128,930,2596,265,584,1323,2566,2203,144,1140,2201,244,557,1394,2790,1504,1457,2212,1689,2901,2262,2313,61,831,452,584,394,2436,674,698,1353,432,1474,104,963,259,1304,1339,1971,2160,38,1566,1778,101,884,2152,2659,2170,571,1815,235,2017,1547,478,276,895,2938,2581,1498,729,613,1800,1251,1221,766,149,1334,2321,2184,107,486,297,2443,868,393,2729,2090,2110,2826,2927,259,2325,1530,1990,937,180,2188,703,567,2444,1385,2634,921,1331,713,2682,2979,1162,1894,936,57,359,1248,2519,2883,1706,2854,218,2418,1517,2208,2703,2840,1594,201,1988,1150,1945,201,563,33,1368,1986,734,2655,725,2125,2118,2243,785,2130,2881,2546,1543,1587,1672,780,125,411,2701,1203,1243,2168,1957,546,2501,2102,2887,1144,1708,2761,2400,2303,825,1512,315,2324,2909,2532,1142,230,2491,1731,1520,1897,2278,678,205,1734,2882,2979,2025,1279,1409,1826,698,1,2915,2271,1275,1386,1434,1295,2426,1151,1951,2939,1896,425,1288,2581,102,2258,2570,219,1965,891,2349,2335,332,1231,1907,82,2395,1213,816,1784,616,1260,41,414,2838,2412,241,131,2566,954,1537,2103,2997,1715,1920,2996,996,579,635,408,1653,1606,2976,232,898,1454,1820,129,1887,426,965,101,1023,351,1845,570,1349,1244,1188,621,1228,1687,1890,1221,1703,641,690,1350,2467,753,1946,1536,1425,1049,2453,1786,2069,422,813,107,450,192,93,521,353,2510,1730,1344,956,2434,1579,1480,1720,1567,2805,2686,2440,2379,2496,2850,2454,2922,630,788,873,2040,663,64,1567,1352,1711,2646,1325,291,771,934,2606,1370,1387,639,1337,2470,2098,545,1774,1720,438,2689,1409,2722,935,521,259,2300,874,606,2475,905,2719,1972,2897,284,313,1023,2296,2569,2181,235,1620,1136,287,1520,494,2723,861,2614,1703,79,222,2933,2142,86,294,45,401,30,1258,1163,2921,1970,1483,2261,1981,2809,143,163,2800,1062,2557,876,2892,716,2953,2708,2271,773,2766,1720,2487,488,1213,2589,2375,557,575,1492,237,1352,2554,2303,1796,140,1537,1830,1877,982,2670,1093,1801,1208,804,251,1231,2135,2237,2600,2319,2193,56,814,361,1714,2806,1237,794,2723,165,654,1180,2428,1585,2735,2296,95,400,2569,2081,982,1675,113,526,1105,342,922,222,2315,1055,1622,1625,256,1679,2917,2506,892,2443,2551,2718,2427,2301,675,2600,1177,2074,1026,141,2568,720,1102,1907,1941,940,2940,1916,1775,243,2565,2833,2631,815,1124,2996,1096,2664,1533,1260,1394,1854,1534,2080,379,1947,317,531,513,2635,135,2173,2026,2714,986,2984,1370,352,2830,244,2728,1379,384,215,2640,2291,782,1039,2836,154,1194,2252,382,1766,472,2288,933,1443,2105,186,2127,945,2091,335,306,2329,2653,1222,2202,1438,2382,2581,476,1957,2874,1567,1238,2581,795,2719,2836,895,2165,2346,2662,2092,1382,2831,1923,1083,1914,1281,2451,2203,1814,1795,1871,1379,499,2484,2236,1844,624,2024,698,2741,495,2124,1684,513,1906,394,114,2405,261,977,1532,1548,1613,1213,2308,1785,1776,1573,2408,2827,504,2565,135,78,1369,550,894,1630,2121,2526,747,2759,622,2181,1056,2821,215,2452,261,248,528,1762,520,2455,2228,1872,1297,1627,875,1752,1885,2931,598,2251,1193,1070,2151,1097,1124,1680,2660,567,1336,449,2634,1470,2508,2702,41,1168,380,1144,1508,174,2909,220,2637,1235,1920,417,2924,1923,2204,2286,1213,1245,1084,1979,1783,187,1389,1173,2987,51,1255,2709,163,737,1997,1303,1976,634,1074,798,1715,1304,465,1910,728,1859,1796,1102,1685,1688,1889,2841,1376,1662,2509,1029,582,2222,1026,67,2391,1704,1869,1226,636,1527,700,1238,1463,2938,113,1199,1840,1756,1127,576,2108,1875,1121,1604,1776,2010,747,1431,876,760,250,2222,760,829,1428,1650,562,1517,522,1908,326,1348,669,398,2539,2689,497,2502,454,2466,961,1294,256,1242,1523,2692,2895,1733,1944,922,1581,361,1590,1592,1140,2811,2873,433,1726,1420,1181,1466,1258,113,729,50,1742,0,1321,2377,2183,962,1835,2985,1679,2923,1292,2002,92,1493,479,203,1334,1294,132,1204,250,1838,132,2114,2682,2690,760,737,1390,566,1670,430,2685,2810,1280,293,2095,2978,2393,2115,1040,643,2874,1076,2858,2414,172,1128,1219,1323,535,1152,2546,225,1475,2954,183,2386,1402,2702,2448,1840,2366,1137,2711,2089,581,2318,1519,2525,1955,2000,1234,1967,1799,1215,506,702,1735,1810,2401,1729,2795,421,972,1746,2037,1982,2069,525,1676,940,2175,491,2354,1808,1014,2824,1426,2661,1983,1699,2052,132,1257,1463,1458,1182,2022,2974,2347,1117,1741,1284,1728,2856,1217,994,929,820,1699,440,1763,892,960,797,1894,1933,2951,14,130,681,327,1540,708,2410,1587,2789,2246,2987,2526,950,1017,532,2916,2847,1173,894,2221,57,869,67,1831,576,1647,204,261,2326,1662,1768,1802,396,637,2651,187,744,899,806,1251,847,241,1117,2193,157,2933,2973,424,2072,2048,1518,568,837,663,2933,1744,2799,1586,720,2658,8,1677,1073,1344,1358,1984,1880,2399,2449,1520,45,1128,9,2727,1658,1178,422,402,56,422,1379,2621,1874,1644,1159,2365,1949,80,1294,186,353,386,2780,2481,1980,2436,394,258,2924,1963,589,2468,1108,1535,2548,165,1393,79,808,2914,2809,2467,2736,2565,2763,32,420,1931,2960,1388,1364,656,1916,1095,58,2525,2383,2623,1778,2557,947,2893,2772,1623,837,1876,766,653,1559,2944,1800,2373,744,2450,1202,521,2635,2295,1271,442,137,885,1161,1059,12,194,682,2294,1640,1678,894,2075,1816,1905,273,2610,1963,1443,2288,1963,2507,2246,848,1105,1190,848,2170,2647,2828,257,701,166,2987,2455,2305,1006,825,2466,785,437,2931,1683,2652,2591,43,2575,784,2423,628,2122,2392,2795,2911,339,2988,1440,2924,2825,1437,1163,2135,2747,193,228,441,132,1320,1241,1641,551,768,2193,2341,1675,442,2650,897,502,1266,897,833,2890,987,1809,2966,1177,2289,1890,1755,2695,196,319,1579,1523,1534,1223,2218,283,867,2028,46,2646,1068,1030,2567,2378,587,1752,76,1004,2147,1389,169,2357,1635,2503,513,2902,991,1660,193,662,2474,2065,2611,1486,284,2690,2849,2593,2982,1962,2986,2511,505,2713,2565,2721,395,1556,1066,1358,601,38,996,2395,2063,571,934,2169,1993,2250,1577,435,154,1432,1992,404,1096,881,677,1011,608,482,1311,2706,963,1358,1884,2609,1828,1796,2661,1397,2818,1351,963,120,2787,1922,619,136,553,353,332,1619,1305,2020,1734,2694,974,2246,1063,609,2346,262,1330,2588,1128,120,1851,2490,1161,117,1127,2070,1119,958,1841,33,1276,2778,722,2700,2501,2348,1141,1324,675,1728,1340,2168,2160,1654,1728,1733,2921,135,1746,2166,753,221,2172,2240,2933,2176,1884,1984,1843,2189,1705,575,448,2548,894,2260,2644,1000,1186,431,884,3,2431,1223,1124,1525,1661,2337,2562,1571,828,1319,2215,1451,2608,2441,295,2701,654,852,2062,10,957,253,889,1893,1800,1589,2016,1046,2292,2377,2601,2385,2701,1391,2728,2271,1321,2416,2303,1900,418,2961,865,341,2704,672,2526,1548,851,2084,987,2864,2684,1921,1195,2643,252,1585,2888,2111,2861,1909,1226,2678,586,2400,1611,2307,166,19,2475,646,2424,944,1822,277,2326,1696,632,2448,2383,349,526,405,1976,434,1898,2947,2051,2801,1795,1110,892,261,2921,2592,2958,1524,663,1511,272,1146,2143,1122,1020,2205,406,2752,2744,2530,1031,2770,269,777,2457,1663,2361,1586,617,1765,45,1086,256,2918,38,40,85,1709,806,1000,990,1357,87,2993,1908,2352,392,4,1053,2513,1657,971,231,1691,1996,858,1770,1304,2866,2773,1204,2323,2992,594,2550,1433,2985,2549,882,133,1977,585,958,1215,217,993,250,647,216,487,274,1154,916,1669,837,1614,508,1346,775,2041,124,563,449,1405,121,2039,2769,2140,2833,2848,55,190,1182,2306,1466,1520,193,709,1730,373,566,1754,1344,775,1542,2764,2058,1134,1265,2136,511,375,182,2222,155,70,2338,1742,367,760,2156,2387,2336,2263,429,2871,2924,1253,610,2837,1129,1585,56,1448,1175,902,2672,2497,2650,2584,469,1892,1884,2689,2390,2130,888,928,1434,2413,2819,593,2321,2158,1552,2823,729,2460,2876,636,1913,455,895,2283,1334,403,259,2405,1078,2761,2317,40,1538,532,406,1219,2086,2877,2058,210,1820,1874,2836,1925,2663,1810,826,1244,2498,2017,875,2636,267,2204,1748,1545,2043,2448,715,1287,515,2492,1867,939,1548,1643,100,2038,1583,1460,2777,1562,1675,919,1747,2369,2885,2192,2530,754,2268,1013,2082,1368,2679,1809,2053,2696,1824,2068,2681,1680,774,2762,294,573,828,289,1105,2924,333,2055,1972,2559,199,592,233,722,2610,2502,2489,692,881,220,1681,767,1059,154,1661,1633,1974,855,1734,2865,931,2026,782,2518,2741,1091,1119,1777,824,138,2912,2760,1467,1864,66,2590,999,1677,624,2600,762,2012,1725,2980,745,2144,496,1236,1795,989,947,2847,1027,1504,795,1599,2477,1922,2448,403,391,760,1844,80,2910,392,1715,1803,2015,918,267,2807,2653,1216,90,2685,1976,2880,1764,2842,1546,2463,1212,214,2158,135,554,101,2484,1082,683,2159,434,1195,1226,745,2304,2883,1631,763,2107,1053,2947,756,2110,979,1391,485,2786,472,264,940,2287,1680,2539,1695,215,51,2959,257,2675,2974,1264,943,1764,561,299,326,2018,1584,1547,725,1092,2693,2058,1036,23,1847,1555,1112,2407,43,1617,527,1469,1124,2060,834,1133,1883,1465,883,1321,1447,2098,1748,2636,1561,1904,2692,1328,2768,1277,2545,799,854,1595,2515,2081,1000,933,2920,1309,204,2638,2331,392,396,1076,1083,1102,661,2982,2880,1524,2468,81,811,1599,2271,468,2693,2815,299,2994,82,762,2776,2535,732,2378,1900,758,225,2206,802,2950,2052,2479,1332,1694,1069,2594,1979,2883,1196,1566,135,1920,1211,2859,483,321,578,896,2461,2409,304,1987,982,1465,285,1298,1548,1153,2434,1922,1160,981,363,1721,894,894,1541,321,2176,1598,2547,1973,965,187,868,2730,2001,204,2255,2399,1669,2754,2064,1550,1310}

    1712

    171

    Returns: 44358355

  69. {332,1031,2978,1115,2944,1410,2358,887,2559,666,2992,899,703,1648,1032,2973,2317,2361,1856,1061,1382,2386,1287,1836,1775,235,71,163,2525,1891,39,1629,1661,1710,2526,2682,701,2952,1219,2502,2071,1349,95,239,130,2345,75,215,1707,2804,1863,2103,1626,836,1054,1857,2036,2892,1537,1047,1104,1025,2352,2010,388,2426,1951,892,1822,1888,972,1111,1785,2033,2098,1284,464,2764,2087,220,2138,1584,2004,599,679,1905,6,1743,1513,1074,15,1998,455,2791,1918,2827,1635,800,1871,875,1587,2116,188,651,752,136,1495,1757,954,1048,1957,1522,1541,1402,1022,1445,1836,285,1575,763,2834,2448,501,1919,2835,319,2737,2761,449,1585,482,253,578,2252,256,169,405,756,1054,2168,2157,2978,1060,2109,43,2823,942,2170,2101,864,2303,743,988,2288,602,1832,1965,2694,340,488,82,228,1748,1046,2525,1691,2383,703,1302,638,1308,1471,1343,2173,26,1900,328,218,1923,2693,2748,277,101,1989,811,2401,2427,1729,2167,93,2836,2597,1697,1274,2402,96,1567,2842,997,481,1993,1155,1335,2274,2331,2401,2721,1455,1661,1988,1543,849,61,1731,2041,2682,2075,1771,616,1445,523,1990,1178,2196,1356,631,1635,852,1896,302,829,1792,2314,1875,813,2359,1240,1424,888,899,2556,434,2343,1398,1181,1690,2480,674,2266,2447,431,63,2295,2807,1915,2615,2470,1596,645,2302,1120,2836,524,897,1574,262,1769,2953,570,1517,1010,467,1759,2911,1659,2889,2706,2489,21,736,1606,169,472,1730,1457,213,666,950,117,2691,2785,1084,523,1515,2964,334,698,1043,1288,261,702,1541,503,1172,2477,1483,2330,2634,1412,1228,580,619,1781,300,2264,2118,1035,1305,412,1848,1645,2932,655,971,188,1166,1495,2911,1485,1932,838,2857,1920,2672,2546,286,1038,815,1594,1343,97,2035,1326,2827,1433,1624,2002,519,915,735,757,1362,705,350,2881,223,2152,719,1360,1419,516,1382,2698,797,897,2167,855,637,1444,100,37,1619,1254,3,1167,2131,2642,224,2871,674,2487,1241,2308,2603,1597,2169,618,398,2522,519,2041,2731,279,1878,2623,115,2095,1825,1012,602,2797,2691,495,2477,2332,1035,2272,1954,2562,877,2710,2730,1756,1605,1542,2106,1226,1026,2243,889,415,1757,1909,2655,544,2696,2786,1118,1129,730,2246,2573,2093,725,153,2190,1268,95,674,1042,189,2548,1509,132,64,1545,669,2668,944,1598,1000,2222,861,387,381,1494,682,2721,1609,1890,2327,239,530,2630,1600,2031,1319,2637,2253,2851,1813,2262,314,1746,2117,17,2094,1703,287,1402,1803,393,2790,925,541,1960,2408,2387,2993,2843,2267,1569,668,2414,842,886,1309,28,2170,1021,2527,1722,355,442,1737,988,2720,1781,705,2424,391,1591,315,1102,913,1056,2386,974,2759,2362,1991,592,2159,2020,1635,500,1616,1166,1013,1775,2176,2573,840,236,305,2030,1645,627,2246,941,1680,2272,2074,2780,1382,1333,138,1037,1777,162,1101,988,1316,1077,1079,2732,2327,764,643,306,693,1060,545,827,1739,210,2211,946,2074,1236,2067,1217,2528,1899,425,2954,1804,2881,1026,2061,2408,627,1849,1532,702,168,505,1714,2444,3,1259,1625,572,595,2467,146,111,2259,2963,1903,822,1318,715,1010,1442,519,1705,1936,1195,846,565,647,2792,2525,592,2446,483,2886,1709,766,610,67,2357,2158,636,373,1093,2458,2259,946,1255,2597,2233,2078,1695,296,946,768,2257,2063,654,244,884,240,2785,1014,846,2453,2729,2291,2653,2968,182,1213,1928,2624,194,2135,2257,2540,1324,308,1212,2140,1408,2497,474,2500,530,1237,2910,1106,549,2852,2083,2042,620,504,2102,128,1501,569,1055,144,1794,2801,1582,380,2849,2334,2777,1724,342,2300,945,633,570,2693,2497,2373,2701,885,2469,806,2146,2900,2821,2922,1832,1489,1899,2269,2275,2620,399,2878,1728,1949,2602,412,2100,1492,1946,817,2595,830,2169,2499,1947,1131,556,2454,57,1220,2883,2400,616,1096,2463,865,2328,1702,1278,38,1409,187,2738,731,1885,1915,120,852,375,2004,840,2635,1607,538,1083,85,1904,944,118,580,782,2580,1831,2121,1572,1191,32,1093,1967,564,608,1495,2561,1842,154,2140,2486,2225,990,1451,1270,2285,1610,2859,1690,1933,1308,2298,1673,1918,165,1687,1774,853,914,8,1028,900,2265,2607,2462,2349,569,1751,155,2486,2430,695,1088,2134,1250,1848,2145,2588,2109,1786,2527,2462,2576,2932,2534,702,2424,1978,1422,2922,160,268,2745,1253,2861,2025,352,1248,168,910,1112,65,1200,1292,468,2182,2982,2933,1216,2777,1448,505,2265,728,727,283,977,2953,408,31,1236,2768,1183,870,980,1495,401,2187,2455,888,1790,2928,1903,2952,363,2707,2930,2572,2116,1221,2746,1896,1978,1359,2489,2335,1734,2059,2941,1674,258,917,276,1114,2795,80,362,628,865,508,1492,2,687,1899,2338,2058,2900,1247,742,2335,2061,2659,2097,1811,1480,252,2176,1716,1519,684,1753,1573,580,2756,1691,282,2058,1705,2230,2868,1385,1621,2101,2588,2757,1343,496,1492,2038,989,349,1220,1904,2060,1732,2077,996,1744,988,370,999,486,2078,1304,2941,1873,345,2153,2109,2019,482,1944,1188,1514,2960,717,93,1954,2772,2243,1150,2979,1385,191,657,29,780,517,2888,988,2850,2263,2655,2354,1144,798,1687,655,1063,1027,1277,271,1456,0,1533,2854,259,1781,2660,511,1979,2516,1504,205,430,1017,1335,822,514,1624,826,2608,1342,1714,1016,1587,2462,2841,152,1538,2986,522,2893,1056,2751,812,124,915,2715,2542,1214,1620,2948,2110,1170,2742,1225,1974,2510,1411,1606,184,2782,2901,338,764,1945,463,1773,2060,1081,739,616,2099,2214,1302,363,1717,2820,2094,2029,2689,2501,1544,1488,659,1335,2939,1697,1129,2797,1970,2878,1797,2999,519,716,2754,853,170,2655,2379,2299,2854,1834,2181,1956,787,291,2058,1668,2721,2538,1914,1132,1247,309,2037,2239,1952,1532,12,1973,1019,989,988,1760,2079,2364,2671,49,1963,1045,2638,700,1980,2923,1097,163,2315,2004,1464,299,1137,376,2785,1891,2585,2527,1991,2909,1896,2891,2068,1896,2914,317,1707,2087,617,414,1150,2634,1566,2731,2102,1338,2353,708,1559,2930,664,2456,1985,2007,73,2076,2420,1865,249,2735,548,274,2614,2110,570,590,1343,1835,2650,888,1492,1633,367,2596,2190,2740,195,613,958,1212,2722,1435,2789,1121,891,805,2019,1121,1742,1315,1414,2686,855,1722,1702,2296,2273,1100,2190,1601,1551,1436,641,208,1685,741,2274,689,1293,2182,1818,1764,2083,2975,585,1711,2209,1595,1452,1755,289,2169,792,1102,1047,1302,2788,2703,1358,2272,2383,2242,2747,1204,2542,1463,1611,2234,303,1564,761,1456,1376,1652,1785,995,2683,2565,1983,1138,795,2062,260,1910,1287,2278,1876,1949,2564,706,2517,611,2405,2081,2314,2998,1855,2537,102,1061,133,1045,2650,630,1766,695,1631,921,2738,1097,1890,223,694,173,2333,2558,2770,894,1391,1588,22,942,42,2733,604,84,2597,880,2404,2645,2568,1675,1160,351,1912,1337,2572,1659,1529,1386,1717,1710,1508,2891,2083,372,1154,1896,1658,969,212,1875,2615,1837,444,2930,1203,2589,2746,2130,1167,1072,2803,871,692,2161,1596,2525,2873,1417,159,2931,2794,2265,524,726,150,2399,257,1563,1517,2433,1803,709,440,278,1657,361,1007,248,237,1670,1305,416,671,214,934,374,1322,30,385,1427,2006,2928,2425,744,2543,711,2192,1581,434,2433,312,2942,2572,2203,2925,2134,1790,1760,2772,1948,754,634,2562,2660,2534,2173,906,1239,1008,613,232,1738,1050,1092,2288,1762,2970,2054,2277,722,964,2912,894,167,657,2123,1851,1244,1130,1087,761,2711,2718,1391,2727,1347,840,542,300,1573,1642,1086,2457,1581,2552,359,240,2172,1890,1376,1168,2796,2915,1697,1495,2384,2756,977,2078,1993,478,156,2467,1860,621,2922,248,2471,2054,383,646,151,1376,2187,1398,2483,2346,721,2066,868,580,788,130,1092,61,1519,1012,862,4,1313,378,2265,2675,2292,2394,827,1486,2034,2060,1423,1109,2988,2259,1686,1745,1043,1246,2643,457,2115,2015,1168,432,2662,696,1021,2198,2041,2296,707,1886,577,537,1326,560,2122,2529,200,2143,1270,1191,1459,1432,499,1368,1444,2621,667,2479,2708,2845,2965,2043,117,1788,261,2647,588,1040,721,600,1631,476,700,402,2833,2637,2990,2701,1657,1058,2589,1393,2410,2334,219,2543,1326,2900,2529,655,2764,2457,1905,930,657,1412,2199,954,933,586,2527,892,1599,2465,2973,2041,2728,2079,477,2305,2612,1465,226,1426,1598,54,2821,1194,2235,86,1239,880,712,207,2546,2874,1882,357,869,1118,782,1734,1573,1625,264,1965,74,1998,2682,1097,473,544,1104,470,2740,2304,2723,2489,1124,1774,17,128,1186,2964,1461,538,794,392,1921,1708,2584,2697,32,2746,1092,58,1959,1380,609,2783,938,2777,1303,1591,1407,2855,2386,149,2805,2237,551,1408,2120,1103,444,1511,1710,528,2455,822,2044,2875,903,945,1075,1581,877,2758,1929,1131,1462,1377,1176,2115,52,188,2876,392,1092,440,2570,439,2506,1851,2613,1830,409,744,2219,2995,2423,2990,1425,179,1646,1875,2292,597,1698,2485,1118,966,431,351,962,2940,1567,489,2852,1092,2682,1543,1735,2274,404,2621,2360,1301,1776,2669,2153,769,2394,1104,2900,531,1048,1796,1220,2153,823,653,504,816,1333,259,675,1875,1603,1043,1914,620,1138,1750,724,29,876,1899,805,1282,1651,2241,38,1358,2713,1877,222,1201,1075,525,1051,2627,1147,1727,2613,2827,884,971,2175,889,1446,2828,1071,2937,635,1077,871,1615,2225,2136,363,2001,2771,633,2679,426,2224,1178,1015,324,2385,1344,2199,1719,1576,1521,1446,1263,171,1740,2793,736,36,2112,2995,392,960,1364,460,2691,1835,1666,1705,740,2786,2393,1381,71,976,2277,524,1936,2604,2943,119,2406,2859,1094,1580,2094,186,2574,771,2738,2716,519,750,88,1400,2725,2371,380,2714,1778,749,2378,1353,2402,466,2519,2988,470,2938,1041,176,1703,290,2642,233,655,591,1600,2213,2637,95,2949,1644,2319,1636,2312,935,2181,2748,566,1134,2503,2779,1080,2706,734,1967,2785,2297,1123,2377,1717,1036,371,300,577,1982,821,2646,916,939,1735,20,730,857,295,1125,854,2019,2587,1121,2055,700,2509,451,249,2468,2654,791,207,828,2306,427,216,2008,22,1030,248,2897,2268,381,1082,788,2980,1699,1909,1388,410,238,1977,434,1930,232,1790,131,2690,419,104,307,1771,395,1007,1976,252,2908,2961,369,600,2288,2510,1228,2551,2911,1030,2602,1712,2973,2922,2834,553,1639,1815,751,2705,2474,1795,2551,549,1866,2573,1724,2386,2613,929,2307,245,2431,206,1651,2326,2995,2193,185,1122,1682,1861,731,1154,1182,1899,202,2806,1656,1229,1199,2642,847,966,2654,1215,1362,1516,2149,437,1302,1143,1228,1737,385,650,1538,2148,2240,2065,2034,2139,777,2875,2091,1335,320,19,201,1897,670,2298,1420,186,571,2763,1761,1220,118,1458,845,61,3,2131,650,572,78,2245,395,947,948,10,2335,971,2951,1251,1410,10,1440,1333,2491,2011,550,1215,76,2736,2312,149,570,2215,1621,834,1764,1507,1328,1996,747,1518,1489,1610,1795,386,888,2461,2046,1830,2100,26,2636,774,902,2274,1298,1474,58,2263,1138,2468,1987,2940,2729,393,708,1170,1698,1357,94,2506,2776,789,2873,2738,1065,2127,619,1554,809,2637,1775,2999,2507,1446,2583,2230,1463,663,2269,1548,2789,2014,802,1891,799,2876,1381,572,1765,836,394,1793,1572,1628,2226,1996,1689,2173,894,2899,1296,877,1331,68,1892,2785,1270,2519,2872,2872,1534,506,2775,2902,1310,1713,2513,2922,2988,1034,353,1070,913,321,307,1593,2146,2250,2476,433,828,479,1991,2445,1551,2605,1445,2342,2988,2546,93,1974,743,1968,41,2501,652,252,614,2522,831,2661,953,2004,1257,2225,1908,1875,1466,2241,2572,394,2187,1783,1723,2816,300,313,2577,2606,685,909,1598,2291,2284,2113,515,2721,1929,2295,788,2515,1616,1059,1317,2603,2115,976,292,2852,409,417,1975,2723,397,567,2678,2962,1787,2608,2592,691,1559,1905,1202,1347,68,588,588,1097,1925,1489,2411,932,1759,313,1881,207,696,2643,1559,2272,541,1430,1508,2782,2995,559,47,1892,2967,311,2303,1490,2334,966,796,978,270,322,543,1838,1387,2993,2441,2061,1821,841,1295,139,2402,2922,2769,2830,746,2912,153,555,289,1145,1254,2536,1668,2002,1632,1334,1272,2090,705,2529,1702,203,1064,1521,1710,1785,2517,2303,1596,920,1646,1313,1830,179,2100,2399,294,2,1165,1534,2101,2212,224,674,462,1069,2048,1941,416,886,2073,1863,2680,1989,2619,2369,639,1015,2494,2172,2551,1777,1733,839,2320,2386,1350,46,1509,108,1014,1015,2738,143,2545,1550,853,1967,1460,1811,261,1407,588,574,1691,2990,859,1858,2451,155,615,313,1981,2781,1120,1408,2851,2650,1162,2493,2834,2101,2411,297,2755,1486,2101,2926,2347,899,2591,2525,1884,2894,1385,1304,1018,1737,2362,2613,360,1230,2002,2615,749,2979,1749,1938,1139,1383,1629,2804,713,1027,1835,495,192,521,614,1372,962,1896,1415,2610,1534,2580,566,437,702,1049,1101,2489,2610,2589,1310,1765,2451,1559,196,574,2411,145,110,2981,305,137,2128,161,1893,2865,2745,79,241,2798,2950,1874,546,1249,509,2808,1681,696,1734,500,1646,2884,1758,1198,268,997,2768,1137,2034,706,1577,2858,999,1733,318,1595,431,1229,2522,1705,1300,2955,840,669,2969,2702,1392,600,392,693,350,229,996,163,1008,1213,417,1935,1306,113,744,2543,58,1681,2181,222,1785,1678,662,149,2000,2942,390,376,1731,59,2827,1707,2295,1917,784,97,2252,2253,1989,1945,511,654,2741,790,2372,765,836,2021,117,329,557,925,1572,2444,2132,895,1313,1901,2017,702,2774,2016,2514,2357,234,42,1089,1817,296,1335,575,1156,2922,1515,520,1579,2141,182,594,1597,1702,1482,2566,2437,2529,855,1691,2905,224,1951,1367,510,2794,1740,1891,2813,2177,2283,81,2379,640,2782,1833,2366,2918,296,1930,1372,128,955,2277,2782,248,891,2241,1552,1574,2236,1291,1745,1005,1564,467,2251,2206,242,1125,1619,2408,409,2178,1825,2947,1015,800,855,1067,672,407,757,2240,2913,2466,1325,2917,575,2088,814,240,2501,2317,800,324,2990,1220,253,975,145,2549,700,1147,1365,281,105,665,874,492,2875,1104,2850,880,2321,1343,2170,2339,916,588,2080,438,1294,26,733,1587,1496,1770,1799,2329,2235,46,576,2090,839,1675,648,1877,469,512,1046,1527,1730,1178,424,723,2845,128,681,2297,1378,1273,18,166,2135,890,680,2163,756,1314,2644,534,1707,1213,1451,1298,724,1441,655,1336,1784,2043,1174,1599,2142,2249,1116,2498,1819,2234,779,1808,616,1258,2685,40,2690,1220,2395,1304,2751,2288,386,1665,1894,1731,1871,248,1489,518,1152,2492,1321,1998,277,1209,1390,1675,1978,663,502,2366,1085,2539,2948,2652,1247,2952,1067,1205,1798,1077,1501,226,2444,898,249,2780,2388,570,2052,2483,1119,2984,1123,2092,2445,177,2469,1154,1851,2640,2502,1361,2531,2108,2776,1405,2656,504,358,1546,957,1769,490,171,2763,128,661,2873,423,2577,1984,1475,1238,851,655,749,1454,1788,1707,1697,296,820,2470,2191,385,237,1789,619,316,1345,1854,715,2776,2848,1604,758,2201,1507,1879,2382,1208,66,25,311,305,2186,2260,2379,672,1881,1844,1952,2832,2592,2125,487,2994,622,517,798,714,2173,2224,1479,2081,7,973,222,2783,2458,147,2622,770,2776,1462,1266,1840,2822,645,2980,192,1581,2570,753,1269,1023,717,535,2406,1618,331,530,2438,626,1991,2346,2721,1926,795,2099,1746,2448,787,2194,395,2829,1204,1951,2684,1953,988,2087,982,552,2786,1617,1964,538,1729,2544,1785,1258,1984,1661,1995,2898,1332,2627,894,2202,1298,379,519,2928,462,199,2271,373,718,1471,2547,1860,330,785,2732,1637,1046,2827,1957,190,2283,2265,1694,495,2651,1137,1898,1064,2831,2476,1515,1341,2879,2544,2947,1446,17,2006,969,707,1847,2035,1194,959,2074,1782,146,1420,2670,2856}

    {168,2082,658,2179,371,527,88,1625,1796,1307,2163,1043,331,1280,1857,2500,568,1763,710,2593,1839,2407,1873,1622,341,218,1997,1195,422,103,2002,211,2511,2785,2088,1410,2612,166,1966,1098,298,2175,222,799,2444,724,1911,303,2699,2512,314,121,1555,1816,1442,756,605,1555,2444,2793,2579,75,2623,2541,2590,1695,1655,2577,1296,1852,593,1233,835,1360,1729,2780,601,2466,1602,2382,633,807,109,2315,1306,2153,1400,1447,715,231,2977,910,2942,492,1757,891,375,904,652,2008,1913,2437,1676,1961,1059,2437,2700,1280,182,2682,2823,439,365,323,2704,1170,1281,259,1593,2457,765,1697,2832,1249,916,363,2086,1566,1178,2557,186,1896,2621,222,1929,1184,1644,1460,129,2530,2336,1376,584,2224,2505,1736,1948,1789,922,2757,2706,1279,392,1064,565,530,407,113,2520,1003,2090,2401,2532,2174,644,2141,2118,1260,655,2436,83,1577,153,2977,2183,1946,1789,2634,650,392,2674,2107,532,2633,385,2335,1223,2406,380,1061,1468,2825,1102,373,1369,2333,408,378,1508,119,1261,1862,454,2388,331,981,650,2818,63,1658,2409,278,1649,1351,1377,1093,143,2585,2695,2663,2575,1227,769,2018,1413,1679,112,1508,2546,975,2460,380,660,2739,982,1114,1194,1149,808,921,1396,853,2564,995,1376,1453,807,192,2101,771,1073,174,861,2021,916,734,2195,1306,1861,14,2688,2043,2586,2567,1363,370,2217,2280,2498,178,1647,2911,117,1808,2966,2864,801,2318,2104,2571,2508,121,2883,115,1086,122,2381,1536,2046,471,524,1218,1557,612,641,43,2883,1134,418,1591,572,348,2502,636,1607,623,2956,2635,1933,100,1899,2746,2031,558,2846,1009,744,1940,1806,272,732,243,2518,395,1530,1379,2306,941,965,1999,1364,1820,2598,2025,1438,848,1099,395,1654,2983,464,1599,1570,782,2070,2956,2206,1592,185,67,937,1320,342,1568,2334,197,1704,2558,47,882,1379,2326,1268,1878,627,1413,2497,1125,125,1208,2127,2325,2948,16,1610,2693,771,2106,1280,582,1088,2317,614,1266,2664,87,1277,393,2143,2682,124,682,1702,2989,1799,1400,499,272,325,2826,562,695,2801,1248,69,1180,2883,493,341,346,1850,775,2473,263,523,353,243,703,1820,998,769,2346,543,1853,1624,509,1335,2432,2349,421,2634,475,1844,430,550,2368,2449,494,2929,194,2100,876,1610,1339,305,1857,408,248,1310,2398,641,2241,1158,748,1358,1195,1487,610,179,1884,2509,2665,2679,950,2443,1640,1236,420,1867,1171,617,1624,730,606,1698,1891,975,1792,2885,814,2681,769,1914,1932,148,627,2386,2405,1470,1482,2222,2865,2798,198,883,1327,771,736,1418,2389,686,819,1955,1967,665,1155,2731,44,1104,2428,1443,2899,1604,2738,2673,893,248,2106,1581,2987,2439,1612,1009,2462,27,1433,983,1297,2098,1824,490,246,1933,156,2288,1806,1680,2132,840,1252,970,481,539,837,919,461,2900,1538,1280,2872,776,2571,430,2061,2730,2207,2181,2889,2930,2926,833,544,1535,1717,1796,2639,522,1355,970,2887,877,1155,2529,2462,2878,2501,579,704,2523,1707,1087,1969,140,1269,1072,448,336,2261,1242,2895,1560,2416,48,1718,443,2693,2639,1102,1950,435,2827,2325,2105,2824,362,1590,2602,1068,2287,2045,127,1498,406,2165,2802,2460,601,464,2059,988,1415,280,1583,2066,596,1234,1994,313,857,2044,2791,32,1310,1887,1607,2321,2482,1461,242,1481,957,2230,2812,2693,541,445,90,2423,1804,2550,1095,1262,2170,1902,1577,1453,1993,587,2376,1271,2785,1845,2496,1986,2731,1360,88,2234,2738,404,1177,409,397,1496,1707,616,1282,2298,2613,572,81,1560,2131,1185,307,2890,2361,400,174,1909,2276,1627,690,1467,755,2946,1129,771,1014,2302,228,95,2353,1109,222,2673,1418,2136,927,1802,2602,1121,1912,2805,620,2402,730,1859,1203,2320,458,918,526,1681,2469,1937,697,771,879,245,1007,2886,2498,2650,1428,1015,1235,2886,56,2270,2817,2755,728,509,1266,1905,863,1747,2229,2686,1508,1394,418,2731,1660,2155,1668,824,2879,777,1846,2916,1097,646,1343,2602,534,912,1085,2279,671,2424,1033,429,299,2066,867,858,1092,2469,622,693,1288,1455,69,1539,2144,1801,1245,5,2326,2015,31,2421,2521,349,987,2274,598,370,1665,2128,926,410,1763,603,642,1220,563,1337,877,465,666,1497,797,878,2061,2709,1701,617,1876,326,1094,889,173,881,2415,662,2761,642,2133,1194,311,2477,2620,619,1817,1375,1763,2468,1041,894,172,939,2630,2977,713,211,2500,2000,431,1450,450,519,181,1236,371,311,2027,852,1638,469,997,138,1010,2814,2022,2952,841,1502,1088,708,2231,2677,1634,1337,2524,2540,1735,1044,2598,1761,2147,2351,2298,2735,524,2976,2212,1931,2346,1942,1120,1500,858,1308,2616,2855,1333,1299,130,2862,619,822,1875,1115,2534,1219,1583,1946,756,1707,2928,2472,310,1187,2424,883,2815,1609,889,1148,2223,2878,1831,2147,636,187,1872,737,1406,128,280,314,1823,1954,2563,722,2157,1895,265,2630,2572,2791,2056,2225,1021,2252,1229,760,2542,795,1168,2639,1581,389,189,2377,155,1366,1612,71,946,17,1774,438,1937,1004,2290,1010,12,1482,844,2637,2535,2852,1215,266,259,1612,1653,2679,2297,909,1214,1348,2184,2527,2619,2234,394,713,2586,2110,2836,470,529,992,4,2277,1663,207,1236,1908,1265,855,180,733,538,34,1120,570,2175,2770,1288,2920,2111,1962,2791,1624,1462,792,513,1377,2779,1065,2072,182,724,551,1843,1748,2636,1523,1976,2028,2648,1524,63,27,2628,1800,1499,1781,211,1347,1474,520,951,2787,2086,200,2206,2106,1294,1462,2004,2839,584,1743,2149,2488,418,1708,1848,1945,2533,2100,706,898,1075,2328,2819,708,2972,1371,653,1956,1827,1586,217,373,2408,1127,239,477,2436,1407,89,114,314,1614,2655,702,2814,2328,2448,708,204,485,1473,861,858,1437,1752,520,1218,1672,2221,42,2453,855,404,168,2682,2809,622,797,1031,464,1897,126,2061,384,1922,2904,2431,1705,175,187,1288,2272,709,2316,2920,858,598,383,2922,2433,2644,498,1952,2725,1159,1812,799,377,1224,2481,1671,2658,1937,1155,1751,250,676,464,265,949,75,2787,1645,1841,313,1899,212,2569,254,1467,571,1906,393,1820,75,77,1012,1306,157,2825,922,2172,360,1115,2210,1718,1176,662,1826,1135,1783,184,1541,1291,1051,868,2427,1932,1440,2278,2381,2050,549,1363,655,1724,1865,1724,2775,1892,783,1449,1926,156,1776,1574,702,642,1308,2059,114,2797,1711,392,89,2323,2774,265,47,2341,2618,1437,2235,436,50,78,2137,664,93,1683,2256,230,2853,2845,2694,1147,2294,1830,1664,1343,782,617,587,2170,2278,2739,1965,1542,2816,894,2866,1329,2479,335,2884,116,436,514,1643,2827,2351,2179,2773,401,1430,2725,2085,2344,2205,1899,2852,823,512,2691,911,1332,1531,2982,2100,2837,1294,955,2584,756,603,1692,2175,2799,78,1530,2075,2866,1508,2179,2335,2765,2785,1454,2337,2780,2101,2788,773,1896,699,2402,2419,2676,1377,897,886,2477,2792,2990,0,1696,2936,317,645,1379,845,1442,356,1157,221,1146,2206,2776,1270,112,360,2401,2020,2167,1899,2942,129,2973,193,1312,1323,2533,499,2093,759,1219,313,1845,1485,1316,2289,1780,2407,2438,2097,901,1305,958,623,2252,1458,2973,2658,2503,2229,975,2473,23,2571,413,1355,2478,507,2469,562,53,1002,2755,1382,2728,873,1377,1571,1589,2604,856,158,99,2500,1958,1562,459,2269,1445,524,1211,366,2216,2469,866,762,2602,2758,2232,121,1599,1185,2582,1498,1495,2911,1475,267,775,2185,187,2972,2365,1940,1041,1230,1528,242,1504,249,2778,2952,1300,1582,2275,1276,2794,1749,2935,853,741,2084,2710,957,60,2772,1161,1095,322,33,410,850,34,1819,848,360,864,1066,1374,402,2273,1070,2752,1449,1477,1613,56,2870,1154,2985,782,799,994,2397,2483,1655,962,738,1549,1115,885,954,2057,2281,2973,707,2342,597,2525,884,2119,571,418,2412,2658,251,1130,1524,2219,867,798,334,2490,2247,620,1485,1478,1731,2827,1178,1603,2666,1495,2239,1222,2091,337,2337,2186,2060,897,2707,2670,2000,907,756,1337,1982,715,1326,2613,1662,165,1293,2486,2274,1731,1486,2599,2504,2562,2602,629,980,1399,2502,2903,874,1919,1721,1521,756,280,2001,2877,1401,1748,1389,395,2374,2808,2600,1781,2319,2726,1927,967,2176,2304,1692,793,2320,2778,1164,2239,9,1506,2316,214,729,1797,2721,463,2893,2399,1779,2957,1302,2151,2712,843,1823,2783,683,1967,1510,1688,2996,896,2526,572,2197,655,2175,205,575,1883,1680,2810,720,1246,2783,2527,1563,1796,1895,2863,879,575,1706,2476,1656,2495,411,184,2828,822,153,772,93,894,1256,1604,2227,1085,224,2611,639,68,2985,2964,1282,700,2968,2560,1092,164,855,2686,993,633,2111,1512,339,2954,2724,1710,2238,2488,583,924,1792,905,1189,2018,488,1654,2990,2657,2719,277,2319,977,1094,512,363,1243,812,1431,2047,1136,839,744,2118,756,1905,329,2667,2907,2442,2364,489,1354,1931,1564,2641,2924,778,2346,657,2884,2964,2391,706,1145,2375,1197,2100,919,54,599,707,778,1192,1337,333,2385,1923,1248,2933,1500,2182,2192,403,45,2347,986,2469,1236,2574,275,822,2243,1206,2175,1458,891,1201,2336,745,1914,336,303,2945,2003,2264,677,1484,2921,2627,1598,2581,2335,2619,106,2061,2032,1990,2827,1268,349,1760,2397,273,2881,2360,2651,2922,2734,2958,1962,1793,531,2361,1510,456,706,392,2397,1294,95,2239,2906,262,1754,2422,649,2090,481,182,1766,729,1829,364,1732,88,1552,2869,2931,1750,597,56,112,1439,1500,1275,597,1815,641,1011,2232,2845,407,1907,1445,2489,2319,301,2484,600,42,2077,2983,1179,1225,415,1299,2148,588,2971,2380,2232,1796,1445,2991,1220,1916,688,1628,86,2527,2021,962,1935,2956,1402,623,653,2296,1691,411,2046,2004,2314,1311,1478,564,2297,2544,505,1059,1547,439,1803,1830,2542,2626,2192,2297,1835,21,367,1078,1377,1669,1229,709,327,1452,2563,1310,2679,227,2154,2460,1752,1553,1503,1,284,1511,1369,874,1128,2632,2721,1111,2124,520,2200,1445,602,1448,1476,2438,2435,1340,1104,1057,1869,2526,1009,2220,2434,982,1219,1038,1382,917,2364,2670,847,2115,1020,2304,769,2064,1593,1814,2009,1347,1185,1934,2279,1903,832,544,2664,533,35,871,452,2503,1198,2617,1716,130,2828,1323,115,786,2884,2501,2053,871,1419,2367,1785,1681,2529,2411,1715,557,1332,2711,2308,1899,2058,2248,2024,2013,2019,389,761,149,209,2686,1836,278,1029,2647,2350,1589,43,984,107,54,229,497,1991,2727,2375,176,1707,1717,1061,1984,1745,341,2948,2911,810,894,1093,2071,1894,1821,1562,1859,2298,2554,1943,2152,781,2081,2039,332,1062,343,2934,2489,2022,2436,1415,1905,2893,339,1763,2601,2462,1809,678,2631,139,2061,1201,2370,1919,2784,2256,255,2612,2311,1791,829,822,1472,847,1856,1677,1868,869,2979,1540,1090,2948,1434,558,1977,2348,250,489,1157,1874,349,1982,2779,753,382,2424,645,14,787,1220,2385,2522,651,1767,1241,1247,2172,2692,408,641,2111,2517,2115,1919,2761,1991,886,1491,2026,2423,1021,2423,1140,1147,1396,2930,588,1146,2952,1181,2162,2384,2203,2625,166,2310,1369,1310,2579,2778,1493,2322,76,852,2755,2618,1267,2791,2265,2340,1511,2036,1093,14,209,1458,2541,2396,1870,378,2058,1992,1524,2520,1480,1681,263,1003,846,1193,547,1815,2571,1124,524,951,2129,1296,1520,2429,884,1561,2307,124,1967,544,1784,1879,32,720,1397,2882,2687,2023,2564,2254,2398,215,2899,347,2840,1060,1225,657,1385,2092,2202,700,2553,2459,2264,1597,952,1684,54,2193,1559,928,2248,2845,1286,734,1590,1514,287,65,861,480,1339,2497,2208,368,2584,2450,1005,2382,940,354,1372,2188,1439,2297,2782,149,1679,2686,2249,236,716,1207,382,2998,2601,2129,2958,549,2071,1231,192,586,2206,2644,1024,345,2720,525,798,703,1729,1693,1105,224,103,314,1430,2173,2153,433,1260,1214,1167,215,1143,2386,2233,2164,1038,607,2763,2000,1779,1667,1196,872,1505,2118,1828,2180,48,1285,2282,1287,767,2170,2246,2791,1625,565,523,408,356,1044,1355,2938,1152,1412,344,1298,589,2934,1175,1397,2335,1768,1052,1418,2830,2891,2928,2798,27,1558,457,1639,2171,1982,116,971,2411,2937,1880,1312,1970,293,2312,1117,2168,2356,1424,818,1692,1143,2280,992,1905,1337,2005,2338,487,2000,2466,1404,1980,42,2028,1805,2808,936,2727,1108,804,2259,1768,116,152,2347,705,2424,2324,847,365,1397,2912,2598,469,2743,2004,2021,1726,2997,2293,364,142,2838,215,697,2525,625,2440,2594,1426,1898,676,2898,1030,373,2537,2106,2421,1264,2785,54,265,410,822,2773,1470,1905,1110,231,2578,1134,1081,92,995,24,1141,1472,2337,1939,968,2100,1442,2611,657,600,2399,1222,584,1896,447,1181,975,2243,441,708,2571,1719,581,110,1151,1395,2319,769,906,853,2392,1185,1495,1547,737,2749,814,1544,269,2847,807,2326,134,51,453,2946,2867,608,2475,1478,814,149,2190,1810,2762,627,2811,2411,2334,2244,108,2091,1420,2720,323,2403,421,925,2313,2255,2355,279,222,2627,249,70,1807,2900,2228,2151,1507,1432,960,1972,2848,1210,1290,979,561,2974,713,825,1091,941,446,2062,439,394,2346,205,544,1623,396,1082,1983,653,1388,2795,1742,2161,373,1421,388,2964,248,707,2307,1585,122,655,1938,554,326,1899,1090,2163,607,2919,1220,632,536,1578,2385,1586,2547,524,1720,1053,1410,2576,2922,1688,1750,2363,2166,1006,1001,2720,95,647,1416,1352,2585,2462,13,2790,2309,1792,1650,2189,226,1705,2545,1233,2096,1649,1929,482,1951,2393,820,2882,624,2493,42,108,923,2543,517,355,1633,2950,2204,1517,1556,430,956,1119,2049,2766,1978,570,98,2230,1915,1661,1656,2828,2464,860,1749,1481,2988,288,2800,156,392,1060,23,1134,1173,1524,101,242,506,1039,1672,963,749,231,1845,198,1289,573,1799,2218,1163,1864,566,1241,2704,155,1738,673,1279,1303,2753,428,2301,448,2136,1765,2118,183,141,2506,1591,1456,51,1138,123,2373,2932,656,864,1289,1977,593,1097,1095,247,1971,2641,620,1076,1051,736,1879,2373,540,300,1772,2418,1299,335,1682,2012,2776,213,1451,1169,1817,1610,517,2539,1663,2390,141,2286,2780,1113,2577,1852,1700,2187,1373,176,2934,2605,182,1631,2118,988,1917,1919,939,665,1538,973,2203,2884,135,2150,2083,198,1754,1133,1248,2132,1475,1741,176,923,1889,1211,1120,1283,1370,1943,164,2170,2844,2134,2959,2061,2413,2336,2084,650,2291,1403,2483,412,2156,1346,1097,1394,949,649,2827,1374,1848,545,2051,2629,2192,903,1151,1792,1033,1333,2035,2823,2969,1777,2452,2970,1143,20,1157,2649,2844,2760,91,160,1641,2311,2284,1138,1950,1429,2398,2929,727,1482,1525,1700,1451,600,650,1630,2501,265,95,1129,2772,894,949,500,2141,163,1049,991,425,2965,1280,2730,1766,2041,84,2758,1915,719,2034,2744,2993,2560,2827,2258,98,278,55,2462,2450,2417,629,1530,1823,1840,1446,1120,2114,2468,43,2686,1153,1095,197,719,2750,2126,2609,1857,1306,506,2405,1124,2555,72,1442,2760,2750,1361,2101,943,1237,1731,1107,2565,1810,1592,1378,1526,2139,11,387,337,491,1144,1784,915,1142,2785,2782,1365,1783,1232,2984,1849,1637,2177,372,1266,1200,1373,2444,54,2896,2160,1190,2767,1875,1290,523,1310,912,29,985,1530,764,2069,1024,2201,993,1555,1330,2860,565,1881,1464,2996,1391,1924,2614,1573,1608,1817,1379,647,949,57,2078,2477,376,2721,2880,2040,2709,995,2970,2206,771,2248,2508,1512,1126,984,1539,1734,62,225,2910,307,1993,1774,768,1578,2455,219,1022,538,1690,2098,2799,2091,2599,1100,1794,2776,2500,1469,165,961,159,908,391,2632,2385,1384,35,1693,1565,82,755,2717,252,635,2048,2483,2927,2089,2269,861,1734,2106,484,962,982,1725,1076,931,803,304,1915}

    2913

    1597

    Returns: 459081496

  70. {1756,2656,2019,2592,214,1160,2848,665,1349,2779,595,571,84,1454,2291,1291,1775,2302,1842,2705,2653,1500,1072,2390,703,226,1681,1389,1142,1477,1849,2519,519,1952,2201,1416,641,1214,2005,273,859,2512,1767,2447,1833,1282,850,1875,2058,2654,1990,1138,2056,1010,2861,2044,1418,1025,188,2124,117,2711,2867,2474,1989,2367,530,1865,1707,2910,2161,1033,1698,1581,1592,225,1884,1001,929,412,830,2618,2096,2362,1108,1787,321,1545,1481,955,2103,2393,965,2106,1405,310,1486,2997,1241,1975,582,165,452,727,141,2470,655,1224,1102,2259,2045,1040,2543,2883,1819,1028,2549,171,2315,2688,3,2535,790,2297,1631,2514,2006,2233,1362,796,185,2087,694,2885,2534,466,874,2552,682,976,342,84,805,2210,1047,2392,1662,925,2389,2539,1094,1783,2798,2150,1462,1357,1415,1451,2526,2924,1363,1902,2362,2825,2830,1409,1459,1846,1060,2261,998,2196,2721,305,1076,674,1698,64,2174,2234,1339,1499,500,723,1424,2603,2613,530,2917,2144,1753,2207,509,1458,1838,635,1705,48,1311,2884,2732,25,2698,1636,2435,1119,2798,817,2310,1493,2952,2372,967,731,1182,1896,2951,306,1014,1275,1336,2021,1364,39,2076,1702,2552,1635,2972,1763,1729,921,18,1162,895,2403,447,1186,150,163,2772,207,1516,148,2416,57,2944,2349,511,837,47,1022,2561,2938,2676,960,1116,2555,531,760,2390,1879,2840,2973,1221,1187,1102,2085,628,1622,2458,1154,2377,1020,247,1295,2038,1839,1723,1747,2399,493,2885,26,137,270,2477,93,1220,29,1896,626,623,1704,813,2828,2416,2432,1853,2872,1365,1711,674,2668,1562,558,277,714,463,2564,786,1875,2875,2146,1636,2571,2753,432,897,2198,1161,2795,2853,87,1155,1198,419,1147,729,2945,1629,1822,2371,1096,469,909,433,2056,360,1326,2010,958,10,1493,2965,1200,1121,1274,1147,8,1823,1584,819,260,1265,152,1456,1024,2551,743,16,2327,2978,1765,1889,1013,2809,2033,701,1860,1155,725,373,1663,2450,504,539,2426,68,529,2807,2133,1640,2825,1984,2593,547,2066,1068,562,394,2929,2565,1702,1316,353,2073,380,630,565,1513,2509,1813,734,12,701,5,556,1506,1610,2347,265,2582,2481,1336,99,2808,2426,2418,1976,728,2149,383,1124,704,1981,1082,503,1373,585,2724,2380,2305,1618,2188,908,269,2988,195,2142,310,1879,1206,2236,2571,2694,2113,1650,1755,2013,847,2541,2562,265,13,2671,1040,2612,2569,972,2493,1763,1877,1290,2942,129,1193,1691,2374,2360,2793,1334,1848,1763,2712,2370,1767,910,1113,1239,605,445,533,457,1403,1029,817,1537,1007,1082,1495,2037,330,1673,1227,2383,1697,225,2287,970,578,1085,2620,405,913,1208,2105,701,2080,558,955,1862,1262,1178,2475,2192,1445,844,2364,2664,1374,92,375,2372,2619,1588,842,2192,2267,2969,2182,497,2673,1113,1039,993,2261,2107,2550,866,1439,2835,1316,645,2609,2244,2933,2143,2845,1241,992,2845,1529,412,2053,907,32,1736,2662,1521,2049,2020,1400,150,1012,182,199,1535,703,655,2749,2898,1584,880,1324,2146,1925,1221,2127,813,211,422,1836,2970,2631,849,943,1372,2861,1041,2168,253,2830,1241,184,884,1836,1489,2524,1165,1810,1704,1337,1347,142,1630,1802,1550,2039,2166,562,59,60,1170,88,692,2905,271,2229,2238,290,295,2511,2066,2879,1581,1259,717,1994,1078,1263,1857,247,270,2729,182,165,1114,279,2523,2252,1552,647,1917,155,1543,2532,1070,309,536,754,1689,586,2378,1299,1087,2429,1526,1035,2105,562,1454,1061,713,1644,57,1540,500,1855,995,2794,239,2967,2691,1144,1519,1589,2725,1499,1069,836,408,2429,1600,2966,2117,1350,1449,885,2938,2408,1822,2942,1364,1691,2773,209,1255,1035,754,2467,1281,2285,2484,213,383,2768,2764,1013,2614,1170,1718,1560,1581,236,1619,1807,1678,585,2681,1987,2106,1266,375,1330,1277,1276,2704,83,2489,572,1962,2485,2125,2965,527,2818,2904,545,165,448,1015,1561,1102,2715,950,1407,2380,2765,1058,129,1591,10,2504,772,2119,1889,2860,1777,1968,2901,2235,2128,2063,534,383,537,1532,601,2441,384,1343,1295,2612,1392,2824,858,1192,1871,381,2917,2713,2504,885,589,1109,1339,656,113,1028,2931,1344,121,2555,1438,1839,1282,2231,889,2016,2918,1357,590,983,2826,1177,238,886,2097,1556,188,1944,2340,559,2639,1466,304,2917,2432,219,881,308,2462,2326,2633,738,2622,1644,1325,2442,2391,1013,1676,2300,1201,633,2862,1991,1223,2820,2101,493,2152,579,1227,1871,2685,768,2453,362,2040,198,938,119,166,460,1827,573,2947,922,2258,1779,2257,295,2125,626,1674,1475,762,1060,1933,2445,1466,1939,1439,58,2494,647,2871,2189,2742,2667,1202,298,1030,1475,2632,2994,2187,1597,1421,2240,2891,997,2142,671,2018,1659,1374,1906,861,1962,615,1631,2492,2507,584,406,2154,28,1090,2713,10,2427,2702,1181,265,1658,274,126,1489,559,2817,2201,2827,1575,1298,245,2712,947,2575,2146,269,1015,1213,2900,2343,1258,1992,1617,361,2206,1449,1614,859,2304,233,1260,1866,1997,386,558,252,2634,562,2226,999,2203,2876,2913,2670,1594,2581,1545,1398,88,1554,2278,2564,606,1940,2756,2275,401,683,1829,1017,1241,65,2949,594,1071,1496,1180,804,2914,1230,2826,1562,1218,1993,2195,2529,382,1113,2886,468,2295,2598,1242,1941,2031,255,2144,584,490,2827,2564,2738,625,277,2693,479,1682,445,481,58,2055,2135,1246,366,2504,231,293,816,2089,1845,325,74,1015,1759,329,845,562,2469,2253,1312,1880,1633,2963,1172,1737,1503,1352,1644,463,973,1615,1102,1953,1249,393,2939,567,1898,1467,1498,2589,2765,2506,1541,1863,1228,2503,2924,2527,2550,2552,413,732,456,2346,2219,115,1974,2376,176,412,715,1377,2344,986,2232,2933,2544,1594,1705,2051,2454,1013,2310,1796,1652,1662,1558,2199,816,67,2422,973,730,308,2546,1596,1384,1535,1766,989,1706,1974,483,2414,698,1578,332,1707,1418,2424,2860,1128,1664,156,2492,2830,906,1514,2431,2785,738,201,1915,2044,1163,1211,1583,2015,1715,905,1894,1796,223,2787,1989,113,1313,2914,45,680,2307,1164,2426,2306,2695,1871,2765,798,781,2467,1369,151,2,418,771,2161,1325,570,1868,2140,1817,208,1491,465,2651,1071,2770,1694,1414,2231,904,146,2492,240,1622,2192,4,198,438,2870,467,2358,457,299,639,1327,2504,1243,2625,347,254,2909,2987,2951,2723,1284,44,2839,1488,2834,1473,1562,1978,425,1480,2997,2634,288,2420,875,1002,1361,2788,2288,1897,2035,94,1734,322,262,1232,2759,267,63,1081,2940,1669,1920,1419,2505,2771,119,2297,361,884,215,1899,2142,2263,200,2190,1564,2505,1180,819,563,1831,1874,1371,2830,2523,1856,2212,218,1685,973,1628,134,2570,1148,103,867,1492,2019,974,1807,1181,815,1097,1349,609,1601,2518,1001,745,2289,481,1988,2531,2851,2882,159,2210,762,2571,2405,412,417,2974,2564,1013,1731,2,696,2558,1955,2620,1157,231,278,142,439,930,1361,1040,670,44,2530,381,884,1333,51,450,2265,83,742,2578,2659,310,841,616,1931,1549,474,1805,1384,128,1241,1718,2337,1228,2901,2062,520,88,1590,2559,858,30,2221,2765,1115,1093,894,2815,2868,77,987,437,2048,2736,221,1947,75,1391,2759,2615,1625,2881,151,1984,2787,161,264,506,1158,1940,1470,2426,1450,763,165,56,2122,962,343,677,2597,1021,2806,1986,1934,137,1308,1228,2429,1649,1229,2538,1900,2489,2719,2868,2458,31,2273,1879,2319,1893,1603,2876,2281,736,184,2774,2936,1852,895,758,899,688,2489,2553,1384,2675,81,1654,1888,2236,2106,2147,1412,1065,1558,536,268,2417,322,1706,1593,968,1832,1871,862,2580,148,1632,145,864,1341,2591,1112,916,2533,2640,2608,2160,752,1457,1945,488,223,595,718,1778,600,108,1911,2838,1565,2194,2426,283,939,1644,1916,1762,1486,147,1805,1475,2082,941,2369,1839,1228,2189,835,2698,353,1939,2192,2860,2827,2167,2547,2855,313,2052,1372,2558,2716,944,1807,508,2677,2740,1776,2510,1055,283,302,1788,604,1944,98,2269,2041,2479,2879,280,2678,300,2133,2773,2647,1334,2094,2473,2843,2683,1585,1453,2384,2277,466,809,1734,1330,1745,1892,1380,1466,2960,1442,1536,2328,2246,569,1960,449,2445,2232,270,2238,196,2243,2429,1485,2214,1928,2023,738,1013,1899,1201,1982,709,1102,1195,525,2148,643,2454,301,539,1192,2843,291,1478,2533,542,1245,566,1252,1508,496,1871,2930,1847,1750,2823,1827,2255,729,557,1146,1810,2153,66,109,672,1073,1171,356,1718,1556,1860,2938,773,1312,430,457,127,2569,1891,2274,241,1506,1935,1305,2544,151,2362,2816,99,2644,2295,1593,577,2665,829,2868,1879,2236,284,1186,241,920,858,1615,270,559,2919,556,143,2208,2296,1657,1005,1714,1606,525,2410,1106,409,349,951,685,1645,1679,310,832,2863,1568,19,1274,1955,1539,2630,1720,1035,775,917,77,2997,349,2193,2059,2673,501,731,1653,1279,1236,2207,1513,1246,1323,484,2542,1179,1851,1079,124,626,2763,1919,1277,2750,989,2768,891,709,2957,1734,68,586,602,2024,745,354,2112,894,41,627,1412,1254,2695,1462,1563,2701,2026,812,433,104,1598,1091,1507,620,2568,1376,1537,296,111,2314,2854,2125,2225,2000,763,2921,943,1570,200,345,2114,1664,2839,1410,377,1749,734,2837,2852,2637,683,1015,1210,2646,695,1096,852,2076,512,1272,1818,1525,1698,2521,1189,2919,2179,581,2626,2230,2156,81,2425,2912,1135,1177,22,1354,1085,178,519,2918,2237,1644,2856,84,2703,2606,2786,2223,750,377,561,137,2121,1905,862,99,2396,2391,660,1837,593,1253,1763,2875,971,324,2269,2913,2317,1226,2839,2497,1655,304,294,2869,286,155,2281,2516,365,411,1295,528,1684,852,2457,235,1663,2096,230,1233,227,1805,644,1975,1929,1338,1133,297,1690,1102,1948,1375,956,519,2820,813,1387,1199,2846,1958,1026,1864,2510,630,1023,1011,556,859,501,1373,1549,841,539,2243,2165,2595,2490,1192,2743,1036,2173,2282,153,1095,166,546,2353,1980,196,5,1719,770,2698,599,2860,200,483,416,2765,1023,1627,2250,2059,2971,200,1642,50,1276,54,1204,1178,2965,2645,350,890,453,631,1566,2717,796,2262,267,486,1400,496,2843,1826,2234,1408,1803,2426,1314,1650,1885,1484,2471,887,1861,1704,2704,2003,685,2865,939,350,703,924,110,1110,357,661,1887,2346,270,45,107,2397,2151,1468,316,1234,23,1638,1356,572,1992,2019,2459,2382,2251,2772,156,1140,1789,2081,1834,609,2001,1113,1974,157,2786,683,1857,624,933,570,2042,1546,721,2377,1338,2852,2222,717,1480,497,2333,2825,848,2299,2813,496,295,2215,120,2487,1505,1035,1763,2648,2312,2191,1428,2878,1623,6,1711,941,2814,2944,2063,774,651,2448,696,262,1594,594,2049,1766,2934,719,1307,2568,2309,316,214,2721,1317,1147,2958,136,1542,407,1881,2440,1270,706,1567,199,103,1080,2116,841,1,1667,2747,2229,894,1702,1693,495,1261,1521,1711,1070,412,2731,2149,2161,934,2013,236,485,1046,2586,1352,1072,1162,2269,1721,959,1975,275,1149,1717,1564,611,2482,2748,1534,2495,1746,352,2817,892,1764,1207,2886,1299,2256,898,1194,2066,2442,732,2684,2142,134,1780,2385,1993,228,2066,221,965,1474,1591,678,1015,553,799,1723,1543,1399,2823,2125,2151,1927,1372,2616,1996,1878,1803,1451,1243,1101,2555,2752,2084,1740,158,2718,54,1507,2638,972,372,1963,1874,893,2139,2092,650,2845,2710,412,982,2765,1294,200,1130,1011,784,2171,2666,1472,639,397,1397,1602,1212,249,799,1121,585,834,1255,1079,1936,2308,1013,490,2175,2765,7,1613,812,490,334,1602,1561,2375,2750,1838,2774,746,2069,1294,1075,2109,76,1413,2323,1720,1089,2217,476,517,1435,2928,616,1218,2213,1964,2173,350,999,758,2555,2399,1612,1771,2725,1216,1525,727,1496,204,56,762,466,922,1671,1827,2472,1244,717,1010,2604,99,717,2571,669,1389,152,2982,270,1040,1244,1427,1884,2098,1860,1978,1706,1031,380,2289,2429,140,1148,1216,558,371,2254,148,2764,595,2922,2153,1987,2909,1838,2081,2599,2026,2044,1486,158,1855,1928,840,1993,895,1545,2035,367,1433,1702,2580,1661,2281,446,2911,65,1860,176,2601,2126,1769,1006,2791,588,1467,1553,311,762,1944,378,729,1607,2156,1368,53,137,1825,570,216,807,2967,870,2327,2202,1653,1405,2434,1188,1977,2780,2473,869,2016,2568,441,74,2833,2025,1059,2959,1040,2213,1889,356,1704,1857,2705,702,1950,2634,1887,2105,2837,1087,659,263,1851,1999,2707,530,1692,1101,2836,2571,112,1843,242,2191,564,1117,1390,1799,1926,782,141,2382,148,353,1613,1868,128,454,2463,2133,1841,1961,1437,2950,1623,2865,2553,2684,1970,2446,2006,1489,1644,2136,334,1909,1811,1352,1152,810,79,820,229,1314,1289,738,213,1012,911,2049,2014,2893,753,395,686,2418,2545,1297,1760,527,2757,168,416,201,1988,1588,594,177,2317,947,235,894,2320,44,2702,1651,2389,659,780,2876,2628,2888,467,100,2610,1832,377,930,1124,2916,574,1532,1411,1078,58,422,2341,2427,1044,1159,1459,1333,2478,2016,2792,2143,1580,2103,2585,2765,1158,1768,228,1366,703,695,555,1328,1789,373,1881,1260,1066,1167,2495,2587,218,834,1757,956,1523,2840,1152,2237,692,884,1464,2850,783,1255,614,478,1487,2567,43,1043,501,2292,191,2011,1338,2443,196,1365,1416,1504,2310,1007,182,1537,2810,2438,1959,2856,1095,2894,2321,1932,1519,896,116,2131,42,463,2167,1513,132,2925,1796,1668,1503,2517,1816,2130,1743,1476,1741,1758,2868,2219,2762,1705,492,2373,2396,601,1318,1666,637,1240,564,1737,1344,2368,432,759,1596,2604,1567,420,1252,1077,1616,2740,2501,2594,176,13,346,2725,1332,1473,2602,1968,1216,443,1692,121,391,877,403,1734,243,1745,2049,2075,1736,539,610,2330,6,291,1275,2946,1127,2917,1789,2131,505,1251,2411,552,78,777,2436,613,2608,626,600,2810,761,322,2442,2415,93,1425,1684,2131,2271,679,1634,2519,1805,937,1820,237,2954,2297,228,2799,1317,2695,1009,2438,236,1828,905,743,1408,2765,1056,1966,1429,245,1872,2234,2529,2909,2687,2107,627,918,572,2777,1531,865,1001,1376,722,33,2437,2336,1960,1309,2227,500,2611,2380,1403,429,562,2207,2771,956,2366,1890,661,2423,1833,1494,2288,1309,84,1475,1699,1859,1528,1256,2823,1101,22,1047,990,971,1739,798,2205,1184,1439,1434,423,2395,1984,2210,1886,1834,471,840,2009,229,1870,2909,553,1643,155,2974,2612,737,2357,1856,268,2625,2605,450,1821,269,558,2232,560,2775,1170,176,356,635,1046,155,2107,2900,165,782,1834,979,2823,2051,1551,2178,1352,1828,1834,1780,1238,1119,2913,1275,541,1237,1936,2827,2525,1602,962,923,1944,2363,1970,846,192,524,1325,502,2538,941,390,221,2888,1925,603,867,863,173,626,1210,2090,1653,2036,946,2074,1396,835,268,810,2019,1001,1008,2629,1475,2146,969,2890,808,1067,2544,516,685,1148,733,261,872,1234,666,1583,2411,461,78,2699,51,5,2502,2106,927,2188,2773,348,169,1410,1216,1566,2927,49,379,1876,641,1555,1944,1679,2455,1372,186,833,2398,2606,2060,2845,2767,680,1397,2033,776,1866,2307,1129,93,2800,1458,2110,2023,2983,1501,1814,2201,1190,2995,1822,771,2747,556,1641,1107,2865,2558,676,2998,560,2816,2228,2788,2807,922,543,506,1071,888,1051,523,811,189,2561,684,2972,856,1426,1047,1141,1738,1994,187,2567,1533,2419,204,1292,2825,1655,1955,880,2704,984,1983,1443,131,34,2201,480,1875,2728,1515,693,1992,1517,1242,2574,1040,1270,2785,2669,498,2256,2365,1815,2944,1698,2204,2045,1975,591,1101,140,337,2192,1342,1050,361,1924,521,53,338,1352,2923,2180,1324,1660,2823,1628,518,551,1293,750,2002,2022,1352,809,6,1366,2567,1048,2644,1171,1242,1306,8,7,2245,2125,2538,85,708,2595,2094,463,651,1243,2091,1796,813,1150,548}

    {2589,1525,735,1537,549,2220,885,583,77,2568,802,167,158,2563,2683,1903,1093,1184,2369,289,2765,2910,2426,2493,562,34,54,1415,1831,1711,90,1774,2394,166,634,2691,1794,1955,1558,1207,645,2909,2966,1966,676,2158,115,2937,762,1028,1833,2205,1840,1,181,2466,1569,1725,1615,2388,1423,2354,2632,1723,959,876,2519,2844,2283,415,1800,1800,428,2030,2367,1813,980,1923,1955,2073,257,806,1885,520,1302,1081,2753,2556,2273,234,2011,1523,2119,1301,2290,468,1342,1545,783,1561,183,2426,1213,2835,1548,1928,2580,1929,1155,52,1751,1934,2351,1320,2320,1164,873,2539,1037,2184,1205,430,2177,2518,1943,2663,2975,331,2744,1246,162,38,148,554,2046,2430,1959,1619,1359,1063,1666,376,1041,2849,1120,562,35,2898,2654,1955,2621,2881,374,1653,2454,1724,631,2155,951,1930,1662,1535,1038,2965,1771,2133,1286,2859,599,2911,2744,251,323,654,262,1777,2696,2393,331,1731,2947,1000,1637,1053,1939,1786,2120,2120,1274,894,2773,624,985,53,1447,688,2674,696,2000,1032,1832,1314,1348,2999,148,792,1378,1653,2878,133,840,825,2901,462,2425,2756,327,1991,75,2580,1609,1698,2998,2673,1045,1720,2942,1008,2353,1612,358,2881,382,1203,1908,38,1594,494,1290,2179,1455,2081,2046,2451,1520,1384,1011,886,2917,1486,1300,982,2416,2214,2385,2427,1631,1386,1174,1860,734,2938,2881,2088,2690,2117,1040,1830,1744,817,1733,1632,2150,2795,1370,1293,2898,1919,304,1251,2948,220,82,151,1734,1160,2698,646,1014,2960,846,308,2760,1118,894,2048,2739,1574,1874,2955,366,1582,1225,1562,2975,1824,1978,2204,52,1640,698,483,1246,2084,2737,1467,1691,882,2508,1702,1105,2455,1310,12,2882,1011,135,1441,1805,1855,2133,470,2576,49,609,1736,221,1155,675,1130,494,1029,1219,844,2827,1351,2356,1895,2407,1452,1559,562,1074,561,1778,2169,1800,523,485,1002,2198,848,1700,543,2727,662,1,1318,840,1819,1692,817,1213,981,1102,2323,1723,84,1346,1360,2146,2504,845,1495,1203,2724,1048,389,1674,1420,189,996,111,1216,643,2138,1042,1937,1712,1945,1025,1822,65,2167,318,1062,922,2666,1446,1674,1339,2313,996,255,1639,1249,1221,730,33,99,1203,2767,2107,2721,2520,934,108,1615,2745,2336,1773,1557,121,1962,1865,797,858,444,1495,1145,2488,1467,2516,860,881,464,2829,1480,2125,2648,2770,2910,351,2717,1701,2718,2234,1122,2088,2041,629,1175,54,2028,1018,1382,434,344,792,991,276,1910,2914,2525,2318,1399,961,2972,2423,538,2426,2783,1835,1521,765,108,2990,1868,548,996,627,2515,69,1011,2504,510,2938,1465,2105,424,402,588,641,210,711,1959,2618,658,363,1654,994,1615,15,2465,2755,2019,2788,395,1458,1260,1385,1310,2941,2197,1052,1547,1493,1881,1602,1121,2276,2079,908,2035,1289,2665,400,592,417,1553,956,1993,875,1284,1200,672,1352,765,1967,622,1250,839,561,1618,1322,2558,323,20,749,657,1732,2782,1049,1454,1444,2444,900,1508,2633,678,2308,235,2641,2151,894,2714,1662,2141,552,2497,78,966,608,506,1628,1304,1275,673,1990,1124,1649,2456,2610,1183,2529,2596,2593,2868,1657,45,1745,1264,2331,2553,1171,974,2823,2089,372,410,894,1122,693,1785,1247,1784,262,1148,1151,1648,1955,1380,2612,1586,2793,2827,2133,2047,2590,1671,2850,1196,1577,422,1592,1562,895,1432,512,2804,1518,2100,791,467,89,2494,2463,607,2723,1237,307,1314,0,2102,1367,1480,769,199,96,2722,283,2295,17,2247,405,2950,2313,2682,995,767,2596,1268,1716,114,2479,398,884,2885,595,1190,2360,1702,1387,2658,682,44,1073,456,2670,2800,2813,1961,2650,2099,568,757,1084,621,2987,646,1718,68,358,2857,343,1512,2607,1854,2298,165,2885,2515,1623,2903,2373,203,746,730,800,2892,925,858,341,68,764,102,1796,1393,62,1052,2311,1778,2158,2753,2884,1106,653,2241,1346,2343,2382,2550,1680,46,691,787,1959,1651,1312,1027,739,256,1395,383,2963,2796,1071,931,975,1896,2993,1132,188,1077,173,2111,1524,489,2802,1394,754,709,1090,1123,336,2035,425,2332,1977,694,2631,1661,1386,2643,1161,400,1450,2192,826,2764,2956,1760,1801,2744,1576,2190,1004,493,1495,78,1241,863,1439,2991,402,1351,1760,2464,1324,2426,1696,2738,2289,103,555,2035,269,1576,1882,2237,2402,513,1830,1875,2211,1057,1298,29,651,858,1719,2775,1838,2146,2407,620,2839,599,2660,358,2382,2715,1489,2445,1021,1618,1680,2147,165,2944,2300,212,1532,741,992,889,2050,2294,1630,1380,538,1581,2175,902,1342,2171,1620,196,21,2239,2165,329,818,2589,1935,2249,239,2308,2729,803,682,2893,551,172,2900,2928,2755,2961,329,1170,2861,2539,2595,1504,2652,2227,2302,133,2882,1622,1613,182,1357,576,948,2399,1675,2754,2498,351,328,827,2842,1955,2083,2963,1013,499,749,2035,919,451,535,2635,1674,573,2489,1404,272,2689,1810,1554,1180,2486,1352,2015,586,1840,2944,777,258,1131,1417,172,2698,2508,2299,2803,2672,1882,1500,612,127,250,2616,2661,562,2809,2657,1579,129,2114,791,376,297,2636,1097,992,1288,1711,1136,1683,2528,2717,2342,2515,1836,509,2778,940,1174,1549,1869,1981,2959,187,477,1500,2640,152,1454,52,668,179,2989,2623,2279,1283,2167,1364,947,1922,6,1436,1619,2117,2694,1572,222,1087,1995,2222,2592,868,93,1843,2720,2760,1534,1479,2860,2868,1653,506,2413,103,555,783,2164,111,576,1829,532,559,2717,414,2983,1242,2603,2427,2589,750,1248,232,2868,1007,1811,791,266,2525,92,955,1993,945,225,2017,966,2152,486,1319,1629,2406,269,1304,1549,2521,2016,2467,1061,1052,1384,1019,186,284,712,2784,2201,922,2441,561,308,676,2224,788,1500,2533,1269,871,215,12,2706,2670,626,495,2410,2372,237,1619,1265,2631,2183,2421,2963,1329,2734,465,105,411,1478,101,2915,44,2,111,753,2094,446,379,1036,560,654,2401,2845,227,2751,2972,1148,1740,1460,2445,2860,1942,1232,774,2266,1418,983,357,2173,1561,1355,1217,1302,792,550,2085,1143,2226,146,1950,2345,627,664,2272,2399,2151,281,510,2567,435,1422,1855,106,1102,2107,2075,1040,878,1772,1124,2510,2597,1345,1300,967,2461,927,558,1298,1146,2355,1047,2341,1832,333,606,415,2250,712,556,1625,180,162,1527,2767,2026,785,2631,2580,1378,2847,2712,1161,942,2928,555,2076,2997,1524,498,2338,623,422,1497,390,95,1113,1197,2468,520,1325,2131,1185,1502,1181,567,1571,849,137,1260,976,2282,1704,1297,2838,1213,2925,966,1558,1898,1101,595,1084,436,2072,304,1043,2819,1851,319,2186,813,947,2955,2722,2056,1928,905,618,1896,903,2409,2232,1395,345,2480,1169,984,106,55,1745,2108,2452,117,1114,1475,2789,841,1530,2138,928,2549,2414,1875,2712,2134,24,2533,2268,583,1782,1624,2584,1521,482,2434,2497,779,1808,851,492,1653,2124,1644,697,1431,1724,1955,2049,1218,2536,2329,2087,734,193,1824,2000,1066,264,1046,2303,410,376,1879,1839,247,1066,2632,848,606,2506,1028,2102,712,80,2232,56,1074,2909,2592,2866,1545,148,483,2297,2964,2205,1985,1693,975,1992,2012,2504,2737,546,1167,1928,2142,2444,1658,2245,207,2021,1962,2540,2985,1040,548,1483,1178,204,963,2931,1745,458,364,408,491,686,2899,146,2238,1232,361,2601,632,1054,2204,2988,1534,270,1848,2670,110,1736,2495,290,1573,187,2067,382,1088,227,2961,1792,922,1883,1461,1928,2753,341,2544,831,2902,861,2284,37,1805,1044,1605,399,2169,2357,53,1788,1512,1489,1986,347,2910,2513,241,369,1923,2903,1383,793,2769,460,2334,801,559,2611,1761,2906,1348,1470,1776,1166,2294,1594,90,123,1628,1185,1955,318,353,2161,2090,1714,2910,1336,1718,2767,1215,443,1260,1389,36,85,789,1086,570,1908,370,387,2295,561,1489,2528,641,2864,964,1397,681,917,540,2700,2335,918,689,340,1721,1052,1926,1174,1709,1012,1911,2322,376,1693,2800,2935,868,1735,810,2385,1257,3,2612,740,2207,1246,1303,2827,21,114,2260,103,2627,1965,73,68,2299,1573,2098,840,1986,508,2228,2564,355,2399,320,1790,1342,1012,113,2264,830,2012,196,744,162,2448,2035,941,6,225,44,1015,2130,1189,2056,1239,2688,1262,1173,573,457,712,2746,1656,1405,11,1833,2857,1793,2790,628,1480,14,2476,1335,1358,2044,2904,1040,269,255,2662,1822,1469,1686,582,1209,2551,2815,2073,872,2790,1293,23,1925,351,247,1001,1966,2889,1912,473,2751,2116,248,2923,1386,1048,1016,2095,2581,1012,2637,750,748,1951,2447,2866,1846,2064,1665,61,2224,2328,1622,947,1839,2124,1315,542,412,1431,114,74,2943,129,2523,1459,2399,1695,2626,1933,523,2019,1008,2997,1928,1668,13,2906,652,705,505,2730,632,1656,2491,2557,637,855,275,711,1243,2577,2865,375,1608,2406,1028,1213,130,303,1522,2839,1562,2232,1348,259,878,1351,873,2583,1400,244,2007,2615,2120,1876,508,2123,2182,1681,1013,2317,1645,1839,1088,2895,1545,175,1889,2644,1882,108,911,260,2190,2145,1257,2183,1690,777,2758,1798,1577,2601,151,792,1915,1378,2386,1131,653,53,1318,17,1246,2456,1021,1100,339,410,937,2913,997,378,1796,1254,2567,2086,285,2966,1670,341,1238,1471,1604,1835,2702,1600,1831,734,2426,701,2600,1727,1094,1321,1139,1334,1929,1837,1904,2055,1556,2554,977,932,270,1994,2444,975,2456,91,954,1908,773,2340,312,1096,1811,1278,755,284,2703,778,1192,2772,2705,1735,2200,1704,863,2210,2078,2932,2866,1017,2778,2352,270,770,174,1147,2709,2340,2073,729,2032,1780,1464,1350,357,2224,619,2591,2972,675,2887,369,1876,356,198,935,1280,2913,1588,2525,460,123,2387,1993,1519,2678,2162,1052,2933,854,2845,2144,1230,1227,535,2256,2399,1956,1837,2603,2694,1269,442,1117,2631,40,700,1104,494,2281,335,1971,2067,489,1884,270,1832,1791,325,1730,1400,70,905,1353,202,1402,1820,813,2670,2997,2953,1478,978,1323,2679,1538,408,2829,1703,664,1611,223,290,175,1337,1918,218,905,1065,2923,1918,926,2055,2621,971,2937,9,2359,2077,2938,2846,548,2316,1120,2048,2888,396,648,2170,2137,587,2053,1795,1979,1659,1302,1614,2818,1913,1959,2407,2992,2103,2554,920,2715,1839,288,447,1046,2781,1012,2514,1957,855,207,1403,1407,1137,1979,2687,1381,166,900,2401,1814,1454,1413,721,676,1509,2830,1995,1742,1216,2390,1012,544,809,1235,2127,1367,2520,1640,2348,517,1828,1313,475,639,194,206,471,69,1037,1974,2413,2188,823,883,912,1901,191,1285,2813,2218,2865,1401,2034,526,2412,1663,1598,2274,1378,1874,718,2011,794,118,570,851,2111,2044,1379,598,165,643,1777,2805,498,685,2976,2776,2896,482,2282,824,2000,1437,2242,2505,597,1867,2677,2765,1006,447,160,202,1608,129,2171,2882,1876,2823,2346,279,555,530,1140,573,707,2753,1075,2648,817,486,1384,1228,940,699,845,2325,1111,330,2527,2506,1922,368,2129,304,284,1668,575,2758,2132,617,853,861,2972,2111,1344,2096,331,1789,2084,2485,2893,2231,2936,1703,1344,2144,269,198,921,2518,1740,487,2605,755,1003,2227,2781,1626,1727,2029,2781,1495,795,7,2954,2473,471,2711,1313,258,1781,2642,2097,2568,571,1603,1980,1307,640,2735,1961,1472,879,442,2440,1373,1981,2962,2061,1280,466,1748,2753,4,314,899,2360,2753,152,867,2751,515,2381,1352,2882,2360,1180,1095,587,1089,2883,2567,2000,2944,1914,1375,1587,224,1598,626,414,2373,1543,2085,1160,2571,856,71,1340,1334,2650,2880,2185,726,2439,2100,1315,1663,1345,2541,523,507,1333,2888,872,2043,361,1723,1864,791,412,2702,2139,2409,1406,1875,1430,2838,2095,329,2981,1937,2576,1000,1921,1631,2886,135,582,246,176,2624,1242,1969,2726,2663,595,2163,1267,373,2858,2573,125,693,2986,404,2908,1823,2281,884,2248,2723,2498,525,868,2203,2766,455,807,269,1804,2379,158,857,859,2670,2304,743,590,988,2767,331,2224,201,1937,2133,1037,1243,178,2292,2660,2079,2360,1708,1962,430,44,2555,2065,1954,2351,1330,1241,2733,1388,440,2080,787,1479,2533,1336,2876,2004,2774,713,2068,1035,2741,1162,1331,1125,975,1183,1012,1885,406,1935,1178,86,1959,225,580,336,142,1458,1310,1608,1544,1994,27,1933,923,2566,1887,731,1645,594,2490,2212,717,886,2515,422,2439,2500,1973,93,2572,574,2546,1699,2157,86,2497,1156,952,1486,858,1193,1378,687,152,1806,1706,1998,385,1790,2507,2876,1013,1322,1537,953,914,2438,2750,2763,1938,1904,2350,2984,1949,559,1064,1845,1339,2068,1001,2400,2603,2776,2430,2201,317,1547,1834,269,543,1312,281,765,2822,368,1003,821,1598,2980,2197,1327,1442,2947,2396,1339,2617,1702,2026,1893,2021,364,2197,644,2111,638,1468,190,2071,666,1547,2813,1873,269,2545,475,2907,472,1489,2701,1052,885,2318,165,1618,563,2770,2416,361,1083,522,1722,1698,1726,519,649,144,2197,2100,2898,1823,2328,1350,1296,1410,2035,1982,149,352,1117,1745,774,5,559,2838,2118,2812,2273,957,1940,1595,1855,2811,270,2054,2089,2398,1549,447,2934,1822,129,1879,154,770,1881,1653,514,2002,717,2286,2146,1423,816,2882,667,734,2096,2821,129,2873,843,1046,1482,1649,1454,310,189,205,2016,342,2943,1621,2026,2771,1629,1972,1498,1216,1754,753,2708,838,1209,1904,217,983,2188,936,922,575,369,2911,519,876,1486,1570,1440,1650,1055,1282,1290,1186,1710,1871,2831,629,2655,2428,573,1541,424,1306,855,2774,2363,2171,2753,2832,2952,1134,2399,414,676,2870,2433,77,1713,1110,585,1126,2381,1919,2463,2650,1168,2077,2797,1663,2203,710,433,1047,1694,803,1955,1625,2659,2016,851,412,1835,514,2228,1273,359,150,234,1793,1523,1478,1374,1533,1121,690,2177,1946,2955,943,285,1393,1013,488,1935,2176,2172,2192,2993,54,2560,2692,353,1193,1442,1616,692,2907,1017,2079,215,290,582,361,1199,1697,2361,1883,2522,290,2682,1394,2210,2638,1828,2060,2483,2733,1647,2429,292,1740,1931,899,931,73,583,339,2159,2751,1575,459,1815,820,110,2537,747,548,2324,2141,2181,949,2537,2579,525,2919,1911,1291,186,2235,2387,1885,2404,2697,642,127,1257,2460,876,2004,1566,2293,176,1770,295,333,1596,2522,663,320,2221,2039,1844,1817,2495,1561,2579,1182,2583,1317,1454,2226,290,1185,1680,2301,922,2893,2978,2610,1338,2427,72,952,642,596,2115,1092,1262,431,156,1479,138,2097,132,1951,1876,1135,621,1975,180,170,2084,2175,2939,955,315,1034,2719,317,2070,2077,2104,2839,2680,197,1519,421,2809,170,2057,714,2570,1058,1695,932,1510,1599,957,1271,1800,2209,1568,1099,2087,139,1333,1687,1222,2339,2496,2197,2419,1874,2056,2874,65,2963,1728,1196,251,378,1103,756,1013,2027,1248,1804,720,44,2148,2839,2216,709,2765,339,2807,834,2232,2020,122,2399,2841,1162,703,723,724,2784,494,2226,901,791,1186,1978,2322,285,2173,2767,24,1538,314,2416,1638,1809,2403,1511,2877,755,864,2169,1816,959,143,965,287,314,1518,1555,2588,2442,1850,1372,1547,822,2638,1486,1646,270,133,371,2019,2967,2016,1858,1448,915,2911,2300,810,2801,162,2868,2977,1051,2604,2833,2280,2580,1008,1806,456,2429,269,1231,2137,901,2943,850,2499,326,228,388,2151,1761,1595,2548,766,814,1752,106,2501,1490,392,1528,2261,2761,1191,1608,1655,2920,2066,522,919,2519,53,1176,1463,1153,426,2825,2165,955,1812,2845,2686,2968,636,1149,156,103,931,574,904,427,1556,2498,2649,1870,2853,2784,1357,2046,2082,2897,2221,517,1098,231,2205,282,701,1036,1916,2979,2552,716,2119,1902,2544,1907,1119,751,581,543,2008,2702,1489,2926,343,888,2990,1287,2270,1832,1562,1672,2449,2996,562,1239,1688,387,1677,2818,97,164,2892,1799,2959,2773,1058,753,529,2562,2489,1623,828,93,2093,619,421,865,588,1797,2814,1923}

    2697

    597

    Returns: 506168735

  71. {159,1206,405,2798,102,1246,2601,2848,2681,2465,1628,1844,111,2192,1800,2815,2531,126,2858,90,2270,2571,430,2310,2188,1990,1433,2554,2027,2110,2774,2425,808,452,1140,2120,959,2870,1287,2623,895,640,2476,2733,137,1643,1331,2149,2777,1628,238,33,1772,1908,2812,1790,493,1344,2590,912,87,130,2021,174,1688,1874,1408,2849,2886,2017,2249,759,2679,1582,860,233,2631,695,1582,2642,1666,586,142,1836,2409,1700,736,891,1799,2660,2351,1551,130,557,1225,45,848,1947,1598,2390,1263,1519,989,430,2053,639,2146,2569,527,1291,2829,1097,2804,2784,1665,1474,1478,78,2565,1462,2593,588,1645,250,2840,803,1119,1072,690,2443,2039,643,2426,382,1737,1076,206,2920,2965,2749,635,2479,1644,413,955,243,1936,540,809,2804,2095,614,735,2470,2484,502,1880,2185,1083,2003,2652,2593,1977,2878,1860,2387,2782,128,457,254,267,2828,2122,263,2840,1256,252,2956,1145,2498,173,2140,1282,1674,790,80,580,380,2000,2154,2918,510,2080,494,2166,49,777,1208,1951,1592,2954,2073,1826,2217,1753,586,2101,284,269,2903,2058,697,2559,1031,2136,1386,1983,1655,1480,1305,131,38,664,224,636,1075,471,1692,1659,214,2984,522,2343,1264,2119,2251,685,1663,1427,1687,452,2691,276,1373,912,2920,1500,1016,1486,2406,2692,1247,2492,1573,1629,93,1692,1588,1333,367,1898,1648,734,2912,1811,727,1710,2152,916,2373,2307,1133,898,1957,1570,809,2282,926,505,85,1069,2195,650,2701,2837,1513,1274,1743,2763,968,1159,1332,2604,1792,2569,185,2414,2939,1571,200,2640,1881,2335,2262,1763,1423,1805,2725,260,2535,2588,1149,786,2141,678,479,1799,1572,1124,142,26,1689,1956,1824,1903,1852,1922,1092,1917,526,1504,1686,2279,1389,94,2552,821,1666,767,1616,1495,2555,1815,513,1972,1185,1737,2515,1428,265,615,83,2001,1931,812,930,574,2506,2500,225,1047,2211,958,1629,71,230,1255,1300,416,1006,659,2913,1882,1837,307,607,2987,2361,2853,1417,2759,983,1616,397,489,1069,1199,1097,1482,2440,47,854,1477,1762,1046,327,504,470,303,944,1995,1170,171,1810,1269,1998,1958,2755,2073,2314,141,873,1095,1567,2771,2406,597,1736,658,274,1766,1293,281,2712,1776,653,972,1681,384,889,967,1353,925,1544,1818,2631,1381,2064,657,2298,942,1063,2292,1796,1356,175,626,2055,1080,1558,2585,2600,833,161,265,2106,2928,492,1221,2544,1356,2754,1647,1206,1728,147,2635,777,2561,1543,1232,715,604,802,1451,2266,668,1128,2222,2110,2411,366,1568,2172,850,861,502,2897,1843,2808,249,2301,1209,2541,796,43,836,1018,1669,215,825,1048,1329,2110,2613,2740,1137,225,1099,2546,1878,893,2379,1434,2194,1946,59,2582,2909,2978,992,2545,2929,1504,2936,347,2400,1362,1642,559,1241,2284,541,1481,2462,164,1127,69,687,2684,1134,1495,1677,2228,1984,233,1407,2792,2877,1167,1239,1563,2235,2553,2286,1473,1173,2531,1165,1674,2871,1810,285,851,1931,995,2147,2039,1787,1297,1608,985,1011,2940,2120,1533,1767,1369,1627,1742,1203,677,1502,1563,675,1202,1809,2333,2185,595,2219,972,691,2303,2272,1599,2390,283,542,1567,2025,2765,267,1254,1473,2997,92,77,1513,1750,249,1494,1007,202,763,1473,2657,142,542,957,2204,138,564,1008,2791,585,191,1960,163,2197,2638,2788,1627,2662,2948,1784,1429,2632,2556,2152,2933,1489,1724,2728,2,1025,2856,1584,370,2645,1505,1012,918,2690,1255,1898,2764,816,1041,1143,1626,2348,2886,2012,642,2863,1702,1148,66,1105,161,2261,645,1181,951,2663,468,2083,224,2217,184,1950,2371,2988,1372,2111,2546,513,1436,1680,2795,1199,335,838,1831,1850,2235,1027,1480,748,166,2220,1128,1928,1679,1617,2213,2607,1088,2428,1621,2362,749,2862,1832,1325,1115,886,1003,1963,307,1926,153,407,934,2096,1079,81,1115,445,1278,2045,1342,493,1118,1568,2658,483,396,2905,1143,1687,731,148,1353,770,2442,399,2511,2908,2585,1176,2170,2189,1205,1349,962,279,2875,807,2632,2571,1355,226,1466,2305,2013,287,2233,1958,1490,2481,2589,1452,2384,2642,2013,2998,2005,2889,2453,1085,624,1377,322,2423,2872,1973,1546,131,249,670,2841,2017,1963,347,2921,151,355,1189,580,945,650,16,2697,1936,1921,2357,961,910,1574,1631,391,1394,640,1902,1320,1794,553,1544,2908,769,1318,1943,1921,371,41,2509,2379,2463,2133,2784,801,1033,1370,1919,1655,2502,1889,1452,2805,1270,2301,1248,2504,2770,1411,834,421,44,1162,1963,2284,2723,1012,1181,333,2891,2087,948,250,1461,1297,808,129,405,1724,2856,2330,2262,534,1854,1234,86,2569,2131,420,378,924,1820,1210,286,118,2096,1417,671,2399,2269,1736,2984,817,341,2345,2831,1057,1988,517,2452,2486,1792,1856,970,2011,2469,277,1406,1463,1658,2814,1693,1904,573,1878,1015,1115,1085,711,524,866,733,2216,1952,334,1373,1809,1659,1073,1262,1603,2725,899,2897,100,2894,2630,2674,414,1188,390,242,2400,257,2258,282,708,2514,399,1747,1992,1674,2920,2400,1885,1151,2161,2654,628,2605,1608,2339,1274,1640,1582,391,974,67,1136,2381,201,958,443,1291,421,2630,2556,2383,1397,2945,1088,912,2706,2265,2778,2550,1172,1176,1756,1450,2623,2610,613,1692,1601,197,249,1463,1423,1979,1232,649,1785,2554,1310,2554,765,1122,1126,343,988,828,1210,806,1419,1294,2926,2790,1786,1304,1559,2130,748,155,300,1387,2186,1087,2109,1104,2107,549,2402,2390,896,2979,180,1416,161,1210,1985,1579,1471,2715,1996,1299,2129,1753,2104,726,2494,2294,1803,428,2115,2353,203,911,2831,2951,1778,560,2554,1279,1301,1666,161,801,2278,150,1109,1165,2994,2363,87,2195,2337,2753,1872,734,125,2609,1230,1390,1718,1287,2839,2156,888,1938,1529,2337,1817,483,1619,2715,152,1584,831,2478,1532,824,2519,1429,1638,2117,2800,1454,250,1201,821,1654,1889,1515,2976,1184,2184,2191,594,347,818,144,1032,1822,618,2692,397,220,312,1176,2639,347,1835,1884,977,541,2000,347,2992,2729,1428,835,1113,1362,662,1451,2396,1967,1150,1820,1312,758,1181,2908,2898,1981,558,186,444,1207,1544,2828,721,2809,1777,1706,846,2796,2551,836,1641,1079,768,505,1120,1979,767,2941,1592,2072,405,410,318,2802,1878,1543,98,608,1228,2297,712,911,18,166,1560,1610,1333,2486,1421,420,1923,2190,1199,804,604,1932,1449,1941,42,1018,2713,954,1192,504,185,194,2034,2149,326,619,2753,609,656,447,1364,2954,1597,1644,1939,1626,676,2750,2072,1496,1786,1460,2234,2715,1392,1963,816,1822,1040,2498,1761,2821,2826,2477,757,1819,2463,707,2164,1822,2319,436,1982,2019,1428,1196,2748,422,2892,498,1308,1439,247,2239,1475,2784,751,2032,2605,2381,1890,1480,166,2157,769,1293,6,334,239,2255,110,1332,1134,1777,1019,1772,1141,2417,972,2389,2502,1611,1987,1332,1909,2443,1139,47,2032,2475,2600,2727,2281,2722,811,1615,1856,2622,716,571,2275,1552,1420,1064,2140,2216,1810,990,2865,1026,1647,1459,2764,1049,415,1010,2605,1825,1525,2519,892,2600,2885,1463,648,2057,2268,1617,2572,2087,2340,2036,2895,1400,280,337,508,386,2160,2284,2597,1792,639,1891,273,2938,1472,1673,2089,1353,1199,1449,1898,598,1046,599,587,1195,2984,1295,2010,2748,2561,2625,78,402,1566,623,439,2411,1723,2434,1898,370,1644,1332,2138,1847,311,589,298,2696,565,82,1302,2747,2138,1000,2538,1011,672,1094,2382,1353,2863,525,2420,900,136,2390,2150,2179,1188,1688,2729,2004,2975,2265,2000,1714,865,178,418,73,204,1177,2558,1246,483,1336,1262,262,2137,901,851,1962,1358,96,1776,1257,395,124,1425,2111,2853,264,968,1949,1784,1244,2149,1799,365,1138,891,1501,2336,1008,2329,1183,1011,2534,860,912,2999,599,2001,1780,1048,244,1777,1833,1021,332,1707,1073,2424,2726,402,2665,521,2389,2031,1689,813,2961,1330,2817,1617,1969,915,2461,1235,2852,2103,774,1338,2982,1582,2528,1301,2145,1563,2344,2970,2712,2618,1712,1098,410,1639,1220,2081,2821,578,671,1702,2441,1222,1406,2749,2894,1976,1931,602,2148,2799,2676,666,197,2311,1592,815,1515,1402,2782,1784,1283,1944,2237,1332,2922,1621,959,1515,707,2623,87,275,607,2129,2760,407,1977,1626,1045,1920,2120,374,2128,79,897,1353,2606,705,1936,1784,1855,2586,1174,1907,977,1332,1968,1668,1111,724,1607,1097,1481,1546,2032,399,2600,828,2926,2001,1197,2295,1237,1952,1944,2181,1295,2169,775,864,2753,387,1336,2903,179,2214,1615,460,2861,1694,2773,1463,1720,2118,990,1940,405,1548,2044,1374,2692,396,2885,2673,547,2519,1121,181,2483,89,601,2690,2545,2187,2283,304,2913,2047,396,786,782,120,2546,251,2984,2569,1702,2381,1398,140,710,2067,836,414,626,1242,2981,2681,1457,1669,2435,2392,1136,443,32,1950,2184,33,224,312,1254,2015,2715,2690,717,2564,2423,2573,1879,448,973,355,1077,1905,886,2395,1808,2641,1586,1687,2922,223,2606,2830,225,2842,1823,107,899,396,2933,2389,1884,399,2457,70,92,1919,2213,2804,1508,1539,64,332,1481,1512,1565,2238,208,104,53,456,814,1353,1882,2147,963,2173,490,2681,58,1515,1900,243,1699,2427,911,452,2688,2237,248,2497,2874,2501,1906,1550,79,1613,1239,513,233,1204,2543,1711,2269,379,2309,1282,1769,2805,1862,1497,40,659,345,308,2090,2422,1437,1640,519,1315,2190,1677,2807,1599,1123,1967,661,2100,2778,2503,2226,9,1567,2671,1851,904,1850,406,1120,2404,518,2225,848,312,2187,2235,2156,2880,1526,1644,2524,2609,2317,2810,2690,26,1022,301,1790,1516,493,2298,316,1510,1402,2700,59,1800,362,1664,591,1927,1009,2210,333,976,2518,760,2032,99,2553,1339,2833,541,2208,2388,1571,2038,240,1585,1786,1302,1271,847,2195,1294,30,1755,2636,412,1727,1533,2746,1813,2577,2070,1154,1498,1521,1666,2820,596,651,1051,1507,2387,1559,241,2215,2105,1267,1404,441,2900,496,2214,887,2644,1972,721,1129,2293,2523,538,785,2551,219,495,27,2246,1754,141,56,2581,1469,833,2983,172,2992,1030,21,2366,2955,710,2199,810,2518,2034,1230,1682,2594,1754,1652,531,2132,2301,1629,2629,2668,2108,1660,1050,1999,442,960,673,2875,2928,2963,1258,2783,1942,2183,2527,469,2479,1395,1647,1680,755,652,2865,15,1114,2651,1634,125,700,89,1146,1867,1343,1813,193,2440,652,1906,1906,2265,2355,2305,2048,1285,2370,323,2337,1667,1715,1857,1981,398,570,1898,721,2982,292,402,1574,2870,956,1730,1523,1117,1190,1488,2614,539,1900,2714,1472,2727,743,622,1662,1371,2682,267,1641,1234,2820,1794,2242,908,1853,2075,50,1069,2426,833,234,2122,802,1545,2537,1700,1020,248,2499,1674,2900,2935,2207,1584,72,1834,2994,1454,2284,2954,2253,581,25,2623,233,1367,412,599,608,2024,982,1576,810,1328,2449,1761,28,674,350,1234,2332,2176,479,2459,1828,2267,1208,1171,301,1021,450,1700,2769,1467,67,1844,29,1083,552,1083,867,2393,2235,2523,869,748,1442,2632,1138,547,2060,2080,2582,740,1790,1227,256,2820,610,1825,672,501,411,1424,810,2017,1596,2978,2095,2887,372,2089,2346,513,2751,2919,662,2689,2389,2165,167,573,2415,1311,249,401,1604,2840,46,253,1882,148,2488,1792,1701,1037,1773,943,416,1336,1350,1180,199,2018,715,2866,2841,2098,36,1749,1329,2040,337,1805,2989,847,477,346,2104,2984,2893,1033,2915,2544,1049,2092,396,375,1234,446,777,1975,945,1950,1802,2337,2847,1169,2820,1270,1306,847,2527,1443,1884,2115,1854,410,1261,2349,538,1962,1450,1502,2395,2280,1360,103,1259,2281,1764,2831,314,2632,1407,100,1357,1555,49,1208,1242,1992,2092,997,2109,874,316,1030,803,2230,1980,2184,413,1847,1110,939,2300,1110,2530,2814,407,8,18,1519,16,1167,1921,2637,520,961,2565,2283,1147,1280,2670,1475,759,1920,888,1122,1616,1440,2968,1467,1663,1861,1862,106,2270,2156,325,1215,1589,764,2177,1678,654,1618,1309,1740,477,2318,2038,2012,1276,1144,501,2407,2649,829,769,2248,417,505,1917,1602,2458,252,1212,1074,991,301,1213,2125,2725,893,1784,2039,1283,1207,2909,1405,445,918,68,1112,971,745,2400,1584,1891,194,1901,2484,780,2593,2100,1706,1246,16,1297,288,1115,1812,1757,795,51,1974,2718,493,2851,388,533,2453,921,2993,579,2977,1768,774,2432,1178,504,2236,366,1479,2052,659,78,2003,2478,649,722,9,1147,1184,1155,69,1039,2572,2283,2836,1157,1987,102,2485,1524,250,1435,1394,2683,2140,856,1049,1822,2135,514,2691,535,2540,577,1167,2729,63,2068,2138,1525,2280,278,1036,42,338,2508,2350,2826,2893,2311,1004,352,1679,1749,888,815,1600,985,2884,2802,1551,1809,2021,1624,2162,67,882,2506,536,2894,2844,250,407,1650,1157,1200,1112,2327,381,460,435,684,2795,2944,1396,1100,80,191,949,1745,1740,1077,2715,2419,2016,2495,1921,759,1906,440,203,2315,798,1029,995,277,800,2212,2633,1454,1711,213,1267,202,2783,326,2325,1243,2948,941,1609,928,1980,185,61,79,1156,605,2216,2012,2723,2099,159,942,2569,882,2709,1346,2757,1357,2754,433,2201,1839,228,652,1148,64,1391,2168,941,999,2417,2364,258,1223,2542,1606,4,2198,1361,340,364,879,1332,633,607,1678,2251,1953,1792,2118,2730,2922,2043,329,2526,2975,2832,101,946,1362,1161,2981,575,947,65,2849,307,1736,154,2433,57,2616,2992,495,679,782,2358,1575,429,313,1032,2237,1597,588,844,1400,2980,550,1895,126,2309,948,843,1503,252,449,405,483,1234,1979,1344,307,2491,2569,1824,1927,2931,2262,2725,888,390,2563,254,1349,2306,275,1055,2917,2971,771,503,1908,2381,1838,2855,2640,126,585,1079,1853,1633,1226,125,2559,2987,2613,139,641,2070,309,1938,2761,1238,1961,69,1906,1892,99,2558,1122,1620,556,1098,1253,109,1292,468,2476,1538,2526,626,1031,1626,2882,1255,784,159,2567,1456,1676,570,1643,2487,127,107,1864,2069,1759,2520,1216,2625,1083,1655,1394,2400,466,631,170,2203,1225,612,2765,538,806,1677,2818,2298,767,1630,1281,588,2711,1726,1209,1641,154,2469,2925,2729,880,460,634,2953,379,1125,208,2298,1489,1963,1122,1198,1136,248,1929,1166,2579,2493,511,2664,326,1619,1513,1415,1952,1101,1777,529,1264,1039,151,1473,1861,1030,1661,1345,1179,392,1277,2885,797,1425,2970,608,1290,1511,831,645,1382,1014,2256,2244,321,2881,2599,2091,2229,2872,1515,318,621,2557,406,1307,676,1457,2144,1824,1938,617,1957,2235,905,273,1110,1282,121,2115,1638,1339,2427,2046,2760,2909,1503,318,75,1248,2795,902,2866,1174,1657,91,805,2037,2409,394,1159,1925,276,2579,2017,2655,324,2987,2441,2435,1613,25,1329,2873,2591,1361,1090,1487,318,1012,331,1765,782,467,2959,491,627,2915,1504,1697,2284,2379,1570,1480,1799,1115,2180,2452,2911,2793,2431,132,490,2718,2042,1784,2546,2910,35,2006,2881,1238,1934,821,173,2819,1528,546,590,1082,783,310,350,2857,2166,373,2072,122,2274,2231,652,2732,405,1044,2829,698,1011,692,2583,494,1159,2523,1293,429,1670,761,1620,1083,2596,2715,2006,603,1206,2439,1161,65,2372,2167,1300,1804,2326,2766,134,1964,205,1889,2552,1894,130,2870,1725,351,2745,457,474,1957,217,426,494,911,120,2447,639,560,2292,2321,686,2576,1093,612,1270,56,868,968,2095,2813,2324,2988,561,1098,70,2754,198,2864,288,2506,1421,1309,2320,1504,1422,1363,863,2935,632,1185,924,437,604,1465,739,1675,264,11,2283,911,1453,2893,1240,1563,1819,1059,2324,431,748,2251,60,754,2702,1855,129,447,342,42,1836,762,2131,236,845,719,2169,2341,2890,1821,1071,2985,1928,1896,1258,414,2142,1467,1449,2587,2578,1989,870,1644,925,1340,701,2552,706,1160,285,902,449,34,1663,2042,2357,144,2378,2974,2545,2288,1020,877,2389,2466,1776,301,272}

    {2499,2174,2725,1043,90,2796,795,776,177,1184,2784,1562,2443,1933,1505,1913,2257,2488,2750,2782,326,2923,623,2316,2411,405,2886,762,2359,2080,2455,2229,823,1911,732,1515,131,1538,1414,1075,2814,2719,1894,2481,2390,1429,2073,233,604,2401,160,922,294,829,1112,1993,2362,1594,1269,1066,1067,1110,903,1980,686,305,1936,1536,363,529,2987,2394,824,2241,1641,434,2064,623,1438,1771,295,2617,1877,1286,871,936,212,1033,2063,1019,2755,1376,1789,395,2591,734,1058,622,2204,231,1997,981,764,482,2301,1409,1359,1254,2390,2473,2486,742,2851,2765,1951,119,220,1678,1596,1679,1078,2630,828,2801,145,2036,2797,370,2721,2368,1356,1269,2962,2311,723,2706,2656,2845,2030,911,1769,396,2584,1814,137,1448,923,522,683,2917,2187,2635,22,1735,2686,2551,663,2745,1584,2611,2591,1250,2075,2671,1769,2413,2301,2056,1894,305,56,1948,501,2313,1539,2427,847,19,1137,1950,2375,2156,2365,1924,2224,253,281,1908,793,2202,2182,1456,2308,29,2914,876,1388,2554,180,840,74,2355,869,730,437,325,1085,2138,2382,1393,2779,2985,1538,68,1412,2508,1845,516,2071,185,1538,2612,2072,2735,368,2396,1709,219,252,1436,1011,2587,512,56,1727,1863,811,1715,1677,1563,1608,553,605,778,2079,291,2394,2420,1522,1166,1614,2629,1242,170,2209,1895,2804,4,1538,417,185,1415,2014,2556,2703,386,1426,872,2811,414,386,2218,1404,173,2403,998,703,188,1888,2527,802,2416,1975,753,297,1089,2254,1332,2779,1418,1578,2320,898,1387,1401,376,1178,1180,2276,749,1698,2776,457,853,720,2046,1335,1096,767,271,1574,2436,2545,2679,140,2080,485,631,2687,2702,2291,2655,2927,2627,2255,1051,2680,2207,773,1635,653,955,2288,1415,1081,2624,920,2646,2352,2492,1323,2418,1836,714,267,2038,596,2650,2502,2102,1021,1869,1377,1767,1728,2269,1550,2086,2110,2274,2173,2191,2663,2016,1112,2868,1722,2521,911,2895,694,1259,1001,473,1677,1733,747,369,226,364,1463,1025,576,443,2864,582,1011,724,1024,97,795,2591,99,2148,1885,196,1175,586,1952,2044,495,2323,1272,2914,2908,2143,177,1174,2444,104,2075,2495,1623,1296,1644,822,929,1483,2324,2931,2658,530,1219,2808,2863,1800,1607,56,2022,1012,1983,94,746,2909,1782,828,2634,1159,2491,1266,513,1641,2899,1098,38,1112,2987,663,969,2879,2656,1583,1979,1715,1294,2940,1738,61,1978,751,298,2516,736,858,752,1921,1367,1351,1856,1361,1288,2361,1030,620,5,222,2577,95,1276,2626,2112,1567,2367,887,2245,2376,914,2896,784,1282,1587,385,1574,1926,1836,2600,1519,2460,249,1829,458,967,306,567,1952,977,419,1542,1897,473,542,2195,1701,724,1326,2522,87,1369,2532,10,1626,1731,1568,1812,1539,623,425,1195,1737,2210,237,1410,281,1194,25,1836,1755,2430,1826,2235,2426,1473,1504,2116,1423,2432,131,2423,2180,171,606,2564,1487,2845,551,2,2273,1214,2450,2922,1139,450,1023,1152,2825,1992,149,2917,351,1007,404,1930,791,2221,1430,1084,2456,2227,1724,2968,1443,2023,2835,1234,1516,350,104,1741,1446,2515,2155,1236,1267,2425,2368,1368,2682,1106,131,523,2081,2980,2302,2756,131,2513,1849,1452,2701,544,181,1241,2793,320,2135,2917,1634,2024,442,1314,1319,1625,1061,1431,1972,2547,1597,406,637,1409,559,1151,874,169,752,574,680,2481,1508,2731,1848,1137,2050,355,1584,586,1178,1045,165,2347,1229,1898,1284,281,424,906,2409,1098,288,2452,1779,707,689,603,579,1476,1673,799,546,2283,659,2513,146,814,414,1504,1488,2532,454,1205,2712,1399,2764,2113,831,1783,1824,216,101,691,986,1301,55,738,1946,669,1671,949,1775,2710,1413,1839,762,2081,2299,1324,756,2435,927,2439,2716,2780,907,1432,2243,2079,1688,1341,70,1930,1136,19,628,1930,2546,507,319,562,1906,2527,1769,1200,375,980,251,2157,2374,1054,2846,342,2204,967,59,567,1242,1180,2899,2271,205,1625,1322,2596,2293,2952,1283,1585,70,847,913,912,909,296,1207,532,1625,2421,2684,1098,461,2285,1857,550,2291,524,1267,861,2041,831,244,2572,119,1096,1617,256,1405,2904,337,2187,1080,1301,1945,8,1222,896,2931,1893,2910,475,1595,311,150,2518,1422,1684,1217,1607,2254,1886,2811,1450,601,586,1182,312,1366,1578,2797,1091,1818,2344,448,1313,1025,1493,908,977,2956,2336,2906,2643,821,1810,2334,2947,2697,626,2020,208,554,2399,742,2860,2293,1209,131,1546,688,251,2934,1972,600,37,2580,1455,5,2080,2491,2396,630,1626,678,2338,2389,2733,292,1199,2066,2482,1600,281,101,2000,1383,93,1232,1739,1034,1027,1330,2672,1847,567,1652,852,375,2145,1704,2864,25,354,803,699,778,1763,1135,1908,1743,2007,2765,793,87,414,2141,2854,2736,471,393,2415,2474,217,2036,2084,2967,897,887,1852,553,1719,2628,1148,1895,2850,1671,586,1412,2094,2705,23,645,464,1064,1724,2340,2085,787,2355,1898,2749,2446,447,1954,2250,2518,2332,275,2679,1912,1282,984,702,2184,800,1976,958,646,1881,932,1985,528,1677,2685,1684,838,1208,2178,2340,2008,410,131,2163,1404,1487,249,1385,402,696,1385,2354,1672,1181,1497,2544,31,2295,2110,2385,1894,1578,987,2966,996,937,2191,1887,2804,566,1668,941,1793,2766,1776,1562,2650,2202,1607,2702,2988,1964,276,844,2968,2452,1996,1708,826,628,2903,414,481,2219,1757,1297,914,1651,682,2571,366,1096,771,1286,2241,1045,1132,413,1219,1976,2898,636,789,366,729,1976,2021,2039,1928,584,1705,1737,1804,1952,2213,337,1069,2926,1166,96,2727,130,1068,1798,1842,572,676,520,1199,653,2926,543,1727,1117,88,107,1558,545,2562,2990,187,1406,725,676,842,2416,1160,2716,315,2216,1108,2786,2155,384,2994,2505,1772,1784,987,2141,1557,1230,2668,2952,2749,2120,1422,433,1523,1624,2071,1602,947,1149,432,14,623,809,1864,488,373,1977,2,2834,2049,2946,1778,1926,1956,2006,1317,1220,2583,26,1641,2175,2902,1891,2134,2605,403,289,2583,2867,1147,1079,2067,1971,2620,493,2928,1164,2573,2001,2252,2655,1441,715,142,1065,1950,1942,2973,720,257,1677,1168,2287,1096,1746,1780,1031,2811,1591,2859,734,1830,1950,1469,1131,238,1218,1533,1672,628,449,330,2541,760,1758,2147,2784,2551,374,1955,2684,1234,2764,2574,1019,2548,1473,256,1561,2389,229,728,336,1998,605,2216,194,599,2092,1033,514,176,1915,2133,989,62,2186,2956,2055,821,1769,1640,2138,2907,2390,1922,2468,169,2708,2032,2391,311,281,872,2089,816,261,2282,459,1867,790,649,406,317,2625,990,792,1990,1854,2044,2527,1531,1988,637,1359,2260,708,2653,1491,1183,672,1075,2001,2420,1453,2032,1011,1190,1921,1028,2312,1666,2827,2407,1729,54,1517,2629,966,1227,1858,659,553,515,843,548,1273,1147,1241,476,2498,84,1900,2733,523,440,1487,245,201,907,2404,100,1797,147,2583,1053,2941,2824,410,431,603,1222,2706,818,2677,717,2603,2304,359,78,780,1484,1490,2741,2228,1076,2228,1931,2597,24,2448,2967,2002,453,56,2714,841,1685,326,88,1616,2435,2923,1417,1,2256,875,734,126,307,1303,2077,207,801,660,17,1826,2702,2218,2585,1079,2114,122,1497,776,2360,573,1279,1577,2517,2198,447,451,618,1005,544,1122,513,613,2186,473,30,1435,825,2271,2808,753,1636,1865,722,691,1444,2635,2865,710,1604,782,229,610,2691,2110,2772,1515,1580,2786,437,2415,107,782,839,2028,303,479,478,2389,443,2843,1795,811,1584,1188,788,2298,1732,569,567,1341,2564,1968,2966,1696,2076,907,622,205,2640,1048,2720,837,2290,2135,260,2052,830,2344,1224,1784,1613,2698,840,1415,2509,1997,1327,2578,1695,1692,1211,2903,1900,1630,1745,1713,2619,2131,260,192,958,1042,2767,17,1965,725,759,486,1240,977,1114,2272,1321,25,1326,1443,2630,1499,1668,2807,1365,365,2356,2646,1535,665,2384,1824,216,2926,689,2575,378,2126,2661,328,2764,1875,759,979,697,1654,2781,2132,2018,190,1584,116,2382,2411,194,366,974,2171,2742,1116,2814,1242,2558,1242,957,55,347,217,1122,2240,1724,2699,2816,309,339,2680,2263,1922,493,2659,1708,2707,2748,2098,1136,1540,1635,500,0,2620,2027,2602,1407,2417,223,763,1768,14,1083,733,2055,1470,1028,2438,1479,1300,1479,718,2940,1269,1736,1375,2690,866,2244,2874,2831,1281,1894,2245,173,593,729,887,638,902,2882,1881,2480,2875,2398,360,568,2079,667,884,975,2773,2666,1885,2883,33,1153,1468,78,1234,2823,2561,497,2974,351,1613,233,1810,2992,644,1122,1279,1512,975,1402,681,2950,2658,2945,2909,341,2429,438,1251,2724,523,2230,353,1794,195,1126,1238,1145,2843,1786,281,2216,2873,2467,1447,1918,855,221,596,2762,2789,2255,2509,488,523,1611,1851,217,173,1933,2035,56,1463,87,1554,1362,2546,51,2323,1959,629,2166,2464,2704,1426,2159,1267,1253,1515,12,2524,1918,2773,2306,1625,472,281,1281,2957,52,130,732,1353,2862,2882,1907,919,933,1825,233,1208,788,1337,2596,114,187,1013,1437,578,2930,2564,2663,2158,1122,2655,1871,2539,1292,1963,159,1847,2206,1451,2127,162,1233,1506,586,442,1916,681,2635,16,121,1276,613,2200,2449,2775,1637,1468,803,1794,2843,1834,2667,374,1841,2484,2984,1268,1917,2668,1653,259,2484,1907,2009,289,1912,513,2160,1223,2259,2908,1241,1384,1012,2862,945,121,2273,776,1097,2807,723,380,1574,586,2036,2097,2668,128,1986,697,2680,1522,2114,2913,950,135,246,1458,146,957,1307,899,113,2546,2974,131,1690,72,1741,809,1369,1713,1294,623,1487,2932,1851,2549,1869,1112,530,535,1509,1012,2998,336,270,1164,2872,2658,1403,1492,763,1699,1378,1592,1021,162,1056,288,890,1980,921,1835,1191,2679,964,115,89,1908,1186,2541,2076,1292,2065,1020,2884,1306,2036,147,2332,2476,1607,447,1791,1447,2922,1429,1225,1724,1412,87,480,1238,2729,905,1409,440,2551,2724,2289,1105,1245,2466,2981,1784,5,189,2593,1654,2053,1870,1139,2715,1451,847,1970,1447,99,22,271,26,2286,2339,2381,598,1956,1418,218,255,497,2395,2977,693,504,2628,2733,396,2940,1122,54,2477,1139,1487,2268,1153,2928,2502,222,2333,79,2923,409,2702,2287,1202,2867,243,1829,772,2269,2138,2743,1550,2615,2208,2841,2525,2204,265,2656,2205,2379,70,556,1829,1760,52,857,2862,1210,1574,2417,523,2828,2434,2153,1480,73,339,162,2120,1883,2719,2410,205,244,1717,484,108,2198,978,1187,1193,2139,1564,977,1056,1112,626,1781,2181,1663,709,2324,2914,2190,1440,1703,841,2207,463,143,994,803,733,90,2799,1115,1143,1004,2960,2471,2707,2091,399,2782,1311,288,1253,158,2995,820,553,1393,1086,952,896,49,1751,1453,1917,2598,302,1926,1316,2287,953,2607,819,847,678,2595,1272,1452,1344,1634,1874,1103,1994,1231,605,2056,1784,2399,386,2881,201,2193,1306,839,1903,2004,1541,2964,766,2405,2908,2141,2120,1676,2495,2863,344,1769,894,2308,2124,299,2071,2230,235,2097,1409,1784,2634,143,2884,971,1275,616,859,76,232,2126,2928,2089,293,230,1759,2880,1047,2438,929,2249,2909,2119,1261,1453,2987,2559,1267,1193,2981,1326,1291,1240,2863,1188,1347,1130,1841,1163,413,487,972,1219,59,2745,2328,2075,2515,2842,1349,195,2145,2695,1734,422,2533,206,981,2292,2074,71,2591,931,1126,307,462,266,2243,2037,183,768,1004,1417,978,159,1754,307,349,578,363,93,1373,2301,1624,2560,2803,1035,11,161,2121,636,655,779,2177,2489,2331,1992,39,2277,672,2435,2978,1250,1281,1691,7,1258,2039,347,361,233,878,2548,2399,133,2690,2806,1846,1804,1898,1913,938,356,1488,2529,1760,2744,2081,1102,1463,455,157,526,2,721,1070,2247,980,2684,2566,1568,167,679,2123,81,1646,2296,1819,2890,283,911,1187,1473,2771,1117,1876,1825,737,563,120,2082,2054,631,946,1770,1237,2667,351,965,1249,781,782,5,1435,1073,161,2559,123,2690,1264,2738,2577,2053,232,1292,993,715,729,1297,2645,2310,2701,1232,2787,758,36,664,1473,2724,131,704,1879,48,1069,1110,212,2498,2179,1289,623,2701,1757,2728,806,1654,1370,2029,2092,1417,1298,1112,2466,1910,2678,267,1644,1788,2196,348,583,677,1827,2386,2243,1002,713,2369,1550,2838,377,2734,1568,2096,402,1966,2837,2062,888,2389,1069,2910,1656,1227,1354,2,1786,1147,1353,1805,1522,166,2986,2953,1449,1118,1060,1158,267,1425,2186,307,1259,762,1036,2377,2223,1535,1119,2427,2343,973,1937,13,2257,907,2917,1322,2592,227,2053,1956,2869,1687,358,1308,3,1537,1668,1715,1882,2304,690,2391,105,1779,107,1673,2232,2648,1604,1914,1622,2437,596,1744,579,2445,35,112,1623,1716,351,1449,2115,1012,2146,208,1107,2872,217,848,1298,1753,1847,1116,2502,2014,1102,795,1348,427,2015,2991,2461,1485,2754,2907,611,1264,2698,1605,1514,598,935,465,1475,2395,706,2237,2161,1159,2102,2792,2942,1131,1365,985,1349,649,2093,1527,2407,389,1099,1778,1581,1227,1930,2059,1757,2615,551,498,2596,2187,2021,2033,102,2427,508,2032,28,2210,1518,2634,2794,546,59,2924,2451,1238,759,2712,2030,971,2915,1652,1874,364,1115,468,1021,2104,2510,264,2669,1208,734,1597,2187,2737,71,1272,499,2785,393,2997,2593,537,831,1017,2754,817,1801,1683,2916,337,2915,883,1721,2225,1757,2455,997,2033,947,2702,1593,2512,20,1816,827,564,2477,2993,1497,1334,2804,2608,210,1688,1461,2570,600,2325,717,1380,182,509,2357,1992,622,2774,1301,2017,2937,911,1674,2972,506,197,592,2288,2768,1671,1072,2149,1283,2621,1527,1553,2651,2490,1225,907,2870,1991,2591,1497,1237,2121,396,1112,1707,1569,2616,1032,185,2313,1859,2822,3,2913,881,2397,2210,2575,2377,2325,2978,1180,1903,2923,647,1963,2635,599,1504,2683,894,1549,2675,2080,1871,408,1609,2758,1265,1504,1559,1473,1449,147,2572,2818,946,750,304,2921,156,1899,1193,1898,767,1750,414,1456,2998,1649,538,362,622,889,1331,1261,751,253,946,2798,1234,2014,862,2949,2053,2264,553,490,1878,211,117,1057,1979,1437,2975,1222,2969,1517,1609,157,2901,940,1963,2693,1078,1301,1749,1062,2088,2207,133,1726,1117,1490,751,2315,2719,1482,1507,1423,2580,1671,1411,1748,36,2607,2568,1096,2992,117,267,1885,586,1131,1143,2244,2520,1632,1352,1258,1404,2058,2235,410,567,2868,2958,1192,1752,781,962,1777,1049,168,538,2034,284,290,2507,1735,2536,2912,1609,2130,201,2888,1033,1983,689,406,1612,2026,2472,2876,2322,1544,2151,2647,2875,381,1641,347,2703,461,1868,2061,2720,2573,2669,96,1590,1840,1468,2349,2025,535,1530,1260,2717,200,2358,55,1774,400,1174,2687,217,2496,1553,1399,1677,1452,1493,2415,2600,2454,1118,326,626,37,1125,2032,2147,2841,588,2919,2431,2814,2785,2986,2637,311,2943,188,1944,533,1300,917,30,257,832,1873,2739,965,885,337,1903,1824,925,2810,2031,573,1437,1995,672,1059,2882,1866,2238,2673,555,54,1660,2389,1952,196,273,2408,283,2786,364,2750,2794,402,1831,1237,1221,1979,2817,1222,2156,2342,2284,2251,756,2569,626,990,1600,1924,2394,1195,1935,2880,186,2383,1264,2691,2980,1938,1118,2319,1867,2649,2853,1379,1547,2759,1252,2051,566,104,134,2078,1898,1038,631,2996,1651,418,1283,2274,411,230,1626,2663,2380,1206,121,209,1641,159,2363,1988,849,153,625,1445,897,1652,1534,1806,538,2591,318,2837,2415,325,329,423,1142,888,485,2182,2182,2162,786,1625,2642,794,2178,739,212,2555,2206,1687,1666,383,2839,2763,1793,573,1464,2752,2728,2021,1575,2813,1520,1280,929,1113,2399,855,931,2152,2762,231,79,2694,1358,1724,351,966,2318,1556,2427,40,2024,984,976,2981,2293,1991,377,1052,2917,1909,99,2412,1761,365,2344,268,535,2197,1668,1807,741,864,2997,1890,357,744,163,1291}

    1249

    1640

    Returns: 881967013

  72. {1848,2164,330,876,581,1504,2706,1170,2023,1785,1328,2142,1476,1149,1528,526,920,1738,162,1244,102,1952,1217,2652,2287,36,1780,1555,0,392,1325,2325,1080,1415,1332,560,1000,1037,60,156,2579,606,1720,1318,354,2311,1613,1981,1423,2001,2120,1418,1866,2264,1387,685,2973,1800,161,751,372,1345,788,1871,2369,1692,2058,107,67,2880,2839,2819,1552,2112,1563,516,2232,15,1220,1014,629,185,595,1634,2475,1607,2281,2718,1653,2519,1072,345,808,1815,527,933,2051,2351,2967,1992,1647,240,325,2095,2564,1772,1252,2304,132,884,2410,860,1899,1811,1179,2714,1081,1006,1340,600,1631,134,1665,645,2963,79,223,1465,2822,2172,938,1984,364,7,2593,2872,479,2390,805,46,1693,2049,2423,1551,787,2140,2283,246,2794,1996,411,2718,4,1044,2218,1821,894,441,2411,1482,207,343,725,1825,1532,1886,2069,255,2268,494,2939,464,43,2534,2131,1534,863,2055,948,1039,480,2108,933,1911,2959,1842,2785,562,2307,1888,2797,964,1017,1239,2893,1538,1130,1955,2557,743,1219,848,1878,1337,2820,80,1998,943,2287,2841,2739,1981,879,2465,1157,107,512,520,657,2775,2883,974,2371,2241,2101,160,2524,1836,2795,1069,175,2034,94,1278,1675,584,432,1820,1762,2814,1224,420,892,1070,2810,2865,2847,1856,1238,149,708,1857,1111,763,1248,838,2424,1623,542,1243,1800,47,1374,2578,2088,2661,1869,297,1921,2141,2424,2243,2314,1661,2454,2758,631,466,1745,1421,1178,2021,81,2785,507,722,2721,171,2308,2094,117,2436,1308,973,2186,265,218,1139,2013,2096,2436,568,1161,811,1486,963,651,293,2716,1583,2658,943,1852,2060,2135,1731,1571,456,1044,68,2880,392,906,1881,2998,349,1058,1394,1499,535,293,1238,2090,1232,2992,183,368,2493,2264,113,1289,1053,1600,1256,1050,2737,1827,410,732,2683,1794,1021,290,1354,2456,989,1964,2814,1116,1213,2484,2932,162,2856,521,54,1492,610,1616,1269,2583,384,792,2872,1842,1621,899,1424,109,1793,2891,2427,1682,2418,1230,2559,448,492,180,2481,140,2845,2822,1488,213,1055,482,2565,2393,893,876,36,5,2347,2986,2203,1259,561,1528,599,2265,2891,1368,2738,2672,2943,2208,846,42,190,951,2860,563,175,2690,572,1615,2307,1402,1202,2056,2860,2873,2481,2745,2962,742,88,733,669,1610,2426,1121,2925,2112,634,2345,1038,2040,2901,1603,2641,1358,1210,2967,2924,465,2721,1598,2912,2025,302,2394,1271,2920,789,2794,2753,2728,1686,1857,1761,1591,486,351,1179,2266,1114,1882,1280,523,2730,2971,2883,2394,27,2811,659,595,995,947,2314,1636,1920,827,991,2027,805,783,390,1520,646,2651,1703,1466,2550,1515,294,1046,554,2252,679,1794,660,1496,2826,1824,1461,346,2722,2683,107,1884,392,1652,2134,158,2230,682,142,327,2763,1111,2926,1766,925,2245,1947,2050,2585,1573,2890,1775,1985,925,1562,242,2443,1173,425,1191,2934,2164,1540,73,1535,1900,263,1779,2428,896,1967,628,1039,358,1651,105,2135,609,2326,1599,1639,1275,2003,27,65,2875,1764,1459,1679,2760,1737,1193,1332,1444,2488,2110,144,2762,866,1687,2984,185,1719,525,197,1834,2508,1864,416,2746,374,2370,2308,2143,2937,891,1290,2226,657,2720,337,1141,2293,1763,1447,2582,273,1466,182,1555,1552,2864,1034,2639,1892,2851,1127,1532,2627,618,2469,969,2148,172,830,2932,701,2259,241,1939,2302,765,1458,941,2452,1664,1367,1226,2080,2332,327,2181,2145,1550,1439,1415,471,1389,1849,1759,1163,1984,1085,179,2685,933,2752,2473,2058,2813,1751,1519,2019,2500,1276,2489,2141,1147,2335,2648,504,2080,2305,2879,2374,1435,1071,1210,465,786,720,2503,1741,19,1750,2454,2374,2602,63,1683,831,1103,2798,761,2369,2119,549,2069,2435,1466,1832,2305,1120,275,2491,17,1104,417,1661,1429,239,2266,314,478,1040,1460,574,2351,1223,1097,1009,2653,318,624,2417,650,1466,2315,1021,925,1558,44,2358,2103,229,767,1118,51,697,831,328,1500,2614,1299,2033,1816,1443,2485,726,1699,1123,2940,2980,2781,831,2885,1833,1911,128,293,1323,50,2979,1205,551,2263,2812,2130,112,70,2223,2409,1257,1531,2955,1797,1658,461,1792,1977,2242,19,1094,2265,1101,470,1802,1566,2021,798,1200,2595,1274,1625,2054,1083,951,338,2594,2949,1017,1595,1130,2227,1675,551,139,161,2569,2480,1835,460,252,1794,1002,1385,582,2819,1493,2980,2301,509,2145,593,1531,2564,1057,2263,1116,1367,2095,1144,1472,2292,831,1372,1315,1133,455,1147,1004,2464,2275,1135,2259,1301,1014,411,1474,559,449,2073,2088,1316,1305,2016,293,353,2845,1698,1824,1179,2161,2864,1904,1814,2900,35,2391,1123,1781,153,2246,291,283,1219,2054,1281,2184,2104,2478,1532,1133,56,51,1837,2141,1160,2708,2392,110,2532,163,1356,2272,2736,2523,1826,1468,2878,568,493,2139,2492,313,813,1073,1673,1546,2848,1672,1168,902,271,230,2528,2308,1195,688,340,850,2602,2980,1790,716,1102,177,2618,1379,455,440,2116,1382,2451,900,2454,2878,2335,1925,1909,1743,1820,871,468,1082,293,130,573,1869,2543,2000,430,1130,2529,873,853,541,1410,1393,1681,1574,1211,1189,2220,1763,1122,1511,2335,2689,1850,308,581,1,1588,2235,2223,688,2424,207,2269,62,895,1079,2526,2289,679,950,2393,865,668,1811,2707,596,402,1579,793,2431,395,2800,111,333,1530,2867,2208,2506,1743,2379,1375,1984,2283,2282,1996,1856,117,1455,1466,340,2721,456,859,2642,1735,1780,2308,2649,8,1115,828,2094,2648,1501,983,2474,2352,2395,2035,79,103,2840,2252,1154,2990,211,2001,1906,813,2941,604,70,2334,652,1393,2885,109,1709,649,958,1487,2016,1711,2413,2811,2699,1097,1281,1944,2974,2313,522,264,1083,1156,10,1064,1794,2901,2104,2602,1686,91,1455,1218,2359,776,1958,2964,1512,1987,990,396,2490,1610,2799,2022,6,2117,2540,678,2631,155,2020,1434,1061,2082,2046,2308,950,2781,1320,76,2914,2444,736,2737,1259,319,2008,706,2249,110,1880,485,1173,2647,690,387,2610,418,2638,2045,2397,85,1461,474,2039,240,1312,1513,1645,2625,859,492,1175,106,975,2076,1376,107,488,1132,794,2299,2894,603,214,2769,515,2883,1180,1157,846,611,1829,507,1344,2744,1759,2805,1567,942,2994,2841,2223,2719,1453,2253,892,262,1933,1142,284,2437,1427,1722,2421,2456,1900,2000,1249,587,2609,1359,2021,316,1771,2020,2513,1578,1951,2522,2080,1565,612,1083,1336,1640,1003,306,1929,333,2482,325,2821,2849,538,827,225,91,1613,304,2046,2311,445,1034,2741,1266,1119,2569,2464,1156,1860,2846,1129,1578,378,2134,2560,1563,2917,2004,2919,2746,1067,1403,2980,2731,585,753,1693,493,2669,242,2178,870,1473,680,1373,481,2209,2169,336,1144,1047,1953,2279,847,1111,1565,559,124,583,1218,2907,999,313,199,2277,661,2115,1922,1700,2773,1646,984,1219,2877,2659,2566,1645,1334,1605,1988,677,1673,1321,6,1297,1748,931,630,1310,1914,285,484,989,2004,2210,2770,2890,876,500,879,1790,1980,1940,1574,2450,2604,2208,513,2654,1737,244,108,477,587,2659,581,2737,52,2591,676,1485,747,2897,2525,1787,88,1563,1874,407,1761,308,2340,2061,253,1101,607,1451,327,2885,210,2128,1247,1190,1863,77,2235,311,1858,281,2610,1513,462,2297,618,1428,2401,644,2931,1425,2850,571,698,1280,691,694,2414,2881,31,2578,2853,1933,2124,2334,1561,2171,382,1004,1331,2818,1389,1068,55,885,1595,1127,2415,2297,1609,2143,1696,2199,529,2132,2473,1831,350,2487,2227,1272,397,106,2512,1800,383,1051,251,914,2870,142,1642,1525,1332,1706,754,2446,2123,1554,1363,586,1399,407,1559,906,281,1696,134,1692,1815,2756,192,1010,2038,744,1443,840,1628,1228,199,1438,2353,1986,1446,2879,88,606,1502,2674,962,479,1020,2577,1943,2025,2088,908,263,424,2635,2625,1018,1506,1656,1608,1579,2367,1049,1393,1800,1987,2295,589,264,1172,2007,926,2209,1214,2340,2967,738,809,686,2924,2719,1260,2640,2502,1913,2263,88,2477,1850,809,737,2660,2073,107,470,1583,1355,1196,780,2746,1529,1332,1295,2896,175,239,1216,2978,1074,1796,301,1270,1203,1396,1703,745,2886,749,1960,34,2851,1375,2737,2273,2648,337,1184,2950,2261,325,1368,1055,1230,628,1454,551,1254,1269,1948,214,1251,1309,862,2623,1758,1019,316,826,943,1754,2155,684,1822,1441,1900,2926,2975,987,1243,2329,1462,1380,2041,466,2643,2081,1905,1893,2425,2881,2614,771,429,1511,362,1701,115,1910,2827,2082,1608,677,513,1794,1964,824,1861,1573,2055,1456,413,2725,257,1151,2448,1825,2448,1186,614,2343,2964,692,2486,1656,966,2061,564,1364,2981,2599,1708,493,268,194,2919,924,2109,1211,455,279,1543,406,31,2673,215,1818,1843,365,327,2315,2870,2759,534,1685,2223,886,2134,814,477,403,2078,453,2616,929,1236,827,487,327,665,2179,242,1330,312,2735,1935,672,1138,2204,2792,2853,1365,889,393,2822,2823,641,892,1085,2292,699,892,2098,2829,1292,2804,2582,918,892,2156,1009,1107,2677,1106,2500,2497,2919,245,785,1731,1445,1905,993,807,2029,1963,1611,142,709,764,327,944,1283,1282,327,2672,2551,957,2584,1131,794,0,238,2332,334,950,930,1645,859,1915,79,1650,1944,59,1476,556,2669,1003,637,764,259,1389,2328,1355,2323,755,542,2608,116,1026,2420,41,332,2610,1672,2768,433,2910,239,337,1846,885,2185,420,1162,907,542,2430,115,567,177,2671,1667,2286,1276,1287,16,1353,11,1903,2214,2646,1768,2743,1635,2596,1011,1655,1048,1858,1126,1331,1964,1267,581,719,155,1588,1743,201,544,2222,2446,2744,1367,2537,1509,330,2262,820,2816,2176,276,2703,1838,388,166,148,626,1344,2397,2988,2732,1400,2922,755,596,219,1843,845,2430,293,251,2296,1543,2480,1561,2396,876,356,672,1152,1108,2216,1650,2451,2122,1339,349,2647,1048,1161,910,731,2332,1959,2636,622,376,2183,784,707,1795,489,2923,908,2243,1062,1763,2028,2107,777,924,1426,2482,2556,959,2194,505,2750,60,70,335,2919,2899,1561,1429,1088,785,2939,208,1842,2505,1556,2026,957,926,1194,513,2468,2514,1516,1243,1149,1849,677,2073,2686,1533,2240,1498,2655,1463,842,1807,2239,2375,2027,923,2282,2938,1896,2261,1517,1971,1786,915,97,2542,2836,1347,329,1091,2227,857,337,2415,912,652,1582,1053,88,1581,2753,802,1291,508,926,30,1306,2548,1786,196,1069,2233,1491,2571,428,2022,1383,1086,1294,293,752,2255,2278,2340,1380,1747,2893,2693,1444,1015,1333,2675,1547,1950,2905,979,2980,136,2695,2495,2996,1257,227,1883,2453,1419,2230,2765,1230,2744,598,2321,242,2445,2490,415,738,2408,1462,655,2578,1041,2167,532,25,859,2100,1455,1173,1669,2001,2165,1766,634,1616,381,2224,1786,701,1228,2584,410,1542,2496,1298,1420,2787,1372,996,238,2251,574,2095,91,2252,482,1549,2601,2069,1127,438,589,2422,1815,578,2017,2398,2038,2879,446,373,1868,1199,2902,541,2161,164,908,154,489,1319,2638,2614,2158,915,1537,847,2047,2873,2559,586,2359,142,1222,613,2283,1020,963,589,38,629,734,1409,2871,2841,20,924,382,1635,2407,2580,2645,1710,18,1532,436,984,2534,2548,2883,2583,70,88,1525,2046,861,973,892,2091,1363,1001,853,2598,2471,436,510,971,1693,2637,820,107,380,1730,2684,2169,1765,271,2247,2383,1892,18,2550,887,309,294,497,1416,332,421,1958,2987,426,2617,1103,570,398,2034,2980,1998,1850,537,916,1051,1974,1284,2258,1177,1718,2808,1586,1788,1466,1746,2218,2542,643,1911,538,1040,672,1432,70,2415,2572,2005,1207,428,744,1397,2,2102,1378,100,2747,1200,787,2839,2731,2816,968,2496,2260,908,1805,2701,92,120,2697,1502,1618,1987,1696,2560,715,2048,1315,400,2963,664,2730,104,1715,2905,2564,96,2366,1905,1148,469,2827,2838,1758,980,1994,2980,801,2947,1192,2837,168,215,2303,1562,1416,1230,1803,2137,332,289,1533,426,2518,2240,2590,2069,1117,2853,35,2720,2554,2548,1052,725,2509,1409,1930,2552,283,2734,328,165,2003,1515,377,1528,1437,740,2287,279,209,2845,775,1916,581,2811,1952,346,1572,1021,931,2678,531,2226,963,1770,451,1471,1381,2819,2177,817,2927,1561,2245,2686,2277,437,1443,983,2435,2792,2294,1166,217,836,1874,524,1935,2047,2832,1490,174,1800,137,2048,142,2534,2146,2062,929,2556,2529,528,2583,1664,664,2411,2275,2910,258,958,720,1014,454,693,251,703,1709,535,2111,1988,313,627,1709,2129,2190,1111,103,2539,1791,94,131,2696,782,667,2013,51,2323,1521,1803,832,916,837,2541,2951,1400,2143,229,1414,2871,1084,1640,61,2021,1952,773,1176,1550,125,2815,1027,1914,1060,2349,1509,897,850,1069,2327,2807,1401,1631,2283,1606,2242,2382,2671,1441,2833,2865,1522,2584,969,1460,1543,361,1061,1347,2934,869,2380,1444,2089,2113,1349,767,2677,2841,978,437,2641,1203,2263,2785,2228,1299,132,1176,1579,1880,2873,1769,2302,1277,369,1825,1840,2862,2412,713,667,1908,1960,1053,1568,758,746,2455,235,1092,1062,2284,1371,651,1969,2628,329,1549,189,2330,523,1668,2726,1879,615,545,1300,135,149,2116,2873,1472,193,170,602,357,558,2853,595,610,2197,795,2067,496,1820,865,1965,2555,1903,2513,1503,2791,2356,1360,1980,2614,856,998,1979,312,2605,2554,1486,881,2361,2238,2963,1488,2022,2428,2619,620,600,1902,289,2001,1125,12,1960,1340,1431,2908,1897,283,1406,2980,13,1149,2250,2925,2576,1080,1955,1898,2559,2885,508,2850,327,495,2603,2758,2341,769,1589,662,1233,1688,1730,2346,2215,2763,1842,935,2712,1379,2721,1508,484,2138,578,2674,2556,2578,1943,286,1563,472,1369,1842,2760,2999,859,1316,159,2715,1613,1190,1040,2408,274,1723,2227,229,1657,2305,407,342,1837,692,2946,1035,455,1060,194,1027,2280,2512,1964,2664,2488,2510,1221,1495,1576,2911,1577,2958,2181,2930,2519,1075,834,1767,2932,126,696,151,47,2305,608,2252,1242,2126,1789,1358,684,2568,1461,2969,841,2215,380,1196,1372,770,1168,1355,1578,72,520,1742,61,779,2698,977,2252,2389,2508,2137,744,2278,1752,2672,888,2873,741,709,2144,2292,1881,2384,314,1464,443,1036,2213,698,2283,2741,2376,2193,852,1614,2271,1531,920,435,876,1778,2811,1529,75,766,406,2344,2234,300,665,2558,789,2919,56,1851,2337,1400,1547,575,1189,594,1550,2998,1883,2870,2499,603,862,1767,943,2122,1415,1650,2567,46,282,1321,562,1835,1411,492,502,2165,2406,1348,2370,2198,1449,1400,1712,16,1523,1051,2229,1718,2203,2219,2256,2948,398,2063,2579,1292,2775,744,513,649,290,2226,1889,2072,1941,1934,2641,711,2334,2864,1227,2211,727,248,2586,446,2782,2980,937,57,786,587,143,1154,1389,928,781,2937,1090,2453,1286,1176,172,2985,1164,101,2110,1837,1798,1524,998,20,392,1910,704,2598,1759,1781,2287,264,1835,847,1521,1450,2780,1442,46,460,2969,2220,2143,1676,699,2020,1001,2304,2320,2657,954,2817,535,729,1887,2965,994,2461,1923,768,1662,2247,1416,2954,2867,186,222,2227,346,1372,2878,2772,2588,596,2803,2116,1614,1997,1688,2383,346,200,1338,2376,1961,1761,2643,1738,214,2571,2560,1394,1858,1347,1998,1828,2347,601,1834,2614,2002,864,2662,791,1556,1656,1243,2029,1467,330,2835,1436,282,444,1932,28,2724,1672,2869,1773,2368,2628,524,261,1714,1032,2615,115,2558,1510,2751,151,757,883,1143,1514,51,406,423,2354,466,874,1969,2278,2125,2500,1068,472,447,225,841,916,2597,1975,2096,1478,1842,359,1289,1005,1161,2030,1043,2053,302,724,483,1800,283,418,210,2620,13,2382,152,255,754,2189,66,1859,1612,212,1262,2871,652,1266,2502,418,1451,171,2774,1776,760,2544,365,2517,2283,1570,2581,178,2374,2931,2271,2012,860,1912,2086,2263,1524,1976,1973,1458,1425,2586,2478,2957,1078}

    {2892,2843,178,2676,1281,1479,1817,1014,542,1417,1484,2430,2946,270,1791,503,1675,87,610,1559,202,1117,447,2722,189,2705,1025,2650,1755,1545,1099,1105,2809,2973,431,661,2390,1948,2323,2587,1661,1821,2560,1381,734,1526,1919,138,1358,55,189,1484,2218,64,623,935,1678,206,1508,1331,1026,1561,478,1059,2602,519,2610,2819,2302,2559,1725,718,1962,2399,2570,2280,493,984,2892,2392,86,2114,149,318,237,821,619,1376,1381,13,1485,23,1366,397,1394,2316,2419,1286,2212,307,856,1664,1687,1671,1069,1496,392,1203,51,2271,527,2173,972,2408,2909,665,2888,404,2218,1804,2681,24,2000,98,2672,2359,911,565,2083,2259,1128,192,2679,2589,1619,661,1045,1980,2713,1615,2964,1740,581,2792,2614,916,2424,1352,2319,2347,1257,846,2840,2209,956,2767,733,2562,2034,2966,2680,2734,658,2841,2201,487,2012,1519,2100,1492,199,467,1321,2074,1463,2609,920,2299,2725,2085,2262,469,2000,199,2208,1018,708,69,2314,1844,2970,2933,2788,2158,2700,1153,272,1944,1653,1836,1186,1140,19,330,1280,2744,766,861,2869,447,1198,2997,108,2258,682,1334,2305,418,366,2898,2479,213,2877,2007,2425,429,1382,1859,2607,2026,2289,2480,1744,2783,883,2217,1979,2599,2310,2719,2186,1661,70,913,2532,1405,2021,1521,1839,2595,2600,1594,1617,2065,2326,739,1643,2248,2912,2580,1372,242,985,1366,2846,2986,1184,56,2002,961,1245,1776,841,2679,1429,1317,1053,2416,998,978,460,1901,2062,2771,2770,1808,438,1644,2603,1024,2075,2870,2362,324,1167,1345,1536,332,2942,2778,2432,446,2099,1263,1716,965,446,1574,2010,2055,660,1102,1380,456,1480,1686,2511,2021,1959,875,413,2706,2062,188,1099,54,2325,1756,187,1724,1649,1855,2084,2007,1580,2944,171,171,911,951,1592,636,1983,2170,2793,324,2782,2386,1053,1138,876,774,2140,1925,1410,2723,1844,1183,414,888,1083,2912,2304,2390,1726,728,2659,2709,375,997,2551,920,2461,326,2559,2290,2811,637,1957,1000,862,1819,859,2773,850,508,298,2804,352,2498,1129,2666,1640,1952,1949,160,1091,568,247,2171,2140,1378,299,2034,456,2784,648,2005,2278,2657,2292,2739,1654,1203,1324,934,385,1979,1568,85,1743,1663,682,901,707,334,239,825,2180,1854,476,2664,647,2514,1860,2722,1259,2244,939,89,509,2429,1042,2628,468,1357,1373,2643,2570,1955,661,2022,2442,1258,621,1439,2450,1842,2865,1553,2780,1593,888,674,2011,2000,191,1554,275,2168,109,1463,846,2614,73,1182,2861,2372,721,1069,1619,602,2768,2132,2439,1463,2877,1657,1134,2468,2733,694,638,72,2223,42,990,1280,578,2582,1867,1165,2196,1906,1384,228,1825,854,2970,1628,2377,862,79,2377,1608,1904,1028,1308,161,438,2570,873,473,1660,1478,521,2115,1687,1395,936,286,1610,2842,982,1605,1932,347,74,281,2851,102,1968,2227,1637,2954,1841,463,1813,1017,2989,248,911,2629,336,2052,1296,819,231,1152,1876,2719,1165,1470,1945,2882,2160,799,1031,2320,970,2324,1861,293,981,2667,2300,2880,725,544,2935,2147,2830,2538,1691,1169,2096,1751,399,634,593,1918,1355,2626,1707,1652,1791,1733,1482,1556,19,1356,2980,822,2737,2461,533,642,2676,1116,1960,1602,1035,2560,1150,500,2340,1956,1187,1845,1223,1999,314,924,634,214,0,2047,579,1045,1677,2640,729,149,2271,822,1769,2632,2873,178,1340,84,481,136,296,2869,2873,2291,1014,288,2260,1547,1400,394,1086,748,2884,2692,691,1891,446,401,2742,2559,473,1014,2703,953,102,886,922,1233,1484,1345,13,1550,2956,2235,831,303,1231,2190,1440,842,2521,542,1928,423,501,1759,2430,735,978,2490,771,988,1432,2389,1158,1326,2191,2487,1125,1666,1053,2928,1259,856,2404,2662,1875,127,814,2786,393,2069,1906,1106,1970,2319,2608,142,2873,450,1812,2931,1926,1541,1053,85,2157,2993,838,2110,572,1576,1449,2174,1798,1069,1844,1610,1209,2122,1542,23,2935,2207,1523,1965,1450,220,1786,2405,123,362,356,2162,441,470,330,300,1026,1703,1695,2866,2308,914,403,1232,2475,2766,1910,1124,2719,601,2025,1053,2669,2677,1235,239,2799,924,434,1096,1324,2639,356,1561,1635,1093,288,278,1653,1279,331,2613,2006,2719,2453,299,796,810,2166,606,2494,1697,1557,1511,313,1511,1935,2900,2133,1938,523,542,1954,1896,2839,2687,672,1373,1170,136,1371,2706,1016,1558,1730,327,592,2715,1597,611,1879,2155,2043,302,2857,2630,1301,1056,2783,2347,1176,2299,1548,1389,1369,2957,1291,253,1615,2190,2006,2274,2873,587,1855,793,209,2874,291,1006,2532,798,339,2676,1596,1225,782,1535,860,2150,329,2855,1767,2278,2878,116,2027,1012,1782,1731,2802,2545,2001,2953,2906,1528,2928,1075,1416,1033,2134,1429,505,2761,1432,2605,1977,1873,173,1197,1373,2503,2975,457,619,2377,2080,1039,329,2295,1785,2859,2794,328,700,675,2400,815,1461,2845,502,2848,952,1709,1507,1985,2772,2056,539,2501,85,33,138,2644,1937,791,639,985,1601,1443,831,1727,553,1499,2073,2051,1311,1988,2606,1932,2486,876,1547,1836,2863,1785,1778,2879,2556,2335,2053,1057,407,1629,2918,1944,2057,1124,2729,1168,2976,730,439,2079,176,1853,2104,165,829,1171,940,2748,2,1251,1139,1526,1522,1912,185,1776,710,2252,2572,1535,452,2307,1081,1429,315,801,181,546,1542,1881,2576,1700,633,2883,2301,576,2535,2205,831,2553,637,1783,1452,1624,2087,2624,2895,2844,1522,2436,2777,351,2940,207,427,1663,1676,1935,2003,1119,2317,2231,979,344,2260,729,2071,2250,2500,1927,1447,327,695,1680,2438,1332,1465,2946,1455,1120,2781,605,675,2831,2575,2113,2235,2627,101,162,778,2740,2672,1268,413,2780,2403,721,1915,2587,2849,1327,1463,1011,2820,1238,1924,409,2704,1069,543,1314,898,763,2225,619,2635,1927,1407,642,1753,111,2912,2931,310,1046,2390,2912,1586,4,1061,1145,2746,2366,1396,145,1895,93,2668,581,2556,1487,1327,544,1526,2615,1667,367,1102,661,1516,1584,1232,1122,889,1400,2648,2744,1377,1659,267,2758,150,669,313,1113,1279,1391,1767,119,425,2460,99,1204,2835,459,1,2411,1399,1389,377,2022,692,570,2783,146,2676,1776,872,1079,2350,1404,115,165,2784,1638,2852,1526,2044,1044,98,2907,800,2233,1008,2263,519,1673,807,1853,2066,2871,618,2161,2244,2902,2030,1586,827,2792,1703,194,165,2359,1631,917,2026,1670,1416,1258,856,1394,1859,1777,2104,1588,1824,1095,2104,2448,2477,1527,2149,14,27,816,240,333,1040,400,1034,2384,2167,1185,2422,2665,2118,1170,2598,2843,2588,2202,130,2338,2340,2070,2060,2449,2885,1889,1713,1709,327,1133,312,1912,110,2764,1522,1073,2389,754,2259,1070,1689,1444,1782,1734,2855,1587,1457,835,772,27,843,506,389,568,547,1061,2622,1835,1776,2252,1355,335,403,803,2670,1567,998,2564,666,2560,2040,1512,1823,1762,2783,1667,184,1180,798,632,2936,1027,2906,2536,1856,693,1837,1747,1448,172,2200,2434,48,2606,2860,2744,1563,677,2996,2156,2527,1520,1664,1774,992,152,51,595,195,2753,2540,2032,4,29,26,2663,1230,1106,856,2744,1680,2602,1249,919,2990,806,70,717,894,2459,399,1877,1338,1150,1029,1999,45,2879,2974,27,2983,1549,2834,1958,2081,2546,2391,1705,2944,1023,2812,1121,843,1648,1631,2548,1640,927,1249,317,1432,827,608,2479,2735,2974,2279,396,2260,83,2688,2390,2135,1273,1392,1768,243,157,220,1885,548,1054,537,656,2223,2106,2016,1523,136,2009,811,2448,1954,2364,312,1297,2010,1848,2996,2824,360,540,2589,285,2237,2059,2312,548,128,2410,1953,839,2113,2959,449,2851,1894,28,1604,1830,1256,2765,2946,1346,2558,1613,1737,2561,2623,1505,2922,504,386,2829,22,411,504,2876,1622,828,2209,269,2614,249,2704,355,872,433,2036,946,2108,1577,1212,2220,947,2764,850,1065,1946,2443,1546,1030,2840,130,1201,291,2727,2977,2501,1355,1690,1298,2223,1518,1899,1532,2893,1173,2507,2187,1320,233,1949,2547,2448,1050,1462,1683,239,2612,1073,2221,1241,672,767,1982,1794,2377,163,1911,1843,2270,1288,221,71,2940,2362,778,2921,1086,2431,1647,2411,1624,1856,2024,2754,811,1336,1089,2835,1201,652,2760,2845,239,1372,1870,2325,831,597,2440,234,2150,2322,370,2397,428,860,2490,1179,1830,2095,1013,1444,61,2915,403,438,684,1557,2725,1169,305,1381,1589,2929,640,2644,2349,540,1678,283,2740,1714,871,723,2794,733,890,2097,530,634,2219,1017,2476,2132,1890,2948,2186,236,2515,1387,320,661,153,1734,1477,2428,1214,1,1917,705,1863,683,235,2591,2658,2995,2533,2504,329,1910,2028,797,1400,2618,2972,2918,518,1126,2047,2776,1443,569,2917,2950,2759,307,1101,159,1633,2242,2570,2513,2153,1489,171,1889,2387,135,2136,1352,520,2520,998,830,780,955,967,588,1098,888,625,1115,1756,498,1602,629,2554,446,216,1008,2005,1351,269,2509,167,2654,2342,2777,1242,1973,473,2945,1546,82,587,1894,161,1077,70,2135,1766,441,203,1448,2102,2206,1504,1884,2355,1362,2436,275,1493,682,2226,2159,269,1128,1568,1027,295,130,205,285,2900,2167,2789,475,151,400,2242,2830,450,671,1265,2558,665,2248,591,130,1246,2221,2038,862,1664,348,1115,2271,1865,957,1872,2308,1101,730,2867,617,1801,1841,1823,419,1912,990,2336,2694,124,313,1626,393,1390,45,13,2047,2436,2243,2886,2768,2360,2587,1998,1290,849,1289,584,1791,736,2171,2506,702,1847,44,2075,2549,2226,687,2455,1429,329,2714,2385,580,2048,499,1785,2333,1255,2686,236,1635,1152,408,545,180,2973,511,1021,2759,714,2746,2656,2672,967,976,960,840,2999,2514,2051,2138,812,1063,958,1743,234,2002,1435,653,1046,791,527,302,1291,38,1694,107,2348,2271,2918,2332,569,2227,1106,2318,251,34,2806,358,125,1248,2463,786,1616,442,2015,1826,2768,2219,1324,1285,903,2267,1942,44,603,2026,234,1293,1247,2951,832,1306,469,2132,1083,1443,2436,1651,1641,2878,74,847,159,1137,2968,2556,880,161,1044,1174,2029,750,1179,1725,2621,209,2306,1616,2027,1441,2441,1028,1307,260,881,49,1315,2468,1016,2507,2795,682,2895,2214,957,254,171,977,396,1422,2245,2356,16,804,663,856,2996,382,345,833,2318,236,2363,433,213,2204,1061,1950,1181,1675,2531,1835,2483,2702,2757,2486,1469,312,865,1430,1625,1904,2524,302,2093,1675,1978,1630,420,448,2320,492,166,2614,2530,462,2388,1022,2841,2246,2451,1843,27,2958,618,263,1388,1491,536,2716,114,6,133,2827,2056,1309,2276,140,1155,394,1946,558,576,1311,1819,1755,26,2491,2582,931,250,1512,1201,70,862,2131,1069,989,2592,2107,357,1874,591,1808,1721,531,327,1196,2522,2917,2223,851,2390,1470,1760,1214,1214,2858,1112,53,2792,2873,1573,1907,1523,2244,130,2151,958,124,1416,111,1697,9,2586,122,2254,2412,464,1678,2347,2390,551,1113,1455,2574,2907,1075,1044,920,446,681,1678,1372,2304,1628,2637,1334,1855,712,2157,2516,234,821,2083,1738,1585,898,2121,2390,1438,2252,1069,2259,2853,1876,1413,847,189,1569,2704,2068,2447,2841,1069,21,1212,1925,1543,1843,1526,1781,2235,1889,1939,1739,1045,1322,118,589,1320,13,2512,1725,226,2879,1076,1778,526,652,323,1647,2903,983,422,1136,1775,1745,31,701,2738,2078,1842,530,106,437,1580,1998,2744,1567,638,684,2825,2563,952,862,567,1329,894,1219,1108,689,2270,2018,1127,2866,805,2809,1250,198,1460,1683,2196,1103,2688,1620,1702,631,2114,1709,25,2223,79,70,197,759,763,1437,2236,1873,672,2378,2470,2323,2250,814,805,1862,1749,2556,879,259,1515,921,2656,239,1465,698,2027,78,2905,2819,688,1316,1035,1767,872,1062,1200,1904,310,1859,275,652,2152,660,1944,1532,2159,1993,2425,219,2991,1009,1135,1664,514,1034,1294,2611,545,1202,1996,629,434,2457,2509,201,2105,670,1083,527,405,2564,2163,2796,1087,909,425,564,2654,1674,400,2266,877,407,1538,1455,116,2889,2963,224,2508,979,136,924,1064,121,1704,1162,2909,1408,682,2916,1729,169,1809,79,136,2691,2493,1416,2373,2281,327,1007,2868,1600,1790,537,277,1432,2717,2088,60,2104,2924,1125,2438,2475,660,218,2868,302,213,1283,1061,673,1989,2994,2283,1210,2542,1563,292,1276,446,2551,1331,31,412,823,2083,56,1499,511,2406,2354,2755,2090,97,210,2059,947,2873,423,2743,1335,2839,411,2956,522,582,1850,287,818,85,831,2026,1329,729,1029,1544,2735,2689,251,1512,2931,672,793,1835,949,2960,2417,1628,2639,1488,1215,449,2695,1146,773,2266,2994,2212,989,587,364,2469,667,273,1810,1666,2122,1416,2458,266,1432,2307,2749,567,2588,2169,1230,1336,1342,2175,1628,1343,1515,2915,2209,1631,2738,2906,1370,1717,1025,539,567,300,1843,2011,469,153,2654,882,381,2307,1654,1808,1159,2058,686,2492,2011,2520,2936,351,682,833,1684,1471,2031,2429,2071,2021,841,2614,85,321,582,2240,1302,1658,1794,1578,1725,1776,232,1217,2958,2854,2135,1163,2389,147,1274,1732,2731,2517,587,2480,1808,1746,2375,2599,858,2532,1014,2357,1193,752,2923,705,1758,879,1234,2549,110,537,1208,1308,1148,672,2607,611,71,654,202,932,2174,2673,2972,2433,2329,36,2227,539,2868,1009,868,1590,2836,421,1572,282,1120,557,1412,280,814,1261,1560,501,790,1050,2181,2850,1718,19,1057,2556,2596,2132,102,1727,418,1784,1781,1853,2542,1995,1853,1208,1985,1314,1160,1775,844,1061,1780,1931,1386,12,1728,555,1439,392,2753,2839,2558,646,2627,1110,159,1811,465,1635,2892,531,2372,391,2371,975,2473,1563,2226,327,2805,2775,1253,2753,1856,2309,2645,2271,2257,1775,1494,1017,2592,1188,2903,878,1946,639,1670,2004,2952,1304,459,1111,341,915,2741,1035,1389,2919,2156,2759,1384,2873,1698,58,549,40,2639,2968,1627,1176,1757,1848,1398,2037,2957,105,1709,1017,1657,2467,1571,1017,794,1264,129,2320,855,1351,2435,587,1444,986,1719,1341,1466,2744,135,4,393,1961,2541,249,2278,1475,1966,1632,1387,2488,1873,945,2216,2584,894,1240,1247,616,898,2596,405,2381,2525,1904,1313,1816,2794,660,1678,867,2385,2117,2841,844,1303,1891,2684,1614,1489,2450,1420,45,2913,545,1497,1764,1263,446,862,1381,2165,256,1951,239,2077,2775,1984,1214,2790,590,722,1472,1555,2285,1990,2402,920,165,2258,2491,420,1575,1585,470,600,2491,888,90,365,751,2259,412,2887,1539,319,2188,2570,72,1433,211,1820,2973,300,2050,2573,1912,761,517,2021,2634,1996,756,875,1396,490,921,2780,1742,762,2931,2472,377,2046,349,2587,2741,31,868,931,566,1675,491,2990,2983,1596,434,2801,1235,940,2042,2644,2630,619,2422,2169,822,1007,79,2828,1308,1524,1271,93,2691,1331,2710,1906,2796,1247,398,2904,2801,2539,1396,2757,1911,2633,332,686,37,1133,1483,141,2014,1298,1366,734,2094,1125,1434,550,2154,799,957,2931,1291,2656,2049,437,336,3,781,2385,1439,63,669,2331,1558,2156,1510,2262,130,2860,2901,1056,2006,1504,971,1660,2220,1689,2050,65,2669,2520,441,72,2064,2157,1298,1059,2324,1991,331,1478,577,1960,1718,909,2957,2382,904,2339,1206,551,2180,2587,1970,2812,1350,79,1736,455,2982,1000,423,2864,1700,1972,2572,1574,2648,2097,379,2290,1806,2552,2551,2711,2870,2070,293,1600,2466,1936,2216,1069,1109,495,965,1229,2365,514,1029,2924,1361,2973,2933,2359,1177,2381,2064,160,509,1304,107,1500,2127,2062,1652,1053,2288,402,1345,2304,204,322,1799,2298,2532,1237,1453,1053,2197,2871,2092,2135,398,475,595,275,2992,2505,39,1563,674,2195,1011,2994,363,240,2462,1481,2095,635,349,50,1901,448,8,2029,1184,1100,1564,1066,2346,32,2080,2182,1321,930,289,1009,2192,850,1293,1744,1243,2779,637,2873,1140,371,2961,905,138,699,552,142,408,2468,2682,458,2943,95,1993}

    1995

    2537

    Returns: 91340423

  73. {2555,2771,2808,885,151,1409,2922,662,1312,1520,186,397,2303,1616,91,653,1673,426,1941,2528,2543,1112,1306,726,2317,1823,2892,649,995,1482,773,947,2123,1954,703,1738,2351,1466,2261,512,640,1421,1274,228,1045,604,2126,1637,1044,967,620,882,649,2816,554,1973,2784,912,631,1278,226,939,2540,1297,2092,865,2423,1964,2133,2425,773,1958,1217,168,1425,1501,1750,2299,2205,1231,1205,2481,78,1927,1205,2398,671,1806,1380,1051,628,2659,1121,2969,1447,727,2709,2801,1665,2804,1226,1499,1894,2009,2526,922,1000,2485,2083,1109,1187,2787,281,2681,2782,1777,2430,951,947,1907,2447,2302,2549,774,1276,644,399,2907,75,1819,1755,1722,1416,354,1812,2834,2642,2294,231,689,61,2271,582,2688,1425,2813,1740,2077,127,1167,1510,2877,787,2667,743,2958,409,1126,749,2985,134,1246,2776,2521,243,2950,2583,1342,2061,12,2788,2885,2311,1298,2273,2271,910,2489,48,316,2231,1018,1397,1846,2466,889,2032,733,573,2111,1508,2230,938,1568,2339,1391,1204,499,1525,2259,1882,2581,1154,47,486,911,110,2406,867,1674,626,2996,1635,205,323,1307,361,195,1393,2612,1617,2622,614,1053,2679,185,243,71,33,501,137,965,1078,928,1474,2820,1387,2187,2923,45,1359,1459,592,652,2565,2124,2562,802,984,850,738,2743,1502,384,1647,1416,372,864,2074,2975,2436,2519,2788,1977,2074,2982,654,2513,530,703,86,2931,1228,2932,2231,1982,1577,2487,2406,1294,1284,1509,530,1652,2902,342,64,1179,81,1136,2399,788,1111,1594,231,428,2850,90,2727,1926,207,104,969,1354,1221,200,1125,1608,767,2416,1075,2376,854,1729,1788,2937,2431,2486,655,955,2462,1530,2502,894,877,2474,1062,2571,2022,1588,1677,728,1700,438,834,876,1521,525,5,1992,1048,925,537,2211,2774,2804,691,2836,1708,1186,2799,19,872,2999,2650,2486,952,579,2260,1296,1865,671,351,1856,2306,1135,1271,2908,1442,577,2010,948,2226,1191,396,728,524,1619,2804,519,2894,2767,451,645,2862,1202,669,626,2809,2163,2941,1533,2212,1571,2938,691,2859,2003,544,1081,1835,2167,1565,1348,799,43,2372,749,1864,175,2320,1211,2121,1635,1080,1093,2109,742,1878,2635,2190,362,2059,826,2162,2958,238,439,330,1720,2737,42,1033,1480,1561,180,2264,923,1841,883,375,2704,1491,2600,1663,315,1486,2630,2491,1911,2252,2382,566,1522,1299,1837,1100,944,2901,2984,1873,2461,1765,2049,2022,1658,2028,234,1864,481,2428,2146,1396,1426,2597,1685,302,559,672,1556,2458,1405,409,1700,2959,1181,604,2281,1021,2081,1181,6,1932,1762,1339,2110,2209,2585,2230,2120,1278,980,2663,2584,2537,1141,521,1683,1585,1086,2435,449,463,2984,1628,1609,6,2454,2589,2581,813,565,2750,241,2293,1144,985,1435,1333,2573,298,1234,263,2402,1260,2225,2857,2050,2632,785,2020,1113,2991,2328,1865,555,1213,2559,1115,1447,1501,1190,2614,360,963,2683,2457,2976,2236,2000,2330,137,2122,96,2014,858,2056,2060,1444,2872,2450,1022,1580,1986,2329,2772,548,2048,1601,820,1819,2981,1407,1920,1024,321,1887,1002,971,2627,489,1332,2641,517,1885,2829,1624,350,672,1005,2061,1858,1370,156,2766,873,2234,2027,1536,827,1947,935,1818,2202,626,1970,1765,1031,1719,2136,1627,2724,2936,893,647,1933,698,1533,287,1358,1920,2892,1617,760,1447,2925,2364,1173,2795,996,1043,66,609,2792,1162,1090,2658,1252,1433,2484,95,1341,820,2069,616,2557,2320,751,1563,2236,1026,2165,632,351,2546,1882,2362,2144,960,1085,263,1752,1055,1137,2909,417,1299,1850,2700,1430,2027,2979,260,1974,2603,1484,771,2727,188,7,2263,2970,2701,1678,1314,1820,2707,1588,472,2063,840,1760,2246,850,2381,2312,1391,1156,649,287,1381,177,478,1602,743,1638,428,1440,2251,1848,1303,2201,2821,1307,2869,615,431,1602,2249,2341,1693,1715,1617,1607,61,1736,895,2665,2852,1586,1607,597,2182,726,1787,1125,770,431,615,2723,1094,1289,2843,849,1414,329,769,1323,290,441,1933,1368,610,2135,308,2383,220,584,615,372,1854,1850,2408,1552,663,1711,136,2835,2301,2087,1302,2011,1610,247,2623,2234,2449,398,849,1903,2355,2452,1817,1738,1288,1580,1749,244,580,1824,463,1098,1784,743,448,2692,2102,1136,197,2895,991,2112,430,2041,1645,2514,2437,151,1792,55,938,2078,640,271,735,1818,75,2971,1181,2751,2642,150,582,1506,41,97,1546,1069,2734,2512,2433,1761,1134,1843,1710,874,2854,2696,1915,2328,1755,2122,2863,483,1104,2464,2312,2570,2467,1973,779,2687,856,1000,1277,1282,311,962,590,82,2290,585,2008,2744,1,2703,495,1765,309,1498,1874,2193,1518,1043,1154,192,2026,1403,1918,970,1038,170,1501,1252,2262,2205,2583,1823,237,149,1539,72,809,2894,363,2508,2482,331,2838,290,2155,847,2305,694,801,663,333,1461,1554,2672,1567,2880,221,2793,2845,1408,2629,1395,1427,2793,2231,2583,1344,2666,151,2699,2914,2154,1508,2921,142,691,783,1334,2670,1938,1872,2119,954,65,2749,2665,1969,263,1279,1877,2751,2745,2055,115,2020,573,781,2132,1220,478,2045,2649,81,1789,1391,1515,1979,2396,1046,2266,1096,1265,811,184,519,908,1455,1837,1639,305,533,1177,1347,2528,1025,1359,2335,617,2332,211,482,263,524,1145,817,1133,1023,2494,2189,590,2199,2513,2095,1791,2349,1785,2438,2191,2955,2788,1888,2847,2592,720,1798,2892,1367,1720,595,792,1823,1317,1628,1930,932,2846,2027,1060,488,18,1631,1883,991,2834,2932,946,362,1041,1148,274,413,433,2986,1375,2179,2081,162,1148,2458,2627,239,2025,1468,692,2577,307,1134,1923,416,2268,2416,2926,2955,191,603,846,1690,1743,2342,2255,410,728,1726,2839,1140,2747,1227,527,747,1187,2504,2755,2153,1172,29,190,1570,2777,2663,77,2971,2338,2162,1053,2593,1935,1621,1714,2691,2730,2140,697,2815,515,1192,2581,2599,1591,2891,1765,2915,2542,951,1827,1113,1112,2163,907,1261,2350,447,2583,1253,2182,2914,248,812,2441,1327,1367,2895,2627,2427,2431,1726,1282,1140,739,1923,1937,1593,1329,1343,1017,151,2843,2932,715,326,2197,950,2175,466,502,2128,578,2489,1326,382,2590,1442,2105,1502,2095,2954,1981,2506,1163,930,926,1128,1097,2517,2751,2891,1889,1399,342,1667,2649,1412,1171,2345,1806,1747,265,842,2942,2597,76,832,1612,2867,821,1622,1315,625,1497,578,1873,2012,2886,582,731,1159,650,2860,1205,202,1492,2295,2832,2791,2185,2443,2385,2711,779,1027,2984,2322,2755,166,2091,2348,1128,295,2812,1684,2343,1595,2802,727,1504,104,1216,18,876,2657,470,321,264,79,2692,1653,228,1060,2615,1021,1351,2967,1975,797,1472,212,1300,2640,595,1738,1133,2901,1192,2655,284,1976,797,2669,1704,392,1840,2616,844,2817,385,1867,671,99,2508,1340,570,1961,2387,1271,251,1127,1511,2591,618,1412,1761,725,1656,1618,1389,1848,1731,1380,1642,504,273,455,466,1251,2762,2326,518,465,1550,73,1992,558,2794,2876,1818,1240,2027,178,22,2257,1434,1479,1048,2032,20,1606,2274,2190,2414,2740,2547,1748,2230,868,1024,653,1437,1410,1087,189,2091,972,2226,1828,1953,1568,1769,1227,1116,730,2931,94,1341,1676,349,690,74,2062,226,2798,2988,1694,1387,1864,2129,1255,826,298,1068,512,460,1479,1417,1133,2625,388,2310,1958,109,1628,2554,1366,977,1677,2595,2587,1285,2150,2918,2899,553,79,89,201,1317,843,1380,2615,1576,2433,1753,1396,1111,829,1866,2323,673,277,2152,1933,242,2761,1400,429,2335,2598,1248,15,1087,2190,1412,2265,1146,1423,479,1402,515,1400,554,2190,2646,2190,2407,26,2429,1616,388,502,1962,791,1649,2625,1743,2789,2182,2986,2446,2231,129,2395,554,1520,2445,976,777,459,686,2323,799,1416,1380,252,454,1602,802,1750,1368,1986,1272,2308,2719,1545,1484,904,512,2953,314,898,2435,452,2019,2999,2546,1452,1553,863,1187,2808,1762,1511,1600,520,1061,2334,633,2174,768,1977,2272,1586,1503,1814,1697,432,2230,1339,2361,2661,2411,733,648,2934,1549,1597,2640,215,2369,456,2609,1486,774,2083,497,2590,1077,1943,728,1148,429,1354,2582,2295,2027,1074,1776,825,2265,2139,1894,1617,2475,2824,358,2946,2234,2107,1454,1578,93,614,1483,2837,578,723,362,932,211,1632,1072,2933,1169,2983,1152,30,2737,2489,2364,2880,526,2003,1598,2335,2391,2486,2624,2805,2220,1433,238,2116,261,362,164,518,2233,1067,1974,2544,1459,391,974,2456,2861,1380,1971,1335,758,2564,1166,171,1638,2587,144,1341,1627,1884,2218,524,1555,2492,2122,2874,2265,1055,362,981,366,409,1646,2248,1360,309,2429,1304,1258,2314,2283,398,445,2916,153,1716,1686,352,2978,2513,229,2061,1861,590,1730,1354,1601,604,1471,1737,2226,2788,1952,1271,1316,2570,1933,432,2001,2515,1630,2903,2267,1020,1180,1474,2522,1904,1345,379,948,1308,1540,2211,2933,2170,2021,343,2944,366,432,1470,959,2001,195,987,2987,2995,2887,923,2468,1709,776,1986,2738,2256,2652,1547,2788,2925,802,327,2763,2702,813,2714,773,973,1140,458,1944,820,395,2970,2549,2883,2306,123,1631,2762,2456,2818,2424,2762,1128,2316,209,1474,373,1984,2204,1063,1533,2522,1903,2933,336,2242,1987,635,286,2190,413,1362,1278,1967,2061,2074,1517,2628,1196,1511,2529,58,2353,1271,601,80,1803,46,2901,354,576,1543,2362,1607,902,2401,808,155,528,2973,1415,1874,738,1942,1062,2736,415,1244,2971,678,2164,2592,1774,629,2455,315,1592,2184,2900,383,2395,1633,2911,2892,2738,1273,1490,2085,498,1668,721,1723,1383,476,1128,1818,1888,2605,1616,1480,2291,1795,498,1389,2750,346,2481,2897,2329,1520,845,848,1549,1231,716,481,985,594,1566,746,891,2709,575,417,2155,2725,467,1155,2615,170,552,880,28,765,768,1419,2294,2232,2317,153,1908,574,1506,1119,1666,1025,867,2150,170,1721,962,418,1193,866,1769,2240,1956,2536,2277,1779,123,2822,1215,1983,876,1682,2588,2619,1149,2683,2681,2892,280,2447,1598,1235,858,1700,1978,1909,1365,1558,2935,2212,139,2021,1208,2726,1217,2017,1923,1968,856,2835,2457,853,2608,2226,2759,2124,2938,402,1180,1441,2405,1413,2934,563,1028,1972,2497,1367,358,1391,245,487,1371,1835,774,1137,1672,1867,853,457,1069,58,1253,2319,1713,1184,1391,507,1266,966,1389,90,566,1160,263,2530,1099,1232,685,1741,1904,35,2098,468,433,1878,305,1423,2421,2973,951,2374,2572,1901,1148,1135,942,2417,297,2665,411,2448,1380,830,83,68,1016,2092,80,1224,248,2904,2117,2999,1519,187,311,18,2246,3,313,566,774,743,1705,1432,569,1874,66,2862,822,2879,1505,1726,30,2576,1390,1268,207,2106,1420,421,1497,2727,2543,473,2397,2300,2801,546,1793,2426,1484,1790,767,419,1536,2497,1442,1222,1152,2881,2133,928,2716,1719,2295,585,196,2891,1777,2142,1362,1599,1167,1511,174,2296,1246,913,1189,1936,2409,1413,38,244,640,655,229,1528,62,2074,278,1215,1874,1680,1023,1585,1529,2128,2134,1152,646,1986,799,2673,1471,680,2873,1489,888,2095,2171,462,857,683,1082,1928,764,2030,490,2074,1833,1818,807,2814,1189,1059,649,2542,816,2444,43,1817,2643,2699,545,2,15,2190,567,2436,2331,415,2481,869,1321,1746,1725,2808,1484,2809,557,664,1243,1790,2453,37,1185,2921,2276,224,2844,1456,1780,1858,2407,1562,119,1753,928,2551,2275,2509,292,1226,2810,2139,2853,1795,2551,1777,1774,2203,111,1835,202,2022,594,2729,706,1525,2489,1218,1131,1871,187,339,573,2849,1708,757,2523,1183,505,1734,1210,1043,821,30,2629,113,1158,1233,858,1771,1376,2727,1138,1680,805,2702,2127,578,912,1274,2959,1600,892,2920,1587,2075,2026,1047,2613,837,2653,1961,2377,2425,128,1153,2599,640,1125,1531,504,2104,2851,822,932,25,2520,702,976,953,1512,1835,2513,1498,662,2353,827,1391,178,2359,943,2980,1508,1137,1719,1226,2710,2714,2808,2230,1581,1940,811,1181,1736,274,461,2729,1969,2753,2036,53,342,2467,1247,1546,833,1589,890,1813,1812,2783,1605,1146,761,2420,979,1176,1063,1760,2626,1913,1237,673,191,726,285,198,1885,1147,1239,2795,153,2898,23,641,75,2868,962,1596,2129,677,287,1990,1406,2955,2008,2844,254,1024,279,2658,90,2230,1566,1403,2644,597,294,2474,2924,421,579,2536,886,1445,2514,1280,176,30,1175,2217,1702,70,2427,1648,179,958,2993,924,1820,1707,263,1358,1476,2490,2966,1612,2856,553,702,1483,492,705,164,809,2814,2073,2368,1133,10,1611,2576,287,1164,1135,409,2063,794,1604,2498,477,1374,655,2595,1843,598,343,168,1839,1879,1571,1235,971,625,2324,915,2254,45,1643,1634,761,206,860,336,613,2367,731,2547,2497,2026,2369,1598,2625,2936,1820,121,2279,812,2341,2073,1579,1095,368,2204,519,2858,695,2987,1070,258,771,2074,437,1679,2590,2788,1730,2632,2194,2730,1809,992,2016,186,2640,1494,161,1602,2473,2833,494,2074,66,2545,1431,2834,1815,1994,2034,2834,532,1885,894,435,2999,2317,1785,416,2583,2316,400,543,527,50,988,2981,204,2608,160,75,2024,2743,1659,213,2200,2032,1030,1900,171,1381,1479,1928,1962,2732,276,1009,2888,2321,1020,2092,1989,1995,2999,1741,30,281,2879,1696,2621,1462,2676,1003,1263,2432,964,791,1025,2226,2969,1920,1949,2246,1165,2796,1049,1334,1444,2817,1950,1578,560,1404,1617,1440,811,1711,1174,165,712,2301,757,2462,2799,2224,1805,2454,16,928,381,69,1719,2190,1963,1899,2417,2973,1955,296,2617,1991,2818,960,2041,211,1281,1555,2791,2827,1829,514,1374,2201,2636,168,2127,1824,51,2176,2786,2762,2648,1695,5,2573,2728,263,2787,1317,2984,286,1976,588,1505,1854,1147,2046,760,1286,935,183,1046,1453,263,1337,2552,1019,1003,2479,2525,1222,2867,638,2956,47,1831,2024,1083,1985,310,2107,2153,1831,413,2091,1708,1789,395,2068,303,161,1436,2389,511,951,1263,2858,2505,2530,2631,116,52,2590,1882,1958,13,2510,2057,1180,1534,2445,1252,1212,2124,683,530,1708,1324,222,2604,2682,1327,1491,99,2042,934,1239,2051,329,1192,1482,1306,57,2792,2487,2169,901,1192,1163,1264,460,2649,1368,271,1573,1001,519,2583,732,2486,440,1457,523,2570,1576,1484,443,625,1833,2949,674,422,1091,1640,2726,227,2375,2583,202,1498,234,31,2544,2930,2966,2499,2038,2526,273,1110,2058,2076,2888,2695,467,928,667,655,1372,1281,100,522,244,1628,1221,2743,300,1551,225,2389,316,1890,1241,2022,799,1153,1993,303,1573,2188,2000,2094,764,1084,2619,1425,634,1471,1429,1834,1966,233,2553,1906,2738,839,718,1617,1438,2762,744,2972,1576,2246,1720,2058,886,247,1714,2455,2006,870,2819,540,241,909,2876,998,2760,882,924,830,29,1289,2953,1824,1286,2344,1650,776,2163,2221,2123,1182,1745,2965,1718,2301,917,2979,990,18,566,1823,1361,1459,2956,1664,751,1335,2357,2735,642,1775,566,497,278,2611,2354,384,470,1735,2670,1625,1191,366,2141,230,1853,410,96,2004,2391,1509,1812,966,2027,884,998,1599,2178,1876,2042,1162,1834,1053,30,2442,259,2312,267,619,2323,1491,2508,1979,1588,2045,84,1560,1309,1253,513,842,2891,127,1084,968,814,2598,2699,1287,688,309,231,2680,554,117,2099,1954,56,1910,861,1245,659,2507,107,2373,670,2557,880,704,1949,2070,1939,2163,2279,1736,1592,1600,60,1866,1043,2546,2870,1252,381,1459,493,2807,1467,1748,1239,1949,770,1044,253,1051,2533,1134,13,2612,596,2210,2020,493,2471,2656,854,1546,2099,812,809,999,2748,181,140,1006,1854,1321,37,132,296,507,843,536,2959,2615,250,2743,1717,559,764,1008,2238,1500,39,2230,2457,2791,1528,1876,2633,63,2815,108,670,571,1239,168,1197,1191,179,2433,54,900,2818,2267,620,889,1835,688,1056,1724,2266,1005,2088,734,100,268,2095,1380,676,446,441,1660}

    {763,2587,530,73,112,2613,114,2459,2318,1513,1864,1130,2235,660,1604,2315,2074,1023,2542,2663,2190,2071,1026,1020,423,507,1907,1110,939,526,851,140,717,742,255,1674,85,835,2543,561,324,1511,1172,1100,767,1391,2374,700,1114,1273,2219,2598,1079,218,2751,2854,120,770,2421,325,585,1257,172,47,2553,1338,2392,2445,434,587,1563,673,2752,1817,344,1435,593,1279,833,1610,2235,1311,2989,615,2534,1537,625,1586,256,886,1395,858,1078,2190,959,2811,964,1009,1588,2442,152,242,708,1463,1929,2018,2732,590,1105,1334,2026,961,508,2142,2419,407,129,372,2222,1029,834,1385,170,2477,2684,1810,1864,1835,960,556,1899,454,1357,2327,743,1178,869,1661,1047,590,2250,1931,1418,590,2621,1757,1767,854,763,291,1905,1821,1630,2335,1928,1770,855,1885,1946,2429,777,1794,2190,1345,215,2117,66,2979,2637,2489,1128,1025,431,2579,2365,2163,2797,2867,2741,1998,305,1854,213,984,1300,2205,403,535,1318,2494,2867,1152,951,2844,918,2697,2245,189,1307,1778,1835,2061,2719,1651,1632,2716,2511,2114,1123,2121,2634,2041,1959,347,2302,23,1235,2532,635,1092,1797,469,703,2499,1013,749,1532,1253,2122,779,2504,768,2266,2314,1229,766,2371,1939,1551,2340,1219,262,2014,2320,2945,2442,2896,684,2925,2043,2558,2282,199,529,578,1898,1236,1706,1352,76,1598,1293,1469,2253,806,1959,182,1811,1772,2115,2247,2693,582,1897,2614,2049,781,1593,667,2657,2634,1101,2977,2773,2238,478,1860,203,2433,1678,2166,453,1440,686,2380,1151,2275,1636,875,2464,2152,1063,1622,1728,1253,2231,1988,2900,737,1838,283,386,1079,2614,2823,2299,1748,1517,2396,2188,480,722,1001,1496,2762,366,2127,173,2100,2536,2234,2213,841,1712,334,143,178,2430,1924,741,2929,401,2593,2140,2122,2445,693,563,2865,2905,932,417,1892,2590,2897,627,2275,2413,1527,705,2674,2786,1234,731,1589,2065,850,1287,17,497,1627,2337,2145,2678,2524,1667,644,1923,2460,2962,168,2527,2507,1780,1767,2124,2139,1354,558,2183,789,2113,1817,442,1391,2161,2953,1843,557,615,2725,146,427,2441,343,672,917,1206,1620,506,2376,1759,2422,1380,2923,842,878,611,2990,549,1617,2419,1891,2916,962,1325,1582,2394,2844,2516,1744,1136,487,590,2118,993,1895,2111,920,69,60,2223,949,1090,1995,203,2002,1344,2374,1196,797,1496,1951,0,1800,2383,1610,1756,2378,2906,2235,964,879,738,151,1435,2875,341,2640,1722,943,2224,40,803,1,1710,2887,1751,498,1169,548,2531,2901,342,2148,809,500,2517,578,2638,833,923,1993,404,993,1493,369,665,2583,632,599,1127,450,1576,803,2998,2013,374,1641,1606,408,1535,2099,1526,2061,228,2269,666,1916,1902,345,2648,1030,1551,1686,369,928,1523,1303,2770,1350,1691,288,222,918,964,2609,811,2620,1218,1087,1870,489,2199,654,2849,1165,1914,858,1743,1511,627,1836,1354,749,1779,2548,568,2243,1076,329,935,906,1849,1427,2781,30,1206,2393,1916,2893,2568,1869,217,1207,2574,2394,175,745,1276,2026,1905,2837,2596,1152,1217,1215,2666,753,808,2563,791,2451,2269,1852,2606,307,1741,363,2931,1616,1214,2344,1289,755,2776,1066,48,566,1469,1973,2099,723,1380,212,2514,2075,2793,1651,1691,964,1148,2378,625,997,1049,1189,252,320,1855,336,1133,2595,2986,796,2613,25,484,479,454,47,1936,2898,1447,911,1874,2533,2086,2411,1286,2956,989,1265,2148,1526,2211,1466,1640,1465,377,700,999,1985,2196,2951,903,2818,811,1808,2874,6,1357,76,2285,2234,458,1231,2542,2799,462,603,2681,2129,2664,2439,984,605,1765,791,2041,2474,1815,2888,408,886,1075,1776,1488,1674,2518,2030,223,1366,1266,172,784,1343,859,1591,348,64,1973,2344,1460,1321,2433,626,2216,547,485,1583,1628,620,1865,563,1613,1075,37,635,2946,1872,387,1485,1585,2640,471,47,1384,488,11,1544,210,1671,2495,392,380,2029,1675,1627,2852,923,1317,2774,1464,808,1542,808,1723,1632,1651,2825,763,38,2452,1000,2476,1291,1194,1011,267,2685,2405,1944,23,1524,1495,172,1559,2808,1986,2689,195,1477,2483,1376,27,36,531,2760,271,459,324,409,1950,1830,1728,2343,2390,261,1681,581,1985,1956,2813,2303,1382,1128,1959,808,2147,714,2350,2603,263,2176,214,1923,336,2550,217,355,1357,1719,1575,2101,1991,133,634,2361,2519,2333,2562,2718,1863,2616,2845,2351,2817,1033,305,542,2888,923,2163,389,2653,1336,476,1387,1891,2769,2061,5,1025,2182,2131,2762,2284,2662,406,2560,2751,1022,1781,1562,834,2461,2735,1150,1116,261,1859,2758,2295,178,207,697,2156,2851,1764,1508,590,624,378,921,1150,2354,1368,1488,2760,2671,763,607,1170,56,1945,2297,1129,1462,894,2910,831,1914,506,2764,2200,2839,1046,980,899,819,1331,2406,2026,2649,1996,1818,1881,1850,2273,1469,2648,2282,614,1847,47,2425,281,2719,193,1451,1185,2990,619,1194,20,43,238,9,2411,2205,1603,101,1842,1034,897,2831,2186,2154,308,2056,305,2791,2671,2896,2946,1756,267,1882,356,386,2173,231,1896,2689,882,1154,164,1868,564,2037,2075,386,1698,1231,2989,1012,661,2762,2603,896,2543,1724,830,618,2704,2304,557,1531,2272,2257,2207,222,603,2137,1143,1416,1259,1319,986,1401,1040,1447,881,43,2964,2084,1799,749,1720,257,729,1574,908,2446,1586,2122,1879,798,1657,510,2061,2794,2012,2791,231,92,1386,1058,2833,997,1576,478,510,2182,2087,116,854,1116,1892,2777,2551,1588,1390,914,2012,289,1215,830,614,2403,1156,1916,2692,2668,1314,1112,2445,1666,2497,1754,2091,487,1802,2575,2144,2247,2080,536,2233,1541,1180,2713,612,946,1699,655,1401,2941,516,618,1220,1021,1871,1597,2278,2919,763,2427,743,246,2129,2653,536,880,2252,2882,2791,2109,1102,2231,1987,2091,1277,2472,2012,1701,746,905,1802,335,2004,2482,2264,2470,2241,799,489,2122,402,1590,2888,312,602,754,2061,280,2184,1073,2990,120,2490,1906,1078,2849,1428,458,2247,891,1203,2742,673,1807,68,1716,2325,216,1122,1221,2539,786,2926,804,2900,2724,1345,1864,2746,491,1012,998,1773,2358,1867,150,979,2643,792,1986,2968,2158,2955,455,280,1380,622,2074,2793,1082,810,1301,298,467,662,2556,1357,623,33,2526,1108,2477,2757,2890,1393,342,1670,2453,2729,2582,1731,2265,635,124,1514,1864,2287,2188,2659,852,2988,1576,2898,821,2925,2691,2702,2313,1387,635,2045,279,1028,238,1870,112,2801,226,539,2909,1864,119,1795,2175,1573,2721,1677,510,2738,2842,432,1141,966,2363,3,194,830,1778,2640,761,2039,2050,1611,2569,427,122,1850,1839,1200,2925,2263,2498,137,306,2679,2400,736,1172,2230,2914,55,1223,1088,2413,1770,2486,1316,542,2942,1052,2506,47,2428,960,1478,2793,12,1469,1983,2806,1588,2159,1250,421,710,2671,890,2182,681,378,700,1298,1700,2803,1417,1142,2912,2021,342,1341,2070,1752,1015,2193,1394,2081,1021,2488,1709,2471,464,2367,2457,114,1372,1283,1823,2686,141,2719,2855,960,971,2306,2046,1669,2128,548,2237,1719,2188,2317,1572,2827,2842,1275,2778,1526,340,1667,2898,862,2224,815,397,695,2914,1832,2471,1781,1828,1284,155,23,2103,1857,1786,1029,103,1186,1448,737,1249,696,1043,1974,2653,673,118,2063,1628,2913,2536,2246,2671,583,2457,2754,126,811,2339,51,2864,927,457,2543,1332,1137,235,2119,173,800,2378,58,1802,2720,2874,2290,2624,2935,1050,2629,2024,1438,1738,1253,2298,785,1917,1075,2627,83,86,936,2549,882,1158,13,763,892,1975,1057,701,574,2360,10,2951,942,2463,293,681,2010,2727,1022,1414,1826,2570,2464,2578,2400,2510,1844,2230,412,938,2288,1607,1818,526,2097,2664,2035,1753,103,772,2325,286,1896,2779,1352,621,1215,1631,2864,1586,84,572,112,2927,2925,2462,1079,457,2696,1922,569,170,590,2625,2282,1723,595,218,2999,2335,2403,1320,2144,2687,331,1004,1992,317,394,824,2963,936,1527,4,966,882,1747,496,624,2009,590,1980,1446,208,1508,2671,1960,256,536,2061,2615,1768,91,1439,1264,618,1462,1021,912,713,788,1603,154,527,210,2052,1721,790,775,2188,957,102,718,2157,2214,1473,2635,322,2041,2332,2208,2239,2706,2610,711,1748,67,2933,2509,334,2917,1449,2234,1774,668,573,599,298,1256,2457,2227,2884,1014,1628,1412,1548,1907,1696,983,1139,743,597,183,897,504,96,524,857,1181,47,823,1372,2948,1445,2561,2216,1763,2599,1123,2582,754,242,259,932,1021,2785,1617,465,2878,2831,1770,1358,492,2542,850,919,1383,1239,1116,2151,2636,2677,2647,2271,2241,2258,2411,2030,1864,1954,2874,768,2130,182,1137,2347,941,1021,663,1545,2233,1602,962,2283,1056,1616,2583,2695,2879,45,2445,2384,562,1269,2344,876,1612,1688,1015,2639,125,2871,900,1742,2675,1158,2180,1075,1593,1768,1616,582,1809,66,1557,728,1525,945,752,2404,589,371,2351,1211,1350,2317,1026,771,1615,2192,376,1183,16,2407,1602,172,2990,1424,1546,29,2500,1461,2481,1353,2983,1425,2602,2177,562,2583,2660,1999,2859,830,2912,1438,2721,2946,2509,469,2651,2007,131,1850,1862,575,1886,783,1247,2657,2964,2622,304,275,2534,2494,167,261,1349,1903,932,935,2009,319,2095,2054,951,320,1219,2223,867,923,1538,133,1469,210,133,503,1584,2581,2,735,342,72,2619,1657,1181,1349,265,2750,195,1083,1610,590,2075,1632,2762,379,2163,2818,46,141,1405,305,427,1390,1834,337,1057,386,809,373,1425,2960,909,28,2030,1198,2862,1883,960,1366,2445,2152,783,924,957,2820,21,2481,374,1801,2928,1045,1394,295,2970,1305,1316,1128,1212,1663,2228,2991,1140,1422,1696,1690,2344,420,1124,1185,2469,1681,1379,687,1804,2550,1391,2544,2448,586,2925,1564,2150,170,1215,849,2957,2160,1700,1776,2608,2815,1711,2068,1751,1455,818,44,1321,75,1590,2828,2644,1352,2645,2970,102,1004,242,1525,901,458,765,2864,1356,2379,1384,532,1733,1573,2118,2150,1651,2994,2379,2594,2638,2226,116,551,1957,2326,1770,362,1629,1054,2275,1458,1323,354,602,1965,49,1135,1201,1958,709,1057,475,1387,1112,1985,1490,901,1795,478,456,2586,1442,1176,2535,1894,1875,1143,2450,2412,1042,1777,2577,1858,1462,2806,2835,87,1235,2910,10,1390,936,1739,105,2780,1195,786,2988,498,2650,2442,2062,2750,730,2285,217,926,104,1825,1157,2598,1341,2562,2901,2867,1058,1832,2637,1317,2731,608,2453,1026,1788,1071,820,1022,2841,2740,2645,2176,2974,247,1507,1155,649,645,1886,1466,1509,1687,2172,1454,148,2175,811,5,2195,1310,746,649,2023,2649,637,2352,1906,2152,1956,1438,2641,2677,1872,780,2183,14,145,1736,2818,2410,286,1632,1487,1144,2271,2951,305,2110,1135,2671,2011,651,2386,2234,1009,2590,2177,2925,2840,1230,2598,1677,2,201,416,2415,547,2618,2977,919,1298,1442,218,420,1442,1997,1481,2556,1036,1226,2228,1161,1662,2705,478,1502,2716,722,2228,2939,1295,402,1117,1287,413,2609,2246,2111,2074,2301,2425,1841,2283,2367,48,2256,2309,2855,53,59,158,2842,214,88,110,1107,960,2708,2446,2701,755,2081,187,1900,405,184,1834,596,1539,2198,1765,2362,2663,2601,2616,1634,1727,2494,436,1358,534,2206,2625,1687,619,2053,2296,457,1654,763,1623,1959,1302,1916,135,1158,870,2210,2256,209,2791,1120,1758,359,2715,1343,1378,2388,2289,1174,2480,872,1470,850,838,1014,1089,629,2302,2057,1021,2292,1303,1461,2328,2473,1528,1741,2879,1390,2845,342,100,928,975,1893,2458,1141,1443,1793,2703,1157,2351,756,1290,1224,2460,1572,2061,1818,155,722,1719,2916,1762,359,2788,759,682,1851,1329,2978,2478,2399,2551,2636,2418,1491,2765,2641,1070,2270,2997,30,2176,939,342,2031,36,2672,206,2549,1205,1292,1112,2657,1079,1710,731,1032,0,277,675,2062,1137,1654,2698,1346,2333,1893,250,364,1444,2594,2790,871,79,2836,1334,14,1363,340,687,1948,1192,2530,2830,2257,2892,2889,71,2135,2560,2627,835,1157,719,1426,1769,1596,847,779,2799,329,2844,387,2782,2690,2603,1697,914,2024,2587,954,205,393,490,415,2353,1134,2781,390,189,1714,2010,773,2576,2275,2628,269,147,342,1501,2255,2598,2740,243,2811,2015,2160,2566,2344,2987,2972,286,257,1267,378,1258,2212,831,536,2214,1392,699,707,2958,2138,1322,1817,1262,768,2116,519,169,2694,1405,2005,2027,32,594,515,634,1802,79,2032,1505,630,665,1774,1417,236,1502,2446,2607,2370,679,75,2186,2514,1224,1766,1925,933,286,2000,960,1327,1000,1851,1712,750,1941,2033,2717,1060,2954,2869,328,926,1295,671,2229,1542,891,636,1603,2199,578,378,53,2027,1254,157,318,2848,2704,386,595,282,1253,2739,2356,2047,1516,2943,1447,1192,1732,299,2729,1309,574,845,392,1993,1504,2940,272,2108,1733,1357,2027,2201,1852,1039,2980,740,219,1620,1627,93,2091,2587,1140,73,266,2682,2010,994,2990,667,30,1035,425,261,2156,2200,1355,2989,2501,2028,1174,206,2722,850,916,2799,762,2079,1242,1136,2735,2907,359,795,2358,737,1354,163,2254,356,1692,2544,779,1051,2892,515,656,474,1851,2799,674,1975,2503,2501,783,1777,388,1450,2786,2231,2056,237,1377,1705,2878,222,1039,1980,2772,536,2057,504,164,1825,1689,2465,1528,1153,828,2992,1417,624,865,1616,2567,2336,568,2541,1169,2143,2140,2595,1569,599,630,778,1199,415,1740,2067,2215,18,2762,2434,2870,2471,1874,657,1359,2030,459,78,1340,415,2286,1174,2955,34,841,1506,1079,143,614,1352,2775,2650,865,2122,1837,1013,2391,2935,1607,724,2072,703,2590,1919,1192,1973,809,585,978,2287,810,126,1144,1928,138,1628,1673,516,2307,444,509,1374,2366,1737,2040,2493,722,1831,591,1185,2040,841,293,2316,1933,1574,2801,2231,492,925,2168,88,427,1296,2301,1903,414,521,1496,2066,1207,1144,1118,823,1225,2398,1928,986,1628,321,301,2440,2041,351,890,1298,1009,767,2572,365,498,1065,2351,484,1012,2768,1032,2186,2952,787,1103,2082,2089,910,45,129,2423,1566,1626,1106,1186,1598,114,658,170,1614,2496,2668,2961,70,1180,1234,2044,2149,106,703,2153,2712,2243,1127,337,1845,731,2205,1954,12,174,1731,1330,683,2321,391,937,105,1234,940,402,1990,330,1019,1482,1442,2018,2595,2482,402,1289,2407,2560,357,931,2153,2528,1816,2538,621,575,1411,2756,2820,1394,979,1212,733,2453,2306,2000,1204,793,1037,2826,1472,2378,881,1253,2379,1321,2478,2139,2800,2090,2030,2716,2140,2096,1951,2884,1209,283,307,2167,2165,2160,487,2798,545,1360,2706,367,924,2778,1,729,2877,2246,2650,2858,1017,1934,130,1616,1944,538,338,541,1341,1325,877,330,2093,2102,370,2260,1369,2186,1010,249,1236,1646,954,2125,2346,1257,2315,2411,50,569,1467,633,755,2539,61,2862,716,1114,2479,1876,768,903,2167,1475,332,685,232,2244,2187,836,307,601,362,2517,389,2697,2945,1264,1291,376,782,2573,586,24,2499,2191,2799,1398,1783,513,2302,2733,2947,270,2925,1412,600,2900,1678,1132,362,1880,2669,1660,976,1593,1822,643,2304,2829,860,2649,1188,8,1571,1007,2451,1192,1064,1655,2181,1660,1908,1280,1830,2027,2691,159,2064,10,2318,731,494,1502,2767,1671,1328,1270,1335,485,1541,2715,595,2917,2946,2452,1388,929,2027,164,2554,5,1984,702,1434,2524,1331,1632,2333,1465,1354,887,1661,2993,1168,2603,1585,1064,2083,1703,98,1912,1522,2580,393,1644,231,1706,240,2317,639,1652,606,2280,2562,371,1335,353,1364,411,633,2598,234,2755,2091,1385,2265,1238,1721,2037,2921,235,2560,2650,187,526,1264,1831,1586,1921,2972,908,1061,1238,2297,2654,1977,2083,1313,424,2644,2439,369,867,2021,2126,1535,2866,2106,409,1820,2670,2972,2446,748,1587,876,2089,982,2991,2672,956,550,1796,1372,2414,1487,1013,1782,2128,2555,1834,1373,2953}

    2349

    1166

    Returns: 729679407

  74. {902,2222,2957,957,664,1732,1005,2639,2372,2273,1379,1542,2522,503,329,2623,2768,2381,787,2912,267,881,2859,1560,2258,1474,138,2729,609,1521,2105,1537,1790,95,954,2365,1446,2629,405,1262,1783,545,226,2183,2911,732,455,1547,2830,2575,579,1244,2702,2716,125,1355,898,1991,464,1592,1002,1398,2235,1632,1882,2730,2717,2137,1934,1064,1476,2034,202,522,173,468,233,1035,1785,1321,715,839,16,1421,34,2115,919,1356,197,242,787,209,1855,1666,32,2771,119,2206,1661,44,1229,1228,639,795,60,1204,2302,1773,252,74,667,566,1688,1302,2682,73,739,1294,10,2348,2486,1818,794,1476,944,424,1146,15,2281,2546,2602,2363,2729,2870,534,613,1538,1340,1164,1334,2075,550,481,98,2959,176,1705,487,858,1196,2523,866,850,493,300,1377,50,700,2574,927,2302,2022,2048,180,2799,888,1442,1107,1684,1749,2922,2397,2800,313,1554,1080,1199,2521,368,831,1296,221,2443,694,1621,2465,444,2676,2602,334,2931,2866,129,444,2207,1295,1969,1092,2003,2654,1182,604,1057,300,2671,474,450,822,1921,1319,717,2311,1660,1462,1908,119,2222,1584,1658,310,1531,633,838,1826,1199,2987,76,2890,1094,2353,315,221,2666,911,1205,2494,2512,1966,996,655,1139,120,384,2685,1876,1970,1583,2023,366,1517,2381,348,2626,2808,2177,2341,174,1757,1949,238,1403,2970,1012,1661,1656,2174,1718,352,173,2470,1051,953,2090,1539,436,516,658,782,1574,951,2477,15,2439,2216,1575,518,1936,192,2377,821,1704,115,1953,1395,271,941,1510,484,8,2340,2095,2207,279,929,2483,2652,2306,1011,154,482,133,1239,1845,2444,1257,903,1912,1992,403,1417,2809,1981,2313,1390,791,2453,1442,1693,2121,868,1671,1031,516,1429,86,1226,1163,56,230,401,1802,2767,125,2590,2974,736,1020,678,1169,1475,83,2393,2806,2553,848,1342,2071,2974,2974,700,1138,1944,1167,2917,400,369,1920,2172,2912,1927,1414,2461,816,2691,1673,2598,135,2917,1283,2404,417,2214,1877,1361,2853,2811,843,1481,327,2844,592,2248,685,1479,36,2756,1077,575,1333,1453,2241,1053,865,1269,2960,1347,2568,1237,212,41,2061,100,1100,5,1153,529,1329,2554,1339,2390,1582,2796,1504,1866,816,27,1761,980,1196,1800,2422,2920,2049,1603,1377,526,215,2898,1249,609,2766,1107,167,2355,2167,1599,1509,108,2242,2529,2175,1589,1455,2134,1409,1992,2254,791,375,1251,879,1015,1975,1944,168,2210,1866,8,1013,0,2264,2584,2280,1314,753,2302,940,1946,333,11,2163,1115,1562,2211,1119,2507,600,1744,985,2488,1668,710,642,2699,1057,303,1866,2177,373,2517,2265,2300,2815,765,2920,141,2542,235,2436,361,759,2368,2326,1530,1804,454,617,66,1335,382,93,2879,1405,1029,815,2370,1511,1038,1592,404,636,252,1268,916,2380,422,1613,1638,2138,2336,1859,1827,1625,595,2349,1788,2130,1744,1369,442,2377,2518,739,2354,1883,2439,578,2712,900,1669,2672,1656,2586,1429,2012,1613,1224,2637,2223,2590,2129,1864,1503,683,582,2788,2741,1682,2896,149,1950,483,247,452,1136,186,2685,2752,1323,881,1136,83,90,2369,2981,1183,2965,792,2019,269,344,1801,1220,354,2829,6,2445,682,119,858,376,2058,1338,2715,1841,246,1862,495,864,632,225,859,2974,114,188,1464,2825,401,79,2588,730,2888,21,2320,2441,868,1456,112,210,1767,2918,654,2036,2665,193,1383,1123,448,1782,1346,611,613,1709,572,2408,1788,236,358,1656,192,2318,2921,711,435,620,1478,2367,2909,589,631,1640,1402,2271,309,1672,2733,1788,324,401,321,0,1773,1477,2526,765,523,1635,851,1096,2097,618,1218,2409,1058,2237,1648,2631,585,1702,2286,2689,1695,2129,2322,709,583,841,1772,1000,456,622,2478,1929,2106,851,596,1448,253,1969,1836,961,2756,2655,2326,1616,1047,805,1955,1404,595,1155,2219,1119,1921,2614,1097,860,1341,2125,1865,1456,2848,1501,914,2257,292,2048,2667,1065,764,2902,1490,2969,2351,2103,417,507,2974,1251,2723,747,2048,1564,2232,333,130,748,1834,1822,156,2493,1206,2993,1745,382,2293,1171,9,2891,18,1455,2377,2376,2754,937,1157,151,1110,1787,17,735,2202,2685,1255,881,2888,2943,659,2606,1202,1337,2865,2486,2560,308,2668,1317,260,2055,2431,465,1637,411,855,2712,1352,439,190,2793,1717,534,140,14,498,7,1414,763,1924,1730,1142,502,308,247,1947,1593,2699,586,352,1900,2986,782,1944,2619,1483,1719,464,761,409,516,693,2279,1939,2110,1006,647,1903,297,409,165,1379,2648,2737,661,2890,8,2653,1209,369,2726,64,1965,632,2365,801,2051,1705,2921,2342,54,1028,1832,1211,896,908,2753,1233,2225,203,746,1076,787,451,1527,561,2013,384,2534,148,2364,605,608,2744,892,1131,1488,365,2917,253,2819,2422,2406,2004,2017,1181,609,2371,718,2771,413,1733,1042,2252,1692,1849,2980,661,2456,1096,994,2167,1448,1081,1100,1063,871,2800,1339,2338,1374,2714,2595,332,1692,2535,2501,437,1928,2421,1791,1244,1212,2975,2838,20,436,1380,323,1642,798,1644,364,2694,1483,2536,621,2664,2047,3,367,2504,1054,2545,2887,1565,2161,2695,1784,2014,2121,325,2504,714,459,2759,1353,2928,1627,787,1825,2586,2327,14,1244,414,1111,1158,1440,1338,2624,50,547,1789,330,1038,1046,569,272,1614,803,262,116,2222,677,1739,599,1636,1032,1142,638,2981,1713,2509,1219,2058,2058,2613,203,2523,1378,2293,1008,2037,1448,1420,1818,1359,125,2833,109,250,2002,330,788,2585,669,94,339,1827,2634,2332,2961,1423,2476,1080,947,1100,139,857,1332,1675,532,1826,649,1782,442,1740,1247,1880,2209,1252,782,625,2377,263,558,2198,362,256,1471,1264,2994,2679,2785,1711,2862,2344,2129,2941,2826,2811,2045,882,1431,1114,2142,1612,1381,1299,1019,1871,2372,2455,1921,2176,1630,976,2130,13,2360,2570,594,615,2287,133,2794,2465,1184,1685,2475,2077,2644,657,1075,606,995,2098,2864,275,759,2294,1346,472,421,1161,2186,734,274,1310,996,2473,1138,354,2120,2945,2594,1441,781,598,524,661,1184,1336,2196,2969,2812,418,807,2433,302,723,416,1588,2587,1286,1592,2499,2047,2473,2251,2617,1279,1699,282,694,1534,1492,1375,2073,2258,2776,268,1992,1943,405,2781,2663,945,855,2996,1543,1063,1531,1431,1665,2411,2819,15,2633,2687,245,2480,497,119,423,2452,1444,66,2015,1337,2977,2426,2118,281,320,1034,2516,824,1674,2984,2805,1368,1900,483,2129,588,1233,787,2324,834,2278,1442,2226,2362,1553,2783,2061,289,1647,997,1345,368,2028,2152,1149,1405,278,1366,1930,2783,647,2098,788,1403,2975,1018,2730,1482,2738,1518,534,922,1688,1271,1300,295,599,1521,2559,2220,2481,569,2282,396,1388,2210,2233,2173,2853,1813,1999,2320,1824,1088,356,486,2746,461,2961,1494,2048,121,2785,1312,313,456,2526,913,673,392,2784,580,354,1244,371,343,1808,1950,1717,167,1554,380,1212,2704,1397,2951,1238,687,1231,530,2194,317,1536,2126,2911,2851,823,2968,2649,2562,1819,1901,99,2560,66,51,1760,2841,388,1078,2524,2165,1110,1775,2375,2591,2011,2044,1152,503,2159,1515,2303,2429,1055,2166,1218,980,1394,910,752,2250,2595,1007,2527,394,1780,1783,2143,732,330,1107,1398,2427,1483,1541,2616,2225,2774,1909,402,2945,1738,2465,2907,2075,1562,435,1132,374,1201,1375,626,661,1619,1364,1686,2116,1632,1487,853,912,1756,2180,452,2548,496,1024,2559,975,2003,2935,2590,1014,2715,778,1688,2916,1642,1449,584,2177,1084,784,229,518,922,923,2535,776,965,991,1056,246,1789,2919,420,2590,2542,510,35,1068,674,2255,426,503,2728,43,2030,2838,1214,365,2365,2997,103,194,2672,2688,2561,2969,2756,1661,2761,1672,18,1144,1479,1633,336,2006,1914,192,783,417,886,158,1709,1363,175,342,1113,1815,1096,1213,1261,571,2490,508,2246,1436,1275,2828,1042,2111,442,857,2774,701,2425,2916,160,404,1161,210,2866,2757,2365,79,2653,2672,1647,1427,406,636,1782,251,475,393,2591,2301,587,2393,1342,2655,1764,2208,2722,1615,2401,990,968,238,510,78,2145,2944,1834,2955,175,2893,2953,1003,445,1470,1957,2814,22,2041,1057,1826,1354,1561,1267,1153,885,1475,2848,1396,2895,1592,52,299,2565,2176,1890,488,442,2837,492,2998,1209,872,2834,2310,1230,481,2140,63,1533,2582,855,531,1321,1021,55,2414,2692,1836,2611,1489,2998,902,2289,14,70,584,417,2297,829,1827,1585,2264,2182,1277,1901,813,1385,2578,1618,789,1580,365,306,2586,58,1542,2189,1546,126,1311,2763,621,2369,2175,1595,243,2678,1827,2319,2377,1888,1284,440,1011,584,1611,1312,2810,614,1089,373,412,470,67,2412,1739,1712,2228,2684,1689,383,1578,1271,2034,2956,2460,1157,714,1246,2247,2977,1646,1716,2261,797,1366,1165,1439,1579,2705,1589,2270,1200,930,1225,2820,1757,150,1703,1040,2980,655,247,2850,4,2376,2096,84,420,307,924,2763,2171,2599,1036,1105,1362,1375,2715,1164,1135,40,2717,2487,1201,1874,2466,5,2368,1465,1707,1904,352,25,1852,902,2727,198,118,2901,878,442,2986,529,1340,1950,2902,490,899,2590,625,1623,2549,532,198,2067,182,787,2089,2458,1289,2582,1507,2158,2435,2117,1303,2178,1076,289,1885,1749,2884,1849,1902,363,2545,679,2282,2983,2175,47,2061,1733,2850,2334,2566,1732,751,971,276,2798,862,1245,2812,2819,181,210,745,46,1549,1443,1458,2923,1919,2910,2659,2116,2766,493,999,272,1118,640,309,1888,2042,277,17,2698,162,1383,2873,2511,1788,815,1074,1217,1286,1132,1219,641,2499,2606,1619,2125,38,179,352,117,1443,28,2577,2929,1532,943,68,2450,1463,986,1182,1539,2003,1527,1662,2188,2308,311,796,2273,2662,2508,2332,2359,2596,1281,1997,81,313,1703,393,2841,2200,960,2396,2641,1712,1252,1226,1184,2198,2100,995,1261,2415,444,2130,1473,573,1933,1469,1575,1313,1374,964,1536,1499,1178,1673,257,102,1182,935,1741,113,2962,1417,1875,924,2551,660,561,1017,2466,227,537,65,1690,998,2751,645,1801,2002,1145,2234,1429,1634,431,1503,872,851,147,194,1690,2553,883,246,1383,70,2980,852,2094,337,1655,2263,1161,2008,1087,1821,317,1475,1779,2986,1916,890,2059,1524,355,437,2227,2316,397,2804,2881,960,2595,725,548,728,169,1286,2170,1648,1666,905,2924,1030,207,1597,434,946,163,2312,2262,1173,1046,105,318,2451,2661,520,1183,1670,2139,1712,401,2756,2174,1994,1398,2095,1212,1923,1154,1815,2163,758,1194,2350,1447,1102,175,2877,1493,2779,963,2778,0,466,427,2833,1240,1230,1357,270,45,2065,2331,1430,1536,701,2321,2974,148,1870,957,1620,1900,664,2760,1066,1152,1225,209,1770,1289,845,1898,1678,2130,2560,806,2540,365,205,170,653,2253,1070,1287,913,1022,2801,2508,2999,1350,110,2822,422,913,2740,1922,1842,2979,834,2409,595,1596,2148,1655,147,2054,837,2558,1646,500,1531,1319,1306,1397,1206,1366,2163,2706,1383,2304,1958,1043,2445,147,1932,1782,2686,2611,2862,2800,2126,307,2787,2274,819,830,2230,1250,2029,2047,959,1449,1397,1307,1086,1133,1995,1828,1396,662,1958,1820,627,1971,1738,1007,1669,863,94,2803,1004,586,1129,1635,1790,2839,1653,1296,775,2301,829,2888,1976,2615,284,568,2654,2129,111,2838,2822,846,2257,1019,2491,2792,621,1243,2901,2482,2787,2517,106,232,2908,52,1151,416,2207,2997,914,1532,46,786,1232,2026,2556,2065,2292,1529,1532,1562,692,2425,252,1215,549,2901,1896,2132,2473,2295,1698,466,331,2491,246,1714,1041,1939,2994,107,2995,1212,704,2779,956,640,281,917,1543,1823,1686,198,2975,136,2457,396,1081,2574,1442,1881,958,1078,1673,1907,2913,2836,560,480,183,43,1952,2009,496,2852,897,1358,2766,789,196,1509,284,557,864,1640,709,2866,1959,1520,1849,1319,2123,692,2830,567,1091,1974,1548,2835,2227,2355,378,2770,2238,2450,2492,1782,1530,283,499,448,1001,1555,407,1131,202,686,152,593,72,1868,902,967,1037,1104,456,1611,1594,2007,2784,2849,326,31,2192,769,456,1618,153,1645,806,1353,1077,42,2582,2210,2127,2582,2520,2234,622,2986,479,2043,503,2835,2387,1542,1312,574,1619,1819,2921,1540,2184,1473,913,1348,1602,2936,632,993,1321,1113,615,2672,2563,2405,937,2939,2657,2132,1278,316,878,2801,1360,2635,1498,2076,732,902,908,2197,1838,993,266,766,2691,2927,2391,613,1049,175,2483,2201,1185,61,2941,1973,732,2167,34,1699,2681,1104,868,1925,1743,1724,2669,404,2566,771,740,247,662,2703,1107,758,2694,1085,503,1887,1591,2937,774,2102,1117,447,968,1171,150,518,79,607,2117,2532,462,2938,2531,843,2853,2263,562,2590,2415,903,2647,184,893,1749,494,909,1207,1312,1339,2913,776,1096,1219,1554,2018,1961,760,665,2931,183,2618,1228,95,1119,950,1495,2721,1836,503,2649,497,417,1699,2657,2957,1810,2058,1026,640,340,1901,506,1873,1782,2081,338,528,545,520,1842,2633,1570,1691,1608,1500,2439,1499,2819,503,2831,1749,1138,1014,1999,1349,2813,2878,2212,452,664,1478,2403,613,1356,528,1349,1975,2024,1820,2220,1206,1656,680,779,198,1907,1309,1804,2895,989,628,1810,166,1573,497,657,1059,2853,504,452,1512,220,849,2222,1234,204,1594,2867,1713,529,1351,1061,1072,2025,1227,749,1920,2392,1188,1340,1650,176,863,23,2465,1765,1006,1581,1769,2085,560,1814,1803,657,1562,2746,1960,703,1542,1845,2771,979,1726,1732,1982,938,331,272,2244,1273,1117,1744,1551,1520,2345,1790,1384,2986,2980,214,2296,1341,1353,2578,2544,428,2940,1124,2997,1594,1211,2584,2952,2736,2893,676,36,529,2951,91,399,2556,2997,2639,2864,1613,2983,363,2078,717,211,1558,642,209,2332,2751,1014,1691,2783,2055,862,2323,1592,200,546,1336,128,430,2245,308,2998,2713,739,574,2227,2155,955,530,2240,1313,428,2141,879,418,1998,2604,2167,851,1400,1617,510,183,2691,95,1597,885,1808,1987,166,2035,1569,956,2235,1757,681,1053,2327,1630,2302,2673,2349,2377,947,2469,2346,432,866,2582,1739,635,321,739,417,2252,452,2929,2619,1020,1211,999,120,1590,2423,716,1889,901,2113,2985,2916,921,383,2027,496,1350,77,2855,483,2845,2635,301,2851,1497,1794,435,1697,35,1096,780,2517,2516,2538,588,527,2428,2133,435,1253,620,2853,2408,2414,1571,2562,924,2847,1806,2257,1098,2823,2930,1866,2822,2131,1648,2098,2269,1763,454,1993,1186,347,1207,201,1364,1312,2995,2260,2081,2965,2623,1752,1973,1950,266,2479,179,2515,843,1714,2183,1170,2052,1164,672,2819,2181,2753,197,1863,2234,2772,2320,1220,2474,529,2954,1855,581,725,2675,1198,67,2121,943,2629,2048,1470,2564,1305,2256,902,2724,2906,303,2433,2370,652,2172,1476,2489,1125,2230,891,605,2066,931,1567,2199,1010,2574,610,2510,1394,758,1884,2859,2514,1043,1656,1613,2489,981,1193,602,2764,2422,2370,161,739,765,1702,2886,665,1904,1377,101,1120,1475,1103,1286,2909,706,2777,2090,1624,2889,868,908,551,1683,1085,1226,2455,638,2119,2990,2917,2826,1866,2819,561,334,1962,711,352,2966,2738,2593,675,2486,1661,187,175,2186,206,2600,1656,1261,1857,2584,1159,1626,167,956,1328,904,1695,1276,1356,1029,78,1993,782,499,101,2683,1281,793,908,1661,1385,2234,1397,1030,1564,1378,2758,835,2345,1214,2173,739,1096,791,700,297,2666,2153,124,879,2185,1412,2774,1189,27,1840,149,2818,637,389,727,142,620,127,1608,2377,580,2783,489,943,1745,2655,2080,2278,2794,913,1367,2812,1121,1700,1603,260,2576,187,561,2366,362,1754,1533,1739,2299,540,162,2517,1302,2358,1029,2782,959,2941,2598,1713,640,999,2086,667,699,685,516,50,1861,1249,847,591,1331,1155,1153,2481,2618,27,1750,172,1829,379,2022,1219,671,2311,2000,2367,1973,2473,666,847,249,1895}

    {2252,2335,1345,2980,2767,644,2389,673,523,650,385,2967,2840,739,693,2947,529,1948,1019,889,1226,2251,377,583,2958,1295,2248,2467,2264,726,1944,1964,933,1911,2675,877,2627,840,2483,1562,1283,2392,2844,1812,1737,966,2986,1847,1858,1362,773,2779,995,1182,2903,128,435,973,624,26,1167,2382,2146,2883,2308,2594,148,2244,2512,413,1138,1766,2401,1144,161,2445,1890,2418,1920,1927,843,1402,481,2789,1399,2965,1752,2944,420,1805,838,910,931,2422,1366,1251,1835,405,1029,451,606,1648,2741,2862,141,372,971,1372,2104,2332,2943,1083,299,2893,1860,252,198,921,1996,2485,265,880,778,1780,1574,405,417,1007,1794,1149,54,1782,2700,359,1174,149,2331,1610,2921,1315,291,1272,1934,1951,2972,758,59,473,1148,1141,2236,1866,352,1122,20,2068,958,2980,1112,179,2195,895,286,2006,2381,980,2508,2835,142,2786,522,1325,2627,1848,1861,2273,2267,1727,1197,566,2779,685,2064,2067,1752,569,2980,1314,2995,650,2959,2365,1190,463,2093,808,2272,2631,2552,1104,1041,1100,977,1458,202,1156,153,428,420,1687,663,2417,1968,1914,1613,481,2053,2634,269,1050,1160,2841,2187,704,1323,2125,1246,1257,94,2423,2389,272,525,887,149,1344,6,715,1866,1728,2588,2422,759,2693,2951,329,1429,2642,84,2990,591,1282,842,2567,1208,1084,2853,1356,639,2979,1006,2928,212,722,2825,954,901,2585,1188,959,1902,914,2919,741,1879,2591,2718,2383,313,1029,1168,2244,428,460,632,1300,839,1768,429,1104,690,1898,1292,305,2432,1156,770,942,281,394,2129,1733,408,1636,33,321,2816,418,873,1491,330,2347,1281,2892,1201,1847,351,2442,376,2357,851,1126,2379,861,2116,110,2939,1018,2549,130,1964,82,983,1891,586,2149,2758,1575,1389,260,2516,519,2457,2091,2028,1143,1411,203,1275,2473,1044,1472,2124,2249,212,698,535,621,2496,2471,2502,1438,1721,244,525,1104,29,630,1251,688,2287,1827,1376,948,1295,154,2028,2663,2211,267,923,137,2819,1695,66,1132,1266,1837,2683,2518,383,1306,1641,2942,2755,587,2337,1921,1277,2645,293,1223,2922,1249,897,2339,1920,1827,627,453,1693,629,1339,202,183,452,119,1459,1788,2732,1638,2152,2735,1670,1519,2268,685,2221,2190,2745,181,444,1737,750,1019,285,724,1749,1654,2795,695,1540,47,1124,1120,2808,1567,662,803,836,1147,1678,2164,2683,1077,1302,1484,941,1874,1444,704,313,1340,2014,1976,542,472,530,2344,538,2894,1860,1019,1947,1807,2950,2766,1905,509,555,802,2865,855,2112,379,1177,2685,1267,27,1052,834,302,899,2838,956,931,289,570,105,1631,345,1201,1611,1576,471,2666,2476,1132,208,243,1140,762,353,2660,2605,497,1196,1148,2975,350,1938,1719,2232,1260,2932,2157,610,458,1055,2697,59,1029,2438,159,447,725,1069,1843,2869,341,2961,1312,1755,708,2265,2361,1413,1291,2407,1553,1864,1030,2386,1694,2458,1312,2464,330,2388,501,553,1449,1535,1461,1797,2764,1531,586,1524,2381,1425,4,2333,2208,1792,2929,1779,725,58,1084,1914,223,626,1312,1978,416,660,1726,918,1643,2670,1502,2781,1101,2569,576,2782,289,1115,1714,617,685,867,2238,2736,185,697,699,1866,2317,2299,910,2462,2864,2850,179,561,743,754,428,1631,1996,2295,803,703,664,2658,1855,2818,2359,2275,1831,2212,1509,719,164,1986,335,2309,931,1861,1833,828,199,1708,955,693,2427,2594,1486,650,2062,1477,704,37,2819,2945,231,2441,2084,2919,96,1707,2444,29,1296,696,418,1780,1180,1184,1185,2755,814,38,2488,2674,914,503,356,228,850,864,1725,1960,336,2398,1683,1376,1058,1483,729,19,267,916,1753,2259,2842,2234,2191,1810,2344,2154,2220,1331,261,2921,1885,1079,1475,2607,544,1072,1807,1977,2057,809,370,215,1964,789,1063,2402,864,1365,359,560,2679,2595,2822,757,2168,619,2840,564,281,269,171,1720,924,49,2235,2764,665,67,1196,2866,2735,868,1886,874,2116,1996,1520,984,1804,331,1411,2228,575,1449,2387,1899,1746,1150,1637,1149,415,2872,50,1164,2889,2158,206,1312,2046,1379,2454,2309,1607,1115,1795,195,868,97,2000,2314,167,889,2155,87,656,1007,2555,1638,2028,1286,913,761,2083,2142,1010,1298,1648,2298,198,1366,2719,208,2110,2983,1508,271,2964,2065,1663,2370,504,2173,1096,209,2992,1625,2996,889,862,747,17,2952,1191,1244,212,925,1421,1103,1099,30,151,857,2608,206,2147,2822,1343,2251,2565,754,111,868,1458,1312,206,442,1598,410,943,1339,2597,419,2330,2537,1805,2537,511,2354,670,2177,1179,1277,28,838,1403,1236,2838,1739,2102,1143,2594,1326,2130,920,2001,2770,1616,1656,2205,2490,2526,2717,1910,926,1817,533,2534,2998,2863,2108,1846,1577,2344,1215,2209,376,1975,2483,57,2998,2871,2175,435,2435,2584,2173,915,1742,2352,1846,1393,1934,255,375,733,1560,732,1375,280,1289,2071,1279,868,1109,1424,788,1331,2021,910,1571,867,441,33,868,1939,2467,2056,703,1606,49,1827,459,739,1321,2539,2769,2555,975,2023,2665,85,1058,2513,2313,2523,910,435,2347,299,2526,1357,443,2506,1993,1664,324,1683,412,218,512,1942,2691,672,2445,2219,1665,2197,2734,1261,747,2670,281,2818,275,2528,381,790,2182,644,2877,348,114,1025,2691,739,781,634,1166,1009,2556,1626,165,1301,268,2710,2659,643,969,2861,1062,2575,1856,1778,2266,1374,2054,2159,2498,1400,2562,2897,505,1990,207,1804,470,175,2980,2140,2028,2121,2361,1428,2524,1557,1556,12,1060,2373,2664,2151,9,1452,772,2257,861,495,1631,385,2261,1162,204,130,2028,1324,316,1526,1824,370,1063,924,1709,1343,2708,564,2802,329,1320,2761,294,495,2005,1782,2379,2252,889,1244,2991,76,759,689,1386,2821,1313,1398,2048,2128,612,787,1664,132,148,957,870,460,2113,1668,699,2996,2488,2832,2069,1845,2081,1983,1039,18,753,2580,1659,1089,1477,622,1042,1242,1351,2856,1465,978,95,2430,179,2786,2300,565,2638,704,852,2255,2492,1947,768,615,612,2172,2939,2901,1428,1107,1905,783,2273,2393,1669,2858,142,1433,1272,1771,1069,1275,1661,1874,616,1963,2877,651,298,1844,1448,2743,1587,405,2654,2564,11,1681,2258,672,2921,427,2556,2877,2473,1586,2342,1181,1327,982,1657,2003,2701,2689,1182,1601,1679,2297,2175,183,1528,11,2041,2536,673,1339,2426,2288,1999,2468,2150,80,169,646,1874,252,1201,521,433,2772,1080,2222,1652,2416,2047,290,827,2572,2000,2847,2615,2637,2177,657,516,890,2276,213,2552,1424,89,1406,1016,1258,2155,2344,2725,2827,1918,1254,1398,176,488,2167,2505,2854,1722,1622,177,2603,910,1489,2411,1225,2649,2747,1147,191,905,2715,691,2283,1134,1292,1426,220,133,779,2014,2401,1285,2234,993,1369,1572,2214,1206,1544,299,2032,1643,902,1877,175,626,2514,2102,2525,1784,2113,439,825,2455,1619,2315,905,1063,925,2306,2451,1467,2042,323,1853,2581,2499,136,522,644,2087,1291,823,176,179,621,2749,2239,1010,1926,1435,1697,154,1609,2729,1311,146,2721,916,2169,357,2594,1426,2530,2486,1577,983,1331,478,387,1537,1138,1608,2912,573,1809,1301,2853,800,2304,2348,2304,1187,1781,1460,505,690,221,777,2943,2765,1811,1382,322,946,2731,438,2238,2033,1183,2395,1055,1408,1760,2389,1279,2056,1374,926,339,2464,189,2914,637,2224,2526,2175,1839,813,1304,1906,2434,503,1958,2058,2464,1376,2912,2267,1583,2418,1906,1745,931,2488,522,960,988,1113,1464,294,1723,310,76,2114,810,1720,383,272,939,1849,2583,2791,481,2381,132,2865,564,1144,1014,1677,2517,76,262,239,2031,461,1753,185,2835,1743,2010,791,952,2696,2344,2143,2646,2260,1480,2589,2641,2557,1989,878,224,2650,2619,552,2705,1702,325,2016,673,2234,1876,76,1510,1475,2309,1935,863,1892,1598,2868,1457,2625,687,2838,1464,386,1787,1202,2646,0,311,1073,446,2579,823,764,2579,2467,2978,1020,2209,2592,483,2305,2257,273,1663,2041,2052,1796,1140,1657,1516,2998,2699,317,2564,1706,1370,2971,2796,1670,2677,2585,1660,1705,516,1318,1228,1422,1307,2215,2943,2027,2624,2998,1571,1221,1606,16,2057,1404,2789,1132,153,1849,401,1108,2621,1010,2435,128,856,2060,567,92,2762,2904,902,943,1437,2445,1322,2949,2833,1854,2289,1872,2035,1850,1915,2439,518,2579,2808,2229,1212,131,2193,603,2098,259,284,354,1095,174,1605,2326,1033,2379,491,317,2368,2433,685,2590,2857,1394,1698,2812,992,2465,1023,2012,2385,1782,352,851,1893,2729,676,1263,691,2835,1456,2819,1314,2877,1169,601,745,1038,1481,1280,357,606,1394,1699,2585,1782,724,1807,934,1967,2449,549,2390,1631,63,931,335,2711,87,61,1513,1290,128,577,2380,144,152,90,497,2751,2594,1833,529,1114,488,1795,1051,2200,1475,2422,2437,2122,894,167,937,461,1656,2684,1783,2690,167,721,702,2872,1952,2036,2810,469,1602,1127,444,661,2655,2602,1468,1192,845,2644,1466,2393,674,1840,85,2783,1701,2602,690,258,2044,1570,617,1914,1878,1515,785,1674,485,2707,2596,2643,17,2785,1979,2783,2356,157,412,1487,1869,1765,1392,183,1906,894,443,936,834,1248,478,1106,288,161,1912,1866,2622,2810,2169,2055,1440,2876,1393,1249,2413,799,521,595,2014,1721,756,2773,1320,1530,1497,1568,2544,613,1429,39,812,2378,115,1388,104,2586,249,182,2880,210,336,219,1996,2720,2921,1793,520,1763,496,1917,1147,2023,2875,1068,2571,1068,2641,234,1937,457,2832,68,692,818,1148,1991,122,1497,2290,1556,2999,1783,1940,1096,1451,1545,2067,563,1444,1592,648,907,484,962,1362,849,2126,2628,1734,1206,0,1626,928,1552,2999,369,503,1079,2748,529,858,1024,544,62,611,500,2906,2177,517,333,869,1676,2381,1160,16,2489,1063,1798,1458,851,2672,2304,2424,1218,1389,881,2829,1539,1196,1287,707,1249,2780,1274,106,1175,938,2063,134,2435,2636,2085,638,543,311,178,1347,1088,304,2803,1502,803,1988,2316,714,503,1852,2400,623,344,1371,412,307,1566,422,1161,2558,2076,712,2410,1901,1525,730,2820,1705,2797,605,1186,506,510,2138,1610,2263,2949,254,1649,2778,2482,1114,1498,713,2715,1293,439,1666,2742,2,2308,1757,2419,408,1321,2479,2401,1420,1667,1563,2705,719,2773,1067,720,657,1116,851,2311,554,2454,2183,94,2135,1786,2069,456,2945,252,2427,240,890,1595,1652,1338,1244,2680,281,788,293,147,1060,2243,2415,2065,1883,2631,1002,2943,2803,1985,272,1602,1795,2741,1708,85,787,591,1239,2909,1810,1751,449,358,331,2202,1642,376,2326,2983,2122,155,2072,2381,2565,826,2624,2649,2881,1216,2882,1347,773,1397,2989,305,2822,476,2255,1779,1981,2992,1172,377,1650,1337,731,2503,2039,981,2739,2718,1359,2173,2877,2467,1051,2234,167,1376,1671,2860,271,2072,1691,725,2517,2946,2853,1879,2536,275,2962,2323,2439,2162,2007,2500,878,650,2709,16,63,206,2802,2994,1776,1275,820,2328,1406,2632,1350,2675,1184,1648,1180,359,346,2446,1867,2510,2163,1339,767,2624,2590,2065,629,284,711,1637,114,1496,1485,64,48,1004,2433,806,1479,2488,2126,819,949,585,1090,1370,2392,1475,1577,738,2089,395,1748,876,1506,2974,664,143,2656,1336,1259,1824,1522,2948,145,2586,2612,2790,1605,2368,2040,174,1202,1227,296,281,2851,59,2567,900,1777,1816,1788,2623,2620,2061,2070,2325,1941,2802,2420,1207,1683,467,676,217,1743,2670,813,2905,2660,1139,742,2191,2443,2285,452,1566,84,83,2374,2928,2089,1972,536,1256,924,597,1071,954,751,1938,755,1729,924,1459,241,31,1564,446,2582,357,2023,2651,977,1143,846,1029,122,2217,101,1559,559,1038,2088,377,1284,626,2207,1758,1912,1320,2201,2234,2134,2391,1243,2048,788,1421,2326,2497,1138,1337,1562,1084,2244,2343,260,35,1294,18,2721,1373,638,1824,1624,1286,514,12,1483,2841,2910,1046,494,382,1579,2502,1419,1194,2610,1128,1476,1254,1881,1272,1625,1371,492,2003,970,2595,1505,816,638,1792,1174,939,1391,1369,2344,1573,1609,2745,2072,1106,401,2100,823,1724,913,539,33,401,1151,1861,2849,1445,1954,693,1639,2872,919,1426,1316,1334,1450,958,875,2818,2440,1475,2827,1827,1200,1475,2484,2299,2079,1876,674,1184,1367,564,513,2664,2735,515,115,503,1700,2087,1330,1203,1344,2081,1286,398,1254,2916,1137,854,1948,1029,1469,683,2284,1709,1550,391,868,1,2064,328,1418,2248,2500,428,1864,1484,857,1953,1888,106,383,68,2005,1358,2899,1557,1566,2738,1736,2564,2336,66,910,1017,2325,2317,2259,2293,1266,711,284,2641,2199,833,418,676,2021,1170,252,2949,2557,2257,2394,1821,813,315,1321,1034,58,2179,1832,1807,1644,2048,1460,705,2820,34,1786,774,17,2976,1913,2101,216,884,2720,406,686,428,1195,1402,130,385,2447,1153,1116,2393,1945,2203,2179,352,2802,1629,1280,1856,253,2654,1130,1588,2545,1030,2483,993,2719,433,523,1265,2718,1387,2590,1350,170,1096,1027,360,2078,1860,380,372,881,1169,586,376,848,1212,2258,2413,1312,1454,2333,2107,1516,839,2231,1636,299,668,2509,453,523,287,2477,2839,1479,954,2472,122,2926,309,987,2755,2371,53,2543,300,1338,2552,1243,343,2900,540,416,4,428,823,2198,1787,1529,171,913,947,2345,76,1771,2050,2438,758,131,2214,2833,832,1360,356,2365,2877,1592,1498,2362,844,1845,1029,2232,248,656,1022,176,1540,1110,1091,1591,2616,1052,2435,352,2467,2435,2321,842,435,2533,1046,1743,451,2072,312,665,2741,459,1303,1830,365,1499,1542,1190,1697,2332,1440,1913,2541,71,974,153,2748,2526,2241,1032,2846,2853,319,132,2980,906,2915,2043,99,488,913,1715,2116,1656,2934,1931,2817,744,1375,1730,116,1804,1837,24,203,2495,2642,1288,421,2988,516,2877,1730,2148,1800,1371,979,2197,2979,1466,2360,2683,1475,359,2521,1651,1401,777,358,2925,147,640,2750,390,1405,804,938,2640,1369,1525,2175,2486,1048,505,2074,487,75,1757,2903,1309,222,867,2393,1040,2706,2387,2775,1530,590,1672,1187,1019,2057,1930,2719,2113,684,2642,224,960,2459,1029,1529,123,834,1207,680,1799,1437,135,2982,1136,2208,1973,916,2734,449,1452,2159,1774,606,1927,222,1029,2764,2969,2288,120,417,1750,1958,1987,575,817,1484,2384,1235,836,694,1338,1951,1246,119,1414,307,210,67,1297,1010,791,1600,1176,2630,2932,591,94,556,791,1986,366,2197,2399,725,910,1726,2719,1385,425,1727,1416,260,2909,1073,1762,2393,1984,2448,1210,1334,1325,1894,836,2416,889,1825,2941,1737,737,2463,23,831,811,1731,343,1805,566,1308,2015,2320,1757,1277,2307,1735,2764,1824,2241,2204,394,305,1421,1719,885,1240,2885,1170,2262,2020,1947,1749,1720,1249,774,2103,911,1600,285,1527,2874,932,1031,711,1068,1738,2933,2768,2807,69,2412,574,461,806,746,2070,2569,818,1628,1432,1010,2156,1804,290,1177,1379,2243,2136,1060,1762,2609,1334,2160,2055,1330,1661,650,2963,1093,1415,1434,96,1403,1453,1273,2483,2806,2144,1788,2099,237,633,2519,2573,1219,564,2477,605,1885,1523,843,632,1537,1695,2082,2638,1696,924,1184,2601,804,2175,804,2264,1475,331,314,2877,836,724,433,694,2359,2095,88,2329,2262,534,2159,2038,664,2996,2547,2798,2218,1759,385,1505,657,2446,2917,2003,21,2322,1980,2291,2643,1407,541,2326,242,2209,783,488,1118,1710,477,2394,2732,1937,2496,1468,1747,2436,328,99,2422,2213,264,349,1217,1670,1996,2884,638,2921,1605,2550,2478,2655,1951,300,142,2973,284,67,1897,2092,2974,0,1789,1243,1404,106,972,115,2824,1270,2130,1222,2573,2828,1241,379,2843,1680,428,2260,964,790,1045,1224,1398,1082,638,1592,1851,2110,1604,1076,2772,1916,2277,1726,482,1514,1410,2109,708,1263,2029,218,1598,1663,1194,1201,629,1561,2596,1066,1956,1387,2613,1016,2311,2828,1845,1779,1366}

    858

    2701

    Returns: 288206022

  75. {705,1572,2675,563,1768,2019,654,319,185,135,2399,1146,2905,2491,2017,2457,1325,2320,11,889,1113,1348,1981,2457,837,2487,2025,922,150,2799,1375,1133,338,1996,2822,2934,1341,1420,2582,1272,276,2942,2309,2902,2623,2186,261,528,1786,1458,2297,776,750,192,521,2342,2078,1824,1953,2426,2219,1467,2393,2956,2541,968,943,176,172,672,2135,1859,128,173,879,652,411,2512,482,1948,1343,212,2884,2190,1767,485,2389,20,1752,2380,24,2588,2949,1345,994,176,1269,2423,135,1130,1501,1574,658,2509,1313,969,267,2842,2337,948,71,2595,1335,4,1034,2267,1741,1151,1369,1274,2349,927,2192,2778,2514,2113,1427,2194,1768,1567,2491,1903,1833,372,1268,2157,1816,84,758,1263,1745,689,789,466,1680,1527,2767,2711,2488,920,204,1387,145,1228,1425,1141,2697,2672,1206,2971,52,959,98,2981,2400,1456,787,1066,1101,2653,2939,1588,2255,155,1555,1319,264,1162,2503,2878,2533,880,1917,802,1661,2302,1364,8,479,2906,2366,1494,176,1861,825,1541,350,1826,2140,2560,1463,1277,522,573,1343,2325,1785,807,2738,50,2675,2507,2393,549,2480,1792,2024,151,2754,2230,1344,2599,2975,1552,2880,375,524,2143,2334,1543,997,1821,352,2118,300,2165,2241,371,2484,1082,2071,1031,1224,1203,2169,348,1389,1737,652,1752,913,1220,2608,2818,157,121,514,2638,2412,2680,222,89,922,520,2215,1718,2486,2239,104,879,2187,2491,1873,2678,1661,738,2020,1246,2497,2425,1434,1245,782,1268,2455,1190,486,384,2989,531,2921,763,943,2221,505,2028,2808,17,2187,596,191,812,1474,1870,2263,30,968,2552,356,2687,287,1665,2293,1549,2056,1300,1823,2736,873,2152,626,1195,306,2072,388,1654,2087,1313,908,1847,628,1637,495,2553,54,2164,1749,559,2301,469,211,602,825,2874,1270,1861,1551,1240,2052,849,609,512,1575,1523,1673,875,1890,2613,1263,1479,867,345,1615,1655,2359,166,1813,2333,219,2208,1379,379,1761,1048,1764,584,840,1361,475,385,811,2530,2393,301,2970,1279,748,1257,1673,532,1061,582,1757,1932,2046,2578,753,2730,176,1756,2636,1039,1436,1480,489,1369,2586,2026,2135,25,54,177,2235,1810,810,2002,704,340,2152,1566,1064,1969,495,2970,265,2136,42,525,1233,434,463,1215,1793,2402,839,305,1622,2036,1867,502,1423,2467,2757,1944,2245,2751,441,301,1761,1068,388,1580,1334,2883,411,1621,2450,1150,2118,484,390,1797,975,1562,734,2622,1171,1213,1838,2710,1217,1564,1864,562,2567,1967,2801,529,1285,691,518,992,2223,2389,185,1304,2384,2074,267,872,1033,1409,2340,1218,2492,630,352,929,1023,685,1730,1110,1349,747,1635,1296,1179,2383,2122,689,1285,1203,2025,2948,1376,126,1334,1727,2450,742,512,42,2627,1971,244,2684,794,2739,2316,1414,1811,1417,1631,2330,1603,1812,294,2993,508,866,2126,2693,826,1455,452,2634,1291,33,685,1105,521,1401,2338,1703,112,1516,1308,2744,2254,2230,1279,1018,566,2277,290,793,2370,1908,2172,740,475,784,2589,992,1857,2190,2761,742,796,2405,2785,2131,2777,1505,6,2759,1702,709,1960,1940,2351,553,2795,979,2471,830,892,1604,2646,2458,212,899,850,2731,1269,157,2815,1698,1119,1121,525,2448,2779,2163,1465,1064,2883,648,2026,2393,620,242,500,2627,366,41,1389,697,1459,2355,846,2276,59,2697,2838,645,898,2024,2896,2324,978,2201,173,1450,1827,331,687,366,165,1694,221,2778,2451,1418,1731,1423,1009,1632,1041,1508,512,74,403,1034,303,1745,2665,450,258,2544,2600,2657,2822,295,1328,2175,2402,2743,2160,2506,2767,984,1845,1948,492,58,1573,846,1979,2506,2324,1740,2307,322,1144,1544,2760,1770,722,2722,2188,2667,498,1440,2119,430,2508,1004,820,2629,2623,2435,2802,2228,1805,908,2179,429,343,187,886,621,194,2979,1639,287,687,930,1359,679,413,2259,1683,1489,1518,330,1592,2898,1749,2461,2858,1669,2090,6,2473,142,1227,79,1036,689,2803,2481,1233,2296,2028,1345,1622,2730,216,2989,1635,1865,160,382,82,2199,755,2352,2831,1864,734,2559,407,1829,1725,1645,2809,10,2803,2918,2178,560,891,2836,1566,20,2173,1746,733,656,2636,1347,2786,2658,895,594,2006,1649,1123,1478,900,2678,1550,2265,737,1031,2660,1540,1734,2641,1297,696,655,2524,49,2689,382,1288,823,1002,1945,103,1059,2811,2617,2377,374,2780,129,1833,313,309,271,1896,1400,672,1897,2989,2453,1554,2568,2830,982,655,4,2514,200,2901,2493,585,2667,681,2391,2825,2521,2520,244,1320,2058,632,759,2680,2822,413,150,2756,2763,2778,2255,1227,79,2010,743,2639,1124,1774,1493,462,1396,1467,1536,2385,1427,1233,1452,1445,2230,1913,2229,1067,2751,729,468,910,2068,1826,450,2700,544,191,2907,2091,354,1235,2314,404,864,361,77,704,213,1432,2391,1275,516,2616,1535,1984,859,1410,1028,270,1292,570,1786,2575,2479,1279,961,80,362,622,1280,2080,463,2636,2450,1536,1078,2478,1238,32,2128,295,1076,1215,502,2989,1268,491,2266,305,1810,1691,469,1511,500,2525,2941,2814,1780,1641,2182,1349,2354,1353,570,2771,1198,185,2636,1005,1874,571,1700,2087,1415,1160,1851,795,2109,2170,1530,1338,547,212,1572,2738,2265,1835,2453,2377,1885,2217,758,2583,1191,1551,680,13,928,2812,1442,127,718,958,61,890,2276,1597,236,1433,1826,538,1243,1689,2394,2868,1628,1421,2805,1647,2797,333,2678,66,166,849,40,2067,1529,273,474,1184,554,498,618,2731,1588,1895,1819,1838,1612,2661,2467,739,2201,2147,2127,110,1700,2974,364,1259,1464,1973,1696,813,726,1776,2283,512,2734,2257,2271,1588,1081,445,614,1098,1600,2865,449,2520,2199,1418,2794,2437,1961,602,2945,1750,517,467,2196,2640,1632,757,550,14,662,1586,415,694,1991,1020,944,2971,2050,862,1848,846,1407,498,2740,2907,2148,1273,2310,166,121,1942,1190,69,2408,131,2534,2322,2059,476,2687,731,2774,697,1268,587,2139,300,2438,2360,756,2081,2623,390,2865,1212,2786,899,2910,739,200,757,1520,1181,1151,675,1294,2846,108,1371,1205,1507,2478,727,2639,2089,722,495,746,2752,132,1966,322,2373,2525,2440,863,753,249,1568,539,997,2054,854,131,145,2142,1419,2341,1891,2560,1626,1610,821,778,61,2230,1251,2751,2557,1625,2548,1191,382,510,2250,2437,2900,612,2711,2229,872,99,2169,735,41,1298,31,2763,905,1333,919,763,1285,2972,715,2354,67,1094,1014,2031,386,496,2724,1875,2761,1854,870,159,1930,958,2118,2180,1799,1049,1079,1972,2023,985,1509,469,2343,1892,2944,946,805,2803,91,522,281,2743,2121,109,1995,2654,2081,2099,478,2407,289,2797,2738,1096,824,2155,1037,1589,1059,1932,2803,1533,255,1123,1097,1221,995,2847,1066,2198,857,1147,1018,894,105,1801,1514,214,68,95,2098,460,2845,1337,1393,1815,2397,1019,990,2032,1632,1063,452,2418,186,721,2778,2749,2726,2406,2593,1746,486,2140,2099,1470,1747,2883,270,1981,715,2889,2306,500,2214,624,573,1070,979,198,2994,2085,1731,2722,690,2375,1232,761,1146,2858,540,419,2387,2624,2498,2037,2632,1102,2153,2670,883,2482,199,2377,72,2421,2673,1285,2718,1761,1476,2104,2182,1949,1788,1373,341,2597,1796,1037,2859,351,1911,1243,1159,414,443,1686,1444,98,2823,1025,1072,380,2432,2038,719,976,115,2465,967,2128,2883,2494,819,916,571,2362,1659,532,2019,1471,1673,958,1454,2479,2874,1720,178,2151,1822,2818,2179,2141,2353,174,2649,1845,843,617,2177,864,1593,1038,2181,145,1357,2393,82,83,1324,2886,270,665,1171,1384,1931,234,211,757,1029,1772,1308,2063,2223,1417,1659,695,1278,269,2509,55,1872,252,2022,94,559,1638,1625,203,497,1976,1660,1056,1338,1086,575,1662,2691,216,2858,724,1385,1628,2804,2979,253,1062,1879,34,1811,699,1226,2593,83,1656,699,328,762,331,1084,1016,776,1490,1242,2376,2793,2265,1958,1464,2805,739,2103,757,1504,1514,2244,1413,1684,1767,651,1296,595,1312,2536,2834,1446,2519,1080,448,1830,451,1698,991,1179,919,1483,2298,2040,706,1676,520,1848,150,45,1624,861,2466,2484,2932,201,1464,1719,1558,1604,2515,2496,1491,1007,1970,1848,114,1265,1263,1905,441,599,875,2911,2424,1560,46,483,790,1149,231,2282,1189,1850,2914,2941,1981,1696,1249,2443,2617,2073,247,113,2111,24,2023,282,1185,2089,2550,691,2536,2099,1512,2822,1107,2870,704,162,368,234,1456,2133,1880,1285,526,1510,1017,288,2964,469,15,1771,1106,1307,2733,1711,123,1573,2969,1748,2238,1948,552,162,1946,869,2919,431,1588,2232,2349,817,1204,982,823,2572,197,943,1826,2915,2250,1648,692,1142,1114,335,2435,1459,2569,441,932,2553,1456,87,1866,2604,118,345,73,336,2424,1235,2343,2953,1164,2277,1053,1043,797,1934,79,1609,597,2393,1295,1496,2322,973,1315,238,1200,1337,888,852,2572,24,592,656,2175,1545,75,394,2102,2032,937,1672,143,1842,716,1021,786,2616,2938,2498,2226,844,1694,574,450,2124,2528,1698,79,760,373,2343,2110,2547,207,2833,2725,2088,1779,2473,1556,2721,1283,554,1792,667,2599,2110,212,283,2764,1111,2626,1245,992,367,2119,2874,1828,2776,1813,1095,1895,2644,1072,2088,1842,1100,1840,591,2922,368,2687,1126,213,1585,1604,1443,602,1274,2267,1845,497,2265,1399,1157,1723,2431,2613,2129,2110,1464,1376,1972,1131,181,56,2398,440,1677,2390,1953,2464,229,402,1959,2870,1627,2280,439,1443,1978,2827,2272,1459,1834,671,349,1141,1306,428,2547,2170,1327,223,1313,1285,535,2965,2157,2204,2243,667,816,118,2484,862,2227,2778,1673,1235,172,2266,2657,2171,2127,1855,2715,2015,1111,1622,2832,1142,2699,2326,2130,2370,1351,211,399,2179,1906,1552,1594,607,1726,410,1278,1607,2735,381,2883,1784,2251,1182,1566,2300,1291,650,1096,1091,2557,1322,1467,974,881,656,1051,86,2060,2891,1244,2627,351,2085,2941,620,459,666,611,1235,2141,2436,2443,145,246,394,2048,1285,1333,311,2600,2535,546,1883,1135,2847,523,2335,170,26,357,979,555,2750,98,834,2837,2325,1386,544,896,261,1502,2538,605,2939,1211,2595,2863,2506,98,1081,1149,58,1588,1264,2759,441,1740,2593,1962,259,2273,2690,1975,2855,2571,2505,400,1021,2815,2751,1227,1347,1141,2116,1317,752,685,2528,1537,2405,555,945,657,2270,2587,2516,1213,183,2014,1539,556,1624,2768,2390,786,2388,2903,989,644,251,2446,543,2530,649,1644,1031,1716,2597,322,2506,1707,2672,2628,1974,2441,946,2868,2317,2674,1612,2667,1596,504,1665,536,2228,2267,1007,1503,2368,1616,1636,2829,1864,1568,1168,66,1546,2864,472,1246,1662,303,2476,982,2782,1331,24,1653,660,310,317,2348,329,835,423,1858,1661,475,2627,182,846,755,2364,1313,1671,1647,2083,384,2547,2037,2017,2628,2514,155,2935,2484,2816,2598,1746,2219,2950,1916,2180,1839,1819,2265,2971,1216,2278,1068,369,2305,2611,2858,2903,2153,2664,1968,1232,2842,1054,635,2126,1763,2369,2209,2100,569,1406,1338,1848,1882,601,465,1788,1376,827,1459,269,1853,893,2155,225,2531,2914,1352,1833,322,2450,2133,2724,2581,867,954,2871,2927,44,1650,2457,1051,595,2024,472,57,1679,903,1640,495,1424,554,752,685,1068,1608,298,1924,1411,375,1829,629,281,2577,1259,414,2709,505,2022,2529,397,312,1872,1299,480,1459,979,2547,2884,1982,109,295,2596,98,188,672,2758,2063,2500,1351,634,2007,1885,2110,2276,2930,979,2557,117,545,116,2997,150,943,2144,819,2393,2773,815,585,2812,2850,2997,245,528,1428,1926,2990,2313,2411,663,399,2230,2762,2730,2980,2237,1649,220,860,1956,74,0,2108,1588,180,1789,2264,2840,2548,2304,1874,1923,2434,853,2041,2691,2376,437,1755,59,400,1966,1165,432,2154,2044,1471,251,1411,916,2118,756,358,2366,2729,2626,2213,1852,120,2820,738,1863,2574,2090,2334,2792,99,2822,1766,2527,2849,951,2465,1199,1003,794,302,2658,368,1847,1498,2814,2598,2637,532,2057,2445,1213,1248,591,2231,1516,2402,238,2008,2588,2953,1474,532,1272,2137,61,2036,979,2042,2166,420,1568,1694,1286,1856,2417,64,1588,1511,2547,2782,2065,974,426,934,1667,950,1162,1488,1876,36,919,2821,946,2822,1787,2551,2891,274,1708,2766,589,1971,2019,1936,286,469,2331,2269,1703,235,22,687,2635,2404,2805,1943,2748,1051,2071,2905,1586,1241,1820,851,1740,1023,1197,1573,1661,2447,745,2620,193,1952,79,631,702,1860,1175,2225,620,790,2427,1734,1671,2224,62,1041,1484,1981,1733,1407,477,2924,2978,564,2882,2704,698,1573,2537,697,2517,1136,1032,192,589,1388,1862,1112,2149,572,1751,1994,1974,1634,1788,2933,1788,1842,2626,2332,866,2116,2642,1500,1853,2603,2299,2487,2343,1288,2940,2992,446,2994,2064,142,1893,1354,148,2076,1771,2373,727,1443,1348,254,501,1432,1092,2669,2393,2165,535,1606,867,2198,2021,867,836,2534,1537,2872,2262,2355,2158,82,1901,2541,566,2937,2162,1663,427,793,2248,1142,18,1722,183,1856,697,2846,729,1443,1785,27,505,2521,455,1632,2961,1657,1485,2028,1942,426,2705,1242,2905,757,2787,1732,990,2822,2443,1410,2604,2933,1850,3,2236,48,1511,1015,1605,2483,2018,2870,2201,245,814,1815,419,1103,730,2901,884,2245,2942,1271,2618,1205,284,1286,2821,2381,490,1628,2019,611,2968,2736,648,220,2817,598,6,589,2308,2945,1837,2287,2562,447,216,325,2041,661,196,84,2386,2016,1691,680,2516,2246,588,1077,153,624,1470,926,348,1996,242,2254,130,2620,2357,1015,1756,2357,2029,699,1978,1622,2818,471,192,1459,506,2085,1717,808,2406,2960,985,2539,732,1721,1141,2514,2247,1663,1172,573,2868,260,1740,2189,571,1911,735,1064,189,146,2044,2985,109,1402,523,2868,2994,1397,254,897,432,2884,2741,1486,2011,1326,2227,1038,2130,937,1854,125,43,147,1394,760,1973,441,1626,1759,106,2390,2917,2343,436,2062,1355,2494,2256,2138,1919,1743,2741,806,1031,891,1824,2123,401,390,158,2078,1418,485,158,641,2883,2489,2858,2191,299,1542,99,2596,409,2521,1157,1202,2522,167,1679,1654,691,658,2595,2633,852,1997,2479,1856,2983,269,2615,1027,1099,111,2038,1979,1685,2061,2631,1573,2157,2230,1561,1374,979,2130,1915,533,1008,1409,2569,2290,2560,1966,2290,1913,1152,2009,422,613,1049,2964,1807,2792,1577,522,823,1908,652,811,896,365,2803,2960,2912,2961,1643,1690,2430,966,1188,1993,2560,1227,2921,2605,44,841,1012,254,245,2547,328,355,2306,781,386,2685,2233,204,728,498,1287,2474,936,558,714,1059,1940,697,1458,1045,1804,2747,1600,1972,248,701,1652,2146,1810,94,264,40,1219,1221,2164,2432,1707,293,2409,2381,2890,2947,2662,2627,167,2239,1568,2899,276,239,1325,481,751,641,2605,2090,2179,1841,916,916,2308,2712,1895,2933,39,937,1090,1231,277,1821,217,339,2611,1899,2655,2009,491,2708,2063,1146,2682,2847,2954,505,1444,1935,242,749,672,1329,146,251,1513,2450,353,765,1322,322,1252,1706,1645,1192,1680,870,2542,2877,1947,2528,1157,1500,633,568,743,334,499,449,228,2354,1871,1272,140,2605,383,2670,1108,820,267,1098,297,1702,1186,1723,652,542,1766,1548,421,47,2329,1430,370,1963,1290,2504,1698,1736,1220,1966,2153,2791,713,1309,991,2049,1841,1687,2593,2636,2215,635,211,914,1458,2993,1799,1050,2117,1251,1535,2185,1040,1602,1468,139,164,897,1088,395,2093,2470,1964,1623,1557,1649,1620,801,126,2345,611,555,804,1869,368,2589,2172,1781,369,2618,1658,2315,1883,1125,1253,1122,1861,2925,1713,949,137,2853,391,2628,937,9,2915,2851,152,2315,2499,503,2362,179,972,763,1549,1973,2159,2976,2505,991,1740,2658,644,1441,2870,19,1703,1484,2443,479,2651,1046,535,554,2790,2820,582,1771,92,1267,554,1821,2996,2894,2803,815,2751}

    {2270,2606,453,1489,2595,566,2703,705,1918,374,1707,1922,1475,1770,1132,828,527,1007,1674,1856,875,581,2558,2425,519,2616,94,579,2507,126,2871,847,962,2679,83,1304,1104,894,459,275,1809,1312,1965,881,1290,766,1883,2652,1921,812,470,1511,825,664,1356,1220,1947,859,1226,2356,2045,378,1025,458,2361,547,2205,2099,2429,2824,731,1523,2999,2879,2268,1389,1041,1226,2995,923,1897,1545,2075,1763,1174,552,1366,887,2951,2248,1350,245,2970,405,2902,2303,2070,1869,2265,2196,2039,205,2630,978,637,896,2203,2129,1965,928,1831,2069,1673,2292,262,168,1668,2975,2149,953,907,1086,1660,1167,212,1661,393,992,1266,2741,2540,1698,1403,2128,2650,2813,2817,2379,230,2847,1208,1560,1038,2720,960,263,2034,858,965,2104,1482,864,323,2360,2290,2777,2842,163,1155,2688,320,462,1201,2959,2917,2393,1343,2413,2514,1494,1326,408,1201,1236,2507,2840,1196,1766,2762,600,1555,1881,1884,327,1585,1626,2798,2366,882,445,555,2518,1281,1240,343,1526,1678,2029,779,309,1865,2709,2095,551,946,1893,1232,611,24,2726,2775,987,482,2087,1362,2057,1195,972,1903,1293,1411,2337,567,345,2744,1035,1913,2801,1953,2106,2901,1985,1295,2818,710,1646,606,950,1743,2116,1598,1136,1628,2251,2096,399,1212,2084,775,2862,2324,2003,2268,2609,1221,1062,366,190,2215,1645,62,2367,2716,569,1311,2994,2169,505,862,22,2328,218,1438,1766,1527,397,859,2980,902,1983,2228,320,1346,7,605,1465,2573,520,2619,981,773,1735,2682,151,650,614,1457,2239,727,1168,1728,2713,2798,2183,1443,193,1566,573,2203,1710,387,1264,2234,902,251,624,2220,904,1286,1825,1565,1133,2176,1977,745,154,2312,2784,1595,986,198,1231,703,751,2261,450,2628,2117,88,150,1060,700,1722,2677,1631,382,2153,1866,1336,512,2255,673,1270,261,1327,1031,2555,333,2185,1380,2523,1831,2377,1285,238,1818,688,623,2387,1383,2538,2963,2082,1847,1216,586,932,1757,2858,2142,1350,2158,2501,2372,704,2167,2273,1443,2008,2849,2146,2793,144,1191,2016,2444,1794,1439,916,2220,2286,2773,753,482,2030,2057,2682,2254,1728,2,1173,2066,1590,874,1200,2324,1345,2811,1062,2502,1630,509,1301,1920,1977,302,1124,2200,896,305,780,1993,1010,993,212,970,237,1258,185,1538,2168,2569,2109,1181,1270,37,739,2321,1954,2028,494,783,1614,2312,2935,1246,2157,2686,2949,2323,1547,1050,1531,62,999,2581,2819,696,2206,1455,2176,2513,1832,2616,611,1151,1953,2798,2870,1790,2432,1036,1910,368,270,2915,467,1399,1399,2967,2572,1600,1867,2126,102,2406,1339,865,1355,296,1980,1703,276,951,1817,2959,2387,1516,806,57,1350,1599,1878,2319,1661,291,2524,2735,2075,124,1919,2279,677,751,937,2160,2991,1743,2629,1420,2858,1302,906,2276,2918,337,2134,2722,2792,1581,1814,2392,1033,444,145,2224,1877,943,1331,2801,752,2656,2137,1835,392,2547,1497,712,1180,2174,1216,122,2324,561,848,344,835,2812,1473,2810,717,2545,1514,2888,2953,183,1572,2195,759,2629,385,2240,1395,149,419,1518,1855,1225,2280,2291,21,770,1163,556,323,670,2596,2041,2721,1571,1214,523,2958,1671,231,1643,2148,107,1072,2710,131,2015,723,2763,2705,2262,129,1000,603,2822,267,984,2750,1466,1948,805,2561,2562,285,1697,2719,1930,1110,741,1037,1358,172,2207,1931,202,2082,655,1622,2569,875,2119,620,1904,937,2728,992,1040,2523,2867,809,730,297,2035,998,2209,2611,2556,1173,109,2420,2885,2396,832,2879,2029,2914,167,1871,528,352,820,2948,2151,1714,868,1956,2920,1914,1184,2853,121,2490,937,2892,842,2523,345,1568,1417,1922,482,2075,665,2923,61,1930,1071,1447,497,493,2078,1729,2343,109,938,322,1024,2085,278,748,1661,2846,1448,1492,2796,2196,373,935,1498,2333,2630,2463,721,593,2716,60,2393,1149,1661,2231,1075,861,303,1403,2735,57,1765,1843,1777,639,270,1661,1432,602,1521,1422,2602,2656,997,1941,2472,1036,1237,2921,2055,1480,2531,482,1410,1966,1705,1225,1454,456,1991,623,2125,919,2505,1951,690,2240,553,680,2610,1762,109,933,2663,1151,341,1847,765,2262,2018,2401,1178,501,290,2330,1299,210,1752,1892,589,378,1444,805,338,456,2057,147,1991,1112,2199,2906,2376,1318,590,1031,2190,2914,2621,2893,1471,2865,454,1062,2452,1477,1506,1802,2517,144,346,1989,2907,2540,2931,1352,1987,611,2537,483,1770,2485,2843,2926,266,1950,1042,770,212,422,2346,879,255,1592,1698,1435,2842,2624,2756,1472,487,576,2040,739,424,2254,376,475,88,1055,1126,2012,2286,2854,2657,1224,1845,2747,34,2677,1479,1256,300,583,723,1733,1661,104,2263,1644,690,2186,1106,1312,589,2881,1943,659,1207,1373,1654,2001,2163,2746,957,499,2620,2692,1636,1492,876,389,1703,436,2825,1347,1885,329,668,2132,1583,2811,2559,659,250,2133,193,337,2598,114,450,1079,1884,1842,2518,2180,912,979,1863,1095,171,212,1819,2658,2210,2174,966,2442,377,2126,977,1776,1653,2315,2403,2822,2873,2532,1581,2021,1547,2114,2282,1247,1145,1795,2460,818,993,849,2701,943,2338,2355,1982,2884,2160,339,2885,976,1159,2294,1291,636,2890,931,1093,2033,1758,2678,1340,2727,996,2765,575,2031,1024,1974,2016,2526,161,2755,1551,1218,224,592,1193,1224,1182,1572,79,2118,283,2598,1007,856,2165,491,2050,2949,2130,314,1695,1570,2469,195,1259,1748,754,2295,116,1809,866,618,2788,2172,1163,708,1134,379,1611,1416,1289,2976,1753,1154,2883,2678,1931,2772,1220,1783,2598,2393,2118,1833,461,1815,1285,1566,122,2722,742,1990,1518,1506,1036,270,2182,1429,2916,459,1252,2678,943,691,2955,1571,2414,1149,101,6,1585,1377,484,2057,2543,1490,2137,822,505,1044,6,285,2921,143,1451,138,1083,2658,877,1176,1295,482,1115,714,1666,2364,1602,2567,833,355,2856,1085,727,2594,1522,1432,2137,412,1296,294,1674,2947,2591,406,2912,703,2659,1887,304,1999,1073,2449,133,1727,2826,134,1519,1363,1895,104,1715,964,2922,751,1752,1058,2130,561,640,2686,2002,2190,392,2284,306,2128,1168,1118,974,1252,241,2742,94,1262,2970,1398,2534,1901,901,2407,1929,551,172,749,1264,2936,1103,2004,1504,1148,224,2285,1712,61,1229,1953,1377,1285,2492,922,2717,557,652,387,798,1226,1549,1628,1534,186,2926,686,652,711,2687,2207,1143,1151,773,1439,222,2540,855,413,2053,880,43,2285,1521,757,1826,458,2229,1169,1629,1988,2298,864,936,2913,1584,2835,1137,183,1467,170,1073,432,1692,1833,1137,769,1864,2952,1645,2966,292,2116,153,1158,1373,345,457,2584,485,2908,2512,1939,347,2973,1793,184,1600,2590,2365,268,572,38,1938,2584,192,744,2120,1183,423,2806,651,2702,644,1523,2318,742,607,2757,51,1567,2130,1061,2484,1520,1259,428,1476,2324,1864,513,2861,1791,2770,1437,2289,1036,1888,893,1765,1526,33,2546,2545,457,2800,971,2811,1563,235,859,982,129,458,426,1618,2239,1651,1898,2732,2464,2598,2999,2812,270,2198,2416,2909,1318,676,1241,1943,639,1491,2858,118,1365,1091,2172,1723,1736,1984,1601,2944,1047,1517,136,1496,2483,2855,1068,1583,667,470,639,1699,2640,2107,2304,1682,2009,1810,633,1589,1178,2259,525,2598,691,338,1903,2783,1947,2469,1978,1742,1191,2043,939,1691,1088,368,1150,689,725,2645,91,453,1235,2737,2761,1884,1161,1234,820,183,1846,1459,1013,443,1953,2410,829,2572,385,2059,1806,507,576,684,1453,1744,2401,2871,1776,1193,1223,452,1112,2168,1626,979,289,551,1940,1645,530,2462,2466,1731,2528,669,2957,845,395,2114,321,2312,1063,2580,1864,2733,308,1207,2935,2565,70,1432,2457,2337,863,525,2545,1438,114,1886,1801,396,1382,1732,2528,342,682,1771,2903,2814,2057,1426,1900,708,2872,606,2678,103,2512,1907,1024,2047,2564,63,2290,2984,2079,1560,1420,2887,774,2706,2172,1262,1026,1849,2433,1383,398,1174,1239,570,2358,1723,396,2759,2922,888,739,2327,1505,2683,1967,2069,2647,2127,1701,2683,1792,1553,1589,447,2422,2158,1156,1775,16,1588,1525,1171,2555,437,1928,541,2971,2720,1082,710,1761,2377,1193,35,2080,445,2769,2230,419,1505,1731,94,917,146,1688,311,672,92,1578,2982,2458,2008,227,2904,2762,965,63,2547,1368,793,1367,1530,974,2753,1123,1626,792,553,2048,300,20,2763,574,2627,344,1476,1492,1909,2277,1505,2436,1462,1282,1751,2796,1254,1499,727,2811,2895,172,1745,1456,243,134,1677,1002,2036,2574,1074,707,2997,1157,1432,1860,2751,1056,1613,1741,2439,2604,1838,1764,2943,198,2783,384,896,1111,2005,2189,1575,2997,2150,190,2566,1931,2458,672,1153,2050,982,2115,2282,2367,1278,2414,438,2599,408,2077,2974,642,2605,82,1568,2527,1937,1460,76,2094,1927,1508,1034,1601,2647,1722,339,2163,322,1836,1300,2162,1398,1910,2568,2226,565,1724,1729,1470,2639,982,2363,175,1808,1959,2517,2245,261,2596,2490,2156,5,1448,2028,2288,2636,1833,600,956,1647,2337,1342,145,2138,1025,2885,1547,777,484,1209,1392,2759,722,1784,913,1030,1041,2351,1291,1874,2209,18,2823,1057,1329,2962,1743,360,1985,1044,800,2658,2522,2002,1844,307,575,2542,2381,1628,2350,2573,1329,1581,602,404,1590,740,2525,1505,2222,93,2989,1019,1250,1461,578,1276,2013,1190,2429,1037,2180,2428,1746,1726,1097,2928,1942,1372,1104,1524,2078,2436,1489,296,727,240,647,757,1389,2265,2232,505,720,1252,1066,2459,1813,2998,1551,154,556,431,507,511,1005,1625,1606,2723,2468,1246,2619,915,2276,2694,177,2248,183,1801,141,1883,2545,1760,2564,2027,916,1549,270,909,801,1129,1286,1432,1155,1137,908,2549,1170,987,1935,2476,2001,2757,90,534,432,942,2402,1778,215,2315,1654,850,1071,1762,304,2086,379,625,343,2570,373,158,755,831,981,1719,867,1276,2101,2112,479,2276,2219,2051,1552,576,2456,1068,1451,100,2145,1707,652,2444,2903,1185,885,2683,2299,2554,2415,905,1800,183,411,2986,1186,1087,1818,532,653,687,1795,295,2130,414,1703,130,2678,1803,1782,979,59,511,310,2595,1569,121,1456,2018,2325,2881,2258,236,1230,871,1986,97,1359,859,764,485,1178,2234,85,2548,2869,83,225,2343,416,381,390,2466,2585,1887,2839,169,1294,301,2875,615,768,1233,480,875,2249,2408,1303,1181,318,798,366,1932,2848,2755,2116,916,842,860,2105,2038,238,2572,2201,1025,407,1495,1260,78,1560,2828,2372,1089,2696,1573,2693,25,23,387,1494,1164,2740,1972,1370,2042,1220,791,2789,2671,1405,957,1617,1350,301,2841,943,2444,1376,1947,1418,785,1448,929,2807,1709,2364,2573,53,2475,627,1613,225,2669,1957,1754,830,2014,2263,2253,507,983,2579,66,1063,777,539,2426,1484,863,199,209,739,2153,232,417,1063,324,1813,491,54,810,1390,136,2006,448,2539,1625,2836,799,310,431,206,1511,1505,1066,2220,2745,1255,2429,2518,1880,1576,1191,863,975,45,2268,1996,1773,2943,511,1950,1642,2687,436,965,13,2834,1222,1011,1797,674,2466,2506,2396,254,1022,1543,602,363,2534,1059,344,1469,425,620,733,2393,280,2655,2342,279,1431,1884,1865,941,569,1227,1681,809,413,1464,2235,186,2778,2469,1157,1973,1373,162,1695,1411,1641,2793,1691,2164,345,1138,767,1528,2187,2809,2623,132,2157,2348,842,1992,2432,387,486,1491,817,1575,376,954,1378,1102,1481,1316,1360,1363,330,574,1337,2337,1332,1451,2113,1670,96,916,564,366,1731,735,1120,2077,2623,345,1955,824,468,1157,2457,555,1249,2978,2121,1619,368,247,1828,2503,450,1410,2466,1751,2344,301,382,1358,2808,2724,1955,2024,1509,1994,2668,715,2995,1693,2694,1666,1448,1464,1069,752,1257,2193,329,1974,1570,1625,919,73,285,2830,1678,2110,1423,608,982,345,2281,1854,2647,2865,2130,2740,623,153,1821,1769,1460,1781,2521,1752,1259,359,619,2499,2216,1613,751,1036,964,2545,940,2129,1633,2676,1449,2069,1252,1634,1299,2882,1191,534,684,2507,925,2173,1432,1515,1517,620,456,1713,487,1739,604,208,1603,2529,652,626,1400,2405,2454,1788,571,793,2828,2460,1127,2783,2866,2618,214,1123,771,1025,1703,1492,757,935,164,2740,456,1675,1255,2270,2645,1418,257,1591,2734,2373,2081,2277,2342,1373,2572,1362,2311,602,2538,2620,301,197,569,2268,986,1139,1896,1832,2836,2525,1726,1359,228,2265,1626,418,1343,1041,1614,2540,1186,1595,1574,2128,1636,267,2666,1484,1448,1196,489,1225,760,2040,2995,1643,1814,2131,2746,559,502,2419,2654,992,256,2555,2374,2405,909,313,2579,1140,939,620,1664,2193,1427,382,155,2568,2858,1391,593,1404,1912,1210,276,911,2743,327,1065,1327,2714,2537,2184,1742,2099,545,2211,2860,602,952,599,618,2202,2628,122,2611,778,1967,2489,1125,678,2060,1921,680,2028,1816,2607,2043,515,992,2698,523,1289,1374,2126,1547,1734,1001,736,878,1423,782,1006,511,1291,1915,2058,304,2601,2792,439,1459,2063,2252,187,2161,566,2079,2707,316,860,2569,1193,458,642,482,2804,2036,727,217,2228,1305,1327,2338,1449,893,2679,2406,315,569,368,2929,2784,1902,2246,1868,2008,218,618,837,2260,1875,2804,2339,2803,2946,2736,2201,1166,352,1340,1743,1864,2261,177,1939,1579,2267,2698,2030,2119,2151,2881,2787,1012,618,2918,2681,2648,650,326,1813,1571,589,2579,41,2044,2620,2410,2592,1019,2876,119,2796,2371,955,1194,1086,924,706,1722,245,261,237,2265,2522,577,1634,1894,511,1925,592,2027,2477,1,893,2333,620,1322,1371,1744,2718,2506,1116,316,435,591,1074,1052,947,1587,191,2063,586,2711,1522,864,1227,2334,2090,1751,1029,2798,2616,2198,1652,979,898,777,469,1896,2681,213,233,416,548,1330,1205,2511,1234,484,65,1369,918,2658,322,2576,2495,1403,404,1804,821,2852,1792,197,380,1761,1224,1664,2183,2376,1788,591,1643,2642,1322,1564,2595,2080,2781,1821,1326,2155,765,1079,602,2244,963,279,228,770,81,400,1111,2424,317,2975,638,2225,2792,2661,2857,1737,2643,1488,1906,449,944,226,1449,1808,2510,432,2347,788,1324,433,1969,1126,1601,1047,1958,2466,413,1194,2826,2597,2038,348,1025,683,2240,2625,2918,2823,674,1457,1279,406,382,140,1301,1504,419,2863,344,2520,2602,2446,449,738,109,2395,156,2598,1815,2612,70,1225,2518,2212,1405,1372,272,1128,1473,442,2167,2182,1199,332,1780,1314,1322,2336,2159,537,992,431,1538,2162,1757,879,368,2984,779,118,228,2693,2799,755,2797,2988,2897,988,1109,783,1622,390,2241,1769,2150,2721,138,473,867,2923,2336,394,2563,1994,1821,2341,750,303,2826,462,1532,74,1758,1874,2640,2941,1614,2105,1998,2537,118,921,422,674,803,441,2204,2382,1746,2561,1994,629,654,2378,2324,2568,12,2270,2336,1917,1893,955,2642,2614,1889,1977,2118,2744,1118,2536,838,2710,422,1143,2357,985,1820,693,2275,1052,1126,1458,1505,1980,1914,441,2330,822,1404,757,2445,1284,2891,1321,1373,2000,1199,980,2092,1381,2176,2118,2297,549,1651,2198,1487,1834,2987,2209,2518,2282,1815,1000,1725,1501,791,1559,1261,937,2469,1551,2934,484,2364,643,2977,556,341,2578,528,1408,1456,1177,2406,846,810,979,468,1412,2625,2162,1551,1729,2605,1953,771,1451,819,2152,29,228,2109,1933,1171,2285,2197,348,132,2078,1578,2945,1464,2026,1433,28,992,2239,859,2547,2236,2844,1117,301,2274,2997,2097,646,1310,2584,1973,765,2579,464,1676,1244,57,870,2000,2338,1224,1187,1788,2510,1833,491,2450,368,1335,2238,1660,2821,2941,1757,1582,1323,2027,2941,785,257,633,592,1496,2262,188,431,343,2442,1693,1798,2918,2480,2844,2478,783,739,2218,1615,616,2578,2041,2570,288,2242,1541,469,2198,610,772,1863,972,2672,1333,2001,488,2333,1443,318,1928,2122,2709,2052,2723,580,2695,1738,1895,281,2177,2133,2411,2047,2330,1704,498}

    1893

    2547

    Returns: 552825513

  76. {32,466,976,2567,980,664,77,2748,1345,2922,2909,1544,1598,2997,1961,1434,2785,1305,1618,362,1623,2144,1750,1790,999,2879,566,1476,2499,279,535,1726,264,1074,1299,2761,1290,2084,667,212,2167,2854,1544,1286,264,2548,2563,13,23,845,2496,1658,513,2625,725,2615,394,863,2727,1572,324,833,2491,2202,1916,2065,1215,2013,1291,2946,721,1840,1891,892,1603,2297,2099,2867,867,2055,2676,573,2055,69,954,777,114,244,2156,1813,2163,2376,2023,35,1650,1201,618,2698,2802,2030,1931,907,1361,2461,2915,1592,1261,1670,1339,572,2432,1771,15,305,193,2898,112,2232,612,766,2416,1341,2754,261,386,1905,256,1336,1715,2265,2145,2686,626,607,1366,600,798,64,4,1140,2453,751,539,1682,138,1442,1031,1546,2322,2895,91,335,294,649,2595,2777,859,374,1869,2816,1213,2336,872,958,1600,2351,2274,2761,1351,87,1141,813,650,2500,2102,2451,1681,1568,791,1844,2323,1949,1153,1030,1194,646,154,373,17,788,950,1062,2724,2730,1374,1704,44,2138,529,213,1019,1501,678,1337,2981,1392,441,2847,2108,748,2780,1312,2483,2858,1538,971,1821,1603,1172,1534,2938,598,2743,1755,2052,2801,1355,904,80,1004,590,1956,883,1833,2201,1261,2875,2473,1479,2224,441,484,1496,49,1405,1803,997,573,368,220,116,579,1291,1432,967,2361,2456,157,2024,1108,2679,1745,556,12,2533,742,423,1717,694,2429,2988,397,263,2934,1728,1264,447,583,2006,212,881,1806,1982,2315,1745,2239,557,1902,2066,2642,2308,1313,1188,2546,1137,1168,2376,428,221,639,2391,1564,1830,1113,1336,513,2874,934,877,2736,1195,2196,1607,2027,2786,1713,1966,2938,787,252,533,2127,424,2531,2041,1489,2733,1861,1765,2377,1107,2110,971,453,644,1187,1451,1377,1060,1819,2225,249,271,2616,230,1156,1474,1055,1855,2020,1508,323,790,774,486,845,2039,286,412,2468,2663,2543,2299,488,2341,2899,1849,222,1707,2804,1157,1838,1761,1841,2341,2572,532,2908,1614,880,330,693,311,2522,2524,1756,1559,816,2109,138,1012,2217,2876,941,515,293,2961,1618,2929,1486,2783,2731,1328,436,1863,1139,724,965,1671,1785,2601,768,261,1574,1256,2157,326,922,2977,1428,1678,1561,2881,1094,1799,744,1721,498,1029,140,2031,1534,2843,567,575,2953,1621,1725,657,1042,1974,2016,678,2697,385,1334,324,580,2256,786,1198,1374,142,727,659,287,2566,17,2155,498,126,649,1393,1279,975,1670,278,140,2031,2491,1321,1905,2781,1438,16,318,923,471,1717,476,2062,963,2650,2516,2470,671,674,1522,1531,1935,2839,2120,1895,180,1868,148,792,2088,1841,1988,987,1827,2888,1404,1302,1038,1884,2991,2386,2194,1259,2173,1000,147,2847,1006,2895,455,1796,1921,2144,2530,493,1899,1881,1341,1295,1703,2262,1590,1910,327,2067,484,2132,132,285,1958,2454,986,750,2755,2826,1925,423,1656,991,1573,197,1071,1255,1769,2254,1470,2917,223,2126,2332,1016,2643,190,58,217,2476,1784,939,2125,9,2395,1566,1886,888,130,2103,1209,1635,685,1612,1289,2715,2591,2568,1841,615,471,1834,1608,675,2843,507,1504,1732,193,2911,738,2445,2147,1620,632,1387,803,374,2299,1252,529,2538,2629,1172,425,370,1690,2489,304,601,1338,536,291,1860,1260,1093,1311,2497,2735,2637,39,728,2720,2249,1126,2618,2882,745,709,376,1828,640,2633,241,1365,369,1574,2742,2027,586,2057,1553,2127,106,494,668,1102,603,2587,2239,1805,1113,940,2283,2247,1331,54,682,694,2197,1303,235,217,1795,1155,2809,204,1352,2471,124,2111,2454,1503,58,1186,2167,1664,2766,2492,430,2801,416,1295,1572,2547,1773,401,1587,1787,1630,909,1916,1352,2969,2938,2350,2924,274,1935,1960,1020,2762,211,2568,2318,891,1129,2847,36,2207,563,2907,614,2097,278,2467,1632,627,1534,2020,1938,2284,2833,1294,1812,1800,2430,820,243,1385,1599,1428,897,414,205,255,2728,2319,813,647,1794,1660,377,2516,2638,1932,197,2216,344,456,932,1256,2043,1603,654,1553,1892,2646,2150,138,938,1534,1054,338,1458,1664,1958,738,62,1676,2031,883,135,2038,2880,1358,2858,736,487,1350,1072,2584,2859,890,1626,1837,2726,2541,1826,2519,2801,2670,2151,1518,1466,1109,1018,2197,2938,1011,2113,1947,809,719,2831,2654,1114,627,11,2091,280,1722,1181,254,121,2396,93,839,445,1652,277,1393,2353,822,2473,1762,2547,131,2610,1256,2513,2956,736,2124,940,2760,2801,1751,312,1567,2786,582,2313,881,970,135,2430,10,1210,1151,362,2853,2230,2025,108,2384,1583,2616,2342,2689,207,33,708,1899,1402,1056,2882,848,2206,141,2952,1470,1901,175,186,1388,1891,1383,322,1873,85,1972,2676,293,1595,1284,589,2006,2082,1643,1849,2049,1981,340,691,1595,1855,2776,1441,1535,2217,894,2064,1869,1662,551,1413,794,2566,2575,2657,2689,58,1150,215,1577,2820,1308,962,2018,2771,1127,2990,2946,84,2791,2220,1807,865,2145,1754,1648,568,1386,940,316,1180,168,1952,1657,2093,81,2930,1785,2338,1239,2599,957,2682,2295,1249,2218,610,1697,2357,404,10,2193,1731,2434,2785,1337,1605,1242,2688,1988,2047,1075,1931,1528,2020,2851,2340,529,730,2213,1209,1470,2735,1956,2360,1477,973,2120,2890,949,1644,293,2205,191,2331,1435,1181,2000,1972,1937,2078,1353,309,2238,871,328,2006,1206,1927,1216,753,2586,1035,2082,1809,1645,2864,890,746,828,263,170,2642,418,743,159,2312,2945,2430,2101,1283,2358,2114,2313,574,2423,1094,2053,1246,1454,567,2994,2726,1189,46,1709,1894,2638,80,590,195,1571,1078,548,2073,2012,1565,1874,1878,2457,2278,708,2772,816,337,2120,1467,1404,463,2136,1294,895,1632,2376,1104,1222,323,2501,2086,1536,1873,2750,1855,2341,2021,265,1336,2832,1685,740,356,869,641,303,2671,321,1961,1155,1699,2729,218,385,1001,985,855,1527,2470,618,1942,1325,110,454,649,1122,1418,2638,2152,2529,2733,2699,2884,1697,1309,2836,2120,2109,2904,607,1143,1395,1352,2628,1061,2412,2881,551,1940,2264,2796,1573,2702,398,2585,887,1913,2844,1862,2818,66,420,2962,183,391,2661,1459,1124,307,862,1505,541,1290,668,1191,885,2273,1084,2598,238,2955,1273,2749,2805,2862,24,590,1842,1290,2717,1402,2031,881,1382,44,532,219,2820,213,2298,1190,2668,1290,1895,1350,149,2830,1881,717,1238,2324,521,1158,2729,17,326,737,1999,1692,1880,8,1359,1911,713,284,2488,870,146,1853,2689,1625,2885,1616,1320,787,680,2313,197,962,108,187,400,178,1088,50,1077,1118,1256,2012,990,0,1521,1856,1980,1454,1330,377,1780,1588,1741,415,2007,2645,546,1989,1509,1968,1165,1919,2859,2939,346,164,1726,710,1196,2246,408,231,34,2409,1070,2530,171,960,1951,1492,1610,882,2479,2139,2678,69,602,898,169,87,2211,2699,371,2308,1665,2597,253,27,388,1821,2956,197,1078,585,651,1988,1805,1183,2173,2177,1948,2985,1991,398,2187,1466,2251,1962,2134,1594,2130,2638,2536,2442,2429,1404,2222,2985,1237,51,693,2337,2462,2794,1770,812,2084,2691,417,1983,125,538,1227,1436,2314,787,903,2153,2425,1942,2797,916,1412,1942,894,864,2928,903,1330,505,65,1787,903,354,1033,2703,676,823,1620,2441,1241,2316,508,2270,206,1642,2037,931,2929,2783,2809,236,2380,2000,2715,2981,1593,440,1048,2726,2814,2229,431,1243,2128,565,757,2321,757,316,1903,2849,347,2286,387,1526,2022,626,1402,562,2387,2012,402,789,2578,151,2288,1913,1899,1543,1457,2408,504,2435,1148,2915,2717,2813,1327,1213,2438,763,2046,192,262,1003,711,2036,2649,961,1396,660,242,2403,1125,194,1671,2344,921,1556,411,2365,1911,550,1485,1820,2589,2938,356,456,2671,150,2890,851,2153,1830,2072,913,1899,1882,2163,319,1587,1805,164,1033,713,2534,1948,2012,2407,2182,108,2622,2461,254,136,1439,1248,1255,827,1256,486,2938,2422,604,2720,985,2919,2188,207,249,1926,653,1999,1059,1080,879,1718,391,292,2880,1768,2959,426,291,417,1462,1431,1239,601,1430,1780,218,2764,1531,472,571,1823,1175,2598,2119,1899,754,2800,2783,2423,929,2928,118,2437,1941,776,2693,334,2264,2030,928,2096,573,2921,2960,201,367,2223,778,579,1251,974,184,1763,82,2552,2840,2048,1883,43,1378,2198,967,2223,771,640,1495,2701,1982,75,1345,851,427,2772,1729,662,495,2327,293,596,2083,2448,1025,928,2043,437,449,2878,945,2343,2531,2739,218,1160,247,2847,1887,2044,1544,1714,903,1734,2823,1283,1213,1106,2016,685,1823,686,1704,507,2880,2518,2947,184,174,2818,91,1805,1601,1404,2057,967,608,1397,899,600,2479,1040,2203,2275,1227,2946,1057,1627,589,444,826,1292,1543,1444,2699,1194,1047,1173,1556,855,1080,2730,465,883,2536,532,832,287,120,39,580,544,1701,1497,1662,2427,1404,2730,838,1839,2752,2425,996,1473,2261,2658,1378,2158,2646,1411,628,1817,2743,2960,663,2394,1278,2547,1332,1928,197,794,164,1586,166,1062,1146,1282,2057,2287,2223,967,1697,1724,1581,656,2670,2759,1991,1568,2730,1247,1845,1839,67,1678,445,1365,214,1037,1546,2418,612,2891,503,2245,527,1382,1087,2829,435,2775,1270,214,2362,438,884,1957,1487,594,1112,2029,2088,518,840,2145,1603,225,108,1017,1265,1589,1875,896,2172,1671,2561,1147,860,428,903,1207,263,1218,1277,787,2177,1921,926,296,2921,403,136,1499,2056,1569,600,1306,2694,2932,1502,196,852,2995,1924,1163,1752,218,1856,185,316,2548,552,2750,1183,2141,1975,1777,1551,2269,1325,1380,88,618,518,2627,133,2485,1454,1771,1099,605,2301,2351,2193,2598,2218,2685,413,1099,943,2247,2948,816,136,2757,1603,298,2327,196,2229,2948,2558,1820,2926,738,377,2004,1734,1305,1660,559,1659,2335,2547,2720,1774,2928,270,2725,2195,2994,1070,349,2429,1370,2928,2549,631,1891,1107,777,1085,1493,2053,2875,1578,2723,2280,714,2808,1736,2226,803,2991,713,2646,607,1723,2000,1482,2700,626,1300,2140,312,1405,2728,2502,2940,1328,1739,763,1417,2014,1533,2762,334,2863,2232,1869,204,1546,1454,1256,2436,182,2859,1154,1963,2930,1462,785,2143,688,2493,1386,2562,1114,1550,2506,2848,1982,1609,237,1776,2174,7,896,720,906,2801,546,2584,2941,989,309,2576,1298,479,122,1951,2877,325,2210,1145,2875,1131,740,1281,1929,2558,534,1642,1442,595,617,720,2151,403,275,337,1144,2089,2836,2826,148,141,1610,2925,933,1460,485,1362,142,1345,1962,2595,844,1861,2053,1698,665,1570,1462,2133,463,1017,843,2966,331,1925,1750,2998,940,1193,295,2893,1444,873,776,2390,962,525,476,88,985,2043,1057,1854,1092,356,1568,256,566,66,2722,1380,2825,2214,2314,1405,498,473,2186,1122,1384,2179,556,2507,178,2765,781,1546,2709,2446,2897,442,810,927,2547,680,2805,1414,566,2893,577,2621,1840,643,1539,595,1568,1562,226,2395,1634,2705,2576,2189,856,682,2718,1531,1476,2229,2240,283,2258,1357,2504,2240,494,1065,1591,101,2681,2536,2589,2086,2086,756,543,2770,1405,1532,40,349,789,1151,761,1546,2570,302,701,1623,1410,2536,2639,1639,1845,1216,1077,1787,2988,1317,1744,542,1121,2846,1041,1175,943,436,1421,1160,962,1941,1205,1022,1521,894,731,2085,2659,1389,628,806,1345,1252,977,1520,2949,1547,405,50,2476,1976,1023,246,2307,1233,700,967,2610,2864,1974,536,2106,698,1513,760,1923,2243,1898,38,332,1921,1368,2469,1390,1194,837,2482,1267,1642,428,2396,1859,1472,363,236,617,2731,627,259,1866,1206,2801,956,1130,1611,764,2399,2173,2972,2687,2409,2505,1500,1756,248,451,906,1447,1147,621,1583,902,2137,1544,1002,996,2653,1609,2912,398,550,2885,1208,1433,2169,2609,58,2400,281,1626,2202,2181,962,392,1329,2930,2407,1352,2746,1468,76,2143,2443,1950,1920,291,60,2604,2305,408,2202,193,741,1387,1609,824,438,512,2512,2629,1164,2687,901,229,2773,1842,1399,1840,620,2405,79,1103,528,1652,1603,2544,811,2562,2300,1292,2442,858,2564,72,1053,253,1318,2206,2655,2415,1875,509,174,2785,747,407,2870,216,1911,1058,1056,973,2684,821,1481,509,1976,1563,2856,478,1973,2144,2406,1346,2617,1836,1745,2898,2032,2096,504,1358,693,2534,741,918,1090,2940,73,2119,2315,444,1756,2650,1440,2763,600,536,1326,1476,699,197,2034,1936,35,423,1344,1352,459,715,2607,354,545,474,102,807,1452,2808,1014,1610,656,2064,2723,2343,1971,2079,1623,2734,2092,662,2797,1675,2870,278,228,873,575,1564,2934,872,2165,1309,2218,2697,2207,714,2299,1050,1424,1811,227,1146,2392,203,2244,2020,251,911,949,1939,756,1188,2677,96,2981,857,2441,780,1696,473,2785,196,622,772,770,1449,2423,2093,2741,1677,2851,367,1991,329,1690,2943,1302,133,371,1409,1506,1964,1306,2798,1251,2992,1922,933,2755,2267,2018,2455,2232,2392,2180,1462,953,73,1342,208,2721,192,2354,2075,1780,1662,1131,107,606,155,1733,2982,1652,1714,2223,901,1653,1236,2902,706,638,2349,22,326,1685,1668,1689,534,1554,1861,414,1686,836,533,297,666,1379,1404,1863,1487,1782,1958,553,1393,773,417,1222,1931,1487,2395,905,1846,1546,792,1029,1608,684,842,78,1911,411,1100,1851,829,486,1160,2753,979,1414,1020,1343,1030,2525,431,396,1234,2889,402,2099,1372,1837,2689,1477,819,1335,2766,2905,1716,2299,835,1781,888,553,2054,630,124,1622,2082,884,376,1984,1694,1347,2841,2882,2282,128,1755,1503,1495,1533,2847,2442,2992,1197,500,1272,1393,1487,2465,1037,2727,896,2672,269,2451,2770,1551,2185,2758,2254,1413,2082,677,152,2066,1121,70,1044,1214,138,2253,844,1097,1918,1684,1863,1789,2473,1276,775,1520,1712,1975,637,511,1486,2515,1666,957,628,772,2167,2683,849,2724,1843,2401,1191,2946,463,2486,2846,574,1941,409,1338,2965,211,1195,57,2577,2147,915,1995,1052,318,1933,102,2727,486,2417,358,1603,891,697,1753,2983,1748,1763,2898,1911,2731,2355,387,470,2796,1324,903,1216,2067,801,2199,449,1613,1233,1070,929,808,2666,1395,2737,2806,1744,2948,2343,573,1278,2069,1946,1487,2003,1841,2667,1129,1128,785,134,1662,2423,2540,1971,491,675,1256,2642,1311,1191,1174,508,1384,469,2700,652,1476,2383,495,628,2769,56,2806,775,1076,2074,252,1919,2013,2426,2785,1321,237,2611,1166,1730,2981,1797,1364,2455,576,2317,1488,1719,2689,2732,2563,1667,1158,853,2047,659,289,2279,693,2120,160,212,204,357,2156,2672,194,560,870,2663,526,2086,1175,479,1525,86,2324,98,2513,2515,761,173,2905,2857,1754,841,2571,2056,1036,2928,1221,12,2517,946,1624,924,2593,2906,335,1489,741,534,597,2466,2220,381,1396,1814,1876,264,842,2938,2867,2803,175,689,1776,2662,1078,2325,1888,2110,882,1471,1107,2083,2356,460,1406,2892,1830,955,582,546,1133,2177,1166,2449,1858,659,2359,2241,1262,2087,472,42,257,1248,2648,111,1887,2948,2796,2014,305,1775,43,648,1490,2430,702,2070,310,338,988,1680,1574,2077,2076,1942,2644,1663,2534,2282,1579,2947,268,1893,2873,672,1063,1619,1975,2285,2296,1155,2473,2419,2668,2545,1315,2711,1776,803,2687,2182,1774,1766,1587,1341,1219,422,834,1528,871,1783,372,2699,2886,2834,1810,385,1243,1069,1434,608,144,2229,2455,1747,959,2415,1574,2407,1925,2554,152,1198,1312,2732,2637,2136,1755,1381,1657,2066,2677,901,2098,1604,189,1427,2137,343,2118,914,1501,792,745,2146,349,1680,656,1562,756,1507,908,1256,2979,1021,1632,2816,903,323,2637,1721,1582,2139,33,888,2720,983,1498,2743,2694,2583,998,2385,343,36,145,1085,45,2805,368,575,122,2919,2896,268,1988,1280,824,1378,239,1235,2118,931,2956,2227,803,1546,552,1745,2810,2592,2841,2188,1962,1839,1671,606,403,42,2064,1947,981,2114,245,1594,1750,2026,751,2441,876,1688,1199,1609}

    {2147,2431,1349,1015,708,1754,972,2009,2083,2383,1553,2208,1348,1475,1530,53,2053,1503,1997,2704,1856,1840,2928,1607,1515,1123,2845,1761,2424,2478,2546,735,101,557,2920,2695,846,1372,1294,2873,2236,1532,2948,339,1086,2235,375,718,2263,2755,2628,2619,2551,734,1865,1406,785,349,1429,2713,1902,1976,2938,2969,1548,27,1532,2766,1910,2859,1620,1700,1483,1921,1217,1137,2751,738,1731,1378,1366,2272,2397,2066,1730,2510,1029,971,2770,47,1594,1942,2556,28,2693,2033,2996,154,208,2723,2414,642,843,1240,1549,2151,224,1990,1300,2727,2345,2995,1663,2952,2878,1313,2149,792,61,1051,1313,2929,1073,2825,290,1560,2539,1192,364,1631,1389,1943,136,1818,2559,276,234,1679,693,2694,1905,1407,700,2821,282,1134,2183,307,2173,2855,1772,1185,2620,663,314,674,38,333,214,1734,1708,1615,2774,1839,1142,2756,2164,1556,571,536,480,2280,1697,919,466,1231,84,749,1184,1520,975,2401,1155,2819,1445,1921,1976,2867,1533,2115,1676,2012,762,1196,2433,308,2892,238,623,2086,2773,1780,379,1326,1648,58,164,1410,2611,2424,696,1415,1451,657,756,504,2698,2152,2448,1896,2984,481,1200,628,1177,1606,39,1178,1058,1068,2370,574,792,2547,2172,1823,2783,1323,385,87,1824,1403,756,1456,1234,918,14,2660,307,1648,2981,2181,1669,281,325,319,1963,2430,2071,1406,1980,1568,1310,1314,253,2018,854,1837,2583,2807,1972,2547,1277,1433,776,821,792,690,2602,655,1988,410,628,2496,313,2868,218,2094,1537,18,1423,2095,95,1857,10,473,1148,1245,722,842,2909,119,1652,2712,2350,97,2641,2522,821,2344,1295,1718,2144,2378,2879,11,566,531,2656,1225,985,808,2374,1696,2291,1019,477,2951,11,1889,765,2198,1347,2717,2106,2723,2403,2209,2440,1212,225,856,238,1758,1601,2320,1931,2944,506,1440,404,939,2217,892,2632,2936,1638,845,2694,112,1967,1519,1055,2027,2277,496,1763,1758,664,1776,2958,2506,162,2080,2638,828,2631,2638,2541,1090,2037,91,612,1214,293,938,1049,2541,1716,1244,43,366,2593,2925,559,1363,159,1507,570,1506,2676,1102,547,2921,2379,1981,2280,2906,2556,2591,945,597,847,2223,2230,1200,203,2908,1498,1470,633,703,267,1629,419,1091,875,20,1808,1756,1466,693,2906,2000,635,240,505,2011,1269,770,122,910,2430,66,2333,798,2055,71,798,2676,263,263,2266,2966,800,2487,416,1049,1574,2915,26,2409,1306,712,1081,1104,967,2223,580,397,1056,2828,2912,753,18,2662,936,2930,517,913,996,2549,874,76,2048,2480,398,2444,2856,1706,595,1157,533,1778,851,825,2806,550,194,1668,1767,1912,7,897,679,1386,2690,2916,926,1571,2333,1424,1707,2012,1149,2003,1839,195,1892,2344,2328,705,2169,2904,2509,2367,971,446,1774,13,1050,1726,1942,1256,1888,2420,380,2315,2255,2536,2940,2566,1596,1078,789,1687,2093,2937,2359,1274,2686,2218,277,1440,2400,39,1954,1571,1474,2661,197,1942,250,2706,1933,2670,2345,1135,2033,469,2205,2659,7,2130,1341,1725,1987,1005,1882,501,1892,1027,273,177,1705,1473,1393,844,695,1533,1911,2903,2161,61,2223,620,1953,43,2675,2957,1798,2223,1600,1283,2381,2793,1980,156,1944,480,752,826,2933,1029,756,1555,673,1439,558,844,233,1088,2716,1575,406,1207,624,1093,1441,2705,112,1521,1033,1484,173,2942,1487,1697,2175,1016,1522,2197,193,1263,489,1494,2192,1422,2233,382,468,55,2337,1239,1124,844,1478,2531,882,2906,476,180,1687,2675,2866,2232,269,986,268,202,2451,2413,1463,1710,434,2847,773,2345,2930,1980,196,2330,1980,112,2799,1786,2111,348,350,1311,2919,1439,1727,2087,1760,2945,919,696,682,112,968,587,1735,1087,317,642,2412,1008,1124,2050,1949,844,1066,1693,2289,928,2462,1591,466,2082,1195,1517,2724,641,2822,804,2733,2449,1948,1663,967,966,2399,2289,426,2215,30,1440,287,2841,81,1529,254,2425,2742,2584,2588,433,404,2523,1156,1945,2612,2672,2570,1245,1486,1546,1910,1002,2031,2649,2639,2928,549,254,2017,1393,821,2514,530,2122,337,2183,378,2443,1636,1221,214,392,554,523,2439,923,320,1854,206,627,1603,1546,964,2624,2917,2758,1383,2000,977,1274,1711,152,2189,1152,2339,992,2069,2771,52,341,1839,2045,1804,2950,634,1870,2015,770,2946,534,638,1579,2393,93,1477,178,2051,2681,1439,2116,1071,2314,628,2035,561,300,32,2882,2234,1999,1889,2148,1002,277,105,82,451,1855,851,972,441,1738,1955,1117,434,288,1830,508,819,643,700,903,1307,802,2330,1286,1094,391,2311,935,2707,882,556,1106,978,2555,1540,2299,2569,2081,1982,1645,2775,2980,606,42,759,739,1258,209,2182,2771,2340,487,416,2376,540,1355,448,1742,1591,1285,729,742,858,1905,1799,220,1854,2903,2209,1970,1717,2044,1101,341,2360,2170,2093,362,2313,2199,86,1313,2193,1945,703,1745,124,1223,2189,2261,587,1487,268,2174,1986,1121,1799,2398,2596,1440,1088,2093,2447,1355,2052,2921,1232,2862,744,2745,2778,1647,348,2957,881,2139,1695,2005,893,2953,1948,526,1105,2687,883,1375,136,2142,993,2016,1301,664,590,2497,765,441,90,545,1028,2491,2713,523,1062,2503,2647,984,1450,1782,2432,1083,1166,2221,1673,634,2409,2746,2883,535,1404,1746,617,104,2725,1172,611,293,1308,1009,2548,1437,120,970,1082,1651,2425,204,173,2109,728,713,617,682,322,1291,1325,2537,1107,1546,1542,1604,636,1388,629,2888,1347,2212,2650,2999,1216,1189,1139,1228,891,996,2327,2833,708,872,278,658,1170,140,1574,899,890,2464,283,2480,2417,579,2948,504,2635,1422,1427,497,177,816,1622,1367,2649,680,260,1274,352,2117,1848,1690,2914,2994,1850,1456,1607,1202,2016,2042,607,1256,2099,830,642,2677,1745,2210,726,127,1545,732,2745,2880,2294,2547,406,334,1992,2174,1484,107,2701,1461,1156,2370,502,1098,813,1106,1997,2512,2698,210,705,61,2521,2061,2947,1462,1822,1283,2459,1582,1852,100,404,2787,2803,878,2014,39,2003,2504,917,1725,554,1579,1073,1976,1531,2837,1470,1723,887,132,1636,925,2831,83,1424,2276,2144,2737,201,2737,2902,2762,1701,497,127,2527,514,488,1068,2900,2655,1825,2889,2861,393,2121,929,519,1122,441,492,2931,319,661,2193,1159,2822,1354,2543,733,285,1867,820,1333,913,759,1248,2776,2641,1825,2536,2547,353,1841,682,2147,2444,95,2920,2605,794,1732,2838,1143,642,1057,1618,1740,1256,2280,1345,1649,1281,1047,2787,2801,2902,468,2259,1,794,154,449,2031,2805,521,2717,2674,1054,1221,730,2310,856,341,263,2257,982,685,667,2661,615,1907,2071,2005,975,2260,2508,2202,397,564,1957,1599,956,200,2451,759,2585,2326,452,353,855,1019,360,1176,2295,2710,441,642,1224,1026,1366,2031,2484,467,642,479,2543,2444,567,1997,2423,927,1851,383,93,1136,1636,1080,2031,1218,670,1169,976,1701,1195,2787,925,1175,888,2535,1892,22,2087,532,1476,588,353,1969,2010,2123,1034,109,1733,1996,1360,796,334,782,2668,978,2865,969,2523,1114,1365,1870,2370,182,1904,2672,1373,2842,2787,1063,1806,1894,204,2040,456,1546,1569,1005,844,2536,2824,612,2694,2090,2446,1549,1378,113,2601,42,1486,2719,2768,1379,1296,1109,363,2223,1976,2739,1829,668,1855,1657,185,2689,1322,1945,272,2626,1788,406,368,1668,2048,1691,1396,1444,2241,1445,1792,1325,1509,2020,1474,1212,2147,1658,901,930,2098,2359,2355,1636,2130,404,2688,1097,2334,1632,1564,1072,804,2690,2916,2516,2693,1921,759,1971,920,2558,784,2677,450,1636,1214,2981,2099,1020,819,435,68,150,2547,734,1813,1486,1921,2724,2792,2549,304,2163,1743,2976,2379,2560,989,1750,45,163,803,1057,2879,831,1026,2182,2867,2822,1447,2336,374,2220,483,1102,1263,2973,755,1767,1031,391,1332,2147,1184,483,2531,1775,682,1775,425,1416,1486,263,1413,2420,408,982,620,1503,1662,1784,1321,609,1350,2813,386,365,2382,158,2715,2576,1278,432,1051,1954,789,1336,1978,2963,397,696,2167,2009,1204,2771,1466,787,2495,1102,25,1043,701,474,2816,2792,2306,1214,1887,925,3,2231,883,55,1212,1913,1919,1295,2869,2583,969,2009,1718,1350,459,360,1720,2852,2738,2176,2924,188,337,686,1311,1679,2885,1332,2346,1295,360,2787,247,764,475,1864,2772,2223,651,2034,2248,886,2805,1278,584,2442,1292,2849,1378,1414,173,2399,1010,1170,1568,1464,642,480,1396,1921,818,1230,1045,1345,1745,27,599,994,2502,1013,2574,1757,1063,2460,536,404,1998,2395,1290,384,265,2794,2147,1424,1271,1079,55,1835,2639,1745,456,2550,253,440,318,2127,2276,1148,1865,2975,2258,1428,917,2482,795,196,588,2352,2620,1909,2293,915,797,669,331,1250,725,395,204,1655,205,116,1410,2968,683,1744,89,554,783,785,2673,1300,2641,1731,1934,2041,306,2965,2275,2988,2549,1451,1111,431,2595,1137,97,2912,2565,2708,1161,1276,1159,2430,2558,2923,1765,1593,386,361,2045,2039,1400,331,1887,1441,1316,1729,979,2960,177,2474,1799,1704,1988,1873,744,1405,2953,2100,1524,2601,2221,1879,1669,1690,512,2946,2012,1537,1151,1977,2537,1532,1352,1900,212,1455,743,2490,2411,2223,1039,1931,164,1066,176,593,533,2557,1197,2978,1890,1993,2948,19,2242,581,2699,1099,1654,817,765,2006,172,794,342,2821,524,2101,1304,1395,2984,2994,2146,1064,1516,1695,676,264,1979,480,803,2700,2395,2530,884,464,2705,2537,2200,2178,2087,123,1257,815,2850,198,2332,2388,1974,1655,2357,2747,2735,1162,399,1330,166,2382,1211,638,591,2290,706,1657,1669,979,1171,471,2545,1603,2237,1254,1256,598,1393,2574,2309,2705,2348,844,1619,2292,992,63,1849,1154,2984,1752,179,2005,1703,1449,2371,1459,67,2181,2760,458,161,590,621,687,774,2373,2001,947,2975,1278,2147,2825,882,948,2542,1342,781,2951,776,1602,178,249,2793,2471,29,2457,1840,2636,2552,1703,2778,23,1745,2447,913,362,10,2171,1108,2515,269,619,507,578,2148,212,2143,2627,1944,2404,2375,2987,2060,2141,2129,37,254,1297,2211,582,1394,2561,2148,1825,522,600,2198,2499,2809,2392,1975,861,1952,1743,2721,1661,1425,1652,280,792,2109,2665,2919,301,1230,1994,2931,496,1771,2811,1671,2784,1856,2498,2372,9,624,2511,312,2652,1175,1252,483,52,1452,1116,1419,2553,1470,364,124,1925,2695,42,2672,1574,398,253,43,1148,883,2502,2515,1227,1046,1734,2277,2106,2238,1683,2640,2028,1574,838,1110,1751,52,2946,1242,2626,1330,1849,2866,344,1793,109,291,1494,943,1577,1317,1919,1695,1897,2024,1758,1640,781,302,974,1345,2474,1985,960,2183,2407,2849,1717,1852,2270,1265,1198,798,2650,590,966,944,195,1462,2063,2077,220,1446,1846,999,842,1925,628,643,2148,712,2326,1136,741,2795,1151,815,2459,31,2252,345,2921,2428,1275,2736,2491,1791,2842,2508,2812,942,2981,2986,909,2604,685,2707,799,621,296,2826,1763,826,1529,2453,1672,1662,1341,1195,997,41,1597,1875,2894,1052,702,96,1980,2859,2608,1329,2865,516,2310,2647,1090,1345,208,1207,1340,843,1541,2696,2455,1805,2162,546,1837,1936,646,2789,5,1067,906,1396,2634,2964,1512,1470,2590,1511,1032,1509,2348,2993,1563,2889,1761,1369,1585,2580,1503,104,2059,2827,2154,1839,2442,2111,48,840,676,181,1233,1717,2235,2788,2785,1203,2116,2747,1827,2760,241,1017,459,2663,80,1223,2286,1402,1988,390,821,1064,2000,931,1268,2517,555,1935,443,1016,312,997,1302,280,1877,2927,1975,2346,174,1288,2720,1468,650,429,2302,1674,2341,2185,259,287,776,2058,928,951,1965,1031,644,1789,2974,1576,1119,1574,2060,1971,2981,2948,1465,129,2745,2848,1783,592,199,2012,1138,2220,2788,2871,1552,520,99,1308,1338,421,1954,2232,2673,268,2452,2472,1758,2939,756,1934,244,2363,108,359,2191,2135,2608,2940,309,2160,534,1558,785,1930,785,2204,844,101,2109,2774,2389,2347,158,734,2999,2547,2801,1174,2352,1030,2219,1961,1677,2603,957,2475,925,2891,494,1060,2683,2582,2767,1491,900,1388,2197,1779,1189,608,2549,138,2369,2692,1132,682,1342,590,2480,814,2480,952,2352,1683,512,49,178,2908,2645,1404,761,1089,1200,2741,1891,1226,1905,340,1937,486,1023,165,1787,1607,2604,625,490,2623,445,2806,2107,2610,927,345,2948,2389,1831,1007,456,1260,938,228,866,896,1583,1914,1393,345,166,1919,2730,2809,281,1546,1178,2558,995,94,2892,2674,1095,1308,2368,2924,439,530,424,143,1832,1980,2438,1424,1220,1925,2355,603,796,413,387,2497,1917,1115,2766,885,249,266,2690,2268,1759,6,876,1035,1856,2585,2222,1949,2274,1632,1933,650,1872,864,741,2068,1336,2257,18,1336,2166,139,2631,207,1633,765,493,85,2567,221,2721,2906,2366,2385,2528,2793,551,1780,1402,503,2704,1609,1439,2153,21,2050,124,2935,2357,74,566,626,1630,882,1366,1306,1911,1516,2340,76,499,1408,2782,1584,2714,796,214,1310,1278,2092,2335,788,2425,368,2189,889,1292,2843,1669,1780,482,692,1554,2184,13,2859,2600,890,2393,1469,715,792,2057,2345,2168,2970,1104,1802,390,2801,2857,668,1290,2104,2190,2281,1867,2101,1745,1345,1962,2523,390,2955,2510,1745,2989,360,2228,1393,2045,1881,664,770,1441,315,1154,1414,1601,2918,2522,384,1188,277,1678,740,1179,906,258,1628,2469,681,440,902,355,699,1830,1275,1503,665,1283,2614,2901,259,1690,510,1702,1250,1646,720,1557,1131,454,2954,2630,340,1583,2753,2946,1360,2910,1139,56,1885,2232,2820,693,137,1764,1855,751,2913,2817,769,2626,1460,2481,767,2364,404,193,372,1771,1244,1504,1906,613,726,1077,1443,1155,2392,1253,2835,1770,2482,2492,116,1685,2860,1545,620,2651,2002,196,537,937,1815,967,2274,193,2872,1518,1847,1749,2576,2924,2451,1376,2613,1270,1984,1509,1330,167,1510,1362,696,1954,1807,538,1229,1634,2790,1313,1474,1256,1401,636,1878,1216,566,2900,2816,1057,2329,805,2859,2019,1453,153,2620,2265,466,2276,201,1726,2846,2018,2478,1276,1523,325,834,403,994,2284,232,68,2462,1855,2921,2649,1319,2805,1029,1182,1480,351,1729,1391,1537,649,2197,2612,645,2167,80,2108,974,2310,1775,2647,2753,954,1055,1093,2536,758,812,779,2297,2,912,203,52,225,2680,2177,1209,1476,2271,1737,2218,1886,704,1589,2887,2956,1433,1256,1745,104,336,1199,316,2087,1160,462,2672,2184,1609,2477,1603,1194,1244,2359,2626,793,2961,1317,2112,1801,1807,1426,238,2251,1306,1096,2462,1448,2967,465,1192,2507,110,850,1290,2250,2532,279,221,457,1637,2669,2526,894,2008,1578,2939,1641,925,2905,2644,880,656,97,1669,1406,1864,1491,103,504,456,831,2928,2289,1466,638,2815,1643,1296,2717,1058,242,196,2611,2981,617,2781,1745,149,1529,1350,2303,158,2863,1716,1683,1008,1554,2948,1816,249,1147,2310,2458,2664,2849,1875,1925,5,1120,844,2159,2055,1679,1120,959,66,2424,2744,1610,2971,903,803,1749,986,1904,26,2606,866,244,569,1609,2494,1245,1959,2349,1355,1723,1440,844,2450,812,2020,1908,2101,154,725,2569,59,397,97,315,707,1287,715,1823,2394,2611,1885,299,2745,2429,1849,2520,553,2594,1915,269,2198,1397,1580,1381,1812,2581,1806,844,489,204,1371,2779,2087,1589,2425,173,178,2770,583,1119,2131,2573,841,1035,912,1295,1638,2779,2244,2345,2052,583,641,1077,65,1288,1068,1617,117,1731,1475,2410,662,2867,948,389,1420,675,2421,842,787,2399,1145,2101,1398,1306,2562,976,860,2262,2099,2497,2579,2740,1107,1266,1356,1167,2463,158,196,954,10,723,1544,993,2959,1024,1070,2379,868,2299,1393,930,1302,1119,2698,580,2045,2105,968,747,409,816,223,131,716,811,2738,450,1598,1666,870,1422,2250,92,2304,2248,1199,2351,2070,461,616,2340,2813,1389,2601,1767,2402,1514,1431,115,1293,40,1200,1871,712}

    841

    1693

    Returns: 419405253

  77. {1200,561,2687,996,2157,2510,463,2910,1443,2771,1671,742,7,1216,737,2821,1219,2778,245,2524,681,1070,831,994,1657,2664,723,2970,1016,2337,1790,1623,1672,1248,787,2889,1001,2327,1535,538,1506,903,2046,492,2082,1632,2644,2651,6,1534,305,2282,2071,2392,524,745,2861,1004,629,2271,219,1146,950,798,1879,2744,1025,1032,2756,1444,1858,1760,1131,549,1065,1214,1545,84,1682,570,709,2243,965,2183,1020,659,1770,1682,1136,2434,1266,2626,666,1042,504,989,2228,832,1600,623,1391,293,883,2842,2900,2691,1604,2799,520,1942,2828,2066,2163,183,1207,1791,951,2693,925,1831,2438,1170,112,69,2477,455,625,1374,185,394,2159,1705,389,601,97,1132,1678,2398,1712,732,1800,2108,949,321,1441,1278,64,2945,1976,1290,2073,2024,2779,475,2722,141,345,1629,2141,254,1682,522,223,548,1102,1819,201,1466,40,1075,1052,2808,1344,2710,2498,333,2760,1535,2275,474,1993,604,2476,310,1511,1731,414,1583,511,2765,1747,876,2549,2123,105,1849,1582,2084,987,1257,2866,1989,193,8,2675,1977,435,1634,1756,870,2286,786,9,698,98,1652,2504,2365,1582,2306,1241,750,2889,1129,1419,880,1786,650,2610,97,1369,2985,988,2287,2090,2887,2396,1919,1720,916,1602,2103,530,1278,1506,1153,1682,1757,2192,1932,2525,2089,1995,2751,307,1959,2980,1627,2888,2298,2542,609,2784,229,2817,2271,719,1565,913,967,655,2399,127,943,181,117,609,2505,2178,2729,194,783,1894,1722,891,60,879,2881,306,2155,518,1161,2515,2695,2546,417,1827,2385,1944,721,1060,2152,2362,68,643,2068,141,594,2079,869,703,2001,2794,1666,1019,188,113,2881,2603,906,338,962,712,2867,2767,657,768,2510,1501,679,2082,871,1030,205,441,2225,1507,37,1801,2795,2851,2500,2563,1940,2171,1297,2867,72,2123,1804,1061,2600,1326,1735,2619,1234,2759,1553,2462,1628,744,2665,2553,1191,1142,1397,2796,2027,1037,2254,2466,503,111,1036,2438,1011,2135,1271,1235,386,2564,481,1490,1923,2927,197,908,2669,2795,2108,1951,483,102,1851,1806,929,2548,2466,1175,2900,139,2392,1611,519,1243,1143,2195,1226,1494,2036,2177,2258,607,148,2549,2797,1592,2974,442,1535,1387,2351,554,2273,1041,1889,2111,2579,472,87,2618,1361,2911,2830,2746,355,2759,2942,810,37,874,494,619,1858,228,1828,661,2550,862,1723,2837,2312,1343,1536,474,1260,1527,357,1143,1323,1613,132,100,2259,2074,1926,1488,1272,1375,427,1611,2028,464,773,855,2558,141,1591,2305,2749,2087,518,2395,349,2801,1556,2118,1997,732,1770,26,2035,1924,1081,2730,238,1265,2857,277,50,1003,2254,342,686,2259,1252,2816,750,37,2956,29,1989,1541,1266,374,653,407,495,2222,641,1634,1123,1815,587,1620,1389,2307,616,673,1227,1531,2393,1901,1289,422,1501,1762,1189,1280,283,2175,351,1514,2754,2258,480,2844,2384,489,444,97,2188,1297,464,592,847,1454,1683,1860,872,2258,50,2395,697,445,1568,1550,497,2147,2465,212,40,726,1186,2826,259,599,402,1038,564,1059,1013,708,1660,1961,1419,1675,2619,74,2197,557,2298,810,1207,935,2394,2419,966,909,2495,2375,1165,1057,939,2159,2399,1630,508,2454,1665,2952,2735,1286,1931,567,2261,735,1466,2193,2156,2956,256,1610,2872,2268,43,1589,2072,2810,859,1466,2908,859,2066,1023,2922,426,1547,1654,782,1755,1483,2588,2295,1101,614,2345,2000,7,396,1850,1399,419,2216,2680,424,1604,1462,382,1858,1211,452,1520,371,593,1466,2174,1368,2637,1075,2198,690,1280,1593,113,1381,2732,2729,2308,1275,2551,1142,2745,790,48,2712,1030,2800,2676,1576,1989,1828,849,2869,1756,1442,1236,642,891,2900,553,2716,2618,1905,1715,1606,2617,2816,1526,1457,1161,1530,2672,1765,828,1199,816,2942,2747,299,2358,2861,1542,2055,1089,1940,2354,425,1010,109,1438,2486,1128,894,2150,1459,1433,2947,1917,1813,1337,1664,1813,1305,2729,1575,597,2344,28,1847,1782,1994,2363,2342,633,1716,1255,1693,1431,2934,1043,1653,498,415,2935,719,1597,2243,571,1123,1738,455,552,2617,1561,1355,2631,2135,2652,1492,2658,2709,1459,141,2697,1590,2351,282,2435,224,79,178,2308,2845,2627,2476,2426,1784,1416,2637,1257,816,309,1174,2425,243,2007,2207,1109,1423,2466,1594,120,2290,2798,880,2182,765,1999,474,765,538,1002,1760,2675,577,951,1711,1346,1512,1025,2166,2704,470,2672,2979,719,2952,1206,1752,1451,835,2906,2993,1320,1626,671,2408,504,826,2515,2746,1016,163,821,2396,2964,2901,158,1930,2100,217,2108,2742,2983,2522,1217,772,1235,1434,2856,2474,431,1428,571,1285,2739,1956,2807,1819,446,40,563,94,1007,2513,1279,286,1506,898,631,774,1212,352,1009,21,688,1986,2617,2710,70,519,2199,2666,2820,1520,1916,339,2042,72,1467,1710,637,1543,1296,570,1721,1921,802,2600,2487,1246,2599,1331,1370,1118,2886,2443,767,2011,1036,1454,2155,1321,1347,432,1910,857,1479,739,2303,2769,1580,1045,998,1049,2664,829,2898,1313,482,1348,2563,2189,2617,1734,2584,628,467,2035,1461,2538,267,1862,1152,2240,1523,2826,1316,1402,2424,2315,893,2049,2203,2506,2833,820,411,2295,723,2509,1742,1862,654,623,276,735,1531,280,287,443,337,883,206,741,263,12,2710,2363,240,1238,554,1015,2150,348,1054,237,2617,350,2169,2922,1208,536,1213,2288,1213,494,798,791,1097,2360,2560,1915,1686,420,1159,779,2366,1757,2135,1927,2583,96,2737,1542,1499,2064,1820,1581,2583,552,1193,885,1560,1865,733,1696,2021,2282,1293,1683,1361,2989,1332,1036,2588,2246,310,2582,319,2056,114,1467,1318,2402,53,2292,2211,1065,898,922,1841,1860,1608,764,1866,1092,2367,2864,1615,1591,443,1891,1082,1928,2271,2494,1967,1522,673,1857,2175,568,1657,1828,2759,1513,2361,330,2813,1515,1735,389,2178,1488,959,1567,1190,905,2521,921,585,721,2062,1083,2758,1918,2845,1378,272,618,186,166,2359,2446,2140,2421,1107,1309,1852,417,1142,2012,805,1124,1887,558,2015,1682,44,785,2387,92,721,1201,1810,2450,1855,781,2870,1689,2003,898,1563,556,1785,111,2718,1121,2686,2851,321,2171,1189,662,2280,1698,1811,2335,2386,1673,1024,977,570,2783,1623,972,2980,1702,319,161,2138,1051,606,1068,1920,19,475,1029,2596,2241,103,1990,2831,2432,1086,1729,2111,2029,2123,1878,2053,1005,414,55,756,1279,2932,1180,2394,865,472,2895,870,967,2480,301,2089,1142,76,2298,1270,194,1925,197,1274,1212,2853,1071,83,1816,213,1833,112,1171,2001,157,2837,2246,2573,1266,362,1647,734,125,2392,2877,2496,2081,2433,1499,2248,771,968,1653,1649,1838,919,2682,351,1805,2144,1489,656,853,906,337,914,498,558,2871,2892,2928,460,933,1682,738,1399,759,612,1163,627,1330,1578,2180,1558,2181,1592,2166,234,2331,1408,2477,1223,624,486,473,1022,322,613,2340,1092,1811,1403,595,1603,2523,1171,2375,1142,1918,1090,2823,617,1174,2808,1686,2957,1342,550,751,1584,2518,1332,2880,260,530,355,730,767,270,2688,1395,2373,746,1015,2724,2363,2141,610,2088,2079,2856,2636,2870,883,82,2756,1448,496,2663,2278,1961,2139,2641,1252,453,1789,2592,698,309,649,2586,837,1075,1861,1723,1781,1497,2764,2275,683,1410,1948,308,1181,1713,72,609,2794,94,1478,508,2220,2823,967,1821,1466,1846,2878,2953,1676,528,116,707,2649,15,1827,184,720,2551,2951,1396,102,2752,769,1983,1199,2684,1096,1886,2154,597,1418,2124,746,1975,1091,2001,1440,1925,2590,36,1694,2994,1305,2624,2179,2366,1269,45,1485,1090,2034,1856,2501,1512,2105,597,1520,729,886,748,1321,514,1880,2318,408,2892,226,2650,453,1565,919,303,1644,30,2043,1139,1415,2191,1657,666,2950,2637,2966,2648,1512,2643,1724,1876,1303,2655,376,884,2601,489,2993,2057,1757,2926,494,1600,2784,837,981,116,1983,535,78,2779,2964,150,942,2928,2087,1164,1799,1953,41,406,911,864,1482,1275,246,2918,1888,2057,1518,1453,525,1708,1621,877,2554,2516,842,311,2507,777,1290,1671,2012,1105,2567,1241,2714,558,546,1494,1469,2138,403,841,1269,2071,127,840,997,317,2814,1189,1141,2266,89,2114,2782,1223,397,1919,1138,2447,1790,67,1548,715,2053,524,1779,1600,2562,1080,409,2502,480,1601,978,620,1415,339,519,2501,639,967,2672,1928,1611,471,576,353,1800,753,747,1716,359,2070,683,562,1254,204,2020,475,2230,1768,523,1392,2078,2130,417,1943,2249,1135,1053,259,977,51,1445,2254,2908,967,238,2533,264,102,1542,1968,1549,685,444,81,737,2583,369,718,253,1417,2030,2501,297,65,1837,2327,1645,2120,1440,2606,313,561,2769,1075,2304,275,1499,1364,2863,1536,623,527,1663,1652,2869,285,1807,890,112,2772,2520,2301,668,2843,1096,2192,1065,1588,2956,2592,384,1516,365,2209,2585,395,2794,2024,775,818,2939,2948,1459,1013,487,684,898,1876,883,1150,472,2557,1188,211,1835,1552,2466,1275,2108,1175,1436,872,2529,2944,2065,2121,2583,1613,658,825,302,614,1242,447,916,57,1212,1293,2995,126,1860,1722,616,728,799,396,2306,65,165,1215,464,2425,502,1278,682,1624,488,2330,1418,951,2483,835,1294,188,2519,638,691,185,115,2951,963,830,1792,1167,428,1541,1367,1353,1718,1959,2039,319,2266,2322,2928,1710,1665,2143,1645,1561,313,1484,2493,512,1907,2784,221,431,2467,1930,1722,910,482,929,2611,1017,2106,2992,2586,249,499,1828,1633,2335,2308,2164,2079,2752,1532,1124,1293,2283,2761,2989,273,2327,662,1699,933,1566,2268,1764,346,2265,2083,2719,427,543,1946,157,2616,1009,2643,102,2250,2018,696,2167,1960,1675,176,1529,495,1388,2697,9,1505,1736,957,344,1144,1079,2068,962,1295,1624,402,2355,552,2808,2853,677,1906,784,2057,2932,2501,2689,582,1219,1258,1275,540,492,2374,2050,539,653,1820,1915,1468,693,1800,534,2338,1466,2541,2028,1981,2317,2547,2987,1890,749,217,2917,1643,1557,2648,1407,2247,2185,906,1451,1771,2165,1058,1278,1233,74,1376,276,994,2050,1713,2614,480,109,132,596,934,2694,143,515,2491,1516,858,24,2289,2170,2142,261,2546,113,849,2408,2059,1122,1757,2371,933,715,69,1897,310,2194,2554,932,2563,988,1825,792,1603,1394,1297,1584,2397,890,1971,1478,519,2462,2640,2819,982,2100,102,1454,1998,220,1512,800,1648,478,2528,2920,1142,805,2759,2007,1142,2459,216,421,1441,2375,188,2536,2895,2168,1878,160,59,1090,2269,2484,472,698,862,2731,1014,2099,1743,2581,2808,1108,2790,2969,315,1292,252,2495,2170,2911,1895,1106,2617,65,2481,953,778,410,2993,561,2937,2492,1297,1600,1758,6,916,1557,1282,1703,20,2212,2335,2804,1168,72,2891,1824,405,2969,602,1632,2819,455,966,740,1700,492,839,1284,393,337,2648,1858,1485,471,2520,141,1189,2325,1339,836,2248,551,434,1949,1634,2945,778,184,2840,1532,378,1035,2624,1806,502,832,1408,2746,2094,1657,455,2960,2079,1969,2588,2057,1929,296,469,2518,2875,1356,1293,558,1170,698,1559,736,2013,1881,330,1732,825,1522,1874,42,1766,702,2973,2943,1881,2267,2611,2508,1753,2961,1030,2066,952,2055,2347,389,1737,916,903,2235,1340,2566,116,401,2280,1040,1745,2814,2477,1844,2920,1508,710,2173,1030,530,1382,2928,2229,2700,852,1606,710,1877,50,2873,93,2879,1729,192,2764,2427,1918,2061,2109,1463,1861,2390,2172,69,764,2333,959,113,2572,569,411,2076,855,2479,2000,2059,879,684,537,1988,2720,144,2192,2682,2477,2727,1600,245,266,2649,1248,834,1766,2725,2563,2202,1903,185,40,1451,1407,1404,2256,1017,1562,2422,2234,1175,1920,485,2867,1320,686,2506,760,764,2366,1103,2592,2979,2634,701,108,2232,678,1681,1500,451,1730,1523,2681,1859,927,833,1873,2401,1002,8,488,656,2244,138,1046,1604,2194,2439,662,2330,466,2747,1097,1758,2164,2260,2770,975,2656,2350,2153,1590,784,2625,495,395,367,2587,2028,226,1314,2904,2102,234,1301,698,1974,346,1975,2435,1185,209,912,2811,58,2040,402,699,1205,929,867,1808,2468,796,1858,883,314,1131,365,2506,1945,2831,2646,2711,646,2716,852,2075,754,554,2842,2894,2211,2195,1281,187,515,1799,2218,2084,341,37,227,586,615,1,274,923,928,1568,545,2211,2667,1415,2768,55,609,194,456,1115,2441,1408,1555,1777,1690,33,548,861,2767,982,547,233,2059,191,485,1124,1006,910,1707,1938,1934,2327,1072,1778,1781,463,1235,1202,1124,595,778,1600,2387,1863,652,1378,988,2683,346,2324,1407,781,408,2516,1849,1347,2439,2189,2021,2784,503,917,405,2849,1564,313,1928,2965,1303,1896,2937,931,1972,2775,1466,576,2428,743,2165,1393,1950,1336,1065,1764,2202,2826,1240,1147,97,693,2671,1250,1844,331,2715,2943,2640,758,2218,2092,2457,1050,158,1482,1912,451,2506,2866,881,2392,590,1696,1999,2222,2525,2778,2384,2540,1207,31,1992,2087,1230,2316,2666,1280,1380,1933,2057,928,1058,1659,2497,720,381,2535,843,53,2242,2694,1988,2939,406,117,824,575,2664,1783,858,2627,1568,1310,2322,1879,37,1987,1891,411,2497,2822,1596,2192,920,2036,935,2706,335,616,986,1205,2735,2423,2957,475,543,1050,2728,949,1607,830,120,1672,680,2531,2165,2725,2478,959,1170,541,2120,2847,1536,1641,250,1722,682,767,495,2091,392,1939,1855,2686,1160,1506,506,1964,2332,1108,102,1308,1511,1590,619,107,1883,1133,2605,675,1604,1619,1841,2885,1125,2097,2023,1755,2488,2948,1461,631,2411,2014,777,206,2212,2708,919,2135,2772,1436,1971,1400,766,1827,97,803,1299,2857,640,295,1173,2395,1472,2971,1884,2852,2761,901,1310,300,720,2581,1426,1300,869,2746,1251,315,2859,442,154,1978,689,2372,1519,2293,2602,478,416,1412,906,2780,99,116,2357,2431,2568,2541,1973,2587,2962,370,2902,778,2137,2832,2586,2843,2059,1851,330,1247,2616,1818,2858,2729,1072,30,1066,2300,103,428,242,23,1525,2077,973,2430,1158,1494,2636,582,191,1528,2460,2052,224,2517,1712,1378,1788,2731,721,859,2512,437,2977,1100,269,1686,15,37,1920,1261,2924,2846,327,2940,786,1797,117,2996,2416,30,716,1900,1526,1843,2103,1863,1925,480,2875,1988,719,2369,1725,2134,2865,2930,2311,1269,2522,944,2469,173,2186,2118,1697,2963,789,1749,1126,1455,404,1428,1416,1078,2336,1078,522,632,1929,752,984,1512,1925,2889,2574,2713,193,1475,2018,1254,2818,113,225,1184,994,1281,446,1938,687,2203,220,2469,1753,2851,12,1353,1028,2377,2750,1570,497,1842,171,560,2305,936,957,2553,1610,423,1469,1522,2761,1591,686,2831,2489,528,442,2475,2053,2586,1931,2192,1084,110,748,1275,2450,429,906,718,2953,239,202,1655,1544,924,2840,778,582,2586,2603,1119,1865,117,2702,972,579,1129,1590,2938,134,2661,1111,1645,2256,908,2788,2455,2588,1729,2476,400,141,2833,923,2437,2784,2726,439,39,2822,1516,2242,1157,1668,1744,898,866,1708,2969,2628,2175,2302,1021,1201,2978,347,2491,970,1641,1758,1582,2126,2294,1898,2690,1820,1961,75,735,100,1435,1673,1602,1387,188,558,348,776,2695,2696,1520,2005,533,571,2633,1383,2768,1237,2877,1658,2203,2644,1700,1073,1297,1311,765,951,1605,586,465,1754,2608,2508,1056,1174,2559,2089,219,2612,924,1389,2899,105,1444,2916,1600,552,476,812,1520,1954,1491,494,2060,1511,190,1756,88,1350,436,1710,2133,609,2199,1789,2360,2694,1258,2893,1677,2,383,1385,118,1908,172,2128,1076,2326,2276,2282,728,2731,2627,2059,1113,2174,1390,1288,1916,2386,1239,1334,125,632,1033,2589,2404,1803,2794,1421,1819,2159,444,2607,1478,206,2268,2542,360,1089,728,2694,1862,961,2873,938,1449,1917,1354,632,155,111,2738,748,664,708,2159,2707,440,2423,1273,1700,2089,2639,830,2442,417,2981,2532,1672,1425,2627,1404,1154}

    {551,1795,1519,2589,1893,2992,2648,2552,46,1365,1704,2606,2095,843,676,933,943,325,1093,154,477,54,2427,814,2865,1179,2976,2123,1352,116,1151,1640,1979,2806,1112,164,29,1929,2847,2525,1255,780,373,2549,2231,4,2434,169,248,2954,786,686,1465,399,2005,576,2170,235,1088,2704,235,219,499,1284,2146,123,2942,2278,2723,168,446,806,1450,37,2562,2325,82,992,2609,1279,1591,2471,333,1455,2382,859,2299,2135,124,78,2203,982,2735,7,449,830,700,1812,1840,1579,423,2834,735,2452,2913,6,1501,2170,1973,1536,838,1802,2669,1146,2472,823,1326,1594,399,1692,1338,103,1885,2982,2577,2588,704,1483,2159,2871,1399,462,1336,2245,1735,1857,2421,1895,2824,2986,261,1763,2733,1715,2812,203,1075,1884,699,2679,2695,2250,2604,2092,102,705,346,995,2263,1341,2369,971,2923,1787,523,2647,1281,2021,1452,507,1349,2534,732,2327,2326,92,2478,1776,1096,531,1099,1077,10,1638,509,2313,1923,101,1918,1274,1763,2859,1518,1669,312,2968,1551,1466,2132,1947,797,2420,1991,2129,883,2643,2591,2926,1911,2272,549,2284,888,533,658,1401,1403,752,721,927,240,222,2847,2044,354,517,478,2592,1664,1436,2409,310,1485,1778,129,509,852,1408,380,2661,2704,1189,1866,1427,2125,2757,2883,1953,2103,2468,1735,954,2980,1306,1558,2729,2542,1402,752,1668,603,505,1842,1259,2233,2383,1670,962,2746,427,2729,479,426,720,124,439,305,832,2909,428,1937,2422,2860,1807,1345,620,75,155,1679,622,2993,1315,731,1373,2122,1902,1691,2154,2357,2664,341,1501,1436,73,2344,457,1008,1619,958,1384,2546,2093,2850,2836,2356,408,1923,398,1684,116,254,2511,2743,909,2060,522,405,214,566,1137,1237,1236,416,2939,2240,2694,515,1658,821,1695,1746,2939,340,2031,1221,2515,2904,179,1104,142,2137,719,2952,35,1138,206,1622,2695,37,1599,1,2485,1888,278,490,880,1584,2042,1070,2018,1095,319,600,2919,2801,1777,2091,1411,531,2363,2704,2261,368,688,2992,2352,413,2549,1124,831,2540,568,2057,1690,2725,588,795,468,251,1130,882,2318,2904,759,595,1027,2711,158,2008,933,892,1402,1545,90,2988,666,1426,434,735,574,2917,1785,959,1351,824,59,2855,1834,1631,2789,119,2022,681,1521,382,795,2757,1975,1420,883,502,2727,2756,2340,1479,2972,1708,202,555,2038,733,139,2801,2135,1839,1425,2966,2470,731,76,1751,2642,581,210,1318,369,656,69,27,2595,2561,1094,1575,640,1603,0,2135,2956,875,1366,2170,121,2657,1888,1327,2161,1526,1240,64,883,2620,1271,400,2940,2813,2968,2970,2973,1036,1001,2193,1182,1894,1177,595,2276,2591,2809,897,2576,633,764,207,2090,1277,758,977,1466,1108,890,1278,719,1458,2033,20,2380,2197,1119,1958,1297,1884,1783,650,1535,2222,1142,2752,1063,1472,571,16,1882,119,2454,2056,49,1117,690,1127,1875,2446,2517,1062,149,798,2642,1834,2692,2629,1696,2288,258,2732,2563,2273,1241,2764,1913,2054,1437,1309,1488,30,1730,815,813,2506,2864,1859,1273,86,636,1877,1187,373,2925,243,2388,1307,1845,2672,1635,978,1565,1612,374,1838,853,2327,2190,2955,2423,2066,355,2310,194,2868,2418,2135,945,863,2994,2519,1822,2824,683,2439,309,1259,2717,140,1110,1950,14,2658,238,691,239,2354,2856,1980,208,1936,245,729,852,1909,1451,2719,1325,147,2384,289,2490,1196,576,2749,1809,1011,1145,538,1302,1437,1592,2892,2178,2812,309,1012,1498,513,1878,1637,1027,753,984,2483,1412,883,313,1105,177,2826,1352,1653,2349,349,2451,991,1499,2942,2103,313,1834,117,1886,2327,103,2073,2944,1601,2080,1046,252,644,1357,2026,1591,2685,1749,47,2752,2027,602,2607,2990,868,962,1670,1582,709,2303,2814,124,90,1486,2159,1300,1092,2519,1469,2829,2427,2400,966,234,1079,2233,2025,195,2216,1093,1398,1176,895,2116,1355,759,1899,58,826,2151,156,2527,1807,1658,2495,1820,2468,171,2227,571,2117,2552,1740,2340,2792,982,595,2543,321,1432,462,1083,2405,2872,1072,2165,2525,2699,556,583,2298,1518,993,1563,1126,2877,956,1692,152,560,2717,1176,2483,1163,1003,2715,2896,843,1651,2028,2877,2645,358,2417,927,2650,37,730,1726,364,2876,189,1858,459,2086,793,2889,471,844,2848,2511,2926,905,2045,1037,1586,1006,1149,2638,1047,116,219,41,779,1600,337,2923,2279,2485,598,2809,518,784,2335,1321,1574,2288,50,1475,2328,2543,705,1276,601,1768,809,2922,1269,2482,133,1759,15,1103,2941,1101,2826,2859,606,2508,1174,2905,2558,1864,2314,50,1511,2545,600,1614,1069,1904,1064,2781,1143,1645,1811,111,788,757,1952,1087,1959,414,2920,494,1362,900,321,578,1328,940,2835,2710,66,1685,869,977,825,2554,515,1971,1868,531,628,167,1162,1540,2694,1256,1523,323,2129,1100,151,1700,416,705,1733,192,1996,2628,1728,1575,654,1872,2672,1287,492,1110,1108,2888,2448,336,1964,273,1907,1816,1202,822,1943,2291,1002,2931,2790,1964,215,993,2876,1558,2778,2087,1497,1355,442,1546,2103,2763,1587,2242,1037,2491,2382,932,1618,2464,890,988,1198,2600,831,1645,2695,185,2939,778,2364,2565,280,1592,2818,2959,1757,1503,819,1204,2407,1229,2876,2080,2258,582,1879,304,1687,715,2247,2628,441,529,1030,1403,2952,1876,1938,2081,1093,2831,2166,165,1104,1464,2898,621,2977,2595,1927,1,1495,849,1471,1872,2261,806,2268,389,2277,841,218,80,2653,2992,967,853,1205,2960,2752,2429,947,1197,1569,1460,2623,2416,262,962,2006,1039,1729,850,705,1112,2835,2037,1026,1221,1669,2340,1010,2414,1470,1964,2720,1199,782,1646,122,1534,355,2475,2945,1867,116,1415,1151,1134,807,2466,2720,1619,764,1018,2239,1551,168,1670,649,2537,945,749,375,2570,2082,513,2514,1929,1772,2122,2555,2769,1774,2135,1811,2331,691,2808,1967,2350,378,1228,2938,2345,306,1394,1379,2814,1157,1419,478,497,663,30,2611,964,2531,93,584,2208,1439,2412,2478,2578,2275,1760,2100,515,2606,691,2035,1470,2934,1580,2257,87,1829,1600,1117,349,1406,510,1069,1849,962,2214,770,727,142,1686,2889,2584,11,1263,1429,2666,170,380,650,1351,281,1408,2085,1844,2237,1571,598,2497,1533,488,481,1982,374,442,1837,930,455,865,1491,2220,1520,1609,32,1341,2425,247,712,1266,1938,2847,73,2221,1030,1830,2127,572,1105,2128,199,1811,2831,1814,763,2802,1629,639,2129,40,190,2440,1796,2601,387,1103,2672,2087,466,429,631,1989,720,327,1324,2847,234,2173,846,1044,1231,2728,2473,342,827,928,2959,1764,1689,2043,1142,2430,1763,1918,806,512,1683,1930,2262,2201,698,2175,1224,424,346,194,2960,2854,2417,1291,941,1055,2790,174,755,737,369,1919,2747,923,2830,1293,1750,2802,741,835,1498,1386,1050,2921,2323,2993,1719,323,2009,1648,159,37,2621,526,400,800,606,1093,501,2890,889,2630,2029,1244,2928,1860,11,1137,1528,27,97,2544,1735,155,433,2392,953,1323,556,2171,198,346,2240,785,2654,2610,2324,698,2141,2350,2175,418,2623,291,2543,26,2929,2029,564,2043,146,1451,1512,1844,1590,2439,2961,2514,2687,1444,404,1691,815,1688,1408,1599,1140,2406,2210,2138,1195,2318,2582,2752,1514,268,22,978,2815,1870,630,665,383,1243,2281,92,1836,32,2353,136,2652,1529,2698,573,1440,1816,2594,135,1914,1531,2503,2739,2622,255,2445,2870,2215,98,1619,1768,2768,2964,1202,2259,2013,1541,1627,175,2666,1142,309,1674,597,2816,2233,2124,611,685,2968,2940,1377,2643,316,271,1120,1829,2217,1800,1490,1826,2719,174,896,1453,2061,708,908,2205,348,1771,1645,1748,2190,1672,523,191,708,2652,1178,2312,781,542,2637,2146,1454,1301,2607,1347,1576,1303,32,1591,2526,767,2677,1948,2203,2028,2870,1037,2361,1566,2528,2941,2727,74,1913,2135,962,265,2583,1561,242,1960,2201,2258,1800,937,1419,1496,537,2530,546,1466,1264,236,61,1349,811,855,2702,1252,1170,425,2904,1312,2275,1946,1941,1473,710,2150,145,1983,1252,1729,69,2631,2218,2543,2091,2019,61,2165,787,1854,2004,1598,1662,945,1317,1128,531,2801,1029,1074,1295,1347,408,1371,2839,1903,2575,2835,2017,715,526,2944,1309,1660,1398,2991,1889,447,2091,2693,557,735,1126,1706,2209,1930,374,1414,2544,1674,735,2058,715,113,1617,1456,841,2142,731,1210,2275,598,2162,82,777,2875,981,242,2940,623,2338,1172,719,507,1578,2781,2391,196,2378,1461,2659,706,2067,576,2021,8,2834,1872,801,2530,1276,2499,1402,2975,1709,2852,2694,2749,1893,117,2955,663,2376,2823,2769,38,1728,2319,1103,1202,2999,2305,1275,2651,2325,2571,2277,2251,2812,2222,1048,1539,2342,346,876,1639,156,2628,2132,2664,928,2067,2508,1642,2244,883,2945,436,1225,2370,1584,142,878,63,2405,180,1591,304,185,1694,106,276,2337,135,81,2736,1853,1694,715,1873,1379,1636,1861,2839,17,1510,18,710,342,859,485,831,801,2755,1576,498,735,835,808,47,2406,1700,951,2060,2628,2919,1145,1222,100,1714,2135,2001,873,903,1441,966,1595,225,1336,483,1700,379,92,2179,747,2264,1487,1925,2786,7,2670,860,2277,2072,232,2816,1360,2453,25,2309,907,1585,2211,288,2520,356,1873,47,2112,2181,976,82,416,674,1170,2548,2978,50,1714,2113,2410,1965,290,2274,1788,1363,459,761,1815,1467,1672,1346,1095,2111,321,1582,2697,1219,2032,1673,482,1298,2773,2501,2803,1531,1775,1511,2258,1756,534,1653,2343,2223,2258,667,2727,136,1689,1667,667,135,800,2224,2841,2580,1669,1771,2465,1573,2710,2181,1475,713,1221,130,194,2335,1309,454,974,915,1303,2076,1769,2865,2329,421,2275,2456,1155,626,2957,605,2461,2130,2475,1936,1635,641,2184,1671,654,2931,1731,294,2259,2840,985,2766,820,2867,2401,2967,1925,2148,241,584,2838,456,1566,1269,1717,1514,2349,1801,1104,1742,2742,507,1116,185,2648,324,2303,2793,801,2148,41,2815,286,1879,65,2389,2533,767,2368,628,2675,700,1156,887,1993,461,354,281,1347,1725,2059,1067,1765,2236,908,2825,369,1264,1201,898,2951,15,2668,968,2255,670,76,1277,1228,135,2187,608,292,845,2178,361,510,817,354,32,2366,2010,651,320,516,264,2392,947,2859,1794,2530,1600,1,660,2335,1572,2391,1955,1035,2592,1683,1409,1854,2778,2487,590,77,2466,1257,717,853,2568,525,188,1893,1700,2756,377,13,85,1290,2583,1617,1732,521,2329,904,2107,1542,1716,955,1306,257,1096,2158,2376,1526,764,904,1604,949,1216,759,2825,2661,142,2276,2701,1422,1670,2775,1987,717,851,274,2929,662,1509,918,2417,26,39,2851,2825,2777,698,2936,2266,967,2280,1499,1957,50,1508,999,52,1193,959,411,2931,2,833,2832,2582,2729,841,2290,1329,713,1059,2133,2145,635,524,128,955,1451,2931,883,2063,856,2103,956,293,2458,2705,2711,2051,2099,1504,2583,2363,91,629,1989,1424,2415,957,1739,2067,2586,554,162,1626,1333,2747,580,395,2660,112,752,2515,883,141,102,2867,957,2411,2148,332,2253,2033,188,2283,2772,1580,2238,1428,82,95,2470,2037,1294,876,1792,2649,1827,1266,868,2827,1616,500,250,2002,76,73,1722,948,2678,1928,1524,2396,280,6,2637,1220,2802,764,488,2776,141,1085,2384,1150,1133,2499,400,2270,1858,1689,2726,374,2654,1670,1519,2483,647,1650,1203,698,2013,2744,219,2258,1966,982,1455,861,315,2207,2834,2343,2664,20,1472,1280,1286,709,2996,855,412,2096,733,1676,711,2912,275,2276,2249,669,2613,2432,855,2804,1735,725,2436,1907,1923,2910,2551,182,722,2884,2922,1925,34,1225,2103,2321,1589,374,1766,1862,787,2769,2108,189,2997,1985,2539,1871,1319,2105,751,2463,710,2911,1077,18,2587,784,2928,529,309,1431,591,422,63,1591,703,2525,1990,782,1892,2621,279,2098,2914,1757,2221,792,1236,1158,2296,162,2643,518,1249,2379,2594,2787,2042,472,2672,2808,1561,969,812,2413,1837,1412,1504,650,1075,2439,2897,2348,664,2877,735,1446,703,11,2148,1066,2785,613,1484,347,778,2669,386,976,7,233,889,6,2558,346,1659,656,1089,984,2187,2993,1490,1043,493,377,1145,1511,2907,1303,2726,1860,1477,1142,1412,1975,1869,446,2762,2338,2376,1447,160,1655,1232,1618,829,1917,310,1583,1016,2196,2425,2387,90,1266,2161,2339,1554,820,1193,326,103,1109,899,1659,363,353,713,843,2292,1946,2556,2248,1253,1247,2346,276,346,733,2320,2775,2805,1554,1860,2884,580,1922,2285,1963,564,2689,155,2297,831,284,2674,692,1929,153,2155,34,2213,838,2774,1656,3,714,823,2746,49,2597,2933,1534,1965,2348,1832,1850,2893,2149,812,1044,508,1209,2741,1141,478,1275,2693,2747,792,1459,2431,471,62,328,2160,2110,2131,395,1987,1304,453,179,565,2849,2425,2808,2322,966,458,656,1793,2275,723,1568,854,2592,1643,2896,2613,2778,595,2987,71,1034,1491,1000,2373,694,1534,1148,2073,139,948,2058,2701,2054,2092,285,111,330,537,762,1949,56,1735,288,23,117,1692,1258,880,21,366,93,891,595,2998,1176,1938,1124,2530,2208,560,231,29,1055,446,752,1834,2563,2235,1744,672,890,446,2194,1839,1426,705,508,2114,2734,1469,2048,2404,1577,2589,1031,36,1097,2176,774,145,745,2252,391,2776,800,1501,692,560,2598,141,2930,104,423,2197,2206,1517,2254,1653,2007,1473,1156,1764,1558,985,1181,563,431,724,2627,301,2136,662,2341,1495,2500,346,1259,315,447,46,2740,674,2883,1388,2265,1413,2248,2271,544,565,1398,1788,1267,2748,1930,2011,516,738,1962,1680,567,1281,185,870,1853,1373,1493,804,1030,2742,2794,1732,1372,1276,2041,1322,960,113,2326,1421,2204,1755,1774,232,1466,1474,1613,1823,390,2998,433,2199,390,584,2262,1437,2195,1369,931,848,2489,563,2863,223,2721,2831,1183,1535,1964,141,2905,1955,2276,385,2425,2542,1410,2784,532,2738,2039,1169,962,189,1119,2662,2871,1191,491,1281,1727,1761,2703,616,1202,170,2534,2041,2101,662,695,1655,1339,1268,269,1219,2226,1858,1192,1283,1218,375,1442,2639,1755,2405,1358,2652,1914,2632,2606,1425,1865,455,1744,392,519,438,1817,1469,980,1313,2218,2615,2089,825,1228,98,2437,2298,892,2746,2726,372,1502,1772,2259,2555,2940,104,2224,945,1715,264,1069,498,900,645,1135,1462,2386,273,2882,1773,1176,2949,1359,388,2047,2934,1667,2168,1459,806,2613,1392,1067,1922,2749,951,2497,979,2449,1260,2515,2868,2641,1582,411,964,2934,1297,323,2984,1798,2016,1521,127,1625,2915,1321,1043,2287,1303,1848,2635,930,2277,2461,194,2673,1493,318,1241,2292,2958,534,2591,1967,2334,1019,1812,1835,2119,2550,1831,1561,2593,2324,389,2874,176,2515,2659,1114,1221,2209,2497,334,1955,2262,2437,946,982,109,1568,927,2069,2047,2659,2583,337,1805,574,1741,2500,1895,983,2217,5,2946,2929,1176,537,1065,298,230,244,2588,896,329,1495,1996,733,2290,1480,137,559,2222,2983,2403,2545,1970,2621,1852,926,131,65,1727,125,2115,1201,2629,1484,2476,1538,448,700,870,1664,1037,1893,1326,1476,1362,1142,2862,2287,1984,1703,1854,1528,343,465,729,1669,764,1767,1262,902,1780,1811,1629,1728,1935,992,188,2104,694,707,2813,484,1602,1971,2354,1024,1865,2219,1536,1131,79,2820,1827,2194,2530,2791,455,2227,470,951,1211,990,2120,816,2752,1617,794,1405,2104,1098,2753,2200,9,2295,42,1667,2828,2903,1245,59,862,2444,346,1280,2618,1335,1609,2292,2492,664,2847,853,1442,98,831,421,2650,1430,1215,634,2911,2351,2319,1044,1837,1310,2087,913,1558,936,2720,1537,648,2259,1867,1194,1595,200,1672,2367,2771,1488,589,2527,2127,903,704,1170,898,450,561,1464,1845,2864,1723,115,536,1089,681,2381,1661,498,467,273,1701,2619,2607,2334,1666,2569,1166,1481,969,430,1260,102,2664,2544,951,1944,42,2762,2696}

    1670

    51

    Returns: 631609123

  78. {2782,838,1695,2717,1775,2159,719,396,1921,2509,2005,2048,197,2715,2065,1514,2542,1661,2727,815,2615,2021,2951,1593,2625,382,461,1333,2795,2266,947,1006,1127,278,724,2746,2526,1059,1589,2069,144,2154,397,1963,1564,261,517,1018,307,2556,2413,635,1159,1817,1669,77,339,171,60,837,2906,248,377,801,1088,474,180,823,599,1914,553,731,528,1737,1053,1673,1830,2661,2863,2736,572,2046,208,1194,1563,901,890,2546,217,503,656,2110,2461,1899,2991,1702,1504,1703,1366,2621,1205,1221,72,220,2255,2838,1064,892,529,2116,1353,2082,470,2780,85,2118,57,2010,894,2807,2504,2067,2836,472,302,2726,188,8,1198,1982,326,89,1218,1652,1004,262,430,1592,2959,1541,2931,2811,2409,991,619,2940,297,1044,1011,2684,2820,572,1745,964,2032,170,717,2501,527,138,390,1017,1605,2113,2675,1612,1273,840,884,1057,2849,1536,1781,2519,172,2277,2601,2415,111,1388,2144,2809,2044,2593,2650,78,2285,1930,1339,2586,2905,1752,2175,1892,1817,656,1681,2331,1929,1975,994,1924,612,557,2567,375,1341,2447,515,2697,2181,841,471,1953,1032,465,2039,2396,825,1373,2859,64,1752,537,419,2812,1445,1809,1047,2527,421,2898,1420,191,2322,135,2665,2263,2231,2545,199,677,2939,192,1778,1938,809,978,2280,2387,1787,1489,322,2749,1397,478,801,1826,241,1953,1679,1463,763,381,383,1876,2196,776,2076,1886,1406,1459,2042,1644,466,2068,1991,2122,1646,2096,586,2281,2642,2022,1656,574,948,1831,1232,1644,2566,1204,1632,696,874,2817,838,1516,2619,1326,582,799,1093,2243,567,2869,791,1988,1280,190,1588,330,1845,809,1747,2884,2935,49,115,959,2128,534,2976,1352,2361,32,2193,1960,1375,2218,2782,2692,51,96,1764,2985,99,85,2294,1888,1893,911,1502,607,2435,2888,294,1296,172,872,1664,1788,2271,2903,2129,705,2467,1269,2061,1590,1568,1495,1820,2393,33,769,2110,1863,1812,88,1683,2246,2508,1567,2147,1465,1010,2831,2076,2227,427,868,1119,2888,1953,1501,1908,688,2198,2911,504,236,134,2471,551,2587,528,839,907,1233,1121,119,1241,2625,102,2823,1764,1746,2456,80,1876,1602,2631,2283,1863,1546,571,1567,2337,1041,929,62,1534,1076,143,1293,928,1886,1355,864,2971,952,2751,970,2873,1336,209,1283,1505,2023,1636,219,1815,1744,2200,2883,629,1438,1668,2960,2956,2408,1221,1142,1493,2565,1599,342,935,1893,1786,2816,1230,1016,798,904,2747,2268,1006,2307,2405,1404,965,1579,2543,505,1518,2774,2993,1275,162,1064,2868,520,31,198,540,2853,1252,384,1007,2473,621,2696,2851,2735,314,1639,1814,2723,2523,2842,2187,1798,700,1261,2962,1652,581,2905,1708,61,893,672,145,96,1377,856,2022,2862,1698,2641,2967,879,1847,921,2593,314,243,1782,2670,2510,2755,2936,2008,1519,2759,1490,1194,1262,1593,473,2533,1987,1933,1545,1895,1797,824,683,418,1519,1577,2830,1190,2225,2141,1238,206,1044,1210,450,413,1811,2385,2243,1593,1849,2758,2595,2378,1476,2969,1537,2837,282,189,1962,532,1553,803,1621,1466,2739,2622,793,167,2798,874,2950,1983,333,2367,875,1583,403,2907,1249,2750,2924,1247,827,1181,2232,2327,1450,1863,1255,2846,2042,1638,210,768,2104,1372,1422,697,2416,19,1002,2676,2717,994,2593,2982,413,2407,305,2196,474,2312,2620,542,963,387,2012,2890,1123,420,2481,432,495,294,830,1737,1354,2633,1328,1108,2926,2930,1002,68,2406,288,2227,1116,2944,477,1647,2360,2955,444,26,1243,2978,2087,2862,1081,2711,2421,2523,1789,898,598,2460,1213,2307,701,1807,443,279,1650,1911,1909,2647,1612,1967,1374,868,1180,1724,2808,2055,1922,2339,2852,2136,427,102,248,1186,1113,2153,2909,2868,926,2349,885,2554,2671,2063,2037,482,1033,143,1566,2572,2185,1871,1910,678,2327,2702,1416,758,599,471,2625,2413,1834,1007,824,2278,1958,2806,2448,415,2777,1347,1243,2620,174,1961,722,1602,554,2096,2178,2052,2105,1044,1530,2173,1344,529,1631,2390,1758,1101,6,1069,2581,1693,1578,2544,821,2174,2748,2804,1068,777,937,2337,313,300,2254,455,251,142,2106,1707,1440,1033,798,1720,1834,1346,640,606,2351,2842,1020,1736,652,2161,2119,1330,1810,457,1740,2100,1082,482,1013,2417,1161,1241,409,1421,665,2913,351,1379,2238,2886,2247,90,59,2732,367,2787,2709,798,1640,848,2198,741,1177,847,1687,737,1429,1883,1665,384,1025,994,1182,927,1514,706,1944,2813,1650,1248,1670,1642,247,400,1991,2047,2395,1992,358,1036,1786,1296,2916,2496,1780,2993,2937,2939,2687,1722,1013,60,1283,2462,2827,2493,1004,1905,1699,2618,1165,2546,1979,132,1154,952,2568,1673,44,2163,2771,1694,489,25,1978,2063,360,2044,1445,133,2757,1933,2030,2061,2890,1087,1043,106,511,1008,672,1953,1948,248,2551,939,1216,2453,2405,135,2566,112,61,200,838,280,1007,1189,1657,2848,2383,2574,1389,2011,2997,823,1510,884,2025,2586,1440,2726,1884,2663,2416,1267,1450,2460,1679,1077,1564,1212,2920,1268,2069,2964,566,1932,2355,1717,2870,2783,1909,2548,2048,895,1439,2990,271,51,1655,359,1795,2093,288,182,405,55,2396,725,2505,2462,819,2805,2890,9,312,2265,570,27,116,953,1943,1474,1271,2994,1442,1085,68,1666,1594,767,1820,1836,1264,2068,325,636,460,1547,1528,1686,2209,819,2416,708,2736,2024,1524,1652,2308,370,2013,1835,2678,90,571,2808,1803,2144,2087,28,1115,1300,1783,1412,2273,649,509,2985,2402,329,78,2399,1236,1608,304,2744,936,2572,597,1966,808,803,2205,1871,2770,1366,2089,2653,832,1176,1669,538,1077,1215,2818,1174,2224,25,2206,1512,1862,2637,639,1114,1598,688,73,1842,915,2233,1534,2726,2497,1244,1578,431,1063,2576,2024,1744,1051,1569,2361,985,2705,332,511,1688,2989,1960,782,759,2114,1222,1368,1927,1679,2035,2939,2020,1071,383,1012,2902,702,1178,2437,114,310,845,1888,1547,1960,1200,1915,1637,2765,2756,1316,1269,1223,1313,2640,948,76,1149,1611,2701,1463,2770,52,2527,1003,579,1311,1271,2403,1338,1616,2966,1680,13,290,764,1399,1665,1973,975,1920,258,2999,988,874,2818,1844,248,1187,2964,1481,1278,2468,669,1257,1214,1003,548,904,2920,2329,2088,216,787,96,2706,2609,2452,1998,339,498,463,1845,1735,475,1422,719,823,264,1422,1432,2836,1765,1207,1771,2005,1808,698,948,692,1815,1402,1070,2513,2105,2664,917,1062,1455,626,1820,584,1749,1130,179,1681,711,2699,530,2820,317,859,87,1177,1362,52,170,1099,1766,2825,347,1249,283,410,2143,1978,528,1395,2557,1935,1989,612,1446,2797,2130,232,2545,460,1672,2970,1264,500,2389,2044,1303,2360,1800,1701,1767,2971,1492,2588,386,2110,2388,142,680,616,2031,1079,18,199,115,1357,2808,1076,2110,1744,1970,721,658,1514,757,1683,861,533,145,1215,2939,2929,1953,1827,1183,1775,1221,2784,1876,1945,1403,1484,1525,591,1187,643,1974,2175,2655,319,1426,112,1332,946,362,1040,1129,2464,475,875,314,2624,1193,1662,985,2600,1221,1029,983,1337,413,492,100,308,425,818,2617,1147,2318,540,995,35,2405,1872,1539,2019,2237,968,334,2076,1474,838,2640,328,1466,1501,1154,1991,2420,2971,2358,2022,90,2592,132,2031,1526,1100,2527,2791,2374,2403,398,2920,1077,699,569,2454,1510,839,900,2153,1540,1440,739,781,1348,2689,612,1274,412,679,165,2112,1695,2410,1789,43,361,931,588,2075,205,2608,2915,1313,237,2080,2785,2633,652,875,2985,2884,69,1893,2096,13,232,2577,2308,2534,1570,1541,2743,1192,1046,1014,2627,2528,1409,2259,1406,1410,43,829,2737,2431,825,1942,2209,1568,765,1767,2532,1169,489,81,392,2355,944,272,920,1368,1568,1066,484,1381,1944,1620,2693,824,939,1762,2132,2732,1414,1531,2987,2394,197,1111,30,2213,2604,1835,1795,82,2265,2596,600,1678,596,346,118,130,790,187,2486,2198,1221,79,2259,2575,2249,2802,1577,1163,1130,2039,2156,320,1120,617,234,2535,764,1665,2209,2437,31,2006,1452,2074,950,1979,1324,387,337,694,76,399,1603,2331,229,1041,977,1366,1758,1555,2449,1541,278,1454,2921,2351,2462,1609,2386,1901,2064,754,2733,2425,2076,1728,1120,1991,2422,1888,1204,1199,2523,780,2357,2290,208,714,1832,2997,2515,1629,43,542,1695,1379,784,1765,2487,798,1627,1902,193,2691,269,826,727,908,603,2387,522,1440,2198,376,1852,1363,2193,1225,564,2632,642,2856,2016,2788,915,925,2955,2999,1141,129,186,85,1539,2507,187,1103,575,1296,2074,699,1902,783,1211,1818,1601,199,1144,686,2413,1182,508,1994,2977,636,1172,1215,645,1899,2287,2942,1616,265,765,2295,2718,2621,187,2192,914,1826,387,1389,1447,2281,235,1691,1453,1120,1858,2113,5,1306,1227,507,1534,2210,31,411,2,1967,2547,573,2798,2104,2530,1558,2114,1327,1152,2518,2432,2446,1968,212,2358,832,17,2087,2847,2058,1494,560,967,410,315,1012,1050,2158,1771,2335,1265,1949,854,382,1130,1877,2164,2160,1457,2339,724,1386,798,211,139,356,190,788,627,2387,2964,402,2723,972,390,1042,2593,797,2635,2656,2367,1767,2933,2158,2890,1768,2313,512,1805,306,2470,758,2665,709,2900,1162,2342,1870,1981,375,2305,2002,2264,2693,233,726,2756,1744,2070,1204,263,2019,2571,118,2022,1659,2379,1165,2623,431,2689,760,67,1391,663,2328,594,2578,2465,923,1950,1592,1575,607,448,2940,1952,2196,2618,385,523,764,1672,204,773,2945,2881,2303,2180,861,342,2028,2291,2502,775,2504,2411,1195,2350,511,1626,560,2587,2305,145,2055,2335,2998,476,2955,1286,2290,84,2980,744,169,309,178,1442,2184,146,979,2187,2878,203,1146,957,2160,403,2042,1174,1842,288,1100,2158,227,2044,930,563,408,2250,516,2772,502,2797,920,1400,790,1104,1106,2250,2555,1491,1817,2654,208,1049,2968,2434,2146,1048,1225,95,2872,611,2339,464,631,2076,1587,2755,1717,21,675,2156,2597,800,2463,2893,2140,2801,1914,474,1696,1130,63,2019,1336,194,1888,1220,670,1877,2663,396,140,332,507,2941,1971,2320,671,225,2867,52,1583,605,252,316,1819,2451,980,1287,11,1135,1507,834,2713,644,2992,1759,105,2881,629,2352,1767,1644,590,1118,2808,2360,565,192,1777,2789,2200,1585,498,1231,2971,36,1661,467,2941,1584,2599,2558,1743,1796,1472,1580,195,2850,1729,1404,2573,1980,1675,221,1203,1088,1729,871,2775,1205,924,2263,656,775,2797,2435,1494,2846,1402,1867,498,764,330,2881,210,1334,2419,373,2968,2618,2986,1276,2049,1379,2766,2705,1755,1786,47,254,715,2965,453,159,1576,1268,1940,2952,1258,2143,338,2132,1526,2345,1486,1719,487,1993,383,2556,1653,1939,2310,1546,1450,1469,673,690,1224,2534,1863,4,52,309,2931,372,117,190,2582,2821,1406,2147,439,1412,1339,2071,982,2114,2623,1107,2840,456,795,150,2397,1985,1314,2033,67,2810,1215,1273,345,2087,1366,98,1532,722,2932,264,182,1885,552,2677,2740,1367,1,321,1351,2732,741,1305,416,1467,216,474,2331,1420,18,1556,2717,727,1273,1895,1877,572,1099,1550,2291,1163,2148,1320,595,2705,1970,2762,2602,1185,1313,183,1218,312,2044,2053,1294,1103,2646,2043,1131,1623,2596,2496,2167,2561,935,1168,2583,2900,2235,380,683,1861,1365,1990,1477,798,2828,1350,2288,991,2397,2817,721,1572,1330,177,925,2477,2321,2995,1455,2138,1788,886,1313,296,1341,2651,2131,1562,2954,477,1930,2717,486,1221,297,1084,2559,42,1560,2290,2084,2263,1107,1109,110,1084,822,2397,538,2601,2088,2121,406,843,825,318,2361,2924,2560,75,2922,1637,1118,2314,2746,659,1311,2489,1954,1105,1026,935,2438,1005,2719,2284,2433,2666,933,2380,1621,1415,409,691,2063,1214,573,1881,1015,299,1709,2933,2202,1757,78,1133,2603,2710,2312,2007,1958,2669,471,1669,2939,1462,1659,2302,930,87,1138,1148,2867,2756,1552,962,2267,161,680,1448,2506,1361,987,2057,1261,1221,1680,1319,2355,2580,98,1871,2293,1628,2936,656,2659,698,1741,2588,2366,2571,210,1432,1978,2241,2062,2168,2463,458,1430,2509,1990,2536,803,1928,539,211,196,433,557,653,198,2359,1687,2227,2368,506,1496,626,2127,1542,2440,2376,2004,2313,2208,93,1041,52,1191,1313,2801,2606,1014,2003,1602,356,1955,1816,2831,2073,2819,145,1863,2977,2981,501,776,1175,540,16,600,2369,1024,2858,557,1790,1636,1479,1361,2750,2662,1969,2517,1081,1417,2553,1424,926,355,1964,2252,1460,369,199,1917,248,2040,1240,2077,197,96,1084,1072,2939,1750,2764,199,2721,2000,545,147,368,2403,2786,1595,2496,987,1150,2921,779,416,2557,1162,842,2056,1876,2826,1457,1676,2168,1605,463,376,2227,1440,837,1939,416,1202,1034,1223,895,269,1253,999,31,1294,139,1501,657,1099,1554,1049,1178,562,2681,245,1972,2113,2530,1857,419,2677,115,447,2094,2496,753,2888,1706,518,62,2072,2877,198,1072,484,1494,53,2110,834,2878,148,2092,1483,2818,1997,170,1392,2620,2874,2360,2999,1619,899,1235,861,2682,2590,1963,163,2003,940,529,1677,2059,2843,1083,2141,12,210,630,1695,393,798,1540,1820,994,2211,365,2812,2017,279,1676,50,567,1326,1239,413,2616,2578,1298,2335,2139,1040,1048,1098,2549,2133,1255,2936,525,2147,921,517,1297,1442,828,747,445,2300,992,1642,2794,289,2261,1487,1649,2709,116,1782,1540,2226,567,101,713,2743,1548,1918,24,2614,1963,1403,2455,1398,2942,557,2412,2763,2787,2672,2925,37,1570,1789,1670,1365,330,945,162,2649,1760,1387,1828,1126,2714,56,1625,1251,2351,528,50,860,1354,682,2076,2597,426,418,2590,2879,2842,2296,465,1256,952,2938,1975,1846,2400,2844,372,2992,1848,2441,410,1292,1563,2180,951,606,2684,136,2896,831,1098,249,2188,934,1540,545,638,2514,92,1794,1057,2822,1925,748,661,2413,88,641,1775,459,1069,2296,2732,478,607,2824,348,216,1061,695,2,1316,2839,814,792,2612,2102,2672,2992,2621,2936,1806,1671,164,2662,805,100,2056,2958,369,642,905,457,1459,1141,2451,1574,920,1102,2761,1356,873,1955,287,1185,1417,735,2105,1875,2040,2691,2587,729,828,2866,953,1543,2341,1976,2101,394,98,1027,510,1291,2782,1907,2240,2751,2365,1817,1362,238,811,556,1839,1153,811,2469,2656,2885,1316,1842,1363,198,2599,2526,1702,375,1255,2342,1843,1209,916,1282,2087,709,2572,2878,739,2932,1238,2333,1047,910,331,930,1130,262,1547,820,1482,2065,628,2334,871,18,2209,2876,423,2332,1637,2330,2313,2369,980,1314,589,2248,696,1813,2115,2936,2051,2217,1604,2379,116,361,2054,404,1131,1883,1003,1299,2126,1298,1540,1898,927,2657,2051,745,1591,1000,2949,429,2086,714,1294,2688,2989,407,14,2752,314,2268,1837,909,1164,2959,1180,1658,1779,1292,41,1824,133,994,381,1130,1002,52,2203,406,231,200,2413,918,58,1318,2057,573,1009,1386,948,847,2092,2849,314,494,463,115,1727,275,528,2341,2010,2731,180,771,2364,1144,261,1755,1711,782,527,1444,1342,766,255,291,252,1064,2797,261,1646,2585,361,478,1775,1431,449,1888,39,798,298,2650,1980,2233,2127,1533,2923,640,1480,850,970,1072,2965,2030,2141,2852,339,1836,540,455,582,1186,612,123,65,91,2387,2279,2439,2918,812,973,567,392,2930,1665,1289,2620,1581,2611,528,1441,520,1259,2901,1429,1520,2967,1859,615,10,960,2389,1223,1792,2424,703,1012,1354,2088,264,920,2493,301,1128,1739,2948,2663,2474,2195,682,2709,949,772,205,868,49,391,187,1243,1532,666,2073,256,1272,1551,2571,2562,2222,1850,2482,144,319,1033,481,429,884,1787,1410,2002,509,2063,2110,977,605,134,1978,1327,124,1289,384,83,1659,2296,2927,135,2107,2932,602,1730,1704,1568,713,435,2690,1657,1670,882,1100,384,531,1033,937,1029,1628,1308,1441,2620,2198,2029,524,2324,2183,210}

    {421,546,535,2269,609,1352,1607,519,1285,2449,877,2325,1685,1824,1396,2300,730,1690,2375,278,1113,230,958,1360,234,2553,1785,2997,2060,483,1095,2332,2984,1662,18,2695,1326,2944,1411,160,1288,1270,2555,1124,1824,1317,125,2067,786,1578,2535,596,2023,2065,1856,1420,1290,1164,215,824,278,2170,2129,2695,1074,1450,387,1408,1553,1369,1913,750,2252,822,2268,865,2214,167,660,542,919,545,2803,2515,2004,534,1108,1538,662,2241,1322,38,1958,966,2220,327,253,1062,1606,148,2274,1976,1559,2502,824,498,849,2678,867,398,431,1218,749,1879,1407,1765,932,2776,1379,1428,336,241,2694,662,2817,1197,448,2425,2085,598,770,2684,624,1980,1238,2601,2974,2587,1165,1087,225,2656,1012,2571,486,2860,1776,2705,1044,2353,708,631,1241,2710,2078,235,2674,499,2009,2978,151,1240,2391,762,2530,2883,1882,387,707,2206,1726,600,1051,1716,925,2387,1979,1173,2997,2066,1613,1294,1164,2673,2556,835,2385,357,1523,2793,1464,414,1547,1876,2031,903,1709,202,2068,412,1907,1782,49,1600,633,2602,806,205,2198,1877,860,1359,1106,234,184,2024,1718,2377,1581,2152,2719,825,23,2684,1593,2981,1203,1863,1863,2800,257,1449,950,2971,1254,1014,1436,2339,266,877,2162,2444,2137,1326,2283,716,1179,2659,568,176,1284,2125,1045,2562,2723,813,2871,801,619,2421,578,2155,882,2742,2503,2342,309,2204,540,1651,88,2182,502,392,109,2406,378,2269,871,2022,2581,1888,1337,2315,1385,121,2369,2762,1673,305,490,689,1353,1179,655,437,2584,404,127,2205,2770,2498,2689,2813,2344,2263,2488,150,2867,2515,170,82,651,528,1467,1455,2784,2546,1597,2806,1406,2457,249,2815,2511,2231,2134,264,1032,1998,1423,2243,257,363,1086,2919,596,1014,1959,629,2655,451,2656,500,1903,2885,404,662,669,2591,2338,1976,2735,2139,431,1868,2741,1302,532,2362,1537,2365,1515,522,2850,2238,74,1634,1811,1083,1499,2262,1012,1336,738,1855,1725,2333,2397,1401,932,74,176,1878,1651,1346,244,1314,1605,1158,555,1151,1724,731,428,154,486,1733,1126,2601,674,113,788,1167,772,1343,2072,149,58,31,1815,103,1541,645,844,2081,2445,158,540,1478,2391,2593,393,1014,1329,2854,1237,623,1156,1864,2379,458,2188,479,2452,2481,15,1612,1173,475,542,1130,600,1577,1308,2563,997,1999,878,1288,547,1937,662,1290,642,1554,894,684,272,221,2147,800,2065,2523,187,2241,2021,1375,2323,1315,540,816,1087,2973,2187,1254,2923,957,2552,1194,1371,1914,438,604,2061,2234,2705,157,746,1108,447,2516,2495,2664,2961,340,1991,1244,1051,1041,1443,622,809,2124,596,2303,1535,1764,1267,729,884,1791,191,2450,2150,930,187,2958,232,2572,311,2255,270,2220,2008,2403,693,2842,1597,22,2419,2410,1926,2509,1164,2264,1445,2790,1923,1511,520,712,886,906,2917,28,2113,1390,1458,870,2869,2026,2536,395,1053,1921,835,314,229,2817,2651,2548,1345,1101,950,210,391,2496,1046,1456,1297,2820,944,114,2817,1104,2988,2697,850,1519,976,2121,1912,886,1646,690,83,1513,517,2003,607,2924,1447,2834,1078,97,399,1440,2091,1907,2466,534,1264,1613,2340,314,2205,1081,1134,1465,538,1060,2798,2346,2067,391,1901,1888,2732,1568,82,2605,2447,1468,1936,2498,566,684,1432,2335,416,157,606,913,855,330,2957,617,1857,2626,543,113,1408,2008,2272,2541,2041,2219,1754,2356,78,1931,1950,1310,1572,629,1730,1130,2250,825,39,1977,712,1509,2342,2892,224,1929,28,2127,1143,746,863,2658,850,240,872,2457,1051,1775,2214,574,2133,1971,2039,576,1406,1561,880,2087,2149,672,290,1665,2913,1513,1500,1644,122,2912,774,2807,2105,2601,2317,538,1065,538,436,1427,2339,1475,1583,592,2405,2455,2453,2762,2186,2718,1694,893,1047,1825,2596,864,1160,2547,40,1126,720,1023,962,82,1591,2936,510,574,1871,2474,2125,141,2144,1697,2135,2284,722,1762,1699,1061,2198,2740,713,1825,155,1382,1127,532,561,2896,510,2596,1391,1995,90,1327,1178,2495,2601,2772,775,2764,2637,2254,1630,569,2571,2973,301,1313,761,595,246,1084,557,314,1056,2246,2703,947,1801,10,2532,2785,2522,907,495,2192,474,2347,1969,2423,2324,751,2781,1522,1747,1984,1917,2509,2158,1289,2567,2882,2683,1858,449,897,307,1830,2508,2546,1726,1668,512,2239,2201,129,1091,1094,2567,1277,350,2158,18,2112,1821,1270,442,2499,2211,2243,29,2289,49,2029,610,1139,2896,826,2580,2294,1312,1214,344,2,330,452,411,216,389,2307,2019,1789,2190,221,2938,798,2229,207,2921,1075,285,207,1412,1965,823,2569,2381,2209,703,536,2183,175,567,1714,1401,2500,2920,948,2921,2926,581,1366,2304,601,1964,860,2634,2442,1751,1418,216,1170,1206,1883,1812,388,2970,201,1064,148,2830,800,879,2990,1651,2042,34,469,2042,2465,1028,506,2096,647,413,96,1077,395,2494,714,1710,2050,2032,2413,1136,13,101,1976,704,2706,2303,2465,1196,791,1900,2812,798,1,1144,612,1731,482,2044,2295,2830,2735,1644,746,1267,1455,2098,1039,351,1112,1027,2353,731,998,1506,2864,2355,702,2837,2256,536,330,1775,1688,2034,2451,1629,2571,2631,864,1311,417,2553,1859,1277,2878,550,230,2599,2670,2158,1010,2227,940,1867,106,1467,2520,954,2779,675,2817,1198,1692,2196,956,2644,2280,2354,2298,1517,257,2052,1897,2238,2876,2074,1925,1120,812,2995,948,2114,1612,1675,1260,1622,2144,409,1221,1841,1402,1620,2517,1030,1668,2002,1049,2593,1021,1413,746,2680,1301,1970,1067,1893,2983,2571,433,788,61,773,817,770,931,807,2430,1783,856,2359,1699,1084,1089,970,1644,562,2109,252,930,1682,2513,541,2472,1405,1092,2191,798,988,70,48,2036,2572,2188,519,2200,1816,1443,2166,716,722,712,1064,2209,2753,855,2854,1581,2339,2932,1014,1413,1986,896,2248,2536,1914,1907,2263,156,2265,737,596,301,1934,2762,1274,1084,2550,355,2475,1457,2083,2823,383,1245,2463,509,61,1429,2732,2502,723,1665,1349,1161,1609,2685,2015,2273,2806,1675,2225,764,1689,2657,749,776,2005,717,2198,1719,2649,2750,2768,1763,2917,69,1254,2727,820,2028,2046,1488,1190,2243,1717,2264,1084,528,425,2842,2890,172,1947,448,1391,1037,930,1044,2437,1738,1614,534,2496,50,2604,2595,78,710,2276,513,1667,1658,327,2299,2204,277,2540,1702,912,1420,2739,2951,2037,553,2878,70,1358,2741,1325,1084,8,2230,957,952,1973,885,614,2282,1376,2543,2087,446,252,72,2720,1743,1275,2839,349,491,1433,875,2103,922,2474,2629,835,881,1560,2045,1640,601,893,1393,718,426,2403,866,2786,2875,1833,1944,732,1452,2312,144,2257,376,2205,2988,91,2207,787,1521,2177,1907,468,2153,1151,2894,1201,1455,86,2699,1364,2769,2953,2830,1645,1522,843,2105,132,50,2001,2869,1097,1295,126,2269,1434,2305,1475,63,1472,991,2726,2299,755,981,1744,1635,1519,1281,181,2712,1999,2970,1269,384,2259,218,1916,2618,883,1127,413,990,705,1046,2353,2530,943,457,2672,1406,2938,2931,2797,1003,2885,397,440,818,1208,2061,1087,1961,230,2127,1802,2680,2272,965,2579,810,796,2982,129,1891,1179,1096,1770,1996,799,1427,2309,1999,2171,2142,209,675,2857,957,1576,1727,1683,1477,2361,1786,1439,608,1011,2607,222,1650,2578,2286,1902,1100,213,2697,2169,1155,2796,303,2564,2811,2827,293,2293,1048,1263,1859,1840,1549,994,197,306,163,1015,330,885,861,2787,135,2772,219,1524,292,1970,2205,2480,1829,2227,2939,1924,2767,1785,591,2478,369,1890,2405,2672,498,1883,734,1331,556,1866,599,2115,681,911,1281,1526,730,826,94,2403,1445,2855,2520,453,862,465,2904,1761,2257,2671,155,1787,1166,484,1894,709,1713,756,888,1737,1842,916,1435,1688,2087,2537,2982,2124,1014,2092,1617,521,800,1698,1473,2889,2380,2466,1568,860,1678,2587,1250,1933,1667,1091,673,2567,1294,90,2138,695,364,895,1171,1540,1753,1455,2237,1527,1314,454,1025,703,2398,1286,78,2640,1561,1582,328,302,2643,1954,1407,658,1277,268,2427,454,828,2963,2428,10,1846,754,1288,2841,673,807,1508,352,1635,2515,1334,1270,1851,1840,54,210,2723,1834,279,1384,2869,264,1612,1742,2762,1540,504,132,1906,137,2278,2014,20,1865,1090,1896,2253,1378,1052,1455,1277,2951,1529,2832,1650,422,1976,687,1337,216,2490,2120,2746,2523,2716,2820,781,540,341,1850,420,242,1946,2571,1670,2835,2054,1573,1868,1307,1798,509,2457,1868,1667,2830,558,1450,587,66,1829,2090,2715,2033,1867,2264,2188,1457,645,173,1772,330,375,674,2939,1422,1840,2458,1595,88,104,2934,2615,2728,2380,1340,2414,1420,120,585,45,517,1234,1663,95,675,1657,1098,2454,614,2979,270,2112,1411,1700,1935,2820,731,1110,1137,1336,371,1995,1546,404,1784,1011,1633,1071,2515,381,413,227,1673,511,1049,1664,680,286,2061,2429,1825,2392,1099,1769,2158,67,2990,1541,2160,1470,1741,1659,716,2928,1669,2513,1798,2424,105,234,549,2757,2405,2815,889,1353,385,2245,2665,2619,2865,2750,1054,676,2598,2917,2370,1564,2035,2283,2709,938,618,1793,2342,2252,803,836,2953,2512,738,1664,1375,1161,1144,1035,1932,1957,2709,941,2648,2251,2020,1823,1208,1205,2462,2686,902,1989,2556,667,1556,2524,1660,390,1730,1719,353,260,701,416,2844,732,1576,106,2604,948,210,1107,851,972,1699,2114,354,1668,2444,650,1248,2880,2585,278,2895,1071,2698,2899,1946,974,733,1339,1019,2213,2971,566,1,2002,2668,1001,1118,2979,1820,764,789,664,1122,975,961,409,325,1168,742,869,2442,1732,2244,1541,891,1727,2916,1846,690,874,2473,646,1408,1157,2485,577,461,432,2759,916,1010,1077,2108,2022,2890,2920,602,393,1774,2917,1378,540,1117,2025,2789,1226,2692,651,1425,2095,814,1756,340,2974,2025,895,2298,2604,773,625,2001,1687,2586,1244,2387,593,2205,1274,1564,2258,2440,1721,963,1874,1664,1375,2723,2335,732,2123,295,1249,1158,717,2270,2773,2092,1719,1264,1305,1869,389,2058,2289,971,2459,2336,163,1821,121,2257,1311,1033,320,1723,1811,2361,498,2946,2729,1487,2767,2818,131,1746,282,2200,1107,30,1951,528,2594,1618,2668,1970,2936,1641,1615,1637,1561,1182,2403,2538,722,545,2639,2306,2553,208,1289,2502,2428,1301,1642,2914,2060,1017,2399,494,1983,895,147,839,1184,1757,2497,1812,2987,909,198,858,297,2812,1466,1232,648,2909,1173,1513,2592,2237,2651,2165,2741,1786,1209,2179,214,2726,1807,2372,2506,67,1880,2313,2679,2521,2970,182,85,2342,2663,1520,1107,2515,1510,2659,2628,2724,947,1155,752,332,87,1471,833,528,1219,1411,2997,232,1904,2093,1709,1359,2909,2319,1640,67,2342,1041,1398,1161,1266,1985,1188,1880,2157,2000,1504,2504,2907,732,2660,994,599,1375,1740,1274,1834,2610,2147,2920,2680,549,2061,2311,1727,1288,2786,2940,1084,1790,2778,1811,1755,2019,2066,2371,1694,502,1038,1835,576,27,2792,1158,2725,2663,1610,2129,541,1799,2148,2001,515,557,2589,2331,2613,2573,1937,1832,1366,2636,266,23,2194,7,2652,2082,2833,2042,887,385,1595,2020,2440,2722,2836,2976,522,641,1893,844,1715,141,2845,1041,211,498,1824,2353,2570,927,73,1188,1370,2997,670,852,292,2660,107,2065,1394,782,313,2070,1398,1581,1058,1870,660,2704,434,1807,507,1455,95,2137,1393,2956,409,1835,880,2736,1643,1145,1492,2929,50,2211,1316,2745,333,996,2513,629,2671,1457,2978,2335,848,1596,2268,2293,2572,1494,1109,1713,2820,1860,2152,441,989,802,524,2818,212,2844,2705,1219,654,2621,987,1535,2775,1528,2215,2613,323,736,22,2767,1337,648,837,2912,2519,152,547,495,362,254,2515,325,2076,2263,2479,2730,2263,2375,566,1590,2887,1015,1072,2292,1767,1345,788,1455,2667,1944,2770,1967,2111,1309,223,532,749,1841,2909,1797,1944,218,1526,435,2337,846,1728,2139,208,2577,483,594,2384,1900,2275,1217,994,2930,1525,281,1380,566,128,2897,78,850,190,379,1465,963,2361,1258,2221,1624,1435,683,22,2573,2076,2151,245,2980,2972,1565,1987,187,1015,1499,1025,970,825,2440,113,144,2405,1967,1241,713,2900,2426,2526,447,296,1741,150,1684,2010,2920,2158,1335,1930,2379,2326,397,2238,2560,1011,2636,485,250,1567,2910,1187,499,2400,2491,440,2806,176,100,2191,1976,876,394,1232,869,1225,2709,1183,1919,1654,722,1125,0,986,580,1017,2664,61,2884,1242,538,698,2673,2814,1540,2228,1229,1501,1440,1747,2301,674,980,743,155,2809,2097,1022,1029,374,1214,898,2932,166,2272,2268,2562,759,1540,1485,1260,1376,324,2191,1221,1532,639,1308,1586,1296,117,2891,1292,497,1445,2018,1327,13,1714,2444,1388,1231,54,1204,1834,2786,1498,640,2970,895,2603,1946,2358,2404,2638,2726,162,1465,2196,2038,1012,2047,2630,1841,2092,228,1321,1073,1232,1027,520,1007,990,728,1945,1419,2495,267,2936,2020,2423,1514,1044,46,330,771,778,60,1889,1454,1507,1249,2789,1236,2077,1883,1585,2888,274,620,2861,1154,2819,187,2679,1726,289,2681,2348,61,967,585,1044,2892,1084,1547,911,2236,2999,239,1263,1366,832,2483,1202,1717,1557,1314,2224,2199,1860,2418,493,928,2075,2952,2682,2472,1080,507,480,2047,421,736,2539,339,1052,1355,1378,1464,326,2754,1900,1132,2884,221,1793,1825,137,2920,2492,316,2372,1976,1321,1079,582,2982,74,2089,1355,2928,401,226,2683,2703,363,2764,2001,652,1571,1053,2931,1944,2964,2343,343,2345,2818,2433,2971,2363,817,984,151,2436,2079,503,2221,1816,3,1612,424,1494,2525,426,284,1344,1534,2260,2569,866,1846,488,1887,2342,330,2422,1665,1705,2189,1858,292,1381,661,2883,2945,1636,773,500,2042,1007,2908,584,1854,49,1941,2339,2316,2762,2024,283,444,2577,2690,1306,1674,2387,1262,778,246,2707,942,794,598,1431,1411,2760,1072,2212,2061,2158,474,1355,1576,2172,2633,607,225,1061,696,1954,1274,2923,955,216,268,326,750,662,2384,2782,1712,1734,2145,1154,382,2089,358,1305,514,1863,1860,2832,173,2751,1629,2631,2515,1954,2176,2373,667,2342,1046,2190,2792,2549,2106,1228,1095,2432,2243,1737,401,1731,583,1681,2645,2571,2721,1839,109,2096,1773,1655,232,276,2010,817,230,1547,2144,259,1136,990,2996,615,1656,1822,1888,2096,2537,2734,2209,1045,1675,2854,1208,2401,2931,1221,1383,651,2403,1696,1648,804,2975,894,2343,539,2005,1916,432,857,1650,1946,1304,1536,289,486,2323,2158,1055,2528,1503,834,267,2256,70,1387,1532,135,1279,1001,2834,1437,210,734,106,2043,2297,1140,2185,2629,2197,273,869,307,1176,764,557,2382,2111,1157,853,2947,1953,1323,572,2685,1729,1834,2790,1590,798,1301,1012,46,1971,629,1908,2283,1296,2706,785,2471,2932,534,744,2079,837,668,538,2227,2898,366,190,2747,2738,1681,1413,2918,2063,1766,1455,185,2079,2936,1544,2818,1177,772,462,2579,1243,2519,969,1748,2209,526,1246,2558,2711,685,2032,2604,1031,2193,572,1447,2443,94,191,1213,2787,825,650,2943,1025,837,108,613,235,529,1051,496,1129,52,920,1853,1221,1311,2829,1144,1838,2799,2663,2808,632,627,2183,2700,153,1956,77,335,2709,1774,1058,57,1100,1187,740,2099,1670,11,2671,428,2160,2795,641,1465,1950,2671,1274,2117,2920,2587,634,2550,765,2811,2703,2010,2526,1373,1172,637,2405,71,559,2273,2005,2985,392,1949,69,1509,168,25,35,2529,1437,500,993,1914,1024,872,1618,2223,2496,2531,1497,2215,2431,544,872,2076,67,2807,1312,1682,2592,1907,68,2545,1465,397,647,1114,1051,868,2873,1052,1136,2019,2476,2241,1873,2484,2169,2708,1451,2216,2361,517,347,2351,1464,1663,1812,2209,332,1377,2887,1442,2027,1701,1917,2771,1866,773,2851,732,514,1108,1804,1815,264,2219,528,2075,606,1115,2844,1420,1461,690,2709,2735,2242,2651,272,2780,1479}

    2592

    1761

    Returns: 405426006

  79. {2335,2022,2855,1906,2775,1431,248,1806,1093,1671,2912,2900,2643,1190,2455,2759,616,1205,487,507,1328,1177,870,1574,1795,563,1198,2211,658,194,311,2145,2943,801,2358,2321,1963,1047,1809,2231,2911,1114,102,923,2822,330,2262,1122,626,946,2378,1268,1483,66,1217,830,961,1853,2760,78,401,2428,2392,2179,1035,932,2036,987,2499,1000,1749,433,2421,2581,2438,1059,2665,1096,1565,898,312,785,893,2555,2347,1593,2147,639,534,1441,960,1548,2013,2909,2926,2773,2509,788,2313,1386,1088,2714,1960,2683,25,2200,1698,1899,768,1645,2215,2444,1317,2623,490,2749,2233,500,1495,2820,2896,1089,227,648,1026,1875,1805,2134,1048,2332,976,242,1867,470,1284,575,1530,1039,2942,2656,2434,2888,348,2776,1961,302,740,2800,1712,1983,2956,2285,214,1214,2338,1479,2009,708,2914,846,1952,2824,121,1408,2178,2687,1350,2850,1594,1277,1930,1688,1738,2900,2593,1075,1893,2217,1260,1155,1847,2259,1345,1975,179,2947,705,1616,2692,349,248,2050,1874,787,686,1244,701,288,2431,2707,2244,2382,2551,2125,1435,2667,197,724,2868,1559,418,1015,2548,1351,14,2587,2643,2407,2324,458,1228,2386,2402,2852,1520,50,2833,2523,2842,2387,2073,2623,2344,1614,2774,439,2673,276,395,1175,2643,2008,1756,2779,1875,1524,770,160,1833,585,2113,2506,1205,517,1135,761,1272,2811,2972,1118,1875,1207,438,2206,1908,886,2705,2362,1835,2795,1849,2937,877,1234,698,107,2385,473,1536,1745,88,2971,100,1255,1890,1512,80,1215,782,1924,132,1998,1951,2836,78,1138,2593,2342,493,1536,1427,366,2391,2484,2470,1621,1563,63,2535,1046,514,2899,120,1411,1539,2538,1801,512,980,756,2906,1049,156,679,1557,1250,2830,1011,1884,1656,2389,2137,1076,1082,2854,2603,2869,2754,829,1611,1214,2252,2525,1423,2406,442,2454,828,504,2650,498,570,385,2128,2348,225,2654,2553,2445,2135,681,130,561,650,1747,241,1224,394,237,1004,1980,2197,1604,2472,41,1659,2998,586,538,255,2798,2894,2261,497,1119,2222,2641,2828,2370,210,926,1114,1321,2445,1916,2769,97,1181,2964,2019,2194,2751,32,2143,1207,880,1164,1527,903,2377,2947,2740,1744,1508,66,1401,842,2744,2802,1033,908,51,1288,1134,1380,455,2655,1965,1786,1670,1384,488,1987,49,2836,1340,2875,432,2624,2699,2556,2555,1281,120,687,759,1581,1598,1626,1880,2062,2840,209,2256,512,1085,89,222,1254,445,830,2793,1646,2431,821,221,2877,1619,359,65,1586,1141,2958,840,736,1130,2535,1164,759,181,1806,1178,2037,1649,1402,2022,1272,601,896,928,2759,1415,806,2708,2976,597,75,805,1943,873,2044,225,1063,2541,680,2015,403,981,1356,1404,2734,2593,785,2610,2746,1702,152,839,97,929,2471,959,2176,954,189,1337,1479,2105,212,2577,753,40,351,996,995,2330,2680,1910,2126,1917,2032,2625,2763,2580,792,1253,971,2133,2841,2790,453,1604,1205,2954,695,1780,2489,2479,2846,2676,2184,746,1644,208,2567,373,2232,1389,2697,2204,2123,1674,2345,1540,1113,2389,2929,917,637,186,2574,909,927,2671,97,154,1480,1355,21,1759,2601,591,2500,2704,2190,1039,2238,2027,281,1703,96,823,2215,128,1100,1434,1023,775,2458,2092,1945,1634,1061,2317,1504,2435,1757,2722,1232,1470,16,552,362,2325,614,1274,1549,2923,1287,1911,2663,2261,2665,348,422,1395,2605,2374,291,1608,1776,962,910,2700,348,1750,2927,1840,2956,320,1702,1002,1088,2322,2854,1546,169,1676,2881,1739,2581,21,1348,2548,1780,1590,627,1300,156,2281,975,574,192,2010,1466,384,1839,2363,2279,539,2093,1338,1749,326,2564,2612,1338,2892,1995,1721,945,1586,1217,2305,2981,1415,1561,563,356,341,2973,720,2538,2283,2631,208,2794,1885,2919,133,643,1295,393,647,928,775,2149,669,481,2038,2191,26,1097,2745,1035,2728,2217,2885,374,2365,1613,2951,1485,1743,1251,1267,441,1305,1709,2806,2468,1267,1582,1721,284,2954,1745,2340,2859,2000,1131,670,974,1231,2887,2239,1268,2481,2476,882,991,746,1538,762,470,1494,2633,678,2432,2806,519,963,1025,267,1170,1059,1336,2131,476,1771,2311,1894,1761,851,515,1108,1213,675,2652,2857,2216,2757,1103,403,2982,2376,2130,590,1665,505,2670,297,1117,1876,1932,930,1619,127,2213,319,1697,794,2678,2812,402,2442,1895,412,1751,2715,1855,221,2090,1934,1533,2722,23,2233,2922,2096,2098,1382,2389,2726,2660,2863,1537,305,2804,123,1829,243,1803,2912,2187,2300,159,7,626,2747,1547,1938,735,2917,2817,1452,2018,1544,1311,787,1677,450,2521,2865,2814,2119,1544,2810,2331,991,33,508,879,1529,2655,2260,309,795,195,1156,1334,368,2331,535,2653,2362,2785,1416,1956,55,1489,2156,2280,677,485,2659,357,1515,2210,1947,1804,155,138,1396,1712,2785,909,49,574,1869,182,207,2108,2893,1830,1151,2031,1175,2319,2655,2240,2824,2897,1776,2679,2293,2697,1740,2126,578,1770,303,1697,819,1469,938,1780,2827,1645,381,2649,2264,1954,919,1350,595,753,1390,755,2262,2416,2628,1572,2814,1108,473,78,1414,1896,2304,1124,544,2437,1628,210,431,17,2139,1747,1473,2122,280,1422,1909,1379,948,769,1554,614,2251,775,1071,386,2271,417,2293,2907,2783,116,204,867,2847,1854,1425,1630,231,1671,621,1718,510,1624,344,2545,2058,304,324,1896,1136,612,308,2733,1565,1765,419,1475,2639,2202,1545,1964,767,595,1877,2833,310,1632,471,2412,709,597,82,1270,269,605,822,1691,724,1489,2469,800,36,2936,1430,53,2480,225,2054,2957,2948,196,1047,1986,2465,2945,81,1488,1223,1308,1928,1531,613,2633,1410,468,2007,152,2730,1362,2765,1928,2120,1941,1615,2279,850,2053,2123,2162,401,1771,390,896,137,435,2215,91,1837,137,1491,693,1078,201,70,443,678,1227,326,2520,1364,1491,2492,2768,1710,683,2969,1953,167,1939,854,1557,1352,355,2663,2094,2095,983,163,420,224,1995,2299,989,1359,957,1555,922,1636,65,1512,1904,1889,320,2729,2727,1235,744,1709,2699,1432,474,462,2595,1384,1031,197,2619,659,1473,576,1125,2540,1312,2917,1095,1479,1491,166,1702,37,2641,816,2675,2718,1277,2060,949,853,171,467,370,2231,371,156,1967,2165,550,2247,2664,2453,1131,1246,1213,1629,2831,1346,1616,1127,1974,356,2044,2517,330,2547,672,691,1950,2698,2412,2287,2040,199,1971,1538,2458,2228,2371,1367,1765,2861,2107,2862,2,1184,2827,2131,1509,1713,2868,1746,2925,1525,2353,2505,1844,2640,1950,286,2279,478,62,2064,1483,2262,1218,1965,1802,104,2249,1350,1072,1475,2417,2658,26,1075,2360,2255,1959,969,1001,1561,2668,2695,1946,2240,1215,2231,2099,1214,854,1720,671,915,1542,249,2908,1278,713,2274,2683,1506,180,356,1043,640,1789,1073,2002,2618,1228,1776,2061,2386,765,2515,2184,44,2608,2287,133,287,1444,1192,746,205,54,1333,389,1797,992,1048,501,1088,1673,1015,2970,1903,393,1982,1632,2063,658,1810,2443,547,95,2710,2933,1728,2334,1454,311,2930,2523,469,2152,1127,2040,708,1515,2994,460,2390,1430,110,1126,314,2328,2404,1365,1455,1303,628,251,8,258,2638,1037,1619,2592,1721,2655,2656,1322,1885,2709,1690,642,269,45,1330,1335,2756,2773,217,2942,2304,1653,352,1680,466,1035,2205,38,678,1973,394,1160,475,2057,2971,633,2144,1852,2672,236,1595,2719,1863,361,690,2102,2054,2123,2287,452,2676,1028,2680,1194,312,1125,1267,2625,1395,1385,131,2076,564,2805,1787,1053,549,2167,157,942,1544,2438,863,1879,1518,2487,149,990,757,1272,118,15,1621,160,1770,2903,2585,1516,1578,2348,871,2275,2392,2228,1720,1704,2100,783,1666,2144,2500,2533,2456,408,301,335,2905,1080,441,1391,906,1415,120,220,2047,660,2181,2559,2200,1455,1619,2392,2991,1492,1993,557,2274,2929,2688,2289,2013,2530,2491,1424,1165,755,1473,120,580,1984,1473,2001,997,1856,2327,2376,1142,2853,403,1387,2072,403,110,2565,474,1357,2218,2264,2376,475,1168,1980,2112,112,506,897,1522,237,1209,1543,1048,2065,569,2394,2150,1840,953,1274,1635,1615,2152,953,1993,1991,1117,2668,672,986,2522,1093,2807,805,875,2838,1222,103,896,623,1256,1458,2800,841,970,1438,1500,2377,311,1613,1773,2764,1462,86,2484,2102,1177,2491,2508,198,413,2596,2050,2462,2152,1828,607,758,414,270,1059,2558,2131,2366,2643,2896,743,1424,1353,1218,2765,286,713,249,1550,734,1220,558,2925,556,394,2619,35,947,1483,585,410,2722,2226,694,1782,1212,1687,2447,2586,1685,2389,2974,167,702,1863,1123,351,1534,2007,2388,2865,1183,2652,1160,2143,1645,1543,1862,1573,2096,1894,1843,966,2130,1244,2976,895,627,1503,2852,1725,1112,1175,1283,2692,2782,785,345,2590,2555,2402,2837,2112,1206,845,1979,2684,2048,79,1589,554,1086,1780,1272,1535,1974,1198,1914,2639,1365,2215,2343,1246,46,2058,2392,2911,2397,1516,1734,1125,2317,1429,1573,548,1480,2085,753,1153,1143,2480,968,1383,2538,2963,2017,172,2551,502,1146,1840,1840,2378,83,1791,1228,1343,2329,803,1729,574,1905,560,1767,2264,859,2945,1592,65,1159,1074,595,2625,915,1452,777,1727,2829,376,1062,1574,1929,2607,2975,982,989,723,200,1616,242,1018,2228,169,1313,206,2269,1814,747,729,2841,1827,2230,1772,2152,2668,2998,2,1648,707,2784,2664,71,1238,983,280,2431,1937,641,1938,1937,2089,2214,2607,2348,1412,2847,385,2237,291,715,401,461,1719,1563,670,847,1369,658,348,585,1536,498,22,2353,2643,90,125,1641,2520,769,1717,2230,868,2208,2992,1266,1093,2432,839,2491,2849,1154,2276,600,614,559,2272,2699,589,563,1534,291,54,799,2307,248,2642,1573,852,2437,1987,234,1824,788,603,289,407,2555,19,1370,1100,715,2966,2035,943,425,2610,365,2200,953,2814,71,1609,2055,2447,626,942,2361,2491,1705,2938,2328,2620,161,1673,282,2818,70,296,103,1249,1844,2770,2544,2233,482,643,1091,1838,1966,2092,1488,48,1822,2005,1242,2572,151,1482,2044,2121,638,1424,1561,931,328,1577,415,2456,1040,661,1752,2995,572,2836,742,396,1738,1012,985,1045,826,550,1787,2241,2929,2187,471,1226,2903,51,2072,1268,1606,2982,1962,2102,834,2445,2504,1561,2512,331,2060,2141,1468,2873,1166,1444,2257,913,1401,1553,361,2321,1494,1444,2606,2788,1057,1568,1671,2266,2168,728,1548,990,1272,2280,1184,1601,219,2279,2908,2767,1771,373,2707,790,326,322,1091,2574,0,2924,1065,480,28,1188,595,1599,2544,2021,482,1501,277,991,2483,1469,503,264,2582,1027,1204,632,1361,734,521,1515,2848,1143,1450,957,840,831,85,2946,2123,1140,2212,94,2192,2603,1249,545,1294,900,1465,1672,447,266,1650,1782,2380,2982,787,1554,1905,1478,116,628,1597,611,96,1178,474,1448,2644,2982,1671,1512,1475,1146,2755,2636,2622,1762,485,2643,2872,989,1365,2134,2016,2183,1069,1505,2270,1609,2787,2634,672,2613,1316,2906,2095,547,2320,1698,1153,2892,1714,2245,889,658,730,2666,2629,2331,1914,2750,1627,2319,1836,2175,1540,807,409,2743,2145,2843,967,1122,1067,1695,965,2407,2557,1664,1175,1780,1193,1596,1502,2850,1595,211,1186,1325,998,2859,1009,406,609,989,1667,1350,2527,360,2036,2643,2521,2465,39,1315,484,1455,2523,6,2192,205,1815,2851,2493,404,657,1381,383,802,1330,2281,1179,1300,813,1790,1477,2036,2699,2492,367,2335,290,855,142,511,1883,1113,2752,1472,2643,909,2330,211,2560,617,771,2626,2101,2909,2106,1831,2221,1968,2892,1036,2699,25,573,1940,2416,2548,567,1552,2082,2458,1711,1424,240,698,2823,1035,2215,1766,345,2186,2641,2991,1942,1185,614,580,174,1846,2908,92,622,1014,579,1973,1702,1187,1702,2576,756,1994,1412,2131,1243,336,1426,1506,2412,507,2319,842,531,2137,169,1223,525,1597,1952,2074,2089,2455,2824,298,746,979,1908,2756,204,2681,906,336,1612,2490,1503,388,2445,636,2851,1265,218,2944,90,475,375,2331,2151,2046,161,1118,1761,2599,1738,1255,2124,49,1821,2146,663,1793,2236,1268,1769,1016,1992,2495,1287,831,2476,935,2801,1246,700,2411,2940,1068,1445,2194,249,2868,203,738,337,164,1113,276,1831,1720,1752,1784,2801,2950,795,1791,563,1858,1401,1336,2421,1217,2929,2977,925,1392,2979,84,1449,1015,417,198,271,1660,1112,2189,2995,1765,2032,276,2342,2383,542,2118,827,2223,1736,286,1092,1248,665,2134,1084,2228,2001,1214,750,2523,1058,2608,1651,957,981,2732,2775,274,2819,658,584,1093,323,2854,2358,2064,1534,2721,1152,896,167,927,2743,360,2628,120,2643,829,1116,2182,732,2951,2566,2998,2341,750,1437,2676,2193,2354,1222,2279,1164,482,2060,1010,1,2369,1532,316,1304,2524,2670,2063,364,1358,2402,1517,1368,964,1549,3,1995,2554,1457,297,754,1836,2425,2129,1845,2936,1429,1913,1933,1430,2203,2523,1541,1138,1273,2643,449,323,2965,1057,2290,2862,2194,1568,269,2286,2192,1,878,151,2977,1860,1077,1915,2004,2873,167,512,1276,2110,1732,90,560,984,200,2331,1507,369,2147,1159,2916,2101,216,658,141,2367,1290,1807,2307,611,452,2248,2894,2644,2902,1930,387,256,2513,1051,2411,2980,1765,2426,2826,1678,1427,1438,1471,2466,193,269,1621,2331,2631,147,1489,1608,2753,1539,1479,252,600,2309,2733,2993,1818,2532,2674,2475,992,2335,2356,307,1100,2822,876,817,1341,2151,1977,2202,439,1902,2930,1888,210,1060,119,126,2952,1104,1669,448,2520,2278,1170,2170,2086,2557,2941,719,2918,1057,812,2744,1791,2470,318,773,12,1382,977,5,1981,2326,620,2988,586,1019,537,1806,2778,1018,1929,2296,482,822,1181,2792,342,584,1783,2472,1455,837,232,1642,2843,396,271,1409,585,2914,43,2843,2643,687,1757,401,999,875,872,1920,958,867,2583,2805,2707,1387,457,2250,727,1491,805,2563,580,1780,923,2074,2152,1616,2251,996,766,170,2902,1351,2020,1515,911,1250,1999,2822,725,1597,2243,228,2393,2363,1376,2756,2889,748,2043,208,2260,2777,1724,2498,1917,2045,1972,2514,1882,272,1563,351,1701,2578,2326,2581,456,1694,776,392,93,2114,2702,443,1645,2046,2060,536,1114,96,610,1264,1214,2310,145,1366,1155,2145,2163,2551,2808,2725,2534,2467,940,2885,284,2461,1465,2025,1898,1132,2463,901,1574,823,1861,1731,68,670,2164,2875,1498,2403,1534,2098,23,950,1692,2918,529,89,45,1892,955,536,436,2224,1050,1205,1616,2683,1548,2939,2034,1938,1658,2607,210,2698,396,2451,589,188,1855,2421,993,71,16,2799,538,1091,2439,2514,465,2437,670,1950,1865,2201,1089,721,2175,834,318,2179,2648,2776,1288,2763,1455,59,93,78,2529,495,399,2859,482,494,2086,941,215,377,901,966,271,2727,2722,278,2989,2758,1027,2196,1769,1111,576,2079,715,482,2791,1682,237,1090,1550,2664,1184,1180,2545,1563,2294,1539,1464,1252,2297,2960,582,2431,2374,2756,658,146,1293,851,1280,2311,2901,1137,2955,2399,1353,2388,1399,2311,1952,1149,2964,1867,703,612,1603,740,2187,1534,1614,823,2883,2327,2056,1988,1032,30,1209,692,584,2359,2942,1647,1452,983,1802,1301,200,836,1657,1043,2634,901,1231,2588,1516,2790,90,2760,1517,1319,2221,2087,2691,2803,842,27,136,281,2039,2075,410,823,2055,1810,930,2925,927,1011,1400,456,2367,2728,1851,2695,1946,842,1621,2964,113,2910,1037,2611,201,2904,2816,9,356,521,2536,1336,1856,1740,1927,377,1486,2668,755,1125,1403,1296,2285,1158,140,487,1862,2327,2679,1461,156,426,1110,2506,2037,550,586,171,2397,103,1958,1769,49,957,1108,1358,1780,1726,1484,2615,2977,1712,1637,1641,2367,1291,852,2600,1065,482,2521,2051,2781,701,430,985,404,1009,2611,788,1749,1134,1906,1439,1354,219,1746,1067,2409,2412,745,2982,2587,1902,2482,2544,265,2520,1737,1375,1079,982,2651,2318,190,1011,2378,1971,2234,2899,626,19,946,1272,1211}

    {167,746,492,329,1186,345,2961,199,2072,2289,2142,2501,2816,1627,2112,516,1128,973,1008,1817,2558,697,2444,1840,1449,2510,896,113,1463,1337,1592,2560,2889,204,1081,1020,2134,845,1234,1024,2619,2286,1164,1066,1396,2977,207,268,34,683,251,2445,2143,1491,334,1110,2939,2362,1421,2450,987,610,2194,2643,938,677,1269,91,997,333,1407,161,604,2632,44,2505,58,2987,794,2331,674,2693,1017,262,2950,2065,2254,1861,1563,1450,971,4,1699,931,2028,1591,16,696,848,313,1905,1223,228,1917,1023,1529,998,811,2460,1887,2935,1105,2093,223,1731,90,796,713,740,2356,2330,1786,1219,2080,143,2821,347,393,2876,723,710,2188,463,1002,1400,2169,1643,1410,2225,688,972,2868,2291,9,399,2786,49,2751,2200,1772,2326,1510,345,376,516,966,1658,880,1232,654,2306,411,984,1214,1190,2614,2044,2472,1101,60,1549,447,1129,2813,2259,1600,107,2992,135,2953,2776,620,2521,790,913,2786,1283,422,2357,233,1329,1595,2905,2229,2694,2836,1960,2574,623,2669,2943,462,1190,1538,61,2524,175,1825,1487,481,1908,811,1760,407,2204,1349,1536,2717,1442,1272,812,1610,2981,2132,627,1534,905,1089,568,1310,1486,2748,620,1999,2167,880,2062,2787,2445,2733,2126,12,668,2977,599,1584,698,2628,152,712,679,1066,1563,2723,543,1907,1281,2236,1070,1476,2388,108,1156,729,2836,1630,889,191,244,1866,2737,1329,2537,2292,1157,2494,1121,663,763,1081,2119,2974,2702,2446,888,1200,2520,2136,2421,2644,1744,1207,498,2970,708,1597,2100,2209,2847,2655,2002,2773,85,737,488,1583,2538,299,640,354,1697,1997,1811,1764,2091,2253,1009,417,2660,1320,1639,366,2942,1114,338,2769,622,10,2133,2077,1804,2648,1748,1037,536,2880,662,2745,53,1712,2169,1988,2215,2200,1351,1432,1835,76,416,2353,1040,1946,2891,1561,2336,1214,2880,1072,125,919,523,656,1453,2405,1334,1850,956,2702,1337,2302,200,2060,2634,1679,2312,1133,134,424,18,2256,845,403,1451,2138,1546,2219,1933,2946,2306,391,1997,513,1485,2739,2368,1252,753,952,250,1424,2429,1777,2356,2358,2689,2026,1167,2999,1706,1677,1824,2880,2784,2327,2461,1995,662,2110,547,486,1798,2434,1222,435,1516,1173,1275,1147,61,2283,681,2029,2396,305,736,1060,2069,2859,1341,11,2328,2081,173,2313,1564,2220,1641,1272,2003,1828,738,150,405,314,202,60,2898,1933,693,2116,2448,120,2067,1849,2785,1933,1279,807,1917,1336,601,2906,1778,477,895,1849,964,2103,2078,1265,111,101,1846,2231,167,436,2610,83,1486,1144,29,140,1115,593,1935,989,795,1799,690,1934,455,1792,1074,1791,1503,1712,804,2084,797,1928,118,1796,1221,2666,2202,507,2129,2594,2835,2216,912,550,548,1033,1087,1282,1602,1106,485,1399,646,908,2284,1272,1365,2890,2162,556,362,2160,2343,221,1083,2463,2760,2157,309,1800,2020,1553,239,47,771,1351,592,1791,1673,2120,817,1936,1948,2403,2835,317,2259,165,1881,2805,2209,2728,2119,2268,2863,2818,1816,1176,68,79,2970,2341,183,2972,847,931,1554,1109,1413,2402,2867,1664,622,2986,1446,1111,70,2135,2822,2606,2517,658,1727,1272,2915,199,2126,2897,2449,1536,167,734,2874,780,1936,207,1235,1318,1449,248,2187,2271,421,2121,553,2722,396,780,1790,649,1401,2395,1098,311,1144,1554,779,207,267,2375,2622,2686,2517,1944,385,357,1021,1770,1758,1815,2305,1173,2760,2677,24,140,1810,1197,865,1499,989,2145,1332,2014,1613,2070,1712,279,2071,665,975,2531,306,998,46,932,833,31,1481,1041,1646,1867,2000,2598,482,1331,2292,1945,1870,1620,1922,115,2560,2878,2376,936,2546,1152,2832,851,700,2394,2606,1077,254,1587,2415,650,1910,259,49,328,219,2312,1109,1738,2549,1430,84,1148,1622,1770,26,261,896,14,996,1594,584,950,432,1768,1866,2562,1388,1055,587,1458,600,1087,588,1054,415,2568,1186,739,2840,1763,1496,678,1436,2831,1117,405,156,623,514,660,104,2445,1558,529,1292,1675,2272,2886,786,2189,1339,864,2350,377,1171,338,120,2745,285,1637,2086,484,2098,1554,1743,1201,2772,891,2931,559,260,1068,1969,1302,1022,2708,1399,394,1546,2186,1236,1974,2246,2918,109,1174,2597,298,1605,1401,1137,2618,2984,349,2962,1943,907,965,1234,2681,1405,1782,2493,1487,684,2502,657,2984,2323,2474,1121,1958,2059,2809,269,2380,885,1143,718,1716,1989,1196,31,310,354,1059,2392,644,169,215,2394,1165,1774,2891,253,2235,2741,945,985,1480,2126,541,2215,1650,1573,865,1252,343,2657,836,1182,2297,2824,2240,1712,2037,2232,1033,1278,372,315,1951,2997,263,788,2745,2179,2597,1236,2040,2728,2770,2676,2552,2473,852,2895,57,120,922,2392,376,446,1039,2251,2187,916,2398,251,1326,321,797,2040,2156,1818,2891,1621,2335,1400,1444,2365,1867,2135,1009,2765,1733,2876,2947,1582,2860,2684,1519,279,1782,623,1369,2908,2287,2673,1569,625,2868,1563,2215,2147,1842,340,1622,1702,2367,1214,2060,526,2762,1890,2717,1341,1139,2486,1515,932,2362,2530,2959,215,1369,210,2474,207,1013,190,2609,2766,275,1425,576,2040,2561,2000,2367,379,145,2864,1322,1688,2631,315,858,1829,1540,2466,1283,1356,944,1571,2927,2420,2983,602,1570,1433,732,2120,335,1218,2033,2799,1361,1977,1222,1374,1631,1056,1122,1741,2780,2472,1753,2608,2536,2602,2703,2727,1722,32,571,1671,2189,2046,2968,2414,492,2692,1625,781,1972,1777,32,401,1672,1952,2259,1916,797,2780,1557,1045,789,934,2505,1960,786,753,1693,2233,1222,1201,511,2827,55,1208,606,2022,1052,967,1919,1071,1579,2518,67,1228,491,1152,2372,956,2088,2705,482,235,1339,2101,2192,2513,1770,2058,1169,1663,1754,1859,555,921,842,1833,1181,2845,1035,82,1394,2491,1949,686,881,1738,2192,2536,1374,187,295,2702,1978,885,2180,1306,118,1858,1038,1155,646,2941,2245,2975,2800,1987,2657,2189,2010,2998,1804,2173,2339,1662,1151,1634,1114,994,32,2392,1251,1789,1000,2635,1598,2060,2284,2665,1780,394,315,401,2707,2964,2381,2352,1993,894,265,2084,2499,2622,2267,1862,834,446,1624,915,1091,868,1450,759,2662,1133,219,626,565,1145,1411,2759,1635,1290,1870,2998,529,1580,2171,540,1792,1931,883,1995,1188,635,380,2392,178,715,697,2685,1486,978,858,175,103,956,213,530,122,398,2364,2908,850,2302,49,684,1230,759,945,1323,1892,1570,2951,2463,1397,2346,1513,2416,1314,2424,1195,273,649,81,1141,168,1044,1873,453,610,1547,1588,1748,1554,1704,468,1018,699,967,623,2604,1785,2348,1079,2378,1654,438,449,1819,2301,52,346,823,2090,429,307,2751,881,1938,820,283,1415,1210,1556,1935,120,1064,2067,931,637,2920,1467,2007,2597,289,2436,2185,1979,909,426,1176,1026,769,1654,1667,2504,1947,1113,2381,2645,1058,1474,2354,2863,2331,1897,516,2851,136,2044,2579,1360,2137,1900,559,857,348,1395,475,1094,1372,1575,920,1640,1078,696,963,74,650,247,2097,1916,1018,2126,1381,1756,2584,2934,11,2543,2909,1781,2696,1730,704,2416,2647,1651,27,1030,1851,1722,2670,652,1686,1007,1976,622,2332,2041,2610,375,714,2355,2136,2012,236,451,2023,528,901,1871,351,1754,2474,967,923,2884,1300,1466,1392,2713,2427,1213,764,1300,642,396,894,2306,2251,1623,1909,2049,1458,2477,583,1401,2589,2231,164,798,1705,173,1707,2516,2700,2038,1261,1286,78,1974,1081,2080,2044,497,2558,2724,2882,2023,2373,148,2456,2796,680,124,1077,1843,2144,1720,919,2921,648,341,1713,437,2276,248,1609,2536,2762,695,884,981,1884,1144,746,2251,1102,1205,2538,65,471,167,808,2810,1682,2560,559,2723,369,1665,1202,1631,20,470,2906,2202,670,349,1683,621,1419,2863,2610,2472,1735,87,445,1751,1216,138,1418,2060,2337,1491,1780,341,2454,753,2690,470,1540,624,1848,2698,16,1974,603,1900,31,818,892,1347,2280,2211,774,2412,1621,885,2423,615,1632,2763,2777,622,805,865,1453,2006,99,1590,2479,824,2655,2308,1970,1539,957,1548,1409,2968,1794,2241,1371,1820,2392,1113,2329,2801,973,594,1853,2279,1443,2068,1617,2710,1536,1911,383,2222,1881,670,456,2147,2399,843,246,1159,1352,1386,1,2432,1094,1934,603,238,2896,2351,217,110,158,102,106,1791,2221,1952,2081,332,1633,2343,1493,956,1087,1481,768,1377,1998,2891,2614,1786,1424,2663,2841,1393,2400,1996,2770,1861,733,1448,326,1360,1388,2643,2643,292,1033,1505,581,782,2491,1534,1923,2503,1841,1195,2110,1699,2161,1281,2617,2587,2910,2907,547,1253,1916,850,1712,382,2616,664,1901,2072,2309,55,899,124,1338,1499,2452,2014,1204,1401,1999,1588,1079,248,2316,1595,2349,2528,2140,231,62,348,281,2229,1668,2442,1113,869,1900,119,2179,1256,1753,1514,1196,908,117,1787,342,2772,671,525,873,1751,1723,1536,2413,516,129,2654,884,1223,394,2237,1905,741,1068,2376,2604,1566,626,2505,2074,907,989,1081,9,1459,1638,2736,914,97,881,2221,1907,2646,170,1035,1711,1518,2323,502,853,1660,832,1717,114,434,2074,97,2430,2668,1681,293,1713,1430,1297,891,2442,1196,2219,860,276,196,1955,295,1163,2634,2637,149,747,515,658,925,310,396,1062,532,621,1346,2701,518,1757,2192,315,887,2505,16,492,2033,722,1813,1738,1442,793,2771,1019,1341,1497,1755,48,1213,1344,2836,1199,1482,767,475,2326,378,460,2756,1108,1839,890,1398,2511,1438,1779,509,403,1378,974,2575,1113,2199,1685,1146,471,2376,875,2298,2321,2105,2571,2720,2033,2520,479,1957,226,1332,893,1193,472,2668,2326,2701,1237,1299,1134,1104,867,2120,2627,1438,2204,814,64,237,718,2550,731,36,1289,2836,2792,2303,1149,2302,1071,1077,156,1412,685,2055,1194,1702,743,2877,2537,1220,2115,2842,576,2866,1455,734,310,2521,1592,2297,964,751,1042,1516,2433,2065,2435,193,2277,1883,2152,423,401,1128,1715,68,2119,1976,1377,2282,397,404,2343,2943,1244,347,2854,2593,2492,2434,487,2797,921,2379,313,899,584,2479,681,2996,2870,2773,2983,2369,2621,945,294,2262,2928,2872,1252,517,2159,1145,1464,2174,8,2688,631,2539,227,1815,1878,288,102,2761,1428,1034,2120,2023,1650,1921,1089,2013,2849,563,95,932,1539,2207,2148,537,1059,558,409,586,2974,1812,2369,1818,1602,1045,1545,200,1100,2834,2612,2443,1113,2856,844,2048,2054,1002,1797,778,1240,2110,913,2668,169,2063,924,1350,1749,2779,589,1820,2839,904,1829,65,1753,2258,1207,357,1189,1944,218,930,1205,1560,323,1690,2314,1708,2418,925,1159,272,1826,436,2971,1804,916,598,241,2359,79,2569,2917,361,2342,1871,1115,810,2711,1808,337,1307,2691,1696,2520,1877,1440,1262,2778,1417,1775,98,207,1520,1548,988,2140,396,2086,471,332,2544,900,844,1134,817,464,1618,2716,1309,248,1547,2155,1873,1033,1550,1812,557,184,2273,1521,1029,44,2913,2013,2250,208,2376,325,1456,611,2857,2936,499,48,216,1823,1987,2485,144,2202,1524,2655,812,925,257,991,2532,1416,1225,1900,1150,2295,654,614,1942,2488,339,474,1815,169,2066,378,2534,139,710,2117,30,909,294,861,740,2582,2528,608,2978,1855,1862,1847,1343,2924,156,2825,262,1878,645,2999,1522,443,1491,927,902,1318,566,1338,974,2682,1233,935,2396,2388,2883,2456,37,1511,2626,2990,219,1420,1043,1272,2037,677,2245,717,1813,2836,590,100,2641,2706,440,850,2229,2906,2154,2623,2373,838,2442,2548,2668,1941,1099,979,2440,2708,727,437,2216,31,507,312,37,825,104,1327,2683,373,358,676,520,577,2607,634,1011,689,1791,1584,2024,2475,2372,1925,1003,471,245,891,932,1494,2419,1090,2094,2671,2648,2302,2507,2519,2793,1342,943,78,2111,1985,2814,577,713,248,1053,1652,1105,1712,1971,448,1162,711,697,2195,1052,2654,1450,1914,2365,2172,2475,1339,1798,2049,651,966,1466,2643,1128,677,2552,755,13,23,2941,62,327,2741,699,507,1239,1089,314,2037,2692,1369,2737,2618,1523,444,835,1640,1013,2830,2616,637,1191,1678,2107,585,706,1872,230,1793,847,1298,1011,918,2392,1324,711,933,496,1092,1765,1810,809,1373,1720,2705,2087,828,669,2201,403,1363,2204,2943,750,1876,1233,262,2591,2891,1244,2475,1208,1574,403,1912,413,1220,2115,739,2001,73,1689,2392,1785,1263,1526,2184,1288,2008,1428,2570,682,2683,2871,1993,1469,1270,2942,2703,482,111,1661,2854,998,2913,2104,2286,32,2811,436,299,2028,1815,2319,2401,1860,2699,2331,2273,1214,2517,241,1234,1868,2042,1839,1491,1952,1392,134,750,2263,1153,2257,1111,2932,699,1972,1857,360,1767,2558,2772,749,966,2459,2976,2389,596,2917,1095,2741,409,990,2158,1193,1567,162,2479,1719,1990,2040,1187,1195,1095,1347,1548,1486,2735,65,2987,1985,2907,524,1733,333,2470,525,875,618,644,1473,366,2453,2665,3,1926,1925,2166,2584,305,2957,2260,858,1285,1700,69,600,2967,2594,2135,872,1752,670,716,1159,451,2886,1895,1697,2126,1203,2514,721,2497,2872,416,715,1539,2676,1812,2476,1037,1241,2284,686,1171,2530,1686,2384,1257,428,1537,1547,1771,752,2574,1738,685,591,197,1477,1585,760,1006,1190,2177,1132,286,2443,937,1805,984,667,2411,2223,2208,2312,2882,1005,626,1742,2421,176,229,1104,1015,1436,1918,1636,622,1469,2844,1120,2333,1958,228,1518,410,785,1415,1743,1037,105,829,2775,718,2328,862,753,815,2343,903,1479,2403,1607,2704,1447,2258,1412,1886,2697,2227,1128,18,2202,2009,2256,1699,2982,1263,1416,1525,2815,1019,1184,1463,171,748,2255,2839,438,2451,286,562,2854,2420,655,337,543,2083,688,2999,2216,276,1788,1840,177,2331,543,2997,658,623,1840,931,849,375,1005,1172,2622,1536,1590,2102,1252,2918,1900,2143,2174,1460,1057,1115,2288,1084,311,77,2404,1251,1864,2157,1912,1630,1993,2123,1999,1268,964,67,1452,619,2175,769,2139,1656,480,277,1300,1733,1479,1893,2955,2789,2601,2719,2230,1258,1088,595,2000,1829,724,1932,2074,784,1576,2205,2029,1667,356,989,663,283,2496,2762,1655,2505,1923,2242,1090,1797,469,2748,300,945,2712,794,1365,1458,42,471,153,549,894,2127,48,503,2622,1790,546,2542,2179,1229,225,1719,1131,1152,167,2441,1266,1840,1790,649,2422,1026,1228,1473,2496,152,1059,2030,1068,2644,2568,1071,1530,1878,2257,161,2289,820,1107,2233,1837,2738,1259,2283,2315,586,470,984,590,1499,2457,2109,2478,95,2053,1762,1950,1832,2473,2673,680,2173,951,1120,584,744,2124,1674,923,1126,1270,2153,1684,2930,2879,234,1762,2664,1406,2464,2383,1528,2408,1627,1916,1724,657,1695,1401,156,1268,2989,2082,2093,2264,2291,2052,1858,2265,551,2930,2704,700,91,2471,1594,1950,2068,1245,2272,981,845,2855,939,557,483,2421,584,459,2253,2392,685,310,2120,666,1970,1287,480,1486,2139,1749,130,82,2203,874,328,2195,166,2028,828,2742,2697,866,2082,2442,2630,2823,400,1391,2949,815,2063,767,2958,1999,856,2166,791,1438,1114,1570,2155,747,56,2415,1064,991,295,2706,909,1067,790,1247,155,196,1595,1306,1271,2922,2664,726,366,2221,356,2327,1834,2526,1019,72,435,1505,1134,546,2520,1541,772,2479,1053,2886,489,1677,555,2430,962,1113,1699,1019,363,2496,1891,225,49,33,2387,1449,574,1068,2692,648,1861,585,713,2900,688,1490,1991,350,1995,1551,1820,1839,2410,653,185,2348,1161,2273,1522,2061,1471,1714,2003,2341,542,1562,2786,401,2236,96,2731,1196,522,1706,200,2573,2011,2130,204,688,349,673,2788,1536,677,2411,1167,2622,2538,2757,2661,878,2918,286,1554,135,16,454,2872,2748,313,845,1954,308,1112,1682,2858,1190,51,490,2561,2005,1486,1109,427,2348,426,98,629,527,630,769,353,2198,1007,2738,125,2985,2362,317,2769,964,2843,2791,1293,409,348,1026,2698,2883,533,2538}

    252

    1335

    Returns: 103883270

  80. {1878,1416,2913,1971,2896,1515,1145,1290,1990,1972,62,16,1288,234,2930,1504,2294,1669,2257,193,500,1622,2546,1530,769,2325,1993,1332,2910,2020,1320,1458,2503,437,2388,555,1643,1746,687,618,2615,1012,1360,2742,573,2318,2440,2667,1661,107,1549,2531,1762,2360,659,2590,1413,2660,802,248,412,2729,2287,1658,851,1225,2255,270,2932,2023,1708,705,898,2698,395,1310,1262,2503,2278,1214,2481,2779,2604,1287,239,1766,476,574,77,1397,388,512,1559,2934,2593,491,2387,2737,1193,1019,889,1112,2924,2781,2559,2428,2344,1536,466,183,2302,1644,2056,769,2468,1328,932,426,2723,2914,364,2108,1927,2365,856,502,923,1351,1183,1428,2167,2772,1297,1615,2276,187,1243,1425,1814,1341,1415,1058,2127,2305,1880,741,2186,2976,204,2091,1468,2436,1126,739,814,1559,2392,2982,2325,1423,762,2350,1463,2380,1267,764,67,2807,1656,423,2246,1878,784,33,885,2722,2622,803,1283,524,2203,1360,6,1979,1272,1186,2324,1247,2150,2351,2332,1140,857,1703,1767,687,2477,1714,2812,831,2213,1602,2580,1592,564,2588,2572,430,978,649,1619,2659,2775,1039,140,2751,2668,1575,1030,2922,2777,2014,828,2386,2498,1131,2507,2108,2395,1891,2867,1828,1350,1509,2743,110,1706,2586,541,1037,500,2731,1530,25,2625,1664,1856,79,2083,2784,1011,1671,564,1573,2108,1371,1414,1265,367,176,2619,2197,1515,1698,1091,2123,809,1357,1140,2397,1991,1867,2739,2902,1328,1496,2695,2273,383,0,2960,2057,500,2957,1132,2208,677,1831,118,161,948,1448,2497,510,13,1684,841,2265,917,170,2635,1838,939,1442,1656,115,906,672,2928,1454,815,356,2615,594,475,45,2549,2492,245,2503,1247,2827,330,2041,2575,2462,1051,2608,2874,542,504,1165,2018,2756,409,2023,2372,299,155,2266,1472,262,1906,1462,2069,1473,2636,169,1371,1391,2543,2286,1847,1391,146,1192,2324,2639,1021,2312,1278,477,2561,2411,2847,966,693,2410,1419,2992,2985,449,1241,1254,1218,1349,73,2375,1586,1110,2646,475,2637,760,1925,659,548,753,2366,1445,1625,1354,1633,811,1299,57,1411,2968,2623,892,1237,993,994,42,590,2340,2354,1176,1740,458,2263,715,1664,1489,396,1234,1998,2461,1098,1964,1496,1094,139,98,2575,2792,2306,2641,198,2488,1875,1973,2280,1717,1763,2618,1328,33,2261,1713,2053,1451,253,2484,253,1296,360,2699,1959,1324,1088,2846,2079,853,464,1671,1011,566,810,2630,1660,2790,586,52,364,2679,1443,2723,1319,2546,1124,624,2928,2252,2403,818,107,1669,1316,2123,2508,1576,2271,833,1309,2994,4,585,2673,971,2457,661,2364,1042,8,1765,2393,600,351,2287,145,1269,1763,1755,1711,926,2191,2290,2301,1818,2579,935,588,2115,1306,1117,388,1929,2646,1389,1335,790,2248,2073,507,2559,2922,2733,2738,1131,362,342,1081,1658,1295,627,1805,2166,312,2074,1280,2412,1073,1957,2541,1306,2847,2086,1149,1214,222,1600,35,253,2634,411,265,2391,348,1769,2849,2735,1294,1350,658,2151,1677,1391,2960,2916,2840,1938,1184,1896,852,1358,2145,1443,967,2471,2708,139,1887,2393,1317,1085,786,360,1676,2970,2578,1308,2664,218,1222,2191,1748,986,2855,424,1597,2545,723,826,945,497,1418,2396,30,1257,208,2672,265,2457,772,473,1186,122,2841,2802,2174,2995,600,697,1695,16,436,1489,2517,840,2195,1002,2088,1954,1659,2106,435,889,1420,1316,951,389,2226,1859,2317,2519,1255,417,638,2442,1505,1520,472,2466,2918,2399,1659,2958,1528,2040,138,1130,2183,1522,2893,464,2869,2038,1148,991,645,241,584,2820,682,2717,222,623,2100,2362,1293,1263,2964,933,835,527,178,2359,1762,1964,2647,1453,1431,2394,1008,1483,2279,2049,2647,2021,1306,1387,2460,2462,2267,1406,2630,2953,360,1596,2665,1206,2046,2073,381,2615,2855,1996,2409,1397,303,1965,1987,257,1359,2243,852,2497,1266,1751,1974,1460,2793,563,2203,196,2023,976,1212,2358,1883,136,989,558,1652,2562,538,2340,2949,2043,2160,2532,19,2630,2477,2033,212,2367,2911,2025,1604,1938,1177,1073,2953,218,1046,580,797,2907,1173,350,1364,210,2392,2638,1615,1566,843,1608,140,1162,844,2811,2861,2333,1119,2520,2891,1134,2481,201,622,410,739,646,9,39,1718,1386,2390,1864,2671,1402,1752,2644,731,1659,1828,696,1371,2794,2905,786,140,1775,1293,318,2235,1311,2330,1663,400,970,634,2666,993,2794,774,1456,1588,1950,516,2555,2050,2717,2918,1569,2220,1176,2539,2824,911,2866,2735,2477,2153,2978,1010,121,2962,353,392,1427,2137,625,1504,349,111,1740,1153,2750,814,2798,2827,2785,2764,619,1761,951,753,2647,1305,2503,2106,5,1812,2150,1582,2309,128,1788,1875,973,1345,268,2905,2834,1465,480,50,948,1252,142,1966,241,347,707,1462,62,2553,2549,1638,1599,1530,2457,1253,676,2222,2050,974,1912,1465,2884,756,2178,1149,710,523,1499,1395,366,2985,2041,2061,2168,1151,2229,2099,1441,2560,1705,1956,912,1249,1142,1712,1884,189,2512,2160,2853,1895,885,1260,1856,690,1529,877,2978,2260,165,2218,1595,413,1778,2467,1954,165,1915,2855,20,2697,1365,1382,2446,1276,2576,2559,2516,1043,1103,949,2590,1249,2853,1397,1758,1958,28,1900,1402,252,2945,887,1086,796,1049,2136,180,2753,2059,211,2021,1962,2225,2108,2848,1014,1410,2311,1530,546,2202,2893,333,848,2214,254,1716,1936,2367,1498,2948,2523,106,179,2847,969,1737,976,1501,905,1391,59,674,2252,2990,1717,1483,2783,1363,361,330,2296,387,919,1224,482,2216,2177,2286,2460,2995,1401,1094,1792,253,647,2672,124,2500,2787,1779,320,2848,273,295,143,845,516,2995,1715,814,384,825,718,2922,279,1284,2718,156,2469,1160,2266,1220,2731,1053,2564,2030,2032,1506,1275,2645,92,1854,2051,486,2949,2927,2180,1233,2447,2045,1344,730,1762,1662,1628,1991,817,1144,352,2043,800,830,1032,1249,2936,2732,2155,2640,1548,403,2198,1523,143,700,2155,2274,2433,733,475,331,968,145,668,158,1327,2483,53,2437,1809,2368,2810,1440,892,869,408,2461,317,1308,141,519,1518,2142,2758,1581,62,2679,2189,2692,2754,2889,938,2263,890,418,775,1575,1374,2056,755,711,1054,139,2356,1455,2433,1549,868,1805,2579,2403,1040,554,2645,113,2230,2174,1525,730,1693,976,1767,1248,505,2407,1406,1752,1858,865,270,2640,838,1003,1176,2921,1221,1697,902,681,2893,227,2412,1318,2777,461,1098,985,1450,1176,2453,1186,821,846,971,35,1704,1392,882,2717,550,42,2105,2369,1169,1826,2235,720,2668,1554,291,2949,2124,1534,2198,1297,1071,2727,33,142,2984,1714,859,148,1050,2498,801,1367,775,2660,1118,2372,411,2584,707,1787,2528,1496,2552,186,2303,2794,151,1387,1063,1684,632,547,2412,2043,1697,1081,672,1895,2367,1467,2697,1553,1328,1639,2794,1574,999,1178,95,153,827,288,1659,1160,1502,1184,543,1717,14,376,1460,166,1148,657,1870,2739,1106,2101,2701,847,2860,1446,2879,841,1898,2073,717,2070,2876,1309,1819,1690,1123,1207,460,1859,503,2681,2236,2891,1935,758,488,812,2741,2000,2898,1327,276,1816,1561,1470,879,658,1185,1035,892,2430,2271,2648,2686,2847,993,1988,2961,2183,212,1649,2244,2234,1925,2991,842,1658,1360,2774,753,1770,1679,428,822,1986,462,1452,1774,38,1853,1642,2911,1454,2928,2795,505,2974,1141,2039,2050,1297,2775,1214,127,1133,2316,1131,2542,649,1070,1520,1979,87,2726,1295,761,450,1785,1088,2939,430,1459,1830,150,649,63,2280,218,1470,2730,1274,454,1000,894,1370,1017,2289,767,1024,169,2783,2728,2859,2627,1136,274,725,1579,1859,1103,2638,308,1209,1885,292,2248,1910,51,2544,2168,394,2077,2028,1808,2232,512,2827,328,1252,412,2867,2096,2683,1705,1641,2727,240,1916,1387,1677,1724,2465,1360,411,92,2254,1069,871,1089,2518,1535,743,2641,2792,552,959,982,2685,1962,2760,215,119,344,1746,750,901,1941,2531,1566,86,2599,2547,353,1377,623,1276,1822,885,538,1609,1448,53,277,2423,1588,1496,2307,278,92,2233,955,1003,1591,1656,2775,968,2482,2033,2342,842,1869,1233,2070,2799,565,832,1211,2166,2655,828,664,1805,2843,448,1565,2986,1578,1890,29,1261,203,2283,2443,483,2584,91,666,1813,1131,2329,2804,218,1327,949,1394,209,1020,1054,656,1188,383,1297,889,775,2402,2873,1128,2135,2818,844,2186,2051,1495,615,452,1041,883,236,1019,586,1959,1952,633,2844,699,2198,181,2133,2642,741,2278,1592,1153,2495,2800,2745,725,212,1326,2171,257,2137,830,416,2857,85,882,1401,944,1782,304,1686,1617,1592,1502,2767,1573,920,2986,894,1965,182,1347,1240,429,1777,222,2283,1283,2779,1189,571,1210,1192,48,1943,2721,1949,714,2323,1739,2578,710,710,1412,397,2695,750,2017,1167,2389,23,2147,1598,255,2317,623,2088,1076,2724,560,1628,426,2005,1668,2274,1606,2226,1529,122,2473,2506,2031,440,569,433,1507,891,134,1922,1248,236,2214,280,2444,2426,2795,1776,82,1244,1356,581,2022,2410,2973,674,2171,458,2634,57,1202,2351,1379,1438,476,1749,2881,1524,1042,1987,2069,990,1659,2718,1580,17,2856,1178,863,423,714,1594,2932,2747,2633,171,1962,301,2484,2320,1621,2281,887,360,2398,1297,396,1860,2602,2040,1318,1423,1177,885,2814,1808,2697,192,2572,2298,2308,2811,2617,33,1885,2461,2395,1417,1733,649,2275,1331,2680,574,1496,307,1984,1271,2512,1915,210,2462,1946,430,198,2895,2626,80,119,2830,1330,19,2651,2384,566,1908,1894,2348,885,1589,1999,1151,2991,2245,482,1341,1190,2780,1178,262,1036,2832,1887,2390,2288,2418,1421,2590,2957,1750,1719,1846,897,177,372,2072,1584,2131,489,2438,947,2868,1721,1761,2493,1285,1290,2848,1732,1764,1677,1327,1624,1197,2273,2422,2304,1330,1162,361,2674,2531,1328,2640,229,1,677,576,2484,2224,1127,655,817,1364,54,195,1995,1306,1046,322,335,382,197,16,269,1292,697,1120,678,622,1775,1388,1432,2023,804,2256,1303,2434,233,924,12,358,1787,1631,386,2175,1096,2247,1337,1830,1074,326,2882,37,202,188,237,248,1323,1607,2987,218,1999,32,286,1031,2077,285,1633,1499,896,2151,2895,362,942,1032,2812,2658,1819,1242,2955,1121,750,2779,145,1655,371,734,2928,696,812,647,1427,532,1,1251,1832,2645,2883,873,1391,1701,2727,1520,206,513,2278,738,2032,1018,1253,1691,560,2104,648,932,2921,2459,2806,1286,1361,2836,759,2734,1717,27,397,117,1028,297,2578,321,1207,2343,2252,2685,2998,1188,2109,114,1114,2314,1315,1339,104,976,1143,1558,1604,1683,2678,703,2552,558,1409,2242,1702,663,1949,1041,683,609,1430,2749,2838,2470,2349,1444,371,628,2008,1369,2347,2977,2809,1476,2699,353,2564,2084,61,368,392,1908,751,2198,2428,343,783,951,339,818,1360,824,1514,2980,531,1353,2031,2100,2480,1554,1519,2877,1460,2676,306,1327,2473,795,825,2699,1350,16,139,1704,2514,2511,144,2108,356,3,1728,843,462,367,1056,2431,201,964,1395,230,1823,1628,22,65,751,502,1103,2722,2388,324,1126,738,2043,2777,1378,1122,88,2123,2523,2112,2123,724,2949,696,2835,1793,2009,2069,467,637,2267,275,797,250,609,2197,2065,2921,185,322,1648,2069,1308,2736,2538,1137,1148,2235,1286,2460,1371,583,1054,2959,860,1925,158,914,858,2174,476,593,1602,375,1730,2647,2778,2494,1683,208,110,1806,2992,334,812,299,1765,1392,1403,2903,1162,2963,1701,691,2665,323,993,470,1726,467,551,430,2226,2900,439,2303,1462,2688,652,995,373,2674,2296,1097,246,2654,949,1958,1947,1023,2291,1135,2709,411,2813,930,2050,1607,756,2109,960,1228,2159,1641,1853,2345,2911,2105,2010,1660,1609,1983,393,84,2875,506,392,2708,1555,2686,1890,191,500,678,2257,331,75,1460,1393,1631,606,2987,1129,1802,747,2267,1360,1979,1891,2820,35,1156,390,2613,728,2271,1799,1078,1920,1286,1975,2954,2394,425,2134,2641,1022,2274,1475,1315,1439,1066,786,1693,1370,1449,223,2368,712,1169,1525,303,164,1710,1241,1489,383,1585,48,2478,770,1689,2762,130,2226,1263,2355,2244,1402,916,1753,265,2794,1933,2138,2529,2069,2196,1282,1483,827,1339,1182,1861,1052,2215,272,2342,2678,2636,1380,376,926,2509,1178,1185,649,819,1283,1907,2103,2582,1357,2046,602,434,2979,1868,35,704,1552,1325,779,1409,142,2451,2055,1291,2845,2046,141,1162,101,354,1352,1006,1339,2650,654,957,2279,2138,2120,2563,1577,210,1264,2581,2214,1080,112,866,409,2766,1429,2661,147,2548,2108,1331,1074,225,151,1363,1092,40,2035,1304,38,1079,2811,2456,2540,1619,679,1550,150,2135,941,2951,2450,2063,1687,2371,1107,836,2826,2200,981,1226,2802,2023,77,1626,305,370,2104,1696,2613,726,657,329,2476,2275,2916,1660,2390,641,421,2359,1250,1569,81,64,1952,1198,2635,1889,2511,2839,2473,2853,1805,268,875,1799,2789,2653,1537,2497,693,2327,1341,1489,243,2609,536,1558,1914,2895,658,525,2892,1046,1592,980,2505,197,2164,1332,1646,2187,2390,2741,34,1839,2857,2802,2106,196,2012,2067,314,698,2395,1641,1537,1258,2519,533,1260,484,2414,1219,1913,25,1269,666,2489,843,725,1776,2613,1629,1780,428,956,1484,2959,1185,1281,209,2917,1611,912,342,658,799,2837,1232,1725,1228,1795,138,2152,1803,1555,1496,776,68,398,2568,996,1944,1194,1172,1163,2572,450,235,1820,1660,116,360,927,1964,2596,2263,1977,1206,2061,393,2009,557,241,2223,556,1363,1200,2926,561,642,613,460,700,2668,1366,2607,2213,27,1797,628,2890,1016,1564,2707,2871,2118,2867,518,2135,179,380,1946,1231,2831,2349,2635,1439,2313,2486,493,1959,326,2521,360,1554,281,1978,2361,563,1791,2188,228,816,691,1116,242,2563,2937,1717,1417,940,1879,1737,2416,1507,2938,502,1866,1579,1241,2799,104,1985,2091,1437,1046,1581,2273,2582,1662,239,2946,678,495,2587,1789,1917,2299,2838,929,2486,827,1817,843,152,1260,2710,512,2001,478,2217,1834,2316,622,296,1046,1740,2310,2040,2992,1531,2550,177,743,2914,2628,1486,1965,2289,2632,126,1448,1328,1573,2835,2764,1909,2350,2089,76,2626,1582,2428,1274,1810,773,1804,2226,566,1930,2248,133,814,558,2576,1630,1483,2565,769,1505,1668,1579,1185,2564,2872,1385,1637,2314,1851,1230,223,308,849,336,283,1843,2978,1811,2815,802,636,631,1075,2424,568,1195,545,1623,343,319,2909,1905,2051,733,741,1778,343,453,2039,197,959,1083,2322,1488,2616,2883,2856,1137,197,1421,872,1493,2753,2991,27,2140,2631,2838,1905,1362,2370,556,2777,1472,390,1835,492,1396,1734,2148,317,514,1726,987,2490,221,2992,756,649,968,2498,1748,1768,591,1364,553,2329,2650,1975,649,1007,817,2938,2771,1270,1819,1071,2558,2800,160,319,2533,2808,2175,2595,1745,608,649,2031,2094,127,1308,2725,2282,2380,1847,2239,2786,2174,1094,1239,2963,1788,1562,1508,692,2584,2212,2788,1839,1044,2946,2771,1042,1736,1436,2842,940,2630,1202,2155,741,1328,1192,2466,775,74,187,942,78,1406,2163,591,2567,2717,2605,826,1474,339,566,62,1835,1881,2154,455,1258,1759,2178,174,1053,1873,2156,1546,2813,762,1645,1271,52,93,1223,411,58,1805,2519,2271,2160,459,2534,2957,62,842,213,71,1334,2930,2684,1775,2814,2482,0,2773,2525,263,2596,1492,556,518,2337,285,137,2646,1688,46,2484,1972,2412,1062,1130,1205,1053,1033,878,2481,1521,121,699,1617,2949,1149,2709,2801,1734,340,2771,2874,994,2187,42,1199,2492,1699,616,2039,2323,407,2264,2662,1855,2444,192,2853,2074,1099,1963,1065,2082,2429,512,353,1530,2117,468,2708,2811,649,1149,1932,1804,2730,1720,257,1795,1837,1363,2708,1784,481,2727,1045,2571,1015,1558,2114,1004,1684,2174,2993,596,277,1309,2482,397,1480,1660,2572,1520,2554,1489,2988,2283,1228,2277,936,1726,317,2597,1912,319,2878,1416}

    {1953,2817,1524,1186,2448,355,383,1615,1190,2173,1590,1781,2867,1271,853,801,2662,128,505,1011,313,228,1839,288,2385,2623,1488,732,2235,2273,566,2408,0,2488,2105,584,1594,1462,1620,1753,1026,2645,996,223,1601,542,1458,2113,21,1680,2328,419,1923,2343,2770,2677,1923,736,2779,224,2894,640,1141,1673,493,2570,1455,2525,1064,911,1023,22,2322,1160,2799,2983,2274,1895,1199,1653,261,940,1787,1506,774,2549,2694,2854,2213,1114,2856,62,2017,2144,2021,2316,176,2409,2631,2508,2523,2264,1499,1247,152,740,2826,1398,43,888,2533,1179,1640,1165,1173,2027,1969,701,812,1313,2368,1387,2398,1494,1610,1869,237,940,2877,1939,2819,1162,479,2152,628,532,1924,2155,1216,48,1961,983,2840,152,2588,69,1611,579,2314,285,595,231,96,1553,2235,2463,1263,2603,1406,2621,1925,719,1576,1246,2275,53,1742,1590,2184,1308,2796,1588,2611,2861,55,2273,2398,2913,497,945,1853,439,1333,2764,1201,475,13,1657,1904,1060,2247,2925,868,782,234,1019,1567,1087,1401,1110,2410,1538,541,806,1660,2731,1719,984,1729,2234,2213,2224,1908,1058,2227,1899,62,2425,1545,1573,770,1148,680,739,122,503,2191,1330,417,2999,2507,416,2649,1769,1777,2964,2126,1776,2439,2787,2928,1263,143,1584,1507,2351,1164,1607,1131,2596,215,876,528,1338,392,1556,1815,2731,963,1067,756,2706,2791,1398,2635,2213,2409,975,2395,2596,2061,1461,1786,715,2877,2213,1914,1339,2538,1004,2376,271,2689,802,1708,1471,226,2329,731,607,2691,2877,2740,2915,2836,910,1422,2637,2019,715,2106,617,2205,470,1806,2813,426,2659,2370,534,1370,1573,2437,630,1522,1458,2286,2004,122,650,1085,2187,1800,656,2829,1069,2587,1434,1211,60,75,2663,2749,1814,1185,1049,1400,1026,2731,207,716,1302,2813,2242,1882,472,2454,1133,2861,65,1373,1952,1984,2498,5,2369,258,1254,77,1138,2315,2284,343,1281,1282,2812,472,2745,397,2525,2934,867,1404,218,2805,592,1345,1755,1886,284,1647,1331,1346,2674,1514,2175,459,2814,2391,1725,12,2896,817,2065,521,943,2370,2130,421,2972,2334,2662,158,2912,2176,2806,1371,1489,330,671,2369,687,1174,1514,1133,2211,374,556,219,656,2867,2019,353,1651,2365,45,139,2579,689,2930,2107,1376,390,1151,1278,1186,2462,785,1450,1025,841,2817,1188,1204,1085,354,2865,927,2986,327,139,1304,582,140,940,46,856,150,139,1877,881,1820,713,1485,337,781,1137,2551,1144,213,4,2294,1747,1449,2877,1632,2978,466,293,2179,163,1915,1399,909,799,2841,2659,1967,1856,787,1191,1592,2929,508,1443,1139,2780,57,132,556,694,2530,1059,85,768,2432,1868,2556,2827,1635,1081,771,1472,84,867,2214,594,1175,2052,2995,1241,2995,2715,1298,956,2148,431,2421,2191,687,1734,415,2011,402,2501,461,2343,1208,81,1907,690,744,1528,2756,1167,2351,1775,291,1418,1307,629,1236,1409,2623,855,305,502,2400,2653,1785,1563,1765,2465,349,356,260,2803,2092,2310,2842,2818,2858,2581,1725,2165,1889,2115,1497,1196,2326,2235,778,2181,1061,214,2121,318,1850,1049,2144,76,2075,2004,1829,2775,1848,1756,691,2877,562,1308,2521,2126,949,1920,1760,2864,1232,535,1097,398,1591,738,2106,1391,84,1794,472,1787,2919,2867,2572,2788,869,2140,2446,2464,2319,1992,2630,769,2832,172,640,62,53,1235,2920,408,2093,1663,1856,1539,2479,173,2798,1539,102,2297,2042,476,2971,2210,441,2657,481,222,324,1181,922,746,1022,1348,676,2317,267,2839,909,14,392,415,1605,377,2300,485,1734,1308,1547,904,1019,1761,1397,1202,1624,1447,1839,443,2887,2241,1762,2662,2482,572,889,2620,1283,2965,2238,2570,265,1717,874,122,2171,1871,1469,2246,2417,463,2352,1047,104,332,1725,2587,775,2212,1484,1462,535,2340,2380,1153,814,628,951,1506,2811,2757,822,822,1415,851,1600,1722,802,21,1094,1527,1233,2562,1272,2890,614,354,1892,2760,1903,1346,2894,601,2676,2828,2815,918,502,880,1321,1407,309,356,2060,983,1308,1972,927,2053,466,2981,2231,1590,218,2523,2511,1097,1237,2006,36,653,542,2720,1942,2504,1513,2352,1450,198,2588,1121,1552,1342,2802,234,2366,2969,1346,1901,1015,1343,918,294,2510,2446,1398,2272,2138,998,2,305,1004,2569,2186,259,452,2231,159,2983,286,1750,2674,1558,2127,1772,343,1067,2503,2081,291,265,2293,658,2850,284,2557,2499,609,1132,191,2662,721,1770,1156,323,130,67,38,2152,1008,2689,1217,2788,546,1872,66,351,2688,2087,1429,682,1328,1256,117,1005,2016,62,1488,702,444,1049,1308,2536,746,2519,1301,515,1775,2872,2710,209,2113,451,2741,358,742,2197,2204,614,459,2594,2143,31,1475,289,780,1318,634,262,2526,411,2719,1859,980,788,2781,368,641,1509,47,1516,2189,333,977,2010,1692,2187,1925,1553,2304,958,123,952,2746,2755,1573,1312,2606,2166,1180,2928,1924,1185,1510,2190,1660,948,1254,2838,295,1975,1662,814,1921,954,2662,2217,2719,325,2053,2708,1194,2596,2605,1273,2707,2877,2737,1717,53,2058,1319,1627,1709,1796,101,1598,1693,2237,2312,1849,1524,2870,2851,1234,2106,2038,2107,1072,2700,1405,2393,1955,1977,1982,2411,1482,254,2225,2190,1151,1700,1507,2515,586,189,959,1041,78,2741,1758,286,63,2248,202,500,2235,739,2435,1717,456,536,2031,2365,1417,1886,41,786,2574,2581,1628,349,2249,408,620,925,516,2151,2129,1229,558,1555,2475,1948,321,1273,2662,2149,2457,1978,793,794,309,1973,2450,848,175,271,599,856,1859,695,2197,2206,1980,1626,2033,812,1312,1268,1082,327,2198,2247,2293,892,386,232,2010,2398,2741,662,2754,759,626,2879,2923,2498,765,2492,817,1819,1690,687,523,2930,2446,2308,965,2183,1709,1862,2186,1105,2744,574,2936,1612,1116,1949,2596,850,1067,2201,2303,611,2731,2703,2768,2964,2857,981,1252,2303,929,1465,899,253,18,46,1373,1426,1213,2169,1518,311,2616,2992,1833,2263,183,1572,2617,2084,2470,677,1488,975,1772,154,1844,2503,1468,2995,2995,279,2373,2407,799,639,35,2143,2183,475,244,1721,1607,2634,380,1614,1738,178,1768,2263,2398,2217,1666,2996,1248,354,1106,2573,345,1466,297,2941,2630,730,537,2520,2020,14,1115,1227,660,78,2589,2280,264,1814,2500,1152,1776,2677,610,1384,1545,374,1319,886,1918,2545,701,1416,490,1435,2168,2719,2054,39,2080,2857,493,474,1999,1544,2576,945,1515,949,249,680,536,1185,138,2938,1614,2873,359,2342,142,759,1897,1940,1066,592,1883,2813,2263,2693,344,165,577,2170,356,2881,1977,2525,2756,532,790,1432,2654,11,278,754,1784,44,1434,2185,535,1372,430,598,1457,343,2315,703,2312,2043,422,1594,2914,1919,913,2090,2800,2291,2332,1699,1068,386,2114,2698,2146,1403,1113,2964,385,641,1517,1757,1105,2175,2032,1408,2490,1981,766,1093,540,2897,570,1571,554,338,1151,411,287,1895,1622,2032,2682,1694,2024,1989,314,1390,2332,2777,251,820,959,2917,1456,685,1516,1952,36,2108,269,1802,2832,2370,328,340,1042,2967,983,1319,1055,1960,832,2836,621,2392,2821,1055,574,862,2066,48,2600,1860,2919,1201,1840,2238,2292,1702,739,961,2263,1731,2172,2815,1557,1032,740,100,62,192,288,1918,428,517,967,228,946,970,1514,2862,1997,869,1340,15,1773,2867,135,430,2378,1836,250,2557,708,2036,2678,1135,290,2831,288,1409,1141,1951,1654,2874,645,2728,1212,1001,214,2219,1084,2705,1396,2957,2527,606,429,354,64,912,1292,2178,1774,1526,2935,1436,1994,2486,490,94,2976,777,1911,1462,908,967,2176,2831,166,901,1603,1280,1584,2072,2514,659,2843,1238,315,672,941,2598,2311,168,539,558,710,175,879,2157,1714,200,741,230,1970,1003,53,1046,1598,2668,823,929,1240,2451,260,1613,889,137,1532,707,950,2553,2401,772,252,2335,1767,1723,1229,931,1176,2624,895,2662,844,2228,2506,2847,2362,1514,2893,2856,97,2634,1394,186,1949,2826,589,1101,281,2848,2486,962,2099,959,2530,2469,2095,2991,502,1421,498,434,6,31,1783,2763,709,546,1665,2886,2511,909,2442,2043,2771,309,2864,304,839,762,648,884,2761,1005,1449,1100,1930,658,2657,2398,580,2679,0,2290,1825,1511,2849,2997,1614,2623,785,520,53,1194,651,2421,1235,2118,2164,401,46,2592,741,2487,127,1672,976,420,29,769,2567,523,1104,1908,2522,2260,1327,2013,2835,102,913,463,2966,1171,1136,2877,659,2183,2610,1762,721,113,1947,2577,2938,1714,499,1754,2252,857,945,559,2189,83,1859,432,2975,356,2768,1092,117,1479,406,2251,502,15,1001,2513,1468,21,794,998,2922,2982,1280,2814,928,1086,2328,2127,2182,533,1634,1161,2418,438,516,2417,2630,2665,234,1077,2530,1019,769,624,489,746,1651,1203,694,757,94,542,253,582,1260,805,635,2674,247,2047,1995,1981,357,2863,1976,2433,1116,2690,1456,265,2331,1560,2956,261,1297,2381,373,2259,54,2418,690,1067,2644,1277,1804,1400,2582,530,1628,2158,1533,1379,457,937,1356,501,2156,2943,1841,2139,619,2414,1150,2765,1168,2638,2148,2566,729,432,1939,1465,900,9,646,2727,2291,2199,169,1109,278,674,1504,2697,2564,2452,2601,1857,2382,2839,2175,487,1427,808,108,907,959,373,1291,784,1265,2247,265,2769,2026,72,2675,1478,2162,909,599,2702,446,2648,1567,1357,371,76,1501,860,240,580,26,1804,2880,2109,804,1824,2836,953,1725,879,2224,1662,149,1530,2108,1981,743,220,2650,2800,1024,1876,2579,302,2420,513,1235,199,477,1358,2154,2660,1890,2264,1807,2823,2711,49,2923,1025,2046,1195,295,528,142,1126,1448,1583,1504,353,1279,89,2696,579,2213,1472,402,447,1392,1981,827,1250,846,1725,1613,2413,1500,62,522,2458,2332,2415,1369,1546,1368,1391,1490,1741,2583,874,1781,206,1650,2007,1095,2419,2342,2002,606,772,621,363,2782,669,1882,1433,1645,779,1924,529,1466,1830,1281,1824,2533,2889,2673,2040,12,1780,436,304,2748,2326,1678,1080,393,2838,1908,2867,396,217,677,2474,2706,2662,111,2171,2286,2450,2744,2701,2892,1477,2388,1734,2151,219,257,1551,2341,341,1514,2942,1157,1076,2119,2253,2635,2191,365,1290,1278,316,461,1162,2403,2867,1284,1900,1405,1346,90,807,1165,995,1845,282,756,2603,2097,426,142,2712,1863,2116,412,2999,2257,157,649,426,234,238,1705,2317,1380,626,549,265,496,2033,1154,1308,823,2405,648,69,2928,1250,2034,1670,1261,605,1618,1525,1734,587,1056,997,866,54,327,333,1471,678,1093,595,2591,373,9,2098,1860,1898,1314,447,1966,390,2026,41,2859,2226,64,603,1614,1458,1038,1643,2908,948,120,2403,273,2437,2232,2918,2888,788,167,465,2579,513,672,2816,422,137,430,2578,727,782,2629,940,392,303,1097,1249,41,349,158,2618,1530,372,1801,42,1945,2833,1842,2295,1867,2695,854,2258,813,837,2310,2483,2439,703,558,2445,279,934,276,162,1032,1069,2342,424,260,22,992,49,2290,1102,1109,275,1259,2198,829,1681,2449,1322,2141,2406,2310,1708,246,2649,1146,2507,2908,1048,1448,2379,792,1630,2028,2403,514,300,1099,1054,1282,2641,2213,227,493,1555,1013,2878,2656,2794,2715,217,256,1937,1615,70,2847,2069,1253,1934,2254,1864,2132,2029,1131,378,2727,310,1,297,121,1830,2105,1319,1821,1167,2104,2812,1593,1888,399,1202,883,1458,2669,362,1880,2405,1846,2819,905,1989,526,2757,2585,935,2876,2838,2617,1328,1343,1049,1970,1495,327,605,1312,1623,2145,1228,737,2436,2904,2156,2713,2359,1902,2535,205,944,2797,564,1179,2507,1904,1682,772,2113,1049,2564,2120,397,1241,22,556,2279,131,1542,2357,1159,2021,1161,21,1326,1300,1967,1728,2268,2250,2687,1503,939,2607,2343,944,823,2507,928,1228,224,2491,1578,708,756,414,868,1092,2321,2794,2407,791,1745,1941,2446,668,2940,814,1180,2125,2752,143,184,951,53,1483,1215,2467,1928,749,1034,2353,2723,2144,586,399,825,494,1473,2558,1228,1895,114,1065,2584,2812,789,2811,730,2829,2377,1933,2412,853,745,1055,1804,113,1784,1046,2961,940,349,640,178,755,2736,745,1277,2149,2947,236,1345,2336,611,1308,1174,140,2857,2421,2069,511,2840,1001,1867,564,1820,1657,2209,1383,2564,10,669,1926,43,2221,2848,1090,2872,12,212,2461,525,445,1692,1989,1719,864,1339,1379,147,2085,1717,868,566,1300,2847,2519,1891,2101,1514,834,1175,2061,578,2404,1628,1727,2472,1975,2383,681,2285,469,1540,1987,1400,2105,2927,2048,903,184,2534,1158,579,691,1764,1525,2578,1076,723,1343,2235,1464,2521,2930,861,1496,2383,1601,1447,1972,510,2247,2077,2155,1245,769,299,352,379,304,1329,1621,2138,2454,2422,741,555,755,778,578,1401,2306,2338,2665,218,194,2272,1798,2262,1675,2239,2833,1029,2226,380,427,2502,921,1616,2297,988,2274,130,375,45,1409,326,2339,1381,2679,2162,1524,1856,2239,1874,951,1166,493,2674,2862,2814,2692,2836,1931,2591,1820,2118,1012,1842,2777,95,617,568,2498,667,1861,2119,2871,7,266,2643,921,2787,1044,2061,1676,2689,2783,1745,1801,722,2361,2907,951,2524,2363,1583,609,1546,2163,2521,1874,253,779,1540,2168,2404,2662,2614,2537,1757,7,2176,2257,1279,1155,2537,2662,2044,2602,2467,1424,2485,2441,2802,1434,1383,78,1795,1450,1758,1084,870,2271,2040,338,2513,2618,2599,2612,1877,460,2805,2240,103,2922,735,763,1390,607,1802,2715,973,1256,99,594,266,1998,2641,268,1852,362,1043,1223,2878,1230,2250,1756,1516,142,1220,968,1565,2944,2952,2122,2710,268,2163,2723,1481,2822,2364,2714,1431,2506,1578,2050,1150,373,2532,643,1978,2003,510,522,1818,1747,873,212,1454,1136,2155,1895,2899,1154,1968,2794,1865,2207,2928,2000,1889,1868,2731,1724,39,2920,2562,1128,474,690,1771,1514,2679,589,648,2889,93,2718,1587,1852,1758,2266,2077,2700,542,1954,927,597,2269,1985,1008,282,872,1300,105,1707,2144,1508,1541,1311,109,1549,2856,2852,482,972,1573,1790,1989,1997,2641,2950,391,2278,598,2263,1170,268,139,1545,1391,1263,2716,1893,1230,2101,1782,2193,2384,310,604,356,140,2787,2670,1490,191,721,2064,1643,1803,1556,343,665,369,248,2835,1685,1939,2511,2878,216,2734,1918,1492,1125,2251,1827,2685,2364,1045,690,1471,1379,2759,910,578,1355,2664,2073,2141,2115,530,993,1999,1065,222,644,1236,670,413,2243,2791,492,2061,737,2331,2746,544,98,156,2811,1674,2901,1543,1887,1744,706,1105,1508,2951,2343,745,548,2015,2933,1160,1359,1793,684,915,1667,2110,732,129,362,2958,1147,1289,442,440,2444,2831,2154,1734,166,768,1032,2128,686,1097,1735,1568,857,673,2629,429,892,2086,752,612,2896,737,612,2394,2154,574,755,469,35,1541,1140,1339,1228,1,894,2968,2671,1108,2235,273,2779,2989,2906,1026,2064,567,2704,62,1897,688,1286,323,1211,594,471,2920,2427,2374,2232,190,1780,2027,2507,2879,1113,137,2885,2446,2041,575,346,1362,2648,2708,2161,1161,2071,1992,509,2553,748,2078,298,1614,2654,2250,1918,1950,2102,2291,2727,248,1187,2073,967,2955,180,1215,2303,410,1551,1375,126,2776,368,2443,1570,658,2808,775,2059,1095,979,1784,1336,2068,1099,1886,1512,1055,1074,978,1151,1057,1196,1776,2751,2867,2931,54,2631,1516,24,2194,1839,1156,383,227,1161,2062,675,1009,2775,1054,326,2113,1636,390,253,1743,2669,1346,2812,2857,2964,61,2192,2662,413,112,2825,2270,56,2613,2037,1771,2409,580,199,938,1254,1986,1919,2997,280,2060,2409,411,1919,2714,609,145,2827,2641,2727,2093,1212,1092,1895,1491,1200,2496,521,970,2076,460,2043,2944,1559,1363,1444,2111,1649,217,262,2308,1168,405,893,2455,404,1027,1290,940,1311,1567,2953,1815,697,2872,2652,827,125,2242,798,2900,2643,2060,2654,853,1111,1487,1724,2627,519,2346,762}

    2353

    1543

    Returns: 83659482

  81. {139,2368,1197,999,404,2277,2941,2032,1457,2172,1560,594,633,2173,1719,2061,1436,2010,2761,2941,2167,1584,2533,947,1641,391,1441,1223,2879,1842,2792,152,1940,2487,2190,1965,252,1139,522,842,1030,994,1471,1462,1600,1196,1486,1102,1943,2922,42,789,1854,2787,1877,2950,284,829,271,1658,988,1393,1997,2783,711,1273,176,2274,573,1656,160,58,2572,1625,1246,29,1219,28,947,1188,986,2018,2991,1241,1863,1871,1562,2600,576,1447,124,2664,873,2707,2058,2873,485,447,208,886,900,1585,464,62,1496,574,1430,477,258,1729,24,1788,2070,1846,1725,1709,1984,2131,499,2606,1647,19,1182,2818,2211,2473,1385,289,169,2899,411,1788,2826,2822,2635,1683,486,2422,2772,2000,257,2182,127,814,2169,858,1860,122,1820,2284,2067,1125,1257,445,392,1530,2016,2083,473,152,257,103,1423,2848,1802,1403,2757,1414,145,1212,1112,1179,670,2188,2072,1489,2185,1282,1433,1754,332,121,1998,611,2424,528,706,1119,1460,28,773,1264,1204,1795,2704,2017,167,970,555,1126,1700,1493,1103,2588,2896,2103,1270,730,794,471,1268,987,1078,1883,854,2903,2710,383,1428,2378,486,2247,1688,2788,1457,1625,2703,2726,1369,1273,1357,2743,1573,1188,694,1214,2831,1740,1230,1077,2726,632,477,2364,1517,2518,1549,2123,1583,921,2506,232,987,41,2306,478,1759,1588,1764,2895,1737,129,506,2348,1773,1754,2722,2959,2921,1649,190,2328,1155,2693,402,529,787,187,1342,848,956,2793,2626,1150,1995,2121,2887,2208,2594,2125,2097,951,1330,1930,1247,968,1782,1329,2868,1836,2506,2603,1314,887,2905,1947,1536,2639,416,1421,985,1343,429,809,1022,2629,1633,1011,1966,2591,2582,1754,1082,2782,762,1018,334,378,518,1843,1777,273,1370,1252,1226,2791,1392,1701,11,51,1771,1699,1704,1473,331,552,1708,2511,2531,1326,1174,2409,1112,1267,1181,2934,1042,360,2454,480,2353,846,1256,50,1713,1143,421,1165,404,423,2189,1754,136,2292,1744,1595,1638,349,295,463,2200,794,490,1293,2213,2141,2339,2296,1707,105,1993,664,2057,1244,2669,1097,1145,2262,869,605,1363,2821,2383,2992,450,886,1075,971,1792,2972,64,1258,753,2598,1290,2306,2432,2932,2073,1308,2105,894,369,2670,1909,979,1406,391,1598,608,1731,1102,1621,1428,891,274,2580,508,2674,1398,1374,357,550,1058,1768,610,736,185,2086,2308,2384,1555,1504,1583,452,1597,2427,2992,1023,600,652,166,1041,2868,97,2815,1655,1592,2843,913,372,2437,2244,620,2811,66,486,1142,944,118,275,91,642,2174,1921,214,1674,2063,270,501,1178,500,2236,2116,1848,2598,82,2259,310,440,2522,470,633,1088,524,2297,891,1897,2448,1840,706,1514,2321,2027,1934,2719,1851,61,1682,93,448,1782,118,2957,1680,2285,274,2439,1330,378,1770,2063,845,2395,19,2494,797,1609,2087,56,22,855,425,1286,1817,2626,1340,2293,1323,561,2095,234,574,2296,1352,1615,316,635,196,594,1473,2371,741,2725,1177,1583,2696,2835,2991,2083,1432,158,2838,1176,1209,819,2041,363,2587,2217,992,2631,2816,1885,1893,300,1564,2363,924,1378,1495,846,2224,2550,1318,591,1176,1255,263,1470,2013,2472,869,2892,1470,1472,2138,2808,1219,2722,2034,1186,2740,2596,2737,761,156,2745,1399,31,2937,2690,1438,2525,1784,2235,2904,1526,2298,1012,591,1107,806,2463,1643,2990,152,533,2234,2382,1765,2217,225,1178,2353,2890,512,851,2893,1187,2004,1574,646,870,284,1601,1441,1959,477,1486,98,1133,1396,217,710,2329,1979,2271,908,991,713,2847,2728,2747,811,953,2255,2668,1187,1250,540,115,1272,2631,114,2831,1199,2217,1362,587,2665,992,858,106,2668,2489,1948,139,153,2330,2188,788,280,448,648,2252,2634,177,406,2464,1778,2163,2240,66,1719,1177,1432,1856,1041,1938,1504,992,2451,379,943,2906,1387,2872,1579,16,431,965,2846,2523,180,597,496,1521,1941,1728,761,1411,691,433,1637,1879,2159,878,2932,2006,405,2083,2194,575,1995,1892,1352,2050,2065,511,2283,114,2761,23,2889,1240,1275,1653,1506,2872,469,2982,833,1577,992,1414,1594,462,1499,2850,1171,574,119,1546,1832,2571,2976,88,1989,312,2782,1325,1897,925,2529,2799,2015,371,29,2067,268,138,863,2165,1026,1070,244,1958,645,1824,1215,1558,2789,1148,461,855,946,1547,2862,2556,75,611,396,2479,2955,1521,1927,2295,976,2580,476,2508,1220,231,480,1473,1569,2705,1606,1759,2832,2464,2625,2932,338,105,1194,2516,883,2384,1347,1176,2461,2819,1659,2659,2275,1357,746,2152,2987,674,2241,647,252,663,230,233,243,866,1355,2308,2027,706,1600,926,763,2416,2285,2700,2994,221,441,2001,1970,1999,1130,168,287,1059,1983,760,802,689,697,2230,2344,948,2726,1516,1598,1892,1601,2773,375,1434,2532,1282,951,1980,1435,1642,647,60,1473,1822,2408,2333,597,2579,134,2145,657,584,2903,739,2208,950,1128,1560,2314,786,1832,2820,2493,2648,243,1848,2088,2145,238,1276,1394,426,564,819,1031,2466,854,1442,163,1688,2436,2088,2389,1404,320,285,1656,428,962,2956,724,914,2879,1273,1096,2838,626,745,2774,33,2296,1805,339,2142,298,1363,2200,1374,437,2936,896,941,1692,2111,2859,2002,1259,2597,453,2500,488,1835,2229,653,1416,2790,377,2988,1256,2651,2687,1676,275,2292,2514,2490,1078,1856,1370,138,753,1867,104,570,1929,2499,2147,1748,2657,2683,2702,499,2643,107,1129,2473,51,1326,2666,1781,2692,157,1682,2934,1774,2195,1368,1988,2315,2437,1686,816,1717,1037,1607,1885,2573,2514,2855,127,2820,885,2379,1129,1458,631,68,2329,1849,857,2070,288,1587,1871,1578,828,1338,1344,971,382,1234,2376,515,2487,1611,1802,1762,1646,1536,1988,2193,2092,53,466,1224,832,2231,401,2930,2647,1163,1501,1109,247,2903,904,775,2200,1742,706,1203,2783,1089,2393,2969,2942,1075,1795,657,2724,2560,1596,93,1438,1413,1795,1616,2778,2419,715,1959,2802,1465,2161,2651,494,1656,2492,1178,1206,2409,2039,1608,880,343,2453,2248,1181,2823,2976,1187,1795,2759,813,2182,2866,2610,1390,719,1958,2924,977,657,381,2164,2318,2122,1260,813,1484,1169,1566,2470,2409,1892,2481,277,2312,2504,64,1119,178,2534,598,723,2509,282,1436,1603,1761,1624,1397,1932,189,2088,2230,379,121,2543,325,459,2152,232,1262,1153,1917,2484,1787,2264,2552,2494,1601,2182,2954,2527,1713,1615,2204,915,2915,2406,592,2333,758,1497,2286,809,1748,1833,79,792,2615,732,92,240,2214,281,32,13,1250,1776,486,1916,1710,1827,2396,1392,2304,1499,1335,302,898,845,554,1552,2960,246,2557,2971,376,142,597,639,1135,985,1653,910,6,1093,1444,2445,1795,1686,2385,2280,2653,2407,358,139,1753,1784,69,586,1690,1341,840,232,410,1049,1352,2117,1797,2955,2966,2590,683,2693,2784,2041,459,94,2280,587,2133,2226,360,2433,2887,825,587,1581,2398,1744,2426,2409,1781,947,1179,1491,2774,175,2511,2828,655,2060,394,510,168,633,201,2726,789,1124,923,2390,2887,1815,2179,121,608,2139,75,1758,1311,1912,681,595,2057,152,2585,1346,633,1366,1070,1604,1249,1952,2479,106,1661,69,909,1309,1118,1089,2142,1616,987,1434,1863,1971,1869,1544,2836,181,2063,2175,66,2996,2217,188,1261,2106,1062,719,2132,2244,1028,659,2933,31,676,1442,501,1363,2593,935,1300,69,2979,181,404,2327,1509,1625,1383,1789,2315,1619,2145,464,1108,431,2997,1193,1667,1432,2414,402,783,2056,2514,2841,1692,756,1606,1571,2246,1545,1573,1890,2192,899,2552,966,1756,106,2512,1838,337,1018,341,1273,2558,2091,23,1329,2421,2112,735,987,2137,1472,806,2983,267,2364,1858,1412,1290,658,1234,823,1167,765,2991,2966,2090,2513,2420,1278,2695,1050,2495,973,1560,127,714,366,555,2764,1579,2003,648,1273,1691,1350,2336,1645,2742,1039,2273,2177,350,1662,1823,2048,2207,18,484,1217,683,1422,157,146,2994,1639,2914,1880,2359,1129,1139,2514,1685,2040,1821,785,1383,1939,1590,467,2708,2073,1483,2525,2668,1369,2363,1879,1320,2771,289,1038,2529,383,1774,1041,703,1294,60,2340,1371,761,901,2603,687,318,2028,1471,1759,947,808,846,2077,2659,355,456,209,1877,2194,1522,1516,1534,1810,363,1555,569,818,1601,2765,1229,2440,1281,1892,2171,2174,1368,563,714,2148,1287,2008,625,2194,959,1320,911,2446,402,2916,678,2618,2890,1436,1614,186,2721,2788,2346,791,1597,714,1184,198,1372,2823,1917,209,2337,539,2379,2916,2890,1708,1967,247,2037,2967,1003,1251,660,1347,684,2311,1718,9,422,1777,2522,1327,1556,1520,1483,2338,2229,1920,1285,2261,1180,455,2459,2149,2847,122,654,2063,71,2580,2923,260,2376,2804,394,1580,798,1693,938,52,1946,144,1097,847,848,2929,949,2434,1369,985,2488,2121,1669,587,1544,59,2292,382,1494,228,2799,284,1545,530,1284,384,2829,1927,604,1805,773,2582,579,251,283,1243,1210,2027,1712,28,2158,1497,144,210,1020,2438,633,87,2674,2365,1474,1858,2310,202,1183,2318,2644,2294,1385,89,2130,2445,484,1635,2623,1687,458,1120,42,1951,2217,681,227,1628,1636,895,574,434,2219,624,513,593,925,1815,2599,2360,2733,430,1039,1477,2752,2954,31,2608,2639,2367,1736,378,2981,288,1945,2735,1378,745,1748,158,1630,726,406,1484,1470,644,755,237,257,1732,1931,2012,2838,360,2429,87,138,2679,843,1365,765,1831,1171,153,206,1720,2794,2068,1180,895,1973,1634,1810,2182,1964,2128,1307,2831,2124,2554,670,2015,2185,1819,1612,1142,938,1952,2503,2959,2528,2547,371,517,568,2658,2209,1793,822,2079,2308,2216,999,1646,2155,2367,437,1585,522,646,1886,184,1177,1766,1282,2629,800,1745,2045,875,579,2843,865,1104,1591,2272,1997,181,680,1486,1635,1843,951,2594,1989,1383,2071,2767,2636,1715,2316,2456,2849,1937,448,759,2899,2404,1241,1850,360,446,41,903,1346,780,1874,1023,1925,261,2529,2547,2603,1308,1051,790,1791,1570,1688,498,289,1392,1287,830,506,1412,1998,442,512,986,1513,2891,774,1204,1025,1035,2963,1258,1571,1425,2709,1733,1715,1106,1337,406,1903,2908,2646,1060,1374,546,2713,2458,1825,1161,2931,1794,934,232,552,2661,1164,1659,1492,2377,1164,2619,1968,1457,1568,2050,1747,298,142,528,672,2412,543,1739,1234,1,1460,1666,1402,2902,2050,76,1691,1235,2553,673,2897,2307,75,1777,2620,2756,74,2323,2927,823,1611,2003,60,2988,724,2493,1472,74,2915,961,1959,1660,393,646,779,2375,388,2278,1409,292,1845,2093,1767,2059,1929,2121,1903,1429,1922,343,1760,2185,879,1569,1414,96,2032,677,2597,1477,397,1365,1615,2468,1286,1051,2299,2565,236,845,2638,263,245,2798,49,2658,2090,107,2354,2662,2442,435,490,691,1704,806,1825,154,395,1152,157,2154,1916,1379,2109,762,2536,1345,1617,1971,1282,2577,2300,2367,504,220,2417,714,175,223,1634,727,937,2003,364,522,1779,611,548,1901,1989,122,1273,1722,488,1136,364,114,937,1950,2470,2048,1502,1249,2190,1775,2301,223,266,917,2027,1067,2399,410,2679,977,2887,2930,2785,363,2775,2711,2063,2875,2315,1282,1506,239,20,831,319,2818,1308,2964,925,2398,1516,2694,1992,734,1249,1455,568,724,1302,2576,1434,484,2273,487,2280,1294,681,2822,2262,1171,1910,2026,1099,2335,1900,2912,1879,2916,764,1269,557,1317,287,938,2685,765,2766,298,657,263,952,1595,2081,1562,571,1946,734,352,1622,2202,1106,2474,2663,508,2746,1177,403,467,1545,1359,1753,142,2830,2890,2479,1485,1988,1818,1381,1724,1477,2058,2736,718,2106,2037,1855,1877,1539,918,2094,2734,91,567,2317,2182,2593,2037,1031,142,1192,2180,2692,2544,1519,2233,579,2003,2807,800,1533,190,784,2514,1350,1912,6,1201,1214,1682,780,398,114,1528,153,2896,2965,105,1041,651,1988,2898,2966,1691,2611,2550,1016,2611,2681,2740,572,2528,2513,1010,2298,1438,1185,1457,2669,704,2992,127,872,1728,1595,1943,1799,648,192,183,2619,179,1069,414,2724,2227,2332,1047,360,1133,2647,2476,2059,429,2855,285,828,2836,1214,2569,1729,1314,1115,652,9,2801,2037,2166,2148,2881,2056,2926,1878,2086,2887,19,1559,2575,1100,2127,2217,191,265,1282,2261,2922,1521,1562,2884,385,117,674,601,2570,2022,2969,1873,1879,112,334,662,2636,593,347,825,900,1990,236,987,152,1345,1923,1537,1905,820,426,164,1383,975,2614,2603,250,1279,131,1727,378,368,1931,1408,817,2211,221,1936,246,562,2447,2574,2948,808,1773,2049,1857,80,2513,1535,576,435,2608,883,2357,2309,2116,1474,2033,2788,202,1191,622,1217,2605,2280,2514,2479,1595,1825,2146,1702,1885,1532,2419,1283,1590,1496,1323,2594,1605,1120,440,2410,2766,2420,2307,366,2770,2145,301,1707,961,491,1171,810,2643,175,904,1162,2748,1140,691,201,724,1931,1928,1867,204,2145,2128,2676,2525,2653,1226,885,12,861,1777,1868,1847,825,1902,2943,348,305,2514,173,732,681,368,2106,2380,1346,2480,179,243,1791,336,829,135,2664,892,2129,2827,672,2684,1375,568,93,2244,1731,1691,56,1533,1077,1370,2962,1743,1784,1586,1449,2194,1491,674,2493,153,1755,417,2027,2689,2907,591,2317,1376,2046,431,2050,691,2841,1508,2827,930,2038,2742,2891,1312,1476,1573,476,1513,1699,40,759,1636,1984,1345,1322,1557,1144,863,2198,2603,961,2915,957,2026,468,790,905,73,2696,351,1879,1150,1581,2176,2937,1882,781,179,1354,884,667,2628,2851,2462,1165,1531,2270,1773,95,2319,1475,1512,1467,360,2200,600,1438,2951,2044,1863,1020,903,2938,1488,212,1780,1195,874,2060,1895,746,1001,948,1538,1627,989,1021,2479,26,910,2542,1266,2638,2017,1658,2917,2842,244,243,746,1935,25,2423,1644,1043,2628,417,652,49,2432,2581,2246,1394,2707,2622,1099,2928,1682,729,1560,448,2236,410,1827,2888,367,1790,1462,951,252,1378,2354,2858,1634,1454,2901,2124,1632,1282,2825,32,2545,503,745,484,2264,742,542,2203,1096,85,1610,199,1919,581,2371,802,572,2441,554,107,2871,2322,595,2528,2829,2508,662,2064,354,663,2181,888,846,2341,2135,800,991,1224,130,2332,2935,1574,766,465,1296,2714,772,322,1375,420,613,1079,2145,1667,2878,679,557,2357,135,649,1009,2321,1405,1019,641,2667,2965,1670,1144,2523,243,2246,1625,2779,1974,592,1225,2062,983,2807,2777,1193,1479,2223,2784,348,1976,2186,289,1503,919,460,2810,316,50,806,1118,2603,1518,1466,609,159,725,2063,787,2916,1505,1260,2215,2338,331,2842,2522,2999,2391,2428,111,1124,2840,2784,2364,565,899,2426,2208,2791,1672,823,1575,2887,355,2421,127,1703,2688,1579,2971,1625,816,889,1157,1426,2269,2489,2314,2807,1120,2605,1137,1059,2043,1954,347,1062,2576,2205,264,769,779,2990,2113,2221,370,2325,2129,1478,1165,1357,2465,2314,525,1498,298,1190,291,964,1731,2130,1250,2059,2244,2054,2588,148,2050,1068,1658,757,579,1886,2697,2637,1530,2331,2924,865,187,1603,287,1232,835,1381,833,1258,623,2143,2345,838,476,296,2809,1161,1114,1432,1132,2845,716,389,419,1333,378,1806,46,506,1915,2280,2424,1732,2388,2814,1929,2025,111,2005,2891,882,236,2891,2194,2082,1000,613,2493,2036,1377,1562,878,285,360,2614,1233,701,1450,824,767,1497,1805,2059,2287,2420,181,989,2663,846,2220,1875,2613,1432,1691,465,1641,2923,731,2390,1824,2019,1567,121,834,2671,240,135,676,232,1802,2405,1326,2253,2627,2609,2467,1986,2524,67,2176,1887,621,2153,2122,175,2208,895,233,2550,2211,1228,1430,2473,60,1356,1887,629,10,1448,2874,791,681,1536,1510,598,2318,1393,2200,289,951,522,2492,2633,1881,1658,2321,336,34,2089,2045,363,1214,1086,35,828,1213,1444,504,1765,466,195,883,1301,940,2021,1447,1274,2539,943,370,2084,649,1041,1228,932,2599,593,905,853,153,1204}

    {972,61,2594,2828,256,606,2716,1126,1368,68,706,2813,37,618,248,1877,1640,1886,2911,1673,1352,1260,923,1424,1929,2351,2320,2701,425,368,2772,2176,2631,220,2250,2399,1356,2074,1319,779,1708,1027,2575,2617,1091,2113,2528,2204,1380,2919,1213,38,508,1315,542,2162,1310,740,142,2051,942,1431,406,430,1044,2757,1219,2746,586,2744,1736,2938,1151,2193,1030,1156,1151,509,2906,29,390,1734,801,2565,683,232,176,297,417,2502,1994,2776,789,567,247,1777,815,157,1613,2944,657,2791,2915,920,79,1165,63,744,1306,1613,1228,671,1807,683,1062,1401,2258,2314,683,2758,2451,2855,1635,1352,1611,1904,1844,969,1980,2033,1099,2360,2729,1411,2603,1344,752,136,1052,1680,2872,988,9,1959,2603,2845,225,2792,850,620,355,799,1572,671,2463,1679,1234,2451,1195,1373,2622,2597,1023,200,1699,2855,2876,2374,2386,1232,933,1749,2023,2691,1543,2611,77,437,2367,1779,1363,2069,891,2444,1961,1424,2082,565,1577,2263,1024,1292,1144,1120,2867,1658,2659,2005,1876,2824,1249,2634,339,524,2510,1674,120,1345,2514,2523,421,2507,2958,2005,1121,793,1925,523,2812,1438,2706,1294,149,1739,1451,2425,400,955,1734,2168,985,1877,439,1861,2991,230,1443,1543,2335,1141,126,172,3,588,2216,1290,2318,1953,392,460,1392,2788,114,1868,2485,1865,875,1164,1523,1286,885,2374,2415,558,2211,514,1711,1675,2788,1249,438,2943,2032,1336,683,2290,2780,2452,858,1775,975,1753,1193,836,573,2014,305,1518,336,540,1165,280,2566,2078,2394,561,640,1829,1271,2492,2660,650,1703,976,1474,1950,862,2896,133,299,55,1057,2973,839,316,1327,2283,1351,1233,308,402,1695,578,1032,2823,1480,1355,934,1207,2821,717,1879,2592,1825,2218,900,20,2217,258,781,1758,2356,1803,1048,1339,1499,2750,1160,2863,2862,1511,747,1541,2488,47,327,2974,1159,24,219,2738,897,1352,2174,2511,1748,2114,56,498,109,1825,607,476,1838,1693,661,847,582,630,2739,1931,1678,2535,1856,1383,1804,2482,1676,269,2965,813,2820,781,2241,1040,2624,800,505,2887,161,727,1404,875,1876,2670,938,2288,2704,431,1929,1034,2754,304,2555,2043,27,782,1814,679,1956,1121,399,2628,2225,2923,2693,2327,1612,1033,2484,1698,2625,2820,2799,2920,2524,1674,2894,1058,1625,1855,1640,2604,285,2398,963,1611,1524,1361,1508,267,417,1256,2246,255,2150,512,1324,2941,2778,1553,2510,685,125,2603,1171,1853,1944,1063,479,2757,2869,1826,1573,230,1481,544,614,2861,2376,2891,326,153,1618,2380,1,408,1855,1885,432,1349,1094,1590,787,2596,2563,796,1930,17,304,1472,743,101,2632,419,1453,1826,2052,653,1929,475,172,233,2985,474,1582,1877,1165,2291,2162,1396,2539,30,502,169,2531,750,996,2399,2029,859,1606,2318,1619,307,2228,2197,2284,2957,642,1063,806,1152,809,32,2306,2765,947,2053,1071,2633,2247,1706,1812,2426,1438,2200,550,2515,813,2249,2844,57,1297,574,666,1750,2014,2387,916,1906,2564,559,2666,2289,412,1759,2211,2050,360,1853,1001,2791,2194,64,1354,1468,333,2580,1463,629,264,2787,627,2216,43,2314,2569,44,714,2442,2122,1218,892,386,508,536,933,1017,1985,1545,1250,2631,2193,2054,1337,290,2449,2993,2598,2791,1871,2749,2329,1586,1568,2914,313,1708,80,2969,2160,722,1065,1552,287,1759,1046,1150,2488,380,711,1558,2537,2212,50,2369,1567,356,2538,428,1452,2585,2822,945,1536,2101,1175,297,2254,377,1663,813,422,1278,267,606,520,2723,975,568,2951,1982,58,177,2011,935,1468,344,828,2033,2161,1708,998,2792,2133,2005,2995,2285,590,694,263,493,679,2288,411,1667,848,1754,2671,1202,2558,2988,2673,1191,276,1008,2522,720,2559,2884,1392,672,1704,714,45,1515,310,718,2987,2495,2225,1148,449,927,2612,713,2488,437,2807,2106,1090,2674,222,436,963,2111,931,1754,2035,81,1506,2381,1735,2221,802,2353,1629,1074,1617,159,1189,793,2913,618,2343,340,1849,619,264,2937,1154,141,2031,735,1455,213,2100,1891,1332,1311,1753,2484,1042,180,714,851,1470,1882,2436,560,2954,65,31,841,2280,2914,1211,2779,1053,1217,2837,510,693,205,2436,1328,737,2677,1172,530,2063,2932,2817,2763,1360,2246,728,1000,2760,2493,2471,2821,815,2946,1123,2628,2014,1057,1917,1426,294,1604,1839,2665,2650,406,99,2296,57,2785,1753,1892,636,419,2217,1163,2180,1927,172,2484,1461,960,2603,1029,2302,1848,2952,1606,1446,1183,982,1430,2616,2525,2925,2800,1870,585,740,2778,2689,150,1925,1336,1763,1865,652,2762,2141,1671,1888,2120,2252,1977,1396,1636,1366,2134,1385,2491,500,2508,1418,30,1015,200,484,1654,2626,108,1356,1306,2087,2302,1744,2732,2252,1214,1305,894,637,171,2646,138,2647,2664,642,1192,2314,1352,1379,2302,1927,2896,1892,61,580,67,2918,301,1898,2262,2349,2656,1658,2211,1919,2590,1133,185,2867,989,58,2362,1838,532,668,2986,311,2831,2218,1158,1469,620,904,1313,1260,2791,1801,1150,2243,1777,124,969,808,88,2875,2864,662,615,1901,807,1441,2953,1576,843,2232,1876,2238,2893,2906,561,349,2725,2334,335,1055,2127,2852,589,2707,119,226,2816,345,1211,1960,1894,34,2961,2987,2800,2570,1866,2866,1422,1148,1602,1626,698,1555,13,2856,2279,208,1507,1946,1907,459,2957,2118,1978,547,2086,1938,683,935,2213,714,1969,1281,1895,879,118,1714,2992,2505,1200,2113,1529,710,1372,602,1427,2036,448,1320,2987,920,36,999,980,1400,1365,2099,1636,1813,969,770,232,2104,1526,2184,1310,359,2370,2711,1170,98,1881,2088,1299,1903,2761,1024,2840,2197,1739,189,1746,1083,2922,1002,1261,424,947,1174,767,2952,1282,48,10,2317,693,2050,1866,2777,1634,407,2363,1285,1004,1383,2254,895,1056,140,252,360,1759,522,593,2695,1556,69,162,309,1288,229,2493,1990,1410,2592,110,188,50,2436,1788,1905,1095,2305,1731,580,1732,568,1363,536,1096,714,1684,418,974,2400,151,145,1309,40,2606,152,1963,779,94,787,363,702,2402,2909,909,2514,1899,209,438,1030,2197,941,1225,2174,194,2781,1100,65,288,991,2230,2104,1583,1751,2137,404,635,2421,1013,1534,384,773,396,598,2364,2784,2849,2434,1323,1997,2862,2419,1631,2215,2638,1088,1594,2906,1751,864,619,2679,206,995,2611,717,1453,416,998,2630,838,373,358,545,4,218,2938,671,1975,2043,801,2032,1731,2636,2718,148,602,2606,735,215,1691,2420,2616,1602,2900,105,1214,2870,2090,267,1684,2017,1960,2940,216,1944,182,1353,2019,10,821,1477,170,1147,1684,316,2253,2201,2080,2849,1713,1516,262,539,2497,2484,2424,553,1287,1253,877,992,361,2640,2712,2459,286,1439,1187,1382,2596,1884,2167,329,21,2969,2822,1025,2321,1340,2001,838,993,2695,1477,448,656,1178,1665,2043,929,2355,352,1352,1577,2086,2197,2978,137,1170,1298,2143,2568,1331,452,2733,2302,2839,789,1367,712,1054,1969,611,2969,1348,628,556,204,1620,939,64,2634,2913,900,2061,2768,1500,789,853,674,1252,86,2436,1458,1350,1611,2857,61,825,63,1399,2483,1426,638,1198,615,1794,2256,911,1527,278,947,898,2786,346,922,967,1282,1122,2753,1543,2066,2725,2733,2987,1690,2820,1242,1616,2273,8,1210,2042,812,2199,1149,2295,1777,2006,1647,2561,599,1625,980,2142,1014,1259,2882,153,663,2782,1187,1930,1144,1098,230,1519,2107,1252,2517,1217,1911,903,2188,900,2703,2973,1971,2797,2242,1208,2894,1029,1281,2420,2127,488,1231,2822,79,360,214,114,2523,1399,1081,321,633,2727,1811,1896,722,988,1169,2436,70,1579,2350,220,683,0,2570,1694,236,852,2865,2323,2060,2909,2511,511,2928,2137,1358,651,2940,536,1491,947,2780,1117,934,1862,1413,1557,144,156,794,2498,1166,1504,940,2958,1542,733,2323,386,1834,2540,614,431,1875,2382,1871,2192,1483,1504,308,1593,2126,2980,913,1743,1623,2339,1840,2937,2420,1668,1868,1085,1527,484,2114,2524,2607,1871,2156,1733,890,227,2526,2379,2354,2659,696,1006,1227,2047,1317,2767,1633,2637,2879,206,1417,254,190,904,1926,2651,1233,626,2954,1218,1413,1238,2797,984,1007,2069,1681,909,1856,2931,153,2411,552,868,2352,2699,1316,1731,560,1899,2271,520,1913,2271,50,1859,531,1188,768,1933,2204,486,1459,1606,336,2926,1516,2140,1709,2930,2085,2160,1269,1504,1031,2132,903,434,2748,1918,1322,2988,2367,2525,1269,402,1599,2098,113,2647,1334,721,1209,1412,503,2900,2599,1026,516,882,264,2580,1562,2063,207,779,1290,2460,608,2313,2860,1279,102,1825,655,1389,2626,2090,2358,2949,278,2353,1250,698,1914,407,1890,2867,1277,548,462,2933,646,2886,1972,1317,2331,2521,1085,31,1931,1371,1127,1178,908,829,1282,2108,1533,1545,659,437,2588,1472,2318,847,2598,2740,350,2715,1582,1101,2841,2213,2218,1412,2082,2366,1380,641,1958,1934,1289,745,781,2922,804,1041,2886,269,1385,1399,306,1903,2296,2323,2738,1924,14,1499,336,2728,1464,1325,1730,2009,118,2606,1482,225,1351,358,708,193,1856,2774,1411,90,2501,1983,2741,2407,2755,2064,2722,1470,1498,2121,1483,403,252,1232,1395,309,1563,374,139,2227,1601,2367,1013,323,2853,1604,2332,2969,866,1743,2815,56,2721,1856,534,353,2200,2338,1853,1025,1345,692,1210,1126,526,2729,1111,111,1400,413,2979,1790,1114,614,1458,777,2455,1882,472,1890,1484,1723,2916,1851,2998,2049,409,1216,993,902,111,1211,1250,2146,2350,2560,1664,736,2743,946,2649,867,2421,1204,5,1415,1562,2880,1982,1760,906,1457,849,958,2392,929,349,2514,1816,2969,205,2404,2738,2420,1244,1949,1755,73,1933,1952,1735,1874,1014,2478,1741,1560,2727,1028,994,1825,669,253,165,2500,2861,1917,2449,39,2420,527,1648,2530,2844,2376,1738,936,912,578,2270,980,1908,1034,2398,1419,2933,1028,315,1163,2266,1239,70,1445,2769,364,1952,2217,680,289,992,951,2288,1668,245,2809,726,163,1517,174,2732,2616,489,587,230,418,2984,1044,1322,1560,68,754,2241,2245,684,2599,2351,809,2717,1194,182,2706,603,1705,642,2794,2686,2596,1354,2167,266,305,1078,937,319,1407,1652,2636,145,360,1869,2822,2981,2005,1155,2693,1697,1935,1465,2486,2041,1942,161,1800,184,1295,2314,2382,2319,2821,2695,2376,612,2443,2773,2241,187,1249,2174,303,2145,360,2926,2435,324,2891,2915,1519,1364,1666,1276,2007,1491,987,566,189,1061,2529,2324,13,1110,859,2296,1837,2293,1785,421,2188,1650,1550,2786,1905,941,171,2364,2170,175,2,1223,1615,2859,2211,881,2190,1073,541,2602,2888,1310,1934,1269,1116,123,2834,388,724,1072,1783,767,211,985,913,1181,1168,2916,755,1064,2394,1,634,990,1178,732,1079,271,2281,2475,1363,108,2282,2213,748,2941,1144,2806,2049,1055,550,1842,1996,2271,2541,1252,2844,1695,1426,1757,700,2863,1849,965,2595,876,2157,1572,771,2562,1841,1362,2188,2400,653,2945,1097,2390,1278,2361,98,444,251,1510,2017,25,1769,1560,1796,2349,1987,141,965,2210,1838,1420,1393,2594,1726,2969,507,359,813,2645,1944,2177,1249,2799,2567,1819,78,342,277,2910,819,981,2187,1536,2522,1551,2314,1187,2136,1777,143,491,1411,2337,2089,1723,242,446,699,1809,2320,2739,645,1536,2626,1080,2413,2476,1371,2098,1674,298,552,2680,643,448,2088,2961,1605,954,280,1479,2939,1991,1561,142,181,2766,314,214,2644,2211,241,1277,2078,2187,1079,2771,1220,2110,1456,2111,2851,1540,2749,2545,1985,2430,2171,804,317,177,2771,2678,961,1644,2927,2751,2989,1440,893,2822,1041,295,803,1674,1237,1920,506,2439,2144,1657,2932,1105,844,996,2947,2565,1539,2133,431,1653,1735,1059,1138,2365,1393,2306,2128,2167,1808,1437,2959,1600,657,2774,2746,2276,884,142,626,1999,2884,2277,2961,1256,535,1045,825,197,1036,330,2295,2684,875,853,2654,402,152,109,2858,1205,1388,1874,2641,458,1226,451,1286,2992,1711,2932,404,2492,2286,109,1448,1981,574,1292,1990,1207,2257,2222,1318,2137,780,665,214,1130,647,1383,827,440,2049,2655,2472,2373,537,25,1263,1366,232,1222,1646,2201,1102,1221,1421,838,2513,2787,147,75,596,2102,387,1099,1950,643,1772,2652,2868,1347,329,1441,2821,2632,2558,2804,891,1821,2560,1984,2239,335,1619,2879,2549,2932,2313,2020,1686,2928,1119,1761,2689,443,481,2318,105,1386,1481,1905,1752,385,1579,2421,2936,378,1619,1518,1748,1584,795,230,1052,2580,2803,2122,2342,1481,2403,2505,357,2886,481,1352,836,2697,2805,1603,365,1616,2513,1656,360,697,776,551,686,799,2528,1134,1559,2889,500,1872,155,2546,1660,196,1548,1176,1131,393,856,1136,477,738,1723,2519,2511,2771,1146,708,2379,26,387,1237,749,231,294,1598,2316,1113,360,1460,2854,1112,19,570,2496,2859,2401,2319,2845,2928,2958,2628,1764,2310,2352,311,538,2545,483,373,1328,1886,2193,2024,435,1736,1526,1516,749,1651,2626,2128,132,1192,232,2610,2199,1721,2683,2030,1413,2520,1226,736,492,876,2809,1713,1849,715,2151,1317,2726,2244,2529,1142,1988,1890,116,2946,2200,20,497,1037,1798,2783,271,2069,1589,2420,688,2261,1463,388,1499,2599,860,2041,963,338,529,2877,714,2977,2049,617,1903,1376,2319,432,2889,1719,735,1819,2431,82,151,1865,2891,1565,2076,2867,2115,1690,398,711,874,2477,2451,1559,1953,2050,616,863,583,2801,62,2360,2376,189,272,928,84,2493,2730,2551,253,1400,2598,1270,2319,83,1270,2348,2849,2583,2267,1659,2261,1393,2367,2672,1830,1066,153,25,1684,1280,805,1235,1283,2916,2480,140,2418,18,2034,454,428,2096,2977,1041,2796,1142,2470,2883,452,2791,1775,837,2979,237,593,1805,470,2251,2421,197,370,700,1440,2307,2607,2581,2171,2445,1742,2707,2190,452,603,2196,1006,1460,328,2086,1491,1016,1957,2012,404,105,2035,1677,2876,1422,519,2183,1820,1400,848,933,1113,2180,371,106,2049,733,1335,2642,2457,1273,1320,1167,228,782,2578,1144,1366,1129,2422,2333,2969,2975,1487,393,1696,1606,2232,651,1005,1699,707,2603,1913,2296,2424,2831,1966,1262,961,2012,2583,1852,1254,362,1898,403,190,145,2487,2010,1003,1112,1882,2312,2885,1304,1786,2960,2347,2194,1387,1245,165,2268,152,1917,50,1525,2559,2493,978,176,420,342,2403,158,2621,937,1689,2326,1989,224,1526,945,2900,1291,2413,1236,2822,2093,690,2807,486,2772,135,54,937,2594,2786,2833,947,2055,1582,2205,203,979,521,1533,2528,1713,1682,1579,2652,1265,1173,953,370,213,1490,2203,2966,2392,259,549,908,709,7,1247,2264,1554,321,1716,437,293,1497,1912,53,269,1519,786,2529,2488,2682,1269,2119,1059,1658,1788,994,1303,2237,1962,54,2693,2161,2450,2560,1160,2590,2990,458,123,1955,1480,1736,249,56,735,1321,1472,2559,1590,371,2675,1168,2616,1037,695,2554,2355,2903,1738,1508,2648,2265,2918,2720,1529,2887,2070,826,1887,1608,175,2397,2693,2175,482,415,745,1708,804,225,2968,432,1643,2240,1141,521,1623,185,1053,2680,279,883,2234,2529,1568,744,2505,857,2695,568,267,2469,1983,549,2496,638,2278,348,2178,2827,2698,566,1342,1069,1875,1699,751,1391,1806,495,1708,2795,682,1519,160,2206,866,2603,871,2134,2367,1491,675,1864,2910,1477,2182,2778,2303,1504,2928,884,2694,128,2314,1336,2932,288,626,10,106,2548,778,2428,1076,2648,1679,2513,407,734,1747,2514,2994,2586,2372,2731,2398,1004,107,1565,261,825,2080,1702,1788,1084,2646,997,2260,685,2137,316,2874,1381,2191,15,2070,227,1087,1248,2075,577,72,714,2176,2615,1754,2970,1806,2367,907,2817,1092,2135,2197,1587,1889,2798,1384,1828,1008,235,2822,941,1533,100,734,1634,427,683,2404,293,2584,2488,1347,1615,2089,705,1413,1738,390,2589,1879,1366,966,809,2638,154,279,2406,2700,1225,376,1927,820,533,457,848,2601}

    1028

    46

    Returns: 821575263

  82. {1143,711,1073,2171,145,458,181,1682,2830,1687,469,2098,2931,747,2562,1392,868,1488,2739,1040,1212,334,1118,351,2356,2132,2746,2628,1091,1,2288,2492,2555,1983,145,908,1271,896,1788,1648,966,1066,1200,384,2433,43,502,524,973,304,2868,384,1536,2063,114,2234,531,2920,525,2864,2017,1032,1358,328,2185,179,2705,1729,1331,1134,2251,1517,962,2655,362,380,2810,2454,277,2244,1662,2147,799,2040,2595,917,1270,1985,519,656,46,628,237,21,2305,847,1289,2451,2411,300,1517,2324,673,2172,2088,377,2157,915,190,669,1021,339,636,758,134,2713,2756,2460,2623,1084,1688,1784,2844,39,349,932,106,2319,2032,1442,2796,501,1702,1132,329,655,3,969,1078,1232,1771,1086,531,1653,1713,334,2746,2814,2272,1248,1076,1881,370,259,649,945,2855,208,2577,2300,688,1493,1029,1687,1278,2808,357,599,2861,852,2335,1371,2365,1795,888,1092,2182,1137,2945,2195,880,959,1000,2466,760,2608,418,1105,550,2836,2624,839,2482,2466,2765,1532,1202,2934,2545,509,1863,958,555,1257,634,2807,224,274,144,199,2194,465,896,898,2862,1514,1145,277,1373,2113,1907,2699,2465,13,1028,1713,1096,2437,2076,120,630,2625,2524,730,1694,2720,89,2224,771,75,1477,2182,1009,2019,1817,458,405,138,2501,2676,1409,1322,2468,1693,786,2037,83,607,203,1404,1005,2744,230,1707,1122,1646,316,1339,1573,335,257,2513,104,2145,2819,456,2633,2779,614,2162,393,2825,2790,2654,297,626,694,1597,2737,2949,974,1638,1043,2203,2845,1477,2116,561,918,974,1713,531,78,2029,2789,2874,1599,1496,850,326,2428,901,1374,1879,1523,733,2006,2122,1504,921,1078,304,2695,841,1653,744,988,1879,2089,1811,882,1318,2730,2298,2177,384,1313,2325,1500,592,415,226,159,2367,927,31,1216,2480,1481,194,1014,690,32,1704,1334,1275,46,1784,2953,2861,1021,1077,1999,286,2568,1914,2250,2549,1807,1548,2277,867,158,1585,456,306,1246,2937,1809,2943,2985,1694,2027,32,2091,1401,461,2759,1468,401,2133,2563,221,59,2201,2798,2038,1781,1172,994,2145,204,2948,1939,1187,1324,2973,2946,472,1684,2718,659,1985,1388,1583,2066,1185,988,98,1411,1035,151,1510,973,1946,2142,1222,2012,2443,2558,1911,168,1279,1773,456,1994,2942,985,794,1226,1712,315,161,2598,1747,231,2300,1548,2768,1078,2526,2666,1493,1076,843,477,509,105,614,762,881,770,2669,1067,2652,1342,126,2193,1324,2741,384,1621,2277,1017,1189,1307,1573,2994,880,771,2758,1218,453,2249,1270,614,40,765,2901,2431,1005,1482,521,2505,2980,842,1319,446,506,2518,2221,485,19,48,2555,2740,1154,88,1314,1515,2600,2219,2108,647,1088,1552,574,261,2413,2154,1103,1087,842,887,2902,2829,2159,547,966,1959,1660,1586,2364,1063,1961,2277,140,1536,2330,523,2239,1783,1733,1272,814,2761,200,1290,1793,1250,1742,1981,1112,1362,2567,586,255,2599,1808,722,2220,2520,330,1932,162,1526,751,2427,1111,2860,4,1956,256,1930,1343,2229,1072,196,1601,1157,1307,892,28,827,799,2549,2216,1194,661,1505,880,44,2645,2999,1000,2378,482,1129,1738,1794,2205,1346,602,2188,2193,1536,1287,2152,2062,505,875,976,1757,1119,1775,2707,1519,1641,1621,2548,1784,1274,2246,2741,325,434,573,2584,672,1405,1508,517,1208,1772,524,1415,938,871,1870,534,1124,559,2758,2204,518,2004,2400,468,730,1464,2623,792,1591,1395,2,1926,623,490,2384,1109,1265,1849,1404,1701,1043,283,2746,2385,1226,1184,96,1924,350,1232,2804,1648,724,998,2589,349,107,2517,2802,1421,2909,456,1867,1101,1762,2871,327,376,2579,2888,775,1552,2334,1996,2084,1036,576,2537,234,964,1198,1728,2121,1784,100,2861,2034,619,2675,2393,2976,2847,1419,1927,2698,2888,873,1057,2114,1249,2780,1417,2862,2188,878,295,1815,1869,1778,1493,1522,2406,2139,900,2924,1860,972,2440,1057,685,2159,2314,92,1001,936,1706,1645,1051,2669,2938,1863,2303,1189,1450,988,2333,1751,2431,2837,540,1789,2832,779,809,2489,922,1745,1203,0,2409,2150,2487,1405,145,2260,384,2656,1757,1889,1474,1946,86,2375,1857,1650,696,796,1057,1413,1924,1824,2554,963,1560,184,2651,769,2394,1696,857,2874,410,368,2170,608,314,562,656,649,1995,179,991,2278,2026,671,2922,1700,2166,626,2556,2727,2907,1105,1215,976,2659,925,767,1860,1156,2033,2415,1186,1694,212,1001,2117,2825,1122,571,2129,153,2715,2517,2855,2984,63,2877,1141,1936,1017,1810,345,1519,2765,2720,32,2894,1387,426,232,1989,270,2264,994,2933,2648,1495,2486,17,348,1437,673,295,2340,1591,1005,2802,789,947,2706,601,993,1327,202,324,944,703,2046,2446,2900,2099,2208,367,1227,1407,2509,1073,382,2529,690,1879,2009,320,741,1630,1098,1656,929,1426,1071,2152,2490,736,428,1577,1165,95,836,2386,1001,1362,2061,1133,2974,226,950,2435,1930,1395,2712,1911,1585,2824,999,683,2392,2660,129,186,366,2576,643,43,1459,2972,2890,2423,631,555,2149,612,2708,2831,1780,1403,2745,278,2277,1751,1273,979,247,875,645,2459,2875,2135,2270,2151,2876,2085,2151,1058,601,1863,2964,886,1557,1189,2342,1697,2612,93,2101,182,1951,509,373,1794,425,2615,2032,600,2397,1683,1457,1222,1300,524,2613,1943,2010,2778,757,1675,2050,973,1135,1871,797,1417,436,536,2186,2749,287,952,42,1204,774,2301,1472,1818,528,929,2491,2240,2503,2882,1401,1967,2647,2792,646,1000,1473,1728,54,891,798,507,759,1693,1776,765,1444,2188,1080,1028,816,2085,2047,764,1902,855,1128,722,2222,1880,2946,2016,1233,1036,2460,2178,344,1612,2140,901,515,1386,2599,1431,1162,655,1691,1591,1137,205,374,1999,1941,1669,1585,1404,2366,1071,2417,109,1103,773,206,2610,981,2144,1270,515,2312,1483,610,1346,2384,2501,725,412,2125,2007,1138,2875,84,498,1889,113,2255,150,555,815,1073,1003,1049,1536,116,2484,2877,1490,1449,2193,2846,952,2632,2699,444,680,2227,462,1034,1217,2917,1453,1653,1166,277,1450,2998,2084,1686,272,1005,1963,2453,1428,346,2790,1784,862,2301,2921,933,2217,2615,1245,1074,260,1798,158,1098,2926,515,2126,2085,1389,895,2700,1903,1916,1485,383,127,143,1259,284,796,2594,2728,1655,2582,5,818,403,1583,1471,2356,1981,2644,390,401,949,690,543,1776,1883,878,2280,515,2572,1194,2457,10,2467,1793,1863,346,1903,2565,882,1459,1848,2623,1864,349,1824,2318,177,73,2629,766,2052,586,756,2791,2448,835,2764,2,2697,2755,1621,1191,1377,695,975,1041,2646,624,2304,2452,1583,1371,2672,1193,657,1267,558,2259,2545,145,397,1351,336,1785,2501,2015,2700,2824,1026,277,1280,401,309,2253,2209,125,278,2862,1848,941,2501,2082,962,2664,1560,209,572,2319,2853,2074,2676,245,2778,351,2140,473,2078,947,686,1292,1329,169,2764,812,2059,2635,1290,146,51,1514,386,2563,2014,594,314,2710,2023,2984,2242,861,2990,932,858,417,2454,2998,750,5,1159,2187,1658,2758,1009,830,1369,357,342,1653,2360,1908,2780,2494,1263,1502,2787,2559,2139,2072,2837,46,1606,2022,2171,1582,298,2365,2140,755,663,1841,1199,2206,2213,2586,653,565,2152,2978,1324,2255,977,7,2306,2124,1643,1833,707,737,490,1663,2301,695,538,2417,594,1057,179,2599,2931,2370,560,2237,285,1009,373,2664,2229,1253,1485,2991,1463,2287,2441,1836,241,302,1556,701,809,1613,1565,2627,1747,117,1494,2419,1639,1751,2071,2027,613,1607,982,665,1206,2964,2051,1038,1534,180,1176,2603,2549,2664,1964,1674,1081,61,8,1017,2614,669,454,152,1349,2593,2147,104,542,946,503,87,1670,2914,1076,935,919,2391,1336,611,300,1518,2659,1413,844,2017,823,684,1342,1453,1062,1269,1633,802,145,1295,2078,2154,1302,135,870,1816,2234,1191,832,123,2672,2508,625,1462,1335,1815,2873,567,2561,763,420,397,1458,2161,299,1829,2945,577,239,2311,1865,394,2947,46,296,1110,1708,301,1396,1784,782,1346,1207,766,1783,1174,780,1346,1190,42,1518,2897,1032,2775,407,2563,1415,2082,2002,122,2783,538,959,1833,226,2595,515,2899,1486,1715,2721,1122,2574,2729,1874,2946,1906,1730,2977,1274,1764,2442,1393,2256,1545,795,1953,712,411,1427,2277,714,1238,2333,564,381,2714,2634,408,2679,2525,2573,494,2863,1740,2795,2273,1639,2589,1549,252,314,1738,1658,119,1714,806,2166,440,1680,788,1674,1618,2188,2358,1185,1172,2362,868,1930,2257,440,1904,2225,1920,756,2774,2815,815,1114,332,1820,2648,942,2449,45,2286,2042,1082,1457,2650,671,2069,1,2162,590,1719,2744,499,1021,1262,2050,2851,79,707,1342,783,228,1751,2943,2138,373,1751,1583,124,971,1935,2199,918,1639,765,242,2301,2863,1146,60,1483,988,1924,1076,153,2504,174,1587,51,1659,1312,2011,817,2815,2278,2627,1208,301,1164,1871,1587,1266,2156,1751,784,1754,1568,1640,2257,21,749,2593,877,2784,1018,756,1484,1078,2871,2457,1004,197,2603,1203,2958,110,2130,88,2444,1931,2916,1716,2354,2517,2299,825,2267,217,2797,1241,1262,1603,2836,2313,616,2317,101,2975,1709,1705,2590,2999,1983,2795,1226,2111,1051,2858,863,1352,785,2989,1071,735,2340,752,889,2999,2731,832,130,1447,1502,2684,1701,2742,2260,1904,195,552,159,441,2785,936,2355,2721,2684,223,655,1214,960,721,2365,1685,802,224,2382,2893,2968,2466,1994,1036,1148,727,2147,1400,2093,2223,1743,2238,2647,1355,2332,2793,1328,1653,838,1512,2083,2435,1221,662,693,2371,2189,2862,1418,2361,718,1921,614,116,838,2465,2403,2171,1816,1044,909,1107,1289,1016,2193,1757,2217,357,472,2538,2838,257,1348,1233,461,1218,118,389,1941,1815,502,1967,596,331,1020,497,1114,2738,1883,1548,2481,1691,1086,822,215,435,516,2198,2440,2905,2518,1282,212,2594,66,2711,2555,366,2643,1912,369,2054,1806,70,1686,2726,2011,1127,1477,2471,2886,1346,19,756,791,2193,1476,67,2807,2866,206,805,116,2293,1993,1776,2931,1426,1288,99,323,619,1152,2500,2983,2432,2195,2266,1501,2591,141,1614,2353,2872,2490,1493,191,1252,1310,1942,1914,1097,662,1664,2365,1491,262,1342,1268,695,227,1102,2564,979,1357,2794,101,1849,1088,792,1425,589,2160,897,992,1530,2408,2648,1089,1057,1210,858,9,2326,199,122,2449,684,1061,1301,945,1326,305,983,230,2720,2248,1092,1494,1042,1311,1242,1030,1566,1569,1151,489,1781,1950,2477,920,1751,762,1188,1625,2552,427,394,2964,1222,777,1732,735,1891,2771,1279,486,2303,670,1069,579,2764,2191,2050,145,2876,2499,2327,2352,2014,1314,2161,2055,1885,2664,1158,612,2581,401,1543,2374,894,1153,1490,2912,2137,1932,1892,1499,295,2856,649,983,175,1805,1211,2352,2145,1451,386,1868,95,1758,639,571,732,336,1911,55,2781,2875,2993,587,483,2324,603,1367,1320,605,2765,1859,1124,1072,610,805,1698,2601,1949,2384,1294,291,1291,2502,1422,988,2979,1054,2159,282,2593,2563,2139,1189,320,1600,2802,451,2538,1351,1465,1489,2925,943,2763,821,10,1484,1041,128,2749,1417,2307,939,1615,1011,509,2216,682,1493,1877,1007,2111,2417,1503,1830,833,1532,1887,905,2279,1443,332,2418,446,1528,2325,1516,2611,1069,927,931,319,163,18,527,2832,2386,158,1981,872,1388,2348,2157,2795,2569,2254,542,1807,1618,1509,2323,275,485,1416,469,2830,1228,1854,2971,1073,318,355,1599,1155,2236,213,2691,1912,1142,307,246,1742,304,792,389,569,1758,90,1856,1270,523,930,910,373,1380,1665,717,2448,1562,2498,2355,2754,2405,1742,2169,1887,2914,1379,277,1044,1820,1807,650,823,2366,2935,1643,1287,762,1143,1719,2105,2947,782,1475,210,1286,2984,2418,2606,1624,994,1539,558,396,101,502,1434,1611,2816,2355,424,1599,2781,192,508,1160,629,2024,2871,345,5,1177,225,2238,758,176,1524,1862,976,2060,2511,2410,1710,824,2414,2691,1554,253,254,956,1057,660,2428,1483,2141,262,2479,2366,2379,1338,2955,550,741,1886,373,7,745,2312,1237,1426,912,1986,243,1413,929,203,30,2717,28,615,887,2999,2961,943,473,725,2643,1883,1433,612,1473,14,2338,622,1007,2870,2065,503,589,476,2287,1623,671,2434,2791,550,2102,478,2523,502,365,1490,1116,2873,2781,614,1804,2237,2618,926,1785,2768,2222,1977,823,1761,2769,2823,1627,2446,851,404,2467,1025,1537,269,2050,1933,1847,2359,1783,1192,2095,407,2855,2752,728,1513,2622,2941,1372,1219,2770,678,1662,2891,661,2008,715,1331,193,1313,1201,569,1287,2743,304,2528,510,1559,2443,1732,1904,273,2527,225,1750,868,1150,1995,2076,1563,784,2105,2984,1752,494,2804,310,1926,1701,1078,2805,1898,76,2020,706,314,1564,1069,2606,2422,2070,2144,1960,2093,2303,1800,2722,761,2813,102,778,811,664,1323,1257,226,1856,1303,256,110,1945,1424,2414,2359,478,2127,2933,566,1095,178,2725,2322,2094,215,2195,2043,1126,499,2303,1432,1330,2356,1936,1272,1468,277,637,1006,1959,2438,401,1101,161,866,981,446,1092,1932,620,247,450,1906,2087,2070,2045,1853,2817,2462,2135,1767,414,540,1092,516,2834,1845,553,1277,183,566,429,2822,1676,1278,2826,233,2944,2053,2386,1519,647,1230,2200,2070,808,2368,1452,2053,407,950,2846,20,2160,2723,1265,2294,850,2779,2195,1938,456,987,250,1233,1959,2623,883,731,2841,2428,1290,723,1799,2036,402,914,2547,2167,2889,1101,2815,1237,2376,1858,2483,1259,2521,154,1015,150,1057,1834,2340,1031,2568,1885,1551,2548,2578,454,863,911,2516,32,771,158,2396,2641,1448,1281,1797,396,1781,340,2194,1092,812,1218,1875,2590,391,1100,446,1106,294,1241,1153,1288,1180,2769,2391,583,2407,1,2441,1724,1181,244,964,2810,1290,614,2941,2863,542,651,1453,1278,1377,2547,1779,2790,1971,673,502,1803,1264,1023,1237,1894,1262,593,687,1094,1383,1548,559,808,2880,2658,2025,2316,0,359,1268,2405,103,2655,2050,214,658,1752,1699,1895,487,2987,1665,2511,2474,2765,2445,1311,2544,1304,1821,2044,1665,25,2670,1130,735,2028,379,1064,46,2683,2812,140,1388,916,55,2346,2092,1965,2096,2802,1848,2049,1766,995,1827,2952,1063,1081,1131,2855,1394,78,2461,306,204,1470,1052,1686,726,343,6,1125,703,78,2125,978,1184,2031,229,2406,2718,626,457,1429,2420,1340,2084,68,1603,2549,257,2672,821,65,962,1092,1103,1846,2097,49,934,2703,1901,2640,1713,1776,994,1413,2585,535,1343,2898,582,2067,2120,715,303,1590,220,502,1707,903,253,86,268,2865,1852,543,1485,519,733,250,1348,1032,2112,1755,2981,21,1041,2820,1126,2084,1106,796,567,549,65,884,1515,342,840,1616,443,899,2556,1708,1456,2815,569,2568,1534,2781,1278,2350,2926,2081,2525,1735,1024,2928,2277,52,1815,907,1805,1963,2424,1715,1587,1237,1247,1926,1446,2935,2312,2923,1264,2668,2271,1914,2765,2349,1446,1051,1900,682,2816,2146,1321,367,1604,482,954,670,748,1634,490,986,1557,1982,2622,1514,1584,72,1862,2342,792,1603,422,237,1695,8,1625,1944,2999,1082,1114,2139,2299,2281,1913,2935,1417,2823,1991,290,364,1466,2114,747,1351,2849,1111,2536,598,863,1073,803,1731,2369,1753,353,1838,2340,1719,1860,216,32,1497,2363,2765,585,1068,2590,2214,492,24,171,2046,571,1583,1441,1677,1593,2297,1926,303,33,1112,965,1041,295,2218,1539,2836,2282,1940,1198,38,2960,1175,390,1784,2356,2791,2533,1205,809,2029,1479,2956,2671,1848,945,887,2811,1255,2222,1077,1855,490,1741,2188,781,289,2654,440,187,1493,293,1985,112,2289,1840,703,1569,1000,819,674,456,1816,1691,2479,2347,458,2104,1006,2948,1235,1596,2417,2045,941,879,422,2744,2803,1484,614,1754,1285,1530,1280,2039,1691,1636,1311,203,1639,1561,2794,899,955,2436,2848,786,2881,2323,1195}

    {2231,1233,849,449,1297,434,1371,1227,2412,2817,1136,1654,1550,2190,1824,1191,720,2488,2428,2095,726,1308,427,2881,2153,2144,2126,540,2312,2719,1604,679,1123,2451,2149,2676,2701,2760,1096,1616,2534,2908,1226,1919,1424,2541,1776,2112,900,1311,2626,1493,1460,480,2721,759,1390,1467,1039,2248,2776,21,1420,740,1872,522,1841,1408,1544,1259,979,848,2780,1747,1309,550,2522,1345,2768,2070,1973,1842,2892,2076,1359,2139,1634,2303,264,2999,673,1493,2895,2343,2823,832,2395,2013,2911,2919,1751,1461,2165,2144,2322,1317,633,437,1476,2648,695,899,1071,2990,2753,2530,2406,1726,2790,990,1975,2139,1558,1432,222,652,1893,1653,1870,1578,1557,1096,165,1085,2299,1266,840,1391,359,1366,2533,2904,2575,906,56,839,252,851,1199,1823,2542,56,1007,2877,2688,2741,108,395,530,1941,495,1161,2955,364,2718,1685,2370,2293,784,445,17,2721,2676,32,479,2538,86,2764,1315,572,2353,1380,1621,309,2921,2778,914,2067,1332,733,2819,1224,782,1063,2515,846,840,1561,298,1401,2322,2842,1812,2341,2745,2970,493,2179,2660,1652,188,2859,592,2058,1334,2621,996,72,1511,69,1632,2372,723,20,1001,2900,1739,1923,2067,370,1286,2822,1857,486,931,1907,881,2461,1726,1138,1375,22,2855,432,2146,2743,763,593,2185,556,1979,1209,2414,1090,2999,2869,878,594,1337,2402,2475,2496,1454,2550,178,1258,1898,2161,2950,362,1557,2085,2470,2398,1259,1653,1324,1597,2549,1576,807,1017,1402,708,2676,1499,2916,1220,722,1267,411,896,1355,821,1171,122,1414,2222,2692,97,591,1144,2238,909,2574,215,2300,520,2527,1336,2163,940,1326,1262,2106,2393,1476,2305,2884,1475,1905,363,1236,699,2868,2401,51,1070,629,1352,1075,2749,2877,1056,964,2198,295,435,650,1688,665,1322,2077,1028,463,1075,2353,257,1017,2604,620,899,599,1169,2184,2921,2193,2577,740,2107,1823,2574,2493,1732,2667,456,1082,307,736,1605,2128,533,2134,154,2136,1646,2384,32,1791,381,1083,584,1476,1681,2428,1098,58,2350,2941,1147,1180,691,1407,2062,2,817,2473,649,2218,500,1707,2597,1420,357,2355,980,846,2697,806,93,1076,672,2502,618,1683,1507,2468,611,1979,2854,698,2639,1432,1793,2157,410,2469,1544,1231,2460,186,10,800,1979,1896,1384,192,2845,460,2143,659,1667,1542,547,998,1814,2753,2976,121,230,50,1193,2388,2401,1327,1879,2192,205,290,856,2778,621,1972,2741,1400,2078,951,882,1450,1768,439,1635,1844,2800,1285,527,332,108,435,2961,1267,1661,1021,1622,1541,2523,2252,2631,2215,2663,1902,1274,1017,1859,369,1069,1582,467,2216,981,1054,544,2962,2207,2294,2101,307,2243,2954,1027,1,2904,1276,1251,251,1924,979,1553,2146,2768,2045,1995,496,2934,2621,2402,1867,2064,2533,2197,2797,1149,2576,1480,550,2241,459,308,2654,960,814,2578,2105,2718,2845,2616,1647,497,2592,1185,900,2780,343,803,113,2963,1101,628,1760,831,5,798,1336,997,756,674,967,682,2196,304,102,792,1571,2491,1554,103,2709,2656,1413,891,884,2999,2404,2320,1698,2035,274,35,1546,1148,1382,2483,139,1346,1065,899,1668,1627,276,874,1217,672,227,271,2693,1783,1050,2085,42,843,816,1055,2401,473,2790,2176,65,299,768,82,671,2767,474,1086,1340,746,617,2986,2349,2175,1364,1702,1813,632,2309,2357,2611,2695,719,1806,763,2657,371,1565,457,1270,2005,1703,2020,1406,1025,2854,2428,550,641,1456,1376,2228,2021,1395,2999,2328,1869,2718,189,566,2425,1904,1955,1010,2431,2682,402,2107,2268,1536,2042,2799,2587,1259,1599,2636,705,1414,607,1331,1682,2164,1355,372,2793,2683,1835,1937,1685,1293,2613,2320,2067,680,2028,190,2509,139,2734,2982,2939,159,2318,262,1686,1391,2492,1399,1692,1570,81,341,2667,1701,575,2211,2331,525,2786,2215,870,53,2741,51,672,2173,1779,2602,2426,1557,2245,2345,1884,1098,1931,603,1742,360,1185,123,980,1047,928,309,1023,1548,267,1308,525,863,1567,1193,2839,1839,113,2373,1876,173,1860,1825,1779,1362,513,1857,2781,1521,1423,2821,573,2486,2806,1583,2822,1033,852,2275,2875,2351,2641,249,1983,732,2956,1861,2699,125,493,1909,2773,65,878,1809,316,1238,1792,1278,316,2924,1666,104,2647,354,2387,282,2942,1748,788,1037,754,661,701,197,1644,122,1573,462,1717,1215,876,1660,2000,464,111,2649,1066,78,470,2827,815,1535,1506,1585,1772,2003,1647,2665,1079,1059,1256,2079,1598,883,1519,2669,2342,448,2158,656,1595,2918,295,1653,51,1435,456,1307,1401,2633,1496,2756,2995,1021,2551,769,1549,1885,2456,1682,1953,2831,2836,2669,787,1560,2990,154,384,411,691,2037,596,2836,712,2778,896,1888,155,2780,539,2390,554,2928,2911,2281,430,288,2988,1926,1751,532,427,1112,2936,2840,2384,2128,1417,730,1084,1751,1653,2685,78,601,1509,1958,2476,1361,2382,1679,599,820,1296,2279,1054,1142,154,597,1508,1825,1531,606,2402,1823,1692,515,2721,2148,1021,566,1641,796,806,2973,1146,1493,790,866,2109,2506,1993,2727,1876,1495,1628,1093,581,1865,1555,2673,490,1410,407,1084,769,694,349,673,2835,2570,213,2878,2745,391,295,2763,2212,913,1127,2107,482,1882,1536,171,495,1440,336,523,2459,1213,1617,1515,356,1266,2501,672,2556,1785,2853,2515,1287,2903,250,294,2861,2569,1983,365,338,918,411,1117,1383,433,1520,2131,484,684,1637,1841,6,1822,1639,1423,1529,2647,2448,1706,1966,2746,2654,850,1719,1093,773,1261,2933,125,1080,584,673,1133,2815,165,542,764,2999,2619,2978,2483,292,2604,832,497,265,1328,2478,1161,1401,763,1298,2339,1145,2935,1857,648,290,1168,1432,2769,322,2828,2407,511,139,1120,2877,2387,1915,165,409,1245,661,1798,688,1514,710,2722,1376,2531,1,2203,722,950,2761,1078,1852,387,828,614,2511,1346,1630,2318,1648,2580,166,410,1208,2540,214,1574,67,1978,2482,132,1422,1267,2451,1727,1752,1744,1777,1554,2926,2458,1284,2485,2594,229,2911,1120,1274,1845,1898,666,1469,2775,699,2,1969,2075,713,1959,1183,255,1138,51,1791,1011,676,282,652,805,2961,902,935,1517,637,1377,876,649,1053,392,1945,2765,1374,2678,1406,1622,2873,131,811,1598,2397,2041,936,2008,452,2625,2455,1124,2875,1829,1682,112,1025,2049,1383,1386,329,1602,1101,887,104,1930,158,642,434,984,62,2056,1495,688,1783,2532,2762,2828,360,866,2004,656,2875,481,609,647,1163,2690,32,1418,2329,2984,1751,1711,412,2627,1099,2704,123,1563,2617,1658,583,2383,2047,2913,1349,2391,2303,723,1720,750,1489,687,973,2022,1412,412,570,2259,885,1999,151,1525,2965,170,1800,741,2885,1030,216,2866,273,899,771,2843,2259,2765,1314,1118,156,2701,1085,2914,649,2080,2502,1608,568,2605,2270,837,1126,2557,375,402,2862,1196,2391,1317,788,1572,851,2264,1860,1369,2261,1583,786,519,644,2103,183,2598,2252,2930,1184,71,1197,152,2635,1289,952,156,1415,968,817,289,1631,1463,1001,1254,1976,2043,154,742,2247,951,2554,2515,1096,1504,2548,1051,2076,647,2293,2858,702,2072,366,2809,158,1388,845,2090,311,16,60,1445,2377,10,2614,43,1629,1325,593,345,413,1898,383,2440,164,208,2717,283,666,1213,878,914,1433,932,1375,314,1346,2750,320,2820,1405,2636,2421,516,1333,85,29,396,877,2123,2659,1419,1673,2246,2315,169,2907,2497,132,2713,48,1749,691,2748,1468,2258,2552,385,2812,1353,481,1518,1208,2461,1819,1168,909,472,2736,913,313,472,2574,382,1769,47,1062,1112,2876,1728,197,1395,2724,2648,2500,1887,2176,1611,537,1478,1244,695,753,1155,2100,776,1164,491,1515,719,2747,2932,1259,735,1213,2405,1225,1208,2063,1866,1585,803,912,2440,1851,948,218,580,1414,932,2441,2794,1751,2642,1843,378,1460,704,904,946,677,877,2338,1642,2807,1016,2625,2741,554,1718,2472,489,340,1946,2151,211,1210,2772,1273,2058,601,2661,890,1283,701,1041,2182,2292,455,1193,800,2964,1467,148,2226,1442,512,352,2855,171,1682,1352,1305,2466,968,1926,692,614,1110,572,1301,2119,743,2677,1227,24,1256,2761,1736,2168,2691,1381,0,1502,937,1647,1403,1810,1744,734,1005,1383,2643,145,1560,2011,1746,2346,2215,1683,2822,689,1385,1208,145,2953,2686,2028,1882,2421,1698,1576,122,1808,1842,1661,2008,2097,1008,1263,2417,985,2977,2681,2764,2142,896,1959,2854,2928,2893,468,1103,241,418,1924,440,238,835,2702,927,338,2674,2988,263,1756,1086,1386,349,400,1531,1275,2110,783,198,536,2293,1557,1184,2133,849,2113,1316,981,2308,2380,2512,23,112,115,1372,1002,389,843,807,1010,988,2389,2174,2751,863,695,1170,2912,1993,1438,1941,873,440,320,1769,1027,1732,671,1370,2005,65,2955,2790,99,1267,1848,1691,2595,176,1380,1436,648,447,1434,1296,1786,2539,185,2568,407,2581,1957,1474,672,543,908,2999,2893,2518,1107,2233,2495,2694,2866,1172,279,1704,1704,1378,843,2828,1179,300,90,915,1600,1275,2301,1558,882,1588,255,690,1206,2512,348,2057,2744,832,2768,992,2760,1963,1535,1443,2301,569,2510,1702,2188,326,2807,673,2090,826,1899,2541,2872,1107,64,1738,2436,177,1217,1383,681,1553,1347,880,492,2940,1388,2857,1779,1678,1571,1620,1237,2706,2788,2852,2853,754,1004,2118,839,76,2964,1924,199,2760,790,147,41,1773,1137,2961,2577,738,398,1363,2515,788,1726,696,1681,262,2964,77,2581,75,1054,349,2235,588,812,581,1970,614,1021,2483,3,582,2439,36,773,1433,770,2929,1260,2312,2171,1841,51,26,1657,873,92,1477,1540,1370,2766,829,2721,1576,1533,635,2210,419,2727,682,2933,2068,2230,2399,1701,471,1025,1465,1398,1626,2953,1640,1591,2113,1007,970,1649,1735,729,2050,1098,1721,1987,578,900,1496,2116,2777,1102,548,2544,2603,2069,1240,2568,1439,2262,1725,2481,1021,2959,395,32,396,2136,2536,709,2518,2630,1323,1967,2836,210,2370,1408,1172,1495,2609,2915,2105,2583,1332,1356,1439,2344,668,1508,716,1115,1379,1784,1936,2682,571,324,1544,1682,2615,751,640,1959,400,2620,1383,2434,2655,1536,2280,2998,1095,1988,429,2653,1888,2256,2460,2853,485,1238,1832,1021,1737,1418,2500,99,2358,1849,2801,942,1302,1206,1542,1525,2171,788,1125,981,2924,1786,853,57,118,2358,2643,2003,248,280,1594,2722,74,178,2018,1824,21,2510,571,2744,735,1345,2166,2216,1662,675,346,1001,1011,1985,1325,2096,2692,1810,1648,1687,973,751,2356,2384,667,2811,321,1054,1450,698,2184,2571,2463,137,2126,72,2384,1779,2999,645,2285,1667,2782,690,2078,1575,2486,810,2588,140,1774,2207,1208,654,423,1511,1914,5,2195,2280,1678,2264,2636,1604,2978,2296,1784,694,2543,1682,1759,514,2071,1392,1334,2044,1930,1770,2326,68,330,492,2875,2833,488,395,1990,774,2238,769,2340,1285,2406,1784,2941,1057,301,2429,309,1388,2914,2001,1398,1527,324,2105,486,440,1801,846,2283,1388,657,526,916,285,466,1959,1835,416,638,1350,961,435,1394,1289,1830,771,682,2183,1654,2997,2119,801,2638,2343,2073,2771,660,1709,6,1492,822,1360,2951,1859,1270,1208,388,1507,1582,149,1726,541,493,1826,621,1078,1207,1113,2566,763,2106,1327,1331,1397,1687,88,1585,56,134,1341,1430,482,1925,441,490,924,306,1583,1223,2181,661,813,2553,715,2148,584,2076,953,1232,964,1518,1930,1246,2105,2535,1945,846,183,2690,1254,627,1176,2680,1264,1038,2378,1144,2028,313,2726,334,1974,2269,2422,2755,1493,727,2004,2999,832,2151,1389,2349,1235,243,1992,412,2519,1215,1535,413,2521,136,383,957,2082,179,2490,2757,290,1423,2058,1395,2689,526,1798,1427,1423,1046,2765,2894,788,296,1519,140,1030,2767,2546,1299,2642,219,1207,2515,435,2062,1522,866,399,504,1787,546,743,2406,2781,1315,37,2931,2171,1929,2284,94,216,2966,2948,756,449,1651,2481,1591,2883,1486,2473,1954,374,1813,229,2286,1432,2836,382,2731,91,2373,1488,2043,2,952,2032,1911,2039,381,533,1279,1222,1056,2152,1477,498,2061,2862,586,1569,396,1980,1742,2748,1253,2988,1133,700,1354,1473,550,386,1897,42,1701,2744,1576,2703,1690,1237,77,557,1234,373,1467,2501,1826,1389,1433,1893,242,851,207,2310,380,1121,1200,34,2732,2026,381,312,1089,1941,2599,1928,529,2466,2576,901,2456,351,1823,834,962,1305,1355,27,208,353,2815,433,626,2324,640,2781,1648,2409,432,1519,2347,1095,491,1314,103,1953,346,1343,900,454,697,955,2439,2514,17,1873,2697,1783,1790,1104,262,954,212,1268,881,1689,2815,1873,1005,2906,1060,851,763,1576,2232,2927,809,324,2320,384,406,2851,2032,2735,211,2204,124,2324,2992,1878,2401,1723,1311,2255,591,219,2761,1019,2984,1671,2850,1831,2155,1115,1452,159,1959,1997,1374,1378,2062,2986,2274,1546,1839,1112,400,545,1182,854,927,1356,2263,1850,2074,475,583,2295,2148,2996,337,893,2992,2422,1380,2158,1289,2111,1198,804,1045,105,2887,1783,2078,1448,1948,1368,536,603,1017,2868,1137,2355,1936,884,264,2809,1377,410,1455,173,750,1495,1128,1249,2264,1229,2311,2744,199,1239,2177,849,852,888,1193,38,320,231,401,1938,1667,431,311,1598,43,165,1655,2999,772,72,1178,43,2350,1126,1419,1541,12,912,1370,509,2476,301,573,2486,1429,407,1066,242,1778,2905,1401,307,1445,1243,2845,2917,2765,1467,869,772,2148,1368,2188,2669,1153,1296,1884,1949,1978,1210,1837,2,1383,1589,498,2511,2847,252,2073,2030,255,1592,270,1768,2007,1617,412,722,1445,1073,1703,1344,1686,65,566,333,236,1796,1531,2431,491,720,2075,2430,16,1660,1108,1822,1189,864,1619,2732,2716,2450,1554,1538,786,1585,435,2500,1815,1855,2607,1440,823,2722,1941,2733,673,2495,569,212,2710,1802,362,2916,1368,354,2595,504,2299,108,1580,1873,1600,621,741,1448,2687,1810,2211,2969,2298,1904,1996,1210,1892,1013,1524,2256,2456,1018,42,1750,2432,1610,423,2122,1756,442,591,1173,341,50,1813,1022,80,1219,57,872,2265,1187,665,798,281,2906,1514,1320,417,2523,2464,2416,1139,1428,2560,1705,1859,1563,285,15,442,2465,2032,1815,2720,540,943,142,1726,175,1917,2108,2813,943,1563,997,107,2661,1493,133,1450,798,345,2910,1848,47,2878,1001,341,1498,2058,2397,918,1217,197,891,2781,2481,2290,1495,2601,1653,2594,1722,662,1742,11,620,422,722,195,676,2303,960,2896,824,2291,1149,2526,418,347,1868,1167,1424,2881,2590,2137,1832,416,2121,2437,228,2067,2736,894,2542,1365,684,1783,1001,235,1324,1413,567,2447,2554,2749,421,1962,438,2321,871,1834,1824,2596,1149,1734,2677,172,659,2442,2084,2483,1934,1579,240,1718,1751,2637,2682,1922,2043,1952,157,1048,418,361,1679,2751,2662,865,1230,1095,1145,614,634,1873,1709,2507,563,713,2942,1045,513,258,1898,2048,1320,1485,1083,1554,989,1910,1890,981,604,1765,2577,1683,794,2381,1672,1431,975,412,901,1506,1007,2492,995,2276,2188,2288,595,2024,147,354,1801,2684,2855,2949,1763,2418,944,77,1362,550,1555,5,2661,1673,739,1609,2180,1484,2451,1140,962,2152,1418,551,1823,2745,317,1545,2957,167,793,1667,2052,2727,1967,1793,822,896,1947,2318,2763,2731,1386,1808,2068,1241,1998,2885,1408,2867,1748,2452,2257,1828,400,777,1102,21,923,1581,214,1782,1849,2967,978,160,2431,1285,2354,143,540,2523,683,2885,201,2299,2629,1691,1102,2390,358,2337,527,107,202,2827,2456,2988,1487,1226,1742,508,732,739,379,2721,1807,2842,671,2772,846,309,1045,580,2859,2207,2107,2879,2780,2568,1237,1022,1918,887,447,859,2838,2202,1924,2115,2099,29,2563,1979,1025,2818,2623,266,1984,50,2086,1868,1280,2336,1556,2980,2378,2035,2483,1012,2696,2744,2302,234,1520,1547,1968,2804,1098,1306,860,1579}

    58

    2788

    Returns: 900804240

  83. {838,343,2634,2229,74,537,1752,618,2055,953,2044,1133,255,2601,123,2134,435,2800,966,1081,739,414,2886,954,319,394,815,970,2741,953,1239,1841,2547,1964,1838,50,1459,962,2639,896,2818,1137,2757,2789,149,719,2545,2816,2094,1068,2731,1761,1202,2019,1234,2565,1218,2586,1019,2506,1125,2630,1912,1585,147,1761,1114,1376,2880,1988,255,1144,84,1924,2968,1880,2134,191,2258,2333,887,321,173,2397,145,7,1232,1952,941,1038,72,1780,849,1679,631,808,2006,425,1220,1591,2908,2897,835,1857,2872,1183,583,2836,1092,1492,495,1707,1810,1803,2695,1850,1450,1869,2315,539,1819,698,1799,504,2543,871,773,2153,2534,2194,2419,2920,2452,1114,1028,22,935,353,270,565,1220,2211,399,1406,86,2626,221,1598,2388,2565,1483,1906,1818,2851,977,723,1937,932,2624,786,1146,1483,2844,2510,1787,302,146,1805,2669,974,2976,2184,2047,1268,895,2645,2204,2196,1239,1359,1060,2685,2034,1457,110,637,749,1773,987,2217,1116,2344,400,2124,1951,2869,1804,1262,2163,1845,720,325,1136,1574,1908,382,185,2857,2137,405,874,2406,2497,2408,263,2960,1956,1185,2540,2950,2389,2483,2557,1832,2642,1483,2556,2951,2996,1655,850,982,2470,1809,657,2849,2823,1925,1368,2761,737,2100,2738,1372,1315,342,2660,2991,98,1396,1290,70,2190,1660,2192,889,1583,1483,2289,2306,2639,368,138,1489,2100,2468,662,2087,211,46,1016,2635,1194,1434,947,1135,2859,1470,297,1977,505,581,2667,1268,1006,112,2170,1314,2045,457,971,2474,2698,1481,73,1827,2678,2828,1558,2828,2942,218,2363,732,812,664,1410,1440,2028,2415,2361,1527,1204,2309,2585,797,434,2044,1517,1886,1775,425,1705,2366,694,364,2367,218,57,2100,1502,2713,2462,2949,1721,1871,2011,1306,121,2406,2580,1699,2599,2926,2582,815,995,567,1547,1511,316,718,2275,2211,155,2214,2429,296,1095,1488,1419,2040,745,1538,561,573,2471,817,225,2034,388,2591,107,425,1843,1178,961,2016,1957,2463,1329,827,2962,1312,864,1390,2565,2031,504,80,1673,2507,877,104,1522,385,2773,788,1624,484,464,447,873,1702,2023,1767,77,2905,1485,2944,2517,2849,2303,39,316,1287,1313,1638,1728,2844,2118,2216,1625,967,1776,2226,523,2784,2030,2370,804,1037,1534,1006,2676,2576,2997,2029,737,83,2368,2966,1615,1446,408,1300,3,1275,1700,605,1595,966,822,341,2620,1647,2236,705,483,1724,1132,1573,1406,242,1388,333,2573,19,1735,1428,662,809,1695,1689,2684,407,1974,11,2420,1007,942,2354,1938,723,1075,1295,2918,1373,1055,1527,928,884,2523,1414,1553,1946,2863,363,904,2889,2033,2320,2173,2874,1066,2132,1797,2657,2141,1706,1871,2400,2123,1733,940,796,2732,452,419,1783,202,140,1108,2671,2922,2521,1255,61,2180,2996,1640,332,1979,596,2705,2787,579,1997,1557,1589,2010,1020,1702,2491,2304,2197,2500,2246,2290,175,813,1536,1925,338,749,2780,1422,165,1005,2346,2686,1383,2525,2617,2088,1640,2861,1196,2558,371,2015,2096,1034,2124,819,914,1869,2807,1437,871,2191,1231,2530,1546,1159,2859,1411,1581,2699,805,1305,1675,668,2287,2796,2594,1032,896,257,472,2809,1405,353,1810,951,2634,0,2971,1484,1489,2298,1065,950,2994,651,274,2258,2461,1343,1687,2403,783,1057,893,2974,738,1007,1836,813,2481,716,590,863,2965,897,686,1641,768,358,1736,2322,321,1454,2965,2071,938,2114,551,799,2026,1801,1420,10,682,1615,1252,2629,2026,2150,1971,2075,902,1106,527,668,591,2135,727,214,166,2645,2921,291,616,1496,2047,2956,2934,1903,931,118,1697,1224,2745,1712,445,2557,52,2102,2322,2164,2855,191,80,75,1115,1350,1919,642,316,2264,1524,2867,1619,1323,2900,1360,1753,47,1585,929,1074,1992,1764,1942,2180,709,2579,2539,2560,2613,724,1014,835,2353,1179,2929,1973,763,2776,980,314,891,1121,1959,346,279,2922,2934,841,1999,1285,2932,612,2234,2818,2029,475,2646,2669,2973,1234,2931,1111,2729,733,1179,825,836,2300,1450,2521,393,1382,1124,2254,859,2094,27,678,1877,2124,805,1012,141,851,802,2970,1842,1648,1409,2019,1702,856,344,1029,2253,222,605,1148,2869,29,1129,197,2517,250,2589,2859,2485,127,2509,2631,1481,1480,2157,356,2716,1568,2776,1919,2350,1394,1561,720,2632,816,1793,2297,2780,2381,1762,641,206,1239,1227,2211,1608,316,792,300,1887,766,948,2417,1049,2034,880,1284,1598,2327,1432,2637,1563,2271,1739,1864,493,179,35,2481,1750,1348,1121,2828,759,411,2055,1658,1655,1458,2748,511,1650,2132,741,2460,1019,305,2504,2762,1501,1327,908,1199,1514,1621,428,1767,2855,2703,2611,328,2580,353,1170,324,1216,1439,2369,129,155,2958,341,2758,754,2991,2988,1173,246,130,1054,2757,1845,638,653,2392,492,680,184,2267,909,891,684,1299,2173,462,1015,132,169,2,1745,805,290,1500,1713,2134,2797,886,1982,2036,230,844,2159,2591,2579,1935,2433,2303,194,1040,749,2929,626,1553,81,1837,1092,2968,2261,2277,1060,52,4,320,1261,1910,2112,669,1834,1797,1201,2567,2027,1550,754,2873,815,1124,1071,2563,2576,2365,2216,2132,2735,1264,475,2421,2761,1037,1551,521,1913,1579,2702,1857,1794,2373,791,2613,2747,926,1978,1230,326,1626,911,1996,712,2947,1352,287,2531,2593,2903,841,2538,1573,232,346,2371,2183,2337,2185,1443,2474,685,276,2915,1417,673,391,511,2930,1945,326,1915,62,2190,941,701,706,1749,2716,407,2847,1581,2541,1696,2773,1620,1352,1591,2746,342,2570,2405,2240,507,2501,213,57,1158,2886,475,2802,2127,2916,123,1559,1772,622,438,65,1424,775,1950,2231,1981,1574,2496,1425,1494,2725,2816,1506,1138,2561,532,1813,1500,2137,2468,1104,2423,917,1768,1366,1645,1528,2528,2348,1466,1445,1966,2958,1465,2930,1742,29,2377,1601,1802,635,853,298,730,2755,2345,2264,1269,235,667,504,979,1885,2125,1401,540,2837,1186,1060,1863,1309,342,877,431,2505,1103,2691,225,622,2159,5,65,2931,1089,312,2241,2180,2123,2154,1309,2607,1139,2772,1054,1984,2171,2633,1896,880,1067,8,554,1503,2720,456,428,1563,1648,433,2697,326,715,841,1918,2718,1643,1601,1521,2535,1663,2155,2687,2036,1661,198,1631,899,654,2531,2802,1862,2928,2879,2686,2425,1245,427,1083,2726,2282,1190,106,381,1466,2569,1497,806,1344,1294,2593,806,1,1311,490,698,2910,1353,108,2331,1129,525,595,2124,997,1423,1108,1356,2858,1361,2472,1798,1324,1554,2605,2560,225,2200,2958,2111,2136,969,2424,1788,765,1059,1315,2650,1682,2636,1266,803,1146,1106,734,2378,2892,1376,2959,2229,2856,2126,1035,2909,260,2415,2904,2586,1463,636,342,1973,546,2759,2195,1597,2912,1714,1517,1037,1432,488,2170,2141,1526,2582,2180,249,1723,805,1927,2447,1233,2065,935,441,548,921,36,2162,2115,189,1276,713,2202,2069,740,2880,135,1852,627,1516,2205,1200,752,1772,2444,951,326,1259,2116,507,268,437,358,2182,127,360,1844,2617,2287,2883,92,361,38,778,2199,142,55,532,500,895,665,2686,378,1431,1633,256,689,2118,2482,1202,1147,2624,2928,2227,1489,1191,2593,2101,393,2709,2851,137,884,2467,329,522,426,1478,433,1814,2119,700,981,30,1961,2147,907,1506,2148,2881,286,2490,2830,2345,2992,2035,2561,609,2143,1846,2410,2745,2174,2380,1833,1637,1119,992,1379,1420,364,300,1884,1310,2982,2460,1656,1613,948,301,2085,2133,308,482,1579,2355,2234,1174,1529,1457,1187,1872,2054,2230,1361,1126,2125,1377,2857,2749,2432,2670,1730,320,1049,451,2837,2263,2964,2256,1520,2339,1080,1490,1609,2920,1916,2383,7,261,714,1727,1704,2907,1705,1309,1961,1700,588,2439,65,2881,1448,1055,2587,306,2884,94,1126,2488,1895,203,2344,1988,1424,429,661,1301,2150,1269,2092,336,1747,2883,1401,2440,691,2886,2764,484,1759,1500,2743,2716,2393,547,729,413,2367,1564,2702,734,1354,2274,2171,101,2276,2221,1158,2039,1872,781,2591,2724,760,1444,49,1281,2431,854,1391,2630,842,351,1536,1025,131,1471,2523,1080,54,1371,2912,353,306,2208,1439,1988,2233,1510,1672,509,1058,2655,1155,2233,1085,736,1690,857,2621,1631,2834,2158,1751,1262,582,1022,2206,2829,2868,2652,2922,596,747,2557,1189,2931,924,1963,2421,1339,2696,466,2813,524,1141,57,541,2371,615,514,781,1310,1248,253,2650,2182,1171,2299,2269,2571,272,2326,2768,976,1906,810,317,2877,184,1235,1061,475,1208,543,42,2353,2474,1581,1530,1819,1118,833,321,2685,2204,1795,2718,1455,349,2326,620,2874,1227,1841,2181,205,651,2786,1393,1197,2982,1517,2084,2582,1845,2794,1666,2557,1637,2027,1194,2607,2536,1680,59,1017,1192,2291,85,2412,253,1322,184,1417,2516,1193,2454,1892,1782,2292,2588,228,535,1995,145,1262,1680,667,2275,2839,2445,1806,241,2211,1775,667,2836,2699,672,1451,2445,2275,866,1877,1739,320,807,1006,365,2856,1030,2708,920,2665,1002,1473,2301,1456,87,1720,157,2810,2289,1175,2084,80,1360,1374,613,268,1976,472,831,440,1064,1549,2475,410,2456,1759,1213,2499,305,1461,1136,2326,342,1843,2042,2787,2744,1904,785,2751,231,2117,2577,858,1944,993,2071,1254,2512,2389,2649,573,1748,1538,555,1194,670,1186,326,1681,2034,2306,1835,354,1263,465,1693,1829,1930,1791,723,2575,351,1859,335,163,1676,1098,718,1934,2912,723,2604,2342,1215,594,501,2877,1733,559,1640,922,1385,2598,707,2542,805,2209,537,2826,2582,2468,1573,2565,2379,1078,1615,2316,2179,2399,756,128,1882,1841,239,348,1298,541,2844,896,75,2523,2578,2353,1478,2275,1618,1330,2617,1675,57,395,1522,1544,705,848,1315,1198,1382,876,1626,685,1088,369,2531,1889,251,1460,210,1303,471,1024,2204,2300,1774,2565,881,1019,2968,124,305,786,2953,744,908,2174,2983,2051,1231,2819,2099,601,2432,31,2083,784,777,1121,2730,1839,423,442,2300,38,1835,2478,1338,2625,1095,109,936,2854,1778,900,2312,1839,309,89,56,342,830,2513,2183,2826,1972,1995,1527,665,863,2522,2469,2384,917,2454,1243,2108,1224,2886,2016,34,1872,2156,95,571,2432,2118,2062,397,230,931,1784,2000,993,86,1392,1726,475,1762,1045,1603,1127,904,802,1146,1683,443,660,931,2927,160,1426,1060,1230,2783,2846,1254,1537,1634,1137,841,278,41,1831,1908,1241,2386,2959,2560,2468,2248,1579,791,529,1181,2427,2643,102,375,2648,42,1281,10,242,136,896,2013,128,229,568,2704,1673,2173,1017,1237,1867,45,1714,2122,574,2830,2022,2859,2633,802,2793,151,237,2577,1416,411,1552,2244,1527,2319,2268,337,1237,652,853,1461,1893,2123,895,1862,1713,1995,1944,1349,2345,2065,219,2742,1468,621,452,1162,2029,2046,2690,2264,598,2376,1513,856,1457,2833,717,166,2776,283,2610,2400,965,1635,537,998,1350,1206,783,1233,2921,2746,475,1696,549,2715,1360,2458,1037,1385,1601,1773,1508,2754,551,1145,2002,428,2837,2721,501,2622,1133,2869,741,2897,1221,2886,2211,1349,1485,478,2931,2393,2608,1527,352,2097,2595,1616,212,167,1952,1362,1809,735,882,1442,2076,1797,1800,1613,1128,1272,1587,802,1120,1197,955,707,248,590,2331,1003,1455,1997,821,1312,2402,453,286,2353,2231,1663,2519,188,941,2048,356,2579,2759,602,174,639,2537,1690,811,2146,695,640,1577,2914,2978,2715,1194,2932,1904,284,1978,1004,409,2582,1160,2532,2549,927,1050,2381,2109,273,2275,1534,790,1099,2296,1612,2511,58,1655,1917,2706,399,225,2994,1619,1315,2357,2783,52,2981,1670,1154,25,553,2456,336,1666,2234,1463,1473,2309,2163,305,152,2721,2980,1458,2155,2050,1237,2391,1878,1588,1869,2170,1105,2502,1156,1014,1163,2023,1039,2700,1423,1604,1946,1362,356,416,2584,1226,856,1374,2369,2632,2486,41,867,121,2235,906,233,2462,2568,2239,2993,1734,304,1210,659,2941,2889,93,2443,1578,329,2732,736,9,150,720,1146,277,2079,722,1931,1393,544,1532,1244,1816,2445,28,1475,1203,2251,1591,2523,1646,2523,2881,1836,927,599,2609,2058,2680,386,1840,1591,2677,1864,1582,2612,1667,496,2442,1410,2020,1671,656,1047,2322,1725,545,407,2920,2548,578,2103,2418,759,2039,2981,2346,913,311,2869,925,2484,2094,1589,34,2547,2141,2751,2725,1080,2004,1967,127,1437,608,448,2421,2712,1428,764,2124,340,2542,97,2340,922,2255,2825,2464,430,2868,1363,619,1500,1839,320,1482,154,1345,2525,6,1294,2082,662,1500,252,2600,2380,1052,367,607,805,634,2032,2773,396,1410,1395,799,2200,1684,1660,1087,2507,2479,1747,1847,323,646,179,1949,2034,68,1037,703,222,417,2248,2047,2660,1678,690,1512,1186,2617,120,841,1212,2211,2326,1527,1277,2131,1881,1892,1479,530,2372,2140,1652,2977,1600,2104,2291,1850,708,1002,437,91,2576,1992,196,2597,149,1382,2231,2211,1056,1271,469,569,1223,1799,619,555,474,138,1374,2400,1629,2232,761,2386,2213,2230,1348,412,2322,2514,2689,816,2220,2228,118,2847,1229,2312,2180,1213,966,235,780,324,1218,2138,2602,2121,2040,2278,2857,421,2551,1353,910,1009,2144,874,2838,753,1607,16,1497,1634,1335,1973,2691,2077,504,2955,1079,2730,468,1131,2560,2606,1048,2583,2832,356,2324,284,2484,1994,1042,833,1155,127,226,2220,975,1483,2642,1358,688,681,421,1860,83,2671,1938,2774,875,543,2561,2841,2265,2204,1441,2915,2225,1408,2727,1693,1108,2890,2396,2644,2832,1579,411,2203,32,1954,2163,1688,2870,1765,731,734,1573,1182,951,1304,2484,2222,1685,2835,2254,2152,1501,2009,1873,1914,2310,2941,2041,1003,739,236,1591,2054,236,1756,2592,2672,1953,1729,1610,2118,1342,853,2803,1177,2817,1969,393,2691,2562,611,1772,333,322,192,2521,2183,2844,1338,1657,2700,719,982,2957,883,1693,1965,680,569,2808,2187,2785,68,797,845,2687,1649,782,1323,687,2608,1270,1996,225,564,819,1528,1911,351,619,401,46,2878,1885,1822,1718,2497,582,1428,2699,2427,1528,88,2321,2832,2150,1413,2113,327,934,388,2886,2463,1009,364,1063,592,2126,1784,2338,1375,2249,544,1926,2491,544,614,2275,1187,2071,2185,564,2981,819,2992,1758,2302,981,402,1777,331,633,1906,2280,2450,1654,742,2638,291,353,2780,1474,2742,697,2100,2373,2450,2832,2329,1449,527,2693,1172,2091,731,2727,2565,2618,481,944,1770,864,2782,347,2234,53,1263,201,238,858,2160,173,1614,1763,118,1513,1716,2532,1710,1436,2117,1472,1453,1841,2646,1625,2669,1406,264,1688,66,2406,107,1103,2640,2025,630,2445,1072,455,2618,2821,1861,2492,2038,1393,746,1040,303,2724,2402,2795,2773,69,2007,911,2855,76,1517,1347,296,935,1168,2637,1095,1084,1301,2355,770,446,39,693,1670,994,1743,832,178,1978,2857,2426,719,1301,2298,1510,787,1272,2073,662,82,1107,2495,1973,713,330,2417,2026,418,726,2233,1487,658,80,831,1802,388,757,2774,2924,407,2497,1697,1097,1007,737,1267,2026,1988,2179,2701,455,2739,996,1197,698,895,1978,2900,1400,1913,1598,70,2314,1093,71,507,2985,878,2312,2390,2508,394,356,1876,1058,737,2800,1933,79,424,1510,1948,680,1063,2676,2674,455,2103,315,2618,990,2841,1661,2068,2917,2183,2044,489,1804,118,498,1393,2610,1779,2393,1161,2056,1989,2491,1527,1799,1246,1184,2491,2589,823,496,1001,2886,1407,817,2626,2756,2995,1715,2183,2840,281,114,2773,426,2207,594,2216,1041,1366,2532,679,2988,2071,1292,988,1714,2902,126,2204,776,1802,2287,2766,394,1888,2105,484,2001,2150,86,1373,1063,2284,755,921,491,2106,583,2207,1531,2166,2849,310,2539,2862,564,2740,2006,2931,1312,1876,2099,1417,923,2037,1069,2851,1090,2323,2639,2289,1478,536,306,1358,27,2762,2639,2262,2435,1251,2756,511,1612,470,1469,665,1740,2686,2343,2089,578,1011,2023,666,1917,783,1746,5,330,406,27,864,2886,2893,2212,670}

    {917,2740,1955,1378,2283,374,807,2666,1200,1388,2574,786,1833,2581,1291,1482,532,2887,1735,450,29,1492,1683,1757,1003,122,50,1875,397,587,957,2400,1824,2762,1558,563,2768,552,1999,2910,807,1561,1893,1591,1091,2431,356,1238,1600,1947,201,1633,2027,1348,2799,743,1316,1302,603,1185,2172,1540,2188,206,932,1986,999,204,1630,976,864,2066,631,284,886,487,2319,1783,2919,2358,801,1129,2924,1388,1607,2837,1205,1102,2017,1515,658,1215,2140,2448,2074,65,180,2620,1357,165,1788,1405,1283,958,1397,704,2151,99,90,2003,857,933,2178,196,2348,115,2662,2679,1382,2555,1000,2180,837,2750,41,1588,1886,201,2217,527,43,397,228,2326,1101,1384,870,1146,499,607,897,206,721,2375,1852,372,2098,2565,646,2801,1560,1775,461,2028,1497,2603,1519,1500,792,929,535,1997,1988,857,64,2327,1386,435,1458,2733,2067,1895,1166,444,903,1899,1838,2580,916,2286,2408,1998,2445,2616,2343,1755,912,303,1984,1461,479,111,955,2656,899,737,1402,2906,2763,2710,1416,930,2339,2150,970,2021,274,1518,1990,2249,629,2691,75,1638,2860,775,2520,590,395,1543,2584,848,2273,2381,1319,2330,209,1999,22,1005,746,189,249,943,1584,683,1009,2871,799,182,1164,1773,79,2019,2550,1902,2343,2720,2844,1035,226,795,2404,1697,2882,830,2897,480,2473,1707,1242,799,973,2086,387,1323,899,1724,1427,344,1525,1997,583,840,2929,2080,1612,184,1761,60,1390,2519,635,1438,1500,2648,2838,671,27,872,2747,2651,2498,2070,139,526,1974,279,585,18,1374,1060,1910,2775,2595,2972,2127,1502,1581,224,2089,1060,2806,504,1060,549,338,1380,2168,583,1255,1296,1905,234,2557,2658,1041,2613,320,2925,2779,1542,1556,1830,52,1802,2003,1122,560,879,1350,2384,119,73,2778,1400,64,2177,1051,1647,1694,2327,2322,1280,1028,1695,1213,2860,465,1410,2734,1267,1435,744,2487,1408,2211,52,576,2831,384,2999,1399,879,2791,535,68,1209,1333,1569,1607,2421,2781,650,806,1046,2699,606,485,1169,41,1735,1405,1230,2909,1686,63,2356,1922,1016,1773,1328,825,2109,243,2805,331,1592,1949,1484,991,130,726,2090,1921,2783,483,1094,1953,23,1363,2619,2012,247,1019,2859,404,2180,2513,2039,230,2347,1129,155,124,2596,1932,2624,240,1719,2532,1017,2035,493,1677,627,2981,1922,1503,1669,1889,1070,1059,2064,1031,254,2790,2242,1195,1507,2029,2047,1237,2049,1775,2722,2663,2058,552,1088,2669,1008,2219,2785,1268,2476,1679,658,11,1222,233,181,1665,2044,1791,2594,922,1228,313,2688,1061,2610,2565,2627,549,2625,818,1348,1024,855,851,2178,153,2122,1756,2682,861,847,2717,1947,473,2824,41,383,1883,569,1044,376,2163,356,1499,2384,266,937,2128,632,956,1388,2895,1297,1929,179,607,1390,2894,463,325,1923,2798,521,2948,1820,1579,2487,1398,193,2580,30,154,2832,1923,1045,772,2090,131,404,2997,1781,1894,2107,835,2129,210,738,1729,1653,1,2615,431,223,1997,2220,2078,2332,260,2828,2707,1240,65,2165,2050,670,1429,544,810,2557,1628,1634,1544,2261,0,593,696,2053,262,100,165,2503,1387,1312,2944,2443,2322,756,2243,1254,2192,1010,2964,629,2725,2975,2248,853,190,1663,758,959,1230,2643,2146,2641,528,2451,2234,392,1014,1213,960,1493,1489,639,2489,1704,1499,741,2765,2882,1660,2818,1996,1122,2982,2248,2533,1985,400,829,1284,1890,227,557,2086,1348,1060,1213,1835,1157,2985,1639,745,2258,42,1632,1901,2029,806,2185,210,293,2507,2732,2721,2725,2788,533,426,2142,1352,2263,2757,2186,2941,247,2455,586,979,149,762,2987,40,445,1293,2139,1137,688,2788,512,1576,941,1486,2872,380,2305,1566,2913,183,814,474,12,517,7,106,658,2892,2690,1520,1194,138,1697,345,864,390,1370,1095,34,1320,2457,739,2353,1692,2524,1036,2034,2092,2544,479,2475,2826,1225,655,2762,75,17,1717,2383,1872,1395,502,364,1379,1945,327,878,2124,1838,1337,2547,183,74,1835,370,1644,2663,2444,1798,2496,1601,2468,1305,2360,116,546,363,1409,518,1421,2035,209,1709,2918,2411,2770,1858,1415,121,1732,1962,1905,2128,2725,1617,793,1720,1818,631,2648,2370,564,2671,6,199,1898,1700,2382,2700,1341,1037,839,904,2711,2937,617,1842,2960,60,2681,1821,1686,748,935,1562,121,1382,2976,133,2651,1682,730,569,2053,1692,2894,1323,1907,2952,1698,2054,699,179,1186,307,350,502,825,952,2293,1958,319,2894,1600,2183,951,2203,2762,1628,1248,2986,2389,1453,835,2941,2610,2892,2281,1214,2262,2843,1886,2546,1424,300,454,1380,2659,2322,120,666,675,119,566,583,1051,2714,983,1906,864,1996,1413,1034,2351,2991,420,2800,2028,2311,1000,1070,1196,79,1112,2911,375,2703,2028,826,444,2095,2874,2991,2039,2941,44,265,2021,2582,2774,2231,2627,2025,610,2943,2245,106,1609,2769,2969,57,1729,1150,905,948,660,2164,531,590,2459,294,2257,731,2494,623,2372,1249,2669,1034,2764,867,2218,503,475,692,2072,2175,1490,2071,651,2147,2453,489,2449,738,1144,325,659,2176,2305,2352,2787,1648,78,2531,2053,467,311,786,1561,583,1412,968,2836,2572,1746,377,538,5,2639,2063,2036,2626,851,1477,259,1975,2325,2500,2238,65,191,562,1389,1640,1061,2971,1701,2811,2060,2827,195,1243,1430,1211,59,1121,140,2728,741,1830,2848,575,519,1944,1682,1920,1395,918,2774,2815,2284,1746,515,1674,1315,339,1308,897,2757,436,949,707,2529,313,2322,1076,1744,2036,37,1294,537,158,862,768,508,1735,871,2560,2105,2823,545,816,556,2989,2957,901,2553,2806,1500,1631,1746,2394,1938,1373,853,2934,1158,1320,782,550,1491,2360,475,2223,2090,1331,2898,1602,1450,2131,1122,251,2721,1236,2859,452,2783,2848,1242,1455,1984,1268,63,405,1988,2303,111,1906,14,620,1543,166,1654,862,746,2621,644,1624,1642,1536,2497,940,359,1978,1237,1092,605,280,615,1070,1143,475,2433,2329,2378,744,1240,1039,1999,2125,787,1141,797,1282,1812,1820,165,336,762,2540,1610,1103,2984,435,447,2975,2992,449,1326,877,168,2719,1960,1363,424,645,951,2771,511,239,235,2127,2129,2525,1953,2611,698,1004,2334,1486,1807,2480,2990,743,2760,2533,1652,2886,2202,2060,1645,1838,2521,1590,1741,1802,2386,584,1904,624,2618,1668,1460,1462,1273,711,1900,2270,2658,1471,1254,1008,858,1928,2892,1007,1587,1842,224,2389,2898,2053,2132,2692,2496,939,1588,2018,2542,306,2912,2983,610,1725,2231,880,635,1775,1348,2201,828,2943,2825,800,2762,2386,649,2092,2366,2130,430,2804,459,288,888,341,516,1172,2675,795,1497,65,1762,1350,2518,2261,1636,1815,2920,210,48,493,2441,468,366,1602,477,2108,1973,658,435,2474,1411,2832,294,1537,2886,1930,1679,1247,2291,709,771,845,1018,1381,1003,1482,475,574,1141,52,1646,217,378,94,1999,2443,1332,1246,33,2398,910,932,1585,1820,1766,1893,972,2624,1124,2961,31,797,2304,2565,435,2288,2316,1228,321,284,1791,314,1809,347,2285,1663,1311,229,2061,1213,127,2842,574,1658,2033,2170,2430,111,544,2364,27,2443,2783,368,1533,1188,2920,2856,2290,1102,257,824,2792,2751,1150,2662,2866,2047,65,520,1086,2820,918,1061,1664,156,701,2384,2983,1378,2177,610,387,2386,2275,2275,1695,2034,1734,1419,291,2847,2983,393,1081,1292,2359,2334,378,2121,1532,2418,2868,2146,215,2037,1161,1564,2962,2277,1872,2387,1411,367,1441,2047,1023,1771,2628,2910,458,2826,1725,856,22,1586,1028,2126,2601,1016,1878,1033,600,676,1439,1931,2169,2228,626,2289,1262,2453,818,650,439,2715,1851,619,2555,706,2664,840,1368,1,1575,2486,804,2413,959,1989,2602,2044,2661,349,1746,610,1521,2742,89,767,1158,2353,2719,2385,2438,1196,2502,2419,2899,1312,1831,865,2903,2306,1598,1140,1914,2382,2224,1041,37,1079,2134,1467,1831,1016,2040,688,2483,2419,662,1461,342,2935,1509,747,221,794,2237,2099,1131,1032,945,1061,400,2529,114,1265,1900,2419,2833,893,907,1539,1739,586,1729,1861,1144,1026,258,2477,2298,2028,782,669,1056,944,2892,2018,2001,788,1806,1317,2117,1868,1864,2260,452,1196,118,2053,782,744,2329,201,2539,2392,572,1969,1107,2747,388,2182,1433,2342,358,1234,728,439,758,1854,1088,2208,1301,1594,31,789,2885,1578,2631,775,1134,43,1939,1552,1069,1476,105,1355,487,2245,796,1395,2557,1382,2388,750,1534,182,915,1165,1722,356,2084,972,2785,1134,514,768,596,1295,355,1744,1056,628,1598,2811,2044,1845,493,807,1352,2070,1106,1366,282,931,1084,2328,113,175,1495,2338,1915,1622,2614,2279,1953,143,136,1599,1480,2686,1837,1138,556,1477,2374,2252,1802,2093,892,2432,1923,709,2207,1944,542,2910,1137,2465,625,1153,475,2373,2449,2845,842,117,1417,380,2030,105,2533,560,1760,216,217,1693,510,1978,218,1564,1496,1988,2183,1066,877,1729,1987,1970,21,989,1549,1207,177,2944,1549,1509,494,361,641,2301,2540,1495,1346,2038,771,1495,1508,1557,751,1484,1580,270,2300,1407,15,2865,187,1785,5,1874,256,1388,2664,1940,1916,1623,1624,1654,334,170,1404,2493,2298,2387,1427,155,442,1691,2497,1217,2912,2183,215,1739,1062,1392,1640,1875,2694,2025,2358,275,2359,2648,411,1878,2888,966,1259,2621,2611,1078,332,110,1477,2396,2160,475,2875,1576,1450,2526,1581,1325,1527,397,415,2264,11,1520,497,562,743,2378,2501,2010,2675,1661,2401,1527,190,2691,1021,677,2725,2775,1593,982,1637,2529,1117,462,1186,2933,2083,227,2312,1049,591,1682,2997,316,1016,252,1027,2393,2587,489,2668,173,1121,2053,2784,534,1271,2468,1823,442,1360,816,2081,1633,1936,957,250,842,240,2080,2298,690,1761,1186,1596,1586,265,111,1733,829,2071,1334,867,96,1808,1309,723,116,835,2685,927,871,1125,2602,835,6,1982,2593,1866,1279,805,483,2483,1953,2296,269,2355,2314,453,188,389,640,378,506,2151,1376,1328,221,48,808,2944,1897,1714,1358,300,1659,1257,914,2862,1803,1609,2259,1450,2512,2215,2666,2522,2628,2489,2657,194,1004,1408,2207,2727,165,2530,812,1463,2346,1149,2393,1483,1906,2753,2198,457,2879,394,1254,218,1474,2428,2566,2979,663,267,583,1062,720,154,2450,1158,2559,377,2936,1912,1754,863,200,1579,2873,817,2716,1543,1814,2954,2683,844,570,186,2934,1993,727,1815,325,2005,1014,208,220,1556,1647,887,2886,922,370,870,1855,2409,75,1773,1793,1799,2793,1901,2510,658,1878,308,612,2450,172,2131,876,2432,1217,13,2094,1820,5,2245,1896,1781,1398,106,164,1548,2897,869,984,665,1418,1555,954,2455,2646,2529,1651,336,1109,1213,251,1368,1561,1137,1458,895,1778,327,1079,2250,1978,1570,56,2937,695,2711,1861,852,441,301,2850,2230,2713,2204,1609,1256,2891,589,1298,1196,626,1891,591,983,1484,52,1307,2593,262,154,957,2864,2551,2137,2305,1129,486,2812,1726,1367,688,864,1724,1200,2646,1130,2349,1504,165,2264,2896,1483,641,2862,2060,2875,280,1825,2627,1693,291,1641,1600,946,1914,2040,1331,1357,1172,1529,877,1455,2407,1714,2295,1641,577,2099,271,1888,2471,774,664,244,2353,115,2497,408,2483,1219,2901,2001,1382,1408,2260,2515,2208,1811,1370,1581,798,754,245,1644,1346,67,1881,2851,2738,1878,1703,2145,125,1565,1456,1141,484,1389,1827,825,2183,1106,1519,2828,1483,2852,2198,935,898,2796,2957,1253,1527,1793,1408,37,1406,1517,2010,1403,1866,752,1034,856,762,223,2353,2767,2945,1731,732,564,1447,2289,1333,2395,206,910,2474,2820,2903,840,2643,604,843,2354,1830,1321,2745,1826,2948,2542,2911,2498,2180,1321,382,1991,1180,1168,1340,2013,1406,381,1059,2903,1336,737,1729,1212,1386,318,640,73,1351,2593,1802,2483,2057,749,1136,1200,377,519,560,2486,2014,1346,720,1044,362,2527,743,516,569,2917,1939,1369,2777,2657,1808,1759,1820,882,1627,1944,2109,1818,2266,767,2340,1941,2357,1236,171,2290,38,1849,1123,2154,1004,2087,2306,1383,1551,662,1536,425,1278,2493,128,1985,2767,2413,1662,734,2388,613,944,484,260,2931,426,2294,882,513,2676,357,443,144,2659,1179,1225,1100,342,1576,925,2336,2223,2248,2024,1581,2940,299,1835,1196,2259,137,2616,1200,2208,2876,2008,1968,1041,1971,234,2210,157,2586,2872,1402,1593,2958,2923,353,2517,2946,2931,1980,1286,1874,1606,698,2161,2647,2481,610,1002,2752,1198,2029,1152,1018,2590,2802,829,2594,2180,150,2578,474,2256,2099,1612,2580,2910,792,289,2254,2035,2210,1232,2554,2115,2203,2408,882,2416,1007,1385,455,1092,2998,964,1235,1167,1525,1605,657,11,643,779,1786,2682,1235,437,1692,978,1523,2879,1675,1359,1469,2362,2412,2905,52,974,769,2501,28,1870,1108,768,2623,1043,1992,860,2191,2468,2120,1082,1806,2932,1865,2258,1059,2949,422,103,2253,1571,2737,1633,108,2790,1965,303,295,2991,632,2532,2307,2395,2040,1531,802,2514,2091,2779,1755,692,1464,1097,1439,2023,2167,2604,108,1004,2859,2137,2223,1596,1790,2675,167,1731,1686,1403,2043,1821,235,2059,2859,2282,2272,1089,1572,2855,881,1233,2897,1679,2317,2963,1441,1864,1008,2678,2808,2341,1314,935,662,2437,417,2699,1118,894,1408,1374,1262,213,580,2233,2813,2335,921,1057,791,1311,718,2313,2358,1281,1825,356,2048,2519,1255,2886,885,582,162,120,2937,2889,1961,1228,188,2155,814,1295,432,2245,1353,306,2790,1092,39,1702,286,1809,1258,1853,139,2207,2850,718,85,2909,2342,718,2656,435,2428,2367,1289,501,1769,327,475,291,2939,476,1006,2380,2486,1804,2653,1695,639,5,24,1413,2813,2375,2093,2927,2814,2052,2992,1735,325,495,1007,1060,2431,1146,837,2772,2828,2110,439,1069,755,720,207,332,1250,1744,1857,1690,1983,1090,1946,2301,183,2757,993,1842,373,1228,2657,1440,1016,1110,1061,915,1492,148,1556,2961,2828,329,148,168,2762,2928,2072,1841,1660,725,2466,2698,186,2422,2037,344,1667,809,648,1060,1783,2658,821,342,2211,26,1154,1183,938,2723,631,1021,1121,2070,1568,1198,1708,119,1260,1318,2726,159,2247,1579,434,2920,886,1187,1151,1776,1997,831,460,846,1868,1051,398,2086,1161,1019,1077,2522,2831,2334,812,516,2123,340,827,1174,176,1856,986,2990,2676,1683,1304,1525,1772,1789,442,2704,51,2290,674,633,2373,864,1909,1792,892,1778,292,1489,2722,134,2858,2246,2446,2563,624,1738,1609,1237,88,1613,303,1591,1997,942,2822,1364,2356,1640,1268,2434,2893,1452,2673,478,1670,2075,1737,1399,2699,985,157,1944,1633,2881,820,1627,871,1194,2318,2687,20,1806,2844,2248,2637,2436,2113,1053,2149,772,120,742,62,2682,1848,1949,1591,2273,2177,749,1680,2401,2562,2759,1060,2490,1039,77,2932,161,2934,2507,1647,1176,2031,2853,868,1288,2083,1061,2975,2513,1013,2783,2125,436,2408,460,1235,1761,2538,1943,2222,2364,2193,760,1591,1938,64,1038,234,1978,1184,2876,193,1274,800,323,2180,919,355,1541,1682,1014,488,1240,206,591,617,2414,1081,2859,1258,106,2911,2985,1647,668,768,1613,2663,1796,2508,963,1041,2969,2906,2778,285,1972,2938,736,2745,897,723,1510,1999,1545,2018,1879,2736,2129,1791,558,2963,1237,1535,1874,2026,2159,2450,1505,1008,493,2713,2579,1211,195,302,2740,154,745,1352,384,1109,1861,2147,1880,2659,2445,1121,2565,1947,56,1828,403,1215,2530,2882,647,1096,1611,678,1878,1750,596,652,1738,702,1941,2800,2686,583,1365,2454,737,2967,2712,895,2552,1492,321,732,2399,1746,710,1601,95,2869,1073,1889,2897,830,1711,379,1379,2897,1142,1113,228,890,2530,1382,1244,543,1498,2019,311,2564,2983,2474,1956,1817,2897,458,2189,1567,2589,2072,2654,1720,1002,1100,2742,2084,1240,858,2526,336,620,2918,2700,2450,597,2183,1648,421,744,2115,834,44,1660,1021,2501,2308}

    1541

    1645

    Returns: 97845467

  84. {2271,1673,2721,2153,1701,2805,591,2462,1388,222,18,1149,2911,2882,69,2933,2997,2575,1451,1634,2881,1342,1140,2826,2687,657,1450,2393,1954,255,2939,2040,41,2697,1344,1674,318,76,190,2154,2091,458,2524,2298,2505,1732,2577,181,2104,675,844,140,1812,1198,1089,2192,238,896,2108,2572,1607,2361,248,945,795,1902,263,2395,1434,1422,938,2024,803,2030,680,440,2605,1070,1445,1739,2034,1086,806,487,2482,1321,1479,1179,2678,2955,1579,1983,1109,855,2390,285,2248,1569,155,672,1961,2231,2653,2000,2467,1358,2767,1058,2134,2889,335,2672,121,1442,31,70,1891,1415,326,1244,2504,2336,1421,1590,1627,805,1867,1704,2584,1235,1195,997,2516,166,2010,1347,657,1552,2336,295,1333,1662,2632,2756,1786,919,2511,559,1081,280,2722,29,1356,1224,1482,1129,2733,986,2679,1397,786,1183,2163,1548,1354,2414,2197,693,946,790,711,356,2020,796,761,968,1874,2275,825,967,1800,2585,2501,2058,298,1808,1497,1050,464,1703,2017,40,1721,383,1228,2878,2777,2251,559,2820,545,605,457,373,2743,677,2669,1606,429,1263,1068,1350,2502,1054,1253,2394,801,1683,2247,446,1332,2999,2654,1406,1560,2417,2947,2553,2021,2514,139,801,2958,2958,1668,84,127,219,2519,1189,1040,429,2722,564,1910,1377,2150,974,1988,1466,2,2799,2512,2538,2754,2525,2586,807,43,580,1625,1118,990,2197,1695,2077,1763,856,2428,2259,1952,2064,516,43,2365,2805,2864,2604,397,2990,1455,1260,1239,557,1505,2041,1721,678,292,683,1700,281,2115,2098,1116,1053,283,1523,1125,455,1580,2291,465,2350,1363,2893,383,451,2673,387,2089,262,2510,690,2499,401,218,2606,2328,2675,1229,926,2231,132,1995,2646,1447,70,2212,82,243,901,2761,1877,844,2637,1965,69,783,574,1021,2228,32,2549,1571,2211,140,2407,2748,2085,2345,2092,1096,2468,2585,1342,715,2067,2558,1613,2366,2400,123,1601,1507,2343,451,538,1160,608,1690,611,867,2971,1731,883,2231,2806,1019,2196,97,1398,2631,592,2105,374,2569,2805,2373,307,2301,1335,886,1608,902,1256,751,78,838,1759,1452,556,2728,1296,1240,1134,639,1889,1380,814,2618,596,369,1324,1144,206,1654,902,629,2727,796,486,2200,1964,646,2882,2754,312,2726,2648,2023,666,774,1479,1947,1748,605,2532,581,2042,2578,1226,2191,1649,1740,805,2342,811,1721,198,1218,1844,2789,1630,2732,1035,322,802,2223,1941,1939,1479,857,382,1037,2839,2696,1573,2831,336,2103,6,1111,1304,2529,1113,1366,102,2714,1774,1049,2070,1284,2748,1794,2298,2796,1803,1130,317,2191,2439,827,445,180,2969,1068,2176,2942,100,2430,129,1411,2934,2976,1007,572,2473,1793,879,680,622,1841,1026,931,66,1361,2833,573,1690,1155,1563,278,1050,1724,735,1461,2743,2549,177,1577,982,796,2586,2500,658,2979,2268,2582,1775,2277,1247,498,385,2102,784,1719,1835,2688,2913,2881,2970,1202,1042,955,2282,1067,2753,1155,1685,576,1236,9,2445,414,727,2881,2903,35,2097,393,426,2178,2379,2249,2756,2658,744,1482,1853,2348,1790,2875,1440,2654,2662,1539,1673,2033,517,118,1105,2721,2815,2871,314,122,2132,2544,482,243,2866,2931,1335,405,1684,1359,22,2649,552,885,1643,491,1946,772,667,66,2283,436,2274,1350,1540,2514,309,335,2703,984,785,2405,2441,2971,1479,709,2908,2683,2443,6,2476,356,513,2154,588,374,216,1964,1541,2458,2678,2373,1264,1207,897,733,1013,1959,559,2273,2601,2132,2111,1886,534,436,1644,530,1525,199,1122,2283,2148,2975,452,2368,991,1668,2615,2649,1376,2052,2923,2977,622,784,983,1370,602,2937,1402,1536,781,2993,12,2552,2069,2344,829,2355,2803,2053,1427,1758,2090,2560,2118,1674,196,28,1168,695,2002,2613,331,1325,1089,1247,1198,543,2135,1238,1598,2567,2690,2611,1217,1040,1682,611,383,348,398,2448,2520,2001,2546,657,1565,1318,839,1480,1614,2618,264,109,389,1040,179,1736,1150,1962,876,1186,1774,49,2500,2011,2748,791,878,236,366,1989,447,281,1584,585,2882,177,244,2373,2520,1312,2659,2427,1553,180,2675,428,385,2216,2079,2813,2851,1382,1794,2154,2710,392,1445,1909,1755,2615,640,112,2708,2040,2786,1054,814,1551,485,114,2678,38,2748,1323,1440,2603,1155,2665,1322,1227,2844,601,1840,1231,1339,2310,2581,143,593,2264,1816,1880,592,1668,1013,237,1467,2927,21,2960,1230,2040,2785,2763,90,535,2585,1981,1107,154,106,1330,1912,1878,715,1603,509,2272,404,345,2750,1518,2891,2755,1525,1128,2418,1911,2738,1262,1762,90,2547,701,1852,2912,338,1391,2464,15,1864,2303,833,2725,1898,2460,562,2304,2703,1747,1480,2847,1576,1763,2672,343,2065,1473,1400,1607,2944,1915,679,1836,455,996,491,1429,85,887,819,2631,2414,1978,461,2271,1111,1567,923,528,872,45,1249,1035,1095,1854,442,778,1954,2602,103,2156,1660,630,1793,1105,1019,542,1307,1638,889,833,2333,1594,1895,2495,2518,906,11,2329,1445,1540,2132,2761,2927,1212,311,194,2043,1697,1399,2777,103,275,2365,1765,1062,259,2853,568,2493,1881,16,1635,1678,516,2129,578,874,2585,19,1638,369,970,2720,547,1620,2644,2151,1626,2306,2068,1578,1834,149,1766,1619,2886,1966,2725,1452,1204,2055,1408,2654,417,482,493,1279,1847,482,1334,1375,1858,813,136,523,2674,1567,2719,2232,1566,1280,1667,1210,873,2101,1520,2971,484,844,1868,786,2600,952,346,1136,2611,219,1260,2742,2505,2339,1598,844,1753,2783,1466,1331,1524,599,1629,1667,2297,2471,1574,568,2357,1535,2505,2152,1973,1968,2898,109,1758,192,1882,1846,2953,1957,480,1258,2507,124,1056,476,424,244,2876,2752,1769,1898,1757,179,1437,196,1450,575,985,1014,668,2327,1337,1944,162,2586,1968,585,1086,1499,1795,14,1429,2506,2457,2365,1523,882,2298,347,1972,679,2748,1502,1616,1070,2575,546,87,1284,1550,2240,1114,2540,1649,2559,2286,2002,2955,834,1931,660,787,108,2561,512,2733,234,389,2024,425,1275,911,1487,2946,1942,2963,1197,2492,38,1651,36,2369,241,844,2675,206,2531,211,1787,2929,1575,2486,1968,2803,262,1915,2421,1255,577,1528,2698,1517,942,384,955,2089,2182,1393,2726,416,2563,1278,2875,2239,743,1951,2422,1128,2525,2532,2309,2766,365,1994,548,1019,545,2416,1929,2910,667,2722,2812,233,2073,2409,1158,2340,2813,1002,1264,2723,2956,1144,631,1200,913,482,729,461,2074,1147,71,2411,1264,2086,1561,1216,2681,2355,934,226,431,1304,929,2142,2203,2550,2733,586,1286,2640,136,2420,1604,1522,2769,1394,2383,196,1631,2589,2010,2830,2459,535,450,2534,1839,1704,962,2207,2330,881,780,1589,1874,1008,1101,131,145,1663,282,2188,977,2135,1965,2537,176,593,1960,1728,980,1114,2949,290,1175,2276,1652,1482,1132,38,2039,1377,2747,510,2166,1702,1181,455,611,1598,1219,1312,1252,2442,1432,327,1860,835,353,258,1705,1623,470,337,332,2918,2233,1863,2429,1264,514,1368,1847,1565,1526,2752,2304,294,1306,410,2294,535,1834,354,1975,1733,946,2782,585,1290,1262,2809,1622,2106,2362,2938,487,1957,710,1374,1341,2757,2234,1793,2992,900,2289,139,1526,1972,1646,2085,2247,497,498,2180,2151,544,1745,856,1706,364,2986,368,868,539,2657,651,460,2902,582,1763,894,513,802,1335,2259,2116,2835,2606,1847,2512,909,2373,684,308,1089,1310,744,1117,2719,2383,1773,240,1169,2139,54,1060,891,159,2274,560,434,2595,1507,1607,1914,2742,1721,2255,2972,2371,2869,1831,2299,570,2444,625,340,2654,482,357,2819,2642,1277,2824,1418,371,1409,606,2818,2495,2781,2527,1475,2186,1790,2173,1973,722,919,1334,2116,2876,770,1639,1537,1011,70,372,796,343,1773,400,2646,2956,1895,1679,790,1715,890,1983,1132,2200,527,2960,1714,1162,58,2580,2689,227,2723,1089,1821,2317,2576,674,2532,819,2222,1466,69,822,2067,2712,961,2435,841,2289,1361,964,2872,235,1907,373,53,114,2481,666,423,519,2711,2129,2860,2299,2856,1480,1287,165,1897,1532,1093,1610,1681,1331,1322,2726,2622,1158,2096,596,2542,1274,466,2180,1556,27,2024,588,291,2154,1548,95,1617,1742,12,1796,2016,931,1550,2616,2962,1523,373,1840,1945,60,817,2079,1518,208,2206,2249,2957,2169,730,1824,1480,1951,1927,359,2184,2896,179,1138,1959,2657,447,2785,842,1084,1815,1474,1532,2136,2336,2254,2327,1733,1396,1472,443,2663,626,1594,2129,746,466,501,2427,1450,1998,856,1859,2278,586,695,1274,1986,189,905,810,2087,2096,1452,1910,2953,991,642,2175,2031,805,472,2236,1306,1917,1489,2338,442,2185,1,1183,1565,1470,1821,2717,2940,265,2008,272,806,992,894,1206,2747,1518,1561,1811,1349,2100,2007,140,88,705,946,1769,1092,2244,1129,2530,594,894,2031,658,1813,792,1859,1703,173,2680,2754,323,1936,2100,42,2913,103,970,1331,311,1130,422,2964,1466,2887,708,1525,2295,2682,1052,1260,1551,324,2186,2364,442,796,170,645,400,1508,1051,1142,2055,1834,2527,1823,1318,784,739,2036,1842,2471,1442,1290,2916,2799,2628,1132,2359,1623,2143,2298,1962,1451,57,1559,2769,2777,707,440,505,2966,2629,2402,540,2975,245,2172,2591,1245,2433,1040,433,300,34,2098,2794,2911,2156,82,508,1658,2615,527,224,576,523,634,2646,1465,1821,2072,1786,1335,2528,689,415,214,31,2927,1207,2355,207,2299,701,1340,2014,1825,1419,2670,2260,303,1918,1720,1568,624,2295,2235,1940,1100,815,1358,1268,145,1155,2925,877,2514,1107,1512,972,660,206,862,1431,2792,1357,1265,1211,860,2197,1576,2461,501,476,659,1018,479,276,1141,2293,1151,1892,2591,2243,1984,2868,1843,1638,1365,736,835,1220,700,2561,1050,875,2037,1790,1170,698,1211,2665,1906,2318,2795,2505,1148,1950,703,1337,980,1492,489,1191,96,1325,510,1578,1868,2462,1043,2998,510,849,1223,2955,1425,1052,1629,1191,1785,1716,1857,2545,1984,520,3,2961,1781,306,2991,893,410,1866,2006,2061,92,1371,2245,268,888,2901,2855,944,1553,935,1103,395,545,2756,419,1904,1479,232,516,2417,356,247,263,2325,645,2425,2901,626,1986,251,1172,1399,2998,1643,2101,2646,2238,793,2049,1257,2863,526,1019,902,273,136,885,2283,2122,317,2629,346,378,2221,1518,1035,1908,1756,1516,2964,979,2646,198,2726,2362,2598,1848,1508,2952,2856,2941,1811,1156,2145,1805,39,2614,2469,2505,111,2111,2312,2063,1381,976,2289,2909,1069,1992,1943,1786,579,1228,2436,183,1563,2886,115,1126,2591,1461,64,2737,193,373,1097,2492,2411,64,2779,2555,1926,1551,575,1338,344,874,93,2543,433,2666,1333,1338,880,141,2220,960,1700,425,2038,2658,1554,2081,1690,1377,1012,1984,2635,2660,1312,950,826,837,663,662,1906,2194,718,2984,334,2013,2809,1875,1791,1337,2331,2629,1025,2953,1878,2415,1317,618,214,2403,2028,2075,1459,1225,2389,2325,2090,1722,2158,1509,2487,2466,139,2000,1378,2594,649,1774,2471,2403,459,1539,2471,1396,138,628,1726,2429,1598,1687,901,957,2517,2849,627,1650,2226,2905,1711,2432,1500,2045,113,2406,1125,1972,1923,90,2045,2880,767,2551,2753,525,577,2187,1035,2609,1611,2713,1448,1270,766,1974,757,2742,738,2867,2433,2871,469,704,2859,417,2950,2298,1445,2756,914,568,1245,794,1869,1930,2593,1353,1638,1462,2327,1669,958,883,341,723,995,1715,75,2913,2270,1562,1186,1312,812,846,1706,2081,2492,1325,1017,1966,681,2999,960,267,427,753,358,1886,2083,927,2471,2760,2383,2768,2746,1391,207,1337,1663,220,1059,2353,1696,444,552,2554,231,82,2876,1634,187,2676,556,1020,2650,793,1614,854,2480,2126,1836,254,1155,1759,667,2201,2560,1427,1466,1024,1932,522,442,144,2370,681,898,223,276,933,625,2619,2822,1731,1579,2665,1858,665,891,1492,1479,141,870,2421,1787,1278,2144,1540,2407,2316,2803,2083,1342,1395,2404,2048,2668,302,749,957,1429,2131,2816,2252,1163,2319,2409,218,1595,836,2500,2287,1186,947,924,2708,297,1439,1567,869,2120,2131,2314,2721,1490,1504,1143,161,1075,30,438,372,2499,1598,1797,2645,2096,1564,1849,2364,1277,925,2751,1381,305,2214,1645,2698,379,2312,1105,2989,2086,1908,2722,1775,478,2553,7,1887,320,191,2459,1934,156,2251,2057,747,1774,766,2350,2431,515,2418,482,300,490,237,2478,2617,1308,1639,1772,2746,2813,2714,1589,1186,1498,206,53,2085,1347,1204,2397,623,507,409,1127,1996,742,951,2591,2889,1857,2274,2683,1583,2754,2375,2773,406,47,2721,1079,1588,1834,809,2800,1939,1637,885,1119,2647,2890,1137,837,747,2213,2022,2110,847,2016,68,315,2417,1356,2474,2288,766,614,2302,309,2265,2699,82,1628,2246,189,540,1903,367,610,1454,2298,1108,1676,2840,1090,648,127,2482,869,151,73,715,2936,330,1862,1213,778,346,1552,1240,612,2764,1251,828,170,47,1479,2521,1396,1991,383,177,1807,1506,607,709,904,2696,1403,158,461,1306,2701,28,2304,41,1377,851,763,1876,425,835,489,1807,238,2954,2217,178,1317,169,2671,2109,1498,2358,796,655,2485,978,393,2324,452,2798,2300,2762,963,659,1730,189,1409,2956,1673,1873,299,1305,2940,1561,2038,449,888,2317,1487,628,912,1895,2459,1217,193,2464,1303,377,412,56,1328,400,1284,1834,1250,2705,636,2444,2078,1370,1970,561,2364,1639,2679,1368,1763,2139,2633,1015,54,2054,2675,2020,2391,2934,1079,805,389,58,2701,590,1841,372,1046,250,1230,1318,451,2749,2921,343,2917,914,617,1061,388,2555,1645,75,1339,2751,2534,1615,2384,939,59,677,2575,1778,905,1860,2156,2639,2374,437,2206,992,1696,2982,2996,2376,951,1900,402,1715,1451,1479,2240,1910,2646,1134,1682,2493,42,1156,2162,1290,1523,1143,1312,2541,579,992,1903,2464,158,2696,1246,1159,1158,2093,1671,2636,961,1447,456,2670,1668,68,1550,2835,1665,1575,1468,1291,273,874,1608,2782,2554,2231,2363,714,699,182,77,970,1079,675,2179,2010,731,542,355,1463,1775,274,120,1150,1536,2683,905,2603,2629,2111,2161,1279,872,1342,1466,814,1632,418,2252,1129,2940,56,1598,1161,2634,1847,2667,1640,1086,1582,2471,841,374,2833,2156,1913,1271,2463,2094,2213,1829,2099,1805,1385,2532,2600,50,1258,1207,1778,1438,2748,163,2171,460,1916,287,289,1891,1886,1351,489,2385,2854,690,2910,270,1758,2775,1691,2717,2831,1448,1415,273,886,1403,577,289,2116,578,2646,360,2734,506,1889,1378,2123,2455,156,2521,1275,2765,184,82,2658,876,1342,2032,2937,1098,2203,503,2314,1381,1487,2697,2707,2514,232,628,1481,2593,2548,2227,2023,1951,172,2870,2294,2564,725,925,1322,1921,732,545,608,1856,2625,86,2870,2289,1114,2966,1051,1851,342,2838,91,1558,1532,648,2741,1412,1804,204,894,2488,1659,1218,1013,257,2160,2121,260,1480,384,2724,586,2264,2008,988,147,897,1048,1983,1165,1648,2138,1842,670,2944,1935,1918,1146,936,2450,1572,1597,975,1970,2612,1348,130,2728,1498,1570,2983,2429,1575,2422,811,907,2717,1694,564,2327,2384,2996,2587,339,421,2505,1618,198,1533,1534,1578,1212,667,1289,68,2926,1384,1756,2190,758,1201,2483,2896,1132,2041,583,719,489,784,1648,1478,1325,1971,1281,1106,290,115,217,1798,2561,2174,718,2317,2861,1750,1416,2748,532,2968,635,1598,1975,2325,153,1142,526,1166,453,2983,2958,2908,116,1272,383,2320,133,1094,1266,300,485,358,676,2093,2269,2610,1450,1065,319,2795,727,1418,1125,2900,1238,2999,1187,1085,520,673,1306,2975,931,1032,1606,1404,2943,1301,30,2426,1173,349,2402,1352,1534,665,2483,91,855,385,788,2552,2725,2528,978,284,1195,1741,2011,1487,1879,2421,2359,977,1401,749,2061,2073,2745,1532,1568,2155,2521,2481,1009,888,1298,1791,2557,1287,688,177,289,78,956,1741,916,1644,2596,1338,2141,1207,2271,2356,1930,2889,1317,481,2924,669,2845}

    {476,874,1638,1487,2787,2418,559,922,219,2088,1997,823,104,1693,1150,1179,290,244,747,1923,864,1102,376,1625,2732,89,943,1955,909,641,1421,925,2426,739,282,982,2464,1713,2732,2907,2508,1144,2006,1787,1653,1370,545,1806,2283,2809,1015,2095,1746,861,1681,1927,1188,2500,1535,27,1274,2274,2716,2972,1242,2181,875,1895,337,2096,1558,1787,2084,2284,172,649,2214,2048,891,2556,2210,2352,30,2696,1033,1889,551,579,1458,1433,917,1956,84,1907,2629,835,174,2514,186,1120,1442,1723,2407,2230,531,2387,1048,1071,1323,845,175,918,1733,1402,1613,2036,1938,243,1646,1772,1572,2194,1809,383,1796,2885,206,1709,386,613,2654,367,2972,1766,1962,156,1495,1617,615,1086,531,29,2072,502,2748,2313,2383,1181,1775,2153,827,4,2206,741,2383,2852,2686,2734,202,1781,2729,222,1483,2928,1880,2845,1811,297,155,2267,1857,657,1557,2501,1387,2421,2129,1019,2673,1545,2116,1203,697,436,498,1657,1725,776,2443,1782,78,2985,1434,2817,1515,913,1437,2308,2657,421,1865,2055,2348,1899,2191,477,2045,214,1463,1949,1477,2727,436,2433,1983,1926,287,2093,550,1376,567,354,2491,1779,2067,1254,814,848,628,1712,2533,2804,1196,2260,110,292,604,1775,990,1026,450,822,758,1410,1747,2351,2648,189,2124,1873,335,2365,570,702,498,1835,2499,1119,65,468,2383,2583,2535,2330,1224,741,967,401,2932,310,2061,155,2224,1252,1977,1386,2094,622,1154,2228,1325,1847,1144,451,1375,2431,1258,691,1519,1380,1984,2758,1581,411,1949,2976,2947,2219,459,221,2262,2174,2769,2845,741,2268,2477,114,1251,2314,2019,1451,2337,2721,386,920,2591,1228,1079,1778,964,1443,1100,2749,1462,1598,1139,168,2085,1011,835,569,1178,2053,422,2211,249,2923,1551,366,1153,1428,2315,2652,2646,462,746,125,1919,1669,83,1643,2131,2897,430,277,1834,126,2937,1300,2339,779,1255,47,2311,1690,2651,1645,2491,278,2262,771,1564,2080,1336,1923,134,2085,1143,901,1914,1764,1484,343,126,681,1834,158,2813,2407,1689,2561,603,855,2193,2581,2174,373,844,2695,2833,2040,1647,585,511,1047,1577,2229,2880,1167,2138,2009,1780,2405,1516,1223,157,435,1872,2644,2230,598,107,1067,2847,480,1098,1760,559,1516,756,786,1697,2678,2846,739,212,407,2955,1475,973,47,1278,801,2815,1578,643,344,1097,666,344,2930,1171,786,1708,593,2119,1777,716,2814,526,2721,270,394,1024,2377,1228,2221,455,1980,790,1035,86,347,2154,254,532,29,1987,2654,1774,1363,2415,910,1496,610,925,1383,2196,2431,2943,690,964,2096,760,1601,2170,2067,98,1278,2919,2871,2942,1549,2754,2606,418,1939,2305,1497,88,1120,2821,347,196,2421,1818,1958,2559,1076,755,2696,2285,2218,139,660,2289,647,1277,803,1896,1866,2015,2382,1103,80,2984,1854,946,1451,2340,397,491,2871,193,2884,85,1799,2243,2566,2787,2529,2232,894,2735,358,657,2459,2482,2179,1491,1996,2731,2398,61,1258,604,784,511,17,1721,2551,156,2299,2035,1589,1758,2874,2081,212,1613,2585,2407,2055,365,1776,1023,2044,304,187,270,2790,1374,1891,2716,1223,1436,1630,365,871,826,786,2228,2205,1624,2549,1176,1745,840,2759,2832,971,2154,2128,150,2573,1531,691,1963,23,209,2756,2115,2506,1152,335,1351,2419,2327,1886,2498,1939,1686,2146,2592,1401,81,2704,653,2401,2204,2914,45,1083,333,1911,1380,1781,2047,1230,1450,63,2591,2392,2323,383,2574,2297,555,420,959,2598,1392,2692,2642,638,1817,1563,2334,1077,2358,1120,1633,2702,424,1239,2393,1463,1482,2624,2588,1306,2726,762,2493,1274,1683,152,2843,937,1337,1300,2256,173,1546,1811,83,1969,2736,1301,994,870,634,2637,654,1696,1136,2371,2917,2039,1107,2184,2071,1194,2505,1874,823,2742,828,1878,283,959,432,286,2036,850,117,1820,2502,785,1637,1764,2975,942,1544,983,1409,1675,1916,1194,494,1427,556,739,137,1438,2568,1624,328,2131,1838,1744,1716,1488,1644,1775,2522,2956,1457,2771,2711,1135,1642,425,2999,2452,1922,1314,312,1889,1283,2165,1391,1281,2373,531,2620,1965,1547,1613,411,1437,2526,2712,156,1638,1084,1861,1611,1279,655,399,88,2490,1161,859,491,1148,2109,2524,471,379,2559,2661,355,2326,1456,709,313,2116,1041,1193,1013,1638,2544,2041,1992,947,2018,2030,2995,793,509,1969,2396,2209,712,72,2214,1114,2920,287,1888,2731,1178,566,2726,1320,2685,2974,2560,490,509,1338,463,510,810,715,230,747,126,2236,1322,50,570,1872,2181,713,1260,7,1275,1279,2717,70,2538,835,1533,2364,2599,2374,169,2701,1594,2808,2578,2593,1165,918,1873,261,2446,622,689,2965,2944,471,1702,2544,32,476,1456,696,2988,1646,496,2085,2311,1521,2714,2883,2082,2355,454,1432,584,1993,196,2916,715,1471,612,2343,2034,1924,2172,1810,1754,374,236,2706,1177,1933,2101,800,415,1000,1821,1332,131,2524,1683,1865,618,254,734,1792,1811,2581,200,817,31,1516,185,1414,2113,2347,293,2754,491,719,1407,100,1710,1293,42,28,2539,2976,1260,1268,641,1114,336,906,1054,2547,1460,2479,1821,1199,220,2971,2881,2049,198,2732,1635,2520,1810,2786,275,870,2713,796,1778,329,767,1923,2342,2551,1771,1074,270,1692,1222,1039,1903,1529,2071,2439,69,914,2835,2269,1005,1672,1748,1830,2132,1577,1187,718,1415,2242,2062,1295,1721,1022,2736,579,2858,5,2368,1086,1244,2400,2464,1064,1596,2253,645,1270,51,708,2295,559,2920,535,1607,2778,1549,1497,1889,1463,1389,1316,271,2386,1227,1920,234,313,1164,1280,2702,253,2470,1521,1132,949,650,376,1704,126,2945,2131,2675,773,1828,2117,1280,2799,2525,1453,523,558,1364,459,1159,579,456,99,1422,2282,1585,1852,975,225,1884,2386,1444,1222,2193,1873,418,425,816,2031,2296,1618,2975,2955,2141,632,30,1979,1056,1769,266,167,2163,1714,1426,2646,1997,1097,2980,1990,2665,1363,436,1921,2754,1699,1294,794,625,1445,100,2677,2595,1600,525,384,440,970,727,1638,2203,1536,1752,1885,2841,2424,741,1969,145,495,1451,477,0,256,1662,2770,1346,536,995,2579,1703,2051,874,2257,2097,496,1626,1284,2268,1737,1456,322,529,1230,795,184,1552,940,1195,692,2054,1185,1267,1286,820,257,2193,1327,592,2803,1355,2827,337,2897,2428,1091,2562,1304,2769,18,96,945,273,118,1991,856,1132,363,2258,1292,1249,79,1113,2674,2252,1480,1187,2515,2036,620,1438,1982,2384,1114,1373,1005,79,2913,160,904,177,1435,1470,1801,932,953,1287,1889,1948,1446,1794,1299,1692,586,1733,2675,2537,213,2263,1145,1976,488,1144,2200,1234,1277,355,1513,1204,2058,114,1276,2061,455,1516,1920,1529,1589,2742,325,1659,1876,2129,527,2585,1658,1682,2059,2307,1169,527,2808,2674,1391,2243,1224,1010,500,1214,2026,1462,1693,2748,2367,2612,2020,2137,2493,1835,2430,1880,1783,2786,2543,1655,2496,1111,2529,401,593,1208,2697,1953,267,1438,868,1345,403,1832,2821,1889,2601,2862,33,2114,2036,142,1622,2337,2307,2875,1680,508,2364,894,1073,267,174,1972,970,203,1867,2307,2621,1337,604,1187,225,1529,2984,908,1096,2741,2574,2494,787,2793,1633,1360,725,1938,2514,228,1916,2904,5,633,1937,218,2806,2247,1221,2208,630,1787,894,171,2137,2332,687,2536,1839,1923,781,321,275,2489,903,1834,605,1814,2799,786,1921,864,2279,1854,1611,1983,2655,2511,1374,685,1215,2841,1406,2036,2643,2011,772,993,2014,1278,882,2876,2837,810,2107,2589,1611,1322,1131,1949,63,1417,904,660,2398,2691,285,868,619,1333,906,1547,1710,1290,1598,2290,2286,2734,2250,1784,1948,894,545,1822,1311,62,296,1661,2319,1097,2591,208,1587,1119,1499,1379,2964,2623,2691,759,1970,1381,1413,2025,121,1598,597,1768,498,480,369,2537,268,656,2587,835,1261,1737,1578,609,305,2025,2880,361,2795,2642,902,2507,2053,852,399,1918,2626,504,206,916,2655,2093,183,1870,2232,136,396,2408,726,223,1521,1322,897,1059,1103,1210,798,1318,2692,682,1317,2923,645,2399,299,1834,1425,2830,1096,1721,423,1005,1055,1547,1794,1507,2978,2386,1893,1807,1973,1249,2457,1606,148,311,2449,1260,1384,2492,88,2975,989,2056,2646,459,2028,2232,931,403,2220,2368,2367,2499,2132,305,1447,2911,66,1489,1395,2447,737,1713,2357,1082,1573,1826,539,724,2151,622,790,382,2451,2174,2003,1430,719,2731,2215,1719,1198,177,1337,808,1207,1868,1112,1718,853,563,821,1995,216,2583,866,1586,1027,84,482,2501,47,2604,1285,2472,468,2096,1909,1788,2745,875,2410,2560,595,431,200,94,830,299,93,740,1910,1895,2147,851,2397,2029,2779,757,25,2360,1657,2974,1351,395,1078,1081,1350,605,1613,2814,155,1209,2744,1566,366,2556,1790,1475,2040,556,2497,1578,1463,2590,315,1641,2935,2848,1120,1818,661,743,929,1426,804,2323,146,2149,2261,2743,2545,1951,1655,2055,521,1176,2635,1553,369,267,1198,13,2097,518,2520,2916,442,645,2060,2627,2728,2975,954,1370,1689,1277,1449,1727,1597,72,1474,1805,1423,2349,2295,38,1939,1291,1011,1099,439,1463,384,1326,925,1697,933,2771,1851,2105,644,818,1329,2306,1563,2393,2754,491,2119,2742,549,1999,2398,2780,431,1088,1248,1497,1309,1268,1802,1940,2402,2998,2892,355,2499,2705,921,1555,1901,823,1786,589,2776,2956,1232,1035,2492,194,2216,1605,1979,971,1966,257,1864,1358,390,1915,1150,1603,354,1847,1822,2453,1660,2505,2930,1484,907,1511,2335,2588,1318,1750,2378,1593,1847,2951,1675,1760,2823,2682,868,1764,2675,239,510,2797,2730,1494,2834,2707,2662,1872,2691,503,2160,146,2842,539,1729,132,1374,1803,919,318,42,2040,2759,1352,2879,1788,1124,1630,2739,134,1766,799,2532,1956,180,2896,2202,2523,158,1119,2128,1855,2772,1947,1177,2959,1372,2987,1716,1312,2549,1351,569,395,1697,1235,533,246,1925,1182,897,2703,846,2702,2693,836,2195,2467,911,2487,1169,1350,1430,1606,1896,1420,752,2454,750,1133,1738,598,1516,2410,2476,1935,1794,969,2426,929,2895,2387,844,1607,901,2281,1324,119,2037,2761,622,1490,1903,2522,2005,619,2649,910,1382,2858,1501,1612,206,2027,2168,2844,2156,252,1288,1598,2774,1552,2889,1233,1410,963,1183,1158,1421,1503,944,1104,2335,2601,2973,1362,1041,1578,1479,2215,1177,1315,1264,531,448,1830,2307,2887,467,271,1358,1244,773,2724,1537,2252,1437,1672,858,2272,1588,854,1332,1217,782,1434,1430,336,2539,1155,958,1204,2587,2129,386,827,29,1190,2644,1953,365,1642,618,1567,1998,473,1485,373,1994,1479,2829,428,55,37,1688,1507,2401,64,378,433,2637,2388,408,1819,768,1184,1880,2177,797,2136,474,821,2825,218,71,195,1260,291,789,2841,1708,2355,2465,611,1028,258,2720,1284,754,2774,2597,1213,2202,1412,2825,1162,1371,1036,1425,2664,769,2487,2991,241,70,1862,2087,575,67,303,2243,1819,2942,1091,398,2148,2273,1864,2322,2645,2849,947,835,724,164,2685,30,1666,1682,2801,2012,1462,2132,2994,1487,1983,2023,701,2268,2655,1730,318,2684,2788,1794,1458,1573,1110,612,1827,2051,2630,44,362,1812,595,2214,548,1641,2100,26,2493,1176,2184,1431,570,1543,1845,2162,2960,1259,1319,965,626,2163,68,165,2059,1217,301,1552,2791,135,1592,598,105,1024,1600,960,2685,1107,1390,244,553,2968,1564,205,2418,1559,1696,1731,2313,2637,1905,2299,469,2237,95,2926,1038,1387,2440,2133,2810,637,1367,597,2877,1850,48,2692,381,843,875,441,2967,1673,664,236,305,2641,529,2443,2914,2410,1112,2918,1748,1201,2656,720,990,1195,198,2779,675,1806,2346,1241,1128,2052,1038,1951,1029,1696,2587,960,282,2863,1871,2802,743,2859,1037,128,1166,1466,2981,2023,832,1676,1086,1970,994,1703,505,2418,628,721,1369,2341,1822,931,1902,541,1539,1420,2650,206,2008,689,2634,0,2888,294,215,819,1343,119,1626,892,1345,2906,2163,61,2486,1253,71,350,440,233,794,316,1100,652,288,525,2753,2231,1607,304,2054,0,594,1832,622,1967,913,157,2306,2421,425,1569,1133,2505,1434,2930,1252,1512,899,1982,214,8,195,565,2840,1460,1180,239,1766,2112,2434,188,2533,2289,114,1150,229,1270,95,699,1460,1011,1683,1756,744,1338,888,2364,2127,2154,925,928,356,1645,1638,524,925,510,2647,1358,2582,2734,1034,1707,61,242,2050,475,681,28,865,1533,2548,1119,1893,2231,2325,660,1066,2974,1599,2488,347,2717,694,766,1162,1119,691,2131,849,1264,2401,600,621,814,1463,418,1110,379,2154,1332,2085,2200,1528,1064,1173,1401,2199,2543,206,1139,96,1836,2066,1040,2965,2700,671,2470,671,2154,2242,552,2364,1498,1677,1912,266,285,345,781,2940,959,823,207,119,1174,775,1272,2564,380,213,2715,486,1056,2692,2093,1111,722,2731,2082,1895,1507,1411,745,49,1847,1480,1006,2798,167,2828,1313,2055,1527,1237,1072,433,1367,268,764,398,1778,830,1441,385,891,1292,2225,375,2024,2315,2748,269,2422,554,2784,2638,139,2368,1566,1999,2165,587,1663,1698,24,1794,2718,2588,1858,944,1031,192,1803,1046,1408,2941,2423,2413,1228,1664,2811,2325,1636,150,1643,850,78,1424,1058,2619,2611,2046,2189,2004,167,2825,1630,317,1735,2292,2647,1238,1750,1088,1548,351,342,931,2532,1290,893,981,1690,352,114,28,1486,656,726,1044,2198,2593,641,381,2381,1682,884,2709,2523,62,2434,117,171,1599,1087,2010,2468,1066,1609,456,1350,2380,77,1538,512,2483,1507,2266,2629,1086,498,1297,744,1277,54,276,499,2132,1268,1631,1005,2960,1874,2438,2499,998,2350,1203,930,2167,2163,915,1613,1348,2125,983,1793,31,2002,1405,411,1895,1115,2059,2453,372,2865,2437,625,489,1972,196,391,587,36,80,2952,1426,1003,199,2291,1564,1946,1770,966,748,33,1926,1588,2183,2054,2097,2598,2136,1832,2272,1092,2956,491,210,2122,498,1001,1302,1464,2570,1092,2657,2132,2347,1138,1016,2072,329,1346,2140,1670,706,1844,2061,1205,1721,1979,2157,2782,717,2400,2836,571,1794,2857,197,413,924,832,1697,1401,2662,863,709,1463,777,2372,2680,1218,2054,2960,2505,1939,2813,1883,2268,1325,2922,1428,2264,2098,8,54,1030,1987,2030,88,341,2484,1890,970,2319,1985,1736,99,1837,262,845,2857,1833,2703,1767,2403,544,1892,658,2671,2982,2280,1899,1469,1339,485,2881,1514,1604,2825,1570,2055,417,74,1192,278,1988,483,347,83,2147,2133,2354,2608,1245,2204,1763,2578,2377,1456,1204,2591,1717,753,52,1292,1530,701,1063,753,905,537,1004,2454,117,2456,1493,508,777,2694,2412,2720,459,2223,2894,1282,279,2295,42,101,2141,1719,1187,1591,616,487,1552,1743,1462,2203,1789,1761,2996,2799,2571,1114,107,822,1443,1080,114,2350,1526,1937,793,434,2509,2607,344,16,1834,88,1961,1242,2262,2676,1621,2587,2873,1749,1982,2684,786,913,2851,119,2387,2948,773,2915,2503,46,857,2909,1445,618,2395,2249,1554,1374,1382,135,1021,2159,1387,2807,999,2475,370,960,2955,1937,1605,2482,1277,987,136,1751,1187,718,1273,1632,10,122,2565,585,1489,2238,943,765,782,1157,1068,1984,1123,762,1546,2249,1683,418,2569,1928,1939,1749,2513,1794,1602,365,2241,1439,728,2850,71,1760,731,686,390,2307,1299,2508,431,2960,1448,1033,1400,1471,935,1645,1346,1872,2461,1284,2875,1830,1057,1285,425,1651,40,1260,437,132,1337,1902,2130,143,2871,831,1079,1198,353,422,736,201,895,1734,2076,250,1243,2164,437,456,1392,1133,664,1409,2732,2307,2768,2721,2321,2696,1206,1269,290,1335,58,2178,1634,845,1045,1121,2679,875,506,2875,2955,1894,824,2727,1542,948,2740,1510,386,1553,2409,1183,2754,1186,442,20,2899,312,1846,414,1476,353,1698,156,1768,1691,2243,2313,2186,480,2863,1978,2725,2736,1656,492,1336,384,941,2789,257,1159,417,2106,933,2145,230,1087,556}

    1384

    2731

    Returns: 232256121

  85. {2276,1461,2754,2569,131,2823,2776,1372,184,2783,980,2151,46,482,808,1696,2794,1229,1482,2831,136,1405,1560,2830,2514,1816,499,2077,2885,2977,858,2697,2449,1434,2113,1421,2184,604,1595,51,2914,623,2196,872,2231,1139,461,247,2835,2831,2319,1365,2252,466,181,2801,1879,2400,1255,789,921,116,1058,2849,1246,161,2217,2054,2538,451,1562,1567,2787,2806,1158,5,1128,2330,296,1280,1357,1073,2297,546,1654,741,2288,860,655,411,1667,2524,2348,1936,2498,49,280,2596,988,1527,573,2175,2454,2854,2409,1005,159,1718,1981,2235,815,1209,2686,1242,1189,2656,489,450,38,1386,1892,1703,1801,142,928,1963,1314,619,2121,993,2951,41,2611,37,522,514,560,310,1660,2433,2258,621,63,2717,2055,1977,1926,1278,1926,671,628,1395,942,2578,1494,2984,1688,796,1873,2297,1333,2555,1171,1766,1803,1157,1417,249,166,1303,2561,2198,1705,2437,333,2392,2052,1257,813,478,220,581,504,931,2492,352,1425,2133,36,266,540,234,2322,2496,53,2513,2168,2818,1009,712,1720,2312,1447,973,1865,1704,2108,1273,50,2437,1948,217,1023,1921,1161,75,550,2085,678,730,1055,2875,591,510,1465,2803,2405,2344,161,303,1544,1796,1678,1354,1813,2350,2088,2612,2441,1524,1572,1419,1300,2793,2286,2303,937,2355,2979,2442,657,1038,1709,1310,1751,815,674,675,2673,897,2959,2905,682,1792,2024,1305,2995,2916,1521,1592,2241,1796,362,1911,1371,2705,1603,2870,1007,1973,2912,2087,2638,2146,1537,2096,2148,2110,1553,2958,1342,1268,2058,699,311,175,2031,922,1623,2978,2856,367,1991,1767,111,111,2496,920,1450,296,130,2118,1734,1008,2573,67,2269,2837,217,1864,2587,2684,2353,1045,2170,21,592,787,2194,865,1041,439,2491,186,2335,2870,311,627,1851,2326,2771,1388,1559,969,1818,1527,1396,649,1066,971,383,559,51,2585,2518,761,311,1238,1371,230,1470,571,2,2022,1732,2185,2013,906,2199,766,2621,715,1759,1727,2991,467,1428,512,1980,1119,1742,1404,218,1267,1887,820,2997,1448,1893,2782,2301,1183,535,1231,1187,2246,1960,1976,2333,430,974,1039,2007,438,2206,22,1670,40,522,2655,1355,1335,1191,2759,1643,1606,2766,1077,1272,1129,1421,1711,2725,2900,415,138,2190,2937,1228,2137,534,2889,1231,1253,1613,2226,2921,2445,2792,806,2790,1314,2150,2844,1181,2419,576,2702,1498,2532,463,2362,1226,338,300,90,2347,2581,252,538,217,1900,122,586,2958,694,1698,598,747,768,1661,2768,110,92,374,2142,1339,581,1555,1846,208,1298,2139,2823,1755,1009,613,820,901,2506,255,498,2417,1825,1632,972,1726,2260,2405,1565,1769,2832,436,1776,1927,2698,9,1044,2399,2089,40,1391,2144,2070,2339,2628,369,2138,1893,273,1150,234,2640,1235,2974,1104,484,785,2197,2567,2302,951,874,55,152,2561,401,2320,2478,1506,2782,2308,1852,2429,1312,340,2765,707,1760,606,2765,2878,1369,84,1170,135,2712,876,1530,719,2345,709,1388,1300,106,2639,871,2196,2286,1774,2520,1439,331,1689,1807,2875,544,1900,645,2665,171,2719,224,237,2633,1658,726,1661,406,804,728,2320,819,838,1883,2569,2481,252,2123,150,918,1152,2150,713,2380,2097,357,1865,64,804,929,1399,2686,2927,2511,668,1725,2306,1859,2440,1167,548,1915,354,1299,1407,192,1747,2982,2401,2766,2792,1213,1952,2076,1408,813,1174,1831,1748,251,1495,528,2815,1184,92,1033,819,1727,1842,538,945,1501,2142,1938,727,926,455,2567,2502,2901,2517,1552,2032,150,2394,1714,210,2852,2562,163,947,1748,169,2883,2780,632,2861,945,1180,408,2509,516,69,1489,1844,1140,1919,2384,170,72,269,2950,579,307,213,1964,1357,1315,2519,2252,769,1159,770,800,754,76,2744,812,1539,1412,753,2104,1293,89,56,1972,622,2758,1354,2271,286,2611,38,1459,1977,1271,1868,2236,2130,1832,2568,506,351,1198,1525,803,2227,382,817,2514,1743,1742,1268,2042,1320,1780,2886,1653,885,950,1141,661,1971,2124,1928,598,77,1345,1899,1602,2951,233,2794,244,2421,2797,2703,2022,1480,1268,509,2511,2853,1916,158,2240,1800,2892,954,716,2099,2295,882,2054,160,1312,715,771,1405,957,692,1172,1193,643,17,1151,2735,699,595,1324,793,1940,770,2242,1652,348,2675,2899,1377,316,2167,1526,1067,2455,248,2052,703,2164,1155,2937,739,1880,2826,2258,1543,915,215,1635,2128,2823,2005,40,869,729,743,2877,2676,1190,2767,33,2043,2703,507,1420,1920,1066,2152,62,2581,1398,2796,1237,1644,2729,1329,1851,2688,1585,2132,1307,2452,120,2116,2308,1700,2719,1454,172,1260,313,2930,1039,741,2699,1834,1973,2793,1919,2949,2336,765,1083,1660,1550,1260,2518,1063,4,2229,1675,1210,1945,2645,1970,2964,2766,1111,1747,428,2521,1156,2970,2366,2130,2523,2261,2552,2269,1873,1846,152,1906,2425,2493,647,72,2163,2867,992,1995,990,2710,2656,2640,1917,2296,759,515,1487,2079,336,1417,1499,2805,2970,2341,2052,2344,1603,620,152,2452,807,1218,368,1975,2213,2711,2127,2017,1594,505,2214,1217,2421,2136,57,2498,1448,1358,1884,1967,1675,1108,1733,2053,1467,242,1730,482,2251,1312,1658,1552,171,2753,2694,711,663,2963,2329,1141,2243,811,334,2942,2437,483,124,1058,1985,712,332,1568,2311,2014,2002,1984,2522,1727,509,1138,497,2867,1705,683,2660,2876,569,179,487,952,2416,833,1661,382,924,82,894,1750,2740,2057,1802,1316,1500,1837,1790,2773,2407,2005,1086,192,2353,1667,2337,512,66,2723,1944,900,565,2215,214,1090,268,1841,1712,2273,1056,1648,1649,144,116,969,2244,31,441,270,248,2238,1381,84,1387,1679,1182,929,865,1383,2475,2817,1186,529,1957,966,909,2050,472,2382,1860,2614,1119,2294,2478,1414,2427,2808,2080,2229,1361,2474,1726,903,1747,992,1546,53,1516,2202,1382,1366,165,464,1234,1954,2483,1590,255,479,2914,338,2527,2301,1151,2731,2815,2749,1078,1808,282,2245,260,1813,862,1809,2483,2083,2685,1818,75,1016,1314,1729,810,2269,2136,913,2376,1934,1449,1302,2864,472,1527,965,364,503,2171,2304,953,1963,1676,887,552,2667,2664,2325,2543,1396,2562,2967,2390,836,2779,579,2612,2706,570,2356,1603,1198,2591,1364,2090,1456,1809,1837,1489,2872,734,378,578,642,620,2010,300,2340,852,734,382,346,1694,2301,1168,2352,2348,1441,2976,1945,1034,740,713,806,366,2770,1414,1629,1626,645,1681,2846,911,373,2681,1294,2109,1313,51,747,2277,843,1515,1000,1250,2258,2673,1473,1330,2954,2893,894,1373,1393,1154,2907,2129,2751,2556,2874,1075,183,1325,230,1584,1451,2793,594,2578,2517,1593,871,949,2607,2457,1527,2970,2081,2374,856,1920,65,1515,918,2758,2277,1471,1385,1296,62,2099,2513,2237,2721,739,568,2001,1490,2603,912,1641,1932,1113,1423,1301,272,1831,2974,2413,192,2801,1531,970,386,114,2991,1659,1552,561,1732,1334,587,2975,271,2062,2035,187,592,1827,2054,455,1212,1574,1083,770,2937,2970,100,763,639,463,372,2826,2679,8,1473,2724,892,552,2779,2369,1701,177,963,1790,1411,1977,852,774,392,1049,2752,2273,2527,916,2618,2985,1945,134,1669,1901,932,991,1833,619,50,272,203,348,923,1010,2195,2730,180,2167,1465,2459,111,245,2423,1674,2084,2486,336,770,1292,154,198,1011,1202,38,2553,2282,24,1465,1306,1866,625,1262,2262,932,782,1547,1642,2854,1130,325,778,898,715,938,2918,2407,2099,2899,3,707,425,2831,2942,2298,2788,1025,2505,1907,2229,1190,2479,1091,1167,696,2121,1473,1607,1388,501,1183,172,321,2017,2465,194,804,986,2763,896,157,1264,456,1748,1159,404,434,2037,293,2336,998,183,1775,2605,2229,1224,2686,1863,1235,1814,2657,524,320,1731,2471,1824,2052,268,1946,2575,1922,584,1363,1433,2821,542,2572,158,2311,1441,2758,977,376,419,2689,2901,2005,2814,2509,693,1756,78,2236,2426,1966,1127,2264,2413,2061,560,953,858,1886,1912,2263,2756,1474,1528,74,967,1432,23,1722,203,1857,666,776,2344,1351,297,1262,1906,1049,149,2647,432,1120,2911,2936,2718,2662,1167,1953,827,481,2829,2921,1557,2835,2909,1668,6,2705,415,2001,691,651,2498,2121,1624,2483,173,2284,309,1458,2925,2213,795,2837,1909,2586,52,1875,990,980,2602,110,701,595,48,1815,1486,707,1722,1602,1862,1679,1063,1565,1838,1858,2836,2013,2015,488,152,657,1939,1043,1737,2835,115,1143,1715,1118,939,915,2948,616,242,2986,1080,1295,1791,1367,410,1856,1313,657,605,2346,2855,428,1587,1888,1071,743,976,855,2617,2267,2501,1142,2547,1144,739,314,913,1148,135,1831,2544,1435,1413,1452,1326,1045,979,1276,1532,1304,2074,1226,2924,2075,762,2199,1165,369,1535,2909,2362,2975,457,1656,1650,1381,705,2210,2694,489,958,118,1092,1748,748,394,1866,1895,131,2923,1726,1810,1176,15,535,1306,1388,547,2718,1124,1865,799,2314,1154,1586,1418,2157,2208,932,2813,1641,2663,532,1134,575,288,977,2709,744,1886,166,1929,917,2089,1726,1030,1750,2279,1092,2208,674,1585,1414,1094,2434,440,377,1607,1196,2894,2153,11,1949,2825,1818,2994,984,1270,2224,566,2336,1554,332,337,2983,1284,1269,429,620,327,2463,869,482,94,344,1112,2662,1689,1554,1082,774,2816,2209,2688,2281,1049,1111,1527,2468,1464,2351,2461,697,412,626,2026,2852,2424,1830,1375,2585,1492,2665,2182,508,2781,204,1604,199,278,1236,1894,587,1953,1011,6,2040,1735,979,2369,1526,638,2515,943,1121,2984,1422,1303,1918,2004,1521,1565,151,1229,2692,2890,918,2105,903,2422,2676,641,524,1781,308,1819,1307,645,1956,338,2893,950,787,2017,1688,2234,632,54,474,2171,1903,1371,223,1282,1434,641,1798,1425,661,68,1641,1963,1505,1468,605,2761,1307,2974,356,383,1102,1376,925,1696,269,2435,2482,1750,1203,1260,2570,1661,1804,2164,2609,502,722,1286,2549,2462,2725,987,322,2263,856,1028,1392,65,2343,2427,1499,1122,2208,2407,1807,1458,2742,946,2117,847,1776,931,874,1414,1081,1488,2908,1249,648,1917,1911,657,101,1861,1013,911,620,2919,2343,2611,2405,2354,879,2281,1249,1298,349,1246,2413,2207,166,1311,422,2050,1926,1256,2790,519,2382,1868,38,2278,1050,2239,1122,87,2623,1294,1608,1173,2530,916,2377,690,2934,1968,777,818,1983,2658,1748,2525,1327,29,2661,582,2029,350,2337,2627,2971,1160,2625,2280,459,549,1145,1235,33,2726,1235,2470,1550,2243,1985,558,2395,2147,238,1294,1703,1286,1491,5,1965,1851,1538,458,548,132,650,1907,647,2421,2014,1271,398,2067,1003,1915,2622,1850,745,211,294,1393,1718,2758,2990,322,1681,1790,877,32,599,2656,228,1742,742,2955,672,2460,652,1663,1140,40,2790,2455,1533,927,277,1131,391,2521,92,1164,1484,756,2290,1477,1385,1754,447,2590,875,1435,446,2686,431,2170,214,2214,1355,2952,1169,932,492,2918,242,2532,1185,674,1862,425,2761,1707,1708,2725,1306,1335,2969,1685,653,674,596,657,2613,985,2070,2414,1970,2379,602,261,2627,281,2929,1180,2358,794,2161,685,2298,1249,1866,2024,2750,1113,1298,1807,2936,1961,140,1546,1919,2833,62,2092,938,2256,710,69,1998,2078,2109,1466,1675,837,1133,712,176,2181,1351,2794,893,1328,1744,1188,2621,2549,985,1086,2550,591,548,1460,13,717,1538,2562,1166,1342,482,2825,2467,1034,1655,2859,393,2000,1309,265,722,1053,1011,1646,869,1779,549,29,181,1174,687,1671,444,918,770,525,2447,1076,2663,2175,1599,1124,2901,1465,831,770,2900,2612,2593,297,1260,1052,856,2344,2265,2687,2345,1428,323,1065,1437,354,2528,1093,2821,2878,2390,965,2064,2135,2511,1479,12,919,1225,154,2439,345,320,1881,2839,1732,2352,1579,181,2030,614,579,2913,1853,467,2786,290,2263,1651,704,933,1273,1181,2972,1226,40,1930,91,2584,2871,838,2079,2079,915,833,395,2381,1979,1828,513,57,259,2773,1804,1803,2778,2681,2061,631,2982,2835,453,455,1229,2072,2560,560,2248,59,1309,216,2822,903,195,2983,1635,409,690,2103,617,592,1253,1005,1982,2665,1919,1486,257,1234,853,1855,2632,381,1889,2646,2458,871,839,553,980,245,1470,505,83,1891,2627,1179,1212,1639,343,1452,1317,857,9,490,1277,659,2751,669,2261,1347,606,1631,2991,922,1459,2176,1569,2574,2220,2472,1722,2406,2425,2665,2073,2717,2034,934,640,325,2968,1099,548,2041,2972,1840,1979,1986,2979,2383,219,2490,531,84,2050,1497,2705,2985,889,25,1538,105,2277,1057,603,113,1221,22,2479,739,2957,1584,164,2922,1223,411,1562,1078,1317,1331,11,2710,2263,1303,1288,2160,1514,770,331,2910,686,1834,2857,2722,1715,1980,5,644,959,1381,609,459,1972,1759,88,2465,1323,1832,680,1947,1197,1849,777,1871,1555,1488,421,1896,1953,2972,2477,1214,72,2316,1154,702,1984,2377,1787,2249,660,2066,2052,2442,1741,2193,102,743,2933,2018,1137,1579,870,2099,1429,183,694,1431,1823,2899,233,1070,1710,1920,2820,234,1998,2790,460,1794,1658,2301,548,1263,2952,1071,1889,85,2552,1146,2108,301,1915,155,1948,363,2439,221,1205,442,583,1235,2809,465,1973,196,1227,1851,2710,742,392,2109,706,411,1087,526,2448,2607,671,913,2473,1393,439,986,2513,583,1705,1942,2784,2186,1125,2228,2857,2122,1890,615,746,1057,1990,1591,1260,1936,594,2970,1135,1446,2574,2229,2343,2596,316,1663,476,2039,1330,2375,1306,2156,2848,2498,1414,2492,1144,476,1196,1789,2113,283,2995,2553,1530,1705,770,2871,348,2514,1273,454,2269,519,1761,337,829,337,2126,1374,2335,1181,1368,1926,222,1984,391,2212,1665,1746,1552,2909,2800,1104,2925,38,1610,435,1811,497,1113,833,2737,21,2049,253,1677,155,1285,1519,1262,1033,1857,1520,1650,940,2349,2636,1896,1973,680,1526,590,520,2122,585,6,556,2214,1643,280,1527,1605,2988,648,1127,1290,1573,2012,1909,486,1958,736,1200,1963,1387,2633,986,2019,2815,2093,1747,1561,2735,514,860,2715,731,704,2330,2709,913,131,2695,255,2799,1048,1765,1589,99,509,2294,1886,942,1114,2170,388,1254,28,2698,1349,1556,1770,2943,2911,721,1431,870,1879,2837,1934,524,1543,2821,1657,26,1103,708,2127,1598,1658,1111,1731,1261,1030,2651,2052,2102,2708,627,366,1937,455,1738,303,2843,457,2746,1113,1577,1675,486,1647,2666,1020,353,154,1273,327,1962,691,1127,1275,1989,420,2624,2741,852,2089,1663,1754,1862,2627,1340,1910,1645,2134,2524,2443,2246,29,645,2571,2835,2047,2283,173,2362,1657,767,1785,1224,2282,1985,2918,2439,383,1477,84,2926,327,746,2450,2810,875,2169,811,1908,770,2743,251,2150,1362,891,470,2164,385,166,2619,1625,2131,84,2517,1069,2449,805,2641,1996,572,1246,560,2854,2027,641,2751,2588,1974,1950,2906,1795,301,1465,1490,1803,2559,1385,2022,1308,33,2510,2812,1810,1418,1102,1486,2451,2980,14,1360,2289,2689,2566,1034,1960,433,2962,2359,1945,2652,581,519,2344,279,1406,705,1178,2588,1644,618,1260,667,1232,332,1001,2669,1822,2688,468,2199,327,2277,1667,2938,645,1011,818,67,39,1753,2903,1870,1786,2770,189,2388,88,1240,95,2727,941,425,2837,743,2154,2225,267,2168,2158,429,2955,1140,1399,1598,1243,2943,1196,2673,2221,1645,65,955,1094,1795,637,646,2245,1510,377,2256,2558,1146,437,1553,2989,270,2182,3,2268,439,2231,1039,608,2171,832,1732,2775,2873,2882,2935,2914,2269,1988,916,1416,2623,2649,673,912,1909,2309,416,679,114,1130,2481,2539,312,1673,1793,1931,1664,2802,1453,1823,842,1148,2583,2579,1021,1145,937,20,577,324,262,2585,2220,432,1826,349,2629,1113,1264,2368,1589,112,2393,772,292,2602,1867,680,146,1651,1039,2038,380,2522,2275,2106,2610,1207,1155,1749,2704,2405,1004,2133,2424,1041,45,2533,2114,1757,1719,2931,2867,2015,1941,2509,654,2301,2347,2537,510,2669,1042,1288}

    {1175,1595,1366,1286,347,345,121,852,2008,1882,1828,2686,1488,2669,2347,328,2558,447,111,597,2899,1028,2015,641,2269,194,1578,1216,743,1039,2261,624,248,2973,1852,1211,899,1794,1231,1306,742,1253,263,855,2891,350,1452,1843,2736,2277,810,503,2944,158,695,1603,104,1636,2362,1022,1778,2009,1060,841,630,2386,740,486,1273,1823,1193,1772,1418,596,284,289,852,128,2426,75,521,445,1347,2416,422,1176,1897,1784,1876,1106,1094,961,1680,397,166,2613,1854,119,2505,1951,1277,1050,1222,809,1920,2840,2690,1389,1852,914,2250,1606,1954,318,2662,1588,1313,774,2343,679,1036,33,2072,653,2177,2597,500,2559,2184,875,81,675,2051,676,1058,1561,406,442,2606,1424,954,2686,234,2476,2960,2793,1877,2081,581,1645,2760,2804,1060,2288,2956,2672,2627,6,1817,1163,617,6,72,743,903,749,1041,2680,2683,2311,1601,1097,833,51,766,701,1032,637,2281,1775,1206,1999,2102,1902,117,2038,2853,2696,1966,2815,2863,651,2423,1034,225,1904,103,1661,1976,488,1058,134,856,2899,240,807,47,743,1493,1882,2318,1964,1203,1906,1740,2872,1274,230,2860,1693,1396,2813,1739,1296,1195,319,1768,1517,1895,2869,232,2138,2915,1500,1531,620,1158,129,1477,1465,1676,2358,2498,2594,2165,2859,1962,2726,1012,2670,1512,30,1784,1935,353,174,692,2793,702,2420,2441,2669,1335,653,2557,1848,2257,1415,1847,893,3,2484,1932,2390,2420,856,2854,2953,1254,2428,2279,581,678,1814,1465,403,2936,758,1216,2877,2292,754,446,1718,2927,956,2054,2088,1562,2124,118,431,1713,1663,693,547,2436,718,2555,2868,1421,1002,909,2375,622,1163,1617,2334,2441,1321,2552,2053,399,2982,1101,2287,1154,480,104,2162,1537,346,998,1060,1867,828,2211,1872,1063,57,2529,2514,2714,159,2793,276,1332,1277,692,2455,329,1587,1873,1276,1310,366,141,169,2291,2932,888,824,188,1180,2585,986,358,1488,580,554,717,2688,2213,770,2855,2648,2395,2843,1618,925,2678,1456,361,563,2412,462,994,2546,2134,968,2159,1682,2866,1895,494,2015,21,2011,1490,1305,2763,2277,363,2627,1619,2711,1565,1356,1762,792,2023,390,1906,1504,932,749,772,2670,2787,1867,1312,2487,1504,1931,2150,985,392,395,325,885,572,2464,342,553,611,2119,1378,2913,471,181,428,250,2956,1748,1350,1030,2451,647,999,219,107,1208,996,1297,2237,1482,738,73,684,1011,2188,1899,1963,601,88,368,2108,535,156,19,1621,2669,2063,2439,973,669,1666,1370,1564,306,1228,2623,2117,274,634,1063,2598,1860,952,1276,1809,1728,1885,2793,2209,2033,54,24,453,1576,1287,1314,1037,2847,698,1604,2694,1745,2893,1777,747,6,1114,2992,1901,2307,1049,2539,545,858,2622,213,1357,1639,2782,747,1798,2615,2975,792,1743,2769,2415,1324,1247,2361,1066,2946,1638,2569,645,957,725,2668,1173,2271,690,758,1262,1905,1593,903,1136,1929,2582,886,655,381,2327,1566,849,538,2578,380,990,1119,908,169,2564,1929,1616,1834,739,872,1989,1109,1362,361,1581,2765,256,1115,2782,2467,417,394,1848,1387,1451,2310,1555,2020,1763,85,936,2306,384,1875,463,2051,2548,747,2061,2693,2657,414,1100,2503,1654,1337,541,1374,2732,1232,2479,1531,2968,2095,1892,879,981,2552,544,1306,29,1274,621,2611,490,1903,2785,2065,384,382,288,788,2791,2098,989,1203,184,2111,1577,1961,376,655,2286,1637,2824,1856,724,2125,601,1251,2296,598,2297,1927,1409,2558,33,2908,2222,45,2828,651,52,2559,2256,2497,2121,2142,203,2094,2676,1172,548,647,2707,212,1441,202,297,2965,1151,1771,210,167,2924,2270,2112,2567,2232,2334,1573,2299,512,600,2991,262,8,1508,1502,1109,2159,2331,1927,535,1129,2996,611,1534,1024,2911,1400,1913,834,97,441,296,2752,2497,1988,2544,1773,1098,2150,1548,577,1923,2563,1418,2626,2469,1935,1004,1309,1146,2656,2916,505,1393,1389,2272,1699,2239,1126,147,168,2405,2266,1549,382,1065,2397,1552,1384,1174,1089,733,1057,1192,148,1726,1015,482,2016,2164,1980,2258,174,1779,723,1393,2327,183,1384,1203,636,2508,708,2410,1774,2061,2204,2311,2480,633,2681,1018,402,2777,1963,1511,2827,2059,2162,2490,1973,969,65,2438,1632,298,540,2193,2454,734,51,2854,2926,2205,1054,318,2841,2892,2660,1179,1645,1539,2335,645,2488,2263,2969,2523,768,1594,1973,318,492,2596,1873,2296,1300,2119,980,2269,1109,1236,797,2456,2495,232,1031,2774,2916,1126,302,2716,1151,519,376,802,1063,121,2482,512,821,12,2068,1612,2687,2439,2851,2871,269,1194,2740,938,2313,1405,1834,56,1100,1262,2688,2040,2097,2669,859,1210,2476,1892,869,92,543,751,153,8,2366,1315,1542,2589,1665,2404,1244,1775,1787,1385,309,2337,2266,701,1187,1911,1044,2675,2494,2843,1539,579,1845,318,2369,2441,2113,2635,1462,1730,2559,1483,2231,183,1583,2499,2966,274,2596,1930,2486,1941,2254,1752,2737,1711,707,1662,1254,2385,1788,200,231,2664,889,341,1105,67,108,2880,1947,2509,607,1074,894,2612,1866,1795,507,2943,2755,1309,1106,2992,1415,657,22,2947,2236,2276,1579,980,326,966,2794,2699,374,234,1927,1276,789,1460,544,34,1476,159,1534,1851,1857,2356,1395,2843,2865,1206,2771,1959,906,852,1162,2006,1445,457,2917,1711,1080,2021,838,937,1675,1959,2091,50,1609,2916,566,1556,579,1711,1597,2390,2722,2733,507,982,1889,2879,1616,2372,1638,2229,2439,1219,2239,376,1426,539,2754,2456,347,2911,1798,394,1177,82,1973,1496,1285,1281,1046,1531,622,1728,2177,2390,2772,2943,1973,73,1061,2355,2974,2666,1475,916,1387,1261,2793,1267,2461,1485,631,570,1667,2333,1337,894,948,1496,1346,8,1820,2783,2307,1906,2160,83,105,2936,1432,2301,1223,2088,294,610,2667,2685,339,2526,980,924,1236,132,2655,1486,622,1343,1755,2430,104,2082,249,554,2707,958,2462,355,1713,1646,895,2837,625,878,1713,2514,2206,339,2522,1438,1888,2956,448,2236,1794,2454,2635,2387,1782,1579,102,2231,2126,1203,824,656,2985,1516,2944,2081,2564,1111,234,2069,873,79,2850,1432,161,2558,832,1660,1151,1812,1342,593,2277,2371,401,588,1298,2843,1463,1516,2451,592,1908,2376,2180,639,2201,2747,2620,2258,1916,2277,2200,1452,1726,1408,1969,274,1898,482,2517,418,629,1235,1953,2351,2739,1772,2686,903,229,2604,1111,86,2463,1084,1274,532,2031,37,149,303,1606,1154,1647,1503,291,38,2054,1978,598,1032,1073,978,1352,1276,2025,139,2674,1197,1458,2956,2877,1322,1873,2046,2742,2707,209,208,1973,1972,1338,2964,2777,2738,648,475,413,2688,1201,2162,1266,2562,1445,1031,2179,791,2189,353,643,537,1973,272,830,2396,988,1451,2919,205,1421,1676,2253,2036,2941,220,2408,1432,1022,613,2744,1393,39,851,1440,1615,2659,1436,1940,1776,298,162,2895,831,2700,2503,770,1482,677,2944,124,2916,1273,2788,381,2654,92,1094,2663,1113,275,1458,1864,1472,1122,422,2255,1533,1585,268,637,1815,2349,1292,619,1781,1945,1692,2669,1976,66,2608,1206,2860,559,347,726,317,1183,1952,335,287,2675,2961,1755,2281,2564,1051,1072,134,222,128,1522,1094,1034,1675,982,915,1143,1641,1359,1577,918,46,1630,65,1951,131,2134,2269,397,2695,792,2954,1320,496,1805,1765,743,2367,424,1930,1424,994,2845,2145,1657,1571,2419,1064,1428,1006,2650,447,2453,833,1160,2389,509,919,226,2444,1602,2552,819,1454,1396,2593,1018,255,1868,2022,2334,789,710,2053,1141,1116,1614,1545,777,1488,315,1673,1427,473,741,1259,264,405,938,529,958,757,1200,2414,1997,533,1468,1345,30,1319,2797,1226,2177,2825,1919,934,597,1039,934,1837,2915,1863,2912,995,2071,160,694,2686,2056,2261,2562,1596,1529,700,2613,201,1920,2449,1051,276,502,2160,2517,2009,855,1269,207,673,1980,2489,1965,39,2627,2782,2186,2881,814,1066,798,972,624,1899,16,2643,1597,320,2745,914,682,964,1435,1518,2114,1943,880,491,887,671,2792,1117,257,2058,1994,1318,74,2015,1958,393,319,122,2554,2877,2089,1559,2179,2824,934,2182,1995,658,1442,964,755,1546,2332,2619,1756,1312,152,2432,947,734,1950,903,2897,2092,517,1414,1768,869,2429,1310,2939,2835,2155,2766,2644,1328,1728,1715,1620,145,1903,501,1159,1135,2129,1375,1131,197,1003,2303,2607,2631,1824,944,1035,2561,596,560,1417,2101,2673,1606,2582,250,1671,519,1780,2405,779,665,2688,1469,1803,1359,1508,1927,1507,706,2407,1200,921,1017,2677,1359,111,2640,816,1451,2320,1367,2303,2170,1804,469,1770,1515,2349,1911,1187,750,2987,2507,2204,1004,2759,2637,1491,1883,764,1038,2914,193,21,2100,1327,2217,1372,146,831,1465,2040,1085,861,104,126,1019,1273,636,2149,1136,1344,279,2898,2344,878,2373,153,162,878,63,923,44,2551,2971,2045,864,1565,1547,1212,1154,492,2446,1486,2874,1173,1799,1770,1248,168,1558,2391,407,574,2437,2233,1276,1317,274,1665,373,2595,1658,1526,1279,2985,875,1068,790,1154,236,2338,2160,223,2363,258,370,760,2904,1463,1124,1783,930,1566,24,1684,555,1380,703,2975,703,2835,2321,2918,1570,1882,952,2740,382,1656,1314,2045,1611,755,2081,14,1970,2192,2917,2026,2050,2328,2999,1523,2623,379,1341,243,1387,1614,1266,1636,1894,2753,1795,1336,67,850,941,1034,840,1358,1693,29,2532,552,1715,285,1273,56,459,890,723,1770,2886,1403,1283,1029,63,2748,1509,224,913,1665,817,2343,1397,1838,1233,506,224,560,1038,2838,2219,1949,1678,599,2875,67,2449,2534,2406,1900,1040,608,2240,436,2200,1464,1231,2831,42,502,915,258,2642,248,188,2818,375,883,1580,2816,2250,2437,189,1770,1839,1379,119,1708,1988,997,2186,1736,1658,1992,1925,2482,178,1281,2012,1620,1698,2117,2446,1484,1470,439,2630,1659,10,244,2191,2835,2880,1695,625,831,2349,910,922,304,696,960,1716,1972,2113,2216,2734,1613,714,1661,434,915,1405,2357,1294,171,2389,2853,2904,370,1748,1286,2259,2545,1837,1683,770,1658,975,78,662,61,1289,338,846,2451,901,1059,2444,1490,595,1485,2539,98,396,544,1281,2203,512,1203,2212,1336,1792,1949,447,2497,1107,92,2211,239,1481,2337,2293,1463,2182,66,951,2890,1810,348,436,171,119,2760,975,2584,1024,2918,922,672,976,1393,1428,1699,2889,2688,2342,1018,2888,175,2466,1603,739,1513,2334,841,0,264,2048,179,1260,1327,2825,2720,2469,2537,2300,1079,904,1640,2324,387,2691,1486,2215,518,2661,2121,1230,241,2991,2235,2531,520,1129,383,1589,1021,1785,1458,382,1376,2993,612,1394,2204,1140,2980,301,1061,69,902,465,2200,785,1863,2643,1444,1952,579,1918,1551,583,1039,1953,1676,2985,1170,536,1345,2466,823,1029,905,2219,771,793,2417,737,848,2057,1402,2574,70,1505,1934,410,775,1919,2612,190,2061,2215,513,962,1220,2565,65,2478,562,1430,1214,722,2383,2599,2536,2859,509,2334,903,2107,62,687,768,825,511,2663,20,2842,557,2421,1298,2150,1756,1204,1563,2970,2361,1385,2478,1612,2567,1428,1281,520,1126,2592,835,1291,1023,2059,2745,2082,2597,1831,2532,1970,1821,942,1675,2777,2232,448,625,2769,1587,632,1294,2454,2798,984,1589,692,111,2568,983,52,2092,1935,1766,549,389,510,2695,477,611,1624,2344,239,2958,895,1959,191,1443,2937,1925,2871,935,2256,1572,1612,383,906,783,251,544,1693,1806,2652,1687,1159,1638,123,1110,92,1965,1830,369,2976,2291,1504,2504,2229,2580,35,1878,25,1793,811,173,2390,2071,423,2905,49,1988,2751,1181,1958,2759,801,151,1930,634,18,476,360,2338,1501,1032,1371,2502,2285,999,38,2294,2994,485,2552,2199,2291,470,1540,1332,2553,2288,1016,994,2465,624,693,2335,2600,2446,171,1532,1268,2901,487,1919,1578,2713,595,800,2233,1811,2500,1469,1909,1600,907,2801,490,1390,1717,854,2696,530,2825,2187,2202,2218,1478,2808,863,1401,204,235,1026,1418,688,2790,1646,2090,2162,2349,1960,2807,490,27,2046,544,2951,1716,1337,1582,917,2303,2075,706,2762,1597,867,2334,1398,3,1875,80,2824,144,1113,428,376,1672,1245,2379,2043,473,507,371,1890,1541,1348,2431,2443,1676,2124,1089,1769,1465,1397,254,757,868,1196,1797,2096,889,2577,1829,920,885,189,1721,361,2998,67,2121,1656,2028,2854,2601,1134,169,432,1062,1583,1938,2942,2107,2143,127,2247,1479,707,427,1490,688,425,2541,1610,2031,770,1622,979,2887,2757,347,2811,1455,1795,1319,539,2094,1835,579,1462,1987,2940,2276,1362,1651,446,2360,2819,2771,1953,206,121,1510,2789,2403,2031,2765,2616,1151,158,2663,2044,293,2229,2834,1603,1058,942,338,611,426,1088,1215,732,2758,1134,107,2086,1153,171,2277,2301,759,2017,2682,1556,1451,2405,1582,2329,564,1933,1019,1132,2586,1497,1706,1420,2340,166,2806,584,2245,1027,371,2902,662,2681,1501,1721,1235,557,443,2038,1467,2798,1200,2881,1087,56,2792,2791,2266,2195,1458,2540,2453,1770,459,2656,2364,770,2758,668,227,589,301,143,1624,2862,434,1459,2406,681,1708,2517,671,1943,2627,2234,2633,1292,60,1414,995,1580,1168,786,335,65,1458,495,2589,752,137,1605,2968,1844,581,473,2862,1410,2476,996,2542,2393,339,542,2057,1039,832,2985,980,125,2148,1252,2003,857,168,2863,2858,2488,2365,2510,2463,717,2230,1535,2470,111,168,1723,777,133,2092,781,345,1950,1187,674,167,1149,1495,1690,1388,2050,305,1746,1498,549,879,2038,1705,1130,1922,1953,2165,186,2826,2203,700,607,2633,1070,551,1676,2576,2909,1840,2657,1,845,884,2398,1671,239,2274,1982,2118,2097,1094,2701,2482,2418,1400,1834,567,703,2437,2614,168,2460,1096,2007,1672,2308,1516,1655,2818,2024,1318,183,540,1924,246,1468,2889,941,2658,2029,302,109,2777,1686,1863,224,1724,1919,1031,2369,7,1149,1918,2795,1628,1652,1675,482,1948,2170,2317,1905,720,349,715,111,570,2771,1909,513,2725,1652,2889,2315,2986,2013,1397,2017,1972,2764,2824,1741,2378,887,1024,2166,2060,111,2884,526,299,2294,378,2275,2535,1708,2896,1048,2574,979,1249,164,1571,2634,1105,996,449,185,2956,1925,2171,1742,1288,1764,1916,106,1532,552,2810,377,2613,1633,1615,1865,2274,490,916,330,1877,597,269,58,2914,2469,1958,2688,1161,2035,365,2789,2521,1980,2198,2162,2173,2945,2555,2447,2313,2517,2981,1746,71,1702,1869,2669,1050,2624,2387,186,645,2517,1114,382,1575,1047,1458,1895,2164,822,2322,1626,182,1114,2703,1805,1339,501,1501,2276,1970,674,452,1013,1457,254,2741,2944,377,2654,1244,664,605,1069,2669,1265,2485,2358,1684,1294,874,1970,1697,833,1209,2345,1914,2953,305,2901,1915,1788,2667,998,2084,2522,247,2532,425,2614,826,1276,1813,958,648,2411,1359,2728,1993,1874,2270,1239,2329,2286,1241,76,2172,773,2835,2472,1758,2363,2649,1666,1118,2618,1376,1014,2305,2585,2463,806,1887,544,2141,2277,43,2243,2222,1418,2398,2910,2786,2208,1095,2386,512,2625,38,852,1028,2043,713,689,96,276,1919,2390,641,844,635,523,1602,1057,927,524,2973,2512,637,1906,670,581,2298,1381,1715,2323,1441,535,2429,2494,1127,2352,272,866,295,92,1955,2370,601,1486,2120,1785,2165,2653,2429,281,2970,1353,2183,174,1634,1199,2815,527,353,2671,1426,938,4,1538,2055,493,104,2178,1039,400,929,2915,881,568,349,2709,1428,2060,1783,2390,1982,1536,335,923,236,2320,1747,1149,692,558,551,2402,2115,1058,111,2792,1187,784,1893,2745,2265,1029,2124,12,93,2914,551,1798,2354,2174,551,1627,568,2943,1836,2516,1258,2482,376,1255,1899,2765,107,1123,831,2293,2223,1242,2859,822,359,1147,2366,1857,2920,2140,780,2363,2908,532,1876,1000,2523,2623,2911,735,395,2928,151,2266,2214,1031,2580,2698,2686,1691,1973,1655,2657,706,811,2790,852,2406,911,2851,1234}

    2170

    1981

    Returns: 787640087

  86. {263,1375,494,2531,363,720,1585,792,2318,2633,707,2337,1434,2948,1117,77,973,1850,2812,1536,29,123,644,1577,596,1824,131,602,1793,322,227,506,1728,1172,1447,1309,2355,2889,252,2582,1431,1196,531,825,593,643,813,1762,146,1415,344,786,317,2661,1213,854,478,2147,2149,906,2590,2088,1120,1107,2224,2393,854,350,1499,1993,2658,1306,1701,596,1437,2915,2198,1748,2740,786,2863,455,2442,2215,2822,2672,1119,481,2000,1376,989,1348,888,1480,2231,2288,2938,1748,1235,1126,24,773,60,5,615,843,2433,565,1366,1368,2492,2944,1644,512,1928,1254,1853,1827,1006,1048,828,1708,1249,982,2859,1417,1411,439,38,1516,829,2766,161,2198,1084,2254,997,2381,2698,918,734,821,2472,765,1156,346,2281,621,2685,370,1973,2917,1016,2019,1887,1543,2500,26,1928,1464,2939,1071,1409,200,1141,1121,1902,2816,828,340,2630,162,244,682,2409,2349,1663,1562,2115,1498,45,2056,215,1160,664,398,1401,1481,340,2841,837,79,2220,228,2886,1704,1812,1950,2604,273,2874,2008,2893,2781,2493,2739,1537,661,1561,2927,486,2806,2988,1242,2393,1107,608,2329,1396,478,123,1007,821,1388,2201,1963,2698,523,864,150,2274,899,2068,2449,2006,2428,2383,2521,1452,78,1708,1981,2524,2022,1542,580,429,2424,2743,117,1010,2466,2453,2089,2279,2660,967,1320,1453,908,514,2370,916,438,645,2139,2976,1603,1936,2607,1353,1052,156,2761,748,188,2423,2916,1286,1637,2229,470,220,328,790,1967,1125,886,1530,577,2385,813,1836,2474,479,11,221,2905,1298,2130,1300,2762,2354,2084,1564,358,2196,1507,313,19,716,2817,936,2767,1282,1024,542,1796,2493,420,1811,2711,2164,548,1626,2369,387,1436,2323,1056,666,28,2362,1869,2727,43,686,486,2372,2195,839,736,1492,652,153,1722,815,2354,179,2985,909,1310,2747,485,572,1393,677,1478,1232,136,1243,1110,1626,1047,1401,2490,486,681,2904,508,2636,1534,827,2317,1604,1549,2676,2787,159,317,88,2319,1985,2602,1136,1061,1058,1992,2019,1446,121,1569,2389,1743,2321,1963,1774,2665,2457,847,1314,2015,509,2282,1014,1960,2473,1132,1426,2928,1937,2242,2270,2268,49,1536,1564,2122,398,2478,873,1240,134,825,2574,801,410,2635,2691,1830,1106,611,2983,455,1326,2760,2592,1599,285,908,143,2944,1326,776,2753,2914,628,605,1332,2307,1277,2330,2665,2117,300,2222,2447,2323,241,2044,2078,2173,1695,2340,130,724,1980,1055,1040,826,2518,766,2313,2669,1998,483,2794,1280,1043,2211,2249,2644,891,2709,1298,2594,1910,2265,878,430,755,2326,1975,2205,2666,2939,561,1114,54,1447,304,1756,2711,689,935,202,2082,217,1344,153,1673,2656,931,693,544,1473,1820,2836,2414,330,2815,1575,2648,2831,2535,999,2427,2000,999,1245,1987,1160,2882,1393,2418,1929,808,2737,1877,2583,1723,1400,2019,2370,2368,2649,398,351,1779,1286,305,1192,131,1526,1004,1822,92,2189,434,1970,1149,2925,2980,106,718,2738,808,2533,2283,2541,2330,1136,1615,1588,824,1718,840,1790,419,2090,1071,846,2596,1710,2244,2380,2334,493,1996,612,799,659,2369,1089,1303,1666,281,1491,2291,1218,1325,883,375,473,621,2746,1996,244,1190,565,167,182,127,2882,148,2355,2746,2754,519,2223,1580,832,565,2456,2669,2379,925,555,533,1498,927,2156,2238,2632,2689,413,482,1699,2957,39,1389,2227,2984,2818,2648,2501,2966,1022,38,2299,2729,1493,508,263,2620,1518,854,253,2744,166,775,2769,2640,2441,2918,391,2654,2532,781,2558,2361,296,1519,1026,1987,445,2633,744,1627,2494,2121,2562,821,1701,2819,1460,1650,1671,1220,45,2958,1115,810,1155,1542,2164,2642,1950,2167,972,921,2054,2805,591,1803,1807,694,2627,1216,1665,144,1198,1156,1664,1087,2141,2214,2698,1864,2652,1335,1180,993,2833,1310,2881,2096,812,2403,2900,1431,763,2863,565,1908,2421,2612,2342,1911,1946,2905,2711,1004,2576,2550,1925,391,2256,2092,1907,33,2540,1927,579,2781,2076,1327,1754,1498,440,2488,1986,2879,882,1435,1168,493,1743,1198,2232,2919,276,13,2934,1781,155,344,2393,1105,2491,981,2681,2851,1439,1370,538,1457,1623,2706,1966,580,1881,1719,627,949,750,2809,2998,2931,1780,2725,1472,1205,3,1806,2294,1435,1309,1162,2003,786,375,2046,2699,2526,2459,1853,565,2808,2729,2218,606,1362,908,458,2916,687,258,1580,1638,1794,461,854,2934,2903,412,2670,941,499,1488,1538,2644,1171,276,2990,938,2120,1070,221,930,2505,2054,1048,1048,2793,2698,1511,1696,2081,1882,2869,460,230,1710,2036,2834,960,2932,1330,38,1883,2557,81,1192,2954,308,1378,726,1702,443,147,636,2455,854,518,952,19,339,2235,2392,745,1537,2953,1319,204,1543,2395,2489,2232,2401,613,1122,144,1519,1317,148,807,2567,1123,2701,2837,2980,1659,1801,1572,1840,2408,2856,637,2067,1427,2602,2887,820,1203,1573,10,685,1625,1237,490,297,2093,647,2424,67,2921,2251,1792,187,2811,2502,1746,2712,2881,2594,1722,36,115,1536,842,2454,309,1441,1365,2822,2177,340,2163,1470,2369,1759,1034,2742,2603,2024,1093,1699,385,2813,1734,2139,2167,2262,606,1256,2946,2501,1619,1784,2679,2106,868,926,520,1911,1285,263,1208,944,646,1404,610,314,2230,318,2416,571,1930,2542,1438,241,2607,2396,470,1391,2601,2452,1970,2457,1672,694,1819,2088,2429,2809,1773,1834,549,1049,1481,1917,534,1793,578,1806,517,1247,874,1510,745,1132,1380,198,660,508,1913,2821,2169,2325,2058,344,1247,2542,7,607,2771,1091,2596,646,1969,172,2377,2161,2454,312,1723,653,2265,476,268,2081,619,2265,2842,2883,405,347,2081,1405,1017,1743,891,2884,1649,367,2389,1414,2917,1718,1997,581,2823,1709,716,2986,2114,1166,462,1704,1297,1132,876,2886,2851,1431,648,2950,2258,662,258,1135,2302,788,368,1175,631,313,1460,1893,797,2796,2054,1507,2771,135,789,112,1684,1547,1238,606,1116,2547,602,2905,818,905,19,1939,2601,898,2755,2494,1119,1468,1995,2289,604,2939,228,979,1378,824,2242,2190,2972,131,1336,2131,2198,695,2975,1210,511,403,1622,751,1334,1747,1780,1465,2348,149,2985,2301,1378,1719,2023,174,1124,1924,2164,96,1519,2633,251,1974,1059,1627,616,2127,2441,2650,2396,14,338,1749,1860,376,1993,2941,2233,2601,1651,2686,1221,968,1374,1694,1031,1005,1921,1092,2484,963,2321,1662,1554,2190,2186,294,2693,2762,1715,2823,2821,622,922,208,1430,525,1509,1363,2051,202,2915,2273,1708,2843,1695,1975,726,983,49,988,825,1121,2242,1903,1469,569,64,2713,1842,2208,1672,1414,2835,405,164,412,2647,2755,1532,849,586,2194,1559,2612,718,551,2185,1563,589,1116,2673,220,811,1233,2924,2797,2749,2247,1697,1452,2614,1058,1305,2164,2887,1711,2773,25,1596,984,2940,1832,2260,268,1717,1070,62,1855,2558,2572,163,2297,910,1012,947,1575,214,222,664,2173,1502,1046,2767,748,9,2616,2620,2996,1077,2190,213,2463,2103,1957,2287,2985,823,649,974,2657,1145,2563,2829,2676,103,1582,2750,2682,2675,1137,462,1116,1793,2592,1771,1160,1843,1835,2607,663,1918,2052,2220,2621,502,593,870,401,1412,1332,453,241,2440,1903,1256,860,52,1404,743,1404,1006,75,1019,1590,970,2212,2630,306,2030,1624,2511,1510,748,1469,2604,2871,2306,897,964,2619,567,362,1705,2283,688,2923,2902,2321,24,291,666,1605,1724,1317,2883,225,2973,1450,970,2449,2465,1387,260,585,2452,827,1340,824,2162,563,1933,625,2346,2826,2397,1016,259,1792,19,1682,2527,1392,576,2425,2081,2926,1700,2026,2613,1957,2343,357,1545,1385,407,1488,772,2927,791,1600,882,732,848,1113,319,2227,1366,769,1711,2016,184,1318,1704,718,785,1739,2220,2473,519,2698,2709,1349,1150,666,691,1189,2626,153,1530,2370,2632,1362,709,2819,494,2943,786,1553,2207,1000,334,1145,290,748,23,1302,812,1459,994,1583,674,1253,2239,2456,2346,2295,2667,887,754,879,666,781,112,1596,2552,2030,2797,2878,2016,431,17,1784,2612,214,1439,2915,1051,2613,824,1178,982,2699,363,2421,2293,2401,209,1944,418,748,1034,1407,1046,156,2312,2987,2786,1426,758,352,2521,1413,2307,761,2724,124,1219,1283,1127,2597,640,1060,1672,2375,1593,1702,132,1865,1853,2482,2757,1642,2365,951,2387,1345,1191,1115,1656,1168,1740,1909,605,1410,728,1399,1353,1426,1910,1862,2840,2244,2560,159,153,2626,1822,2465,2898,2057,198,1204,2539,2530,1503,1747,2459,1124,602,2844,2308,467,2436,646,1297,1203,179,406,66,333,950,1666,631,251,1922,2873,2470,1096,703,1753,241,1291,208,2939,2160,1707,2745,951,808,2340,970,2751,1085,2674,65,954,2356,2128,2876,1047,211,2699,824,2090,2019,2944,2896,2563,2079,738,150,208,678,2588,2940,78,996,645,731,448,2492,2391,881,2242,1738,166,971,2015,1585,2699,967,1686,2000,1490,676,2753,31,316,1008,1606,861,867,2450,937,934,2220,1096,1714,95,1962,1348,2371,2376,1576,547,2794,364,835,677,2422,809,1887,1493,305,650,452,842,841,666,392,1451,536,1840,1086,1569,1405,413,2329,1831,857,1078,1300,982,524,2381,2398,1122,1366,1327,349,2184,2321,1461,2449,120,1655,2929,1967,111,2982,2198,2667,1314,861,181,2531,1860,619,2448,2077,2468,771,1111,1635,490,852,2771,111,2544,2891,652,2074,1375,515,1394,2605,8,1499,1365,1784,2656,1294,983,1821,2221,41,1638,836,2783,2576,120,41,663,75,2113,1441,1053,91,2602,665,465,1517,1861,913,37,2652,2553,197,1844,1388,444,2162,1915,2055,2867,2684,36,541,1559,992,2601,1640,2323,1985,2840,88,2528,89,861,1298,1736,2040,1035,231,1898,2695,2112,2193,1950,1159,1698,2647,2894,992,2493,695,75,1088,1875,2507,2213,2401,283,800,2378,1946,1493,330,641,1392,2187,1242,241,751,1903,1596,101,817,2089,2099,1155,1295,1953,1806,2818,336,220,771,1678,2202,2495,9,465,241,2766,1686,2502,1184,2521,1573,100,539,1809,298,58,38,1778,289,1840,191,1268,2623,2588,2340,35,1462,192,1951,2676,2553,2854,235,748,1183,1497,2387,1176,1124,2227,2016,819,1530,2219,1367,1303,317,2939,1784,281,2306,2203,2100,894,1915,2086,433,1285,452,153,1178,2430,490,672,973,2008,1539,2576,561,2529,2439,2817,1805,1983,2351,2499,1006,59,2815,1006,1710,1729,992,1586,1519,2338,1221,1684,346,1265,1276,526,1013,104,2441,2558,371,1294,2653,1885,2474,2761,262,2537,331,1822,2888,1750,2942,850,1398,1408,38,1953,649,1808,2353,1991,2526,1436,1056,2442,1616,292,1205,799,1789,891,2655,263,2734,908,1994,1996,2109,1865,578,206,2799,2071,1073,215,2468,987,499,2855,70,1155,1355,2915,2728,472,2730,1956,1436,1519,1926,2772,1585,90,2210,2542,1927,2315,2520,670,1381,1144,410,2444,1131,291,1943,1862,2953,721,1285,1932,2814,1170,1698,2240,1955,1076,2243,252,1398,1367,2501,873,1521,1048,928,2370,2042,2314,1950,1415,2640,500,45,1106,337,1920,1361,1441,241,2825,1819,260,1185,2572,861,2314,607,2003,822,112,1164,1445,1901,1954,658,1978,1194,2152,863,2073,2395,1668,1575,1967,2418,1382,917,2584,2010,1403,1709,1112,412,2596,1924,2283,713,2485,2089,1198,314,2135,2661,1159,2951,153,2984,1673,854,1814,708,2047,543,1824,323,915,435,1607,2068,2131,1295,1833,2223,519,2174,2340,2107,383,2567,738,745,1647,30,99,2472,413,1764,2937,268,1574,1631,447,1469,389,489,809,1082,2373,966,1886,1530,306,353,2628,129,2753,1470,78,502,1835,539,1686,2421,2369,1804,1224,2195,2046,111,1436,1263,608,356,433,2231,2448,2814,733,1122,648,2396,39,663,756,1799,1013,2246,1002,91,2353,2725,2228,1031,117,463,1548,2561,1428,859,1664,2307,2677,2298,2975,2143,1532,729,12,2729,428,2592,2870,279,379,2748,2050,905,99,1916,1464,1326,2630,2557,2776,312,254,116,503,354,1818,355,437,1432,907,2629,2530,1948,114,1145,449,2271,1511,630,2299,332,198,1263,1824,349,882,1162,2223,1285,134,1911,1971,608,265,1046,1426,1353,470,598,1271,1571,24,770,1307,974,2299,38,2663,1293,1285,1692,537,66,2475,1662,1871,1970,2954,644,565,2697,1195,289,1266,1374,434,2513,825,1071,2352,1639,1134,1361,646,1861,2041,130,351,727,2972,250,2339,781,719,2027,621,1891,300,1304,2782,2384,557,2805,1254,1327,744,133,2568,1019,1274,1039,824,313,664,1046,2123,1468,1629,1866,2284,1530,2011,1415,1371,1892,2140,2997,2170,1983,494,1422,854,1924,413,2955,286,2011,2063,2230,2274,2622,1936,2000,1386,376,600,2057,380,1849,725,1450,183,8,2692,1798,445,1066,1798,1368,1766,1132,1359,1229,607,1894,578,1379,568,607,1970,1135,929,2442,2279,2715,1761,2521,2617,2247,843,1422,232,1729,1667,2108,2498,2537,2651,2632,1294,1239,2950,565,2002,1889,913,1270,1583,181,2502,1072,692,1263,1708,108,139,722,2139,2735,2223,952,726,2842,671,1154,985,2728,37,2754,2858,825,952,1674,171,260,21,2849,2974,2510,2150,968,309,935,89,1944,2227,2964,2059,760,978,2881,315,156,2699,1913,182,2526,1806,2958,111,2682,1915,1757,1071,2402,882,5,2845,2970,2860,1345,2614,373,765,1802,2908,340,951,448,1047,81,2266,2243,2503,202,1473,609,1939,1480,2995,1402,350,2400,412,2285,1447,2029,1775,2615,961,2807,2580,1133,1968,238,2347,2023,1170,2711,183,1135,1100,1018,2715,1659,1443,483,749,451,216,2030,1405,582,478,1157,1160,2533,1046,1769,2061,488,1454,752,2199,1206,2269,2698,2085,1463,245,587,2777,2934,1549,65,1341,2577,1611,2320,465,2459,2910,2946,224,2543,1657,2162,2588,1950,1927,1198,534,328,1292,2162,1181,2587,1555,2075,2308,818,680,1865,372,2602,572,68,1105,92,2650,2282,622,1105,452,654,442,1177,2318,2482,694,2189,129,1806,2257,1596,1622,1680,906,2975,840,1298,640,2189,993,1614,1717,2860,644,1993,1931,1758,1328,1310,2019,1081,981,1050,2205,1685,2779,2922,1689,1789,2879,128,124,833,310,363,2469,1738,2008,426,457,1879,198,124,216,1099,646,1200,1545,218,221,2136,390,1272,1352,2937,37,1314,1421,2468,796,2446,844,2967,1602,2420,1223,1339,661,1730,2953,2252,2235,2535,2174,233,1047,2520,2282,1456,316,2278,2009,2552,2517,2581,178,2857,2746,1852,732,1808,1625,2989,579,565,1443,2884,813,2266,1320,1870,1095,1822,2118,1399,105,349,1851,2676,2866,2414,2329,127,1041,1012,2427,2537,1392,1619,2330,861,186,1471,2256,2368,323,2753,2662,1904,465,355,2053,2360,2702,1548,351,2553,2742,2410,805,1052,976,2421,951,1152,2275,2771,1497,2163,2265,562,1189,1362,2792,1619,618,566,2163,342,807,2295,299,1914,1946,1406,1812,2721,1884,1636,2267,2256,2459,313,883,675,1163,76,2737,2276,1056,2192,2330,1414,68,903,519,1880,1421,241,2238,1284,2442,1024,195,507,1453,1202,2824,2236,444,927,1278,1277,2204,207,2007,242,1376,2457,1514,1484,1669,2795,1776,1536,827,1043,1813,35,433,1297,1121,2360,1449,2439,1227,2965,1507,2385,1093,2113,1792,851,1787,673,2060,1816,286,624,2112,2493,35,2209,1077,335,1280,1337,1553,151,2848,828,1256,493,2969,780,1961,1423,272,2304,153,176,247,44,2914,673,2468,1297,1028,148,1221,2181,231,499,2140,2173,558,1947,1965,1346,366,1548,1633,1093,1187,2494,2727,1903,1668,2122,1533,1110,211,1258,1743,1118,1967,882,239,1358,110,2539,1555,2905,1179,821,1826,2318,633,824,1709,2309,1598,938,1202,448,2827,2233,593,142,2676,332,1564,554,801,2159,1988,2330,2064,1952,908,1808,942,603,89,690,2683,2951,695,1622,2706,525,1627,2598,892,145,2295,789,2675,1567,1146,2365,595,2801,1536,2129,1390,2624,2279,2909,1641,2789,591,909,2396,2664,2536,2143,1495,2810,1901,1048,576,1695,607,708,595,596,1735}

    {1203,1323,2853,120,1937,1312,2448,1805,1536,2200,1120,274,1748,2195,775,1536,338,2394,855,2842,1417,1551,588,155,89,2142,2720,1160,2607,2451,1535,2970,1167,1963,1650,70,1416,288,1,266,1527,545,1930,1498,2188,2434,42,583,2888,667,2147,1633,158,2705,1145,1851,1165,1192,2585,1712,2396,2095,827,69,1797,2431,1357,2496,226,2075,875,1042,1250,730,1448,122,1454,1318,2509,1578,1153,2404,2329,2612,305,1035,648,1127,726,726,2867,1269,1132,2393,293,2307,2539,456,2702,2321,349,2653,349,2955,913,249,895,230,2656,1183,2226,1680,1345,2930,1342,197,2582,2938,8,51,2424,788,1592,397,1240,738,1334,409,412,40,341,2292,1021,2631,2348,120,2465,1930,2879,40,2178,2908,1559,2766,487,1813,124,2839,954,1905,2092,374,2386,861,2367,1678,129,403,1486,537,2935,828,173,1182,1186,1192,2491,821,2090,1632,739,1213,1874,754,2513,1091,9,995,565,2607,1713,1619,1864,1274,183,2385,66,1422,2694,966,2154,2852,1914,1777,2069,780,1307,690,2352,2730,2764,1505,601,1934,629,928,1953,1826,847,1809,1872,11,346,2050,666,2461,969,2548,1246,2639,2906,1242,113,2934,270,825,656,155,531,1331,2167,644,1728,177,2115,688,932,1260,1524,2517,893,332,1862,2485,2995,1786,2820,469,2448,1941,688,2932,2038,1231,1074,2861,636,306,2572,1774,2134,1425,1500,2569,2364,2810,1062,1242,196,130,812,696,1541,2407,484,1721,1821,2127,394,894,449,412,548,1143,931,1343,1030,232,2280,2587,1336,1878,474,1654,2033,1891,1326,828,1450,2286,1220,1914,2768,2424,2457,508,2005,128,453,1057,2339,470,55,684,2178,1215,2214,1502,1584,1110,746,1105,1848,597,1817,711,1160,195,1785,1984,2218,2534,2919,1103,2501,1700,2457,2875,942,617,2480,16,1658,778,2130,1257,75,2846,536,2564,1825,93,1458,2119,2788,1015,2271,550,900,1566,2517,377,2797,2656,1548,466,643,2432,169,825,1809,2563,1200,2923,1326,1322,882,1131,439,880,2253,1838,2467,1869,2619,2091,2446,1125,221,1104,796,2641,1887,1212,334,1280,657,321,934,2309,2032,1932,300,567,510,827,1298,1573,2155,1146,1621,883,247,1364,99,1183,1890,1840,1350,319,738,2941,1503,2550,219,774,14,1132,182,282,2865,1227,1069,2894,1032,1313,1461,1122,2326,1240,761,1227,1104,177,1660,713,2332,628,107,1485,2190,271,2766,668,1192,494,1972,1798,2715,1434,2633,1214,440,2748,879,1322,2594,945,242,528,2151,2563,1121,348,234,915,56,150,777,1938,1486,274,2241,718,2307,2346,1071,1131,518,641,2424,1576,1878,5,2678,2674,1498,2933,2114,1608,150,544,2509,2363,1395,386,1814,2913,1818,2653,2130,2205,1624,1687,1706,2175,858,2915,448,1987,1489,1494,2606,673,1534,2791,2046,2102,1500,2793,2781,2133,441,2679,1419,171,2220,1209,2729,2730,343,68,110,1995,80,2263,249,1347,1135,2200,1069,1130,179,1593,825,1610,2554,2048,843,2007,2434,1348,4,1469,503,1261,1308,2714,1157,1134,1485,2736,637,301,2646,2542,2523,2851,1723,2110,2515,1731,2250,2158,2962,1384,2598,2992,2513,1590,2155,1092,1926,31,2374,946,1532,1721,81,1774,2269,2947,2430,144,2403,1924,2722,2036,1853,2223,1313,1876,2546,325,741,2020,1970,341,2160,1431,2850,2402,38,1868,1168,2825,574,2093,2670,349,2269,699,1502,609,2513,411,1181,2950,349,2832,539,2575,2322,2517,2331,1129,527,1560,1243,1046,2809,436,1364,838,793,1836,846,2211,2314,1557,694,2037,2643,495,2380,117,1317,1110,2764,1851,1570,572,1998,6,2999,1501,27,1903,1475,1691,800,1619,1617,765,142,2441,2399,148,2239,499,999,32,1845,2800,1719,2761,241,508,2908,499,1912,626,2324,1823,1861,1634,140,844,268,126,2888,1806,404,202,2160,2991,2993,1945,946,2729,2026,1847,1499,1579,1946,638,491,2829,1207,2807,1940,432,1719,2489,1108,1590,142,1213,2809,2513,796,872,2658,1899,1879,1391,2502,344,990,1439,149,418,264,689,1397,1810,2976,2414,1379,1976,447,1063,2491,865,2083,578,1169,2116,1556,429,922,1387,1599,1974,2764,1949,1054,230,1498,2620,696,2480,559,194,1791,556,2512,1082,2353,823,2245,1917,313,2553,1360,1133,2394,1160,2683,2987,61,2216,2065,1274,565,1659,925,1174,240,2098,2637,2610,236,1105,136,1520,2915,197,150,1938,1609,1454,260,740,216,1917,1237,848,1699,2269,2324,1644,1846,706,776,2143,2912,1986,951,1009,831,1560,2817,2519,2732,2615,1094,2146,212,1220,449,70,1888,256,84,885,853,915,1755,537,1375,2662,825,988,1643,1907,1637,2778,961,1181,922,2680,97,637,2708,2991,508,825,577,2439,340,1719,1033,1411,2043,360,1854,260,1751,2407,701,2607,924,719,773,614,828,2076,949,631,2475,2594,480,2398,501,814,2534,2489,1104,1681,847,1179,1083,2214,1121,34,480,1202,2828,1064,2742,2705,37,2536,1675,2964,860,1234,2838,851,1847,654,857,327,1108,1160,305,2143,246,1664,2375,2417,2453,2459,1601,94,199,2293,767,2823,477,309,261,2034,1246,2078,1193,2587,1858,767,1970,1200,2785,1708,2711,1344,544,2792,1034,119,2437,2666,1196,1401,22,624,2267,2591,565,1536,2298,1129,2279,508,1265,207,1743,2611,2219,1962,177,2025,2038,217,2960,2776,2244,1134,1585,156,2546,2138,2334,167,1455,2303,2923,2956,1508,2786,2978,2321,1324,540,2129,1708,1486,210,1243,1370,718,1186,1538,663,2418,2604,1413,2887,2758,2952,2594,81,924,2807,2759,218,1645,406,2009,2635,2746,260,1687,898,2478,340,828,1126,990,426,1441,2753,2712,1034,532,295,2438,643,1107,988,1823,154,1227,2498,2714,623,1264,2998,2549,237,2572,1562,238,1472,1804,475,2717,2173,2097,2396,1379,248,977,165,1853,1791,2858,98,1680,830,2497,2440,2899,1315,1357,126,902,1750,673,2984,2625,2578,18,573,2501,2614,303,1345,493,2402,1575,234,852,2830,2979,725,2682,2182,388,1066,1101,605,1745,361,2039,361,2885,280,1800,2235,1346,613,768,126,188,912,1097,272,2360,1101,35,2955,1229,1595,1045,2698,721,2018,349,277,2285,2300,2776,1012,449,551,1098,230,884,991,2690,1033,738,1888,2609,2347,417,1863,854,1317,934,516,1396,654,1758,2014,2722,1075,1308,2329,1037,1880,357,454,2097,110,381,16,954,2738,948,2072,1832,2506,2149,2338,2707,1806,2898,904,911,2944,886,1454,2402,701,2353,1895,1741,2361,327,1648,1723,1285,1930,1733,400,109,844,575,2430,1243,883,2688,2326,2504,50,2243,1311,958,1225,438,2151,1688,1020,2930,359,1716,1513,1620,552,2614,1136,1481,1567,1161,2742,1318,2962,537,8,2990,1200,48,554,870,2898,402,257,334,1302,1982,1302,2473,2590,21,2168,1228,943,1474,2395,842,414,2808,584,1224,1664,664,894,2104,1587,1668,2442,116,2144,1071,1767,116,1175,1730,1951,577,2206,1775,1226,2390,2093,828,257,2314,1220,1096,137,2848,198,47,521,2775,1198,408,2742,2267,2302,2655,181,2798,269,2526,2958,1907,1794,2741,411,52,736,159,2890,1173,923,2145,2933,1709,822,44,2852,1750,302,1625,2206,1551,313,2542,1798,1487,2154,1496,708,2096,50,353,1558,492,2015,2608,2202,974,2080,2984,170,422,1820,2862,2557,2513,413,1148,320,1636,1525,2668,2493,2944,211,2628,2784,2132,2443,2775,1310,2645,1441,1877,2833,1377,1932,72,852,881,1927,1830,2872,2473,2037,2963,378,1377,845,2903,523,760,280,2000,1717,819,900,1379,2907,2442,660,17,1228,1512,1540,2692,1202,717,804,1073,2563,1116,1592,1534,600,1467,2764,634,928,83,891,2567,2011,1901,842,94,936,1200,2321,1677,2493,2604,1884,1816,2405,1440,572,2043,1544,1708,1175,877,2790,567,2768,662,1523,684,2208,2132,2330,450,781,2653,651,919,2279,129,1151,621,1681,497,195,2321,1051,2137,2296,920,1188,427,1726,933,1581,1321,1959,433,1275,1720,439,243,305,1211,2729,1945,564,1321,2245,1785,207,1123,1217,2103,2671,175,35,1737,981,2546,1158,1772,1317,699,874,1659,1845,814,1788,2566,2699,1650,2134,2049,2483,1935,71,1376,583,740,2486,2521,847,1004,2311,2958,2854,2341,2437,539,1537,242,957,1919,1214,496,502,2892,2415,94,272,1930,1095,2350,1278,643,1105,2655,1957,1391,2794,1970,2788,2062,112,1528,2770,700,2599,742,272,1729,2763,1979,1690,384,292,753,1092,319,2379,1593,990,1997,816,537,2565,763,1801,1308,840,1038,2283,2001,138,2143,2359,2191,1249,1963,1806,1327,2234,2279,2765,1247,1435,1873,1522,951,606,36,2405,1874,1421,64,1420,831,12,2063,2937,1068,1113,125,625,1518,1265,1205,2345,962,816,94,723,2089,1395,2895,152,953,1782,642,464,2047,128,965,834,2671,156,2780,292,886,2908,2267,328,1652,2216,1037,1874,1251,2357,1963,1333,718,52,655,572,1033,1677,1668,2186,144,273,1032,504,197,1642,1504,1622,2843,1699,867,759,2747,2488,6,1599,1023,2750,329,744,2546,1842,1752,2648,684,167,2778,2435,2315,1247,1381,2223,637,1337,2961,1453,1914,1177,1179,1461,1245,2701,694,2882,940,2112,656,2761,1561,2861,2411,282,1281,2633,2944,2660,2406,2402,699,845,2945,2298,1722,2899,1598,1857,943,166,1442,2651,634,2224,2176,63,2347,130,2212,27,1003,2516,1406,1502,1648,842,1775,2035,2570,1409,1244,939,2243,211,990,2370,2874,2586,745,230,2019,384,2016,999,78,1941,1954,897,885,955,2411,324,1454,470,1473,1233,1814,2441,2904,696,1140,1927,1121,2782,278,2012,1842,1723,2991,273,423,2105,544,2355,2033,2412,2944,2436,714,2897,2237,88,2290,2197,1946,193,1290,1775,1351,648,1247,227,1657,1177,1332,1990,1548,1832,2689,1423,2847,1353,620,1195,1099,1017,2335,1671,384,1328,203,2679,1155,459,1102,2472,2445,719,988,466,1981,1682,1173,272,2480,1109,197,2353,836,2631,1760,1262,1230,2095,2442,2976,1923,530,1900,2564,313,860,1183,124,988,1249,2966,1138,2984,181,2055,1277,2675,1702,459,1633,2384,1247,1234,267,1638,2068,2319,622,323,1289,893,2460,1718,1948,63,2095,2638,1221,238,1708,2315,1298,1363,2274,1672,1589,2166,1587,2461,1571,1356,2101,256,248,2453,534,219,2388,2762,1594,332,2930,2971,311,2094,2549,1958,705,2565,2594,2607,986,2754,556,1142,637,2774,1828,411,846,1644,1791,2717,2366,1201,273,2594,1492,816,57,2459,327,1461,2923,828,867,2213,190,551,1205,522,2082,1485,1367,2587,1031,1838,2475,425,2460,2389,2067,1926,709,2835,1764,2100,38,391,1846,1228,1176,1683,2305,2910,1884,2500,1822,1797,250,168,464,365,2055,1477,2037,2904,1328,2494,2633,2235,2259,1326,2437,2168,947,1854,1559,875,580,663,2487,1846,2974,109,1042,1927,1436,779,2508,1638,2312,2127,2171,50,180,82,912,2998,2100,694,1536,2,1302,1793,664,595,1837,518,1771,2513,1147,1160,2406,1197,465,255,2990,922,216,1866,431,2953,1302,1073,468,118,1859,2441,169,446,2199,2383,1737,828,373,150,1500,2078,2148,2611,1552,2031,2326,1079,252,2877,1138,1062,437,2689,2021,983,602,2511,2811,272,1079,1630,2395,2985,2329,221,606,1407,1574,2703,2011,783,1051,1374,468,1145,1711,1255,2216,58,1718,962,443,223,2237,2484,1620,2770,2887,2907,1011,1236,2756,448,2874,1633,1546,539,2551,881,1209,1936,275,998,2943,1223,1036,607,861,2205,986,1725,1507,632,999,1437,1187,523,1839,444,2054,1509,1765,889,2675,479,1044,876,797,1353,2371,2954,708,2864,166,2704,901,2441,1856,1366,258,1980,35,1783,1181,479,1889,1897,2617,2151,2180,2542,1768,2171,424,2272,750,896,2196,2157,1689,2732,842,2004,2699,904,2550,2752,459,312,827,1650,2217,1373,1889,367,1495,1670,1404,2812,822,1355,2019,19,531,198,917,2357,459,2267,1483,155,1506,1441,2653,2802,2415,1618,924,702,382,1462,1867,129,2514,2680,1744,2804,1575,956,157,2255,471,2551,369,1229,669,1287,15,2153,2344,2369,40,160,1418,1366,1941,1248,159,1274,656,318,804,2318,1784,1986,1267,2700,1495,1642,2618,1708,1703,1613,1736,683,1736,2587,1785,20,2545,2573,2626,1182,2477,1519,836,639,2659,2326,2392,1839,2481,221,535,1351,803,1770,609,2762,2327,921,2212,590,2868,2019,2824,1873,1067,624,2091,756,697,2936,842,529,1372,2627,861,1259,2555,220,1370,1646,784,2727,1431,288,1719,2728,2209,1030,2263,2189,2525,1431,762,2742,980,2632,594,717,2488,866,668,584,528,661,1471,1055,2310,618,116,1531,1312,284,2595,6,575,53,335,1342,1282,2356,2414,1614,1669,2183,255,2511,1498,856,1983,395,2328,921,2188,2477,2682,1644,449,27,74,2513,2962,1822,1252,2718,2228,2647,119,1025,890,2201,268,2987,2714,641,1065,1457,1131,1672,2347,1693,1024,1872,993,103,1203,1815,862,2017,2995,305,416,975,1584,2895,2901,914,2479,679,2261,1006,1798,1366,2223,2126,2111,2723,2933,27,1809,1565,1985,1738,869,2331,859,1014,1105,359,1774,2336,2715,1932,943,1130,1001,2602,1495,144,1763,802,1565,39,947,2437,560,2683,2550,2820,1732,321,1723,1021,1288,393,1915,1581,518,513,2371,2981,1704,444,1964,1653,2698,2920,891,1704,1976,546,2052,220,469,2008,2499,1672,2128,631,2949,895,210,185,1650,1989,2343,327,322,1727,1383,1482,1042,203,1537,263,1315,1199,895,1329,1328,2395,2682,2066,2426,1503,2489,2172,229,962,2607,2079,313,2650,86,1702,152,1656,1916,2508,374,1128,2392,1301,1146,2994,711,600,698,2318,1991,528,2675,2078,538,2396,405,1636,1787,307,1918,586,2380,2538,2594,1795,2413,1936,1540,2650,744,107,1699,2655,483,736,2779,2713,1967,723,645,1454,2502,2938,2467,1636,2710,240,1828,2803,1240,2559,1495,966,1993,1433,2528,1529,1004,287,889,2944,2177,680,102,2813,755,1591,301,637,1612,2308,1797,2491,1444,1726,1454,90,399,2989,2370,2472,1275,2449,2864,1424,761,1347,2556,1806,157,1357,609,871,181,1479,414,2698,213,2437,782,795,1369,2430,2264,474,1623,415,211,105,2097,1814,498,2061,2165,2095,1676,1511,992,153,2316,1147,2733,635,2093,588,2958,2917,2225,73,2614,189,1431,2522,2696,885,1550,382,787,1176,2471,1027,1263,193,1770,1661,2193,0,2419,141,1999,2726,2358,2013,87,1092,2134,412,2805,565,807,1906,283,1963,326,2644,737,2757,1466,750,2345,368,1107,732,771,2192,688,1050,1387,2331,2977,158,1764,1139,1124,2593,1865,947,2070,2277,2762,1661,2385,867,820,2595,782,2120,553,535,2716,764,2215,85,1161,746,1364,959,1338,2793,2369,1896,1972,1176,900,781,2125,1048,2045,1243,883,631,483,1755,1701,2248,1586,2972,710,2095,38,1155,1862,1597,198,2890,317,35,2313,1503,2330,705,1679,323,1090,675,2163,2149,2652,907,901,2516,2204,1845,1971,214,2614,2659,1476,2168,1092,2382,2225,2464,1593,1401,1156,2634,2709,2301,1115,2028,320,1505,1273,1987,704,792,505,1316,2097,570,401,1982,2766,592,992,198,2421,2839,2761,609,2177,2458,818,2276,518,1905,2968,2143,435,48,2358,1498,1429,2941,34,464,1742,2030,2476,1977,641,474,421,1274,2535,2880,2579,1071,1579,2333,2097,519,1668,1031,254,2179,230,2752,2162,181,2124,1478,1105,2183,280,1822,1080,2143,1829,1822,1160,1077,2087,1515,1596,806,1135,191,1755,556,2753,640,340,205,712,1537,1279,1029,1284,2797,478,2794,713,658,2459,1421,1267,2786,667,1634,2007,599,2462,2731,353,2687,2670,1712,2119,1611,699,1461,1995,2844,2589,657,601,1000,2016,1621,1391,2093,2959,2747,2954,1841,1296,1354,2071,156,2127,2168,1899,2911,2719,1436,2066,345,98,1568,1270,1222,747,715,887,971,2514,2018,166,268,203,2079,1356,1048,1554,956,2432,70,798,1628,2219,1299,2283,757,2647,556,428,2195,1540,2194,393,2011,1376,877,2571,547,2762,2586,1019,151,2762,1671,2600,2089,2220,53,396,794,46,1498,201,1241,1942,145,2926,6,735,2240,1430}

    2123

    2482

    Returns: 756034271

  87. {399,1716,236,1392,831,243,390,1545,2320,524,2195,9,879,2518,2950,1340,2339,2967,1217,1830,671,1874,933,1675,631,565,1683,1355,265,1232,1841,1234,1915,1776,800,832,745,421,1734,2686,1779,2462,763,867,181,2974,1806,2475,627,203,1161,875,386,2425,1849,1662,2074,1933,2839,495,345,1558,628,2753,177,1897,2024,2263,437,2913,1868,609,2970,1083,718,2841,1755,2333,1727,927,1817,1421,112,903,2022,1485,1947,871,2945,1415,1118,2072,1765,1910,271,2628,2753,391,1146,740,1794,2889,897,946,2507,1428,2914,1513,1879,1975,19,2742,2444,2456,1987,2749,797,701,1600,2210,213,1348,1033,1383,1309,1385,2952,577,1317,2146,1593,2313,2358,242,373,1322,1813,2780,25,1966,1363,2819,2906,468,555,1383,1488,849,1943,2610,219,1733,554,2738,2137,2378,147,2253,1608,2852,2631,1616,567,1214,723,1201,953,2621,1826,1194,2191,883,962,652,2703,181,494,1708,361,2092,223,2148,882,2337,1697,1337,1334,1943,1187,877,1160,273,2853,1010,2826,2806,322,2993,1472,2337,299,581,1383,626,2581,2253,1922,1059,2620,1730,2239,550,1602,420,1432,766,2424,1850,52,2260,509,227,2299,154,2522,2360,2488,65,2955,2864,2789,2110,2622,2234,859,2868,2841,2854,2094,308,14,638,489,753,1040,2441,837,1268,908,1477,2651,432,2094,2133,1813,2057,2719,870,1568,2112,142,513,350,1037,1197,492,243,1359,2424,245,1814,684,1536,2733,1383,1778,1264,340,1189,2747,2594,2762,2896,128,164,223,2293,1944,777,1040,1451,485,2962,1837,2296,1384,2,249,1654,1775,947,442,209,274,1739,1272,1744,2764,2466,2374,333,27,2919,1942,1769,1498,247,2976,1305,2770,1950,2266,2183,1148,1201,2554,1185,1892,1038,611,2499,1406,1704,1204,92,1097,2713,2860,2617,390,1831,2322,1256,1031,2462,2100,2753,417,1829,900,875,2607,818,2171,802,1544,2741,1214,193,643,1787,2311,2535,989,1746,1793,717,2919,1007,100,668,1764,1156,2776,1014,2053,2851,612,1805,1323,1784,2016,1255,1072,1473,2776,1383,2086,1026,141,2777,2940,2574,495,385,1222,2214,1227,401,1045,2346,1038,437,1236,499,1096,197,1184,988,122,951,2256,1016,2920,4,2158,1574,2284,2336,2217,2670,1571,306,2253,1442,1189,1769,2571,930,2389,1787,1297,2566,905,935,2799,1174,713,424,1126,2573,867,1174,2468,2727,1816,2332,2768,670,2386,1014,2184,915,966,866,1071,2119,1535,2104,346,58,815,2337,692,1867,1501,487,685,957,1035,2177,838,186,2197,1504,2099,1324,684,149,1188,2035,2525,660,1749,1331,1527,1383,2246,809,1901,615,2074,2145,537,1219,582,2410,1989,2188,91,857,2163,2633,2480,1769,2626,1323,789,499,1930,311,2733,2014,2695,53,1685,600,528,1596,2316,721,1616,761,1090,2253,867,2787,2634,298,1574,2933,1309,386,1328,2643,356,2683,2933,266,1198,2186,2515,847,1241,2559,2297,1837,2289,163,1293,2439,0,282,663,2853,725,376,1674,2086,585,2041,2079,1642,2867,1729,422,982,2276,1638,1699,2186,1381,1668,2211,711,1964,1439,1821,1453,167,2165,428,2797,152,2537,767,1693,1310,480,2946,490,1722,1537,2166,2933,1266,1904,422,2736,891,972,320,1048,2950,1801,1990,2688,1396,2398,1952,1668,714,632,406,835,405,2708,2346,704,2046,2520,2872,1075,530,788,1234,2128,1329,2696,617,364,1223,2454,1731,2456,129,1264,226,2766,233,2631,1182,2275,687,320,1355,368,129,236,2831,893,628,488,2733,60,266,2172,2835,1015,2522,2433,1429,369,126,2421,814,2087,1158,1022,1383,36,2683,2334,1112,1946,552,23,408,16,474,1189,1582,2305,2561,2441,940,2232,1960,2198,2198,1783,661,667,1160,1409,2640,999,302,785,1829,658,1955,2065,2130,1886,548,2486,925,200,478,1602,2520,1014,1283,899,2591,821,1137,455,1178,539,1477,2047,1588,2727,1918,1957,317,1236,2357,587,915,1244,2363,648,277,426,2122,2346,459,529,2344,2336,2246,770,1132,1924,1247,94,2032,1395,1264,1197,2523,2655,2897,2144,337,562,2996,455,1792,1728,1510,1941,1730,1415,612,2674,2804,1675,2495,592,704,45,132,1319,294,2374,896,101,79,2663,1690,533,15,1617,375,790,2745,367,2031,2610,2905,2985,1433,2402,2809,2209,126,1476,2124,1434,2124,377,10,1285,582,2183,1819,1046,99,2804,111,612,2003,950,2966,902,2550,1581,95,2207,2365,2727,1143,556,2886,2057,349,813,599,1620,2253,2852,2297,2083,1013,1518,768,1843,876,2950,1801,2212,1244,1829,2222,2136,1401,2984,241,1861,734,2352,2323,1335,2168,95,1177,2586,1866,13,1965,2675,2476,2895,1721,2093,2241,2843,671,2717,526,2332,1136,1121,2750,59,1270,2916,2923,1799,2407,462,151,1569,2687,1631,1728,1576,2962,1668,1614,2250,2956,2451,2502,2969,2136,2026,1611,1953,533,1542,2011,2815,2651,907,39,2571,2399,427,1372,115,2275,1871,911,2649,2933,1128,1536,2788,2400,1532,1341,2776,2814,9,861,1828,1624,2881,1068,503,2196,2544,2873,2936,1189,2795,1555,2020,14,2907,1456,1519,2463,1593,1584,2170,2696,2034,1746,2343,1320,1813,902,256,2716,1799,2267,2330,884,2579,360,583,2874,2763,782,1401,2302,835,418,2570,751,416,1110,2272,386,1428,597,136,178,1791,1628,2843,2977,2227,2552,2646,1773,2589,1564,506,1493,1328,2171,2793,1711,1902,1551,2411,261,2496,1223,1835,309,2113,491,1319,1042,490,1829,2834,2011,2750,1004,526,141,2753,835,1398,1181,1956,1408,782,2766,2713,2004,1706,2978,506,1753,45,178,908,2045,2907,1118,2435,754,1914,62,2840,1282,1243,2307,434,1211,1545,1467,514,617,2063,913,798,1920,2136,769,18,1791,1383,674,2288,1560,2813,937,1698,2983,2298,1928,1151,2108,1971,2609,1382,2961,1742,370,686,422,53,36,2975,1666,166,1745,1034,96,356,1254,2363,853,2310,1829,1822,2023,1899,2140,279,171,1504,596,1177,753,1275,894,2164,2678,1657,1262,2180,2797,2329,220,1369,2598,49,2980,1788,1810,2185,157,675,2156,335,1829,2910,2017,2089,1177,968,238,619,423,695,1095,617,535,661,2637,2285,2733,1900,1080,312,1763,1943,2002,2709,2186,2760,2379,332,782,2772,293,2347,670,1174,2106,1784,2853,1744,1432,1355,1538,1087,1015,1118,1383,2963,1559,1524,2300,917,2832,2489,1579,1902,2204,652,2530,901,312,750,152,339,387,719,140,2060,104,1912,2651,2419,2479,2214,1942,321,1483,2403,273,419,958,645,2944,368,1550,2151,617,2600,2757,1642,259,1643,778,1069,162,1335,2760,2801,1232,1864,1799,759,2673,2903,1970,2226,1479,1620,218,2938,1464,942,2010,143,2269,1070,892,2404,601,963,1353,1612,2353,1100,302,3,1613,2282,2114,1306,1188,663,2486,1992,2755,667,2557,848,2504,185,1322,717,517,1281,1094,1622,2341,1984,1962,895,1166,565,1923,354,2486,617,627,172,2551,1706,2327,18,1176,1425,707,1650,2450,1388,316,1784,163,417,1016,1441,1487,1663,611,2990,2547,240,2574,1760,2153,733,2028,1020,2363,1668,2309,799,2463,2791,2155,525,1863,2478,1249,507,45,2066,2810,1399,529,1170,2440,40,178,2187,38,1251,2957,1325,659,1191,1009,1839,1699,108,1193,1116,283,917,2766,1288,1750,1155,1513,1050,2659,2194,2164,264,1983,2735,69,1042,135,177,1263,136,814,1060,916,1903,1903,938,1680,2577,706,1444,1,1016,154,1530,2107,2375,1423,2748,190,2910,214,713,453,1580,663,1422,1923,1659,2600,1769,969,1738,1536,1596,1267,2061,2709,2049,289,2844,792,295,40,2280,849,346,1686,1711,1511,388,2894,1546,1686,677,878,2661,2467,387,653,1174,1381,2400,2101,2843,1666,1470,1008,896,167,627,1157,375,1510,2575,1658,386,1486,2900,1779,595,954,372,1397,1883,1562,437,2690,1479,503,334,119,2047,409,762,1678,2155,241,2301,396,349,1690,1482,1389,1682,445,2782,423,1835,1603,2557,307,2805,169,1174,612,1255,432,2126,1870,1244,726,2416,1749,2865,1043,264,1245,1162,2926,1526,1321,1232,2235,723,649,843,2149,1543,70,2513,2492,1696,2399,2222,2732,588,1843,2665,1528,440,2609,2560,54,2636,819,1064,383,1311,109,2212,431,2665,2374,1981,1266,1646,2668,2467,1770,2851,1323,2928,1202,2912,1244,2894,924,1413,3,1502,2685,1396,104,617,381,1247,1828,1212,2490,2726,2927,513,558,2579,370,587,438,425,1285,2407,2811,1988,1855,150,813,357,376,1790,1483,1294,559,927,1412,10,147,1144,1037,2086,498,807,935,604,2971,1177,2738,2286,2834,1082,895,1223,2839,1695,2440,539,2372,549,508,1754,2561,1940,420,2911,1298,753,2159,2708,1453,2898,477,623,2198,2269,2821,1878,2616,409,702,1329,296,1403,2461,2644,1909,1005,2649,1197,996,728,2744,609,1592,972,2551,2677,2844,2055,1073,2001,530,2877,1489,1276,1126,1380,123,2080,322,438,2270,2159,1167,1825,328,840,1143,152,2999,609,364,1998,1902,2366,2592,2479,1026,844,1238,2200,113,1768,198,1040,1711,2795,731,942,1166,715,2124,849,2523,2190,547,2671,2717,2801,579,570,1991,1655,1536,509,1611,2426,813,2390,886,1736,2005,1405,2628,2910,115,204,1930,708,2243,1626,294,729,1917,1114,1534,990,510,138,936,2526,1017,1372,448,2408,2779,2164,1424,1458,194,2992,232,486,1278,2444,2254,2078,2154,2790,2640,1236,1707,1034,2532,627,2094,2112,538,2358,2778,1784,788,1942,1782,1398,1330,1850,2931,2420,41,1027,1169,400,71,2540,998,627,2355,1635,414,1454,1713,785,810,2126,2562,2377,1524,2068,2834,2845,1509,2630,1278,1475,1621,1008,598,971,830,1360,2584,454,2600,2607,809,2681,390,1410,2774,2239,697,953,2162,1113,2792,852,1473,2648,569,2239,2419,2893,530,1956,1017,1513,1102,893,2904,2951,2454,1884,1276,1341,1820,1863,2199,2104,2819,2439,877,2479,443,1107,2462,1489,759,290,1539,2918,2422,692,1634,1347,633,413,2383,986,2115,2470,871,2792,2421,1497,1507,1994,2635,316,1963,2953,1553,1641,1582,2011,1045,192,1750,1579,139,867,2120,1123,1095,1199,2684,805,243,2206,2027,542,864,273,1943,842,2753,239,640,2246,2414,830,2774,1466,1695,2675,639,320,1831,2698,44,1130,2221,2190,2440,1411,684,1374,605,1250,516,1905,2290,2810,1843,2587,1868,1471,278,1335,724,743,2034,783,1019,167,607,1665,2984,2591,774,268,2086,442,290,2323,1615,1827,709,1808,1632,2922,2940,1018,2483,2097,2878,1862,993,2970,466,2119,15,578,2509,2732,2548,2944,2877,1118,2577,730,889,1861,432,2967,1440,2700,374,195,1062,1162,1401,590,917,2674,1883,2577,1719,2345,2302,544,624,2502,1779,1989,975,612,1313,140,302,1273,1843,915,1188,613,2986,2139,212,1301,1514,829,375,2143,732,267,2976,1659,1501,1751,84,1647,760,2904,2946,1278,915,2430,1933,1486,2939,375,2576,1597,2008,2724,1558,2774,73,1371,113,2049,1235,15,2587,2552,2895,516,295,469,1729,1649,996,2035,856,858,2190,1795,2413,2486,1165,2753,2701,877,1298,1402,557,483,2723,782,1868,1550,2011,1970,559,394,1162,514,1740,1609,1737,641,908,312,2392,1054,345,2728,2381,1965,2620,2491,794,2407,2088,1701,2132,2077,21,2740,2711,1601,1443,1209,43,1602,2725,1007,1401,2818,1852,2604,674,2796,2858,2591,2786,1813,2081,1929,1307,1162,1935,648,2879,1754,2417,2483,2948,1789,2320,1965,2987,2308,2338,1288,2448,2322,1142,1616,2982,1257,2290,1817,368,325,2181,2196,2497,83,1784,345,1663,1623,2197,2069,1514,1715,2766,1758,187,585,1262,1924,566,1066,2900,1949,217,1231,417,1712,2805,2315,1139,2020,1417,2494,793,2691,2424,1494,2663,547,2266,1615,1047,170,498,2076,1459,2518,124,1426,2871,2677,2954,853,305,1556,481,2385,2342,1720,2171,1601,504,1088,1093,1732,1289,2161,855,978,807,2664,1343,275,1303,1433,2643,1502,1695,2653,950,1215,2933,800,396,1960,1986,2171,1823,2702,840,2486,262,300,389,114,2977,588,2270,647,2100,908,1397,2500,1763,1214,869,850,637,2496,191,2257,175,137,2897,2684,2627,2990,2474,595,2208,409,935,2466,2862,503,2166,1188,142,2655,1234,435,1570,2097,1041,2342,610,2387,1143,1048,2972,1924,1783,1762,2782,1725,308,1454,1697,112,747,1521,427,1815,1229,2712,1021,1146,2226,1936,2963,999,2295,709,510,1086,1807,1607,1101,61,1687,1874,206,535,2426,158,487,1334,1279,568,2758,1078,1106,1213,1192,2506,1873,1668,2060,2968,2249,557,2041,7,1270,287,2710,26,2967,2911,1542,258,1520,2931,2713,1972,1077,135,685,1419,1067,2254,2077,680,707,2823,555,946,1832,552,1320,1957,2671,473,2082,1163,368,19,872,616,1167,1038,728,10,2123,1570,2849,2258,1295,2406,676,1194,2348,1346,2436,2802,2505,2676,968,362,2681,2734,1809,2338,1122,384,158,963,78,1195,824,1514,397,59,1453,1125,592,2533,1747,2542,756,617,2304,1183,2904,427,1652,2779,1207,1040,28,1948,2152,553,684,2680,461,138,147,519,316,646,191,921,1133,1077,2224,1656,2046,278,2519,1201,2253,860,599,383,1470,439,2599,1489,1876,770,2451,694,2174,2798,614,1730,1944,2358,759,2975,558,561,1531,2160,207,502,1248,17,205,913,2989,2992,44,2526,1930,2557,1210,2031,1118,2658,2009,1467,2788,2778,2929,1109,1074,1403,175,2856,9,367,1804,912,2994,88,353,133,1911,2668,1599,2141,39,1489,2222,1131,589,650,968,333,2348,2481,1164,1825,1756,150,389,1891,1812,2756,518,1848,2704,2308,2968,482,2807,2653,1552,613,2189,1495,2672,1417,2173,792,1489,1043,923,415,229,1667,1803,1867,1796,667,2487,1061,2921,2385,2880,572,1247,651,2039,1555,2060,2513,1051,2682,1736,1434,1501,422,784,2253,1355,308,2570,1045,1305,1300,2682,2628,2142,2384,1885,2708,2454,213,2612,1070,1997,2751,2047,2941,876,24,1118,1989,2034,2215,2340,2941,2576,1201,196,169,1695,1470,915,1470,429,1845,520,350,1570,871,1227,2038,2111,2495,735,1005,1571,181,2848,2352,1088,45,231,2563,1623,2969,1783,1518,252,471,2467,1053,5,497,592,123,2730,2393,2697,992,2995,2672,1109,1172,1347,2242,1747,1045,313,1661,816,364,2277,2779,1803,1942,495,1176,1092,322,2533,351,1081,1230,595,672,2204,1845,1056,2385,1995,303,312,381,2930,2572,679,2210,1991,2430,2521,871,499,734,731,2170,1744,904,2695,317,2175,1790,320,1991,2046,792,1523,622,164,2591,1729,2246,1156,776,2115,1548,318,2257,2909,1538,1954,2796,2977,2475,979,1126,2602,878,1046,12,1909,1791,113,1339,1841,618,115,1020,2060,165,1942,1121,1340,2004,1362,1199,1366,1692,839,1049,2649,2380,904,22,1958,1657,1522,2029,2004,243,1447,1055,936,1197,2518,353,1939,1770,300,810,511,1855,1981,1555,394,129,2714,1618,1421,1449,1069,965,1344,2819,246,655,2264,2339,2841,2116,1031,1573,937,1464,669,1932,526,426,2321,2979,1076,72,2245,39,2164,2308,2041,2870,476,1369,469,2851,2136,2861,1144,2602,2219,2250,2314,52,2443,1461,1538,1445,2051,449,1845,1901,1188,281,1261,735,2880,2220,1458,2358,2456,2508,2263,2745,1393,610,923,1039,2837,2257,902,463,1177,1514,659,1974,2384,1869,1383,432,423,2917,2797,813,208,2179,2464,1945,2394,2407,1536,603,877,2660,2807,2259,2205,2859,964,78,666,2092,61,363,272,343,1201,1803,2108,457,2828,1318,51,757,2578,2903,665,30,1113,1009,2797,1297,407,2546,1199,2522,791,2358,2413,1221,2094,2346,2824,622,1352,1423,1156,1414,332,2415,962,2086,1391,1427,2494,1108,2115,870,1296,1095,1126,1463,1880,1929,2091,1174,2766,1907,2312,117,1316,2481,2853,1446,712,2331,2833,2060,1931,867,1849,707,2084,512,699,554,1086,2044,1166,1797,2382,2134,289,2036,665,1688,747,1929,2350,1034,547,1710,1767,2275,1331,47,1736,2733,522,2991,2770,1653,900,2025,2090,1733,358,157,469,1450,960,338,1147,1834,2551,2707,818,2569,919,431,1478,1303,2810,1627,1213,1012,800,273,1140,621,2133,731,501,2673,2693,871,2210,820}

    {541,1909,303,1419,3,2105,2167,1233,939,2816,1557,2212,1255,2580,2967,1236,2941,74,2236,2720,1425,1792,2522,2413,1544,329,914,129,2775,940,2431,1245,1347,2733,2134,2205,98,2319,2881,166,2095,2638,1351,2897,956,764,582,1339,432,59,2103,602,1826,1608,2343,1066,842,1308,782,2465,1564,1539,1656,850,182,2196,634,554,161,2085,540,818,221,298,1983,2334,710,415,527,2699,183,1162,86,388,2993,66,513,2102,552,1909,2618,2591,980,1470,1349,2808,1003,2940,190,1698,747,1889,1080,2407,830,1692,2506,508,2825,867,2201,2064,2294,865,1101,608,1588,2441,2771,1847,35,2907,2951,1372,560,2189,236,2885,345,1529,717,2814,1160,1616,1285,2125,1323,2205,1370,616,998,1452,2479,1113,936,1511,726,1825,1449,877,949,366,1143,920,462,1206,1120,756,1006,1561,1483,1373,2163,270,364,1129,1743,2103,1169,2173,3,2104,2318,1610,592,2080,566,1327,2736,465,681,1989,1285,1548,2177,2927,2536,1171,172,103,11,613,2319,1825,394,55,1290,2977,2742,116,1717,2315,511,629,1018,2001,2757,560,570,1583,1026,932,880,944,2116,2621,1749,2810,2538,445,1811,2121,2917,2495,2405,1301,2796,2588,2608,1079,534,2562,823,1201,2606,2857,2000,2467,629,2096,637,2439,353,573,2969,1104,582,1545,1045,2892,2184,2853,1803,1995,1672,931,1385,2442,503,2929,518,371,2203,267,2852,2784,374,2046,836,209,2082,2951,1612,1505,2011,1937,1496,1679,1236,616,1772,855,717,158,2888,559,136,2735,301,1107,1484,984,1447,450,1714,2617,2931,188,2730,2787,1762,1570,2769,2570,258,1253,1361,2378,1400,362,2877,2871,2924,2481,984,1753,2457,2736,1705,84,397,1269,2639,753,1568,752,612,274,2539,610,1659,1783,300,165,804,1236,2156,2728,522,654,1906,2445,2993,1043,2473,1695,2496,15,2437,469,2479,1422,1886,630,59,447,1102,2851,2745,2066,2586,2592,2875,1274,2031,2907,1604,1748,781,1270,848,2840,2630,87,2060,1241,2346,1549,304,2852,227,2463,10,1146,2990,1606,1403,1481,1873,1861,107,422,261,2238,2806,942,1161,1334,2713,1100,2903,2477,822,2512,2973,1468,156,2692,2261,342,680,1927,2210,1129,862,627,874,928,1263,1266,329,42,2785,2356,2508,1772,1660,1166,2408,2183,1117,87,2098,1338,2814,786,160,1148,1686,2453,2514,612,1544,1433,1780,184,1679,1305,2575,1270,1702,57,1898,2892,655,2903,622,2332,126,1628,2576,451,2441,89,2233,586,39,2071,2157,748,1960,1553,156,2363,635,1143,592,2503,1153,2322,2580,1481,2425,1933,2155,558,1295,2094,2426,2455,2883,1073,904,1992,1935,2196,971,559,677,244,1132,1849,1462,1752,2657,2727,312,1149,2548,254,2141,2692,659,1659,1030,2750,2029,1909,1614,1078,1158,2032,2811,506,2050,807,2130,2821,807,552,594,1953,2358,2666,2829,176,683,1977,2774,1737,2460,2556,1346,2555,526,2004,495,605,470,1918,2255,513,808,1989,997,2174,50,453,736,1194,1273,820,1162,134,1564,2094,170,1483,41,1152,310,2150,1214,633,1326,25,2913,1589,1508,1598,258,2852,180,1156,1537,2734,225,898,1174,2613,2491,795,1842,959,2060,2658,554,291,536,1969,945,717,1511,464,2609,2401,447,1566,1244,6,2157,1538,2950,2718,744,1838,1515,2011,467,102,1541,1050,1670,2205,775,2641,2400,513,2332,2346,1102,81,1771,2195,2297,2830,1472,2694,1604,835,400,1132,2907,366,1380,1969,295,419,2501,2259,213,2712,2021,2489,2880,593,1188,496,331,1232,1916,2337,329,29,1295,56,2600,2041,1716,1989,1077,934,1786,689,2225,2456,2793,360,1343,803,936,2213,1885,2503,111,545,1888,140,2486,627,1517,2335,1709,1895,1077,1165,745,408,848,1244,1390,2363,1528,689,2822,356,2803,2812,367,2593,1302,2332,1155,2027,603,616,2760,670,2550,1973,2047,2347,2136,1416,2954,438,2108,1572,484,1193,2324,2244,2811,1805,758,24,941,1096,438,1382,132,2498,1407,2720,1401,1894,150,2546,1946,2656,722,2469,177,442,1314,1587,2928,1487,1501,2962,732,402,1311,531,1354,2285,1900,2056,1141,1860,1299,155,1960,885,1877,2192,474,2409,209,2345,511,2624,2866,2605,1889,306,2736,278,304,1199,1790,983,2817,666,2796,352,1902,1042,607,920,147,382,1192,2459,1470,1418,1029,1626,2783,967,2669,2361,605,2646,193,2302,1859,743,1430,77,461,46,1269,273,1143,97,574,91,2528,1903,961,1058,2303,23,1630,1477,435,1295,1744,2223,557,648,2882,580,381,2324,405,624,1278,1533,2899,115,2671,2721,1525,285,932,15,737,1094,1032,2399,1659,2705,403,1345,1159,1553,493,696,1237,1799,1542,1619,843,1757,2218,690,1105,184,314,641,2766,917,910,831,1117,1945,560,1671,2064,2902,2013,2997,2224,2729,1246,1999,2018,2240,2675,2731,2912,1031,34,289,2485,2815,261,2651,2674,393,1,1438,324,2478,782,724,527,226,847,2449,230,2847,2034,2738,168,2673,2789,1134,255,2000,662,1733,2764,1605,909,1783,2153,170,2592,2640,1365,2786,921,2419,2134,2942,344,1759,1003,2135,1478,1565,1214,374,2233,2881,2745,2287,2959,2125,2642,662,129,1025,1205,1908,2639,1766,2900,1016,873,2963,917,581,1268,1893,823,762,120,1290,1220,1952,330,1079,1431,2917,562,2438,1818,938,1859,888,2495,2737,1428,2904,1094,1929,2359,375,2249,154,2472,411,1556,1223,2529,1122,277,2563,1001,629,1623,1145,1249,1221,1203,1717,1575,1674,507,1741,2749,423,2729,629,955,841,1749,1483,549,2798,2645,2239,2665,296,861,2242,2052,2372,2702,2845,1161,967,2561,785,1111,1888,2171,247,1470,1550,2403,1964,2340,2,855,32,1802,2114,2070,1172,1917,2633,1362,546,1605,2347,1313,827,2866,431,2349,926,1904,2112,460,193,1502,1644,2614,710,1837,698,190,2665,976,2965,1907,1723,2208,1243,1826,2456,1331,841,380,2735,848,2040,222,795,727,2186,345,1471,106,535,1909,2662,2789,1436,2599,1783,2229,995,2979,2697,2885,2993,967,1052,1660,199,2228,871,2842,1755,290,1754,1014,752,2304,2939,236,2136,2901,2603,1912,2802,2619,2915,351,584,1350,2490,1703,1928,1143,1439,1295,1012,2960,900,2770,2048,1469,1976,1693,1285,901,2326,1224,2657,1428,908,2819,17,826,2818,1803,2033,2863,1042,617,2980,521,2251,1201,1735,2967,544,1312,2161,1034,1395,201,79,1660,1868,1383,692,82,1599,2388,835,280,1354,2391,1141,568,772,1271,2518,867,2371,2376,2328,386,2458,787,2109,451,336,648,2907,2117,893,202,583,2628,9,300,1310,125,1851,1144,1629,1993,1094,2855,1532,345,2824,2303,1902,1611,2041,251,1829,2706,2172,692,1329,42,1489,385,110,1253,2372,2885,810,1969,2595,2283,2567,2334,2882,923,1457,1447,23,1551,2790,1240,2491,1191,797,351,1402,2432,153,167,1959,2241,84,2775,1893,1428,2880,2171,977,1846,1722,2034,2473,656,2531,2640,2632,2032,48,2281,1269,2247,2670,2604,2908,1075,159,179,2853,1864,130,1511,506,2628,1193,1994,2951,746,1612,2834,1467,45,474,2885,2354,1761,2394,598,479,31,692,1792,1808,2517,2876,2797,1890,775,299,827,1434,2419,1103,2398,2169,946,2707,1039,1180,690,417,389,2964,2009,144,2841,2062,2945,1335,841,610,2515,591,711,950,1938,314,1387,517,2580,1729,2917,1693,988,928,1248,857,1028,53,1207,76,2482,1113,2072,1665,851,2254,2105,2766,447,2266,1683,2943,1240,1434,2015,1857,2308,2998,2097,2858,2885,33,2195,2210,57,2084,286,1036,2054,1783,1884,2582,719,1135,552,258,1490,1964,1489,2883,828,1783,361,2285,2154,1798,849,488,2131,2685,2032,1424,1994,1383,2526,1632,1394,237,842,2425,2130,511,1208,2062,1029,1883,1694,1523,2529,1451,2662,351,67,2557,2466,1723,2534,795,2655,1019,1579,571,2637,2774,506,406,2385,292,812,1358,399,2602,1254,1401,1982,2794,1577,1885,1435,2974,444,1837,1928,2647,973,2419,2259,2265,374,1879,1352,359,358,703,636,2060,59,628,2155,568,1980,2582,868,244,2783,2695,1636,1207,2929,1144,1381,1186,1303,1553,908,2558,462,2799,20,552,2837,720,962,1961,1871,1224,1413,887,2032,150,1186,2746,452,2904,1502,1983,2248,472,2340,1117,2508,2125,1368,967,3,633,2087,657,2593,1241,644,2781,2670,39,2423,1334,2433,2937,2747,1335,2385,431,461,564,1881,2164,2193,2471,1607,2216,1095,1115,2685,2543,268,2257,2679,1983,451,1269,2668,1595,1478,2112,276,1492,2048,427,1338,1277,118,121,1095,1985,1121,2332,2684,1506,2456,492,493,765,1553,1872,2202,1561,2418,2271,2671,1044,2941,845,467,921,2094,1913,2136,1232,902,251,1179,1632,2796,2827,1263,2345,1769,2320,2761,152,964,2396,1460,1989,703,1961,704,789,691,2274,630,93,2465,284,381,2368,2232,2440,1691,145,2147,1056,2042,1012,1265,1127,126,2590,644,1138,1216,1779,274,2563,755,1015,257,314,1227,1329,1836,2565,2584,2759,1495,1107,2300,2739,2503,280,488,189,2840,1804,412,1333,2883,2417,2275,2498,2803,1971,991,1970,2272,2140,846,1968,2592,1386,716,1270,1252,2947,642,2320,506,1329,1234,178,302,1412,2218,1568,1561,620,1048,313,1247,2346,2953,1310,1927,2373,1161,2606,1921,1586,2447,2904,515,2060,2628,1420,458,2422,2350,2439,2739,1540,831,952,2576,2877,1342,1315,1485,1869,392,2862,2346,148,1323,2745,1298,1280,2362,2842,2717,1251,251,1087,1926,4,2908,2257,2154,563,2716,425,1396,1554,1835,2981,1018,896,1718,234,1640,1401,216,584,1401,2482,321,2466,2254,2685,2736,341,2083,68,2816,347,2325,843,110,739,2238,1442,2398,1651,1027,2042,1315,1105,1543,643,294,2887,2237,2324,732,2172,928,2153,2230,2006,433,938,2278,2895,1378,2773,2127,1803,2330,1544,131,1475,2824,1340,59,2755,1028,1763,2554,64,171,1356,2129,1800,2935,2037,18,1774,1686,68,2674,2858,2264,2876,1297,2265,1442,1989,1523,776,151,342,1379,2942,1259,1811,1669,1070,364,2410,770,2767,39,39,1784,1946,219,18,1765,2164,1158,228,625,389,817,1528,2775,2212,241,796,769,1456,2452,1329,1241,981,2265,1899,2346,319,903,2564,2591,1418,1875,2359,1304,2733,1663,2719,1967,1447,1663,336,1449,1383,1489,191,588,1085,749,699,2654,1377,205,436,1585,780,509,1803,2256,795,84,1111,1354,2308,970,1815,2357,1415,2049,2430,1674,2853,2171,1260,2446,2736,801,2713,2477,411,1124,2138,2141,488,2450,2237,851,2987,1158,2101,2169,2553,1375,1355,378,1153,2460,1496,2991,2601,1218,2277,1251,2924,2133,580,1245,719,1557,2480,2408,1922,1254,845,95,1625,2443,2652,1795,2410,1686,2571,2047,2195,2184,2875,1690,1491,2975,2654,326,2548,112,1302,1516,1724,278,2846,2436,2946,2616,430,1016,2493,1583,1689,172,2822,2364,297,2977,1590,1304,2490,833,825,2599,446,295,1429,2297,835,2697,1674,2196,1035,2544,1456,2933,2292,1828,1263,918,2596,1357,535,254,1155,985,2582,2624,2981,1470,1750,1215,2484,1883,2575,362,768,1863,2541,2832,2444,156,2625,1843,303,1437,1730,456,643,348,2277,585,523,1328,1270,2640,1716,2395,606,1142,251,92,137,929,2623,2682,1284,901,2189,616,2140,1302,996,312,222,1239,2278,976,2593,2136,857,2891,322,1632,2951,2398,191,1844,174,693,3,2268,2802,2545,2426,222,2313,2118,1151,224,1330,1743,1287,210,1639,1854,1353,2317,2417,496,2407,1276,2481,495,1793,2180,2633,401,2596,2868,181,2294,713,994,610,2836,146,2634,2315,1885,2432,586,1918,867,1290,2865,1859,1352,1000,2232,2603,789,263,2094,2940,647,2631,323,664,2667,1872,1221,2243,602,2562,1824,987,1286,2819,2425,44,78,1893,2753,1043,2205,84,1465,1200,925,37,976,2527,2884,2151,2227,2752,1367,1919,1594,719,1094,1929,301,2414,2607,1484,2909,438,1692,575,374,2155,442,1927,2125,1551,705,943,2382,1951,2068,1690,1098,1107,2597,763,2176,1378,2263,1488,1174,2428,939,1474,1258,260,1391,960,2607,830,1559,1943,2744,1401,2090,1181,2573,806,700,570,2058,570,2988,2491,2332,379,2810,541,2510,2467,2059,443,1989,1084,724,2397,1833,1379,234,1160,2932,2869,622,2974,604,2483,1676,532,523,1177,786,481,1818,2073,838,2557,409,2904,511,2802,1589,1159,2019,432,294,1573,2272,337,1930,1732,2878,2139,2366,1230,2925,1578,439,834,441,1538,215,2057,1835,1681,15,2534,506,685,2887,688,1826,355,1858,2678,1690,66,95,554,2830,191,1908,451,2039,2904,2646,651,1136,1787,1086,2814,1807,1278,1364,2760,2744,599,107,2850,2422,1989,787,1563,2306,2092,2949,1512,1349,2566,631,1095,400,1030,2568,824,426,2367,948,395,2231,2198,2859,1493,358,2422,2013,1415,2971,460,1041,2692,1063,1329,2942,1217,860,1119,2153,2963,475,2861,813,375,2439,551,1908,456,724,121,655,2974,2136,1492,2950,633,1317,1677,1189,1234,889,773,1600,701,78,2145,1178,1518,71,450,1089,1648,293,2369,2032,420,2182,1273,2085,1759,39,2132,2142,2934,1209,1781,2414,2730,834,2517,576,2911,1591,2105,629,235,2207,2951,396,2670,343,1547,2424,2541,2683,1376,322,562,20,2705,639,1032,1518,633,1536,1089,1174,2834,1554,1775,332,132,410,65,1799,339,1769,1404,1448,121,1309,1428,616,682,1074,584,1150,920,99,505,2012,1978,342,2549,963,1616,2557,2623,1567,2650,2611,1148,2262,2463,1934,1345,1113,2030,890,642,1173,2006,678,757,2549,249,2395,1600,2611,2754,446,47,433,1887,2480,2946,2086,2860,2715,1642,1242,2421,1685,2583,1710,854,2429,2837,2282,2038,2731,2941,801,750,75,1208,705,2434,2367,2775,75,2011,932,690,2867,2965,2689,1639,398,2722,1035,1942,1291,513,1637,818,2104,2080,294,2242,2400,1840,117,1700,2629,2933,2515,2443,1091,1577,500,2834,2407,2222,2257,1011,1996,1090,1803,1674,444,1154,2370,1470,648,2092,1390,2296,2024,1420,364,2775,1865,2592,1790,995,1979,2590,908,2663,2765,1124,1117,504,922,2186,1800,2419,312,952,1785,1500,1023,2291,2104,928,2848,655,297,135,599,1962,1726,405,1478,2201,376,1649,1030,974,2357,2007,1529,2516,1415,1653,2641,2340,2182,936,1738,1811,1633,2115,1096,84,948,2820,771,1569,36,981,496,811,1292,211,2433,284,1020,1295,800,2592,2692,1655,556,404,1537,287,244,543,1536,1617,1002,1687,2548,2735,1433,2640,2222,887,1434,1659,2871,2412,1925,688,1455,863,2075,2837,269,338,2800,2070,2141,1883,213,1358,61,2279,2604,294,2367,2043,105,810,1350,85,725,1336,2838,539,189,2508,828,2363,400,1160,2991,2067,1912,2130,1778,1895,2427,1673,327,287,1828,2324,665,2789,2209,643,2762,2166,1664,734,692,779,2204,2702,1946,787,2984,2178,1911,642,2161,2484,248,917,80,2276,1435,2706,1054,273,348,1024,282,2086,2921,1188,2088,253,2020,1332,864,1746,1582,14,227,2047,1016,2611,1519,1696,2140,847,2575,349,1175,1375,2153,2819,1160,1024,1099,2094,1729,2273,2544,139,1503,99,1209,2613,201,2440,1363,2206,1542,1607,1236,2224,1496,519,1499,284,2852,1322,1095,2970,1480,1882,881,391,1345,1196,929,90,2511,273,2548,1681,1927,1617,845,2735,2642,1264,409,552,1190,2585,554,1285,1401,2262,1800,1856,2360,1065,821,1160,2967,2401,719,335,1853,56,1684,110,2713,906,770,831,569,1708,2753,1456,1309,2116,1012,1434,2795,2027,2508,1168,2605,288,805,400,2976,93,54,8,1228,275,2315,2608,2094,2736,989,2052,274,1348,707,1956,2000,127,1532,365,738,793,1874,336,1094,356,2331,1242,2195,2890,2842,88,2524,2285,2060,1495,250,2761,1116,2991,1084,1656,2615,913,1189,1610,1736,2239,425,1934,962,2958,1028,2361,2753,1107,1151,2274,1892,919,1226,1645,453,1225,2275,305,1433,2639,839,1086,2615,2702,1487,2462,803,1823,201,2866,1298,1057,1896,327,2444,1777,2770,2743,2324,2842,776,665,2855,1830,400,126,1415,947,1149,742,1570,2866,2252,63,2892,2523,2613,673,2898,328,2841,173,2351,847,315,1406,1493,741,308}

    765

    295

    Returns: 721034564

  88. {384,2109,1338,1604,33,1445,1086,608,2157,696,1562,798,669,2109,2787,2707,578,126,2532,2360,658,1476,414,411,64,154,1960,1207,2893,2843,82,2999,1634,1793,383,2544,140,1143,807,1088,1865,541,822,1269,2441,1198,1222,1857,537,894,376,1529,946,911,1929,186,2404,590,123,957,829,54,1338,433,2940,1847,1363,268,2520,2893,1027,1531,2803,706,1091,2999,2312,721,2008,2302,1401,1540,763,340,854,218,138,1217,2070,853,374,1149,763,916,1565,1710,848,615,498,634,930,2010,217,798,2124,18,2565,1924,2572,1516,1356,1219,2875,1540,754,1065,343,515,415,1265,1626,2600,1725,2636,2316,1967,1729,691,2629,2219,73,1014,790,1777,977,2716,927,725,145,1809,586,824,2066,1485,895,1561,1676,2174,1964,2944,529,464,2096,919,1687,332,2661,694,1831,1528,960,1353,294,24,1255,1275,2827,472,715,2536,1839,2048,602,1789,1024,1397,1254,1012,170,1623,967,2255,1830,624,1449,1211,2315,2645,1253,2261,797,2496,2144,2426,1216,2631,906,329,805,2812,1653,913,361,1903,1140,1065,426,997,1140,2719,566,176,361,2639,1417,2125,1899,2069,2167,582,2276,2376,1795,609,1773,1137,2963,1269,2496,1740,754,2514,1478,1406,1353,1763,1443,1480,1009,454,1540,1437,2327,1586,265,1535,1340,1759,1544,790,1550,480,2734,573,863,441,2327,107,1974,181,527,1849,2924,740,199,1937,2775,2826,1314,347,544,489,1524,1368,2679,997,151,113,1331,1003,2569,1018,1412,2293,2104,1319,1930,2310,1672,616,617,674,63,690,299,688,450,1901,644,825,1266,1354,1500,2941,173,1432,129,655,2500,880,1445,358,2712,837,2071,92,2421,1233,1582,75,2434,2674,2261,419,756,1731,654,1801,1652,380,829,1426,1732,1969,2209,1712,2325,2659,2680,106,2476,2291,1921,2283,89,1215,1810,2707,2075,2765,2316,506,2962,210,1586,1748,266,2461,2600,807,1757,2492,238,584,2025,1750,2346,1154,861,326,710,275,1486,1487,1687,626,655,267,1334,270,899,1612,1499,2855,1657,1186,2139,123,1491,868,1934,2447,2620,1014,55,390,1821,96,1746,1062,350,2436,675,1528,1718,2666,1663,2896,889,524,510,1582,1481,417,2383,2764,1263,1296,1518,894,1407,2289,1205,1035,1355,2871,2855,2680,2174,2572,1846,1162,2373,1342,1537,2472,2769,1642,2047,1546,2311,1632,439,2252,2975,1000,1425,2078,1850,2598,1795,2652,2209,121,2867,1432,1495,452,599,2177,2999,2502,178,2635,1912,929,1979,2017,2880,2983,1575,557,534,2123,337,713,2498,367,86,1535,1836,2010,1428,1540,1754,945,169,1703,244,2396,1947,846,167,1397,1995,1874,54,2163,2693,180,1229,1505,1112,2546,330,1648,217,738,1535,2673,217,2124,142,1210,1369,1469,273,1380,2593,304,2862,2838,1874,313,717,1149,2899,1629,1567,2241,1397,2600,2437,2410,1323,2826,421,1566,2967,817,303,2124,2107,1766,1613,2387,2723,335,2559,45,1246,2496,1325,2244,2438,843,2485,2807,2435,11,1600,1827,2598,93,245,1429,292,2309,1102,304,2929,1882,82,2944,484,1012,126,339,2432,536,1767,130,2467,1616,1015,2159,1808,1195,1490,309,229,1818,292,1867,902,1188,162,1777,676,2613,213,2234,2363,2508,682,2026,1253,451,1264,701,1178,480,304,2342,2125,1374,2379,1209,1896,2788,48,2,2414,1351,2076,141,1234,386,2131,1119,1610,910,2872,543,2598,2654,1299,1555,2443,1803,1323,2970,1739,1182,1272,2543,154,1654,1607,2069,817,1102,1276,2991,1999,1824,616,1252,1183,2616,202,2300,173,1383,2814,1110,122,815,182,1834,551,2733,2382,225,1068,1888,1544,2980,885,593,1703,2085,2856,514,1076,1583,965,517,2844,2394,1770,1859,492,253,945,200,2783,1381,1919,407,12,930,1409,682,83,393,2324,926,1065,274,2637,262,752,1397,1389,2468,1430,950,2718,1586,1032,415,2078,1457,1665,2306,30,317,1914,2585,2576,2487,2269,468,1063,1081,73,1172,1092,2549,242,1650,1805,1972,375,534,1647,598,354,767,2634,2113,1518,304,2596,849,92,2827,2456,2888,875,954,2872,1713,158,2868,1211,946,1340,701,948,2309,189,1234,2727,1220,2141,1050,39,5,2183,1962,993,1163,644,648,2024,1138,2751,1609,1330,975,1769,345,1621,1864,1669,313,1354,838,719,2673,1521,1636,2619,1844,643,2520,305,2517,1385,1481,2061,6,2652,2245,1301,1946,881,2701,2151,2436,577,610,454,762,1135,740,2556,475,83,976,865,2879,1096,801,530,2603,447,194,1328,442,2066,862,562,132,897,2986,2287,1632,2973,1020,1398,1576,1768,2969,2229,2044,943,2418,458,348,1471,2325,1188,1608,1228,611,2409,1433,2298,2689,1455,1465,1442,1589,1809,2824,2853,234,25,786,2280,25,628,1785,1536,1230,1830,1233,2330,396,2297,2432,2433,2903,2106,347,218,392,479,275,573,2578,103,135,2988,1116,1698,2373,2928,1002,1267,2539,680,2411,1391,2498,778,776,2714,380,605,437,278,2845,304,1923,812,2885,2834,1246,2002,2073,1828,75,657,679,1225,98,731,2109,100,491,1212,2309,1495,2617,1452,452,708,2178,1663,261,2739,783,2773,1280,436,2965,2623,2459,754,1573,2641,7,573,361,1465,1490,811,62,678,1063,1309,1503,2999,2642,997,377,1738,1094,2899,1378,2296,1148,1259,826,1931,1176,1564,894,2928,2894,1988,2411,844,1207,1117,614,2503,1550,173,1639,2965,2345,295,326,456,568,746,2576,1959,2524,2230,1083,2790,2655,188,222,130,2362,919,2814,1909,1747,2944,430,1298,1948,1915,2667,1586,1123,2626,1626,2782,65,2224,575,950,210,2769,2902,2617,321,779,1788,868,2115,1187,1029,287,1594,1486,546,2681,2180,2437,2874,928,2839,1957,431,2092,26,542,2591,496,1622,1052,2746,2342,1402,272,540,2038,800,560,1271,2878,1277,1767,2577,1197,1081,789,1868,1254,2158,1897,570,2688,2461,1880,2586,2701,1230,2731,579,1022,283,2901,809,2372,43,814,1733,871,400,1885,1298,1175,768,1448,1947,1254,1208,313,1586,1853,2066,895,2915,290,1566,2791,674,1660,2941,2201,2841,2096,2201,2696,1503,2904,2112,1571,1688,1376,2478,2991,1044,1279,1045,842,2766,676,2275,2118,238,1244,1414,37,613,517,1533,1309,111,2091,2105,2210,1006,2700,2008,2320,1032,1414,206,492,1583,1346,2201,1191,2726,396,2185,1541,2347,1681,239,557,1863,328,2966,2468,1730,2023,1259,2417,545,2872,1634,2601,2982,2656,434,2269,1633,2428,2720,117,2880,794,125,2294,2138,348,1520,705,1904,882,142,1787,815,404,1229,457,1367,1640,409,2071,1737,2161,1967,2216,728,1012,2566,2876,1739,2561,2734,1882,2274,2929,1942,1980,2313,629,394,2329,1388,481,57,2525,147,59,2125,598,1433,2575,773,1415,2289,1046,66,2243,300,1650,1311,802,1651,960,635,1378,1893,2446,2033,1674,2295,872,182,637,1100,2820,151,2053,1965,1798,2004,2919,868,2883,2607,2545,418,281,2021,2335,800,2071,944,2534,2252,498,1666,1499,703,1344,364,656,933,698,171,4,2974,2186,2535,220,1512,2702,1322,2354,1344,1080,248,347,569,2299,796,1861,113,365,464,2530,1251,366,350,1183,1436,1752,325,1405,463,2246,2898,2492,1688,1823,222,1027,1631,2867,2215,2073,1122,2947,1358,1615,2107,1358,1031,559,1598,222,1532,2005,839,422,2242,1178,1837,1256,1396,2732,1075,927,707,2471,1688,1173,473,1994,1894,1957,2462,2222,940,307,2553,1000,877,902,257,547,610,1559,1892,2150,2492,7,1803,2846,94,1228,193,2142,2217,2608,1453,2328,2128,2902,534,2525,146,1722,1304,2056,2440,1118,2731,350,1777,1683,2143,2593,1020,2150,2468,9,1247,1836,2877,2850,446,1336,1753,852,736,2645,2020,404,379,2833,1655,1933,2365,1517,725,4,2299,1591,794,2646,652,2673,2361,2788,1907,2316,1629,2029,2921,1504,2701,2873,1785,454,145,2075,2652,401,644,1309,1041,1275,1188,2795,2197,951,2437,79,1581,2289,15,2211,1230,223,2340,2295,2187,2652,1526,1939,820,1767,1370,2399,270,2257,482,1326,917,529,2821,845,1200,1762,53,304,1313,453,2434,1382,1707,1039,966,1299,1062,1656,2242,1112,143,1183,2670,2573,2825,462,385,570,1983,1204,2600,978,2685,903,1079,2149,444,2825,2279,1828,1672,2809,1826,318,171,1127,387,322,1429,2041,82,2747,2420,1902,2350,1220,2313,756,607,888,1797,112,529,2235,2297,1057,119,1959,749,121,606,1153,2673,1065,939,741,301,1060,898,200,1248,930,184,372,2126,93,2781,2115,2345,529,866,2928,2785,1076,2518,884,2247,2525,2362,1735,2846,1916,967,2708,1663,2458,2202,2867,2872,2887,606,1390,526,2946,826,1257,1229,552,2644,1487,1463,2240,1902,816,540,1220,2570,1026,729,225,308,1662,1572,417,2760,2985,128,1489,2657,1831,2923,1475,760,1586,2312,353,483,1329,2329,1983,524,833,2073,2046,2175,2322,2890,2795,277,2028,2643,76,2479,572,462,1227,2257,1723,783,2345,117,432,2718,764,2316,1686,788,2232,60,2355,953,1688,1334,374,402,2273,2594,2823,578,2392,2698,1882,277,1473,2316,1493,1233,522,249,376,1035,2411,2003,1311,827,1845,2979,1556,1614,2308,410,1114,2667,934,2490,2115,368,2669,2912,2178,1849,963,237,1040,2598,2567,843,1494,94,1412,2304,1996,2101,1617,469,1689,1829,775,720,1400,1062,1274,2654,323,2579,2096,1332,1693,1174,921,2673,800,359,832,2675,623,2021,2510,1144,2227,619,2071,1958,1146,2057,159,2937,796,962,298,1108,2256,1092,587,749,1316,2636,33,1236,1745,2192,378,763,2602,195,206,2062,2431,2221,324,21,1940,1630,760,288,1697,1919,1533,2336,952,966,2574,2729,2910,1203,529,217,119,744,471,4,110,145,1811,622,217,763,1286,302,1889,1038,1611,237,1481,1678,697,765,2231,2078,1318,1033,1300,404,1966,1408,1136,2743,1637,872,1065,1760,1898,2597,161,1688,221,1778,2695,452,1340,1886,1051,73,2872,347,728,1062,1475,2681,2197,595,254,1113,775,1946,955,2944,487,57,2691,455,647,2020,2554,2947,2761,2963,43,1754,2151,548,2783,261,2169,1624,1661,259,296,379,2064,150,30,2606,385,1706,1321,2920,2534,2112,2722,2442,2622,877,2876,2183,1800,2902,2852,1818,2019,567,1222,843,404,718,2049,1309,2963,2185,2944,1458,995,1816,947,1429,2767,2018,2611,2059,1688,1689,218,1926,2096,2785,1796,216,343,1962,2453,2032,1421,573,1187,2257,2105,2702,43,2173,2600,2554,690,219,2074,1412,1388,1036,1017,912,999,2157,1445,2687,895,2752,1445,1920,2449,2859,1047,1629,1900,2757,757,1565,520,3,2156,818,2823,183,724,1365,2528,834,593,601,1957,1749,1783,2673,1903,1284,1847,385,806,1810,1919,598,2922,256,976,282,641,204,2965,1004,1192,1586,417,126,500,2595,1933,1542,2465,1333,2267,77,497,1755,464,1785,269,946,2902,1120,1997,382,716,1370,1862,2548,2092,1991,283,1014,362,2543,1579,2587,2684,799,1478,2530,1170,1613,1273,1026,638,733,391,674,202,1966,1574,1887,1442,2248,2667,1373,2972,367,2954,2983,2571,853,1994,2436,962,1220,1487,121,2657,2060,2057,1749,2654,260,2931,1095,2737,278,1954,1984,1626,444,700,772,365,455,924,676,525,2593,999,1813,1179,1469,1255,1120,19,90,743,2337,2604,639,2607,15,659,1340,647,2936,833,541,2175,1873,2276,1029,2539,1922,1261,2999,1759,553,787,1701,2224,2332,699,872,710,1272,1706,2504,2848,124,2448,929,2166,38,2042,1779,361,1596,2853,1200,1137,1016,1014,1349,1998,2231,395,1719,1990,29,2180,2290,1166,1138,963,2563,1199,992,31,452,2834,960,887,2445,2640,2313,458,2125,1062,2193,405,1163,2755,2435,860,1300,2542,1469,1473,2585,1193,925,969,653,728,2185,2595,2696,2160,2615,2929,1050,2051,2259,2549,2032,936,1385,2753,2423,2813,474,503,90,283,2344,51,2556,1343,1490,2015,2632,2428,1479,2464,64,4,1058,2726,912,510,2694,1713,1931,2209,2409,842,1944,2347,1240,2361,283,322,952,545,2220,2068,1665,1370,36,2258,2328,2071,870,1894,1312,1874,2395,2730,2019,2749,454,355,2458,2249,2690,1610,2237,847,2524,2238,1398,942,1413,1792,1536,271,1730,2415,2193,715,851,2826,1350,1087,2056,2136,2824,2956,474,2942,1968,1196,1952,1222,1196,218,2008,2682,1906,127,1859,46,2193,1768,1096,1954,330,1097,1106,1572,1688,2058,2268,413,1525,2323,2789,2630,1746,2997,247,2217,2496,327,1745,710,1587,209,2465,2515,1292,1616,1779,463,810,142,541,1984,2502,1728,2265,2568,2040,928,1311,311,2424,2926,54,2030,1234,2563,2415,1278,878,208,2341,2838,1061,333,2420,175,2658,1249,2912,469,1741,2206,892,1375,1053,10,2541,1243,1396,1030,125,1276,2777,412,215,1115,305,352,2678,433,277,1378,549,1552,2335,2563,230,1535,775,2076,1684,2305,646,1568,1842,2890,693,1500,16,1884,815,1438,2996,2383,2578,2057,631,2240,1906,1140,395,958,1391,1228,282,2014,1423,377,2722,1480,2814,1921,1749,164,1161,925,2191,241,1059,2266,1739,1436,1279,748,1084,1188,616,1320,1848,2556,2851,2289,1439,2382,882,2347,1589,77,872,366,1551,445,787,304,1250,1521,883,408,315,2463,1956,136,76,2740,2497,2847,203,330,1585,145,1354,198,382,2945,1703,2377,1768,2331,822,1055,1560,2783,73,1089,820,151,1936,1194,1026,528,313,875,774,620,265,145,986,1742,1966,461,1678,2403,712,1595,893,296,2436,1953,2628,464,857,2772,2061,1393,337,1406,2676,1254,1785,2777,1672,97,2863,941,792,1708,1861,1586,2978,1869,2710,2325,1027,2092,2895,743,754,590,2146,1377,2467,2347,2717,1208,1503,252,960,982,777,2374,1282,110,2466,2855,40,929,668,1787,2905,2228,681,1145,1513,1123,2055,1161,780,1473,2574,1759,1206,46,725,970,2542,1785,2724,1478,697,876,1993,2382,792,1784,2459,1029,1158,1354,2309,2494,2867,293,1941,2931,2335,2154,1349,2634,1111,1108,2803,423,1394,2885,1563,289,1311,1011,1834,28,1446,2990,1427,1538,1195,1927,375,1339,900,2816,781,627,1592,2253,268,257,1541,2856,582,2850,1967,2822,999,2158,2835,2015,1260,628,1875,1900,2457,1671,2781,2157,577,469,2196,560,1588,2263,111,1009,672,690,740,1606,509,2032,1270,2593,2555,1392,2605,1149,549,2028,2159,2375,2135,2115,2073,894,1844,2549,918,508,1597,647,1218,282,1080,2168,145,556,124,2034,1443,271,611,1705,574,990,1082,769,477,652,1982,2226,545,2952,355,2288,1015,2524,878,1910,1872,1652,262,1348,1014,1236,378,119,34,1188,2411,1628,87,385,160,1598,1802,1590,1688,2021,816,1356,2758,1796,836,366,1309,360,1270,370,2316,1001,2779,2184,1329,1303,2379,1206,852,2626,1038,974,1890,427,1116,2881,2330,568,744,453,1090,2709,2590,439,914,1025,557,1473,2334,1379,1664,1530,131,1320,1577,408,2784,2655,714,2349,1753,2171,855,2780,421,628,1428,980,2713,1303,2313,1663,319,2086,1408,318,1291,1730,32,2343,2828,2307,1883,2831,280,1591,2795,583,1831,1601,1319,144,2527,2959,1184,2502,135,330,136,1221,828,594,1052,1855,2983,1118,2678,1830,562,1706,276,2496,685,95,1916,2993,541,788,650,1581,731,2453,1032,83,514,772,1779,1157,4,396,44,78,2056,1201,775,1620,285,1009,881,2066,1722,1233,593,2470,2037,2423,312,2886,13,2703,1605,113,1508,2868,952,1354,2981,2385,2455,2870,727,455,1731,2078,2002,264,1303,1076,708,2526,2239,2251,2925,2959,607,2626,798,2589,785,361,1138,107,2039,2626,1186,240,505,2284,1771,743,1272,1229,1166,576,2988,1973,2697,1676,1692,2782,470,2062,1758,1712,2407,2736,363,1856,2508,2499,545,1893,924,1430,2621,640,203,881,1102,1753,1118,311,2225,2402,112,1945,2368,2469,1336,960,215,1891,2401,2032,2783,1689,1068,2209,930,2303,915,2806,246,1482,2017,543,2031,2080,227,517,428,1900,1071,1582,1404,2660,1147,1497,697,2505,182,1689,2189,919,1151,421,41,749,1540,2355,211,1382,2354,2711,1726,630,715,822,201,1610,177,1280,458,1288}

    {2028,2420,494,2316,747,6,2023,2755,1940,2028,2203,2771,1047,501,126,1584,932,2314,2125,2502,2797,64,377,91,235,547,2390,1378,1338,1470,2537,1354,1195,1404,1082,2965,1778,2533,2639,1115,2638,2773,1078,396,1324,2597,1371,2095,50,1486,2808,955,753,1383,46,687,1246,257,1831,460,961,71,2673,1100,1300,2317,570,1973,1854,1727,1941,1840,419,2440,345,2958,1963,2578,132,880,2787,1302,236,2006,1394,2799,2241,745,545,1879,87,519,2239,935,2108,452,942,1167,951,105,1411,2572,1321,2578,1460,887,127,2014,1940,264,1240,2235,1225,525,2840,2019,531,1083,1722,460,1998,2836,1653,2938,356,649,126,2115,864,1024,187,2620,2431,931,1615,783,1043,708,1185,2977,383,811,1702,1543,2665,2740,2618,2824,2055,1451,2427,596,690,2742,1340,1174,1435,1175,1833,25,905,1431,471,2179,1491,1852,1467,1872,2254,1314,205,1511,1394,1026,2317,912,1433,2351,752,1619,960,59,2398,2144,1004,1336,827,2956,1404,85,788,210,2142,1298,1081,2215,540,1530,1814,2577,2497,2131,87,1071,361,2991,1365,843,2582,655,2401,1217,1663,808,1917,2072,1998,2637,2352,106,1944,1688,1181,430,1689,427,665,1986,1531,2393,904,2429,714,2419,2987,313,2976,2860,532,522,541,1826,982,281,864,99,496,1868,1318,1005,2016,2127,320,2295,1736,217,2728,873,660,1957,692,2350,1599,118,1977,2848,1431,891,2119,1694,415,1466,1703,1241,1306,1296,878,1366,989,512,1528,2792,184,617,1057,908,1051,2927,2109,2530,2063,2726,2207,2511,1073,2906,1949,1905,1093,1615,2721,1775,357,1270,1361,1338,1726,2775,1684,2928,2303,266,366,1050,1197,1967,990,178,1523,1087,197,1951,2356,1871,1971,2139,787,771,904,1957,1184,2549,777,1456,2394,2517,2017,2176,2182,2928,1864,434,17,2274,275,1625,2078,1693,2274,2169,999,2356,767,2735,786,2325,1677,2790,1327,1544,2950,1734,2293,619,1072,1292,905,2776,928,1001,2491,710,300,2758,485,2597,987,627,188,1730,361,589,517,6,1690,847,804,2576,704,1668,122,44,1015,410,600,2706,1728,1747,730,2884,612,2071,751,2654,661,2014,1120,419,2258,1309,1345,323,2086,2331,2316,1333,1186,1021,1028,405,33,2339,1680,1531,2010,1207,1321,880,2538,2647,241,2073,1118,1543,982,275,1900,1355,1226,2811,1739,338,1450,1498,192,2232,988,135,2209,1081,2872,1625,1273,478,1190,1444,1507,2579,1743,1002,1819,1337,1268,429,1851,2147,1432,279,2862,979,2956,2121,2542,1079,2084,2362,2916,1602,709,492,938,986,1419,1967,2577,1255,1019,571,2581,2609,1515,104,153,1998,469,1412,2328,1872,2637,197,2432,1383,1545,767,862,205,2452,1788,1943,248,2858,1348,567,1195,2573,2075,2609,327,89,2035,1396,317,554,1502,1653,2577,1600,2271,1456,2790,1987,2367,2321,2168,2819,2430,592,711,2018,184,2028,499,2768,1624,154,714,1096,2859,191,1344,120,69,2511,2398,836,2983,2017,2651,2639,2767,1994,1480,289,2716,281,1618,796,2208,1527,2599,2412,1038,2586,1776,1102,1483,1298,601,2223,148,205,1307,766,2866,2136,691,1912,89,2815,2040,1558,2397,1539,86,2677,2420,876,2474,1965,2003,1951,1426,2134,1872,2289,2570,2656,937,829,2705,1357,952,1504,2262,2338,863,1472,600,1088,2260,1777,2786,1298,2795,2721,140,1928,779,1328,1765,1150,2796,1473,1830,2222,2440,2867,823,1656,2299,677,313,496,2566,2111,2891,1749,1946,2469,2998,2160,791,1315,527,1149,2753,1718,633,1838,1925,534,1780,1141,1390,1241,1213,984,497,100,1184,1763,2655,354,621,2688,1730,1569,2167,1509,863,341,2287,300,1829,114,201,453,1348,1881,190,2006,1884,2195,1344,2371,750,346,2285,2386,2489,1795,2317,1428,513,2542,468,890,2416,61,2086,1915,2263,1180,529,627,570,2493,561,1188,1188,1333,2797,1896,2501,2139,786,671,369,1005,2932,2792,1220,1589,2647,126,2701,1965,342,1139,1696,1362,1744,103,19,1563,1716,2882,207,454,251,163,865,2358,156,1839,2983,2934,439,2018,1356,676,2673,1002,724,2152,1056,2954,819,172,585,2324,2837,235,1130,1240,222,2042,1336,1615,1052,398,3,2433,1529,1382,2622,1987,2725,2552,226,1764,2442,2688,1333,2624,2652,2239,1872,2556,2176,1289,545,388,2745,2983,2609,1535,1873,36,1952,1799,712,493,1173,751,502,1982,404,1289,337,841,2608,971,2674,37,1023,1550,1055,1653,309,651,2548,2912,48,1487,1848,406,796,2065,2112,1970,1981,2988,2117,221,2474,884,1870,2917,1636,831,689,1672,2137,1081,1654,2049,2143,2965,1661,2353,580,408,2054,1574,583,2232,1112,600,2703,2610,1398,614,919,8,677,1321,403,497,549,2973,949,37,2796,275,840,148,1399,1533,539,1955,2216,719,1738,562,1826,2075,467,53,2585,1311,652,627,2212,406,1686,1643,882,997,166,1298,450,2190,2531,1383,2520,1786,1077,1487,2152,689,1102,2233,2605,1468,1768,783,1352,1912,477,2454,523,145,1994,2181,1587,206,2372,2971,371,2333,1503,1638,807,755,2556,1858,1338,2492,897,1385,986,290,800,1904,2583,1804,1270,1822,442,1665,103,926,1216,1433,2610,2994,555,1037,2570,930,904,1537,2521,2021,201,2097,1768,2366,6,2573,1994,1825,1912,573,2167,1123,1485,1054,271,140,1537,2335,61,1782,2523,1432,642,1747,2551,686,1751,174,2278,2384,1684,877,74,1161,832,2806,1558,2225,2668,1481,2627,2396,315,774,1635,1340,674,798,2820,1981,782,718,1850,2639,701,2420,1224,1826,1860,1336,2372,2207,1992,2145,1394,2183,490,109,1356,1501,633,1612,2509,2088,2721,2657,581,123,760,1317,1099,1295,1578,1783,1981,806,2663,2995,99,103,99,2574,1140,1609,1940,2417,731,568,650,0,2022,2390,1013,1341,591,1465,2222,1049,2968,375,1429,1166,2564,1579,1445,736,1647,1622,588,108,83,2805,1308,52,567,443,733,2052,163,397,2897,1872,2859,2540,247,2251,330,2377,462,2780,432,2690,1212,1649,135,501,317,116,2180,2179,145,543,906,428,2483,1709,1120,1737,512,1546,489,486,316,749,1768,1411,2580,1109,1110,2057,110,663,1654,2081,2794,1445,2568,847,770,2379,2790,1817,334,2295,645,1535,1514,264,1336,1889,912,277,1008,376,2559,762,2364,2494,929,1494,206,2788,2357,2826,1754,2529,615,233,1095,2075,1348,2106,402,1153,618,336,1878,1445,1835,452,881,1982,2456,1850,2782,80,25,2835,123,1010,923,401,1907,1354,1812,734,381,555,2744,2274,373,1354,2964,1358,26,797,1056,541,666,1313,304,850,1457,2800,1760,1588,1765,2429,2984,291,2522,1756,679,2036,1226,871,1672,2478,1806,210,518,2986,598,211,1061,2286,2632,2160,984,1293,2110,602,2445,354,1155,516,65,1747,1092,2567,1670,2629,2574,73,454,2875,984,869,1159,751,362,144,2763,1286,788,462,1442,1081,2570,2484,965,2090,2200,1029,68,1557,1705,2605,1785,991,2043,1836,2989,1129,1684,226,2939,421,613,1713,985,2282,342,1694,1490,1581,324,1729,2009,1016,2770,597,2948,105,2705,1118,205,244,227,2370,2684,543,2238,2128,2873,2038,115,985,1689,1184,2707,630,649,2480,1074,1206,1492,407,1987,2567,1783,1258,2070,1679,2782,783,1879,1134,6,1237,2859,1761,2605,2485,1027,878,545,2154,2137,2885,72,1540,1558,251,404,2556,1057,2310,234,1298,2574,1641,21,435,328,377,2263,835,1562,1236,377,1885,226,463,742,483,984,905,2830,710,1820,210,2578,57,1881,1474,2523,1622,67,1458,2638,1716,1158,22,2735,2557,2865,878,1645,2001,2818,2722,237,2079,1222,2326,2740,2543,2103,1257,2742,1143,2008,1441,907,896,1606,70,1051,2867,1382,956,2335,2616,1561,894,2928,852,737,1682,2067,1841,1743,1019,2861,2281,777,2420,893,1138,1300,1892,688,1294,2765,1315,2991,2060,1359,2840,2488,2885,2392,2988,1841,2007,2414,2662,2133,2241,2672,348,1717,1721,1557,2864,1193,2909,2376,2826,2284,773,1044,635,2951,196,670,1283,1071,529,1565,2017,2792,219,1012,882,1323,1685,620,1262,2654,2094,2274,1879,1678,2312,522,1582,615,690,1246,2402,1876,1067,1069,2129,2794,625,983,529,2584,2926,1040,874,1834,1881,1632,2142,1315,1554,2839,403,389,649,559,2311,591,1102,2313,2478,2152,297,2602,795,1785,449,1188,1140,1338,2523,923,1214,1881,577,1646,735,1827,1893,725,205,749,206,1540,2270,1008,2104,652,2252,2549,2354,266,2413,2842,7,2560,2400,739,2747,231,185,1462,2203,42,1130,2023,1673,2793,1331,2272,546,2134,2788,1267,2470,2908,2032,172,76,1589,1988,2829,667,155,1483,2962,2362,2639,264,2344,516,500,2481,2810,2804,2957,81,70,2609,2126,950,37,1398,2825,209,101,1583,1874,1924,348,1968,49,590,1477,2292,2153,690,1700,179,998,403,211,2892,876,2475,1832,2006,1309,6,351,2718,1267,1431,1561,2593,2470,2203,163,2040,2102,2180,2120,2999,1332,453,537,1714,754,429,2197,1384,2670,1189,589,451,2116,162,714,1081,2232,1120,2502,249,2198,2442,1372,1721,2937,2953,331,749,2671,2203,2335,1965,289,2224,358,2450,2524,1179,459,294,466,992,2087,1535,2992,214,1589,2486,2506,1627,2975,1214,2798,1678,2122,1983,1939,591,1946,2937,1699,2021,2981,350,2093,1200,1267,1830,2103,1736,2550,1619,2388,2563,2114,1923,2763,62,2826,743,549,968,772,1691,1665,2626,969,2798,1213,2690,1695,5,1720,1966,2933,761,2834,440,821,1922,2406,210,636,2970,2929,438,219,538,380,529,722,2150,828,560,1188,76,2128,1343,97,684,2501,2436,2151,1903,2098,664,87,2183,2930,2731,1233,2671,868,2595,264,254,504,58,443,1335,2608,305,1751,2526,2864,2647,1111,1639,383,676,1292,2648,747,2570,2595,2750,502,1975,960,972,2914,1462,2933,1087,171,182,1085,2065,2163,2688,440,2052,104,411,1644,2090,2148,13,2060,1689,1132,2331,2112,1759,2651,240,1895,2393,2827,1125,386,2313,2176,2130,1408,739,1877,1322,2035,216,2048,1156,415,527,1362,1451,1265,96,2567,2,1553,994,2420,1038,2666,1990,20,2405,2097,2686,1767,895,1675,2409,1920,1069,2943,35,1538,1042,1246,1347,1202,420,521,2824,1565,2213,1932,507,2759,1794,416,1009,981,666,1007,1124,1410,154,546,1378,2784,33,2037,1680,2229,1456,440,1133,1427,497,395,1299,2106,1755,1982,2391,2612,2224,165,266,2017,1104,1807,723,1757,439,2402,1603,340,1908,2875,651,418,1586,139,1711,2359,562,1414,1045,47,674,877,745,2548,2096,1302,2099,2661,77,1788,743,683,2602,2211,1846,2839,5,451,441,1976,964,1004,1724,724,1349,1904,699,2303,1658,107,784,2408,567,1137,1267,650,286,1680,2612,2227,2405,1586,1195,2609,2381,901,2150,1417,1931,572,795,783,2154,862,330,604,326,2045,1889,2293,2715,2101,344,1169,2280,1056,1240,2664,623,2956,49,886,1200,2939,2653,106,56,833,497,673,1731,1056,214,1843,64,2077,1739,404,2170,2935,1285,1180,33,2978,882,404,997,1191,1290,758,1298,1866,1364,1044,1232,1081,2781,726,2918,2705,660,2429,2378,878,306,1835,2174,1426,955,959,2205,2652,1743,759,2016,1383,2082,102,1171,254,2984,754,2075,2090,1625,1160,432,1354,2762,201,736,2459,859,2070,181,2741,1447,1927,113,2795,1882,2562,2319,269,1429,1473,2452,2172,1757,1547,2781,1267,852,2409,1534,1902,2992,436,2832,1714,1188,2478,1993,2083,1381,2182,507,2984,2933,403,2833,2016,793,2218,1967,710,550,1112,2174,1188,2887,1810,88,2056,912,1360,1257,2778,1922,2955,1323,2257,2949,0,2948,1919,934,2655,2840,573,2318,1044,1297,263,1611,2132,901,2399,2622,1321,2066,1403,1245,2028,2125,2872,1958,1998,924,1656,1812,1535,185,1186,1051,1044,2999,2673,2572,1164,1772,322,464,1056,1164,2252,603,1844,1997,591,2436,2484,322,1201,529,1695,399,2827,448,2288,826,1324,415,2001,708,2932,2369,2061,1240,340,404,2010,2497,281,2266,2242,1533,1259,666,2460,137,1509,2478,152,623,1339,157,620,2439,302,111,1098,1320,168,2661,1165,1510,2052,371,2590,531,1522,1184,342,801,2929,614,2103,124,1681,1295,442,747,2624,1050,1921,2495,216,1901,1994,344,2204,2999,488,1101,148,304,2753,632,2277,463,141,2526,2540,1621,277,1871,2027,448,2012,1338,758,1254,2165,1655,2205,2983,882,778,2109,2223,2214,338,1965,1395,2849,1027,1336,2928,1386,1424,1484,2298,1330,698,390,2857,926,136,1309,847,2804,2900,522,1688,2824,1193,996,1938,126,27,284,2189,1152,212,543,2436,2188,2442,2589,2477,1518,1943,2570,1560,1772,351,1481,1620,964,2313,2347,2578,864,2716,1343,1306,1142,336,1310,2199,773,2824,593,2301,219,2637,903,2473,495,2498,2380,2287,1689,948,2966,1010,1339,1121,153,2500,1177,1215,2312,2748,651,2067,407,2357,1757,2323,2225,1,2609,1604,1475,2782,471,2558,2768,122,1254,2578,858,188,2222,113,1906,1461,1944,1161,1305,2029,383,1141,1982,47,1907,1231,1855,306,1950,275,386,732,2552,760,1496,1977,2330,2834,1742,349,568,605,1340,702,1768,2549,1681,583,1913,2247,1508,969,2607,217,2046,1684,375,882,2011,511,2961,1461,1416,2795,141,2783,2827,808,2933,2356,688,555,1847,1584,106,695,2435,2870,133,985,243,2551,299,1412,1281,1482,2516,1593,2595,2131,1774,730,1083,275,1666,1944,1464,2638,1387,139,1425,565,1223,2954,1946,228,2933,1561,2633,1946,671,1100,497,314,1242,992,2817,2471,225,101,1243,2921,664,2115,1063,1488,2735,2168,1071,2917,1356,1659,2451,813,669,327,250,1082,169,427,424,538,1605,507,2109,794,2822,134,2084,2036,1850,2556,900,2422,1738,1704,2895,1574,2036,2436,822,2843,734,1506,2264,2759,396,136,1966,1561,1087,2784,580,2162,1092,23,149,2368,524,2901,1107,2200,714,310,1985,1485,1287,2859,553,2425,84,2293,2704,1800,2962,2524,2050,581,1965,2756,771,2869,1381,1093,1837,2060,2311,621,78,2754,2013,2131,1025,1781,1772,2417,1392,2614,2025,1914,281,1154,2913,306,2625,2579,205,1772,2261,1831,2176,1177,2474,1976,989,2657,170,2716,917,533,1586,1715,600,879,2062,1622,881,250,813,1300,417,1027,2701,1415,1918,2543,16,435,2960,563,2956,1034,486,905,936,2654,985,2887,1555,2131,2839,1165,2140,856,442,354,697,1422,2574,2040,2455,1512,2823,576,1495,2507,440,966,2683,830,2649,2194,107,1178,2025,2968,2060,1527,2889,2448,2774,1325,2126,1066,2692,749,232,2471,98,1238,707,2781,1815,1038,2592,562,400,415,2457,2050,1620,2650,2926,2095,2116,1814,1096,453,2753,1126,1454,1554,2211,1168,1621,1922,1118,142,1418,1239,299,2782,2249,1904,756,2872,1704,2374,1152,2420,768,2801,435,1946,1124,867,1850,1103,2728,1235,935,2231,2584,2103,1060,928,984,803,2074,1747,155,235,1128,1349,2084,1104,1434,1420,1554,2827,317,2385,1048,1459,453,1935,2167,2490,1747,2699,2110,1243,527,732,362,1270,1727,1415,1131,2295,1252,1614,2185,1105,1334,568,440,1123,2547,1586,2126,2500,126,1975,2348,1554,1570,2071,2956,662,1940,163,1519,2389,2382,756,2089,2403,1519,2345,1358,2118,1196,2673,44,2639,852,1188,2911,2498,1473,76,558,380,745,2907,360,2300,2563,2577,905,1791,1440,2738,774,2295,1414,1064,430,1647,2444,1911,1880,170,2862,2503,2512,2932,1667,2482,922,564,56,1070,465,687,1599,909,1077,2639,464,1488,1445,1556,2715,2119,2464,2802,86,2284,1833,2100,2325,14,1572,347,2105,2524,2588,2637,905,2131,2863,2854,224,1998,2250,2519,964,1164,525,2164,2999,1292,1973,2236,2351,71,980,2021,425,1907,535,1580,1548,708,2802,1855,94,255,106,1620,2760,662,769,2335,55,1189,1549,2011,734,125,2513,1356,1977,920,1790,546,2334,1965,2900,2588,987,2065,925,182,1188,1989,1515,299,1657,258,767,1322,2790,924,2155,282,421,2702,454,2776,2567,1906,509,1598,2613,299,690,1961,1597,1244,1978,2872,2222,248,98,2521,2670,973,801,476,847,1663,2000,1283}

    2219

    1077

    Returns: 698553848

  89. {942,987,1714,1794,2193,2119,1010,2075,725,2212,2949,1441,2936,339,2927,2796,88,1917,1619,3,1993,1795,14,1187,556,2678,1327,1620,1244,1280,715,2205,2483,1712,1366,1284,1929,655,2258,1200,1303,994,1818,1713,644,215,2727,1718,1214,2888,2004,1175,850,2694,1132,817,2924,1749,989,54,1557,1537,1801,324,1565,655,2485,1205,1020,1188,2143,2742,1754,1365,796,2251,2923,1087,797,246,1886,2983,509,1627,264,840,1881,2417,653,2695,82,2135,1798,2983,2941,1061,2915,2630,411,2693,990,357,2544,458,1474,2866,677,2336,2933,733,1750,1466,236,665,1722,952,892,2462,2875,1392,448,1106,259,2947,1108,2245,2869,2796,2925,2136,1669,1820,1942,892,2866,1973,2654,1400,105,1924,2613,2959,1508,2634,547,170,438,2762,1119,2489,1296,96,2741,1868,538,747,421,1166,985,2175,891,1106,813,2114,2300,914,1409,348,1261,2748,1671,734,1266,349,854,1624,972,2431,236,2776,2013,729,2586,2083,2932,2329,1576,2079,815,45,2952,967,1134,2691,141,1158,2333,966,1006,1416,913,647,712,2821,566,1929,2801,673,1541,2858,1272,398,996,167,1924,1848,186,1235,2962,774,1272,1529,1146,1333,150,116,1184,2816,2111,622,1583,2227,2380,1345,2417,1858,1838,286,1075,1628,2394,1361,2130,637,2266,1560,1338,910,2848,1585,2150,2425,2002,2621,2501,2645,1896,1076,623,1291,341,2628,876,327,906,838,2014,1183,2192,946,280,1578,284,1444,2846,1,655,1975,1721,1102,2630,820,2665,257,1716,2016,1917,896,43,896,2052,1424,901,2261,2597,1075,469,1409,2231,2344,2988,2260,1553,514,1838,1319,1075,2459,2409,2771,765,84,2441,869,2037,1860,575,2612,1372,67,2758,312,1587,277,2901,191,2639,1224,1738,2677,598,2974,43,2902,1359,1822,752,1963,1695,392,1777,1699,1591,112,1586,620,932,1611,2981,2347,2087,467,514,2322,1361,2143,2143,1413,304,1602,2313,1954,2232,107,1843,805,1534,1777,2827,1865,2676,2442,265,1605,170,1871,1639,2557,623,2677,1251,1273,413,2984,1489,2901,2521,1803,846,1371,1125,165,371,1892,1815,1794,2986,1873,644,182,2696,1635,2264,67,2044,1296,1565,2870,74,289,87,1118,825,765,605,1192,2012,306,930,2399,2122,1059,2774,2132,1711,1694,2271,2446,1312,1142,2798,334,1293,1451,2867,1408,615,40,1280,2694,1432,2604,950,1957,1788,2745,361,2220,851,615,1771,1865,1490,1628,61,2781,2882,370,1549,2128,412,245,2158,1218,898,2541,887,2213,32,2067,1427,105,1330,2748,2468,2512,2869,51,2897,1767,1925,2010,2791,107,1754,2209,218,2500,215,417,2688,2405,778,764,1983,1346,2115,187,2996,814,1569,957,789,309,2106,144,2233,2864,159,461,243,654,2975,1376,723,1268,394,132,46,1495,1789,1442,389,2283,1256,155,176,2550,2023,2197,2838,2371,2618,1294,783,1022,2023,526,842,2144,1654,2114,921,1196,2393,2179,1510,848,853,2467,1180,546,2901,1529,650,1488,1595,384,2797,1007,1456,165,1662,2211,625,1212,1647,289,1001,270,295,2479,158,2868,1635,790,1740,1443,442,1512,1612,1532,521,767,746,1419,347,238,421,2035,369,2439,920,157,2555,844,1558,1865,2952,400,2711,545,1469,659,1750,1874,375,43,1984,2297,624,2123,1599,2880,49,1369,5,2929,137,1404,1783,75,1255,2841,1902,2041,2650,890,2901,997,1660,2349,1199,1770,850,1902,2783,1523,2706,2605,254,1389,2014,1023,2764,2854,2922,2427,87,2779,381,2880,706,1877,1308,2912,606,2395,2640,1734,1119,1951,878,1895,2290,2908,672,2678,797,25,2908,503,1326,1769,830,2169,1185,369,2694,1928,203,1219,164,2211,2194,691,1195,1630,1135,918,2220,1806,2266,437,547,2092,1367,2864,816,965,2272,1731,2614,2941,2186,280,1231,2361,2417,2225,2549,1067,1818,1651,1967,2668,2954,286,1568,293,1454,1315,284,2251,2796,2314,1596,1506,2846,1101,1256,1361,639,619,2901,661,2061,1217,711,1759,216,2733,247,1558,2465,2607,1924,1096,461,2036,568,2685,2324,2537,2280,188,1292,2671,1421,313,2461,1680,310,259,2769,1645,706,2335,1560,2450,2774,1295,2078,551,661,2202,1629,950,1212,2104,1694,2861,1034,2466,2139,2789,1962,1621,1083,2502,1256,307,716,1602,1262,640,2403,2258,59,702,226,1867,1469,2211,1704,960,789,767,1543,2530,2525,1720,720,1641,76,1744,1594,1447,1511,250,1092,2019,1276,2852,1885,423,1319,1752,1745,1539,2457,2730,851,1857,2844,1403,2132,1089,91,2133,2952,1301,2531,2117,2411,331,993,2492,445,25,513,2504,2195,2772,2548,1032,77,411,671,1196,2703,2855,1608,884,2290,253,1126,2161,47,2423,2372,2983,2556,1297,1553,1184,282,1720,2524,2934,1228,1841,2677,2203,875,793,1262,34,110,1425,274,1172,2032,1862,2837,1269,1253,2026,861,2047,1126,2614,1968,395,1147,318,2060,1629,2727,1684,1904,952,429,43,2344,860,386,751,1690,1558,2511,492,2348,328,2165,2124,2071,1688,476,2787,706,2644,236,68,114,1488,2068,2991,2924,1124,2043,1249,741,2072,2172,1624,2712,308,883,2846,1531,1875,1672,2304,913,2967,1833,2886,1124,2381,876,1891,1282,2779,2362,1038,1625,2441,452,528,606,98,1986,1220,620,470,1620,718,1461,2742,300,818,671,2417,2119,1550,2240,2426,2346,2215,2898,1895,727,405,1969,1551,1948,2288,1452,320,1979,1918,1182,2767,1590,378,1593,2756,2739,2275,2919,1740,2854,2449,970,2551,1495,2043,1998,560,491,592,418,776,364,2758,1696,982,2992,1161,1371,2980,1521,2063,2614,2002,1696,2392,1331,2496,1690,2790,44,1935,1452,507,816,544,2773,597,1882,2354,1186,1949,2308,2137,1452,1810,2854,678,2248,2965,930,584,1361,855,1120,2147,578,50,1499,1853,2890,314,28,207,1262,303,387,984,1623,978,555,705,254,1538,2778,673,1395,2263,779,2624,1193,1358,413,2401,2241,540,1903,748,1339,864,1182,2137,746,2298,2666,326,204,1863,2783,1362,1454,2319,816,2779,1543,274,2649,2655,979,701,1600,1794,859,1760,2647,1311,1652,149,244,94,2880,2546,1498,1399,165,294,1798,363,274,1165,2747,2643,1748,16,2925,273,2582,2093,674,384,833,1422,763,1048,98,561,976,2915,2545,1511,283,1031,262,169,1037,1730,959,978,880,1292,2820,874,1248,178,2990,433,339,2191,1476,1906,1779,1725,1957,289,1617,2130,623,2163,659,269,2331,562,2286,1454,249,1472,583,142,2525,1665,2239,1785,647,1702,647,451,497,1337,116,1133,1468,1255,730,27,1272,592,2486,2340,2557,432,1967,2630,682,2580,2884,462,835,1358,1051,11,963,1834,2015,2200,345,2492,935,676,2447,1351,1985,1255,798,2991,122,1203,1428,952,1717,2407,497,1203,1682,1924,459,2558,660,4,978,655,1070,40,869,2933,1427,1618,1242,291,1936,1087,346,2965,1310,456,477,345,179,2389,1933,1024,1105,1250,1396,365,1145,1780,449,455,156,560,2065,1418,39,2677,1243,1285,2579,2486,2359,340,1827,2857,377,1869,1950,502,2228,1430,486,1550,2893,505,438,1463,2014,2036,1871,2746,1190,270,156,1289,436,12,2989,1172,1275,2572,592,688,2825,740,1310,425,2211,443,354,2829,2458,1992,493,710,2493,2896,1254,401,791,435,2465,1285,1647,684,2538,1769,1809,215,355,2228,2836,2637,882,1158,1117,1081,1577,60,268,1263,1137,1578,2993,235,1726,2284,146,1821,2789,1507,13,1766,779,2866,2522,1209,1862,323,2547,2972,172,1574,49,1358,40,1912,1521,598,530,283,1497,136,1423,540,1097,1244,800,2881,673,2742,1723,1696,2467,280,1737,450,1507,2313,2258,1687,1917,1881,1180,691,2650,414,1995,2800,862,1991,1796,962,2511,464,2371,352,1593,923,2331,1567,644,223,307,159,409,205,1409,2921,802,2523,1328,1569,975,680,2992,2841,325,628,397,2767,713,452,1099,2961,167,2491,1306,2551,2282,821,1723,298,263,760,1113,284,1936,2415,2019,1348,1659,997,1231,1514,706,495,205,1183,2678,1021,636,1324,17,264,1900,1746,1554,53,2132,2457,2091,1305,2906,687,1370,1952,1974,56,1101,1134,344,2237,463,2070,652,373,419,1323,2267,1321,900,712,153,1286,1077,2265,1849,900,598,762,773,1185,2846,2665,2589,1336,1252,2897,2669,2561,1659,1207,969,461,341,2492,297,272,2861,1271,1742,305,189,1511,1201,2020,468,1189,1753,2812,1095,1426,1714,2763,1242,807,1431,179,1583,2375,1648,970,60,2146,1881,933,1452,2869,2676,2620,1508,2895,2638,1889,2640,2541,1093,766,1513,703,325,1429,192,2919,1601,1885,746,1816,2842,2393,2190,1278,2512,2049,1215,268,666,2325,2289,1463,2572,2876,1265,8,2431,227,2907,460,2983,121,2852,528,2907,439,1129,2184,2397,1824,1025,961,1064,259,1536,465,2050,479,2757,430,2850,2015,2111,1804,1678,223,260,2752,1219,2376,2582,52,2007,1361,1142,2383,2008,1922,1220,1929,2228,2677,1316,893,1841,777,590,2687,1897,1162,565,1867,2467,1877,2345,339,257,210,1431,349,24,421,692,446,2663,138,517,110,2601,2470,1314,2519,1230,2541,2966,2843,511,1014,2526,1358,106,542,2418,2028,206,2075,721,2616,618,1785,1710,988,2267,819,2858,843,2829,1566,334,1771,2467,2475,2735,889,2158,2005,2235,185,2555,1962,121,1281,2131,1799,2234,1699,856,2457,2156,980,1882,245,911,1168,379,2429,1880,284,384,428,335,351,298,2537,2845,345,1452,1091,2135,1184,992,806,1921,1500,2341,2544,1381,2378,155,264,80,1574,1080,65,1483,1698,755,1822,2017,1398,521,2445,31,1331,2679,372,2859,1753,2421,1006,2811,675,1087,1437,1547,2571,2486,268,372,327,950,1889,2537,2452,2125,1946,1596,2201,754,1155,1289,2806,2394,2859,2379,2650,1329,2554,1724,1399,2311,1499,147,1485,2002,388,1595,2253,355,2366,1417,2515,959,2894,2673,2011,1502,2455,1120,2308,1497,2380,883,1794,1423,2093,2685,2085,426,1856,1615,312,706,2983,2467,72,2913,163,1064,2667,1195,2216,997,1004,2607,1245,686,600,2313,1332,1465,154,52,816,1118,1282,2196,613,463,2385,603,1868,1503,2530,647,2614,648,2490,507,1649,2394,2740,2591,1845,1261,1919,785,1061,1997,1907,2093,1065,851,2277,246,1417,1822,1066,1018,1618,51,1940,1699,809,1370,1361,85,28,2242,114,2468,2238,267,1290,881,1257,1221,1808,2373,397,1254,2982,2774,2784,692,474,405,1638,185,2968,1709,705,1638,2593,2968,331,1752,2875,756,1965,1380,378,2174,330,2239,1959,401,2645,1965,1056,1740,2846,2713,661,434,228,309,1602,1003,2637,949,722,1401,157,1485,2651,687,1706,2087,2716,861,807,824,2204,1194,605,1172,2077,527,2060,543,400,87,380,928,1254,930,1607,1636,2677,2770,88,510,2676,1114,1897,2160,1457,2126,2950,2251,2925,2253,796,1240,1889,1739,1920,1654,67,2473,2432,1577,1614,403,1002,364,2848,2927,2300,406,1397,2660,2122,1633,2637,242,1686,1197,2315,743,2045,2035,1553,1662,2718,1797,2991,287,677,1822,2655,1592,2211,742,952,2556,2090,2205,345,1500,1913,2894,990,2064,2098,2474,2913,21,2611,2563,2363,523,1141,1617,1387,1758,2654,1787,1712,832,826,1514,2528,2515,2946,2835,1917,2893,2523,2096,1198,2309,950,2171,1523,524,1405,199,442,1685,753,202,2527,2211,1314,2302,688,2710,190,1410,1344,2133,2455,2503,1318,645,216,1376,2451,1831,558,987,1219,245,658,1047,2569,1765,2998,22,1040,1172,493,2272,1564,2339,1616,2506,2615,2713,214,1122,597,2550,232,273,2279,1562,1298,2430,1721,2792,2849,564,683,816,2710,2153,2649,1459,62,2793,66,1513,746,2828,2738,1716,556,500,793,868,2032,592,2536,688,2070,2520,982,1703,2925,1370,1360,1901,2123,2335,1813,411,2995,951,2782,603,1159,136,525,857,1222,1500,844,2293,32,1544,114,1228,154,1916,1334,245,408,1490,2978,234,2404,2818,187,2311,604,212,708,1751,751,2431,752,1368,884,636,2893,1648,2649,1332,1659,664,2985,1042,2308,416,472,322,1667,2977,2733,784,1049,43,2487,786,1260,2901,307,2929,2776,869,2315,2915,1794,2339,412,698,2829,1169,881,1597,174,2799,1533,2000,397,1148,2034,1613,50,1867,984,1811,630,2994,2564,87,258,38,1482,171,1736,486,1219,508,1404,1088,693,753,808,256,2845,2803,2543,1637,1211,978,2838,922,125,417,1580,1889,536,2036,1659,80,1154,2967,706,59,1644,1728,738,1501,489,275,2544,2089,1810,1926,930,970,1763,412,1745,1868,1420,2868,122,2420,719,89,1307,100,1976,209,1807,2399,709,2371,967,1815,573,2285,2128,2669,710,960,1536,1074,1703,2300,2405,983,1801,2162,2705,812,592,2982,741,309,61,1966,1026,610,1151,2815,2291,1596,316,2277,851,2759,1369,1968,1737,2789,2362,2707,206,438,2579,2313,538,164,2732,531,929,1637,362,640,602,1202,1615,811,769,563,1452,1277,663,90,2335,234,836,1371,2362,543,431,2495,2132,1874,1559,1315,1339,2130,1015,1150,2911,1449,2904,907,2722,2179,2854,2164,1904,497,1443,2816,1225,1091,2889,1327,2813,1169,1442,52,895,1995,1130,1657,842,1386,1375,441,2631,2303,2857,694,200,2469,1098,2760,1164,1627,493,2572,1499,574,634,1672,775,1777,2493,1995,672,2766,2358,950,1173,2092,1943,325,2056,964,1254,2,1836,897,2251,882,1293,1213,1139,2800,2948,1655,834,2645,2117,1947,1476,2366,2715,1479,728,2772,1529,993,1214,1811,836,0,92,2743,818,2269,1951,65,2013,2388,18,550,2957,657,2878,2485,696,714,2280,1670,224,2889,1302,2360,1505,1313,424,628,2426,349,1605,1558,2202,717,2485,1170,396,827,2545,911,745,1226,1013,2941,1794,2432,2037,1548,2796,802,47,2751,1786,1476,1752,1662,1208,2405,1340,603,424,413,1321,265,1285,2851,346,2531,505,1152,2824,841,2963,2036,64,2196,1209,1308,1951,1770,813,1590,2540,528,687,1463,1924,2991,2338,303,1901,1475,1212,498,2305,1548,617,15,2697,2168,2402,1177,340,256,71,1583,602,1284,1226,281,1843,2282,760,2998,1032,2693,2889,429,2692,2386,1075,1407,2786,1788,1005,2001,1247,174,316,1570,2453,2184,894,1802,1737,2179,381,1553,1345,463,1995,265,1432,114,2998,1227,207,2473,703,1805,2331,318,1240,1394,1715,46,1888,2208,446,2600,2927,1390,159,1605,1887,2805,1843,2488,937,2844,2143,364,1970,1208,1187,2955,2850,1926,1737,2698,1966,1320,1829,1879,1671,369,1275,1598,324,2209,909,1470,1206,976,975,2592,148,1887,2531,2900,2782,670,1177,1839,2752,2107,746,571,2991,2226,697,395,691,177,146,62,2662,2642,1918,1956,1656,1510,643,1900,215,986,1959,2357,1786,2593,1065,2832,1604,637,1680,206,237,2174,2210,733,1236,549,482,2484,1818,862,641,2767,881,1106,1908,249,466,1980,1564,541,2472,813,1882,1878,30,2356,853,2497,1151,2357,191,1530,1060,817,2650,1938,1582,386,2085,2137,743,1968,1741,362,2818,107,1319,283,2062,2559,2734,2451,2243,1185,1930,2634,2113,547,213,2966,1549,1637,465,1411,1298,1688,256,2182,2140,434,288,2294,173,1029,2947,535,845,2971,2609,2152,193,853,497,2427,2875,720,1046,1234,2546,744,1647,311,707,2108,1726,1327,2457,2818,125,1727,2529,2680,371,175,1728,778,1140,2515,1078,1348,503,2202,239,1433,2325,1354,1855,2298,1815,2684,1398,1900,1599,584,2316,750,2258,2070,2443,2994,2087,1999,118,2117,1057,2978,2747,1132,1197,1156,2807,2362,1861,1720,855,2492,2115,2800,880,485,2250,1191,2984,236,2921,1516,1507,733,607,290,710,978,885,2312,2700,2892,779,2394,345,1418,272,377,532,51,1297,2678,2641,1173,2180,1336,2505,2481,875,440,2398,2993,1012,2216,2119,553,2646,2593,2410,1096,2625,1095,2984,2848,1242,381,576,1596,787,2793,318,1081,2098,2932,277,80,2143,998,1198,795,1706,2223,1931,2884,2553,971,1089,194,2726,292,480,2251,1366,64,1457,2776,2786,2689,2650,1588,2473,2246,2413,1769,2257,1613,2432,2416,2061,1838,2394,1267,2001,2036,2969,2689,2220,2809,2486,1244,2938,1022,2252,57,1068,2178}

    {502,2409,1102,2111,1627,1613,1912,303,1187,2455,850,964,1887,902,1037,1757,2057,2376,630,1284,178,518,1740,1809,1648,1989,1423,2475,552,2951,459,1387,2181,5,1620,1347,2337,2952,1693,708,1366,1416,894,750,2292,545,632,2820,1787,2029,960,219,1322,2903,329,2816,2846,2894,1831,1002,796,2477,2342,2369,2354,2509,2454,1388,2108,652,1106,592,2484,1338,1327,1953,2981,1301,268,1213,429,2113,586,908,427,2480,1797,2847,595,2607,1314,240,2046,181,529,943,1481,1378,1777,101,49,2664,344,349,1462,167,1515,2365,377,731,993,1764,2179,1610,2799,2979,1380,392,1714,227,2719,2018,2261,580,1860,1511,2739,2453,2793,1279,2739,1390,2009,2274,76,281,1606,545,1578,1923,2286,1609,391,1524,1151,559,109,709,2126,2678,1445,2554,494,226,429,705,1899,189,2592,1867,1028,2120,19,1683,420,1946,2614,98,1424,2959,858,697,1187,2343,1762,2082,335,1030,366,2979,512,2612,342,1925,888,1028,647,2870,2746,1543,2640,2839,1233,866,2880,712,1534,174,543,2983,2974,2481,916,1632,2445,1394,2028,1258,1191,2659,1596,1270,699,936,1894,2509,616,1462,708,2009,608,1402,2119,2439,661,241,2930,1090,1423,928,38,1732,259,2765,727,570,1912,412,2323,2936,2016,1380,2614,1735,1600,1123,1295,1864,1697,2842,1537,1742,2210,2591,1660,1965,2311,1302,2985,29,461,1613,30,2262,919,273,26,2802,187,2785,1061,2664,2557,282,2055,2020,590,1860,1070,1571,2842,2716,2604,1494,2831,1478,1946,565,157,1053,1123,349,1793,1045,1811,188,2531,1987,2752,135,425,1092,431,1320,2400,1401,1125,291,1851,2452,2646,1425,631,325,2034,2737,973,268,1014,2909,870,567,419,794,1047,2327,602,491,1111,2292,1673,1557,625,1955,1668,2595,5,302,160,1248,574,1666,1325,1352,2724,1752,1860,2214,129,954,393,470,1835,129,901,2534,816,1143,1608,1847,791,1039,1476,2879,2502,1825,237,2482,997,1190,2176,2115,345,950,2486,1684,1477,837,2119,883,423,1128,2728,1700,2046,1917,2173,995,2308,917,589,219,1543,1815,987,2349,865,2173,2918,2494,2128,2908,1412,2133,600,759,196,1675,2623,2870,2642,143,1481,1517,266,324,2118,1501,2147,1344,881,1897,1596,1868,391,2640,954,166,2720,2217,484,2151,1008,1441,2539,1301,2239,251,2997,1437,732,1514,1333,2877,1136,415,104,108,481,2770,2463,184,1342,296,2216,487,2792,1298,871,2415,2518,2854,2003,2857,2863,2632,1097,2937,1854,343,1393,1349,584,2295,1934,1960,1072,2760,1777,959,194,1823,424,349,1036,288,1492,377,1102,2539,1378,2643,2753,280,232,1394,2023,212,576,2507,862,560,742,730,2781,2694,460,1151,83,1945,2999,1708,1090,520,1901,2954,815,141,2027,2883,2196,691,2456,1134,1082,1339,35,1781,333,651,1910,1595,216,1514,687,1238,10,452,1309,1116,1398,577,1536,522,2594,760,1603,2980,2166,111,285,1282,2258,806,2162,1977,2761,1728,1919,982,566,283,1640,1891,2434,2921,959,886,2007,1552,2478,2071,1029,792,2423,1954,115,2808,655,56,1721,2544,1416,231,1434,265,21,993,1300,1659,623,382,1499,788,2719,162,2870,761,1452,1518,66,1317,359,280,1755,2593,344,2701,2682,2091,2247,2601,616,131,233,373,1583,1180,2461,1561,2218,701,1069,1391,2627,68,264,508,1889,2733,1930,457,897,243,207,2785,2986,844,2038,1273,2682,1218,2566,2,2419,956,1409,2448,1955,1353,2750,2306,2713,2177,787,2486,86,751,48,1849,1621,279,2236,929,1053,280,702,1972,2256,2585,873,2016,2930,1578,2736,735,1330,1525,1798,1697,1320,2254,2478,2276,2444,1927,78,2203,2814,499,2109,2029,586,330,1093,1591,1794,25,1648,84,2897,1811,2268,2286,2646,2597,2917,1985,1127,1233,331,1282,1062,6,2795,2841,2990,496,539,2184,1149,2633,977,1244,1044,1971,4,2819,1509,2602,2403,2889,930,137,1242,1271,1598,2427,1787,560,2577,2054,2352,61,355,386,1719,16,2818,1204,654,444,2358,456,2610,2677,1521,245,1770,1132,1274,2286,2445,343,1043,1696,2956,712,1027,328,309,1729,827,2646,2623,954,1107,2308,2994,1332,321,1094,2493,2800,2043,2026,315,139,2368,2777,1018,2544,2816,1563,2433,1355,804,167,2678,1041,695,1110,2924,480,1865,2536,2622,222,2031,2344,433,1441,117,1093,506,1471,1157,2303,2630,574,618,409,202,1084,2666,2944,1103,1239,2250,2427,2452,519,2016,1337,1800,2945,572,1930,2189,1733,547,1065,654,2729,1962,508,2834,2733,1214,478,2026,857,980,306,1138,1943,2013,940,1643,1158,1414,2208,2695,344,20,2734,183,391,2198,2723,1509,1197,2257,2958,2968,2764,1905,1830,260,853,1642,2024,133,2500,864,2300,197,896,1716,955,2547,2598,653,2370,1499,2571,2504,2969,424,1683,2437,1496,1548,2206,1509,2105,1295,802,324,1823,2391,2300,706,1403,704,1404,612,493,557,2023,2855,1174,385,67,2739,2020,379,1079,1688,222,1596,2853,1964,2237,1181,1703,1580,2593,2862,753,1528,411,1826,299,1012,44,2670,1320,2414,1902,55,1085,2059,2524,1828,1276,138,1119,663,1257,490,1493,2552,2629,130,2133,2220,914,166,2570,2291,44,1703,421,1033,37,626,1454,48,976,782,1176,760,703,2106,337,2445,1172,2166,1927,2273,1588,2905,1589,1671,797,658,1722,492,71,1758,114,1446,2476,1871,303,1926,552,1337,2362,2658,298,1085,499,1327,1382,1385,429,829,220,2881,209,1588,2930,459,1890,2503,405,2721,2733,2014,2879,1988,2058,107,2897,2605,2139,881,193,1279,1310,896,2768,1965,2334,1284,2376,1461,867,2500,2422,687,569,2704,28,2246,867,2682,98,173,2581,35,31,283,1978,2332,1301,684,2701,1701,1856,990,492,997,1213,1739,735,1951,1324,442,1221,688,1499,2355,2399,822,2438,858,1191,2266,2261,169,2562,502,1079,293,1681,2005,2630,2532,2590,2612,2526,674,1530,2088,235,1729,2637,751,2423,1246,638,2976,2006,1060,667,2325,2236,861,1672,1526,1288,959,607,1620,850,2335,1012,351,2916,928,590,2820,58,2543,2703,2981,62,136,2990,23,735,1533,2608,2159,2436,581,283,1138,1280,2865,2454,2023,2668,362,2785,1283,1946,588,2188,1294,2383,2180,2868,2567,2560,643,801,1893,1397,272,934,829,106,1335,2207,56,452,2129,1737,2157,1702,1500,222,938,201,1248,293,2081,1038,2731,2083,2674,946,2424,453,2680,1941,1660,1638,2101,1658,461,1065,1703,2991,824,582,791,132,1990,692,2517,284,2051,376,1548,1363,2037,205,2396,1913,2873,2335,2066,2086,806,38,1159,1935,2394,1083,499,861,531,1815,1348,2584,59,1758,1794,36,864,1228,149,1435,493,2802,181,1101,2014,1259,2124,1756,2910,435,341,830,2596,253,2303,390,1155,690,692,928,969,1066,1079,2804,1374,50,1501,768,1583,1596,1837,49,2648,1478,1007,1013,2436,310,1889,2030,2485,55,2841,2125,383,1487,1031,1966,49,1418,2811,2133,1737,232,2362,570,316,1474,119,2249,2757,2005,2861,1334,2758,2258,735,2797,1747,1631,2761,1244,2224,588,2494,2351,2335,2336,2453,2759,1352,2244,2457,2415,2343,2028,2140,655,953,2757,356,145,893,2005,1836,642,1019,1948,2317,2076,1937,1648,366,2320,2956,2012,2334,2754,336,2707,2843,2634,634,975,146,2681,1423,2086,2097,2154,1425,144,2383,67,1301,2589,1467,1729,1865,2536,51,2881,1826,2705,997,2599,72,2404,898,2859,1715,2382,2746,793,2143,1473,760,601,912,339,501,2499,2023,2454,1379,515,2130,148,1701,652,638,2940,2513,61,2670,1478,1096,2556,736,31,1714,1067,113,401,2145,974,212,1760,2755,306,1210,554,2188,2874,793,2927,2652,255,1144,2870,685,265,1216,1705,853,692,1351,2497,2816,1729,2817,621,2930,1954,30,98,2199,1423,415,2925,1490,2535,2921,537,1629,2447,1483,1558,1663,258,1871,2716,1791,2144,2628,2229,2673,1058,1364,283,1870,947,278,2400,1888,1555,964,501,1440,2033,432,2863,2298,2775,2809,461,2857,2860,2708,1817,1699,73,30,2080,2249,2132,1655,1165,2043,1357,1844,2453,2116,603,2699,655,1522,964,2726,1506,1915,2149,1264,2108,2094,2583,817,1377,1679,2909,651,2435,1576,2691,1583,721,2858,2575,122,1533,2102,249,61,1450,1413,2286,749,679,2631,187,1327,2109,1938,2320,119,1868,1458,2875,905,1766,1764,2322,488,1771,2360,504,432,234,205,2118,1914,649,332,1689,1354,2548,1621,2359,2920,1179,399,234,813,2008,2295,383,146,2149,99,975,2009,2828,2016,2313,826,2533,2221,1946,996,1516,1298,1871,738,1581,2113,427,1219,2329,295,613,2693,2721,1258,2417,409,2973,635,378,413,824,252,753,1124,2669,1223,1665,2842,1375,258,685,959,868,2299,681,796,2935,963,1568,1448,2001,1450,1656,668,2912,940,2113,411,2330,2960,2404,834,2255,2133,1171,2415,2133,814,349,970,302,1710,2228,2842,397,1131,1626,2310,1073,2973,1858,498,297,2466,398,1758,2486,2308,1135,2321,627,373,230,2360,2872,2983,2931,1624,1779,909,2557,1605,735,1032,646,1310,879,2211,2908,350,2125,2871,1777,170,2774,2928,1607,1611,1856,2952,2631,2794,1437,1299,2231,1292,1060,549,2854,2875,1266,945,2278,459,338,570,2909,1913,763,2655,1121,1484,2606,2117,2875,2731,180,2528,2875,280,2265,2155,1798,1933,2624,1648,756,991,1287,1301,2623,2466,31,2964,2603,2374,2972,1112,1423,940,970,2831,849,1596,2744,1476,780,2915,2122,1722,2227,2002,1812,1992,853,195,2800,2023,1433,2776,1569,2821,1445,282,771,903,614,1540,2079,260,2365,1572,2597,1784,1071,282,839,2350,1452,497,2080,2893,1495,2979,2307,1352,2042,534,2595,2015,1791,1546,1220,1016,1740,2294,33,405,325,1691,1373,1214,2326,1695,548,2074,2514,925,2714,1840,1306,2889,2779,422,1532,1558,2113,1328,2292,373,833,2477,361,214,2363,327,452,2944,1843,296,810,828,2824,1237,293,594,2983,2187,2417,1809,2293,1024,255,2107,331,81,52,339,2335,1327,1860,2889,1548,2708,2037,1294,2262,1127,2460,959,2631,1909,1961,852,2830,1127,1006,2591,1773,1943,2016,2583,2797,1225,1970,1806,1646,156,2364,209,1066,2508,2588,1383,2325,2353,1115,577,2935,2230,2095,855,849,1293,1739,1714,124,1196,2573,2630,1405,40,1022,117,826,2713,1962,152,265,2199,1169,2451,2481,300,133,52,2140,2925,2887,2138,1872,2848,700,1651,1009,138,207,2387,461,2336,2166,2506,97,906,1868,1281,2339,364,803,298,950,2609,1542,2614,205,1219,1679,1460,1460,622,2636,2708,1792,2107,1172,1982,972,2048,588,2553,2159,11,877,527,2116,2151,2158,2315,2937,2039,1842,2390,703,205,1530,1478,2169,1035,2731,1527,2267,178,468,859,772,1327,692,2715,475,102,2335,1394,2607,607,2541,585,1573,623,2570,2528,802,1177,268,557,626,2462,1677,123,208,1917,345,16,2675,140,1962,1322,941,2228,2619,2601,367,1707,1055,2635,970,1924,1086,1167,1584,842,975,516,1248,2261,61,2789,485,2551,76,157,2919,2956,98,1622,2084,1913,377,1960,1893,2103,2414,1056,2840,1742,1169,2969,2686,2037,154,2141,1859,602,2956,745,1674,1040,284,25,593,615,1071,1921,2457,51,2,2458,2954,2962,396,1408,126,754,1478,2717,165,206,1123,2505,991,215,2630,1460,1946,93,1876,261,346,1671,2614,274,939,1931,1558,927,2927,482,2796,2898,2897,1437,2705,177,770,1846,1040,454,1017,484,1682,95,2486,1519,2741,1040,2177,1185,2067,1957,821,1368,1153,741,1664,1376,2226,221,301,1439,404,1914,2259,604,2319,1232,847,2311,958,2367,671,327,1610,928,999,1310,2254,1706,298,1581,1932,245,1241,2248,970,978,2643,1949,1052,993,1944,1354,2078,2140,831,373,2101,1648,2166,674,341,813,970,2646,2122,587,2170,1545,635,2694,2763,984,1338,944,373,1605,1504,374,41,2703,2939,2578,1752,1534,1677,1535,2040,1702,2514,353,2529,61,1151,2222,1101,1795,1320,2335,975,1085,2747,2752,503,1618,706,2313,529,128,1797,2013,2936,1543,1464,892,2826,1135,1443,2690,1478,37,1482,1806,1776,134,894,1329,70,2021,2422,2108,2023,2984,1388,2342,591,1653,852,2647,967,301,1515,2498,2073,1586,2296,462,1782,676,2685,1570,2763,1844,1606,60,959,735,2953,2936,2551,872,804,119,2978,890,2384,347,639,2087,678,708,2308,2574,200,2708,518,385,1810,2926,1416,1919,530,1690,354,2092,1384,161,2440,1651,2213,1256,813,739,340,1226,813,1680,474,1403,778,1104,2649,792,177,2656,2,682,987,1862,2548,741,1541,2023,2531,248,864,444,2063,2270,806,1727,1359,753,2025,844,225,1778,2023,2066,2464,1418,1857,1054,1355,900,429,1692,1817,633,1079,1520,995,931,2587,2377,851,2672,1819,2766,2512,1798,2134,334,413,1203,2471,705,407,1814,2841,2366,1441,2646,31,1979,2258,2592,1944,2487,823,540,2118,1341,1996,1304,117,351,1933,1579,2049,1085,2970,1556,1683,1689,830,236,2304,2291,979,1423,1774,138,850,888,1604,2942,1455,2938,264,2173,2501,1521,2661,2167,1465,461,1964,1242,2539,978,1939,1091,2847,2914,103,2795,51,888,400,2845,1701,325,1985,2856,2841,489,1986,2141,1425,904,2901,2305,1386,29,61,1258,2653,1382,1242,1883,1434,1104,66,2352,120,2718,1728,229,2406,624,1320,1544,845,2218,2167,1477,2147,1605,2300,1540,1941,967,1351,1486,2657,1737,1363,137,1305,497,2079,1798,2761,2860,1178,2269,1918,392,1920,1577,1134,2866,117,2112,30,1592,2098,2763,1332,1534,1596,2630,1508,312,2592,674,2530,2568,2045,167,656,2497,9,553,1994,2880,2301,271,2022,1866,604,2885,1453,1350,2181,264,1415,539,1567,1645,1399,926,140,689,1695,981,260,1768,1184,2300,596,2753,2368,2489,1930,781,198,2248,1628,376,1519,628,42,2062,2943,2113,349,2510,2265,968,916,2298,2739,2038,2308,2571,2762,628,405,952,1634,1163,1743,1991,1183,2455,577,51,1134,1684,915,2516,2426,1485,2053,2822,924,293,1693,2428,2295,2746,2749,1975,850,1013,720,2334,2833,775,1590,2895,2075,1785,851,1106,218,910,2098,1569,1312,927,1761,1805,1849,38,1142,2542,2288,157,2440,628,962,2056,575,2925,2725,2715,519,1790,2219,805,2480,1583,2394,2679,2605,1269,810,381,2823,597,1417,794,319,1900,1111,2170,629,2121,688,948,2493,939,2678,237,1208,2358,2258,2408,415,2140,1138,1225,1650,1006,1171,1958,2617,2967,1026,1240,483,360,2780,609,618,969,1965,2186,824,49,117,724,2891,2479,1740,2046,1142,1373,1742,2442,2194,7,678,1831,153,1661,921,1061,2110,1792,2810,2605,726,934,364,402,127,308,2069,855,1676,1063,2099,1148,2456,2846,1481,2694,79,2211,1336,317,2645,603,2100,2769,529,692,68,1133,746,199,2300,417,1527,1131,1438,2935,358,1850,410,1865,169,1884,2318,662,239,2023,1581,1775,342,1762,539,88,1995,533,168,2335,2142,2311,151,2317,599,1772,324,2127,706,899,373,1081,28,299,987,2264,2451,652,2185,1852,1686,2731,368,37,1934,1506,1474,2063,993,1745,967,1585,2375,1867,2041,2644,564,2859,1596,1468,2857,2840,2183,2394,2271,915,16,1011,2915,1714,276,1126,2880,2109,1594,1243,1788,2596,1911,2490,2841,471,1962,1301,63,1691,2937,833,757,1721,2897,669,2576,1902,889,2778,1091,2626,930,52,623,91,746,2360,1356,1920,1740,1981,1433,799,1576,211,1471,497,1582,863,787,2287,2148,401,2709,2111,2194,2565,1406,211,2107,611,1738,1796,1868,455,1088,902,1160,1332,2492,40,2451,2520,2676,2819,2435,2899,1898,412,1093,628,2909,453,2699,779,2170,1229,1311,447,2221,1514,1778,579,1289,1000,2702,1688,1220,2083,424,1730,1784,1424,1480,2196,897,265,669,1436,1736,69,60,2795,1659,1050,668,1201,1054,366,2281,2671,2788,1105,2916,1109,2328,411,2987,1832,2919,2064,737,2678,1100,1500,723,473,2683,2630,1661,2677,1971,1445,369,1491,2687,1575,2510,810,1626,1343,2763,2649,758,232,217,2412,1841,117,1690,570,2030,547,1193,1354,2786,2156}

    1801

    2578

    Returns: 29314479

  90. {412,1797,2386,787,54,1825,1622,1114,2908,1528,2283,2353,2538,2368,2457,817,1822,1045,1787,2659,641,761,1328,1621,1206,1613,132,1022,1875,172,1089,1820,1174,1501,2419,417,2342,265,2318,1543,1043,963,462,1865,2660,1437,875,1359,2121,2305,2811,1624,1424,1008,2859,2466,468,2086,2068,1393,2747,2044,688,2552,258,1136,1069,1291,2930,2741,1623,1334,1143,2861,965,2528,2744,1060,994,2726,392,1723,2928,2324,2070,1125,139,2689,117,948,1594,1297,720,2929,168,2429,2409,2519,2173,2331,2460,821,409,234,221,2260,1097,809,2332,2586,1071,774,2129,2911,1684,1190,844,943,1160,2949,2489,1458,1441,1990,513,2613,403,64,1553,1268,1668,2404,1379,163,2618,2714,2463,928,571,2557,2821,195,666,2220,237,42,2008,823,1717,2319,1326,2204,2827,640,1051,121,551,845,1338,1117,438,1853,2336,1722,2102,132,2957,2613,568,2592,2286,2185,1112,1552,151,1850,1538,952,1859,441,2836,2709,1457,1490,2703,2808,2811,2573,2915,1946,2743,2892,9,1823,2131,1338,2288,327,881,933,2661,2036,2560,2105,365,990,2937,2254,1898,2603,497,1611,2664,717,152,2255,2982,1331,671,2265,1247,2884,2118,239,96,2776,429,1306,1659,2040,854,681,2284,1079,895,1530,2247,2637,2494,1417,1418,2143,2919,2727,1129,202,2422,403,2165,2189,2326,312,1540,471,461,206,2297,145,708,1274,2923,2706,2399,2883,196,2487,2826,392,170,1767,1898,236,1213,2685,2049,2752,750,53,906,886,964,2991,2165,2888,510,2246,1404,397,2600,1972,1483,1676,1452,24,2737,1876,2780,2340,1393,1798,14,1462,695,1626,2817,1069,2216,77,1429,2727,1996,652,1405,1937,1076,290,228,879,1690,1144,121,1244,843,2497,1693,2539,2480,2176,1688,1733,727,2991,401,2024,416,2741,72,93,2119,385,2884,2574,2378,1834,1329,1241,2655,1203,64,1672,2544,2767,1396,1824,716,323,2626,2617,1152,95,1159,234,2030,2870,2190,1492,1403,1142,2156,1069,248,740,1134,1573,481,2229,2498,1492,1952,605,1128,958,2247,1288,198,707,2054,377,1613,1700,2301,1246,1837,452,75,596,1989,1867,1594,685,1473,1189,2112,272,927,853,539,2593,1439,1307,75,325,534,513,777,2852,494,425,2839,2279,2134,2043,2858,1889,818,1779,2426,2233,1494,1700,1316,724,314,2739,2028,1766,2824,1397,606,2860,74,1324,247,178,2568,539,737,1496,2077,2707,2900,2715,523,1412,2015,2979,1360,2839,959,1656,217,2757,1338,702,2749,1413,1039,2103,1779,2812,686,2926,2022,2343,380,2957,2270,530,1075,214,2840,558,1601,21,1971,254,1289,1322,2710,1151,598,1300,1161,1794,442,70,2294,739,413,595,2532,28,1446,869,2892,1525,1691,955,1010,1706,1353,1291,1370,159,1814,2038,625,991,611,1370,362,653,2004,1586,2329,2708,1600,691,2356,2047,2603,1489,858,1432,2821,486,1457,2163,890,2175,2450,2636,2835,47,2834,2333,764,500,2957,2050,1275,2924,218,455,2695,325,922,703,1928,377,1577,861,1445,2332,558,434,31,1987,2568,2111,2332,733,1261,177,1799,460,2560,254,532,1235,100,1754,250,1671,2003,1501,2649,2977,1289,205,1324,853,58,1984,1599,171,1946,262,700,2725,405,2706,1772,909,2760,1186,2758,72,1475,965,867,1580,2012,1179,1315,1410,2025,1329,1777,1470,2052,898,189,1749,2906,1186,1056,1663,1164,2125,1579,963,1972,1128,1169,1465,1861,1507,1303,1015,1991,115,139,2920,1330,2854,2117,790,2552,1191,2088,2183,487,2277,2248,845,2929,1656,1826,2010,340,1939,2838,2743,376,1758,1767,1369,935,2809,1430,1494,2198,2171,5,2162,1180,1116,965,602,841,755,1546,385,769,1692,935,1030,554,2951,2124,2948,2388,1617,1125,1436,168,2793,675,1071,283,1602,642,2559,2024,1885,834,469,119,1426,509,1849,1751,2110,1926,2380,2079,1496,684,441,561,932,969,1142,2882,957,886,1396,383,608,1058,817,2822,2272,16,2351,2902,1279,1212,2193,447,1380,110,874,2893,1571,2735,1538,1860,1631,1638,2116,2670,2975,90,1893,536,418,2220,442,624,1084,2899,807,2868,1854,2690,2414,2471,649,2453,2932,543,1099,1210,1144,1538,2455,1118,2883,170,229,213,2006,2855,499,1969,2231,1053,2963,2243,992,631,2306,690,1412,2880,1506,614,518,2546,2563,230,1518,377,230,2373,2712,2306,1565,702,2505,469,2014,954,2181,1610,1456,2418,2823,300,2774,2129,2073,576,1960,895,1074,741,125,2599,2402,2069,1892,1355,0,2817,2322,1756,1132,759,1759,1191,729,566,2507,465,2635,511,2968,1663,1377,1124,2786,1445,2079,1069,462,2231,2656,1045,1377,1208,276,2211,2823,2798,75,211,2050,1567,1739,1152,1962,664,899,2134,1517,2505,82,2230,1925,1503,524,2143,2919,2883,529,1467,679,720,1551,2105,567,869,1536,18,281,432,1352,2511,781,2917,1338,91,1335,355,1894,930,1455,652,474,1247,2213,649,13,75,391,1095,164,990,878,1325,1969,1683,2726,2913,1387,1379,2675,2026,1553,613,894,1653,867,767,1426,2329,2888,2686,1634,1685,1967,1469,1519,970,1382,662,662,2931,1253,503,1643,1356,2994,169,2907,1890,2540,1616,1740,409,1844,795,649,2666,2310,128,940,125,2741,734,2251,1013,1805,1379,2624,2553,684,303,1352,1715,1332,43,1902,659,936,1383,1478,652,2547,1816,437,1667,1969,2755,1051,403,933,2495,1996,254,998,726,1173,2329,2644,1136,313,54,1756,309,1724,1745,520,1517,1018,1538,2641,641,1318,1842,580,541,463,2041,1172,2009,1278,2019,378,2626,2329,1708,1452,1394,2160,2270,2430,2568,2448,2098,2954,404,402,150,595,2566,2450,1785,2316,2362,2186,2081,2677,970,501,270,1779,104,2032,2901,4,1390,2919,2911,1406,649,2059,294,1572,1796,980,1256,2105,2483,2198,1342,814,121,2084,1836,1519,1969,527,1286,223,1003,735,801,961,349,2495,2136,959,1298,846,2468,1366,2487,1706,1500,450,2620,324,1347,2584,1805,2815,177,2169,37,1826,399,1904,1716,656,1602,2766,2397,1041,2794,2055,636,803,2224,2846,1188,1675,717,2321,2034,2991,2382,862,1615,657,2338,1568,2700,600,1329,1457,1647,1323,1196,2532,1080,2678,453,339,2614,1442,1029,2915,2400,329,739,2323,2035,1182,903,2400,816,1223,603,1450,2442,598,2805,1689,1188,2844,1248,2198,1534,1922,2143,1441,2414,2359,2540,1397,29,435,1232,1979,533,2617,2512,1812,1586,2935,888,431,1960,1247,1940,570,1044,2728,2112,2935,337,1137,370,1425,934,859,457,2513,2974,1575,2217,710,108,1045,1233,2778,1157,1947,1721,2642,1804,2431,1766,180,640,805,2207,1369,838,786,2029,1838,983,791,735,2127,1104,541,25,428,2918,2705,837,282,589,1271,2193,344,2637,1728,2002,1619,1847,2197,1022,1878,1547,368,1873,1226,2841,1647,584,617,935,2392,148,2768,1120,340,1088,1006,2796,1547,441,2718,1040,466,1990,2477,1290,2006,103,724,1267,1175,1983,142,1239,1463,2372,1845,749,1406,1519,2035,2767,1404,1790,552,14,2262,2825,2022,2095,2565,170,421,1472,2318,2686,2873,1739,1796,1784,269,2330,2735,1821,951,494,2953,2941,1870,920,1799,1012,1271,57,569,181,233,1222,2795,2056,1677,2471,1099,1334,320,172,1773,2161,1152,2433,1588,749,452,15,2463,2850,312,1262,856,2267,2357,735,1696,303,2174,2039,600,544,2838,2568,2369,2406,1167,1619,2264,1501,1287,2155,5,2169,91,2752,1873,1425,2207,1869,1640,188,267,1494,600,948,2034,2098,1225,1828,1906,483,990,747,1174,2722,358,1832,2137,610,1598,1888,688,1059,1257,2919,2331,2036,857,811,2140,2987,2058,390,1116,2444,1258,1493,776,504,2155,211,1435,285,1709,758,2155,441,1338,1332,2606,1464,937,1627,2178,2469,2683,2292,2789,2220,2147,2113,1748,2013,2171,145,1952,890,2725,1252,504,2907,157,2046,1485,1908,820,1087,171,1344,2850,904,604,1518,1399,797,2078,1657,2831,1511,33,2307,157,2253,285,294,2007,1936,2493,1326,1342,204,1925,2306,2713,234,1475,1766,755,1400,12,2487,282,2761,574,738,2866,576,586,1803,1272,1985,541,658,1289,2252,2716,1145,1039,1358,2463,2532,400,545,365,472,93,1002,201,2119,2923,2584,1684,1180,2716,2348,753,2552,1609,229,2562,365,1533,706,1746,1311,1325,1354,633,2279,382,693,372,2720,1927,2154,2797,1152,1116,2048,547,1439,1229,436,18,1684,2954,14,33,423,793,774,50,185,1136,1705,766,2545,2498,2923,2698,2105,2339,573,2296,694,1104,34,504,521,37,2709,847,386,2549,2958,2847,2273,1316,2854,1776,553,623,847,1379,2102,941,1488,2510,2194,524,2080,216,723,2957,468,2786,2097,2540,101,1586,56,476,1681,947,1294,74,1763,1897,2293,2989,889,1688,556,1908,1810,2184,2764,835,2869,99,2246,1920,1350,2200,241,1858,54,1471,698,2606,1848,958,815,2418,2747,2649,2955,2387,1627,1901,14,2225,907,804,1727,2168,68,2450,2624,1640,2315,2732,757,1969,263,872,1867,1329,571,533,742,2051,2751,637,1154,1027,1625,470,298,831,2687,1789,732,102,1996,2961,712,194,1007,586,254,2978,626,2498,1553,1016,2691,76,599,316,2542,2721,1213,15,2067,1193,1151,2939,713,2393,271,2464,2151,2748,1348,2623,2831,171,1239,818,2106,1309,2210,1182,621,367,531,527,1695,237,368,2463,1958,1802,2858,530,1282,2876,1910,1309,118,1518,2965,170,1571,1196,348,1488,2567,972,2611,2504,1710,1556,913,1689,590,1064,2820,1549,2853,2550,2211,1781,2079,1784,661,779,789,331,1136,987,1557,2066,561,2519,1281,1856,2837,2104,2686,595,1190,1377,807,1641,2107,412,2802,1444,2925,2910,2883,1640,1032,2391,636,667,702,2855,2639,711,2855,2795,288,2295,2226,189,1862,2525,1453,513,685,1900,1050,2783,74,1188,1308,1170,1305,1906,1963,569,1849,2594,539,2154,1367,752,2211,2782,728,516,1494,170,1723,879,2410,446,2593,2921,495,1218,1005,2356,587,1763,2088,2719,2166,2217,983,118,2994,853,2844,1297,305,210,2516,2221,1748,2050,1801,2652,1606,1837,1689,1521,739,659,454,1418,612,714,2228,2405,217,990,2772,833,1206,479,2697,902,2881,966,2788,975,2222,2197,2469,2268,125,1115,2060,447,2511,2977,98,524,2754,628,1946,2428,1091,2484,1191,2186,1723,1925,91,1988,1797,1995,75,1915,104,189,1816,2163,1637,516,1620,93,1133,2716,2999,356,2994,339,1246,1418,849,1263,726,1242,1890,1066,2437,2730,291,1642,1514,439,2349,1346,1207,1312,1182,2281,655,2486,1331,2943,115,1768,2107,1455,2174,2705,1182,1157,212,88,2377,182,1995,1268,10,2229,1526,494,1451,2989,336,2065,414,1860,2792,1342,1914,2079,1430,1993,531,2263,1986,2486,1314,2454,2443,311,1912,1447,1044,1158,1356,47,549,730,1557,2616,474,2905,325,1742,2231,1551,2626,1233,1763,639,2728,1555,2736,2784,1904,955,2346,2027,983,1182,1180,2858,190,1602,2032,826,1461,2658,2828,628,614,868,873,2613,1360,1883,1879,1409,735,2383,934,1552,39,2768,1051,1284,1856,1087,1820,2627,2159,1178,2170,258,2116,2413,618,760,970,2765,525,1385,760,322,694,2819,1843,596,2682,2303,1350,2101,420,2873,1040,490,934,934,1486,620,2847,1524,1019,1805,253,2954,2641,1651,1415,1245,926,398,2593,991,2065,1305,1176,2332,1102,2190,2572,2352,119,466,1398,2232,2565,397,1543,820,1405,2105,1006,2699,115,2545,2521,2706,658,2505,216,2748,1155,347,2395,2475,2420,2165,301,174,2671,823,2189,693,2541,2511,1485,1363,145,2283,2781,1831,14,1321,2235,565,1348,2880,1271,2258,2179,147,4,756,1909,2681,2432,740,1330,2285,2697,227,2651,1840,2507,2376,1326,1898,2519,1065,184,592,1013,1361,1309,1985,2221,1425,1292,916,2246,239,1634,2332,1911,140,2374,736,2278,2108,1942,1020,576,2557,1585,1333,1393,326,1316,1447,1144,2438,2312,1408,2001,1125,113,529,470,2206,1040,1976,1597,1755,1985,2273,2085,1246,2492,605,771,2061,2872,2716,1073,2922,1718,1276,1538,1208,2033,934,1486,2304,968,109,2155,85,1727,2574,2711,2602,698,1419,1320,1914,1981,1628,1133,1811,1365,1272,1843,637,1560,392,173,2182,2388,2724,1381,104,166,995,1086,1997,2302,289,2540,2143,1270,1562,2883,320,548,592,902,2212,2177,1122,408,194,1805,2022,226,597,2370,1880,2494,762,402,1007,2234,1814,2256,1610,1290,2490,1232,2751,1467,2012,53,2771,9,120,648,1445,1092,652,2231,477,2677,1542,914,409,77,1978,2880,1602,2718,2011,63,1725,1849,971,703,890,957,1812,1960,2954,834,183,1966,841,958,2424,231,1038,522,1737,1773,1488,1176,2531,2853,2329,975,1995,2809,1540,1297,1680,2208,2709,2764,1517,2629,2237,80,339,2918,529,2014,2632,2290,2723,701,1131,1787,2856,2960,1907,1040,1750,687,592,2606,258,693,1979,2103,537,789,982,18,1960,1238,890,2487,1263,2701,2992,1644,1927,1067,1372,2239,1927,139,1544,2176,424,53,710,2809,904,2363,2531,794,2189,621,568,353,1995,1329,2669,1816,689,2056,1360,626,797,601,1970,1113,2120,996,2172,1386,2383,2467,1220,1130,115,2333,1418,2969,1813,2107,2646,2653,496,1324,122,896,69,460,2181,1911,799,2665,1927,2453,1938,1252,2360,1591,1373,1315,1817,2897,2102,544,345,1797,1356,1026,293,2971,2894,446,559,1129,1971,2331,1525,100,554,758,1786,2253,2782,595,977,2222,2560,1426,1784,732,2430,346,1211,2885,736,1269,938,1392,388,2813,1496,950,1133,720,234,2001,2139,2452,2933,990,1095,404,1522,230,2749,950,1260,717,1954,2738,854,1577,2364,1855,217,2792,588,1962,535,1438,123,886,2854,607,997,1066,1263,1555,1879,859,2199,611,1603,2638,1484,2064,2328,977,581,1496,75,1093,773,2967,87,2790,696,248,2585,1017,2891,1697,540,1578,2496,1093,2332,2030,888,2952,1852,467,812,2739,1995,49,132,295,2017,2948,2889,1748,332,325,1558,1505,1508,2189,2525,2610,1538,2934,2171,1201,2933,142,1591,425,933,282,2202,393,1221,332,1603,1249,995,2923,2129,897,1797,2123,665,1519,2488,1491,1609,118,893,2899,2358,2000,2083,1882,1304,628,2571,1711,9,1049,1105,1384,2640,2150,121,2840,1624,1748,2948,2862,2672,1258,2229,2706,1169,1857,1980,1675,452,2491,1583,750,1791,254,2182,585,468,2099,2626,1656,2734,375,1416,2562,1449,216,1479,1970,1391,2718,1271,1640,2473,977,1566,2692,776,884,1165,1433,2967,445,2626,2103,1047,393,160,1259,1068,203,488,1872,970,1552,1495,1983,1632,1162,2038,2613,1567,1468,2467,1044,2051,2935,469,2132,843,2188,2159,579,433,639,2314,1356,1053,2771,426,2100,2036,2911,1692,1212,1853,1374,1107,1790,1293,2044,62,1852,1205,245,1957,2589,1763,2480,251,154,2568,1807,2871,1598,2980,2561,1013,2961,78,1704,2580,2429,2755,2526,1669,307,923,1894,334,2865,2853,1447,518,2705,2445,1232,173,2555,1391,2255,2716,1961,1478,456,600,2230,23,263,2583,2265,1732,2762,1332,1896,2938,1831,383,2603,2115,218,24,1326,884,932,300,1681,739,1704,770,2471,726,1905,1521,2465,1935,1299,506,67,1113,2461,1505,607,2056,851,315,751,1793,2172,2858,2487,608,2938,31,2213,467,1806,2791,2020,2390,2062,2596,55,1913,1106,454,18,2534,2561,2709,2598,1646,1625,75,692,2634,216,127,2000,2001,2021,2662,1204,2756,2421,1148,1339,1250,2515,946,161,2584,225,2772,2587,1324,1630,2959,658,676,1513,2998,2036,1182,2037,456,883,1658,2540,62,2925,867,2306,2929,1134,2398,2509,163,2818,2533,509,1852,2590,2144,1133,2209,1842,2203,93,2831,1263,803,735,232,825,1180,2672,146,1497,1926,533,204,104,461,2826,2596,1113,1835,2050,2039,1053,2449,942,1955,631,1290,580,899,2425,832,208,424,2804,843,1138,2147,2880,2279,1335,1431,1844,2798,2300,546,1684,386,362,935,2100,2556,2985,2731,542,2576,2246,1592,739,2302,2073,1336,1246,551,2488,2170,1902,1849,2747,1322,1986,49,1510,364,1394,2155,2551,1908,2195,2006,428,517,2851,527,1033,1427,2130,1540,2849,1358,2067}

    {938,475,1651,1111,606,65,299,2839,1077,2445,337,764,686,2702,1884,2977,978,389,1086,144,1187,135,567,2188,860,926,662,2978,2904,1096,392,297,2755,2092,2775,2871,1502,355,2726,2501,615,2891,2693,2186,2604,2341,1329,1263,2662,1350,2004,586,217,1413,84,1227,2375,601,2486,2887,2266,1456,639,1000,319,2386,1213,1871,1763,1563,2628,2375,322,560,2498,1076,2267,622,1944,2313,1531,2399,2073,1671,1324,1783,2588,1168,1329,1903,584,1295,738,2399,735,865,1376,173,670,1002,1457,132,626,317,2152,2111,1288,393,493,2652,2540,944,500,1658,1162,2653,1166,970,796,330,1071,1259,26,221,1120,1258,539,2053,2450,352,742,2758,581,990,709,309,1559,421,73,932,2055,2624,791,2751,2427,1777,1007,1713,750,2270,1466,2080,1536,2461,706,1164,973,760,272,2885,1059,2902,1071,1100,1561,136,2361,2829,126,1113,2896,2062,1368,192,2714,1425,2380,1894,97,2846,2528,334,2685,1956,1494,478,33,1961,1785,403,2976,1874,379,2099,235,2226,1869,2230,2977,934,1677,454,1864,1566,2854,529,1428,1875,994,490,1724,2748,2336,1884,2172,1188,295,1577,265,974,24,2957,964,900,2431,276,1238,1377,2639,741,1389,535,558,2574,162,1877,1078,2779,20,155,410,555,2132,1524,735,2963,2101,2506,1409,1512,819,1369,1070,554,193,605,518,1596,952,2787,2287,133,2241,572,1749,473,754,1174,798,2812,1636,1401,2179,2158,404,699,941,2009,353,890,1016,1140,1341,2729,866,2506,2869,14,2402,2325,1368,1405,183,1481,1906,1260,2134,625,2341,1201,1797,343,483,2918,205,1266,2290,1009,2286,261,2875,900,536,1121,1508,2289,897,1463,1477,271,1605,2932,2192,1609,2231,325,525,961,1429,1859,2811,1756,2261,1340,2365,1523,941,1923,2155,173,1775,0,134,2012,1213,2957,1606,856,449,1662,1130,950,2280,1875,1712,1166,1119,962,2004,206,2963,2886,2448,2685,2996,104,2105,265,663,552,2508,408,2380,2809,2198,1840,2561,1548,800,2523,112,2451,813,2859,2730,2134,2981,721,2577,2060,2016,915,2487,885,1143,1347,719,718,306,648,1056,475,2862,1236,2625,2993,2936,713,1461,3,1829,811,445,1245,748,2514,2705,1516,1959,2564,1319,244,624,1932,2934,1782,1781,670,2248,380,2946,990,2479,2482,66,2590,1857,424,550,1587,2523,2249,2578,1601,1220,2997,571,2598,1898,2027,901,441,2174,670,512,18,2811,731,30,1619,2417,1173,582,1428,1964,462,2860,840,1312,1665,1115,1877,2416,415,2814,1239,1654,788,1090,2798,2407,748,2450,1426,2524,247,1650,609,2165,1335,1069,1364,463,1274,864,1315,2036,1997,1595,1969,2204,873,2331,87,2861,54,1303,2932,2557,1252,259,2242,290,1152,312,1214,1891,1589,2318,276,1892,2394,210,2923,787,2514,2636,1314,1159,684,819,2036,1522,926,2907,1254,824,673,115,118,513,443,688,1525,425,1425,395,2062,1844,2581,2631,1693,2023,2654,1520,1591,1841,2529,36,68,1808,1782,305,2163,808,2552,1172,2318,2617,2322,2794,890,1069,41,1969,2329,2659,2140,1887,2947,2569,1642,106,2820,1509,2172,1474,2845,2154,45,2909,1890,986,1668,1690,810,313,2214,332,1567,2991,1133,1176,643,2398,1471,716,959,200,857,983,1353,443,1880,2008,2320,1164,1280,2204,1322,1881,1869,1649,1554,529,2756,1678,617,1895,616,1023,1149,811,2604,2609,1302,1233,744,1498,1852,2174,978,2700,2696,1629,2188,875,662,1560,2189,1527,1241,1353,443,1894,1232,855,516,2149,2132,674,2775,149,1515,1391,768,275,2860,903,2214,966,2205,998,1833,2727,1418,910,1741,1540,1706,411,1869,1586,330,797,1940,284,2628,1291,711,364,1570,366,2502,1511,2229,2753,173,1679,1428,1026,745,2672,204,2145,1376,2827,986,2688,2218,1973,595,400,1823,2597,2695,492,2198,135,2680,1975,2511,1936,742,2276,2165,1158,1029,2347,901,147,1593,857,2614,881,2875,1269,293,340,2096,2299,221,91,2324,1366,630,2617,2537,1238,513,2134,1943,351,2945,1932,2116,387,960,894,2032,79,2672,945,1327,412,1114,1824,130,467,266,1138,448,1738,841,2217,6,305,1266,160,17,2593,2568,2890,647,2733,218,2063,782,1864,527,941,1460,1879,1042,1929,353,480,2973,2072,243,2554,222,132,53,2893,772,2677,19,1317,572,174,379,1928,1313,1036,1239,2878,2031,35,485,2586,1967,2175,2863,1325,693,2105,357,1381,1742,1417,1240,1613,2983,2343,749,781,1918,639,2544,712,2833,2462,1642,1338,2621,1090,1200,1739,856,2861,2850,1187,331,1482,309,1429,507,590,2250,255,2299,2005,1333,693,254,2615,516,988,1031,2146,369,1737,1443,1501,1550,1735,1028,1377,2447,406,2432,127,2447,1418,140,842,1551,238,159,59,2934,2685,1299,279,209,1574,723,2390,1604,2219,2950,2259,1768,1559,2920,2992,1960,1756,584,139,989,667,156,2298,1547,909,2695,1383,105,1614,234,1639,2662,1987,2228,1622,2327,2954,381,973,158,371,2536,924,1794,401,2783,652,600,1737,2757,2857,2154,1967,2854,2386,1303,1543,677,2332,473,2262,2255,934,1963,2019,2321,2816,2996,1456,1689,990,219,1595,2489,2314,2062,2798,1271,261,2265,1033,318,2225,2631,2364,2194,224,2980,946,49,2321,2883,822,2220,207,1971,2419,242,595,833,616,1844,1756,2926,359,328,1930,995,1867,1376,897,1421,2980,1790,267,1493,2655,854,2344,1294,639,2606,455,304,2990,943,2972,1566,2605,1495,2105,839,1762,141,415,1945,1414,2310,1688,2062,1461,1228,2597,1418,193,2044,2038,89,2201,2382,930,1393,1867,564,612,1332,85,2672,1199,2081,637,2793,93,609,1545,2638,2919,1138,939,324,2487,2667,969,65,1263,1153,2743,864,1694,988,1900,2882,2885,422,1333,689,8,1224,725,275,1346,203,363,1519,1706,2246,1508,2745,1760,2321,2437,7,1466,452,2153,1894,1615,2045,393,1743,2661,505,1064,716,2247,382,74,277,1670,1703,64,1051,923,2334,1301,2848,1795,1766,2747,886,2120,2109,797,2698,1793,763,2485,2917,1719,2131,2570,2434,92,305,2975,2166,844,2344,1062,1738,491,682,1556,1040,1539,579,2353,1227,2138,1924,1368,1499,213,2725,2518,2163,1607,649,1349,342,1689,976,2953,204,1686,1977,1495,482,422,2026,1,220,778,2111,2455,447,1462,1375,693,1150,2915,2942,858,2336,396,2472,2257,1243,2592,563,1059,1309,2590,1780,2177,260,2517,2007,595,598,1539,2923,1285,1248,1508,2742,1115,2196,1485,2724,620,1083,1145,1994,2264,2030,2227,93,405,205,445,1991,806,143,71,165,1450,2418,2074,509,412,1338,213,2044,1618,2198,2398,695,1689,2867,2049,2803,775,1661,1526,1597,81,1036,1664,170,2182,820,1043,1875,2638,1582,14,652,960,2090,2447,542,732,318,1448,297,98,1678,1601,1344,455,850,224,581,46,465,2663,1756,1227,1820,2527,2845,2903,1575,299,2018,1546,2706,804,1830,1379,892,37,1556,2380,1707,595,2443,2151,2362,2989,951,404,1291,510,392,2534,780,461,2164,117,138,1948,2622,2750,765,1371,2781,349,1883,1680,1139,927,1567,1501,1391,1118,1422,723,81,2438,340,1243,1712,2163,1819,1411,720,1014,1726,651,456,1112,1778,2887,1826,1593,463,2114,1227,1722,1684,2311,1699,526,427,906,1413,2669,1048,38,652,2493,2412,1146,1459,2367,790,2223,2112,1760,2838,292,2295,681,2082,918,2436,2839,680,2875,1780,2246,1551,2991,1769,11,1861,2807,806,2028,2089,2676,2236,2759,514,2321,2506,1259,153,1753,786,2862,656,1895,877,654,374,278,1150,2885,784,2530,675,204,1238,445,2840,1828,1378,1727,1739,2122,2726,2439,1653,40,2390,2133,84,403,1333,1876,1379,1946,1431,1855,1213,907,131,985,1843,1880,1635,2422,767,416,800,2252,1645,2478,2657,111,800,2309,2732,2739,2883,393,1109,2801,755,1277,1187,164,2312,2091,68,1524,1018,529,52,1590,690,841,1921,287,2769,2934,2103,1680,2435,2389,800,999,870,673,1826,1035,1297,779,165,768,1128,933,1022,2898,2994,2269,2675,1786,1049,232,949,2986,2155,2094,211,484,132,1734,1747,2342,959,198,1560,2204,1216,1091,2582,2579,1302,2042,2752,2385,528,2141,985,2092,2172,569,2308,847,430,1609,1740,1237,327,2502,783,1979,2735,924,2960,967,2537,2817,170,1556,2634,2396,2912,674,2603,2126,2257,2714,2619,2406,531,2865,1115,942,1192,1936,1624,670,1281,2302,1607,1989,2962,1463,1115,1612,131,2033,2399,360,86,2499,26,182,2580,2217,1046,2542,1764,873,2799,2182,1480,2596,338,2752,752,2895,2823,75,1770,43,2316,1231,2540,2487,1656,1106,2291,2198,2548,912,2874,2079,531,2931,1467,668,5,515,333,2540,2744,2053,316,2631,1331,2859,265,142,1661,683,1711,594,1559,2996,2311,961,2258,1174,1622,300,1337,503,595,2135,886,2165,689,1023,1313,1587,896,2535,779,1624,2628,1126,1956,248,1853,2920,934,1940,2337,1641,1674,2543,1638,2847,2332,1974,1722,1266,2230,338,250,1264,943,441,506,342,977,1658,1910,309,11,1629,1525,632,2006,1890,2148,1283,213,179,384,663,2873,827,875,2188,2778,2264,1424,1081,2342,2453,832,382,381,2147,642,1402,1818,14,503,836,1362,948,2531,1160,459,2312,1633,1895,2050,2911,1034,1730,2523,503,2502,667,598,689,2994,1130,2246,2853,717,496,2384,2332,2738,1194,1678,2859,693,2044,577,71,1268,2635,1262,642,2402,2692,646,2777,53,1351,2511,1657,925,1445,2249,2927,584,1290,1152,930,607,1438,1827,815,444,702,963,1925,512,946,445,457,339,2970,1949,1868,1940,1644,1849,305,1055,1376,1831,1176,2165,175,591,1188,253,2180,2702,609,1259,2174,2147,1469,2700,1537,826,280,1666,2777,1780,889,2830,1839,1436,2186,286,1999,1156,2570,1161,2366,2388,562,2128,2135,379,634,1504,507,374,2761,1788,710,246,1021,1333,2437,2546,1466,339,891,336,236,2427,698,264,2291,2543,1104,905,342,415,2973,1736,48,2940,2263,2498,1071,2810,1700,1790,620,450,1418,856,381,1524,1495,1406,2920,895,697,362,800,18,1085,504,464,354,873,1089,1157,1174,2798,2181,1233,908,667,1916,880,2618,1541,1064,373,2880,1383,2245,2225,2626,1702,2881,412,273,603,2307,1276,1595,419,321,2608,2852,1851,1166,752,468,2823,763,1941,2174,2163,3,1213,1314,2728,1535,1529,2627,1436,650,1209,554,538,22,2794,1001,1737,1383,758,975,2500,2520,1092,1714,785,987,1115,2575,963,1968,2008,735,2255,1846,2984,1910,229,137,709,2626,2683,475,2198,1423,357,2550,1548,698,249,199,466,2302,31,1576,87,1876,117,2806,1737,443,2929,2274,614,835,867,731,2154,1248,341,1640,911,292,2004,2014,2940,83,887,1771,350,2648,198,2034,191,1260,2804,786,1896,2956,1173,2423,1644,335,1395,1169,2411,2087,866,2357,963,485,470,1958,2975,1213,32,2808,732,1115,2935,2350,678,2825,1881,2540,1809,2458,1886,184,613,2187,672,489,1648,2574,2540,1731,2459,1239,1765,930,795,2617,2499,669,863,1087,2401,1171,776,416,1069,2576,595,1688,2562,1034,19,2271,269,1940,583,1264,302,2060,201,1638,1164,1646,2643,186,1509,2754,1184,2877,2043,2353,605,2447,275,2093,2441,2345,2015,1195,2234,2799,430,2263,2985,1629,1213,2057,2082,852,1740,43,871,883,2973,679,1247,340,1407,1711,1369,379,1061,969,2089,1290,1099,503,704,1180,2650,2558,732,783,677,352,958,1442,1471,425,775,2523,2658,2990,1486,1696,60,930,1243,1438,2076,2169,1391,2735,2854,2331,203,2444,2795,224,1744,2022,968,1317,2577,2057,1248,2943,1300,2024,1213,2889,1804,453,2988,1022,1861,2252,1525,580,1183,2015,1115,2530,656,2198,1652,1315,1611,1364,580,2607,1141,256,904,2832,102,2498,454,1413,1641,934,507,1581,1172,1687,474,2553,74,1787,1950,2957,2522,1860,1729,2312,2215,2332,1454,310,141,460,94,2540,1599,51,1648,1983,1117,650,1318,1712,1284,1863,155,1705,670,1640,912,1903,17,800,404,1880,2143,475,1919,1283,314,1054,1797,1138,2908,1567,956,1797,2549,2263,2317,1169,2247,258,922,1859,1060,113,2295,1094,2617,787,2362,1127,888,2446,1951,2891,2954,2948,250,1471,1156,2435,2885,1655,2585,268,2275,452,433,1069,575,1503,694,1510,2912,2265,2568,1103,676,1826,2435,2694,44,2244,47,2497,1217,2464,361,2103,1299,638,2540,2964,2842,2112,1182,2476,1077,2995,871,688,2206,2225,214,1852,1787,2380,2849,2469,224,529,2175,2745,1774,1238,2976,1071,2938,156,466,775,2459,722,932,2683,1933,2941,422,2255,2669,956,2394,934,1076,539,2016,2327,2295,1227,2819,802,114,959,2763,2885,126,1215,820,941,240,2335,1004,2527,1894,2521,523,2155,2164,2888,2089,393,1082,1151,1670,2959,1725,1753,2817,2920,2263,729,1720,941,2320,227,533,1827,407,167,1956,2220,2063,2800,116,1569,2799,1157,523,578,1202,729,1177,1960,558,2749,458,421,307,2773,799,1182,2963,2075,2105,2647,1487,1908,2833,929,2588,1660,1761,1168,2615,279,527,2746,2718,743,1614,2142,2612,2474,1995,1831,1052,1301,2841,2944,1346,2228,194,649,2741,479,1622,1242,1981,728,2864,1159,1347,1926,746,2658,1127,1721,1108,2858,1899,1912,676,1571,1300,699,829,2030,1787,2511,1657,819,1219,967,645,1356,2466,919,1521,2876,456,1969,2243,715,2105,631,332,2589,2748,1147,1927,555,1602,2455,1265,1417,1345,2843,1589,2813,2808,2400,1251,2815,1564,531,451,2304,1144,2240,1024,580,583,2882,814,1353,933,1767,1071,2601,1098,124,768,960,1857,2591,2916,983,807,2504,767,84,1860,2827,2379,2225,1123,170,2594,440,1110,1168,2882,1584,2793,2019,2725,2332,934,2332,2871,225,1197,584,830,332,1049,1864,2354,1910,2455,1254,2798,297,2189,2637,1235,2507,2157,2282,402,2769,662,391,579,1905,1815,1927,232,2319,857,187,112,222,2865,1489,2595,146,2429,960,173,1835,2435,1992,1518,2930,2470,635,1163,2116,498,2545,1420,2246,1172,1802,1098,2838,1998,485,981,1188,129,1309,977,1493,342,1965,1438,830,1682,992,1788,1583,1290,2060,2704,739,1731,882,1866,1650,273,458,2570,1981,930,2717,993,508,2008,252,1921,520,1368,1037,1773,2368,232,1255,727,2854,2071,1700,2387,2966,10,2295,1434,1810,1682,1452,899,2777,1296,800,2123,2364,197,2741,1057,2191,695,2507,688,593,2851,925,2486,2748,175,1953,1235,1063,1757,2979,1235,2187,1011,2882,27,416,643,2577,1310,615,1273,2140,2153,1800,2332,143,2974,1258,2542,55,1932,1315,540,490,2879,899,394,1401,913,2631,2782,1934,230,2872,712,1025,1864,351,2914,250,786,2503,2630,2560,1198,1982,619,2992,2022,2453,1072,2796,1388,2638,2862,1476,763,1135,1101,274,1752,2321,943,1260,917,2506,2208,2054,1243,866,847,1948,2408,2458,2673,1107,644,1808,302,2697,1932,2250,2627,1263,61,1891,1538,2228,212,629,215,1768,1886,652,2668,1609,1252,2626,705,1818,1440,494,461,590,743,305,2440,785,2481,1749,2673,1677,1446,1332,953,793,2,1604,2123,1315,1571,145,1514,557,1360,2794,581,2785,2181,2679,1616,2477,33,240,2228,2752,1673,358,1802,1701,1553,641,2226,928,288,1498,107,556,461,1460,379,402,1917,1608,2635,2770,2403,1308,1566,1414,2145,839,987,696,1528,2355,467,828,2252,544,1766,55,956,848,342,450,1181,2854,2882,2764,1877,173,24,1212,1163,720,2684,2540,2821,1488,931,2052,1263,1525,2740,2716,905,258,2167,1931,72,1857,2241,1904,1486,2645,2674,1270,1234,2258,2099,848,1799,468,31,984,519,53,31,2238,921,1813,1493,1357,2633,792,1960,2038,2618,1418,2857,2415,1937,1698,979,184,2255,2801,627,416,1727,461,2034,308,1166,257,532,2381,2182,1792,1426,1498,315,1826,2456,2371,1845,1315,660,744,1672,2193,296,586,1493,2817,2302,2378,859,8,1756,502,875,531,1185,176,972,783,421,2601,1071,1953,1044,1172,876,1280,1343,227,2144,1532,189,204,2252,1509,2935,1354,49,1326,637,2954,1166,637,1230}

    1339

    1814

    Returns: 822837332

  91. {210,1528,532,661,2220,466,522,1713,2847,982,2239,173,1998,2771,2293,587,931,712,2630,1567,249,1243,827,2143,2141,982,2078,463,1760,596,1625,2729,1214,1506,1738,236,1766,1751,1777,1344,809,1930,615,1892,1634,546,1191,2992,1484,1888,468,2568,1282,1120,1431,726,128,2461,2359,635,1863,1474,2554,2817,2485,2872,2706,1859,2443,1829,1807,2429,746,2560,2265,669,1184,2161,1976,2247,2058,483,2981,2551,1389,1218,1878,1923,2164,561,416,1961,2875,2268,2071,2912,1965,1109,2246,2559,319,2740,495,1218,1841,1524,1794,166,2795,2754,2618,944,2761,143,2214,751,236,295,2709,2657,2455,1048,1690,2317,2770,574,1490,1237,2515,2245,46,2130,1874,1246,2281,1515,262,394,688,1116,760,1182,2802,973,2766,676,942,737,2033,742,2886,1324,1308,1986,199,1984,2689,357,647,270,2263,1015,556,2179,2009,400,1841,801,917,1397,2628,1577,2998,2365,839,2157,2503,358,342,520,1689,91,1066,284,2644,81,2556,1226,1153,2871,1887,872,2794,924,2314,2097,176,1079,1327,2864,1040,2933,2923,2901,741,2459,2867,2382,2034,91,1091,885,1225,2239,2550,286,78,2859,1986,747,749,1850,1300,1210,2533,525,2237,2855,2019,2165,1897,2758,584,426,351,2414,500,1996,1389,387,2861,1066,1044,1046,2251,2199,1250,858,678,1864,2996,649,1819,262,503,2348,2753,89,1863,1750,300,1483,1819,1347,547,2376,1666,2683,1475,1489,2276,2087,1903,2898,1181,2861,2837,2472,1343,2061,2161,1176,478,1532,1457,1266,1854,2390,1744,2313,1703,2826,2843,1124,2911,1552,1130,2828,2563,1256,2586,2648,1972,2847,1002,1537,181,503,1680,2130,2574,2347,2655,339,905,1938,2062,2604,2135,2310,198,2066,1838,1838,1257,951,468,2796,1452,370,1446,2148,1118,952,257,2528,1312,933,597,2551,811,1105,2531,2814,2274,1299,748,333,1723,2827,2458,2201,132,1738,210,2354,2425,1218,2842,1717,49,2795,1132,901,2224,2783,2652,1350,1437,2301,1021,1222,2088,1858,1132,753,17,146,219,1318,2529,1423,1701,2994,1898,2507,1331,1393,435,1808,2487,2623,471,346,608,1009,1183,2966,1312,2001,1853,102,2190,271,1513,945,1163,1265,355,2968,1933,830,586,1512,1100,917,366,715,1893,387,1978,2568,2482,2548,1680,1014,750,960,1203,2257,1971,724,2818,2923,80,2132,93,2646,1026,1290,715,2996,2036,1794,280,2661,1831,1230,2869,1618,198,1910,981,645,2259,2386,799,950,2522,2673,1685,1426,482,2621,836,1997,1817,360,2625,746,2589,1385,2471,1103,1417,359,1570,1177,2478,2650,1626,2043,821,563,869,995,2359,1427,31,1245,1100,198,2688,1911,2672,492,251,2249,2408,1682,2184,946,2092,1589,2229,2890,318,2791,2813,1619,2166,290,1052,229,1193,2200,1751,724,2403,1146,861,201,942,1072,1161,934,629,746,1002,1520,297,1553,1729,1066,616,1600,1752,821,764,733,2809,382,468,378,2788,2773,2060,2054,1834,2473,1813,2702,1036,1988,57,539,1637,47,1652,2149,1953,506,1038,840,2418,2517,1737,2889,2994,62,2973,1300,1177,1823,653,2229,210,1150,215,428,490,364,641,2072,1583,823,1336,936,1625,2009,2709,1207,1426,2905,329,276,56,2584,1172,263,939,2656,2066,420,2396,2646,2048,2218,703,1663,2848,2328,1133,2272,914,2438,576,302,228,2529,2125,310,1152,1290,598,85,25,1001,844,2452,1961,1710,2433,182,1954,250,2444,1746,2975,1577,763,345,2015,2734,440,1646,885,933,2622,1062,1166,2247,399,2207,281,2478,1116,1560,2301,2537,48,938,270,2181,2696,311,1826,112,378,2746,58,239,1784,2024,608,761,2833,1515,2460,2131,321,1549,1135,2069,2577,2223,2346,2272,2954,388,119,729,2234,2691,391,945,281,395,504,993,283,2531,644,1493,2448,1547,1190,2447,24,884,1641,532,693,2558,1042,1493,1100,1897,2678,291,2439,356,36,638,1629,903,1373,1220,964,1385,144,521,1382,672,480,1790,1828,213,1279,2096,1871,2098,2842,621,1159,1428,1311,349,1163,1481,1487,1843,1052,526,988,1340,1320,1931,878,1824,2862,2614,2850,833,662,1273,1755,2600,251,1336,2727,1935,2698,1479,2029,2456,296,2972,2477,1792,1971,896,2826,1608,1446,331,1404,1072,2579,2764,1973,2635,346,160,1738,678,2826,218,1743,76,2964,630,2338,2651,802,1263,2764,2965,1081,92,1343,122,2808,190,1954,2835,851,2748,1734,1559,1032,1781,1916,2571,2417,2200,2847,2105,2485,2656,2851,1663,263,610,2202,306,1493,137,692,1334,1790,606,1548,794,542,2999,1803,2689,1719,1863,2932,2509,2675,2519,1715,1530,1858,86,727,1794,1488,1826,2440,1506,2221,2919,2483,1822,1984,1742,2896,144,554,2673,1697,1883,2848,767,53,2342,1838,2918,1759,841,904,1024,617,1967,1651,2156,1004,1583,1151,2036,319,1669,2764,1515,3,2006,112,797,46,2483,1135,1028,1424,1555,476,918,2291,1507,2556,2580,2864,2431,1675,2916,1527,2887,339,415,924,2117,2038,817,2752,1581,1620,2722,2603,2480,1550,1107,660,1727,666,653,1123,1230,924,2291,1400,519,143,1135,1114,1597,1440,1219,2331,161,2353,2175,1627,2340,853,2121,1916,2387,501,1657,697,2228,2291,2863,945,2878,498,816,1526,2321,1263,143,473,2465,2971,1153,2008,2916,2763,2481,376,135,2128,641,261,765,2037,1379,2826,2490,1880,1882,888,2657,992,1804,1001,1736,2164,2816,60,1347,2675,1548,614,1,2022,2559,2024,429,1473,620,1507,178,2567,1343,32,2802,961,930,1916,2375,1460,1641,1762,302,611,688,2525,2026,483,55,2960,2536,499,1058,1054,1979,141,37,2711,1814,2537,849,91,215,319,1931,1073,283,172,147,1026,2876,1920,2518,2137,2490,1333,1805,910,2588,2586,529,529,786,1118,411,723,2732,903,1091,2319,2679,1256,803,367,193,2982,700,1042,2899,389,756,2477,2499,348,885,762,1591,1263,1371,1681,1833,2373,1343,517,2137,90,2812,2929,1003,2559,1254,938,1577,1851,1515,503,784,2717,1327,2408,994,2090,2430,2031,1306,2442,274,1537,24,848,2984,2908,1698,185,1451,744,700,2117,507,312,1299,1491,2658,2622,390,987,168,2592,2427,526,2965,2739,2546,1397,558,1620,2313,2511,2761,1671,512,486,174,1141,1881,2447,16,516,666,1009,1347,2959,555,1643,609,2895,382,2640,1646,763,74,1771,2038,832,780,515,1806,2859,1395,771,1843,2649,155,2036,105,1745,350,971,1785,2272,1189,1366,2559,1494,302,1169,1317,2292,2637,2293,965,497,1802,2425,854,1091,2638,2497,2766,2500,1679,2932,1595,1145,2618,2488,2851,2423,267,2360,1319,1670,1674,2892,652,152,16,2529,1601,946,2333,1477,1355,2249,2524,1088,27,843,1758,857,2229,1980,773,523,2817,1296,1774,1511,2505,416,2805,885,1122,1319,223,611,1493,1426,2612,2005,2020,1257,2208,2884,2605,2137,376,858,955,730,1859,2485,1505,1182,1140,696,2003,195,233,2419,2284,2047,147,1002,1731,652,506,646,1235,690,2054,585,2509,991,984,123,2469,1804,452,1257,896,32,768,1422,1938,901,570,1406,1830,175,458,2657,2297,2708,2087,1311,1736,2301,1846,1861,342,77,1611,1943,756,644,465,2718,369,2634,574,53,336,898,1523,38,642,52,2826,2546,1029,1199,1760,2922,87,685,846,305,1857,206,1266,794,1521,1520,1416,1748,2811,794,1972,1261,1446,2411,27,134,2955,741,258,1253,1368,2140,1638,2608,603,1003,2998,1479,1479,15,657,2506,1361,311,853,2826,317,2258,687,218,389,506,2622,1718,2167,2774,1189,1617,799,2802,1426,481,2632,1293,2131,1764,2398,1409,575,1218,403,2058,1465,889,143,2446,2501,2657,2845,1065,2498,2749,2772,665,1565,2378,2854,171,2466,2497,2101,1303,1041,1394,1068,2249,127,307,2606,2305,977,729,798,2003,2391,481,1152,9,297,1688,2680,2258,545,1063,2889,1952,1026,1724,2974,1602,1848,867,1657,2670,2659,2612,526,1338,2479,157,1288,335,2187,406,972,1665,2746,1107,750,1465,857,1820,1216,1620,1683,1104,1470,1014,1594,2194,2379,901,2292,1093,1225,2756,2934,2301,910,60,1255,278,1379,1551,2530,52,1173,143,2908,1390,1915,2066,2610,1264,2926,455,1888,1603,1669,1955,748,1952,1117,2983,2985,1738,994,2809,2332,1258,1618,2801,2334,2198,1236,1707,927,1827,1979,198,1716,2588,263,1828,342,697,1218,390,1085,2650,2283,123,700,2421,1057,1876,1580,1232,2526,2038,1462,1706,1590,2301,1949,2406,417,987,1631,553,2952,1381,579,1084,2783,93,2113,2924,1446,912,306,503,306,1319,2406,1353,2121,91,1590,2215,552,231,198,1426,2572,2004,1247,1787,2277,839,1694,917,1967,1205,2173,1097,2118,1376,2717,2141,445,839,73,2181,197,1436,1781,1123,1678,1041,2592,2414,2334,2911,207,2295,450,547,805,1891,755,1968,1838,70,541,2848,1364,454,829,2745,1195,1260,1069,2889,31,2334,26,2644,606,1523,2291,1251,180,2464,2301,866,1722,2530,1249,2442,2676,1257,1109,2042,2060,1538,2715,1890,714,2349,1441,1156,2804,458,2480,1713,787,1483,403,109,338,2503,796,1911,1124,2219,826,597,2281,679,1295,2788,2089,2779,1660,531,1044,2034,2726,2305,1260,344,2868,1052,2343,252,1846,1392,2690,1169,1018,1699,767,999,1716,1707,1566,437,1991,2350,1544,2301,309,116,772,907,2093,2376,907,1724,2062,2207,1476,520,1768,2174,2502,1298,2068,2768,2872,2647,2837,1257,1602,2414,154,1202,1347,463,2305,2704,712,2521,2951,95,2124,1752,2736,1660,1888,1438,2844,72,575,2359,2069,534,91,2324,224,1886,2913,2305,2154,2337,831,1844,922,334,1339,795,2209,45,1773,119,1780,552,1153,1115,458,1323,1573,1147,883,2030,793,293,1458,1237,2991,1854,402,2750,9,147,1916,945,1679,2683,1180,2744,2320,506,2825,1572,2478,871,55,1994,99,500,639,2899,1648,1746,724,29,1098,2491,746,2787,1686,2409,2911,1029,2692,1596,181,403,491,2424,1702,1459,1837,1196,2637,2440,1257,498,2200,34,2536,2161,915,430,2999,1459,237,129,1411,393,726,2845,582,2107,1809,123,1847,2328,2280,1363,384,1405,1524,1231,2321,44,2642,942,1643,1453,1622,1936,2819,1456,1135,429,2753,2781,298,1797,709,1725,189,287,1177,901,2032,2061,2680,2866,2434,2973,1413,14,875,2536,1395,1387,568,549,2920,2904,85,1299,349,283,859,987,945,202,620,2278,130,2733,2822,2513,120,1693,493,1039,2281,2547,1514,621,1016,2197,914,6,902,2650,1931,452,2339,2713,102,2383,1138,351,464,91,2495,2449,2489,1572,206,57,2588,2649,1771,2289,2785,2179,1192,638,2082,2897,1616,2235,1327,2200,1025,1391,1773,1042,1946,290,1295,1160,2294,2561,444,1924,211,516,1801,1955,1634,2803,2855,1743,2041,655,2272,1484,2636,79,980,2927,2881,2683,534,1890,2038,1716,1800,1281,706,657,500,354,2316,270,396,2676,343,2470,475,913,2404,698,1294,791,2299,2366,117,627,1133,865,2099,2572,2329,1423,720,2894,506,22,381,839,2016,131,2272,1692,1061,1255,1735,1826,1564,2411,996,2096,2179,1488,593,203,614,1775,1555,166,1749,1468,1713,257,2711,1587,831,1562,177,1478,155,280,302,530,2848,2721,1492,896,952,1005,2422,540,574,2660,2257,2158,947,664,2075,566,2039,1377,1662,2080,572,170,900,1835,1186,1533,2874,1473,152,593,1122,1104,1551,2744,2767,1943,746,2625,308,1332,278,1977,209,1291,2459,882,720,2572,1439,1924,2000,693,2510,1961,2460,1104,2038,2712,901,2609,204,1603,1426,1447,2069,264,2351,2038,1352,1159,1358,2265,140,2377,1792,752,580,1957,179,1225,570,1373,54,862,333,1485,368,2760,2864,1709,711,467,1138,499,1788,900,2846,1364,2847,1167,406,2639,2750,814,1184,2914,2137,1865,722,1268,550,2867,493,2395,551,1766,2865,985,300,801,548,2554,2627,2746,2988,1510,1270,1430,1608,1262,2748,2994,1436,1738,1112,1041,1017,1449,2156,1789,413,589,1225,2114,2720,2913,2354,490,2644,1168,240,1431,2911,893,1610,1319,125,416,82,2093,1042,407,428,817,653,1057,2802,498,487,1708,1766,2598,361,2628,2871,1446,2450,143,1356,2098,2678,1076,2173,2233,2202,2528,2491,2751,892,1828,61,2161,2049,1024,678,162,2181,462,1556,1423,2956,1790,678,342,2664,287,18,752,1385,1998,2248,1311,2295,1649,2316,168,1825,2267,895,2003,2509,2330,1166,1859,385,1163,630,625,1812,1060,1531,500,2720,2915,2282,1180,77,2367,2233,1224,2356,2134,1852,1510,2920,1298,2397,2935,1834,273,1410,451,1222,323,1074,2226,362,1107,1206,1900,1318,2467,1083,1782,1940,2670,342,52,697,1302,1840,585,2333,2466,2200,822,1356,2672,82,1238,2919,1317,2422,2810,2156,1573,668,2490,2787,1382,2109,2549,2931,1779,2563,775,2961,235,143,2538,736,1490,1536,2424,2482,2290,2327,123,1343,361,670,1852,2083,640,2102,2911,1330,552,1076,400,2511,1903,1667,439,852,2815,136,2877,652,2171,2681,2382,2196,1984,1400,585,1542,1077,2045,2977,263,2161,405,2873,1838,2703,158,1785,2550,1041,2233,2658,1370,1200,876,2787,2608,775,1227,972,2753,1736,1211,1111,731,1749,1026,997,2911,1964,1800,1536,2043,879,1339,715,2905,270,2053,383,485,1491,1766,1193,2134,898,2725,1144,1633,1796,2275,77,1114,2714,724,359,1731,2836,2756,697,2200,2522,1472,2413,1955,1128,1400,1339,413,270,688,2744,328,724,2893,2744,1596,345,1687,1222,1059,985,2363,2074,609,2949,474,622,1359,215,2491,327,1019,131,92,1311,2735,1577,422,2265,1497,1490,736,2909,42,2459,574,2534,2987,2500,1060,970,56,1457,1390,1175,2261,1783,1696,1489,1177,1046,81,807,1415,11,1879,2401,1781,693,2287,2207,1397,1816,921,1543,970,610,2064,1341,946,2429,2692,964,2697,1436,1420,346,168,412,2068,360,2667,1588,2596,84,2696,1563,2588,2640,1967,2409,2388,2854,2631,2133,1877,2682,2617,229,1835,1712,1630,2879,2059,940,2144,2582,561,2573,1750,2051,3,1885,2837,1397,2629,1579,2907,1636,2689,1358,1658,1225,2352,1242,2597,1635,1830,1981,1550,514,1343,2725,2040,701,842,2611,430,717,2378,228,156,569,248,767,2286,2710,447,2170,113,2577,535,309,2322,2161,709,334,590,557,759,1643,187,2659,1963,92,2821,1222,874,651,1757,2870,2844,2117,1935,2864,497,1893,1386,1738,1942,533,1216,991,943,1182,2720,1558,1310,2130,1939,1665,2819,459,2569,577,1388,221,2883,1094,1011,824,98,745,2884,2553,1839,1443,637,2028,2788,1257,2143,613,1109,579,1956,2301,1072,238,1571,2508,2743,1138,2088,1695,2775,779,1582,513,2885,2933,2793,1004,1225,2198,2218,2849,1298,820,1989,643,2930,1760,59,2133,2750,1758,2777,1516,1621,1303,496,68,1218,1168,982,2200,821,2665,2758,520,1997,345,584,772,108,1585,2077,477,2138,342,388,2422,764,508,2747,418,2566,2960,2266,1278,2407,979,1303,1786,2947,1320,2129,448,2081,2417,1333,320,936,781,345,494,1307,346,2038,2942,2841,1663,930,2987,2670,11,2862,2569,2656,281,1349,419,2461,1354,1376,2858,277,2303,1375,1935,2579,612,1968,2457,2329,1174,2588,1676,2591,2311,2852,2467,1655,452,1620,890,2040,1318,1973,1151,1606,2599,183,2122,1625,2347,2394,990,2528,1244,1708,1659,585,1339,2560,82,874,1374,1012,2400,353,1411,2725,1489,899,813,1407,2616,2720,527,1454,1735,2689,1222,426,1454,702,1282,1276,1493,2117,423,1347,76,2013,1122,1863,2065,1295,2510,1819,1054,2257,697,604,2332,636,2594,2253,2932,2578,1824,1091,1506,840,1720,2841,1320,2564,2341,2784,83,1763,2301,2765,1807,2880,607,903,2647,703,2943,1686,1047,1943,106,681,921,2420,1805,1163,2307,1975,1927,873,855,708,1720,1692,1081,29,1661,460,1590,564,1276,1120,1555,1962,2319,2881,341,1187,1378,2422,2120,390,1061,287,1679,1863,1604,2664,1087,1846,2512,514,2750,2728,2225,2258,319,2792,2782,2079,1692,2152,2894,379,2824,1347,2599,1461,1913,808,1749,1604,1901,2666,1280,1999,456,2305,2323,1922,382,1678,1995,668,145,728,1292,2118,1378,2297,2475,364,661,2612,1404}

    {2250,908,282,765,249,505,858,205,2426,687,510,2916,2590,1088,1987,2911,1917,1252,1266,205,1917,2543,1506,374,1761,2561,1611,2269,2845,2321,1385,2481,1502,726,2756,1752,2709,2825,1940,2954,257,932,1171,2693,1227,1653,2419,1009,1425,1121,2925,1570,2121,2368,1335,2449,2207,2168,449,632,2762,2447,1100,1478,284,837,1671,2839,1476,2625,1951,2034,2714,1122,103,1127,771,1240,1440,1546,871,2844,411,2923,165,2511,2187,1561,1967,2010,1673,1286,1980,1781,1108,829,627,2753,1922,2071,2231,2952,1057,2572,1179,2962,850,177,37,2326,1209,558,1287,868,920,2571,457,606,503,1805,2796,1966,2671,1933,2327,148,234,1726,1096,391,1754,1424,2860,601,2108,1867,2408,361,2332,2409,2964,67,678,1621,674,1290,2046,1112,1022,846,2064,2756,177,2464,1331,2104,107,2120,1282,1899,1945,2541,1846,446,2894,85,1590,1714,1041,1047,91,212,2061,1865,1222,2040,1266,2802,1089,2448,57,2390,2219,2754,1385,306,1739,2893,2216,2564,2690,2499,1930,2946,144,1490,2812,227,48,789,1588,2607,386,1090,770,2240,815,1466,2334,853,393,2757,2800,1241,153,2818,1310,95,2434,1113,1126,1793,2753,1018,2153,45,1190,1905,276,1122,75,1016,384,1037,1576,2018,835,1428,667,1859,2134,294,326,808,133,1825,933,2436,2292,2409,985,666,2780,1239,2416,2417,2298,2567,1271,114,1515,1318,2494,2533,926,1079,1910,36,2223,689,2431,1178,869,763,1246,571,810,236,933,2852,1707,2766,2994,13,1389,1668,1522,2459,297,2244,2693,919,584,936,2241,1263,1000,482,2003,203,434,2755,2682,2318,1663,2907,863,2434,2644,1027,890,510,2482,2410,2677,255,1821,653,1135,311,2125,894,2179,1218,429,2239,2823,2392,1107,2054,1817,2709,3,2941,1389,245,1162,897,1820,341,1693,13,1185,2257,595,1658,1057,720,2070,1176,2179,1303,2756,1736,2888,96,353,639,209,1720,1040,1444,1554,1730,1055,565,28,2700,2149,1898,2447,658,502,841,701,2707,1106,790,1918,169,661,1908,1159,1402,2766,1970,698,2293,565,2011,2079,1229,2331,1582,856,567,2186,414,2042,2709,2148,953,2451,863,1802,1450,2020,1322,1440,215,2089,598,222,3,1955,433,1545,2332,10,541,671,516,2517,2271,588,192,131,2052,2846,89,142,303,1919,2509,2443,707,949,1539,2342,1072,2264,71,2234,2009,2675,601,1300,1013,2179,1506,1131,495,1421,300,701,2699,88,1339,215,164,1189,1213,72,315,2463,2453,1215,2496,2678,819,1669,2670,1183,1088,2055,2121,2590,1846,652,2033,850,1762,2332,1827,2595,2807,2969,2713,2399,2602,549,1351,766,1139,2385,1461,2022,2300,2970,2038,1501,729,1970,625,1748,2414,2285,799,2669,85,594,2873,1149,2627,1346,421,2797,2514,1176,2512,2132,1391,2027,2776,2493,1592,970,2462,2658,73,1348,1101,428,1619,958,2357,2621,23,1767,1034,468,821,1171,2702,783,874,1509,1271,1165,2999,2238,559,872,1905,243,2273,2398,1272,1751,117,804,1551,383,602,129,2530,2166,1656,365,2855,2085,108,1469,1951,1015,461,593,2476,1182,1550,93,503,840,2931,403,1326,1088,1163,1134,1584,1812,1343,17,1010,2149,1290,340,620,1931,1448,1204,937,2312,2917,2315,1164,2769,834,220,1200,2695,2701,2272,536,1586,877,229,1049,1295,2909,2230,2253,333,1944,264,1630,2274,256,1436,148,680,931,2588,376,163,2446,2705,1778,1735,1868,397,2402,228,327,2477,2639,2599,488,1881,1053,1275,1223,1405,2997,1359,94,935,1479,760,2907,1783,931,1604,1600,2554,2867,2597,2476,77,1045,1959,77,466,2206,250,1707,1480,1818,2180,2178,2442,2919,1144,1297,1522,585,1566,414,1897,859,478,666,2389,1529,2400,2497,1228,2512,1797,626,2613,511,1238,390,1143,830,1500,1496,963,1229,1188,307,1764,2597,2124,193,2276,2967,346,1732,2753,2204,2098,1400,764,404,2393,2222,132,1463,287,1047,1950,2745,1959,1198,443,2460,722,1879,1040,2111,2964,954,1495,2852,1370,1550,2208,1102,1645,1373,1253,2084,85,1157,304,1748,382,1078,2302,472,1851,811,288,1136,337,2404,196,1869,2313,2161,2139,2219,1728,2252,214,2655,2012,609,481,543,144,1937,564,2264,1540,145,162,2905,681,300,2482,2257,1429,2998,2405,1896,2982,1221,859,2169,1991,1571,1064,2980,1446,1647,2866,1523,1218,630,2014,1642,1259,345,288,1865,1391,2219,1982,2075,1277,2428,1412,342,455,2555,1338,1590,2369,2579,289,2497,2391,1929,719,2766,363,2402,2236,1220,2624,2799,241,2042,1267,1504,1285,1791,2017,2562,2350,1730,1192,622,2544,2217,2806,2886,498,2384,138,694,1266,1507,1974,462,2512,2482,1076,322,490,911,606,1537,802,2665,2422,2820,341,2192,2232,2142,1176,340,2798,1487,2714,372,172,373,302,2325,991,1316,2243,2552,1980,1884,1454,1649,1850,849,2140,1481,628,456,287,2101,2278,2531,1982,693,314,2213,2588,116,27,454,2132,1222,1395,469,2131,2189,92,1789,1092,2478,1733,2063,1455,1006,2034,2094,2393,2895,1478,1419,2210,2540,1229,726,245,1136,663,154,2844,332,2669,330,795,1016,453,2240,48,1819,691,2789,1302,2116,2218,64,2117,846,1218,1202,1361,232,163,646,1410,1041,1042,1800,1766,1758,599,1314,637,2783,751,863,2409,757,489,1880,875,1942,747,992,1906,94,1043,1569,462,1324,840,2602,1248,1717,2474,2631,2759,499,974,1555,1994,1931,305,2632,524,1807,1047,1392,2616,2717,1438,2372,476,2364,2192,1520,2983,909,507,345,2694,28,1957,2582,2936,1329,2663,2515,1418,955,1958,2696,1395,2038,970,2964,715,169,92,2335,195,2934,1867,1964,1700,2151,1148,1504,1749,1245,1305,682,2029,1593,2153,124,2683,658,1704,2670,208,1862,198,1464,1748,986,1641,1284,1895,1283,614,2838,147,2,2060,2115,1372,2704,470,2701,2419,2841,2872,1417,442,665,1738,1221,1357,707,2868,1810,34,2571,519,1678,1458,1654,713,376,1396,2571,463,1290,1414,1688,2422,1684,290,2308,1575,1507,2596,331,710,2448,2139,1402,1134,2800,2602,750,2713,226,35,2441,2905,624,675,1673,2683,670,2214,2166,538,1266,1855,115,894,1807,2844,416,2288,39,1738,2293,1087,2223,1632,339,764,2882,2942,219,2674,167,38,2548,1341,441,2412,117,2831,1961,711,825,1692,1744,2390,982,1684,2783,2203,2256,2032,1642,1904,2044,3,1031,1945,1190,1572,738,1358,2900,630,2413,257,380,2591,2126,1838,2150,989,1824,2050,1151,2645,1008,1828,431,2786,234,2953,509,2493,1472,1886,939,1271,2685,1131,1859,677,964,260,880,2087,2839,2630,1969,2454,478,1068,237,2900,2662,2822,1225,854,1115,1029,2965,2027,785,2818,1578,1752,378,1408,1493,2463,1875,2968,342,2611,801,2100,1299,2672,1860,1222,960,2038,1677,2524,1234,1390,2626,2743,1568,8,2305,2613,507,2446,2684,573,2303,642,553,2265,1209,1800,167,377,2344,1935,151,2296,200,1615,729,2279,2007,1311,2027,726,2182,845,1566,593,2570,654,2260,946,729,2233,1427,2859,2556,2924,424,2863,2027,2483,1423,1471,1228,774,1122,1865,1261,1018,1962,2770,371,1070,639,2256,2036,1592,2909,1190,2798,1464,1173,1367,1423,1212,1508,560,2671,1257,2478,2212,2730,1794,1605,385,1100,1944,2104,1290,455,2787,2309,352,2469,2565,493,1384,218,2012,1300,816,318,2970,132,1539,684,939,601,2901,2040,2545,1830,1842,2655,1432,2699,2585,1455,2881,2195,2636,2310,2964,168,661,1817,1631,2583,290,252,2917,1308,2857,653,1676,1970,1994,650,2778,2495,1559,1155,1362,1833,2401,1923,2064,2819,1222,138,605,2239,2536,592,476,2456,2557,2978,1745,98,2942,2207,434,1998,393,2288,2053,4,2587,1730,1789,792,1666,634,1051,2823,919,1025,818,1141,1805,2673,983,230,2190,1518,1023,201,1627,1398,2990,2609,384,1042,2708,236,2883,2041,1057,2834,1257,2096,1411,2448,1321,718,1077,265,2667,1784,2559,1533,1337,363,1713,1171,374,57,2113,473,186,1436,1309,1016,2553,1541,991,2734,2571,2203,987,2123,1119,966,2614,526,831,244,2963,2331,775,98,959,279,515,1772,1753,2575,1985,1752,361,1776,739,1795,1959,64,1599,2844,257,2380,1864,1422,911,793,1042,752,486,924,27,1921,2664,1907,57,1117,2747,1159,2978,1365,591,1932,1738,760,1211,1848,599,1672,1018,1295,649,270,2112,727,1852,1807,296,553,2542,2399,2963,1414,1254,48,914,31,2257,2948,2176,372,2345,1692,2429,1419,2055,1026,2964,2227,12,91,834,2242,2056,2195,1610,2700,113,287,346,1930,2642,1154,1298,788,1914,86,2818,1204,2855,2148,504,2976,1080,2675,1148,1892,702,2567,2976,749,1273,44,946,332,1529,1209,2718,5,546,2840,324,1333,1204,2310,1262,2012,375,516,2844,2461,1549,1713,716,1446,1433,1445,1851,2523,634,2239,1619,1875,1943,2309,2119,2726,356,5,1276,1335,2304,542,2676,1441,1770,2797,396,2580,704,1418,398,745,2469,2248,734,2351,578,188,2776,515,1356,2980,1427,1930,2931,1092,51,382,508,143,95,2512,412,2115,2658,800,2025,1291,1566,2103,1860,1142,2073,252,2706,555,2934,633,922,2247,1467,451,2282,1753,1619,631,1713,2003,300,683,2716,2255,220,2270,2843,2704,41,1227,1263,1311,1644,611,1956,1482,2913,2129,2014,807,859,2185,2894,1560,753,1723,957,1014,1259,697,265,1187,2775,1894,2435,1561,191,1033,2642,1972,1299,847,1711,1798,2532,36,1390,896,2489,2520,18,2631,823,945,1607,2987,2633,1267,2713,1865,2176,150,461,2801,432,444,1130,2963,384,2665,2562,2065,518,635,1478,649,763,593,2679,2322,870,1158,270,854,500,2137,1947,1939,1850,1245,2969,1030,2218,1860,2510,380,2049,584,2910,8,2873,401,1778,853,2533,715,281,2095,2381,2017,1345,1609,497,1148,2443,269,790,420,1862,544,2758,1790,1990,1265,7,1503,941,1066,126,1115,1274,1043,838,1095,1679,1879,2568,1909,1361,1233,1719,1614,2687,2676,773,2937,1397,1647,995,2191,2637,2822,1018,2641,130,899,2038,2372,2303,769,2684,946,777,2872,857,2957,1987,875,343,2819,616,280,1295,1696,689,1631,2042,1873,1977,840,2668,97,1338,106,1360,2392,1451,892,597,2359,982,2373,1686,1286,528,144,2422,560,141,732,1323,1616,1636,593,955,325,2081,1325,2491,1813,905,1884,520,392,1549,2738,55,2002,684,2618,473,659,1740,1188,389,1707,1261,2737,1905,133,596,2593,1510,622,1731,1530,1776,67,864,2605,121,2471,2308,2515,2906,631,2127,2172,2273,2881,1660,2950,2465,2741,1784,689,292,2064,2336,885,2633,1269,1924,1624,1838,1691,1041,1272,776,982,677,1035,1693,1058,275,1528,1534,1172,2038,2657,1838,2660,2505,1278,1431,1169,163,674,2982,129,2830,1983,2964,2023,181,2731,2437,3,1278,1545,2797,1366,720,1104,1446,2750,2293,117,1784,1498,730,2443,2989,2490,1795,2598,1624,1563,299,2872,1480,1497,1619,1582,1020,2603,104,2525,468,9,1211,2667,1850,1741,1323,43,2093,626,2347,1948,2817,1517,1498,2942,1849,313,1759,1900,2347,2133,1992,769,2619,2177,1814,1747,2031,976,647,2383,2483,980,247,1834,1931,1926,925,263,2713,1913,1383,1569,143,1408,1458,1828,1640,2633,1932,585,2255,272,1222,2190,1062,2725,1979,2572,1873,385,2374,1753,313,2276,1009,763,194,2698,1947,1417,2791,2879,1086,1424,2774,52,148,786,2327,2273,1435,1056,13,280,1201,1596,476,688,2444,1889,1925,1338,1955,345,2150,2567,919,1447,2310,2193,1879,1380,1792,409,1928,381,537,1933,2686,2546,280,2147,48,39,619,443,1291,1490,881,2464,2280,2136,2620,181,2166,389,1118,2415,968,456,2676,1076,1705,1010,2192,1735,56,1483,1422,721,2340,259,2787,992,1011,2145,1131,2497,1858,1985,621,1537,410,342,48,1598,1604,1580,1102,363,2344,2770,2646,1716,969,1980,2983,1430,2770,1623,2504,1173,163,263,837,285,1037,2544,1467,811,1664,1066,89,661,1574,627,2211,2958,2605,113,2255,2884,1743,1338,427,2758,1088,1194,1872,2539,2003,1707,2091,671,928,1413,1026,797,2537,149,2995,233,2847,152,2328,2627,738,1538,61,236,726,2856,2021,287,607,2456,1909,408,214,1315,618,2923,1765,2727,1403,1844,812,2458,886,2723,1266,2529,596,695,2371,484,740,2527,2880,234,2035,2114,2648,2378,374,185,1799,11,1660,1190,1802,143,2257,40,2406,2329,698,18,2728,697,1166,945,246,1935,487,2392,274,2758,1534,0,2698,373,754,1941,1665,1990,2530,1934,2829,2003,2525,368,1654,297,2235,111,2419,491,299,1104,1730,436,1313,95,2939,885,2537,396,992,147,735,2012,305,231,144,967,1330,1514,1517,1479,2086,1399,1612,2341,978,2432,425,2155,2513,962,465,2463,1341,2771,2588,2742,1327,1062,1502,1169,1773,2711,752,1535,1936,1007,2218,2396,245,2649,1718,1583,1557,697,1814,318,1992,905,1541,309,1588,885,587,335,1604,1127,1811,2913,987,2098,2938,2272,2511,1440,948,2980,854,242,700,1608,2688,198,581,2422,1004,2121,1067,2535,1524,118,1206,2643,145,503,956,2954,1304,66,1673,1421,366,2281,530,1050,1857,1553,30,725,1442,1953,92,266,553,372,1328,1917,1393,1866,1338,2461,2016,100,597,138,929,787,2419,2324,2727,2896,2303,89,474,2733,482,2903,1218,907,1808,1836,519,854,479,1650,2625,2205,1125,1993,2105,2200,1197,2469,1520,821,855,499,2161,413,2944,1312,2797,346,2862,1055,1075,2492,181,1217,608,1245,468,1701,2076,942,1066,183,1254,886,148,1566,2732,899,882,1129,2535,1720,261,2134,2254,2859,1301,1119,2710,2163,1949,1434,120,25,1071,301,1960,1282,782,2161,2361,340,342,1780,1856,1174,978,21,1336,253,1870,2040,1499,784,617,2581,1903,526,1838,2700,1318,876,2370,778,2489,1436,1291,1559,1442,2262,2846,1401,1941,316,1291,653,1639,2146,162,460,2989,464,1525,1052,2257,1486,587,1757,458,452,1274,1757,785,1383,1553,123,1559,431,1435,1140,947,2789,520,945,2653,1128,2640,2122,2755,2162,1534,1100,745,1208,656,181,1874,326,1034,2462,1769,2350,519,63,2159,937,2054,1522,1912,2939,802,742,1144,2991,2993,954,666,69,144,1137,1421,163,2880,1762,1747,903,1811,2272,2150,1273,746,707,56,697,735,739,701,2485,230,1859,2528,1446,1774,2790,1274,1902,2620,1483,891,1950,1851,1348,2853,132,2979,38,545,268,2454,1680,1897,1110,1836,184,1766,745,2601,2948,19,2040,1753,2078,1133,1831,1087,2703,988,746,2986,600,1838,923,214,2482,1482,806,722,1789,2305,1604,2122,2456,587,850,729,1638,222,393,1501,1263,1949,2945,1446,2620,682,2491,161,1814,2355,1732,720,2978,823,2689,1289,1268,1041,403,1697,803,2559,485,2615,1397,887,657,2057,217,2869,159,693,2152,64,2257,574,2724,998,1125,828,790,2852,880,846,1135,1519,2412,2747,1342,16,478,2576,2940,1310,2058,575,1986,2034,968,1217,1340,1871,1892,2109,1713,846,860,1243,570,2160,916,1170,371,2484,79,44,2520,886,1362,1713,854,2424,1579,2117,1584,2293,583,245,174,1994,2183,1815,840,337,779,215,1721,2282,383,1138,29,1980,607,20,2166,216,2244,1025,2758,2728,1048,476,2276,2446,1613,113,2445,830,2994,2902,2430,2261,758,2550,1202,2904,225,2094,2832,2098,2627,1473,1385,648,1311,496,2328,705,188,2468,640,110,2839,2058,2362,2542,101,703,2293,562,1319,2958,2891,906,1099,1680,1832,631,489,2106,252,982,2443,38,1649,1756,568,673,2516,2719,1419,753,1254,89,33,2306,2020,2394,919,1426,2952,549,662,436,2928,2261,364,1691,2110,1082,342,2231,2486,2466,2948,1716,1037,741,2594,667,2851,1433,382,347,2293,2847,438,1824,2425,2466,2053,2690,902,2322,1982,2086,254,2661,2561,1385,2358,2482,2569,922,996,1845,2067,1628,743,65,1678,1369,777,1426,699,465,2654,50,1433,441,653,259,859,139,1795,553,2921,2048,1269,1391,342,2994,2007,1856,1493,1888,195,1678,2438,706,357,260,1680,1118,1643,1193,339,1418,975,686,2188,922,623,1872,829,2249}

    2376

    2170

    Returns: 975884192

  92. {2474,1801,1746,1183,2293,2423,1205,1416,220,1462,385,2763,2293,1035,1996,943,1354,1298,2178,2515,1280,736,610,1276,295,1467,1684,1237,586,2284,929,2416,590,2497,1921,629,2012,915,2958,318,2153,2086,1980,699,1221,49,2671,2196,2643,982,826,398,1384,2523,411,2837,378,1187,647,2055,611,732,1261,1274,339,2505,705,120,985,806,1309,467,1454,1045,994,2022,18,57,118,2011,2602,2274,362,2542,1618,1815,2232,2427,2980,2252,106,285,983,1929,446,1349,550,757,371,1804,2521,1580,2872,602,2244,217,1963,1366,2507,1431,159,929,1545,1130,956,2704,2237,38,561,639,474,2068,1226,348,458,1373,1527,463,1085,911,944,2177,511,748,1512,1066,590,1617,2160,2357,2870,2035,2165,480,1540,2580,181,2372,675,74,2329,1250,100,2335,658,836,730,361,1618,1005,658,816,1555,2894,369,651,2765,2530,1848,1402,2803,2715,2729,2918,2371,2823,1318,1238,2767,2797,967,2088,903,664,2382,1307,39,2590,2206,1244,1593,1957,1135,1196,1303,293,291,677,1796,2086,1674,1224,876,2932,1921,2647,2712,1884,1363,2786,1013,368,1926,2425,2807,733,982,2609,797,755,519,1002,2440,2514,2698,1080,1338,197,2650,899,990,2928,2160,2883,869,346,2604,1946,2512,1431,1044,2454,2120,2453,2453,1752,1683,2946,755,2115,2619,1390,919,1589,2724,1751,2981,1320,0,946,2494,1531,2432,2161,2485,2463,1909,2478,1461,893,1619,2710,2888,1882,2879,1784,2571,2247,823,1543,2038,829,1056,2575,1880,1703,1832,30,444,1898,2829,1113,1268,133,383,158,2009,1215,317,1842,2816,1907,669,2754,2559,2054,1947,285,1036,1490,2987,1914,1335,650,2153,2082,1269,445,1934,1947,86,1358,728,1355,1863,1955,176,1358,2878,2449,2050,2601,1,471,563,1042,793,2076,1794,434,2024,272,1765,1872,1873,2322,1267,2167,307,696,1889,668,662,1489,1156,2541,1409,550,1264,1284,2362,1257,102,1569,1263,1211,2242,2247,2900,1582,56,2100,2134,2144,1992,804,134,2515,370,2993,1573,1662,2438,1171,828,302,545,493,837,497,1605,1453,1902,907,1788,1479,1443,1309,2186,2179,52,1705,373,2514,1237,515,1686,2659,2181,2900,1147,496,1016,2485,1649,667,2247,2313,1885,778,1410,2608,994,1015,124,942,114,2335,506,2746,2928,1322,545,70,2811,310,1255,2572,418,2626,1254,1972,2215,2771,1297,1014,465,1949,1675,411,2116,852,151,2632,1096,2859,1193,2904,1841,1448,2647,1505,1385,1317,1723,2797,2442,2806,2145,2584,248,466,566,1536,1103,1764,1443,1095,1780,2426,1831,606,673,1913,1243,98,593,1897,594,2160,2359,2454,2441,411,1712,1168,218,2053,2700,2480,65,532,1306,596,2804,506,1967,982,207,1310,613,2482,1208,1812,1347,1262,1485,801,1440,584,1568,2205,1416,1003,31,378,2080,2140,694,2048,1245,2795,1473,1036,2384,737,2086,1615,1760,2840,2464,568,1346,1237,2346,2748,1225,2516,948,1801,2844,406,2731,1845,2371,462,2108,2645,2824,1049,2546,2549,627,775,492,493,588,1292,1160,763,2250,2668,648,1584,1874,258,2146,1170,1354,2646,214,2257,1350,1784,2658,2591,2839,2143,58,1671,2868,830,369,2450,1521,1536,2520,1096,1539,1454,584,1336,2086,1198,2700,1750,2454,2696,2566,2755,2335,2033,693,2123,2117,2240,1001,1982,838,325,450,2524,641,850,1728,1551,445,2237,297,1267,1928,208,2758,1172,2398,1922,906,2318,1641,1505,871,284,352,833,2574,1268,698,694,1354,2827,2016,593,556,1555,1438,2321,610,2873,2837,1004,999,299,2625,968,1118,2277,642,1966,1377,1127,373,832,2313,2582,2848,2210,239,2193,1714,736,2412,2323,2146,2748,1958,1889,2957,2026,1675,717,1442,1738,2176,2611,931,1054,1995,1976,93,599,2637,1350,2347,2990,263,2407,879,915,2523,1034,6,2431,1086,1339,864,1583,2221,359,2291,2796,2824,2721,2704,739,1619,2305,2498,574,2368,2910,453,2337,1487,1290,628,2966,1876,826,1552,2934,2193,1042,2027,445,536,840,2051,408,1795,1031,1706,2739,574,2082,1722,2757,1642,2657,624,2957,2683,260,2239,1087,1657,617,1622,896,2236,2834,609,2015,2651,1604,2239,1659,1304,2731,831,1576,2542,786,1637,1106,2332,1759,658,683,1390,2157,1494,467,244,1102,141,778,2133,2040,980,2306,576,906,1927,2924,1596,510,1075,611,2737,673,2147,2794,9,1333,968,2781,747,1980,2906,787,122,730,2191,386,2862,1253,316,951,1882,2180,860,1529,2099,1546,203,2417,643,738,1815,91,1853,2935,405,368,786,405,2546,1611,2691,1774,2626,2773,2233,889,1535,2574,369,368,1737,1597,1573,320,321,140,557,1354,368,957,114,2554,1629,2596,2570,887,2495,1689,150,2944,2969,2219,777,299,2935,60,1249,2458,283,2805,937,658,2823,336,1628,820,1440,321,530,1295,866,2910,2316,2190,1374,1839,143,1116,1544,1443,982,2648,270,1350,1518,533,502,658,2285,2650,585,1385,2511,60,771,1114,2184,2934,1778,1641,120,330,2558,1889,1034,2978,2332,875,325,1686,2255,732,2417,2295,1672,1334,439,2522,2699,937,75,891,1872,1319,234,2610,1381,61,1209,2519,1317,1245,37,1714,369,1965,924,968,533,342,1784,1350,2424,1431,742,801,1801,1226,2914,1595,1375,908,464,2517,701,2515,1423,1458,646,1863,2391,687,1816,2311,957,917,2113,1554,2290,268,1176,127,2130,1432,1273,2837,1224,1465,1473,693,2792,1799,1669,2330,1312,601,2930,1451,2252,802,2872,920,2196,1797,382,1628,2686,2422,372,696,2623,356,722,515,2457,839,194,1247,1413,765,733,828,2652,369,481,2460,1391,1973,516,1242,2179,2539,50,1409,2075,2144,157,247,837,106,1766,1824,290,609,588,2016,32,2900,2159,2735,2770,436,1148,1178,1957,2770,2527,545,315,139,2198,527,2641,1848,1599,1621,2959,2815,2931,1889,824,1825,2797,2857,1232,1625,1010,1393,305,1278,2358,2887,2293,1890,1383,1805,1492,234,315,2241,1108,2875,2885,813,1459,2940,695,1493,2719,1639,1391,451,1223,701,1945,1012,981,1377,216,820,2415,360,1623,2227,2663,2381,2872,827,2627,2020,368,2606,648,688,230,2239,1583,2246,2733,827,71,626,2133,542,441,1609,310,2150,1149,2086,1475,1641,1838,427,1863,2527,2809,1579,452,1305,2944,97,72,2996,456,80,1170,355,511,1218,2560,2395,935,365,96,2855,386,760,272,89,2142,2581,1719,2279,610,2659,1596,272,1267,2585,365,2549,560,112,961,2869,1297,898,2570,2336,2590,1066,2044,2251,1869,232,1991,1971,105,1915,1988,1110,890,392,2687,2165,2450,2620,124,426,964,1622,479,631,2829,799,2372,310,2572,186,643,1609,2462,1351,2172,2226,947,2353,1407,723,1771,2108,1839,342,183,40,759,1301,1525,75,1618,991,11,1378,2947,306,221,118,1935,2597,1085,1117,571,235,2676,784,2482,1421,1158,2343,2728,800,1148,1902,844,910,184,2296,778,1778,1749,949,40,1971,1024,2673,134,5,483,454,2775,2246,1709,252,1425,1496,2577,700,2264,1671,2565,2588,2098,722,1573,871,2108,303,1253,1673,1736,335,2229,2728,2432,515,1709,2114,2119,655,82,2163,1530,1464,1301,2461,1115,1189,262,1851,2312,2921,1471,2830,1930,2228,19,539,442,387,1425,311,2948,289,753,2131,1060,1215,1136,1802,577,910,270,899,1233,1456,2635,565,107,1610,1051,2622,829,2862,1651,822,2385,1245,2952,196,1839,1554,368,2215,2912,1508,1244,1422,528,2749,430,1748,431,464,2762,2358,2581,1421,1157,1125,2344,2793,2955,1544,2883,1080,2686,1231,1356,132,1085,417,2220,23,722,589,598,2052,1105,406,2557,1381,2405,2202,1735,273,2247,1324,2718,798,2583,729,562,2287,2170,745,240,716,1774,2445,300,1275,681,116,2653,2409,299,824,2731,1837,437,762,2169,846,191,993,144,195,391,2523,1050,593,2755,604,1560,2419,2408,1467,290,2804,1086,994,669,2445,325,2361,1195,79,1403,659,2641,1282,966,658,2128,1342,120,253,1331,58,1632,1218,215,428,2975,1921,1514,2309,2309,2482,1305,1086,22,2950,374,24,1233,1094,1050,2120,2905,2667,1016,1983,166,1212,2690,512,2854,400,1466,1757,869,299,359,1498,2504,485,2592,1130,2281,1953,2704,443,92,1638,1851,2537,472,2108,174,796,2168,979,2192,2493,333,1743,1252,2172,222,2643,1388,2444,138,1042,1027,700,838,393,2597,2421,1096,1647,1625,822,1302,378,598,2842,2903,991,2091,1354,1665,2723,953,1503,2692,1722,1458,491,1528,1870,1960,1124,2149,2736,326,994,974,2105,1264,955,1249,855,2258,1732,269,2314,1198,1982,73,2678,948,2256,1523,1416,1667,1627,2570,1605,2116,1814,690,1000,2623,1597,724,2012,507,2537,1841,570,1189,444,1903,1051,1660,157,1361,1911,904,1675,298,1384,1812,2888,2148,2546,715,1564,1662,2756,2595,198,2372,2086,2650,236,2452,1585,90,604,1774,1057,910,1320,1493,577,2436,259,371,2475,2507,475,2286,1022,2980,1241,55,2964,1313,1166,1882,1729,2434,370,2321,1981,532,1032,2279,1643,2467,1860,2784,860,181,1905,1357,2672,1148,860,1810,1868,720,874,2779,2357,2629,2735,1923,2144,1023,859,198,1018,2353,807,514,2097,481,1300,2136,1773,1721,1245,1686,664,2362,2694,868,240,2546,1181,1429,1972,1073,1371,2963,2587,520,1609,1528,4,2852,484,2460,1987,1729,1968,874,1180,1474,691,1571,668,148,257,1444,202,2175,1600,1382,2699,1145,2339,2378,1822,1414,2550,2433,1247,59,1236,1505,2232,1456,1981,1547,2083,1330,2324,2445,2917,1852,1020,1286,2739,2714,1559,2752,1866,2334,2510,543,901,1645,222,1301,1427,1319,1167,2231,2222,517,2920,1917,743,2913,1227,1012,1985,334,1222,2660,2856,1263,1061,543,2936,1717,1800,1082,2000,283,350,2722,952,188,2014,842,1068,396,669,2232,1022,2474,1877,87,2272,2787,573,2184,2477,115,2514,2415,1427,2386,1834,672,1066,2971,864,95,120,2824,1477,994,1062,2490,2482,1974,1724,2974,135,1437,1466,972,701,710,1350,1661,595,2814,532,874,581,2143,1021,2179,2900,2167,2503,1293,898,2077,1513,2041,304,2620,7,996,2837,1777,821,1514,574,1472,1206,213,1878,1761,1169,2558,2373,1342,2680,985,2170,2672,245,198,951,79,1607,1918,12,366,2864,1422,395,1341,2641,155,2510,1468,2156,1237,1124,389,1160,2744,1322,26,1739,986,17,2815,1177,2079,171,1630,1892,1027,32,2454,2108,1327,37,41,2263,1380,1091,937,461,9,634,1954,57,947,2566,778,736,2337,1448,2943,1266,2156,2675,1500,1978,2991,1773,1239,2833,813,2153,1280,2410,2373,33,1770,571,906,1658,2589,978,1019,2283,1369,2207,1177,1063,2086,2187,2641,304,2959,1796,1348,834,1394,1317,1393,2352,2691,299,696,732,1647,790,855,1253,2548,1418,2679,1810,1336,1830,165,1714,1102,308,1657,23,1955,232,864,2880,152,1662,1716,1156,2485,2542,2319,2984,2342,552,856,554,2645,12,528,2609,827,413,1699,2119,829,1901,669,2808,2799,989,1832,2630,1039,1675,2664,2733,1119,714,2933,1628,324,2215,199,1248,951,636,242,549,2816,1120,1299,1465,1606,1877,480,2387,915,865,1481,1328,1517,1999,2758,2460,2843,1725,1099,872,2494,1365,54,2282,2599,585,537,2865,1230,165,2650,1429,2269,554,1401,1136,1849,405,829,837,2771,2895,2809,2999,540,1279,367,805,678,1132,2814,305,331,2084,237,2176,1484,2315,1440,2969,1121,2095,2917,625,2702,2264,815,1491,535,1227,297,431,2643,2725,2341,1969,529,2026,2884,231,2837,1126,2030,299,1963,732,2844,1662,2010,2827,2017,379,836,618,2154,779,369,2656,1793,2337,2778,2985,87,1970,1440,2738,1326,1410,1613,602,87,2013,2734,1495,282,1246,869,1592,2493,341,943,2335,934,1863,1372,64,1788,2624,2423,394,1579,2317,2288,1520,2530,2213,1170,1415,1147,2695,2156,2609,1700,1828,1459,2498,2120,1713,1753,424,2192,1072,1539,2089,2766,1790,278,1452,2565,2229,1175,1710,290,1998,2809,2108,1724,2164,88,1081,2630,1004,2227,802,1876,2251,2143,168,2758,2291,298,821,1232,2736,85,2863,877,577,2296,677,1397,1745,2556,1654,882,1522,1074,2460,938,2928,2544,869,239,1523,1976,1722,353,1582,1648,261,2781,1423,925,1728,2423,2650,2822,250,2593,12,2688,1857,2187,2881,2293,1440,268,170,2188,10,2713,1611,47,2214,1940,1255,855,1557,1414,2559,1064,2266,1720,221,2754,1763,1114,515,2654,2918,2828,883,310,1595,21,603,1693,2247,35,534,521,735,1113,2786,1676,1444,443,1856,2875,1164,147,575,73,1785,249,2590,819,568,927,165,693,643,2062,888,2227,231,709,272,1131,55,2320,1885,1475,65,2144,1423,1111,1871,2746,1026,2567,2821,831,2728,396,1824,393,784,2172,874,1507,651,2397,513,185,439,124,2275,803,2321,2474,2675,2359,1353,1398,2882,2735,1538,1298,1361,867,561,1592,2233,984,1308,508,2922,590,899,173,1727,2935,2431,2892,2279,1273,833,926,1466,1588,2747,1186,2786,2779,2233,781,753,2261,259,2923,2312,1666,689,281,1143,123,1466,2293,306,2655,2382,2200,1163,787,2293,2829,1086,733,2966,2372,605,1686,1207,649,2446,1647,2065,2322,2924,1599,2473,2366,302,2121,565,1894,2590,2120,2122,783,334,1383,2201,154,2996,1875,752,2489,2248,256,2151,1096,2934,2515,374,624,965,265,2531,477,2374,1779,2628,183,1395,311,1233,759,1827,1912,1887,1588,2906,307,2043,752,873,585,242,452,532,1693,1759,1570,1148,109,2321,2291,2344,439,935,2790,2052,166,2837,369,458,2465,2920,1563,131,906,2337,2544,1419,2135,1710,2407,85,83,370,487,2553,2180,1224,2379,2170,13,158,1633,1146,2035,2274,449,579,2485,337,2869,874,661,23,2707,405,950,294,2543,2420,1138,40,1088,895,310,1646,2929,2833,1301,275,1558,2926,2578,1161,1239,545,242,885,2336,2038,2883,778,2072,481,1737,858,1586,909,2408,2644,1939,2961,1102,518,1311,2482,948,1249,2468,1428,2703,2642,1688,2407,768,624,1519,2202,1697,570,1718,1634,1261,2402,477,2185,1775,1856,2411,45,2907,2120,2968,582,1924,1649,2120,1248,339,2935,853,1352,2250,1813,8,1928,2247,234,537,2145,1138,1534,1466,2103,2704,611,355,272,728,2939,2092,2317,897,236,84,1709,2849,427,1800,626,675,2370,500,2269,1399,1726,2199,1233,2104,786,1929,1153,289,2208,117,1077,2139,1641,2338,2070,402,2448,2262,1707,1547,1097,2893,1166,2650,189,1015,184,770,1758,1457,944,1523,2036,1952,2584,639,2537,1006,705,2510,2881,2239,1449,1220,2844,1533,2269,697,2507,679,2695,2268,2835,390,355,2175,1522,1555,1754,211,2936,1126,2223,320,2658,994,1395,48,2908,999,2419,1884,2415,1449,1561,2,2163,1969,58,2590,1862,2648,192,1461,1420,2289,1412,865,692,1315,2001,2544,85,1430,2708,231,2423,1768,1035,2820,2212,25,1982,808,2691,2120,1799,1109,1880,590,967,14,2964,1834,314,450,1943,1400,99,560,2138,2187,2226,827,40,1860,2196,785,2540,228,1537,2554,2965,2262,2938,2245,2067,2561,316,1499,2494,2203,2207,2019,2304,610,1235,2686,2463,403,725,1185,1880,29,2350,2986,2045,2514,2784,804,2157,1440,1078,1675,77,2690,139,2752,2843,191,977,325,570,1598,2113,392,1547,2689,2469,1831,1962,1603,1501,1087,2951,607,2423,2915,1562,493,232,803,2216,2896,1612,1742,1658,767,2623,227,196,1218,2827,2354,1673,468,1004,1249,2534,2078,2322,2414,1907,2194,1174,835,1610,2876,401,2417,682,909,1456,1582,2395,1670,2902,531,223,1455,1911,1361,1097,2728,109,1285,70,637,2277,439,1831,1929,2888,2312,620,2453,912,681,453,1294,41,2862,1806,2333,2639,1792,1497,1958,914,409,2909,1498,2001,196,1732,885,2621,511,534,1855,2351,2003,980,849,319,1652,1539,130,133,2798,13,683,2480,2111,216,929,1615,412,2935,634,915,2973,1556,1741,2346,1277,378,971,2881,2249,422,2053,2227,2858,2280,2544,2699,2501,2357,1486,318,49,322,1968,1828,1513,1264,332,1226,407,1825,2576,997,2675,513,743,1655,1029,2897,2781,2813,1850}

    {2816,1636,1575,2082,1344,1027,2422,2846,381,779,99,1395,1649,2186,1448,1682,1797,657,543,1778,1939,656,312,2108,1442,995,1800,855,983,1259,234,1458,23,1325,2364,2173,1067,1096,1999,2542,1058,511,2544,2009,629,1734,820,2872,172,2072,1685,730,569,2592,189,289,16,1198,2118,2942,2325,1383,921,1360,1298,2195,2302,2185,1373,1812,1965,2800,1653,618,32,1488,1630,518,515,1005,1352,2363,2568,137,1042,2343,2970,2825,2547,362,286,2455,1921,2167,2685,1107,1806,2334,2570,9,644,1325,2633,464,765,1006,1204,2430,725,98,1449,1644,2712,1578,1988,2347,2296,2817,643,2353,639,2298,1314,766,836,53,77,2108,1698,984,2335,666,792,1356,1433,2398,799,1567,945,1817,1627,2211,2000,43,1228,914,851,1012,2479,2817,2690,1953,405,1694,1907,1673,397,655,1079,1779,1963,576,2472,2047,2438,1506,2885,1100,1239,474,1980,1624,944,1832,1975,732,2594,2072,1494,546,501,2269,2974,1301,2018,1109,1647,328,2495,1165,589,2989,1279,1336,2154,301,2937,2403,749,2120,1488,2731,2637,954,30,2151,1230,1314,1658,1831,2203,2301,1832,2809,2838,928,1554,2972,50,351,634,1188,1586,205,2322,489,548,298,249,673,1784,1005,2814,2123,376,2152,129,711,1745,561,2750,1796,1675,1142,1270,1895,2090,125,773,1198,1791,1167,196,2892,2771,2400,1028,319,681,1830,1105,1930,255,786,2640,1109,874,1707,2305,2234,2927,465,2672,2091,545,1809,448,206,297,298,600,2372,1265,1920,1959,896,313,1188,2782,1782,2266,375,2049,669,2728,110,2320,2445,106,184,498,480,2085,266,1686,683,2791,1601,85,2377,874,1935,926,1277,1272,1311,2646,2119,2849,1639,435,2226,137,1826,1910,2122,2463,751,558,614,1182,672,418,2519,1297,2919,1058,2067,2279,750,1479,2466,2370,29,598,2078,2648,1128,2527,2470,181,2320,1298,535,2038,869,482,2011,2829,672,1722,300,976,418,895,518,297,2429,518,1434,806,2279,1064,695,1526,2513,2367,210,38,1913,283,944,2017,2169,2762,434,732,2074,343,1833,44,2779,2119,1464,1550,276,1847,1966,287,1200,1499,2418,2573,916,1950,1764,1904,1498,1358,1452,1755,104,2417,2506,2826,1249,1873,239,2281,2107,2912,2124,2859,2266,1216,2736,677,1064,566,433,369,2496,1156,977,1451,28,1504,1354,1029,511,1554,377,2893,1602,1758,847,1404,2589,2484,241,177,2417,101,1495,2431,503,1876,1387,2276,1684,121,772,2158,502,1073,1684,817,202,2239,913,1247,2885,1549,252,1813,1870,318,223,1873,572,1025,1218,2271,1267,2771,1867,2827,2968,1148,2526,2781,1018,167,2649,669,1850,860,1614,2529,2928,900,499,1570,2294,2977,1908,2708,540,2501,141,1298,423,718,1971,1582,2731,1027,1282,1096,1740,1929,2710,2293,765,423,2218,145,2262,2344,2884,1846,508,1946,1214,326,2477,1358,369,476,2137,1403,163,2802,2259,233,829,683,417,2727,2872,1738,2959,1812,926,2174,2598,2499,1392,785,2116,1690,2295,2417,736,2880,1903,930,2143,1800,1088,1526,1361,325,2293,1621,884,2061,632,996,1410,1012,156,2858,690,2415,480,2117,1321,2514,782,99,816,1239,1140,2642,488,1044,587,1136,2304,756,1688,957,2143,369,1134,1726,2369,2874,1383,2080,2819,570,2586,142,572,1046,608,2887,2260,1108,1036,1863,405,1184,1863,1140,316,901,1105,2384,752,1359,1670,2037,176,1287,754,2509,1645,361,2185,1551,2004,2227,1518,2807,664,1108,1840,592,1718,2180,29,1150,2393,2108,1234,710,2546,727,129,2523,1088,1900,2872,2997,2008,1858,543,1105,201,1936,72,2966,2555,1667,1596,827,509,1638,718,1112,2101,2995,2388,1572,523,615,1291,522,705,308,80,730,1098,1409,1405,979,2794,542,1239,1516,780,2856,152,1418,2532,936,2116,2821,1951,791,2411,785,2875,2999,1364,524,1640,2342,368,583,2519,2572,2345,1095,1477,1373,813,2002,2165,1017,1475,2645,1912,1895,1843,615,255,20,1394,841,348,996,999,339,2346,589,1639,49,1135,1492,347,2581,1783,1344,1277,1617,83,2457,1556,335,2294,2235,2058,859,740,1850,999,1592,1684,1779,516,2689,2941,2979,2170,511,1017,2898,886,2541,2549,427,27,1267,1312,1691,2184,1447,1391,1622,1261,2215,541,683,1353,1617,260,2223,1989,1193,567,2983,63,1308,1680,1336,2270,820,2264,2614,1500,2104,2954,2674,431,2678,2407,2211,632,892,1456,841,1581,1643,1139,2999,419,892,1051,1949,1449,1325,126,57,1070,1133,1154,220,837,2137,2733,50,345,856,464,2213,2375,2886,728,1137,2672,1430,2481,1786,726,1893,444,1684,1762,2376,597,981,975,2918,1055,617,29,1789,1603,1046,736,2861,2086,1995,1997,2323,1980,1846,2837,2307,1554,1469,1332,933,2001,580,643,2491,2006,2482,2428,157,1065,425,2425,152,2492,1519,2858,467,675,62,2396,1668,1515,2253,1132,1382,55,821,2669,2841,2507,406,2883,1808,1635,223,1104,2081,1344,2454,902,744,2052,2445,1802,653,441,597,2820,1811,398,564,2964,881,2852,1786,296,1039,2881,2402,1906,2434,672,2113,1009,2732,1123,870,1144,1730,2215,2180,2575,2665,122,2893,298,1684,1526,196,982,1477,2749,1379,585,909,1744,813,837,969,2683,1233,627,2287,2078,1964,1050,1260,2423,371,1108,1990,258,1257,996,2568,2192,1541,2383,2456,2419,1198,2774,1503,616,1433,1711,1688,219,1533,2404,2426,2901,651,2929,1727,1684,1865,652,1859,825,1429,2705,675,2305,2213,1621,2693,700,2979,516,2077,32,853,1779,664,2871,2618,2672,2665,112,733,2438,2528,319,1372,1921,1386,1240,2413,405,1361,2670,1754,2847,2603,855,684,2151,160,773,2747,2401,2514,457,2783,2356,2168,1410,1336,238,855,507,652,2628,189,1693,2086,1248,647,2918,1427,239,445,1060,2918,1430,2103,873,2050,2716,460,299,1839,2591,2024,2801,1747,1631,827,2203,267,1647,1048,968,878,1793,1426,1057,2021,341,1,1437,809,54,2213,1980,1424,1211,1170,674,1963,576,256,261,526,611,400,893,612,313,2110,668,416,1065,680,2418,1301,2603,266,2264,1167,1675,196,288,1841,274,2162,665,1085,1435,666,2471,488,2042,75,340,1342,962,996,970,2141,2372,1346,2106,222,2607,1322,511,1948,2682,619,1014,414,366,2156,1564,57,2519,1656,2086,1715,2072,483,2740,2033,1729,77,2013,381,1066,2458,1511,392,1899,2274,845,909,1912,2491,1647,46,2180,2007,222,1408,34,1833,84,1949,1385,1549,69,490,688,1350,640,2058,2662,2817,2022,2569,624,615,136,230,89,1459,2705,1677,637,684,1488,2900,2483,2416,1926,731,2538,649,1932,2605,543,669,376,1017,2026,1291,1483,2561,411,1219,2445,1017,2426,1274,344,2093,2066,2120,1576,2751,158,2487,2066,1065,1974,1963,1624,2327,2890,1951,1223,292,701,2917,1060,1409,1577,1357,341,1459,799,2829,1834,2627,2292,2075,1151,2032,2945,1277,1681,2152,2384,2239,2768,157,944,1891,1362,511,941,42,1533,2225,2476,1030,857,1230,89,1297,440,2500,1836,2862,179,1084,2031,2572,441,629,473,2875,2994,1047,247,754,2600,242,2067,1692,2514,2474,702,2689,363,1617,1000,349,664,1709,2926,2390,1151,1383,1407,2377,922,2960,578,2728,2025,870,1942,637,1829,169,1296,2384,1781,2637,1478,2809,254,837,1343,2571,2209,1610,469,1723,438,2094,1171,817,827,1198,2542,1562,491,2050,212,231,2515,2247,432,1203,1029,2326,2745,623,2427,2293,1907,1740,1750,404,1534,1078,164,1389,2823,459,1289,1069,1518,2371,1744,1410,1578,821,996,2171,1076,1776,2439,2998,1192,670,1219,685,2323,1004,964,1980,2894,13,2560,2349,2756,2097,323,835,1840,1761,2572,32,1591,252,676,821,2851,1608,2713,1603,864,365,111,821,2564,1179,1020,632,2820,2717,2454,94,1037,2526,2634,145,1350,2340,794,1984,923,2411,1257,2446,366,2962,1548,314,2451,1265,1699,1925,2372,795,2627,1819,1686,1631,618,477,2091,1352,630,1115,695,1870,1566,2627,2780,972,1043,1857,658,559,1154,1448,2561,861,2949,2499,827,1359,2987,2310,2321,5,2561,1218,545,843,2392,1122,1278,1367,1668,1652,2290,1207,379,2665,1729,80,918,1825,297,76,2937,2552,2372,1288,1854,700,761,1684,719,2247,1921,604,1316,421,1579,180,315,2887,1424,1364,486,127,1479,575,119,1610,1695,1969,2822,117,1033,1986,2286,452,2265,764,1336,2809,255,768,1310,476,1323,2297,2145,1325,497,1979,1640,1902,2918,1601,2406,841,2697,2063,2365,1941,948,2189,2180,769,2567,643,1175,2064,2644,955,2107,124,1551,836,2864,2166,1439,781,508,1542,346,1197,2609,1861,2232,2594,191,50,2432,2491,1877,2270,841,2255,2298,2028,568,1192,2551,1574,709,2053,67,2982,2711,2739,2844,988,1423,1710,1198,666,2519,2508,1150,1901,955,2469,639,2062,935,2039,2990,2784,2463,2789,1311,2447,2691,784,447,237,1883,459,143,1875,1649,2139,2183,1253,1423,2262,2903,1640,1155,2621,1592,877,706,2918,996,1906,956,2146,2780,1419,2956,2007,266,2686,736,364,1514,2117,1944,2636,2383,1879,1124,669,226,2238,446,1218,1136,246,1340,805,2598,940,2706,1476,2844,116,1315,1812,1242,2384,1028,1526,2063,36,1881,156,2274,1710,610,637,2429,119,2174,1465,28,2058,244,620,1897,338,1595,1136,984,316,1907,153,578,1086,1788,195,2358,895,2742,2062,2937,1454,2491,1008,2395,2057,1616,2215,1337,2293,2199,753,255,754,280,1884,110,2769,495,2570,209,327,1178,865,2217,1141,814,2868,2169,719,2750,679,2937,2041,2523,1271,1423,939,2095,2034,224,2580,108,232,2056,1317,1164,2471,2331,1479,357,2959,835,1436,2794,899,560,1242,2107,32,94,2281,149,1241,1551,1675,182,713,1825,530,466,1100,162,1191,708,975,1229,2764,941,615,1389,1993,1005,561,229,1782,1465,1906,1242,1702,2023,421,707,654,465,2171,568,2071,1978,1011,2631,1587,2738,774,1482,1385,811,2891,2743,1050,2867,334,2046,1070,2720,3,870,1369,2966,2120,2827,715,827,1801,1417,2920,2086,1105,384,1715,1018,960,2430,633,376,2303,2860,2098,70,2387,2992,665,2686,622,1628,2491,2990,1733,2324,2804,2609,1662,1594,2327,445,101,2638,1037,2536,406,1990,958,2972,2419,1979,1711,1049,1965,178,371,721,66,19,2361,51,2540,1194,1181,528,127,2441,941,2684,1336,2187,1556,506,487,732,1456,1190,1042,420,570,1886,1205,410,1384,1279,2232,669,2196,2169,1661,202,388,15,1475,2875,181,948,1066,2423,528,1502,2173,2614,497,1802,2518,889,1573,1695,1714,1376,1538,1523,1902,200,1083,1361,977,307,968,1558,2644,2816,545,2300,2454,905,835,1844,1360,2827,2570,2026,2435,11,128,1453,230,336,1124,2369,2443,855,23,1325,2872,2262,2834,959,2182,1338,1383,2561,1573,2677,1590,1406,2932,1553,2701,2579,1956,2559,1919,2726,19,1743,2459,1556,1623,1210,2072,1510,2071,2334,293,1181,2836,1947,2694,2087,83,242,1994,1224,2889,2619,1235,544,315,1395,1310,2627,2062,815,759,2489,2572,1518,686,1339,2730,2003,2435,1477,1240,1336,20,1130,2519,690,826,1756,1987,1885,1479,987,204,2536,1116,769,1407,881,2812,2226,1931,2841,667,776,1258,2491,2296,2109,588,892,2377,2039,2659,2384,100,2881,2614,2281,459,2144,679,2741,1937,2328,366,2509,833,1198,1007,382,2416,2853,1086,2370,1543,915,2120,2776,587,2096,2911,683,2199,1524,2043,2881,1696,2615,1289,286,2090,1108,862,1716,114,932,1234,973,2757,789,2854,2743,2953,944,644,190,2692,355,2254,1340,1626,2131,2775,247,901,1906,2248,1339,1312,2272,507,1479,2108,994,1397,2838,2590,175,2785,1831,1354,2816,1064,2415,1065,551,2127,2916,1888,1447,1823,378,2389,1204,425,1828,234,2938,664,1917,659,2125,1785,1244,2341,2759,1230,2355,1131,1301,1266,1704,2648,2617,1470,2321,963,577,2824,1739,1041,2700,322,2903,2272,1329,1131,1807,2555,796,953,378,1264,1974,127,1703,2321,2486,682,2122,822,2850,2831,246,2832,708,334,1264,2833,2638,1576,1411,435,581,2907,1509,2535,497,1565,1266,2463,2406,386,2678,863,1864,2863,146,2801,2249,168,2749,2411,1152,2675,528,1657,532,428,1938,1539,1536,745,323,2925,1731,245,2400,2265,2242,1664,131,2237,1986,1201,1482,1442,709,518,319,1389,649,254,317,2904,1412,555,14,1803,1076,97,2997,1463,251,2533,1895,1599,167,1132,562,429,2709,227,1080,860,1763,703,709,806,2215,899,1896,1741,1303,2613,1818,33,271,688,2232,1090,2146,2230,2015,620,758,333,805,1368,425,2036,1344,1040,525,2113,2102,1228,1827,2563,1629,891,2449,268,703,624,236,1537,1541,572,1157,1213,2742,2073,2551,2875,2431,2445,1665,1982,575,2927,1256,1264,2067,2321,1063,812,1924,1442,111,1761,471,1175,566,505,2875,1769,277,2268,1532,610,1835,1088,2903,1879,2159,78,309,2568,1425,222,1234,837,2141,2612,559,1074,553,1600,510,769,1051,225,354,1283,1160,2736,1071,2545,2616,1987,873,1101,1987,2765,1081,847,1473,687,2355,1965,2315,2753,499,2946,558,500,1173,2854,929,899,2849,143,1115,329,386,1267,2606,2545,2081,980,2188,1518,2626,1014,741,778,2014,974,1052,1441,467,462,1794,2437,103,1303,906,1345,2525,663,2197,821,1053,1830,2274,2457,65,299,2006,1450,2575,1664,638,877,290,1135,414,2284,1573,1628,2558,1362,740,460,2939,2155,854,97,1791,2649,259,1022,1961,741,658,2263,2150,387,2224,2391,2126,1610,926,467,2661,2698,1038,648,998,1298,2847,2473,1772,2309,264,104,2799,2129,2772,774,2531,2810,1575,501,332,1415,2339,518,424,547,1397,1313,2633,1456,159,624,2293,2990,1445,1239,2866,1350,214,2559,2490,2337,2613,2818,1708,1251,2766,1110,2229,1628,1073,1670,2308,511,2007,11,2862,1764,660,759,494,2212,2534,2113,1821,2204,146,491,848,621,2681,1089,2731,515,65,299,1704,2495,712,2039,2672,2411,2964,2132,2686,1403,922,423,1342,616,1776,1751,1852,1396,1687,2789,1582,1561,2332,1358,509,2899,272,818,568,418,2124,268,574,1098,2515,2606,2631,470,1281,410,1775,2243,2562,2575,538,2967,2648,2069,517,2648,2361,785,1217,113,187,1689,281,1139,572,358,161,855,568,1983,286,1159,992,376,671,2423,2690,493,2262,1093,1820,2976,2672,1916,2226,2399,1221,2788,1416,93,679,519,452,2119,2982,80,2373,1202,504,369,222,415,2680,2495,1496,1596,1039,2249,2988,2530,1496,2751,2181,2777,704,1701,2982,2881,2168,2699,1241,2138,550,492,2904,1162,2265,376,2281,1302,573,2834,2084,1248,380,2066,2460,1096,1480,1895,880,2367,399,1917,43,963,2906,1474,2367,1341,250,2730,2373,1512,2060,2154,2514,455,2628,2062,1602,1951,1638,1779,2589,695,1893,2005,869,1650,197,788,2262,2816,2471,2415,2279,1571,645,418,246,2515,2145,1173,2694,2974,1297,842,1787,920,2488,676,618,2036,826,378,1798,1554,1103,747,894,1620,968,2777,1629,2621,813,804,2516,2430,167,191,2107,590,2958,1846,1349,612,2273,2731,1678,1199,2502,2827,280,1312,2055,1274,1941,2267,1215,435,1175,2185,1118,1069,1059,1553,2394,1446,376,305,1297,846,1621,1240,1092,1622,2761,87,279,810,2112,2125,239,2666,776,622,834,1969,545,2777,948,467,782,2264,842,445,2432,1754,1719,1363,2185,2491,2760,1635,1245,478,971,590,475,2959,73,1340,2610,1505,1611,1965,1130,1366,2003,2862,1670,2990,2239,2389,1460,1526,2360,480,734,1980,2485,847,2119,683,1534,591,243,746,81,758,1679,2059,1659,1682,105,1968,2877,675,110,1456,1603,1314,2176,232,2348,1355,1977,1418,2172,2352,2288,821,1370,304,1738,1451,85,1859,68,1774,901,1226,193,207,2600,2362,2029,1730,2233,1933,1725,2791,1489,974,624,2278,1767,1108,590,2380,1836,2415,752,2299,782,1885,2423,2882,159,907,2369,690,1091,976,2597,2672,2156,1638,736,778,2845,63,730,2389,635,700,515,1554,1663,1622,2195,201,271,2867,2756,1484,1710,1823,1693,2240,19,1195,1330,1129,1362,69}

    1470

    1829

    Returns: 653231147

  93. {234,2543,2085,1146,1148,1151,462,1437,2567,371,211,909,2263,1880,841,1129,564,2343,498,1121,466,1844,1426,2971,1393,419,479,288,2121,1511,1987,1752,1176,780,1558,2094,686,1271,21,1833,2042,1602,2785,1207,1330,1014,562,2874,1600,1562,369,415,2557,880,436,1364,1107,516,2164,611,2211,409,86,2636,2373,1992,2881,725,739,1338,1821,2264,301,444,1235,1471,2231,2671,1039,1582,235,2839,2719,870,1010,75,1360,2456,457,2772,2815,2391,855,866,1948,1238,2376,1546,462,135,1281,2680,749,2590,2455,1603,1089,2280,2552,493,1431,1678,521,455,273,1052,1974,2152,2639,125,2112,2771,1964,662,2632,300,794,1494,2612,501,1889,497,2496,965,1030,762,1802,1234,2286,2428,844,299,1714,2442,2842,516,2086,1404,599,1667,1329,2711,990,1435,1708,892,706,1314,1492,2778,1044,2580,1680,1985,2262,2254,2992,1877,258,1915,1502,177,2871,2503,1713,661,2406,1192,2666,701,309,611,2243,2491,2730,1556,574,2007,130,1489,1216,2119,2524,721,2813,1504,1439,1950,471,2176,2382,1096,2688,2234,2000,890,1909,2842,2387,229,1057,181,1139,1080,1778,1667,1386,1065,2409,2242,1969,1615,2558,426,260,1774,1030,1341,2661,292,51,2841,1731,1919,1187,536,1672,918,1828,2237,1188,952,1965,1372,562,2523,747,2888,830,2883,2934,2392,1434,2142,1062,1318,1325,2293,2222,1458,1,2188,666,2496,2163,2989,1738,2005,50,2663,449,2133,1379,1475,604,559,123,1,2693,1451,2044,105,1838,259,2206,949,2257,1374,2771,749,1277,2301,450,1676,2622,623,987,2437,356,1268,283,102,1204,2766,2637,981,1402,2759,1767,1648,2547,1286,1057,270,522,1175,2476,2719,661,1451,1214,1,2237,593,1632,1479,554,1638,1234,994,80,350,530,821,1863,5,334,47,1245,2447,2349,2091,2168,1476,969,2841,2436,453,181,2095,182,2370,2462,2804,2977,2730,2203,1816,427,2055,375,1973,58,2937,868,937,432,2158,1787,1798,758,2759,2725,1122,2673,2623,1979,2753,799,327,2064,2087,1042,1186,601,417,2254,2081,2613,47,1108,914,1070,2337,2240,602,545,1560,1163,2848,834,2975,773,146,2110,1938,1516,2652,1122,1690,1650,1431,1320,1222,742,2225,2825,1515,314,2342,2553,9,2628,1380,1254,1461,1241,73,124,18,1654,2253,303,432,2705,2215,920,1745,1290,419,2105,320,156,2160,1766,2410,2421,1778,1223,1335,304,1869,2677,1769,876,1663,362,807,1749,1102,2514,2568,2904,2101,758,2561,1859,107,1425,2157,828,677,968,2285,1298,2847,564,2062,2101,2435,773,2432,1349,808,665,2884,2258,1284,546,2655,2561,3,2493,31,2832,514,1767,1115,2889,2390,80,1459,2922,2210,2455,1472,1288,1771,508,2601,506,1926,1029,2942,1841,1012,2838,2071,2709,1813,616,2292,1665,856,337,2495,184,68,2520,758,2552,1208,1486,2694,387,2740,1214,2171,2227,1682,535,1596,1345,2183,473,1479,1616,2988,1980,1015,2718,2529,1388,2975,1156,1067,233,1626,1352,567,310,674,782,1712,592,661,9,2318,543,2299,2855,145,2869,1095,1131,2163,55,2745,2297,1878,2860,1883,2717,974,2408,831,2037,2103,2059,1499,1327,1719,963,2259,62,1792,2189,1567,1737,1067,2214,1854,2123,396,2666,2399,241,1928,2617,1045,2464,1764,2365,2823,1634,2156,1636,1519,2276,1852,2892,391,2277,2120,1162,2207,1106,1384,41,2629,1940,2831,2637,1736,1528,1553,1129,16,179,85,1390,1280,1628,867,1732,1514,1603,716,1818,2115,2664,234,2561,58,1906,856,2699,971,839,1035,1835,2706,2640,426,623,2842,64,2361,137,746,455,2427,1055,1318,543,2167,2074,2002,362,458,323,1689,1642,1238,2364,2115,2418,2625,2889,2172,41,1852,612,2899,2696,690,2950,1581,2167,2131,2194,2481,971,2380,1610,1304,2543,1213,785,137,705,2046,2783,2842,257,578,525,80,6,1014,2172,1421,986,644,1897,1416,1562,700,692,1707,2570,692,613,229,671,727,2643,1412,2953,1049,1959,1256,696,2214,2021,2152,2557,2115,2092,2540,731,2647,251,327,2494,2541,1653,685,2044,348,62,2053,2346,80,723,2360,2287,1563,1559,2632,283,2156,130,1123,2850,665,2995,1541,1039,1007,289,80,1520,892,135,1790,1815,654,551,1774,1879,1055,969,507,2306,774,633,667,734,566,1563,1608,2525,2131,2476,490,414,1255,814,2872,1627,368,1595,1031,2136,1877,692,1919,838,1962,787,2196,1545,1351,805,2908,2960,265,390,1235,877,1534,620,402,847,2090,2246,621,256,2696,2774,2302,968,1098,242,2026,1697,39,1938,2746,489,888,2374,1302,484,2673,2796,177,2258,1893,1498,1477,181,908,1443,224,474,1437,1359,317,1500,2300,2776,1806,208,1580,2813,257,2808,2916,1952,881,1731,1981,2750,482,766,1435,2646,1282,1743,383,2644,609,877,205,2182,2181,2755,479,1566,2467,2433,296,2075,494,1802,2023,776,2800,2129,348,1865,1474,1344,1040,1051,1669,1688,1648,2047,1733,529,1219,392,2146,1565,1405,1903,1247,2983,2285,508,1819,592,1343,1648,2780,290,954,2749,560,476,160,1454,2375,1732,2755,425,2241,1865,205,2840,1321,277,306,1852,1305,2812,773,2622,865,2398,783,985,1862,1723,939,728,1553,467,2376,2776,840,2622,614,1171,453,2705,1664,2353,356,322,969,1531,385,2925,1371,2446,1598,2447,1519,838,629,2014,2067,808,1590,1042,1178,1820,1722,516,984,2943,2272,1761,2849,735,2938,2663,867,949,954,2046,1072,73,463,1365,1485,1470,1493,2299,2624,2895,2835,2739,1632,2761,2475,1804,1399,1812,2068,1118,2884,2185,282,1875,197,2653,2406,580,277,2481,1097,2795,440,1669,2962,217,1815,1767,207,2061,286,301,103,393,586,1545,2040,1588,2227,958,2418,310,851,2889,1311,2703,2435,1307,2990,2828,829,193,619,793,1926,2596,1040,2608,2360,697,2066,2058,2898,2514,1461,323,718,2784,2218,1778,473,2577,1548,2319,1091,2334,2783,2172,1717,1193,1651,2124,2767,1189,2556,387,2160,327,865,2450,1921,2248,2040,234,1630,1849,2589,2679,2887,2446,638,2905,2141,1548,878,2420,1979,250,805,2694,2182,2611,1933,992,1544,2553,2433,2522,1928,790,298,2698,376,272,1611,519,1777,1897,1289,2767,2799,771,679,1715,2288,2678,2100,1934,1801,1319,2158,734,2841,2982,1338,702,1232,973,1048,2215,1148,2175,1056,2810,1878,2049,2035,1916,1179,2724,842,479,2016,2969,241,299,2115,1653,1621,1641,1615,1844,2810,2291,2430,216,566,2474,2102,1377,1340,615,2304,2560,503,2122,428,612,848,889,1174,2083,1114,1182,914,969,2324,2822,1452,1097,1556,2482,1767,1844,1388,1163,2142,1835,1358,2109,1748,1066,2994,2668,1230,720,1235,2546,1,398,1196,950,743,2449,2063,874,2436,1907,407,2951,2388,633,1702,969,403,1247,2429,2627,2077,994,2512,2890,2672,2496,1407,2830,858,2720,1169,2754,2010,2431,1746,2393,2534,2848,1369,259,1829,2220,1899,1522,424,1312,938,1019,1940,426,540,1608,577,2229,828,2295,244,2011,2617,730,1441,2506,389,1118,1844,1355,994,856,2865,2678,2587,1105,10,2932,250,2144,2348,167,604,423,555,459,2106,2944,1876,1604,16,2909,1963,2744,2270,2170,219,2171,511,289,1947,1436,1204,1869,536,1569,2598,446,2466,2762,2891,2581,2217,1160,2457,1403,2025,1227,2424,225,1516,2372,2976,665,2983,1805,2120,1955,2615,19,2693,1747,1450,437,2286,1721,2064,1330,2454,69,2755,1192,2862,1177,393,339,1919,781,1356,460,1272,2595,2411,83,61,1291,1934,2539,67,2840,417,1615,447,576,1146,1437,1681,1268,1917,126,2230,1844,2924,1410,1901,1929,1872,2205,2351,952,663,1400,2747,1618,2409,2205,1624,1295,2254,2230,2183,597,669,933,668,471,2409,1742,1104,2535,2629,2596,312,852,1437,1869,1489,850,388,2689,1285,1825,2924,2296,1594,1916,100,80,1269,932,2441,2721,104,1814,245,946,237,617,2251,437,260,804,2624,2745,584,829,1761,2181,1186,528,2705,1317,877,1526,1108,1015,1047,15,1212,955,1843,2580,642,1166,2055,1684,2088,640,2166,2119,722,1908,2367,2538,1586,2710,1618,139,2766,2282,381,1886,2064,1260,1916,1989,2436,198,1722,2916,1611,654,2372,2649,2776,2034,1627,936,655,1968,1103,348,1029,487,2928,1976,1766,2571,482,1761,1631,2881,2777,1667,1371,2919,2035,1421,2102,1081,1942,607,1705,266,1735,2165,1972,2774,1279,743,754,47,662,2416,2955,622,2125,691,1644,403,2292,93,569,1169,2305,466,1799,2876,1613,1110,2807,286,257,1070,2497,612,748,963,2540,1313,404,2707,2749,2675,2285,2186,2842,2650,1957,537,1049,383,1966,1645,2859,2911,1189,887,2693,2106,2367,2330,2493,2853,687,1573,1513,960,1869,2359,936,2347,2122,2365,2130,590,657,2592,2959,2527,2757,982,390,582,1160,497,595,433,1357,2296,2261,696,160,1463,1262,2448,431,1643,1012,800,2178,1117,1383,2788,2254,397,648,1209,2354,1446,2225,1007,2210,1575,2205,2853,1466,1609,1112,836,68,1686,168,2366,294,2791,408,810,2854,1844,2341,380,1544,548,2802,214,2454,1679,1894,2959,1127,1915,2240,2915,899,15,586,539,154,1439,1870,685,2365,1535,185,1322,1862,1504,1704,2298,1227,796,1145,2552,2818,419,2986,1084,809,1166,1932,1796,1663,645,1685,1916,1509,199,1510,2069,2193,923,991,1003,2146,1179,2552,2302,372,9,2529,2921,2423,883,2496,351,784,2518,1520,2056,2238,2213,2026,570,2940,1330,204,1993,431,2383,1274,652,1090,2130,80,1789,2361,417,2470,271,59,2862,500,2521,2690,2292,1067,456,69,1333,1434,1565,2947,429,583,263,2618,756,890,2455,66,28,1039,2296,699,469,963,2584,2313,1041,1047,96,1874,1666,289,2572,1963,2814,989,453,2970,2822,1904,1999,2657,330,1059,2338,2810,893,1667,2529,183,2653,689,2274,1895,909,101,637,2443,1668,856,2795,2285,664,2933,956,532,742,1652,2791,117,165,2009,523,1191,2518,19,2935,1860,518,410,2417,2235,1347,1729,2628,1799,249,1579,2780,611,2694,1183,1431,1020,864,875,429,498,2964,545,706,586,2378,2233,516,1407,2760,298,1300,2100,1963,2033,1654,2350,785,1996,2764,2621,2527,520,1806,1818,546,703,2395,240,1523,1941,1966,82,2580,2866,181,1045,2022,240,321,1572,538,343,1072,2622,2452,2315,1094,2683,405,1759,1623,145,1218,222,967,2009,1772,2137,1509,2676,1740,1363,2644,352,1407,357,2581,2312,2365,188,1020,2822,2829,603,2041,1432,2521,1231,2298,99,2188,1497,502,2955,658,111,59,452,1233,1641,612,499,2955,2952,1242,68,2005,1828,634,2873,2476,1952,2484,841,2013,752,2183,1325,954,859,1567,2583,1018,1179,618,1658,1420,2208,2356,1435,2809,1788,2495,529,2139,1336,2293,2496,2249,1185,1515,1278,1755,15,1663,476,334,1998,1353,1318,1502,2490,2598,209,2715,2699,2439,977,53,1854,2504,1485,374,2142,17,213,1826,2431,1049,2466,1082,2187,637,1985,1804,1144,2419,1924,786,2278,219,2877,971,1259,1101,1410,2743,1958,849,1238,2512,1134,710,1274,1314,504,814,413,1106,970,64,1504,498,429,2881,1556,345,1652,1473,2074,375,2407,1761,52,1451,1236,2995,2669,1224,1612,1245,42,1893,824,2818,1361,1372,2063,2162,2816,1397,2328,2395,1509,1386,2754,1525,999,353,2807,560,2927,1243,1125,2802,1330,2110,1137,1263,2551,155,2446,8,287,120,210,1494,1054,2358,1579,318,1579,2646,2422,1086,2823,2110,1679,1672,2825,1480,2355,300,1340,892,2378,1195,83,802,1460,2394,802,2980,633,350,1832,947,1237,21,2839,2112,711,1087,2054,2764,1124,1982,239,1075,2652,2442,187,815,20,1549,2208,928,2777,1613,586,1659,973,868,1810,2373,1452,268,59,2913,2371,2060,52,48,562,1813,1505,2816,649,1080,1761,2232,778,586,534,2075,2168,498,2566,1486,2824,429,1611,802,1266,1283,2278,525,2435,2686,1328,2867,171,1867,568,2129,685,2001,154,581,1943,1868,1025,1570,694,503,88,133,1521,1355,2777,758,1492,542,2001,1378,1759,269,1816,2263,2701,1574,2844,526,1772,835,1440,806,220,2220,152,1303,1119,779,996,2265,1599,2886,2666,1449,1850,1673,1238,750,2876,1081,1810,38,186,512,906,1915,1472,554,1366,1297,1256,1598,2967,413,25,1921,1468,1560,945,812,2702,2673,360,1435,1072,1192,2523,206,1238,1593,2611,2476,2143,1895,160,2884,2512,160,2785,2794,1552,2230,2716,2666,2858,2747,1180,2783,1715,46,1874,2721,1489,2198,2028,592,1376,1540,2165,10,553,2843,1073,1957,1994,1591,1220,639,2524,1208,1228,1026,635,2396,1633,390,1709,1457,2755,2324,148,1524,517,379,2226,944,1034,1315,2245,2775,1563,25,2012,1863,1542,2217,545,1638,1670,946,1710,776,1503,1126,1691,946,1180,2454,2927,1238,1394,974,2525,2289,49,825,2670,2879,1898,529,2196,213,1657,1040,2392,1296,401,24,2666,1374,654,2427,2888,1757,458,1336,390,1033,2157,2880,503,1025,2464,913,1336,2732,2735,2527,1306,1579,541,1988,2244,27,542,1258,2831,1544,1859,246,1827,2756,340,1450,1008,2110,2827,885,230,143,2940,2653,823,1903,2801,1578,2961,894,2133,2254,1804,1871,2350,909,2711,1217,29,822,2650,1750,2637,355,582,1467,707,1910,1467,505,1911,188,1112,1489,2735,2239,1299,1509,801,938,347,1354,361,329,1527,1776,1336,2682,941,1306,1378,2788,2754,1416,1524,289,2163,2993,287,451,2863,2139,2768,2286,1683,2656,826,406,1054,119,602,1538,2132,2567,1208,2988,2565,571,1748,1308,342,2290,657,1046,1609,1078,2557,2563,1392,1977,113,700,2989,120,2559,2293,1637,2426,2056,1793,2902,304,280,2663,2946,2114,742,579,1236,2788,2782,1493,2622,2123,2511,830,1543,2862,2492,1096,215,2038,1360,181,1816,2850,1255,1779,2694,867,1016,1692,499,1329,2136,1009,295,1150,544,341,2779,1191,647,2359,2400,1880,2545,988,1687,2039,1759,486,661,2157,1098,492,2957,776,315,421,329,543,875,1711,2506,1722,915,2310,2693,1884,2781,1973,1558,2652,2044,144,1092,40,1410,1246,1767,2160,481,1252,713,1327,174,2150,1423,1758,2123,2666,1130,753,2455,2823,80,1529,2527,2536,2205,2990,2390,1339,1998,775,2330,2591,2307,1762,2330,2114,453,2597,271,1482,1471,2259,1257,739,585,2115,2549,2910,1635,1367,1247,1575,1233,2788,2922,1438,228,2967,1348,2817,509,112,1273,2455,2467,2602,1741,854,1986,2966,2362,2921,2673,2597,2082,1108,2614,2596,2916,1827,2387,2318,1339,2371,432,1105,2711,1845,1991,405,2584,2659,1702,510,689,2003,2020,1274,2653,1921,1025,2434,2788,1609,2275,2052,1600,150,1817,960,1613,2502,1433,2104,2061,390,1462,410,1276,1553,826,464,956,286,1471,923,1512,2313,1541,1168,2813,1287,2071,2798,803,1647,2786,1952,508,1405,1030,378,2926,1686,545,942,2653,227,79,1635,1465,812,667,1669,321,2434,219,205,2163,1016,1233,711,92,574,2236,1058,2197,1435,1626,2983,600,2597,1160,2814,2311,2493,2773,2674,661,1769,2009,145,2316,1986,1970,2576,2184,886,2870,424,1913,504,281,708,2955,487,1466,2040,51,953,411,930,364,1937,2677,131,681,808,2616,853,2832,829,2468,81,1639,972,2826,2378,2298,851,101,182,2405,2738,2158,1807,1073,1627,516,868,175,2540,942,1925,2105,1949,2404,2479,2069,667,143,1565,2970,1560,1956,1111,99,2944,1862,2036,744,1848,2125,2666,687,222,1464,442,1061,1651,2089,1932,1045,221,2340,1323,1615,2442,2783,60,1958,2741,195,2839,2832,1667,2531,722,2436,2414,150,2519,1221,1892,2985,2157,325,2049,2043,1705,2277,1826,2155,1118,1117,2334,2146,1791,2311,2356,2652,1099,2638,1756,173,938,415,1372,2473,1472,1387,2643,2898,2774,2603,2624,1095,2154,2389,2805,2532,1748,1039,1454,1726,1240,1992,848,2372,2940,772,2769,594,1859,1293,1549,2352,1783,392,1565,1415,1773,2558,1851,2149,2726,1995,2653,194,2758,714,1077,1419,2434,1661,2489,1560,1267,141,2244,4,2070,1454,2007,2667,2117,2934,19,2000,1026,2499,904,1026,2953,1234,257,2369,1316,880,1801,633,212,2991,767,403,200,2340,2552,1088,2471}

    {2448,1922,1770,120,1660,1419,1564,2642,2368,1369,2469,1179,1707,366,923,303,1163,1815,1887,1105,863,2813,2121,1269,1076,772,431,286,2401,2177,12,2203,1279,45,1352,361,621,740,1501,1752,1844,2121,2789,515,946,1768,2728,1152,2575,47,2125,1838,848,2134,1366,1435,56,2018,650,1944,1679,1744,294,2999,2254,274,2527,1037,1430,2063,2788,2497,767,2532,2868,2505,2061,2750,1146,113,2913,129,2481,2866,1361,987,1672,814,2506,2987,2999,2900,2716,402,673,2105,1446,2122,1147,2673,1709,1921,1891,284,1696,1890,293,1292,2811,1673,1544,2412,1378,2339,2668,1651,2373,2483,28,1171,2205,1552,191,975,2864,2171,2348,968,786,1067,1664,1614,1680,52,2635,2319,1347,2622,1251,1470,253,845,80,2637,459,1455,1805,1708,1667,564,1158,2880,2230,968,1091,112,1876,1409,772,2108,350,1314,636,1702,2325,882,1100,2843,2868,181,2813,993,226,89,143,395,2008,745,2237,66,1822,1386,1026,505,78,1309,861,1024,2956,1728,687,1840,1557,1105,1792,1085,1509,1672,1635,2861,2225,2586,2749,682,1414,338,816,1987,2418,1245,462,736,1067,1697,1332,1815,1372,1471,2221,1318,450,1004,591,2065,684,2195,56,759,1846,2949,2488,1172,495,332,1118,2077,2783,1913,1533,1327,2,632,1581,115,475,1439,943,1568,2171,309,1410,2742,1842,1858,2867,805,1619,34,1011,860,763,2538,2346,1954,1399,2057,114,384,2166,1577,1522,533,616,2771,346,1335,2033,1025,590,2324,890,893,1095,1772,1049,1346,951,184,1967,1097,777,887,1465,744,533,1123,1664,893,1628,1810,2163,362,193,1128,1414,331,1548,1913,2420,2089,934,2977,2882,2382,1919,2381,2770,6,106,1744,2562,1023,2191,869,11,2231,2110,2461,2980,1620,2622,2158,844,2839,1028,2521,921,2716,1662,628,2980,934,931,2076,498,911,297,1925,662,2946,771,925,395,264,1508,2837,2552,894,1343,1961,2913,178,2754,1234,2353,2837,1012,1960,901,431,158,724,2906,565,2063,2937,1217,1336,2784,2597,40,1801,1440,1571,1524,2311,71,917,963,472,328,2770,769,539,1343,1561,1675,546,1149,1113,316,2569,1680,257,2033,190,579,1770,2959,1563,2173,2524,543,2365,1992,1979,147,784,1243,900,2700,1869,2584,211,2777,2831,1122,1076,1378,1684,2138,2288,154,948,2786,1834,2337,415,2982,2790,1369,1515,361,1462,1675,78,1463,334,857,2092,2712,284,1,2147,2806,1039,2112,1070,2963,139,1856,1464,2055,942,2333,1261,1418,2262,1122,2008,1952,1547,1697,2388,2959,2237,2765,505,1693,1930,2490,732,412,2376,19,1918,1170,543,749,2214,2996,240,674,460,503,2724,2571,1086,791,692,676,1882,2236,1885,2673,2378,1071,2496,2624,625,2405,1796,1012,2983,551,641,2207,2780,2814,1794,1627,909,2177,1754,2678,944,1427,57,2776,531,276,1046,1140,2425,481,1400,329,633,2318,1648,381,2803,2026,232,113,2692,1445,2771,2206,1733,1049,1799,596,203,2125,685,1562,420,2848,2561,2920,872,561,2384,122,2126,1430,60,1190,76,347,978,2520,1273,1213,2879,2615,2415,336,1491,1951,2959,1799,547,2046,597,669,1430,1509,2075,212,1377,2386,2953,2744,378,238,2681,306,407,2751,1824,2534,2630,868,1534,581,476,120,1803,345,2206,433,2535,424,2312,626,2260,549,2204,2353,2673,1607,1239,2134,1945,1518,130,924,943,2594,1204,2755,2467,1762,2825,1831,1399,150,848,1333,2754,2622,1021,1562,646,594,2596,1677,1551,1217,2529,154,1730,2425,2190,2120,1709,2978,2580,2246,1796,1932,159,1987,2367,345,2192,2894,1921,2045,2622,1865,291,1360,1336,1105,2857,2641,2425,1873,946,1317,1656,1839,1808,1411,2145,2099,775,497,1846,1664,772,1513,1431,453,2283,2044,98,422,180,1063,1745,1179,2180,2730,2238,2280,1941,987,961,1516,771,1074,624,1357,2780,2554,917,2205,434,1299,1110,879,2478,2145,2227,243,1931,2552,261,90,1554,1026,2443,1618,1583,770,1383,2896,2571,1071,1708,923,138,2050,866,471,525,378,859,431,2648,2004,2096,2383,1297,1865,2748,1525,2214,2417,2445,1671,833,1396,1152,2043,1739,2398,1026,2043,70,1496,2792,283,1012,72,1243,107,793,1605,1270,1985,2621,867,2027,362,2591,459,157,2673,520,358,2906,827,579,1719,94,1782,1778,790,182,2061,1744,35,1987,1277,2959,1314,1541,1682,1515,1871,1179,308,797,1550,723,2999,311,1495,2686,2510,2188,2015,1954,1549,704,843,350,1952,1396,1684,2472,1846,1654,1822,2515,884,2199,1122,1853,2365,2407,1352,2856,2001,1901,2791,1563,1529,2716,862,2205,1836,2281,935,852,1650,1389,1447,2585,2779,279,1579,2194,911,805,1436,1544,1329,2632,1499,1759,2166,2733,524,2175,2529,1851,2231,2446,2000,2533,475,927,2531,2462,1711,1385,593,1108,59,2813,134,1094,2563,2620,672,2969,33,2840,550,1356,1360,867,2607,1757,2428,2107,45,2412,604,1050,1184,2601,1715,2007,1201,161,1662,1923,2051,2875,1196,730,175,1795,2032,1778,1787,1134,964,1000,1143,418,837,1982,116,1614,1417,2973,14,116,1536,2815,2362,2915,0,679,1844,1804,128,2115,969,685,630,2104,440,2699,2665,440,2104,2859,1211,1225,1483,738,2337,2015,1040,1562,2074,1636,2862,2331,2800,1579,1537,860,2992,1336,481,2967,2367,586,1560,471,1552,2434,2414,1431,1786,2121,2342,1509,1765,2078,2640,1,2378,1160,461,833,2768,2813,1201,2111,898,2545,2167,333,923,2652,2102,697,594,844,1337,1178,135,1581,2008,1281,2921,389,1240,693,1245,1083,1789,2979,211,2237,1931,292,2832,1753,2291,439,1024,1784,1896,87,2137,922,483,579,1667,1481,170,2005,2841,56,2424,563,496,767,665,912,1158,1829,865,386,828,1761,2610,2159,1371,254,1751,1583,2535,980,1700,2967,2212,1294,832,1749,2282,1963,1509,2767,34,2429,2093,1013,2275,1973,470,780,194,247,1560,1485,2654,954,723,262,2912,1121,1122,1611,2169,1951,2071,1893,835,1436,2072,36,2003,1168,447,2267,651,1712,1425,2710,2753,2540,2228,1198,2805,1793,2142,2776,1173,2769,2133,2838,342,1683,946,344,87,91,314,2090,1654,2465,1585,529,1776,2617,764,772,1661,2980,1596,620,259,1414,153,1181,1326,2637,416,2606,264,1617,316,278,1530,1733,2200,989,2447,23,747,1006,622,960,2975,2073,950,788,1948,2789,2431,2496,2704,2654,1924,2694,1456,1036,573,1659,204,1868,2296,1881,1022,1963,654,592,377,218,2360,2128,2637,2652,2631,735,423,1453,1022,1785,2574,67,1760,2119,1772,1934,2266,1449,176,1341,2824,2771,617,1544,2744,455,424,107,1589,2855,857,1028,139,546,236,1400,2699,504,823,100,1700,2209,865,1562,1159,2179,1180,375,2077,1725,2693,1715,287,2519,1594,53,605,1685,151,1902,2660,197,2300,1112,256,114,1224,811,1021,43,1103,2128,737,2048,47,1935,2595,163,2492,1120,2463,1406,1466,230,1076,1706,720,292,2554,2983,2509,1509,224,729,224,1587,1567,1109,2629,267,2454,1900,390,697,1926,2467,2204,2327,65,2597,463,1014,2578,2880,2687,929,902,2727,2157,2479,1877,843,1605,2932,1476,1953,408,2588,2525,2530,2271,244,2529,2729,2913,171,2048,1244,1616,2121,2914,2749,1609,1068,2076,1652,1315,1172,285,2881,2308,2796,2407,2240,7,1093,100,2219,795,647,1627,252,1921,696,441,1774,1740,1720,50,1939,1864,1177,2324,2282,1219,1578,2593,1081,2580,1785,1579,369,34,877,2682,2364,2176,2584,1984,2188,2284,326,1731,884,1567,2127,2907,524,782,1736,1766,367,1937,2789,2140,13,695,394,1374,492,792,1023,2633,619,1781,1947,2744,1366,83,2759,923,612,2813,946,739,2695,2901,2669,2437,432,1709,1567,2813,363,2940,808,1386,2685,952,1370,988,2225,2259,1648,303,2226,1858,2007,1987,1078,2024,32,59,1913,968,2813,2696,790,2402,1117,1667,1626,2842,1740,1401,2557,2031,320,2993,438,843,213,1234,138,1612,751,2379,1857,1840,223,2831,564,998,2158,1888,1950,148,2281,2124,269,873,1,928,1327,2749,1927,606,2693,1936,2135,1413,891,2719,1474,2202,2496,414,1670,1830,2754,2930,1801,687,608,626,514,1949,1544,557,2397,1318,2031,84,889,589,876,305,517,2261,964,753,1666,816,2268,1048,2052,1297,837,978,715,256,443,1565,231,2857,1248,110,1153,1754,132,2247,1496,479,778,525,1340,2031,120,2900,1861,1003,2080,2766,2256,2571,2112,400,2153,2641,138,2516,1693,129,468,2857,2677,2059,612,2062,1714,2063,685,1315,1115,2682,2903,2123,2843,1870,2552,1069,1823,545,897,1109,1377,2180,2677,974,2196,310,1429,2831,2775,1418,643,1401,698,586,1674,680,772,2950,1132,757,2022,226,2673,2412,1601,302,2496,586,1870,2254,1243,313,474,2557,1517,275,1079,1253,1,307,2531,1383,758,2637,2459,1038,359,966,1837,1995,334,2462,528,162,2734,1548,1714,1478,971,1611,1898,2340,2977,196,2338,478,2967,1331,2455,2199,613,1204,2175,1153,465,255,2344,2367,2852,1830,1827,1132,431,21,1171,2524,2823,2802,1375,375,2757,943,1844,2954,592,791,1076,355,1684,1252,2116,1198,27,2928,13,1035,2136,1749,1727,1829,2403,2529,2529,581,653,2819,355,1432,2783,1821,2621,1419,983,2714,61,2068,1975,2400,2102,127,2524,63,1749,80,306,2204,2438,108,114,2897,281,1027,2756,334,2810,334,2722,680,1222,393,2480,791,1814,288,248,535,905,2634,1625,1555,1800,1314,390,1374,1893,1211,772,2007,2848,381,2540,922,799,322,2814,1442,2224,95,2697,2149,2246,923,2849,1571,2455,39,2050,544,959,1469,2997,1913,2257,1106,2377,2600,2250,943,13,2233,1664,1149,1424,1342,1307,1373,602,508,205,962,2609,1334,2923,18,1581,1583,2445,2999,2718,2527,976,2336,1199,925,2791,696,1161,1561,430,2968,1670,319,2933,685,47,335,2247,2479,1652,2363,2225,829,2939,1202,1127,1134,1088,722,2194,1060,2513,2673,62,2487,1694,26,1167,324,210,2432,2414,1690,1928,2528,199,2529,1552,1014,152,2984,1370,2981,1200,474,2597,1076,114,2451,74,2886,588,476,719,1816,1400,2068,2382,2888,631,2402,2243,624,1805,1331,2579,1847,2112,1037,1928,2982,1855,2771,382,363,1515,2796,2322,365,2323,1206,1446,2797,1001,2161,2007,560,1921,2978,2829,1629,1644,1655,30,2209,2477,2979,2255,1408,533,1004,2580,2223,1816,2851,2007,1338,1437,1939,1122,1016,2917,1672,1817,712,895,2802,175,1756,2894,1646,2937,393,1391,2120,1238,2222,2550,231,718,610,808,2910,2723,1142,1238,21,1821,1195,1314,890,2493,316,2967,1695,2637,2343,1987,2124,2805,2458,1710,2057,1490,2167,2878,972,83,2203,350,671,2231,1249,277,1787,575,1476,396,2658,2164,634,1281,805,7,572,2787,1952,2567,916,2097,935,344,1823,2702,756,2437,1399,446,226,1912,363,2892,1539,378,1987,2431,1444,1053,954,2136,794,885,2622,2096,2887,2036,2752,2764,1487,2802,2349,2332,1714,453,948,457,1056,2157,2633,2507,16,2006,1971,349,2958,555,1921,556,2637,2494,1333,77,2503,2085,1788,2542,2526,2348,1066,1968,2666,2949,1046,1650,1978,2493,2252,2943,2174,2269,2736,889,2836,2034,2317,715,2235,2813,1483,2227,957,2030,1916,2525,775,235,480,454,1392,2176,97,2681,2040,1476,907,1915,941,2421,755,677,1604,53,265,533,836,2202,2216,2222,1582,1336,51,1984,1222,1811,148,663,481,1054,2558,375,2839,2573,1051,1908,2538,893,1381,2972,2384,890,1821,2686,2065,756,1896,846,37,2660,1914,330,465,1804,1003,529,336,2153,1701,810,798,853,2752,101,1801,1416,62,1589,1548,2969,465,558,293,362,615,2351,1775,2793,487,1675,1734,1649,342,52,1897,1869,2716,43,1261,1702,587,2941,477,2532,1592,868,557,2020,1499,2170,397,1351,1964,68,978,1946,2353,571,1817,2844,1444,659,2725,2651,1759,2924,527,2880,2384,2334,189,175,2452,1921,2530,2796,189,1924,1732,1787,2417,1315,20,2659,726,2713,2294,142,1160,2285,488,2619,910,435,1154,896,611,1560,2397,1627,2113,373,2665,72,118,792,2746,1513,2949,2630,2754,2696,109,2157,741,2116,1622,370,1834,2181,2079,2820,1985,857,1406,2790,272,2691,1229,1210,1136,1301,813,2493,194,1704,1509,2731,321,1499,634,2353,1489,2901,518,1489,2440,22,2061,954,1039,768,2019,1277,868,2326,192,678,1414,1797,2277,1377,1789,1440,2205,551,2896,1488,2205,1699,2850,1243,2962,1667,413,1318,1349,1026,1607,1710,1691,218,2779,2916,2372,2667,1403,2321,807,2957,126,1964,2357,1385,2281,2632,811,693,2251,1064,83,1313,2825,418,2217,2119,1197,2466,280,2870,1997,1567,1410,370,936,1440,1175,2144,2724,1204,1780,169,939,2987,2622,2091,1878,2277,2786,660,709,773,1477,1983,2680,2518,1302,2372,1586,1987,2035,1215,2931,2527,2582,2246,1495,1432,1516,646,2387,903,563,1611,2604,2216,1922,1711,2434,1829,2918,1809,1905,2319,2464,9,959,1005,1101,2171,2441,620,891,2591,2360,2029,1827,2580,2690,217,586,2329,1032,1205,1395,1117,2821,717,1324,2934,1209,2778,765,2957,2118,2807,630,2862,909,2054,2263,2834,1763,2056,2366,1272,981,2167,2455,1362,1163,2496,1990,2063,2599,2684,1531,965,789,841,1265,1439,484,1701,2131,116,2508,2643,80,2544,2352,1654,590,602,466,2878,2180,1506,871,1915,2731,2885,2987,359,533,1260,310,2441,428,2702,1562,2517,164,1499,2165,1640,2062,1920,816,1866,1740,102,2431,1511,462,433,733,1145,1434,1017,1562,2148,1203,269,2017,504,1606,172,2499,2651,1507,1141,2486,2594,1408,2597,1133,217,2085,1984,1330,441,1091,2563,114,513,1484,1988,2205,667,274,2673,2673,2048,1532,590,2948,202,2188,359,2139,448,66,675,1439,1813,1422,1993,1165,2846,1192,519,2061,2813,2030,2755,2888,2899,2696,491,896,1329,2875,136,284,2965,2937,549,627,54,1829,696,2146,2940,612,2537,1627,2312,2666,547,1030,1081,2626,1155,2719,1030,1490,2827,306,1783,1805,908,507,1529,2000,2975,2279,120,612,378,1414,845,2039,2214,1232,1026,1986,52,959,2098,2314,2167,1342,1350,1428,574,281,1283,586,2442,2175,2309,2517,577,1698,1382,2033,83,1614,2090,2345,1852,485,1002,1163,2755,1422,2387,940,1414,938,1498,1109,1293,813,550,308,1209,2385,354,1707,2843,399,2340,1348,1722,508,135,1182,2335,1606,1043,2896,2845,614,911,1194,2110,1705,1796,2201,1672,926,2555,864,2632,1459,2,1718,1631,2304,432,1079,1970,988,1157,2406,2548,1604,1813,2776,2145,1971,166,1047,2605,2788,344,1527,2503,525,155,359,2298,2786,1463,39,1106,997,2442,2142,149,2974,1430,1664,2364,1262,15,2413,1220,494,2759,2576,348,2337,634,615,1164,398,1465,2929,909,432,772,979,2833,340,579,378,393,2092,1133,2694,2653,1915,2231,919,1572,1827,445,1669,1116,218,181,1410,1673,2501,2379,542,27,2079,2607,2603,2524,2261,2868,670,1441,767,953,1724,2057,2653,2974,2929,699,2460,508,1984,581,1138,1318,2499,1127,2151,672,1226,2498,1838,201,2806,528,1352,2303,656,2055,2535,1953,818,1769,1659,419,683,942,1733,181,1398,2463,433,2300,1204,229,2111,2876,2708,86,552,1067,253,2177,2807,2273,2500,1368,1271,2726,1310,959,403,1352,1448,1794,1465,2009,1275,216,480,2285,848,815,59,1509,2763,2842,280,1697,1935,1043,816,2737,446,2057,2766,1117,1087,2119,586,2910,2105,1069,1790,598,767,120,2453,1435,140,2621,1135,2281,58,626,1856,2107,2941,760,1584,762,1968,515,1786,1113,1454,687,761,2158,817,1890,135,2566,2777,2881,440,1703,1684,2485,2348,130,936,984,358,2945,1576,2130,2662,2535,549,160,1,2936,2159,1716,867,946,1877,2497,859,527,1250,509,1610,2893,2161,2645,1922,1054,2787,740,2564,2444,820,790,2807,274,2998,1338,1313,375,2019,120,2684,2204,2866,688,2464,278,423,2060,121,1264,805,47,2631,1271,2084,934,2345,2686,692,1746,223,1106,2320,2667,2596,1471,62,5,140,612,189,1490,284,709,995,819,44,1274,2234,1597,280,1207,238,1446,1204}

    2794

    368

    Returns: 366469222

  94. {2314,1260,367,2846,1352,292,1577,882,1445,2560,2959,1411,1963,1613,915,65,2787,836,2638,1407,103,701,2037,302,2905,2636,2571,2148,1839,2127,1256,1444,35,2707,413,2345,192,314,1093,2603,725,2726,2948,590,1966,1736,1215,2190,2857,121,1673,648,2185,1367,64,332,2155,1916,1867,1884,693,2844,102,450,1518,2644,354,2112,1897,1367,316,1970,887,109,1868,635,1335,2598,2473,1239,2035,2827,91,1351,1267,1887,362,1077,655,2955,2090,1936,2133,951,2618,2683,186,2931,1071,1516,2340,1740,929,1151,1392,1389,593,428,594,620,187,1062,1152,1759,2452,1142,1878,2807,229,2752,2604,2966,2439,596,919,15,1452,1570,2555,2655,2577,2616,1510,2793,1876,34,2198,1365,1463,204,1185,1974,841,1381,340,2578,911,2139,1564,814,2823,1038,2681,1544,2438,2891,2613,322,1879,2225,1359,1053,2389,366,2327,1437,796,1498,2304,1648,443,563,895,1728,365,2303,1958,1842,511,2821,682,1903,2473,340,736,2402,2951,2101,2356,941,1187,283,2168,1902,2119,2924,1564,316,2270,2661,667,2094,458,673,2888,2575,765,2285,89,2857,2810,2866,1312,2250,1431,2539,1107,1845,1432,914,104,1143,1489,829,2983,1706,804,1524,699,1596,2922,1696,1385,2406,906,2168,455,1629,1818,109,855,1865,1617,2334,1164,683,2123,1550,468,2335,68,513,757,570,496,1160,1007,1513,1609,1385,749,2873,1840,1299,859,50,2721,2847,2153,1753,1864,1670,1953,2127,2796,1497,2053,1869,1729,2410,875,1583,812,1308,215,1606,716,970,1431,1602,2026,174,2699,1820,2442,2840,2776,2276,2524,2862,2067,1562,2337,2027,1834,1396,1167,1008,2413,1158,440,2346,2945,1020,2572,1951,212,1997,330,2586,1579,1841,509,1569,1028,2316,2765,1687,1625,1924,624,1670,1872,2047,883,2835,1785,1349,1553,1302,2233,635,2896,894,2773,2727,312,909,2775,2629,2938,2975,108,2544,2924,1230,1444,2451,1510,2505,135,926,2860,2398,2485,2363,1460,1528,2188,2196,1390,1345,1630,1334,1394,2174,807,2336,2427,2446,1442,1309,1283,2889,2825,2571,662,2865,2165,2158,1624,1081,2205,1182,1819,71,590,832,2522,2158,123,1317,1491,1765,582,1416,842,1913,509,2675,2106,2193,2619,883,2981,2853,1237,2794,729,721,1677,792,1554,1770,1281,574,2432,1644,2805,464,621,661,1023,1905,2486,2778,618,965,878,847,2078,237,343,1599,1637,1940,2011,1920,2874,1142,1290,607,2699,1146,2854,1146,1428,399,229,273,2497,1408,1170,877,1597,1074,911,472,2939,291,1188,1455,2025,831,1541,2585,1608,1975,2139,1099,681,735,2650,840,2334,1017,2126,2691,1671,296,1989,1881,187,471,278,32,1645,375,1253,2794,1450,1509,431,1664,757,2175,1792,1223,435,1077,901,2339,676,549,2970,40,1879,1815,862,998,1994,2793,619,105,814,2362,29,222,102,987,1624,2727,2182,2307,41,50,2222,2029,598,1086,1970,1116,557,1837,1642,117,1295,1656,866,2769,2974,1025,2350,2478,2254,1341,1874,1281,234,1878,2308,1574,1856,1531,723,2394,2446,792,1050,1242,436,2822,2393,929,2693,440,2752,1466,771,373,666,2247,2998,1080,1543,2584,1029,1135,2988,595,2227,1123,730,149,1339,1443,1786,625,679,321,102,2699,1904,550,377,419,1693,2456,1473,1829,2784,1376,363,960,440,447,132,2409,854,1107,1363,572,296,2898,2782,1063,248,1542,1441,2746,70,1351,1849,2237,2471,2703,2568,2529,2920,2929,1096,801,1441,1634,122,6,436,1225,2494,2194,638,986,623,2319,2621,1653,664,241,2660,1834,382,895,1691,1409,280,2428,258,1436,1914,769,2435,1962,1207,474,1095,678,1896,2485,2011,2275,1512,2207,2386,362,2026,130,1259,184,793,99,871,741,2993,249,129,1481,410,2742,2117,2879,2595,1594,2794,66,1610,508,2477,2803,565,946,494,470,837,1068,2815,466,2421,1620,804,457,332,603,139,1393,77,443,2653,1924,44,1247,2241,1688,2092,1650,626,1401,783,2781,755,905,2334,2820,2530,2121,464,1139,1195,2721,803,2138,2661,1707,413,1949,1426,1758,2153,878,2963,1297,701,2649,326,331,1944,1152,2994,1751,2883,502,127,1523,1435,249,2797,2798,1803,1223,1398,1384,526,1819,2848,822,2551,1468,2677,622,506,921,1807,2876,1000,164,1402,1591,904,2685,1218,806,604,2681,2043,1398,2571,1883,5,745,997,287,1231,1284,293,2692,2739,128,2648,912,467,2926,828,2459,2110,2232,2274,533,79,1191,1503,2207,737,972,1796,2408,2044,531,231,1746,464,673,1248,2159,1581,1390,779,2701,510,1899,1252,2365,1752,2487,1789,847,191,2390,2005,38,1298,1379,1110,703,95,2611,1747,815,925,1282,651,2624,1652,902,117,1298,144,1941,1718,1787,2200,508,1396,2205,559,1788,835,1682,303,1937,2100,2766,108,466,2459,100,1381,2762,562,1857,806,1354,2946,917,751,1403,2535,1159,1902,1956,2006,1797,2522,763,2298,2053,1399,1433,1139,266,352,1101,1651,576,1483,1159,302,1941,2888,1685,1967,2152,801,2190,1864,4,2041,469,1599,1510,2646,978,55,13,2956,888,1889,724,2723,899,2641,694,33,2261,2386,1360,2562,181,2998,2210,1272,1210,2792,806,493,2317,952,1287,2608,915,1303,2856,2320,1669,470,1300,801,1579,1430,1120,2462,1053,458,2086,1764,849,845,950,469,1567,1853,506,1282,230,2168,1294,2066,2974,566,139,1469,2282,1865,335,791,2183,2543,1400,45,2499,348,1233,1384,1993,1257,403,601,2304,1341,2896,2421,797,2902,890,1742,1318,905,1993,182,1803,1562,470,1269,2699,2633,2637,2686,161,483,1113,941,2885,1275,470,592,2382,1853,417,254,2530,1678,521,2052,2576,100,25,1624,2743,2131,2079,1278,2300,2338,600,1883,998,2385,856,462,56,939,900,68,1106,486,586,2646,1447,920,2945,1265,953,2407,2542,1847,384,1590,2454,2050,1390,2034,107,473,1281,640,2170,2473,2215,2092,1276,2879,2188,1034,2936,2905,77,1202,2538,2361,2561,144,2484,2942,2646,2753,1698,2772,2967,1054,506,2472,1031,721,489,1305,900,2153,1001,1434,466,2124,2978,1790,2147,749,2243,1229,2798,674,1047,541,1404,2289,544,2296,1853,1320,1131,1004,354,2022,2399,306,423,1118,2410,2886,222,2827,1403,736,1627,1409,668,1159,911,2994,2153,1072,282,1992,1711,650,1574,2902,2403,2835,1965,754,1489,261,567,49,1461,2051,723,2340,2198,1420,2899,792,2488,2724,1676,27,1175,1063,2493,101,1759,934,2681,2722,1967,2141,2692,2291,1534,1085,1370,1939,2974,470,750,2896,2168,2137,402,2058,1401,1554,2652,2878,826,178,2204,892,820,972,1880,1197,1085,1411,248,2669,295,1780,1976,168,173,2279,1571,1555,2670,1361,2973,2912,275,1474,2928,1937,2452,2202,290,1258,1171,1085,2555,1589,2966,231,1836,1466,173,704,1278,399,1234,2569,201,1510,2606,16,890,585,9,2637,1202,2892,826,1201,655,1513,629,666,1204,386,1426,1454,129,2024,1479,492,1932,1263,1805,2669,2085,2726,2855,587,2630,61,2682,762,217,199,1997,1455,2757,1390,1434,1288,1499,1157,376,1398,523,46,1127,1462,1003,819,26,1530,1018,69,284,559,506,2503,2656,1078,79,2400,1992,641,2502,466,2397,1631,1763,1324,1422,2982,2547,2453,2384,1296,2670,150,738,2315,2835,2350,2425,2096,1280,288,1314,2004,2689,1014,2211,599,2442,2241,2252,1626,1884,573,1562,634,2660,1178,1264,1285,734,926,661,1091,2205,1763,427,2806,1195,1281,2906,1020,709,1293,2886,2743,2893,1142,1716,1611,122,1306,2379,2608,1426,713,2819,2362,714,1169,1809,2038,185,677,100,454,969,2299,2223,358,2825,216,2631,972,442,1381,2807,1281,409,445,1336,1921,696,1141,1081,2827,1402,781,171,1628,1565,1294,2355,911,2714,2855,1505,1448,2940,255,701,1024,792,100,2174,998,290,2889,1227,521,2498,299,750,976,277,772,2068,2640,2497,2505,553,2217,1381,1683,2568,2070,185,1897,1094,1522,2528,1883,1346,2081,2909,1930,95,2366,2354,173,291,75,2160,2218,1245,2701,2767,443,1006,327,1624,8,66,1518,2410,419,832,2452,2545,2160,2646,2576,1411,2384,1141,1563,450,1380,218,1169,452,2630,924,431,2149,305,146,2838,1201,687,1344,1298,727,1691,1655,137,1825,2545,782,2793,2082,1414,2504,1018,1203,2431,1988,1279,795,2218,701,374,63,1405,846,1244,924,262,641,1930,1053,430,1759,1071,1012,1774,697,2223,1386,1757,955,1729,1073,1501,2208,1315,1328,2417,2318,1218,304,1917,2969,199,1389,624,1071,754,839,372,2312,1345,2708,2437,1216,1565,372,996,2864,2054,2990,1876,1816,143,915,1804,624,2458,1440,1831,969,2734,1156,885,366,2836,1539,872,1582,1224,1875,1592,1124,2429,922,222,737,92,2506,1933,1305,637,2526,2613,2153,2118,2326,284,1168,1083,2082,2715,1356,1574,1810,1726,922,2012,2274,2243,392,1050,1574,2134,2463,1308,666,145,1699,1859,1029,710,1879,1107,1705,501,736,1860,1179,302,273,2426,736,1882,2035,188,2223,1895,1840,83,2949,552,592,2752,1579,2860,1035,1572,1928,2500,2851,2977,2542,1246,2457,2423,1833,832,2088,2266,433,1324,1049,2756,998,339,2650,917,2297,1634,2630,645,920,303,545,1561,514,802,1156,1060,396,2681,79,2303,2749,231,1066,2514,2435,905,2744,195,2730,2272,2905,1092,2042,1577,1876,2964,1210,1087,2745,2264,1342,657,570,1022,985,2086,2120,1886,1805,2656,1434,2410,2441,1009,2215,519,986,2189,2532,695,920,279,2372,1019,844,2432,1445,404,1320,1798,559,1704,435,1214,1128,1476,1987,1679,2079,1007,1935,2288,1983,172,1406,797,82,833,1657,844,1878,920,1291,635,62,2605,2298,1900,956,676,1737,1169,899,2515,1193,2084,2688,1547,329,2235,2635,1388,754,1299,2356,399,2580,130,1490,2567,2377,552,482,1977,1708,2143,1129,2739,2958,2771,1907,999,2368,2648,2527,2933,898,1281,2663,2187,2405,1199,2358,818,1430,2597,1248,1123,666,205,2263,2417,2375,1582,223,1397,1118,121,459,460,1352,957,2240,2974,2950,2257,2811,2327,2516,657,1987,1911,907,2307,1369,2457,2429,1993,1133,1026,2962,801,1138,2179,2086,53,342,890,1372,871,1804,474,1192,2264,1570,1978,2171,716,1116,2028,1357,1278,144,1577,1662,2721,58,1955,2717,1660,1527,382,1367,2797,2538,996,696,1512,1634,1811,2880,686,2988,2464,633,1639,2704,822,2293,1051,2940,236,2265,1357,2333,268,865,2375,955,1365,1355,1737,1076,1092,2291,2403,1769,1068,1976,195,1535,1839,2013,347,1272,2338,685,1881,2169,157,1251,527,395,369,364,1332,1484,1859,2840,2982,756,2872,2884,51,453,2769,719,1281,1440,741,1930,924,503,1115,2226,0,2757,2416,72,1795,2371,303,1993,331,341,850,253,2835,2696,1589,864,1586,1079,577,1324,2060,2168,2581,869,2472,2050,2510,2384,927,872,915,1496,2543,2119,2626,998,1429,323,1380,1082,754,2904,1757,593,1399,1067,2287,259,1538,2803,2824,1599,2150,306,1850,249,867,1336,2445,1638,2465,2538,2483,1704,2,553,346,2673,2907,2193,2388,852,2935,1663,1431,2221,1824,2637,2264,428,2679,1940,2262,48,823,154,345,1160,2787,108,385,2063,1804,2239,2742,548,2552,1701,1016,1484,325,187,2477,915,1049,2404,2477,203,2278,2091,2663,1726,799,440,2783,2847,1893,2277,2713,829,1455,1244,2912,38,2896,2022,1386,1558,525,2528,2260,2621,2093,1171,353,1073,2836,2364,1649,809,2541,1867,2032,1936,1419,601,1287,1206,1320,949,737,1806,672,2053,2870,1180,1805,2969,2147,243,681,1589,1668,2246,559,1092,870,973,2646,1058,1336,2627,1673,1174,2368,1177,2830,1253,1569,1359,242,893,434,2468,1343,1919,1479,2733,1346,1261,1030,648,941,2331,2607,2482,2942,1477,1804,983,182,1679,2481,701,570,408,2307,2975,762,958,1117,2738,1568,2608,1854,160,195,2491,1241,545,1539,73,148,1767,569,2457,2528,290,1872,2396,890,941,2457,2374,2909,1319,1412,1884,2567,652,902,1898,2823,2844,1919,1077,2380,1205,1943,1969,95,2869,2170,565,1230,1950,340,2981,593,2260,2617,2031,1973,1015,80,152,2589,1165,140,1069,1588,316,467,172,2695,458,2455,498,1532,1274,2771,718,2099,446,1298,1149,742,1057,1184,206,2622,871,2310,899,2208,2610,1640,2296,1784,1833,1716,2797,2674,2220,1874,2674,1538,1044,1779,431,2090,2477,2989,214,1823,2308,2823,1335,2283,2103,2081,1882,2219,2029,2092,2329,2014,1418,1167,1292,1229,2576,1841,2911,1254,868,1011,1578,2610,690,668,1552,2461,1869,2242,505,1564,134,2156,2539,739,1881,1909,911,1377,2769,2454,2356,2224,1636,1556,547,1415,2033,128,2640,1467,1846,27,2173,2841,99,24,2652,1417,826,2739,2975,2144,2475,1775,2612,2044,463,1729,1108,1857,1512,22,1757,65,221,2590,703,516,113,2850,1752,1860,531,1301,1320,2932,1518,765,2239,346,2772,2050,1340,1966,2847,2780,980,2313,2011,490,1286,2740,136,491,1089,406,1853,289,362,11,2116,2979,2849,2122,389,2011,2513,2147,1512,499,2443,2300,990,414,2780,2672,1665,2768,2591,2501,1718,2353,1530,440,2422,130,456,895,1694,2752,2645,2090,119,1984,1020,2887,2140,246,1968,1922,2452,507,2268,1452,2051,1483,1603,2732,1845,721,1841,1880,2944,1383,1170,2608,2751,598,301,200,2378,1116,1646,1910,2747,392,2798,12,2655,1667,2444,777,1964,539,826,1669,2320,1548,100,1452,197,2424,2423,1591,829,1964,1912,2683,1548,1756,1580,1758,2614,1098,1036,1398,1545,1959,2083,1552,1453,997,1458,2441,2685,1311,2314,2277,2683,1530,2072,1501,673,2248,1584,35,1733,2586,2765,746,80,300,2421,2441,2048,1431,2790,1936,1786,338,2348,74,2201,643,2169,2308,1781,2212,759,1670,267,2154,1325,273,2164,1972,2431,1941,709,1119,1991,1591,165,1100,2681,569,2633,2451,2706,1571,1985,2203,330,1508,1721,1255,2251,2676,2185,1710,2467,2394,1802,2685,1927,947,584,1790,757,659,1848,1537,1092,318,2026,1735,2102,2234,260,2539,391,2888,1869,527,2553,2470,608,834,54,887,1862,1426,1961,2720,646,2582,1584,317,1971,462,2557,2947,2149,2414,756,581,404,880,243,1714,1569,918,1598,594,729,1519,1793,390,1440,2207,642,734,1987,2702,880,2542,1895,2111,465,2466,2647,2981,102,2647,1478,67,2246,1350,1776,2788,1851,2867,932,2463,1715,470,2465,747,2279,759,1757,1229,861,522,239,1486,1375,1330,1898,462,2631,2787,1821,1937,2812,1526,207,112,1780,2170,2218,2988,1073,934,1922,1368,1828,2459,1876,1647,250,2217,1848,2119,2013,1173,886,2170,1692,2694,1330,2727,467,568,2182,726,1621,2722,698,1734,609,409,1780,839,2161,1943,360,1399,1213,1244,473,1901,2128,2519,1599,2014,2286,2412,1591,1720,2635,736,488,884,2927,535,1292,555,1813,1030,2670,64,658,2384,2729,180,1110,1636,912,539,1278,1335,2511,977,331,1381,133,337,2600,111,2879,2508,87,1943,2581,739,81,350,1679,1281,2916,1072,758,2957,2387,1804,2833,1126,1674,117,655,2108,556,2406,2423,1344,409,2264,1946,2281,2491,2307,1855,1095,1004,1217,2077,800,597,2718,673,1757,2341,473,1857,1101,1635,2155,2687,2372,909,2079,691,2318,744,2517,572,1412,2568,995,1038,2981,1493,2207,94,2368,56,1406,814,954,928,567,1255,2086,2542,2638,120,2124,511,2207,628,2082,2228,230,688,583,2119,1814,2984,192,2719,2570,701,122,27,1876,1599,1922,1546,2180,2998,388,2695,314,1345,242,1880,1688,1384,117,97,276,2061,2668,2180,1915,1574,1892,1270,1231,869,1148,23,2991,1664,550,1518,1455,1362,897,351,1796,2533,2700,2290,1869,1514,1782,1046,2918,790,1749,2394,1822,1549,2429,2188,2932,1597,1986,2422,2997,661,1748,2570,159,672,1760,2309,1438,1882,218,754,1996,2086,1522,930,462,362,1,1403,2181,1364,2790,237,1755,2153,2730,21,1188,1372,1967,1431,2405,1858,688,2476,934,1466,2330,1582,2628,2417,2588,551,2653,209,333,2852,2935,1161,2273,2801,171,1459,213,1030,998,723,742,1379,716,2618,2934,2851,1108,1480,1418,280,370,2146,2307,1471,2831,2077,757,2975,1280}

    {1053,2049,1550,2410,1661,2193,2681,410,118,1777,1257,1663,784,2010,728,2070,199,538,2620,378,141,125,900,1306,2075,1066,2270,1398,1573,2763,2036,2371,401,1234,1259,2947,1212,1020,1874,2633,1189,401,655,2696,2291,1287,920,1799,943,2804,1371,659,1335,2079,2595,2906,2887,1919,1257,2096,2794,1211,1701,1501,570,1095,1623,1812,184,100,2184,178,2587,2129,1048,1743,2113,2992,102,959,30,2847,1795,1232,159,531,2040,1907,2028,2430,2267,599,2780,398,116,1377,2615,2043,2234,1947,1088,1389,2531,2885,2637,1381,2105,900,2242,194,2439,2660,2285,2487,37,2803,1321,2039,2208,2139,188,981,2509,322,2071,2061,2609,3,2650,1471,291,1497,2230,456,65,2306,168,1901,978,166,353,2049,54,547,1218,2424,1032,265,891,100,1488,122,36,104,2851,2158,1932,283,2953,992,1021,2287,2750,1088,1336,115,804,2793,1456,1232,387,804,711,1329,1396,2024,1934,2496,2219,728,1990,94,675,1796,2253,1807,797,2834,2939,1020,2891,2206,1173,547,2197,2646,1942,2157,2562,809,2103,1612,2864,1116,1076,1107,923,61,1484,2022,2775,812,1763,617,1607,810,100,647,247,775,1657,2307,450,2540,1425,2280,10,1584,97,1394,1418,475,2598,2074,1671,1110,1352,1081,1338,2130,1202,2537,2134,951,1436,2079,2098,178,2595,847,2782,1876,2017,2,1257,2966,1197,1411,1402,1918,2942,2634,1056,1461,2403,2245,1579,1695,2739,1995,2931,1290,890,1345,425,2724,2487,1450,1162,960,212,2872,670,1433,594,2582,2627,1450,1871,744,832,1386,2170,2180,2002,958,2599,2949,99,2717,202,1605,1944,864,2196,377,2908,657,1160,100,1372,553,412,1288,505,2506,837,553,2522,2016,473,1666,2975,1310,1886,2328,1577,2913,966,429,542,98,706,554,2897,2112,1027,2441,1910,28,392,1281,2633,2177,292,857,22,969,613,2564,2405,2780,1376,2907,2976,1532,901,479,1663,1661,1121,2278,641,2793,2596,2803,2445,2634,2346,1130,269,2538,2016,1907,291,1084,1037,2270,2187,1293,2926,1233,1134,2718,2534,2147,2661,1970,593,1064,1761,2985,2574,146,1691,145,1316,2718,2994,700,2808,919,117,2776,1819,1616,2382,1018,2064,1506,104,701,2184,569,2258,2886,560,476,2987,2785,544,1680,1796,1378,2111,2294,2581,1524,2599,2330,1789,1741,2294,2308,572,1407,20,722,371,511,1759,853,1096,277,1190,1727,716,62,1964,2551,2907,869,1880,1262,1329,1577,607,216,1980,1236,928,567,2665,1249,1938,73,2079,2633,1564,489,423,2518,1239,1278,857,1402,1663,271,2590,2124,1501,2643,2810,862,1697,31,1202,2026,2981,1831,2154,1700,1365,1512,562,2334,2662,1202,2302,1687,2392,807,2762,313,2011,1367,2282,2354,1864,2028,940,1323,1402,389,327,1517,944,1563,1510,615,68,1331,2910,232,1573,758,927,1287,814,2755,1431,2214,1713,2425,654,202,1883,1374,2882,603,183,729,945,885,704,2805,1169,1113,1259,991,1882,68,1477,2718,350,2975,2305,464,1637,2847,2507,7,1879,1075,511,2462,1923,2029,881,2171,1977,2760,8,605,1518,2661,1683,2028,1478,2798,1577,792,2139,1469,2016,918,2673,873,1385,759,1250,2893,2537,137,1938,732,2969,68,1589,1347,2339,636,2517,2709,2495,2178,1710,2078,567,2468,2548,2249,1327,2097,1926,2317,2155,1363,2771,920,2188,1202,328,661,740,659,979,616,2271,778,2258,2905,2539,1407,100,1478,1191,2930,720,2093,705,2055,1835,1734,1737,635,259,1277,2709,2161,92,2480,489,1111,1613,415,1485,1641,2351,2078,2433,1679,233,499,1730,1704,996,1070,826,703,449,2499,2322,175,466,1777,2399,2159,2646,2832,2618,2775,2020,2073,2169,1515,1773,9,2044,1147,93,2696,2955,663,2988,7,559,837,2980,299,1313,2356,1622,2664,1804,1400,1607,2510,1138,524,1824,2544,1303,197,1309,923,2592,235,2558,76,1827,557,1520,2647,761,1869,1352,1238,2745,1874,1888,478,363,1458,435,2460,2616,997,958,2179,58,1395,97,2586,368,1353,2255,1404,1437,2890,2716,1401,2238,665,874,2515,1948,1734,936,2343,307,113,1119,772,405,857,988,2160,757,2150,1561,2021,869,1890,2334,334,1632,178,1696,1766,2798,309,202,2077,2877,1943,1682,2063,410,1675,1843,1525,2203,2055,2401,2986,242,500,1010,2835,1726,2327,938,2391,89,2504,1493,1785,2346,102,1794,79,1557,1481,1857,612,671,2167,2914,861,1600,961,1568,1402,320,1142,2021,2153,1549,2643,256,2006,2015,1991,934,2045,1640,1703,816,1607,809,2219,1566,1487,1239,1282,13,1053,2177,1708,2586,659,1215,421,1688,960,2773,321,1494,810,795,2695,2645,1619,2477,1683,2891,2332,1011,2845,1548,480,1798,1118,208,361,1879,1777,1624,546,467,2967,754,962,2826,1278,2753,2651,858,292,394,677,1603,452,2871,2248,1664,1220,2176,792,40,1684,2208,1387,2637,515,1358,492,712,1702,319,529,147,1511,1604,1849,2478,1035,1655,2049,13,499,362,673,380,1881,1337,428,536,1440,2905,1096,773,2608,2399,923,153,635,912,1791,1952,1107,2111,1445,2423,224,93,2623,2935,1288,532,1507,187,1608,1221,1612,759,2630,895,1778,2845,1480,118,2854,2894,935,1375,2215,2023,886,2150,2145,2328,2144,1398,2583,1739,124,87,978,1366,2925,521,1579,484,2915,1774,2645,90,733,223,1663,2226,2711,931,1352,1755,219,40,2431,2268,279,2351,2757,2451,2636,2879,1857,1756,1811,1995,2684,2581,2203,297,1077,2642,770,2934,807,789,720,2955,635,2003,775,113,1467,2675,2681,2841,1721,886,7,31,1843,2186,343,1887,752,1723,837,2952,378,627,1309,1995,193,974,1631,860,2516,767,1181,418,1736,1534,1691,2693,1294,2636,2768,2095,902,870,1139,1439,1188,850,1954,2360,701,1699,2487,1416,2406,780,97,2643,2762,231,2179,1455,1351,374,557,379,2264,398,1071,2804,1341,1867,2015,2138,2725,176,432,420,2698,1376,1821,1625,14,1053,1107,1608,2040,2635,2373,1874,147,34,219,1523,381,1347,495,863,2137,1963,2128,1025,2712,215,197,614,362,2539,577,436,1446,2109,1852,1253,2705,1380,1194,266,2358,1217,1541,1059,2184,2775,2150,340,2731,1110,806,1451,1981,142,345,331,1759,931,2695,1785,2134,2601,794,2118,219,2693,2968,558,1473,1578,354,807,354,1141,1943,766,2853,1107,2114,220,540,927,2617,1955,2681,1507,590,2982,1802,245,433,1542,348,2554,1947,2761,1452,100,658,776,1579,1325,2989,1522,487,1413,1090,946,2423,2749,62,1693,114,1144,1407,66,1420,2325,2544,1719,1244,1821,232,2001,1702,2580,364,1132,504,1492,1153,610,2559,158,2021,461,2342,639,550,2523,2308,900,158,2820,1273,1938,2989,2487,424,2590,898,919,2799,874,1624,2028,2046,457,2800,263,2752,2195,2906,2658,1911,1421,2499,2419,1418,1100,953,2657,2445,1032,1689,1193,1088,911,2840,1919,438,1271,1055,845,1925,434,2792,2889,1243,135,2359,2432,298,1222,240,1587,270,2408,2112,1244,1533,2770,1357,427,845,1885,2520,2831,189,2771,1971,1317,2790,2278,58,2256,1598,1550,1691,920,2009,291,2558,2069,916,740,2330,113,353,2635,2139,228,912,858,2309,1087,1522,716,1116,2432,2842,1105,40,1518,2998,1482,579,268,2613,330,2136,2104,1857,324,1235,2616,2844,1237,2251,2113,351,197,787,2047,2773,512,2404,1551,2432,1550,2435,1672,1704,1077,2345,353,992,2759,2078,913,1097,2538,1863,2189,2933,2011,414,190,158,2146,2937,2058,774,822,768,783,2216,764,1606,1449,1585,2388,2699,128,1125,556,2570,266,788,2941,397,1351,52,1160,2240,1604,102,528,2640,1957,2543,1748,1624,2447,1618,689,1888,1805,407,2564,1795,1982,2671,1406,2830,225,1141,974,2062,2296,941,57,150,1659,2020,1507,1045,2445,1712,489,2062,2253,1169,2135,1896,654,1001,302,2560,543,1225,151,2150,1345,1657,1877,1142,321,890,2881,2837,1801,108,1873,913,411,94,757,785,889,422,2532,1268,1530,1397,2664,192,2055,754,2549,54,1690,1463,274,2743,1633,2786,996,578,1675,2111,523,2177,124,2394,2030,2052,2608,2008,1222,965,482,2191,1094,831,716,2260,1441,1641,2794,1645,1651,2358,740,588,2818,405,605,1838,1410,1448,1833,2131,272,1381,311,1828,912,2529,226,1145,1437,73,2181,110,145,2670,222,703,131,1458,187,313,62,210,2983,1921,1510,2697,1297,2619,743,2326,84,1504,754,238,1009,2119,1688,2658,443,2025,1154,955,990,1114,1290,81,2479,1529,2438,988,86,2165,2790,2756,763,629,1887,2695,1138,437,2307,1606,2400,565,364,2775,644,251,787,1681,2695,2868,715,1601,2215,2611,1018,518,2328,778,913,1233,1203,449,728,2825,20,575,2901,2996,341,2451,452,126,2824,245,2170,1057,1328,2333,589,1279,283,1688,1020,1119,66,1396,855,2028,2869,1387,1053,286,2410,737,1879,2566,644,1347,1745,1548,915,1937,2809,561,673,534,2830,2739,2737,2268,2462,2459,836,1561,2151,259,2766,1287,1964,775,33,266,1115,918,1431,680,1183,1643,1348,2712,2924,1658,2272,2294,1835,1907,2441,2615,741,1335,2737,2539,2939,1065,814,1025,964,1122,975,825,2414,1431,2518,1298,1725,1445,900,1987,2681,1215,388,964,59,225,2777,587,1048,1862,2902,1114,260,1950,1750,1172,1696,1844,1913,1735,1107,2266,1376,283,1732,2376,632,2645,936,1075,2772,1556,825,1852,2779,1155,2876,1275,355,1551,2943,976,2611,2615,1586,1377,2246,106,1648,564,354,1775,1432,2072,1802,2912,2861,1203,162,1817,1233,586,1724,1005,1003,942,1520,821,738,448,2123,1593,752,1667,2756,673,2716,2745,1256,783,987,2812,651,1472,2764,390,1591,2080,1136,1449,927,163,2699,1009,2132,287,1586,2550,45,35,2972,848,1857,2553,2960,677,2149,864,1391,1135,1208,1856,136,369,1189,677,684,1322,2193,2199,820,2369,18,471,1952,1176,202,394,443,156,1402,375,1332,1219,2745,2803,2806,2208,2344,1521,2426,1289,1427,2490,1615,521,812,1138,2923,786,1577,2724,1410,2868,1802,1925,624,1992,1101,264,2834,1570,2829,2011,14,957,379,2700,10,2866,2796,2026,220,128,2974,571,2974,440,2472,1869,2973,28,2970,869,1983,67,1576,1061,728,257,1716,2816,611,483,2710,2119,1082,983,2348,1686,2745,174,1348,2300,2373,2019,989,2171,1068,1426,330,624,1232,2081,17,1336,553,2236,284,198,1055,1702,708,294,251,975,1202,2218,2789,1945,227,2029,2115,1477,1400,2556,1159,65,2727,1481,2877,2873,1195,2536,760,1975,1734,2431,297,857,1862,2421,2521,2492,1002,715,2955,2546,1911,252,1357,509,1163,2053,2448,1169,426,2802,1624,2714,1071,643,2248,14,1221,2574,2299,591,757,2323,1998,2542,439,2906,1830,2149,477,1243,2147,713,341,1186,2612,42,1931,2721,2853,2534,702,2923,2934,1536,2082,2187,896,1101,226,1238,788,721,1891,770,537,934,1987,1088,2637,1633,1826,357,1050,9,971,1534,2536,2295,869,2422,1518,228,264,505,805,1598,2435,1870,1335,1217,919,2158,40,259,744,2991,2759,1040,2028,2528,1685,1042,561,169,65,1080,1959,2049,2215,738,2404,2949,602,148,1839,468,2542,2250,451,1192,916,710,125,2162,333,1375,2748,1378,2714,2076,937,1973,2625,2816,2248,2065,1259,1377,237,1269,567,770,135,1808,2057,1400,1772,1126,1908,2774,1724,1280,1782,1832,2527,473,2940,2754,2579,1140,281,1460,1762,2784,1372,2654,1905,2434,2927,2107,1673,2349,2085,2338,1464,230,2281,2565,12,1587,642,2764,2915,2384,482,885,1821,1877,2086,1457,2175,101,738,2417,811,1465,2419,464,656,2025,222,1879,2690,517,1502,2559,1077,1510,1864,198,1669,1651,19,543,2180,1231,1821,2002,1462,1207,204,2795,972,1079,797,1329,1998,170,2420,671,443,1207,2020,415,530,1983,1510,641,2576,2926,2383,1736,2702,2395,1802,1110,310,2633,2720,838,912,1373,696,1987,731,2824,2311,2127,1074,2674,2547,666,753,2686,444,2190,244,383,2588,2521,1853,40,47,2533,1102,1781,1518,28,1857,1355,1768,994,2686,821,2764,169,456,623,2320,1400,2550,514,2153,820,2069,886,103,778,2253,1244,2869,2810,1838,1441,1495,2971,260,273,1754,1701,2014,1709,1539,903,514,138,1902,879,1237,2014,736,2418,1463,2088,813,2538,1560,1309,708,801,2602,2296,1724,2750,1534,2181,416,651,2716,1703,580,876,2015,1382,2855,2087,2573,464,2742,158,2260,2499,1959,2213,2164,1018,1990,720,2322,2307,179,827,2231,2438,2532,303,2424,1577,660,1969,801,1802,663,828,306,173,2318,1013,1346,1178,561,1443,1683,1993,2830,2813,2610,2884,1367,2735,2005,257,1034,1169,1906,1999,2192,145,1673,1228,1320,1359,938,2782,1738,1744,676,924,765,2404,468,206,374,2016,1654,101,2342,1226,949,669,2300,445,2954,2474,426,901,2820,178,196,2736,1333,155,2163,2429,2166,2859,1409,2309,708,2658,1233,1752,1734,797,2797,1491,159,1166,2494,1861,1126,1174,2422,740,1406,890,1637,912,550,1565,2125,1095,619,2007,2450,1475,706,681,2158,1756,1155,963,313,1381,2787,1691,1162,2269,915,1669,2453,1107,2349,1443,394,1612,2018,1898,2697,965,1426,2367,1275,1550,2239,2680,1307,2639,707,2269,2308,2821,2381,1207,895,950,1200,579,1712,2895,692,2011,1117,1009,1520,1656,715,833,1599,1039,2059,1559,849,2319,1610,2243,673,1278,1679,2967,2542,1705,2664,614,1566,940,2229,2207,202,850,1361,700,1304,2462,2727,240,248,1647,1978,660,1818,2605,930,1564,2701,910,2149,1052,485,97,1874,1441,1424,1518,16,948,117,2798,2333,2324,1785,2863,1444,817,808,2433,1287,1577,33,1934,2709,1921,381,2183,2817,1744,962,649,1138,1137,2566,2313,2692,1448,1869,653,1063,77,2919,167,2701,1866,2051,2340,2791,2284,2728,673,1510,2935,177,220,1123,2512,222,1706,1070,1607,1298,2666,390,511,717,2248,413,609,1782,1255,2469,2275,2620,1097,2293,1614,183,2678,2903,1055,1979,933,1142,1209,1912,775,1407,714,1195,248,443,1177,1366,1043,1649,2678,1029,2900,2301,1767,599,877,1326,1570,2693,88,1800,982,2386,1781,2015,2741,2823,684,2015,2216,1196,1540,1294,919,96,707,356,2357,2643,1807,2721,393,283,2818,2875,2982,511,1683,962,756,1769,2020,400,481,935,2405,2236,978,547,824,359,2118,53,1561,1282,2730,344,2816,629,1624,1605,913,2550,2269,1575,1053,2089,211,1282,630,2965,2292,2026,1400,720,7,1047,748,651,798,2054,1266,2539,1147,2062,2435,294,754,1947,441,2411,2440,1714,2921,2949,81,2435,1107,349,78,1038,1854,789,2706,843,2816,924,2865,2410,2758,293,1758,969,420,2259,2422,754,2227,2370,315,2401,2970,1470,1966,1291,634,891,1598,1134,2657,1045,2816,1347,266,2967,2212,1405,1398,835,2415,35,17,366,2695,2352,932,2858,396,1949,1928,1159,2613,1960,830,2562,2624,2347,631,1426,2000,2808,2814,2970,2471,2988,1595,1777,2988,809,285,2333,1921,1116,2906,2209,2056,1870,1886,2043,82,1574,1033,2462,2347,1547,1640,428,85,194,253,2822,2999,2667,2563,2974,107,2449,2103,39,969,2525,721,2444,368,1804,2251,716,1352,108,2550,2594,122,814,1964,1423,1647,975,1894,646,1276,2436,2056,2207,2839,399,941,322,133,248,1860,1253,1112,1041,2261,1722,917,1599,1274,692,866,967,1104,643,308,2973,1103,2172,1124,2033,2895,2043,2961,2538,377,2244,1294,993,391,273,60,25,2321,2319,984,1929,1669,1655,1773,302,1987,974,2828,1438,2117,1069,2622,908,2580,1921,1177,2655,1500,1116,239,570,139,917,2268,2713,2716,599,2763,1426,2829,2223,1858,1085,1711,1176,920,1874,1159,1783,1150,826,2315,2320,109,1667,2496,2917,147,998,851,352,1493,251,43,24,736,2695,423,2896,2632,1946,2995,1814,724,974,2832,1735,2384,2541,1103,2165,107,2593,1240,1282,1281,2894,2334,2576,2715,1717,520,2489,113,2503,2269,108,1770,1109,1000,2969,2127,1518,2086,2095,2971,1198,478,2795,1281,235,968,2843,1771,1402,606,497,754,2659,1731,2971,346,1614,2096,599,728,336,2928,2142,1485,1505}

    1327

    2388

    Returns: 102337161

  95. {2382,518,1329,2113,661,142,180,1706,2452,1340,1136,1060,1807,2003,1295,2001,1,1366,1693,1022,90,541,1224,1839,1197,1759,235,2166,2137,75,2163,1977,1897,2470,2671,512,2574,1355,2609,2646,1102,2201,2273,1292,171,2184,134,2565,1137,2256,1388,2964,1205,1468,941,1480,2718,978,2025,807,2004,2346,1828,278,2333,2227,1940,2525,863,1418,271,2264,2865,1039,1457,1166,387,2127,331,2555,387,2803,1218,366,2621,2686,1606,633,2229,387,1779,2209,1965,128,1362,358,1388,2308,1492,582,2667,517,2707,1206,2200,2280,757,1328,2624,1200,1706,1768,1099,2795,1485,2202,2398,2280,680,2830,2507,362,2473,2162,85,2761,354,666,1331,2297,2174,989,1456,891,2146,2541,2594,1632,1646,2466,2962,2669,793,225,396,2267,2551,939,943,745,2837,1436,862,220,1560,2581,2989,2924,2622,2885,2642,904,2966,29,2885,833,2942,261,715,457,2414,1050,1838,804,108,30,2833,829,1169,1676,337,2272,2563,1822,2388,1706,2665,683,909,1498,2339,939,43,759,1580,910,2131,2181,1882,1705,619,1538,830,2452,154,2995,1621,1091,2940,450,1182,855,1553,2742,2877,1435,1076,2955,1824,2310,1269,2268,2321,2003,2609,1577,40,2682,869,1531,589,1331,885,229,1102,653,987,2463,1612,1445,1898,2932,2244,2993,2691,2289,1602,2520,867,692,1715,1167,2504,556,2389,1508,921,75,2744,389,944,2626,1402,1570,47,163,2744,1259,125,2922,2888,1120,2696,1859,2856,934,915,1638,1637,902,628,2287,815,2455,2305,2590,2390,248,591,1850,788,1746,2355,2637,89,2225,801,2961,2390,964,1433,558,2593,842,1821,332,706,2713,1183,1310,162,1466,833,623,183,2289,1863,2712,1766,1140,2351,672,1027,1683,2208,1067,2234,295,2439,1516,2239,346,1839,1463,958,712,2196,41,2343,1598,878,1198,2885,1524,625,299,1992,2801,188,2605,1590,703,2929,1534,2499,1745,780,507,2121,2379,598,330,2654,1019,1390,2137,282,2934,2432,1123,2230,1817,82,993,1264,2891,2303,735,638,546,243,1399,400,1597,2156,2842,1238,2223,2045,1445,564,666,2910,225,1547,365,2525,1385,966,1221,1169,1972,2557,392,404,2029,2520,2072,2293,1638,817,2355,1331,2311,2906,2042,243,1068,635,1176,37,1321,1996,1647,678,699,1000,2077,2546,1751,1889,1057,1536,2733,65,307,367,1493,786,1237,1770,191,1198,2978,1063,1509,2509,2782,1227,639,2516,2364,713,1513,351,813,1906,1629,605,489,910,1765,693,42,2232,1516,827,2176,2619,802,894,446,1758,1146,1162,626,812,1404,1633,2853,2284,2208,952,2151,500,1862,12,539,193,1945,1982,1831,2362,2427,1942,1303,2398,403,985,1844,139,1887,1926,2373,440,2214,2464,1581,1780,1385,2489,745,1032,2675,2343,1303,1957,1209,1080,1195,2943,1366,1473,1491,1037,2092,2759,488,1153,2474,575,1568,1600,1777,451,1457,1056,2057,2886,2943,2593,2179,292,2969,1568,2861,841,1281,1061,1803,1343,2853,187,1847,2809,2764,2050,536,1950,434,183,1601,2347,293,1561,853,1258,604,2337,2858,101,2604,583,1739,2118,2491,2365,1432,781,814,1098,2477,205,2820,814,1755,2629,2405,2053,2645,489,1165,2770,647,1800,1202,2461,889,1425,2649,1707,2328,861,1729,2778,2852,1754,65,893,1110,2432,510,1270,613,2698,1842,479,797,168,1540,2564,814,2877,416,2009,904,2512,2077,1576,2161,1294,1279,1710,1969,1819,1442,692,2198,45,1576,2572,140,2400,2875,1494,2500,1705,574,466,2772,398,2781,583,73,1260,2071,1211,2188,2795,322,1619,435,387,1706,2649,2485,2564,2649,286,103,2378,2838,1234,2018,2103,1784,462,1865,464,2167,253,22,1191,239,697,2475,166,2428,1497,207,1832,2756,33,177,2515,2390,2504,1458,2846,1832,2042,754,2523,1961,691,2286,2016,253,543,2098,197,1675,2570,1401,1803,1646,2731,879,1153,404,732,1941,814,2676,2929,1360,415,2106,1587,660,718,846,2553,1491,108,194,366,2494,1207,1406,2691,697,1455,2222,2615,1445,2817,1661,2267,2471,1371,1708,2033,1786,1493,607,2638,766,1799,2117,2879,13,1634,1883,2725,2919,2885,841,1631,2491,759,1184,1297,2897,2978,1272,2868,1517,1277,131,2100,1728,1712,177,573,2705,2589,151,2550,1491,961,1048,152,1429,1048,2815,2798,579,1868,62,343,254,662,361,425,610,1283,797,575,1045,340,230,973,394,496,1354,1607,708,410,108,1436,2468,429,1714,1558,2042,2478,1439,2468,1294,1527,1714,2506,1136,570,35,291,1057,756,1144,494,464,1394,1284,732,824,1037,864,224,2213,1702,2132,1916,2942,735,2812,707,2495,562,232,2901,612,2084,1916,953,1100,544,1881,2702,16,860,2062,919,1073,1896,1959,1175,2996,59,1859,1396,1566,2090,1397,1184,412,2272,2641,918,1123,1276,608,2771,931,1536,407,2141,1289,2999,2402,1584,1753,1144,843,1571,489,2753,2079,2306,609,2111,193,1674,2195,591,357,1360,2134,296,2729,1096,1211,365,1776,1948,105,1922,208,727,84,923,1939,2525,328,387,57,575,1445,1131,1246,874,2412,2862,2782,28,2968,700,2851,1589,2072,1555,2329,1049,2390,581,2820,1335,969,32,1527,547,1676,465,1472,640,1482,2625,525,705,2947,512,579,1663,635,1861,2649,1353,554,605,1202,2613,700,1421,2127,1233,1271,642,2900,2085,1794,1506,2888,1750,2265,740,569,1853,2282,632,2780,24,879,1759,1534,1736,2396,409,2670,115,311,2073,1010,451,600,514,2751,598,122,587,2818,603,1832,743,45,2500,2816,281,1214,2828,68,29,1458,508,44,43,852,385,162,1097,2555,325,1997,991,10,469,870,942,1493,485,327,430,747,1961,738,390,414,1989,982,1492,2298,1908,2870,1940,2556,1201,1040,1292,1073,141,1871,2647,1579,1778,1501,2712,2729,124,2629,2796,790,2976,1331,549,1529,1202,1828,2053,2623,1969,1033,2100,2103,265,2736,636,1982,2822,2416,2371,1138,822,654,2395,1015,88,2313,1315,760,1701,891,724,1142,1087,1665,1322,751,58,2170,1475,2187,997,288,835,2148,1723,832,617,550,1672,2765,1525,2611,472,2991,2104,1248,436,1759,2285,1306,1741,2353,2497,1903,1749,11,282,185,2860,2806,2592,2027,2474,2529,2515,2755,854,2781,882,725,2370,1053,2211,2117,2142,932,391,1562,1171,1866,2837,2930,83,1236,2475,2193,445,1931,392,1956,335,1457,1316,31,1968,485,2144,2096,257,1057,2617,505,2246,1826,610,267,2081,381,2480,2036,412,1508,708,2630,102,400,222,2658,308,1222,1343,2901,712,40,1922,1919,804,1980,2364,1215,1222,1931,176,2180,1870,257,2994,2627,1381,1032,773,1486,2430,1517,675,2550,2254,2624,1682,294,2430,2718,1009,1272,2258,1587,2376,1627,1217,1808,415,2848,1897,2517,1161,803,2043,2013,1426,1445,2384,1431,1078,54,1898,1089,1745,1973,971,1034,2500,243,17,2419,1102,2535,316,2525,2351,629,1971,289,1091,690,1263,2722,1962,2173,2391,2934,195,2392,1403,1181,398,1815,1424,2124,144,107,938,380,1811,2582,1125,1034,130,836,2172,1983,2369,2470,2500,1337,1395,1936,2648,1778,2029,814,1020,2871,1069,2541,1800,2068,2931,619,2769,1011,1897,2336,2564,870,2561,1588,1103,553,1720,2343,2813,2314,2238,588,1525,2766,1335,2171,1217,1544,2412,378,1667,1488,2578,726,2826,557,2603,1038,2246,1854,537,680,1386,2128,1995,2389,2524,1641,369,1997,944,2551,379,1976,2629,1137,1756,770,1670,1464,337,1957,590,1672,1624,1899,296,2199,1724,14,101,1502,902,203,1292,980,2137,1943,1680,2168,2164,381,8,905,1107,252,954,911,379,266,2771,556,653,2579,1370,2122,689,319,2665,1234,1050,535,1683,1919,2264,117,1225,1949,2558,2887,1147,2936,1415,2204,2399,2912,783,2309,2302,377,1168,1756,1452,2139,1514,2061,689,1590,1553,2122,1354,2859,610,1350,2396,1790,857,709,2634,1250,423,2866,1981,2913,2739,2633,387,338,617,1827,594,871,560,247,873,2978,352,2886,2597,2496,2582,1447,2128,1087,2933,2035,1176,979,1241,744,2566,656,107,1954,210,1137,1541,2668,2911,973,2020,1377,1525,2394,1063,313,1814,1187,2522,2062,1366,1215,2044,1873,1203,42,674,1362,2130,515,729,1584,1478,1261,700,954,1240,11,1508,1699,1726,1348,1452,1434,724,1655,2412,1887,223,65,279,2185,142,1755,2022,2103,1715,72,1052,1324,2900,1740,2721,408,723,1400,2825,97,242,266,432,2226,2978,2215,2782,225,2180,190,2287,197,637,268,1745,450,1495,1215,2497,2780,2767,351,2343,248,2041,270,290,463,2738,1204,1458,910,2086,828,916,2398,2987,681,1300,1199,330,2554,683,2343,2574,2951,880,1445,1406,2511,1827,2622,1375,2348,1936,2096,1765,1125,1218,1420,2739,598,240,1940,2773,1913,2533,2320,644,2525,2821,1040,52,2305,240,2102,2953,2081,2421,2679,2278,1928,2849,1575,2095,2099,1542,1266,302,2193,350,574,1589,2471,258,2757,1052,890,1850,2976,1789,1336,1159,2165,520,1493,2662,707,817,370,1919,228,318,2587,2403,2814,415,1022,2151,676,1282,23,648,546,1092,544,2662,2512,2497,2993,914,728,1130,461,2037,746,2829,1975,934,2652,179,2521,70,1188,1355,1798,2499,2041,1153,865,1784,1841,1090,404,1456,1408,804,1275,580,2976,1905,162,595,72,2103,1368,124,2296,620,733,2736,712,1750,163,722,2290,2391,48,2423,1739,1440,271,2978,2338,542,2518,2601,2026,2280,559,1847,962,800,2835,1388,1976,2264,2981,125,686,2819,1801,1944,1585,544,1481,850,1531,650,889,2075,2137,1073,2260,2166,2633,920,561,1590,485,1898,1862,2474,2614,2879,1488,2071,1913,1553,1065,2865,705,2992,2616,1037,1866,216,1258,161,96,1959,851,1514,1707,544,802,2776,2879,1818,1281,2351,2696,2628,2422,2380,2622,825,888,2465,2448,2267,998,2773,689,1970,1791,796,1406,1181,435,2709,908,619,368,1391,127,1401,589,2340,219,2657,1338,2860,1983,1272,684,1395,554,197,1660,433,398,1759,422,291,336,341,2997,505,381,1721,745,2788,815,928,2077,2388,1405,34,1891,2790,689,2077,1211,779,2918,2901,2052,2873,2571,2364,965,2003,2056,1864,886,1008,2382,2581,2939,868,1107,1657,1958,1826,555,1869,229,1515,2550,429,2881,1926,702,2251,2688,591,1710,443,2264,2095,892,1571,2855,2506,737,2508,1793,492,479,990,2889,825,1573,2633,2883,1964,2699,682,1887,1235,2815,2933,2311,2791,473,579,689,2573,578,1073,1037,1219,2734,382,2290,2,2545,2923,2461,2453,2978,2236,1150,1965,2508,2511,492,1765,664,27,2795,2428,681,2406,454,1841,2427,1854,2462,532,241,2151,419,1431,886,2055,2704,1045,1570,245,1077,1993,2060,1228,192,1952,1004,1608,2620,2082,2933,683,1372,2093,1031,879,398,1373,486,25,366,2309,561,111,434,756,605,62,485,56,517,1329,1067,2226,2601,1863,2202,1736,666,2509,2799,551,1280,1781,1898,1654,2923,2705,1606,2099,159,560,2420,438,860,496,2976,2886,1541,368,2203,2904,694,589,1496,2217,1141,492,2506,630,688,1412,2598,2366,1485,1856,2386,823,68,72,2266,20,2980,1667,2188,2994,2026,1852,1367,1348,1754,1659,1329,2417,2377,2568,2326,2787,238,960,15,356,2011,2719,1238,1846,793,2202,2493,2334,986,748,315,1310,2151,2008,1659,64,1300,1931,2649,856,709,737,1490,650,2836,2349,2172,2656,2908,666,2914,937,2158,2009,270,652,86,826,1646,1869,2370,1417,167,2824,2893,492,553,1722,579,570,2463,2440,1418,2271,965,2368,2466,2364,2667,1869,1267,2265,963,121,1131,1144,1414,1291,1527,167,1169,2231,2825,1021,622,2715,16,1834,636,1802,1524,808,1882,1057,323,1278,1164,661,2216,1484,2765,2896,2370,2334,373,276,1678,2064,2430,1244,1666,478,2240,1384,2014,729,2653,366,2512,2198,1455,1684,1543,365,1235,1049,342,2805,2010,2973,2017,1904,1738,2635,2457,2826,2406,2034,1467,1520,464,115,1484,2658,1983,736,1894,689,1306,1576,1434,2177,2827,1531,75,343,756,737,489,1796,1792,2248,2765,1322,303,1735,2169,1569,1586,603,638,1361,1196,1634,1633,212,1112,364,2206,761,2975,577,2128,1575,1900,446,1097,2928,1899,2332,917,632,2048,1048,1477,1933,272,895,2093,108,65,360,491,43,1268,719,1036,1850,2652,2791,1875,1929,716,2500,983,1525,2256,1909,466,1128,2890,2201,1799,368,2649,2670,1998,2944,516,494,363,155,2584,2350,244,721,1727,1345,234,1109,2300,2452,1569,55,1778,1588,1802,733,1800,246,1114,392,1998,1405,1759,459,51,253,829,896,2411,1418,2612,906,2552,1118,1681,756,2362,148,1711,2002,1840,2711,1317,1053,1969,2056,1813,2264,1102,1511,840,2585,77,1622,2255,250,1378,2586,197,2047,1910,2713,1426,2047,1742,1662,1423,2012,2235,1672,576,2468,1729,535,2292,2080,2272,2775,303,828,2467,1892,437,1432,1748,1158,2929,49,396,374,246,1880,1667,724,1406,2245,587,701,2070,799,1264,472,1336,1890,1364,2180,2046,1507,59,2565,2525,2540,726,2687,1579,1501,496,526,398,1072,1793,2786,996,1153,731,2716,742,1101,1162,944,2314,2064,2666,1462,300,243,2226,544,496,2892,121,438,646,2568,2901,1725,1615,648,1793,5,1151,770,1887,2482,1076,475,900,2510,2971,2343,1018,1773,2511,1395,2325,2978,343,2426,1172,1474,2604,1876,1388,2663,370,121,1117,1655,2672,411,2115,2906,1235,2668,1885,510,936,2701,563,1258,901,1634,2270,913,955,1854,600,2498,467,1045,157,2933,2497,1086,1910,2058,982,2391,1775,2716,2584,2065,1009,2176,685,824,1646,2877,2384,731,2573,2303,2860,1135,2093,977,1829,1382,2423,2782,965,2319,1899,2145,1603,2670,954,530,2524,835,1153,1985,2827,1793,2747,1298,1743,2708,2989,2166,1232,954,840,725,2117,1018,2071,2132,165,47,865,183,442,1077,2049,1650,192,952,1079,573,2780,2414,146,1334,160,1983,2966,2384,1974,2479,452,1280,1142,1941,652,384,1603,1466,820,2447,2173,1247,1664,1386,2858,1842,357,1732,1776,1358,2611,2807,2118,1271,2365,870,2952,2933,652,838,8,1808,2218,121,2535,125,1296,1793,2937,75,2855,1554,880,2303,1026,160,1610,2986,824,9,2613,1330,1329,2642,1698,2649,2593,2996,2863,2716,1066,91,2501,1532,1565,1548,1465,1025,50,1712,2092,669,2535,1877,2609,2596,592,2124,277,2295,2372,1304,1640,256,160,1447,1557,2491,388,1504,1535,2361,2123,851,2363,1935,1850,405,2826,413,1058,2608,595,121,2551,1517,1705,946,868,1835,500,1706,1687,301,1810,854,1591,3,1272,1195,1719,1075,2431,906,1981,2815,1407,317,846,1603,2864,193,1433,1430,2916,1901,2953,2151,1956,1317,2916,2238,714,596,2143,2629,785,2311,1744,1156,731,2245,1974,216,878,262,2317,1025,1927,1877,752,1623,849,950,2061,121,284,2757,376,2685,2854,1730,677,784,2728,1842,1823,2270,91,2476,2473,2128,975,1150,1510,461,142,2312,1028,1599,2559,562,2115,1347,2572,2667,481,1674,345,2635,164,1966,1882,2527,2811,2157,1823,2448,388,1084,1504,1747,260,1067,1530,2193,421,699,541,1000,1760,1469,1122,1812,2308,2662,2954,1729,1846,811,1346,1991,1212,2082,195,1331,850,1967,1239,2922,191,1962,2574,2412,1145,2319,2167,1855,2118,2097,1243,31,2026,775,608,691,2340,759,2435,2444,1449,320,25,2351,1088,2421,1157,1104,836,580,1309,471,2456,1025,57,17,945,700,1556,2678,209,2692,1738,848,2433,2828,2834,2233,780,1611,1874,450,2523,450,2424,1363,772,355,1992,1578,323,2648,423,1095,2612,2089,331,2,2723,292,2562,2622,2297,2158,2921,433,371,2429,1440,877,1605,2582,2285,1905,1836,1253,1734,298,1955,2559,262,1778,9,1851,1831,1618,656,988,1419,1311,975,2373,2084,666,1673,1054,2173,1805,2709,1896,292,1785,1938,2260,1245,148,2617,550,749,1630,1033,2247,805,1573,1160,2110,812,1048,2771,1147,638,2976,1178,2230,1174,2789,837,2428,1029,572,818,2684,739,2782,606,2433,1529,959,2086,1576,595,1727,205,2826,614,2617,1620,2350,1529,1769,389,1545,2270,1230,1701,493,574,51,1497,24,2071,2084,180,2490}

    {2843,2123,1092,2458,2998,695,426,42,689,800,2574,251,2893,1119,1176,841,2703,2923,2252,1515,880,816,658,387,427,2186,135,281,1030,1037,2297,2148,404,779,446,678,307,2782,981,2829,404,36,700,2752,632,231,417,2143,2151,2588,1517,2086,178,2408,1433,1731,2299,492,2429,2946,1578,36,2357,712,2820,1025,2133,40,880,2527,2333,1180,1681,361,1644,939,2145,1976,1044,2785,2351,1007,2247,2302,22,1513,2588,315,656,2350,1027,1329,174,2473,1572,720,183,2802,2358,948,199,1493,1270,578,2410,424,1739,1728,756,821,1509,2414,353,1658,1612,1639,786,767,1686,468,981,2387,1618,2260,1060,1354,1292,1152,204,2649,500,2666,2696,2664,2337,1027,2723,1669,2549,2653,2542,1186,1703,970,2990,1526,1659,1728,2891,824,1636,304,372,1476,494,2721,602,2812,2606,2588,2315,1365,1220,2637,1431,2893,2694,522,2527,1757,6,1085,1867,1210,1156,785,1631,1590,2797,1983,2976,2458,572,2858,153,75,2397,1302,2042,894,1202,1628,485,2089,2244,2854,2575,876,713,2569,1925,825,1434,824,292,1589,1126,2898,2840,404,1056,1954,845,2198,1194,2487,2520,172,1940,960,1619,1882,21,1539,2422,16,650,1392,2581,468,866,621,2604,2122,2385,2690,2580,1648,847,447,1052,2255,1170,2414,1470,2855,2566,652,2641,2304,880,1585,125,2244,2949,2832,2302,2062,2643,2428,1331,1655,2205,231,2741,1924,591,2853,1236,1638,2218,1774,2706,1925,1021,1293,1757,1614,1989,736,2841,1535,671,2740,172,556,656,590,552,2524,2381,2907,515,698,1142,2776,124,2418,655,1433,2850,1635,2519,2427,1478,2945,447,1155,2591,1780,1695,2241,1473,892,1936,2877,1581,743,2415,2072,579,707,2122,822,2451,2080,395,1161,1735,2492,490,1392,433,2208,415,120,2058,1704,1039,939,814,72,202,2452,548,1977,169,207,710,2853,26,726,2699,1433,939,1282,1555,2473,2338,2428,2373,483,1849,1412,2665,2105,1188,949,2125,2513,601,2107,970,1820,1671,1870,1422,822,1497,2689,1308,1281,2442,2721,2237,2554,220,1017,646,2686,389,2147,2046,2609,840,869,579,1389,2042,2267,1226,1596,2297,2839,2140,2941,1860,1915,2921,1394,979,798,1325,2735,939,697,2287,1291,156,2836,1674,1453,431,1498,1344,2836,2062,2278,2064,1104,814,2218,1393,1758,368,1173,142,1669,1576,95,2601,948,998,965,762,1274,1641,1117,1846,2148,2309,1196,584,851,1093,1984,913,1562,2541,2625,1809,765,173,1733,2929,1082,399,374,891,635,1787,244,1115,1175,1641,2452,2957,3,129,237,2950,2474,1325,221,778,423,1324,2529,2212,2454,68,739,2810,364,1042,856,232,585,1334,2459,1465,494,1441,2335,1829,768,2972,2816,774,948,1073,2529,2356,1094,1196,2289,1652,1348,2826,2033,1254,2461,1410,197,632,2244,1399,2506,1696,1383,925,2283,2569,2921,1397,1066,2114,2882,2194,565,2934,2355,624,1791,1585,569,791,2059,2754,1705,1492,1432,831,100,804,1085,245,544,1094,2736,2155,771,1609,577,2189,520,2073,694,2456,1448,2766,2083,1121,1701,2988,2893,1216,2506,2117,2325,2991,1155,1946,1788,1493,2832,1670,1135,3,2139,2452,2780,1266,210,1457,2800,1292,2466,1864,1895,1719,517,1633,2631,2404,691,2907,2200,2307,2258,207,1921,2112,1329,1381,2781,843,2661,2827,2845,1576,2275,1764,493,1786,2639,2902,1042,1979,2537,849,562,334,2826,2219,2518,2782,1768,2355,753,937,11,1150,2736,153,1418,2607,1451,387,2146,1348,2899,1783,2514,2502,116,652,1288,1672,957,2425,1119,75,1408,398,2361,2963,492,2472,1898,966,708,2341,339,2740,2469,1164,1549,907,1273,1579,899,198,2874,2327,1111,2622,1069,2591,923,1381,225,840,2644,1200,2808,2258,438,1772,2318,2360,2004,553,1884,2317,1875,1674,57,2819,2052,1586,2967,2053,561,69,2257,92,545,1037,535,1700,218,2515,567,1613,2001,2242,2900,1552,516,1800,39,2151,831,1055,1419,822,2175,1615,714,198,817,341,1239,1309,567,2035,824,2844,2101,2428,2212,1148,984,1874,716,2228,762,1204,1620,1454,1606,2108,2934,1369,1788,1321,1527,2132,2276,789,1144,1898,1003,666,1789,109,900,2547,1876,585,2373,1281,2152,1074,1683,1266,1024,1519,2254,964,2639,1287,2659,2751,1413,644,1134,1076,2539,2515,2847,399,2076,1505,261,2883,1185,1368,944,1325,1306,2009,2300,480,1398,1872,2345,948,2364,1415,1395,2456,1804,1483,2352,2325,581,2179,2250,1417,1417,2831,2637,2797,1456,2736,1429,566,1049,1475,1878,1689,2138,2562,1549,1709,2302,2750,859,2913,2541,2576,2762,2191,2328,2743,793,2928,1589,605,1141,589,1402,2610,594,1763,2570,554,2244,33,2903,654,2346,1951,2285,1344,1261,2823,449,1464,133,2531,2283,1106,1440,224,2652,1055,101,844,641,2969,2921,740,1997,713,2058,1162,1579,1139,2611,924,467,2893,1601,109,677,2347,2511,535,2409,485,1146,690,1606,143,2342,1088,440,436,948,2214,1720,1612,723,1155,2063,392,733,1320,1563,1576,1877,2649,2917,2720,1939,420,2825,1000,532,518,546,2980,2783,1834,1968,2267,1566,2471,605,1857,2857,2024,474,1468,2704,535,60,2947,2633,1481,2436,877,694,125,806,2271,225,2760,1931,891,343,2413,2334,2611,2526,2103,1868,1305,2625,2143,803,243,2159,167,2688,903,2538,2859,1016,2791,2139,1826,2151,1811,670,2827,2425,1675,201,2869,611,658,487,2080,1179,1047,1186,1105,87,1099,501,2553,1642,2979,761,2946,2210,1487,1255,198,2874,2172,2661,2330,1643,1102,1994,2183,1911,1472,894,2532,858,1479,2663,254,1816,2675,1001,1404,2539,1393,930,269,681,2468,2265,1232,2381,839,2657,141,229,2363,1208,2088,2943,1569,84,576,2939,638,2644,764,2307,132,1012,1303,511,662,168,2039,1830,2243,1719,624,1011,1747,1014,2069,1438,2505,2454,1503,1636,2528,2067,1406,2167,1150,1462,1765,2202,1162,2488,2746,1543,713,149,536,1850,423,1954,1496,2284,249,1237,1863,781,79,2097,528,1086,1202,2658,1711,1552,2362,1002,1643,11,371,2462,1186,1985,568,1626,1071,712,108,1507,2414,1686,1592,2503,1149,2911,2127,2578,2577,2209,1406,2027,1320,2211,2842,2483,2739,946,1035,2754,1527,1864,2721,2977,1447,2710,2316,1491,2303,712,1018,2813,136,2354,366,2757,1649,1328,2736,1679,2755,70,1381,1154,314,483,700,637,2294,2166,104,730,2077,646,242,1676,2078,2093,2032,2651,2383,287,7,1896,650,2830,2942,1113,455,793,1885,2976,648,2007,1399,1265,706,1068,769,1904,458,283,1069,936,2717,777,227,1621,1222,1716,2675,1488,571,822,2407,2347,800,1568,2897,1434,2567,2560,2603,1132,1604,184,1644,2467,147,704,376,667,2699,504,109,2087,2797,2303,2074,2345,1934,2269,698,1564,2274,1163,1275,2390,2468,2615,11,1372,1767,225,145,359,2841,38,840,1810,877,2123,498,148,2774,1549,1613,2962,294,170,1719,1050,108,2296,649,1987,2255,914,2346,492,2551,249,2204,2135,1094,65,2031,1486,328,2306,1515,553,1134,166,1825,132,1333,1863,1555,2771,524,224,1717,2303,75,2583,1861,844,91,1511,1820,502,2949,2805,1587,2417,119,969,161,2459,1088,2804,2036,243,1007,1461,714,1704,2959,2625,333,2602,16,2146,1329,2317,1349,912,2855,494,2530,2066,862,1198,583,1808,502,1359,249,2855,2453,1023,303,723,196,251,2595,2518,2204,2221,1411,1643,2777,1141,1323,393,1556,224,1213,2243,356,588,2391,22,1348,1618,2988,1250,125,466,2636,2593,1869,2978,812,2233,49,2491,375,2954,2468,228,2721,1387,2601,1620,1882,589,2574,687,1352,2262,782,384,2428,2916,286,499,610,189,1691,2502,2405,1527,2768,723,1430,2614,1204,1961,397,2674,243,2803,2014,2642,2895,535,1855,2587,820,19,1669,460,1649,445,1140,679,2297,1039,73,569,1200,1104,168,1693,652,519,1686,48,1365,2296,688,2718,1737,591,1195,1582,2696,735,1205,1136,766,1086,2463,2574,1500,589,834,1827,2704,948,731,2208,309,255,1382,702,935,2806,1342,2637,2027,1785,1077,1983,1659,25,274,1309,670,286,402,1599,2789,2981,1223,273,665,198,2614,1385,926,540,200,351,429,995,1400,2677,2546,2331,0,2925,280,716,1651,717,1790,1050,2166,122,2673,1512,346,2793,435,814,2746,1434,1627,2704,2383,973,2224,1771,21,215,2642,1558,1978,2934,2690,776,43,2989,2129,898,1382,2724,2965,1250,1203,2797,2836,1710,150,1285,344,2471,1845,1578,506,758,1526,1480,232,2696,1493,763,1074,398,1481,1672,1463,126,1970,2218,1050,642,1478,1127,703,1129,2466,1161,326,1339,136,548,1720,850,296,2598,1244,1794,1215,1513,966,2568,595,2023,974,1489,1351,1426,1625,1593,997,2200,1518,2028,1177,1677,1371,982,250,1444,2127,1895,2917,2263,2285,558,217,1168,259,2130,1281,2757,343,1497,650,1427,381,1653,2923,2934,2791,2518,2370,2354,912,2505,2180,2239,2958,2869,2194,1058,2368,1388,2192,791,2178,2485,1984,1532,1328,1027,823,1827,1046,509,2454,1823,1550,2936,903,1409,2985,2181,2978,33,2020,2737,318,481,883,631,1267,211,1149,164,1404,2840,777,1432,2978,1299,439,891,2730,1143,939,1516,1068,1943,1887,553,1745,50,2436,2494,1077,446,1124,2291,2116,534,2555,2582,2343,2536,1101,406,2323,810,992,1612,1738,929,775,2209,922,1412,72,711,1491,1331,1995,2960,2512,1574,637,2371,2193,1774,535,891,553,2520,1923,1081,1270,1348,547,565,401,134,1406,1728,165,49,2279,2220,645,2090,1806,1595,2920,1533,1303,706,550,2231,2547,2374,1802,1762,305,2237,705,2380,1893,970,1953,1850,2771,2816,587,619,1088,2154,1460,1745,1546,2824,599,175,762,2779,360,1827,426,794,388,2500,1970,2693,193,1688,1667,1012,1935,2655,1419,484,2907,1313,1537,2249,2044,1493,1043,1718,151,2620,2301,1909,2179,1302,2054,1231,1042,2350,2017,2051,2197,328,1755,2637,527,347,470,850,2150,2452,666,1578,166,859,531,1479,994,166,791,2117,2511,1561,73,1242,1999,527,2829,1816,177,733,2541,2015,2984,1557,2926,1863,1397,573,839,2109,1398,1319,1421,1193,2289,673,2680,2409,1286,2239,2907,526,1256,2966,2610,2448,1310,1552,1673,740,587,493,1794,460,243,664,1811,2727,654,2585,47,2781,1592,2123,865,520,225,595,2342,1167,1079,377,520,1445,218,1795,327,1694,627,2389,2418,2090,1837,781,2938,1115,1459,1522,2551,112,2617,819,309,2502,125,1648,2438,2118,1437,2306,1287,287,1169,1888,589,395,2437,1754,579,2261,285,316,2052,1067,2638,723,1917,2409,1431,257,2732,2082,957,2390,688,323,2885,3,191,1006,426,190,2506,2997,1440,1847,502,445,441,2064,2445,2482,2907,1806,588,1966,1288,1719,2792,1879,1551,332,985,967,106,1552,2212,387,637,1418,1471,673,1582,12,2551,2441,2068,1254,1528,1287,1774,315,1925,1735,1829,1540,2589,2748,1393,1266,544,1823,182,233,243,1890,448,2882,2734,908,2103,280,2452,865,1458,951,2093,1697,656,696,1940,1907,1895,550,384,1049,629,1488,1211,1027,1033,712,2914,2940,2544,293,444,1874,708,1361,2872,651,2431,729,1161,1870,32,345,2756,2641,700,950,1228,181,1137,851,269,826,2601,1178,551,595,1428,666,1341,688,2823,291,1446,2541,329,1050,237,2279,1761,497,1051,2657,2763,395,1196,2443,348,586,643,1488,2452,1432,2334,2190,1787,1269,445,1523,98,2894,1495,1431,2930,2239,1075,228,2359,1545,2120,80,1416,1229,578,61,2714,620,2818,2641,519,1618,1139,2926,1499,1919,1667,349,1596,2281,121,429,1070,2982,2460,2742,2754,2749,1911,2700,2970,1379,1167,536,2619,645,510,1436,1234,897,458,1843,2874,904,360,1918,373,114,1948,2923,486,2860,1314,927,2715,2102,887,898,2077,1005,1990,859,368,1980,968,1686,2300,1443,2726,2149,1369,1645,616,4,1554,629,1649,1361,2104,423,2924,1056,630,2057,2867,2543,180,2884,1461,476,915,1946,1284,2784,735,291,1057,2376,2513,836,1480,1128,589,2253,128,46,2969,235,1930,2072,2640,2150,2913,2116,787,567,2164,2191,1713,1326,93,2027,2457,665,2364,103,2649,693,1120,2509,2978,18,1361,2457,1094,2486,2522,1742,533,2116,1827,2363,106,2065,2189,786,2393,1974,2021,1886,1439,1667,1436,1685,1450,138,683,666,2038,1571,1356,67,1839,817,1788,1237,1136,1690,2832,8,76,2091,1782,1083,948,2155,688,401,2618,2692,2869,1048,1088,1929,94,2207,306,2981,602,288,1262,482,1468,940,2515,947,1457,1847,2241,2611,469,2700,364,275,2765,2905,2030,2322,668,2319,1536,851,137,1877,972,519,2878,2341,2650,884,2683,106,2229,123,957,1827,574,1477,1866,1374,1013,494,2695,113,812,1061,2228,2551,195,2575,1943,1041,2158,1666,2537,1332,113,1357,559,1947,1897,1571,1849,1922,1969,2525,2703,257,1521,2278,185,678,263,110,2150,2697,1874,2285,1370,1807,2685,2381,931,1798,236,2297,822,53,477,1699,1064,66,2827,809,2600,1912,2499,2270,1941,2566,2539,624,2056,2244,817,78,394,1719,2320,2350,1852,2540,956,354,2644,71,2656,2745,1205,383,2099,2756,1839,371,37,1052,1215,394,1796,225,1474,1287,2372,2040,521,181,2002,2911,2953,689,2202,1104,92,1402,2865,615,2412,1974,2496,880,2081,297,2762,1692,310,2956,1937,36,166,286,2778,2094,1833,1908,2972,1109,623,282,2217,312,1055,604,1177,1670,814,1178,2541,663,324,2042,1567,1752,207,1796,2068,806,252,995,1388,1986,1517,648,2253,2365,1617,1621,2153,2243,2219,1840,606,1666,2002,1341,1082,2473,1300,1395,2740,645,1042,1114,2260,659,2265,321,720,2983,1312,892,2176,634,1108,461,1525,2003,1473,2122,1937,1974,703,1668,1773,720,795,367,173,2259,1327,343,456,1862,2305,2658,1136,591,2124,2876,1840,1888,2968,2236,872,2449,2182,1654,1020,2765,2130,600,1656,1690,2351,2284,78,538,214,1872,2122,2702,726,865,713,438,2446,2369,1578,933,619,206,2917,72,2151,2403,232,2757,1661,2633,286,883,1709,750,495,1559,2126,177,265,1625,755,53,2740,1932,2119,2648,1838,2857,2194,2333,2948,269,966,1418,2468,1250,666,2440,2367,1086,1500,1133,2632,2639,852,2758,339,1930,558,657,724,2401,2776,875,859,1222,822,2863,1062,2165,704,2289,2641,1056,2627,713,1515,2534,228,1435,731,74,2490,2363,2578,81,1799,1513,2082,2935,879,418,2537,211,503,2288,683,736,1797,2782,1557,195,1686,2372,1638,2773,2484,412,1244,938,1957,2128,298,291,734,1257,1104,1594,1084,2206,2953,2443,2452,1555,644,186,1272,2019,2044,1012,213,576,547,208,2900,65,63,451,881,2671,2000,844,2534,2544,2567,286,681,101,1669,583,1956,211,1931,1493,222,1766,1576,2202,1418,1316,1251,2681,2355,1669,768,1383,2387,253,737,674,2900,433,2551,2277,2005,1120,2622,2595,13,2147,1728,386,2068,2481,2606,94,2879,228,1905,706,1316,2455,1772,264,2742,1451,1396,1318,475,1307,1552,799,1314,2118,2364,1527,1116,2206,2006,892,2405,1623,1567,793,267,1728,2768,1988,2763,2160,118,2143,849,1638,1420,1190,1189,2372,1799,2533,2375,2913,1301,1616,2533,2624,2542,710,315,2619,2547,492,1936,735,1564,2454,1583,1594,811,799,2258,1161,2832,513,1571,2860,1735,2101,741,1568,2165,1388,22,1059,1290,2758,792,2047,2927,1920,852,2594,2450,1056,2103,999,2909,1453,2324,523,1565,976,1376,2136,2548,2399,1657,1138,805,147,1192,1914,813,2666,1438,1249,2885,548,226,1336,987,1079,292,2342,2344,2974,2794,1782,766,1960,1902,1430,2416,2915,618,2465,691,2306,2599,1039,2094,453,1848,1579,2649,2075,431,2434,1123,2851,1481,2668,49,2388,1051,2504,1205,1858,2659,2429,312,1638,1380,1749,87,1950,597,1445,99,2799,2642,824,1079,853,428,2239,112,315,772,1963,1252,2996,1800,312,1254,1890,2056,2718,158,852,443,1570,63,1817,985,1483,2119,1682,923,1505,549,2934,1495,2660,1197,2589,294,2880,1387,1657,53,593,2579,1338,425,339,2913,1017,898,2468,2757,145,529,1094,2027}

    2399

    2395

    Returns: 92614308

  96. {2445,954,2040,941,305,2222,2425,1249,1783,2301,996,2696,2269,84,1874,1578,2768,1358,2514,2214,1683,1185,2949,2193,2815,1462,478,2346,1396,1867,2137,1531,950,653,2428,2975,2020,600,1496,2119,2117,1491,2092,1852,2450,489,2366,2362,588,1710,2430,2940,1145,1018,1041,2127,2911,458,2761,2281,1108,2793,2690,969,663,462,253,1746,1079,1664,1252,1190,383,1891,513,255,263,519,2532,2123,2523,443,2850,474,2171,2111,225,315,2719,751,187,2714,2719,769,2734,2714,1020,2522,1230,2841,2660,2670,475,1093,2662,2121,2262,2329,1014,2269,448,2260,20,172,1619,1426,982,2320,1778,1292,2320,2387,942,994,2944,1103,2371,860,1340,514,1547,1164,305,2971,2277,298,33,398,43,1225,1778,1940,719,272,178,2088,2802,1756,1767,2138,516,2,1923,1015,1725,753,1659,1438,2961,2933,2001,323,1937,2532,2542,34,2260,440,1972,1094,2458,1919,266,1231,1477,2437,2779,1089,2256,2888,467,2580,2762,2555,2952,204,2080,1837,2243,274,2529,1251,1363,2420,2778,2779,2370,201,2315,542,1414,2578,523,44,329,633,2419,123,2282,2246,1047,1802,2852,1811,2334,2558,1396,1017,965,2386,1376,2247,791,1429,1461,2883,2447,1822,2157,2330,764,746,2211,1337,462,1853,2899,1897,1317,115,2586,1252,556,1757,1378,1987,2158,1502,516,2977,1612,1137,1217,1583,2370,1109,2577,2135,1466,1728,2308,289,1620,1799,1071,761,2454,2614,252,376,2955,2139,999,1367,1335,2667,338,2779,304,1128,2042,707,953,2456,1920,1073,1315,1369,627,2699,428,2107,566,2422,716,53,124,1811,2107,464,2190,1103,1439,1463,1109,2890,699,1185,2570,2410,2002,1995,2235,529,415,1940,308,474,1166,1718,2042,1821,2235,1548,38,2004,1724,358,87,253,936,2006,1437,464,1909,635,113,2416,2572,1676,2463,2491,2214,1165,1419,2734,2168,495,2812,483,2705,316,1226,1745,1692,851,34,1286,2118,152,80,2168,1412,1748,2112,1063,2492,1745,387,505,896,1927,2383,2215,1562,1395,379,666,727,1000,792,1504,1902,2999,343,2301,1057,2081,2339,1478,1269,2535,2594,2673,1150,328,1437,2147,1052,1427,484,452,125,2630,745,932,222,926,2499,1919,824,1837,961,82,260,139,1830,953,2615,2024,2129,2394,2273,877,2553,2479,1986,12,2964,943,2840,1366,1421,1342,51,195,1451,549,886,2464,2676,487,2756,1331,1012,771,945,940,1616,1443,2272,18,789,122,2886,1179,22,2728,1506,2257,2893,2061,365,131,2445,531,184,832,143,1315,865,2088,1426,1319,1046,635,2285,2764,397,2113,968,191,1389,888,1329,2619,2768,2451,2165,2031,2437,1603,806,1634,2311,1511,1037,1893,1061,2769,10,530,2460,2764,1254,2902,2437,77,599,482,2182,1232,440,1888,754,1224,1272,1360,2592,2107,2804,99,2047,856,1858,2058,247,1721,1660,39,290,2741,132,355,559,760,2030,2602,429,1323,823,1298,506,2858,1796,980,1388,862,1071,1735,226,1534,2110,1262,1250,1783,75,1581,2435,1392,181,2536,1649,2438,676,2349,312,1106,990,2697,2436,2911,72,1487,2247,2589,75,1995,2238,1708,10,217,2551,2207,209,1228,1728,2132,1315,679,1073,804,1190,1404,887,2000,286,1943,2686,524,1881,2562,206,2482,83,2260,2085,2421,2460,1301,208,2784,2615,1557,1619,1380,1683,2312,1014,2175,2273,271,748,1180,2619,1783,2771,2403,2084,2438,303,2225,1670,2528,469,807,2333,2528,2599,103,1850,2369,1498,1733,136,2152,666,1916,1034,1062,521,1700,1534,1363,2065,812,2103,2848,2778,2997,210,1340,2613,2386,626,1663,787,2285,1081,91,573,1664,986,101,2018,2809,1212,426,487,2843,1350,769,1482,6,2931,1875,323,1411,1598,1301,831,2256,682,2689,2666,2627,2148,70,1475,85,2606,896,326,1570,1029,400,1068,1105,6,380,306,900,920,670,2279,1824,362,2691,2945,1030,161,2461,2291,2202,134,632,793,749,2875,1222,1459,2529,1177,506,1875,135,992,1119,1036,2789,190,1678,2850,2754,1047,2471,734,819,1680,668,1062,2208,215,1355,1202,2180,513,222,2823,1316,2392,1687,2633,1708,2098,1662,260,1278,1002,1894,1461,1838,1323,1983,291,1469,1640,564,623,2814,2706,1831,1602,2308,305,1357,2442,1431,822,22,989,2885,2145,2947,1760,2013,500,1078,1084,1003,1585,2723,2002,211,2596,838,1552,1343,474,1114,1594,2877,1385,998,2425,563,728,1827,1559,448,1283,2897,2734,1344,1422,295,2256,939,2145,605,463,1877,2696,2905,1303,1265,2011,461,498,2991,76,910,2757,937,576,940,1308,872,1933,773,833,2141,2805,1551,544,2407,263,1931,1883,1487,2876,967,1115,852,1925,209,2005,1582,2862,2708,280,1448,1758,845,2023,895,1871,1434,283,2136,240,1080,917,2080,2539,1156,2626,2194,581,2843,838,1808,980,1164,2548,491,1509,2114,2834,2779,2713,835,1107,169,108,2621,289,2991,2645,2553,1169,1179,938,653,2462,22,1455,2354,2440,1443,1613,361,1716,1509,1806,1775,2067,1898,1609,391,1073,2592,788,1037,1096,2381,1378,1877,1196,2571,100,2684,846,2291,2358,163,1131,977,2120,2991,2815,143,2733,1269,1821,1967,980,2694,397,1313,2988,1332,1007,1336,2241,425,2518,1359,2749,270,1685,2603,2308,1028,2488,1179,205,2907,410,1201,625,2043,2292,2795,2145,464,271,23,2267,1925,2992,1739,1643,1322,805,227,1315,2787,756,2442,1852,334,1699,864,2192,2463,468,2705,509,676,1505,2284,917,1203,757,804,2684,759,1524,2219,2184,166,484,2849,1731,535,1849,2661,1271,1659,409,1339,2746,435,743,2504,173,1433,1433,2857,520,2316,556,1591,2943,509,1516,1492,1662,707,524,1438,503,1918,2341,1853,1486,2325,2975,2465,1555,2471,2360,2310,484,150,1886,1469,36,880,692,215,965,463,2460,1011,501,171,291,488,2498,1566,2814,2429,1728,2333,985,2048,2899,2199,1948,2382,820,518,2081,2959,1763,312,1821,1953,137,1286,726,1855,2429,1762,352,186,1932,545,904,1828,1348,822,2431,1770,2884,141,1483,1918,953,2623,733,2537,1258,1315,831,58,1578,2476,2519,631,184,1002,432,2733,2666,1102,2148,1556,1600,1166,181,1564,2687,2257,2845,941,1193,0,2903,2064,1378,1143,2313,2027,2107,46,1753,1278,2568,865,965,1582,2424,2153,2980,579,1088,1253,2267,1974,2588,1914,67,2671,1321,1157,1955,2042,579,1491,1327,2293,1884,1040,2208,2390,963,2021,944,2601,1525,1552,1887,668,1689,2167,126,2893,1017,2887,2264,1198,1239,2576,86,2959,2077,2411,411,847,2579,2174,2410,1895,2686,2416,1211,191,1565,926,2441,1751,2451,959,395,578,2171,526,1095,628,1642,1934,2323,1578,1008,1889,2559,1411,187,194,2517,1480,1663,1920,784,902,662,916,1811,2395,1061,2351,2939,282,783,1126,699,1017,2326,2726,1155,343,1357,1800,590,549,2669,2050,2644,2552,1282,2293,2394,1389,989,1156,508,2863,1330,255,2725,1723,1837,342,2816,22,294,181,2413,153,989,2869,86,1752,2290,1625,1334,1010,375,2572,2503,1576,1322,171,960,2588,660,1818,604,2078,2718,1857,2980,1601,958,752,1830,54,556,1958,2085,1712,1990,1549,2170,1942,1444,919,144,2341,2210,807,1600,2949,2098,2636,2354,249,2006,680,2665,1375,1245,1610,1702,2895,904,2250,535,1066,1770,1192,1128,2220,1270,2352,2982,460,1844,477,2464,2673,734,163,2970,481,264,2247,2347,1703,2076,308,1178,2185,2562,1176,1022,2635,89,2014,304,2211,477,182,1345,2568,324,1667,2153,1183,592,724,1229,2917,577,1379,747,2591,330,2930,1679,1479,1391,523,1426,1549,1728,304,1553,41,1100,2392,1400,1857,492,161,428,796,2951,2712,713,837,2556,2798,2912,1255,1221,1790,2295,2291,1061,49,328,1950,2112,22,2893,1574,1978,324,2730,1384,247,2098,2862,919,2036,1468,2021,1490,2465,2740,2674,2205,2998,1905,2083,112,143,1306,133,2386,1500,921,1263,2930,2316,505,2748,1500,2352,1998,2783,997,1523,2275,1204,2901,1342,1080,2682,466,587,731,1831,1256,656,1515,1779,815,243,2393,841,2306,1779,2541,1292,974,2105,1721,940,1321,1715,2267,1433,2587,2252,278,589,426,2448,2301,1093,2673,603,2176,1464,1333,526,409,570,2801,2088,1355,2390,1565,2549,1944,1186,742,1696,2147,1009,1622,450,1167,2831,113,1816,2276,2215,1124,2832,2963,503,634,616,2335,2775,468,2097,241,880,37,1039,432,1433,2208,2443,87,1329,1538,2575,2131,260,2271,445,1949,2770,85,1563,387,1468,154,690,2303,1267,2427,251,2734,368,1073,2410,1295,2159,681,349,2405,1790,2799,49,831,896,2521,625,2889,1487,1283,1609,2940,1055,2864,2993,1218,1166,2105,1230,1812,926,737,253,1101,2440,2573,2983,1596,2436,909,1654,1813,1753,2851,2670,1577,1690,185,1061,770,2997,1896,1418,189,88,1019,1371,2367,546,2258,2704,1045,1788,874,1499,1578,1277,1585,1766,2189,263,1393,1169,90,831,2160,2390,2930,765,839,1531,1174,1334,1005,2116,2749,1214,2988,995,2703,2647,2304,2613,257,358,508,989,1839,2398,703,1460,2715,2192,2441,385,1837,1474,2845,1734,864,743,318,1018,306,2466,232,245,1572,631,973,455,605,1659,826,255,889,1881,1297,1072,1463,1811,618,1089,234,424,418,2543,723,1252,238,857,685,1871,75,2565,2269,2122,1375,2193,2716,311,932,449,1911,605,455,2969,2897,359,108,1005,1260,980,1009,374,1249,1076,2423,2011,30,2493,1076,953,2996,1408,2341,2456,1810,672,1445,2908,1085,2122,2984,505,716,1451,2833,1208,1394,496,1922,95,487,73,2678,1849,456,2200,2882,2864,2512,1672,557,1166,1212,2662,1196,1191,2722,2197,328,2975,2955,1367,1462,1418,450,2718,2216,1891,2438,2243,762,2652,1677,2212,321,2256,443,2029,2421,2483,2727,1705,2309,547,2367,2016,2404,2792,1885,232,476,1483,1385,2566,2951,45,547,2118,2512,1197,76,164,2619,2792,212,921,2935,313,200,398,1312,2462,271,355,2554,2955,2386,1139,2161,398,906,821,234,2848,980,1896,2343,805,2611,1158,936,2528,1235,2158,134,1574,191,246,2188,1074,2564,1209,1552,2320,2418,2407,1307,282,2595,45,2317,271,1483,2310,1688,1756,1026,1670,2376,2288,180,729,118,2939,1813,1995,1869,1904,2264,459,870,2149,869,2055,2244,1600,2743,1121,331,111,2006,436,705,1419,1694,2364,1387,2845,2279,1470,940,192,2241,2904,2454,667,2633,675,2444,2853,586,2622,330,2156,150,185,470,2675,1683,1768,66,1827,1878,2089,403,2885,1238,1508,1847,326,2256,985,577,700,1255,2702,1486,1046,65,112,2487,1791,2530,940,1877,2095,1298,205,1809,2619,964,487,2650,1846,1111,182,734,2801,1181,1335,2698,2011,1611,328,1910,1698,1034,433,1457,2882,1070,371,2784,194,892,1209,740,625,175,2172,1147,958,1579,2460,2220,1984,514,1539,1117,402,718,1946,2453,1324,719,60,1157,1261,1435,2732,1127,418,1886,1176,1957,123,1433,1531,1224,1133,806,42,666,1720,849,774,1672,1426,736,2534,1299,1435,2003,184,683,508,222,420,921,913,202,532,1091,2659,2462,1403,2493,714,127,2491,1555,1913,1512,109,828,2101,2653,1600,2063,2481,2634,2926,1976,1424,2733,327,1556,930,1885,1068,1968,1819,1662,2351,1136,1180,143,1104,2529,1763,1691,1019,2494,1929,1626,340,1344,22,2000,402,2044,1219,1283,1185,2940,2261,268,2151,2180,871,447,1606,2313,736,313,1837,1970,1331,714,720,2338,2968,716,1745,1123,752,2591,1073,2682,934,444,927,2930,946,1335,1779,908,1871,2122,817,2818,245,2460,2767,692,1362,1903,423,2802,236,100,2353,1309,973,517,717,602,830,1746,1257,1943,858,57,2987,2585,440,1363,2933,1487,1540,1903,1344,1144,342,2017,240,1172,2468,2034,1732,1453,2605,1301,1153,2233,1585,1195,1546,2221,2300,53,1453,90,1439,1229,2853,1229,2552,2713,1498,983,2829,2464,1532,1840,438,2038,1126,2057,2231,2187,642,2274,1344,1140,2186,1564,1151,220,863,470,87,710,494,550,1042,2827,716,1639,428,2879,2086,1370,979,145,2096,558,1540,2511,2008,2537,192,999,1443,132,2231,1018,1596,2268,174,1025,823,776,1633,1374,2058,1446,2077,2625,1236,2762,1576,2071,1506,747,2222,41,2495,430,2551,2834,2188,880,1806,2016,349,719,2321,1230,263,1406,1283,143,1520,333,1953,2137,993,1668,84,419,922,958,463,1218,1182,755,1348,2711,407,2289,1293,566,522,813,545,421,538,362,2220,2494,1232,1684,74,2447,2722,2059,505,1093,706,155,1060,1548,2641,1099,2363,1617,889,1534,1604,336,56,490,752,2393,1537,2532,2073,1128,2685,1205,1746,437,291,2832,1787,1700,2929,772,2552,691,643,2385,1728,2463,2304,715,1273,277,2388,2713,2924,999,2434,1007,4,1271,2352,1855,1487,296,1641,964,2415,1072,2312,1451,1409,1744,1575,2477,2861,2328,2800,711,1038,1782,2946,299,2707,1811,1369,889,2691,2045,1418,116,2557,196,534,428,819,2012,2326,638,2243,1982,2913,2989,1650,2569,1256,391,1781,2777,2948,1838,1584,294,2958,2580,80,2855,2354,189,1664,695,2609,1546,240,1464,687,103,2616,811,1070,1461,1999,163,1148,541,1100,1351,396,2865,412,1402,2466,527,2455,2193,77,647,2070,2440,1062,518,580,899,413,1545,1508,2057,2164,1516,2942,258,1208,737,1322,2686,729,1713,2169,2680,2695,575,2430,573,769,1622,1830,2136,1113,165,423,2011,19,1263,2312,651,405,1117,1892,1433,1349,1446,2651,233,2162,1856,2468,2132,2677,1978,1152,1853,1668,2683,328,1044,1340,297,889,2794,2064,870,2829,2418,2474,1290,2343,1366,1188,2282,2365,2178,1653,1878,239,2767,2194,806,1868,2127,2745,1173,2860,199,917,252,1695,809,1016,1032,2488,2217,1170,1704,661,524,1851,1313,2066,2231,955,2975,81,1464,2308,1065,1340,333,2366,1926,223,2558,1814,652,1947,2227,2999,533,1894,2509,2322,1529,175,2280,1871,2137,970,2531,114,1507,2258,1134,2546,2301,1588,779,77,1278,2137,1985,1682,2059,576,1633,496,2663,1100,2609,745,1804,2907,214,2589,826,1783,2746,898,1361,660,2599,1347,1875,750,1659,2131,175,826,1060,803,758,2900,959,2344,114,1381,1469,2471,1737,2086,560,1137,1646,1839,555,1859,1925,2220,1362,1024,923,1729,673,840,854,1015,2364,2006,2593,1568,1361,346,1705,812,2914,69,1606,671,763,1055,2567,1657,472,86,1706,2267,1141,259,1486,2766,2520,1635,454,2922,255,1991,198,2242,648,445,2619,2134,2,1589,2050,568,1470,2584,464,169,604,333,1460,1560,265,976,1909,1921,2298,108,1286,2223,1268,2385,348,414,1807,2360,760,770,2018,2268,588,1320,1425,1061,2778,218,2476,627,1606,2645,2645,1959,1004,1080,222,333,1459,496,1370,1235,954,915,1026,1964,473,1609,185,237,959,1370,1414,2386,1657,2291,942,556,1985,1103,2959,1889,2900,1727,1991,2498,1182,655,1897,2259,310,869,1910,228,496,2819,1155,2432,28,418,994,877,2102,354,1790,1819,482,1750,1917,2720,2717,30,897,1964,1585,2925,613,2047,623,471,789,2154,2088,525,1684,2323,2869,554,1701,778,514,2197,2151,2498,1682,119,2097,338,731,1790,2850,1275,1596,2051,2042,2082,467,2355,1507,783,1098,770,1661,684,1585,2407,1470,2710,2901,2491,2796,1889,370,1156,2106,812,2911,1469,2030,356,2915,632,1978,1527,1220,1051,2039,2342,539,873,1992,2374,1919,314,1329,2243,2006,1952,1468,1073,2954,2521,650,2796,2911,949,2597,2529,2994,623,84,1578,2724,769,163,2867,8,284,2459,648,1567,605,2173,2874,2676,1216,790,2268,569,303,2309,385,463,2263,16,1578,1907,58,2770,905,147,752,554,571,777,1487,1218,1354,1664,102,545,2072,883,2590,2357,1656,767,1192,2649,2735,2679,1957,2019,875,838,749,378,2862,2341,2411,2783,263,2338,826,974,883,1845,2947,848,935,1645,1212,921,1436,324,2264,2629,2979,1310,395,612,1938,1571,1531,2587,1801,1034,1574,221,2907,2950,536,1329,1848,2320,1246,2471,953,61,1510,1811,1609,2538,2476,984,1780,427,2301,2805,1976,2436,2930,2515,1861,1863,970,725,2144,1945,2727,2074,59}

    {1317,2999,387,2986,2317,920,961,2921,2692,1374,1933,2227,2845,76,731,326,317,289,1087,949,1146,2041,1359,14,279,2201,999,1927,1501,1651,130,233,909,2824,573,2172,2957,1483,17,2131,388,596,694,758,1691,1378,1176,1254,2320,208,876,647,225,830,227,1138,1265,317,104,2695,2267,1278,1540,1327,2173,2928,1090,1854,22,314,2976,24,1051,1215,1986,2808,1794,747,2979,838,928,1697,381,167,1890,1028,1531,374,250,1118,1210,2112,94,2333,1357,2559,2724,2271,39,763,2179,369,2512,372,1339,779,853,917,1049,1568,1307,175,526,311,357,2309,2637,1244,457,867,2460,2625,2599,255,132,929,334,2143,1364,940,1431,2752,418,2283,749,2391,1301,782,158,1978,775,966,1027,2471,802,1263,392,2619,1160,519,1050,2797,2263,2595,1914,1228,2243,367,225,1864,766,931,496,2185,1306,364,230,2927,256,2864,920,2919,2883,944,1062,1778,2241,499,1813,485,972,2623,1578,401,1379,31,1450,781,2179,295,1126,1254,1833,1241,610,2397,1789,2643,1658,2135,2846,1980,2386,2347,2323,768,2951,350,798,1820,1484,1770,877,1722,12,191,200,999,1936,2160,2766,1541,1695,643,1900,2860,971,247,2354,1067,1271,2030,2871,2120,2836,440,2891,2691,1362,2024,218,2033,1933,2956,1769,128,1669,921,1763,352,1838,470,2265,2826,1434,641,2719,2758,448,2509,780,2694,1956,560,30,1957,2264,1031,2555,265,1602,2356,2731,1149,928,2234,1962,1213,2811,1511,1980,1338,2243,52,2475,1315,2993,444,439,2765,1171,2265,894,1840,2442,1322,1989,1699,2846,1548,1771,500,1420,1857,1467,1180,822,2556,1296,1383,832,62,1759,399,959,84,1428,806,1870,883,492,825,2346,524,960,535,2911,2668,1289,336,1300,63,1199,732,1441,797,2955,156,1130,524,2385,594,1608,1413,1581,210,537,1773,2435,1341,1842,543,1907,884,2640,1866,2393,1878,1305,2918,943,2307,2114,1716,618,1418,244,2338,1197,2917,2861,903,244,1603,338,1901,2214,704,2902,1086,1341,2136,1306,2300,31,2732,314,748,1368,1410,554,1664,445,2243,2619,2883,1331,686,388,2443,2336,11,947,2653,386,2105,2811,1212,2488,2959,2472,1756,1135,2675,2543,659,1432,1443,2079,1033,2160,2197,2124,112,1790,1435,112,2486,1227,2407,2648,1179,449,741,1169,1967,567,2439,1886,2713,712,1903,1953,2460,249,1826,2396,68,1672,418,2231,244,2250,2111,291,369,814,1481,2570,2898,1587,161,818,1648,1151,335,1792,674,1736,2097,341,2243,52,2595,1449,2316,978,701,651,1443,2338,2364,2414,176,224,472,2906,2139,1322,2022,879,2327,1632,1083,478,5,936,459,1472,32,623,1103,710,1942,128,2190,2400,1254,2485,1646,2385,2254,1441,2304,591,2211,2006,909,2532,1745,297,189,434,327,1686,1997,844,1053,1920,93,697,549,608,432,609,1964,2785,2929,2550,1083,2803,1531,2136,2973,2955,423,1753,530,1717,287,2898,1487,593,1912,516,644,1221,2248,2522,943,143,1986,925,2781,2746,1741,842,293,2297,1744,1473,1857,2949,916,2724,1280,98,527,1624,800,2253,976,2031,1955,1221,2720,2967,2524,1371,1426,883,2868,365,1251,2088,630,734,1761,2105,2766,2817,2477,1886,1790,1795,1342,1724,160,1443,2905,1824,674,432,2370,498,504,129,1064,2328,2119,1242,2693,100,1534,2610,87,2825,15,2860,2672,22,71,452,2144,1988,379,2372,1866,1756,6,2184,2547,957,717,2794,2645,191,2083,1008,2527,1674,1705,1211,2489,133,2296,2565,1585,1179,756,624,2155,700,273,442,271,418,2347,1797,701,160,572,520,662,1567,2596,2619,2839,785,737,2296,648,404,521,32,1600,315,643,1385,2115,2515,1353,2543,492,766,2141,2105,675,2901,2505,1740,2733,1834,1786,1855,2156,267,1021,2497,1825,2294,262,2648,1990,1243,1152,29,951,2124,1209,1836,1063,1314,2151,1608,1283,866,380,128,2638,512,2543,2266,2739,1958,1255,744,2433,2507,465,1217,2897,693,536,2866,2385,2964,497,889,1230,2813,207,964,829,1924,2729,2773,1663,395,1460,336,1538,493,223,282,369,1052,344,146,646,24,1521,714,731,2315,2161,1173,2109,617,855,2335,875,2638,2722,2966,142,2529,895,1223,194,1878,2900,339,468,1584,170,2598,1855,1487,1364,2532,2632,2751,2340,1581,1733,2747,737,1647,1895,354,2555,2641,1476,1819,1365,1670,2774,1541,2016,508,1274,1886,1578,1169,2847,1036,2919,33,1734,837,391,836,2261,1285,2709,2623,2400,1229,604,168,2191,556,2184,1117,676,2531,1634,739,1999,2889,332,737,2050,2112,2488,2320,731,1381,184,648,2351,639,2090,1998,2224,1770,1294,325,837,1564,2249,2471,1025,948,115,389,1310,2691,1402,2600,1092,2045,225,2529,2426,540,1029,1721,2820,2685,271,231,2587,1271,2588,730,960,2026,716,1799,1477,1957,2399,1000,1237,1325,2464,1266,1698,2490,621,2858,2215,824,2850,688,2173,342,1169,502,2212,1220,1599,850,281,1115,2250,2457,19,2582,1401,1967,1069,2080,1882,2220,949,2938,636,861,1730,952,505,164,2806,416,662,2670,1168,959,336,2978,1644,561,33,1518,1122,1334,2726,1906,1585,2423,33,345,827,1017,1187,1433,648,2408,2544,1638,737,196,242,1477,2205,1209,2231,269,2425,185,2245,959,2862,1221,2237,1978,2780,64,16,2963,358,2721,1306,2742,2960,1242,360,463,1811,933,254,1175,2478,551,1119,2700,2181,2975,732,2795,2107,554,763,2872,1713,2656,1494,2251,2237,620,2342,2809,1077,1460,1279,2319,1554,1600,1304,812,2295,1587,2239,530,2850,2303,278,698,2872,1283,729,2042,2049,2960,2789,773,1303,1858,78,2801,2448,16,2391,2996,2498,449,2837,218,2170,290,2777,1495,2271,1600,2946,719,1700,2753,654,1116,2835,2358,279,500,2328,597,724,2769,2452,1794,211,2801,1593,1136,2030,2315,1018,538,2934,2313,2150,2110,999,2013,505,2442,2298,63,1534,292,1648,2603,2103,1900,2996,1467,2925,425,1100,417,1519,84,991,2468,1491,289,302,505,1827,2016,647,2764,2486,940,2989,1385,1276,2147,2134,2695,2394,1162,713,2491,1520,1177,1912,2636,1941,2046,2075,1071,584,393,1328,2720,1852,2944,84,2196,906,914,143,1046,912,226,2643,1160,347,2610,143,2077,187,2069,2545,776,2869,2537,2138,2916,217,2794,1923,178,2087,1803,1232,1059,85,1681,2355,2114,2214,2707,2504,1266,261,334,378,1507,2617,2172,1544,1279,768,511,69,2686,2613,1184,1480,2112,2755,1362,2909,1988,1301,1426,1816,825,1506,1344,1858,2107,1675,251,953,999,2028,2928,928,1775,1489,559,1411,1982,2826,1969,1526,1403,314,356,2850,1194,402,2794,1975,1156,2438,66,1015,1927,1196,445,1530,940,2998,2654,2170,774,1621,271,2089,1281,2596,8,1119,1273,1614,305,1594,2750,1753,2190,1309,2949,528,1875,1469,1202,1953,1919,2822,1785,843,2401,2010,1079,472,2478,2450,562,831,1152,754,1112,2807,2066,1301,816,940,1514,994,1440,84,2832,2430,1189,137,2360,1799,1346,1605,1017,1252,2344,81,1749,1670,1370,956,2581,695,2287,1368,637,1860,420,2140,2496,271,194,515,1509,881,447,1795,128,1829,1752,1996,2386,1883,416,148,2449,1814,1443,1130,184,1692,1953,2142,1870,1487,366,286,2645,2590,1452,2985,1386,477,1925,1492,996,2577,675,565,59,1973,1485,1486,2050,1335,2482,1784,1857,2001,1969,896,2783,2054,2910,2030,256,1471,842,1849,888,1969,1446,2736,1362,221,1954,163,1097,398,1978,1986,1200,208,1079,2142,2211,565,1629,947,1120,2030,1830,2627,53,2198,2220,390,2063,582,1585,854,2745,518,1875,694,2107,1509,21,1433,1440,1950,2810,1520,2781,1023,471,2508,1340,1977,1899,917,2347,2183,1578,152,1284,477,687,2484,1885,2349,1581,1622,2605,1607,2939,2125,589,1526,1271,225,804,1054,1955,341,1708,1356,714,1373,1291,2960,2233,2103,2633,1857,571,641,1051,1397,1403,1841,1554,1619,1338,761,893,2417,2655,2407,1488,936,141,2243,2502,2688,803,1203,1620,2247,1886,2373,128,2840,2108,1473,2811,193,611,1645,2530,2999,2859,1986,1283,1468,1520,929,808,327,2053,1979,2646,120,866,1502,1849,1486,2383,921,10,2932,803,2595,1423,1555,386,1131,1314,1516,2127,922,794,2790,838,303,2986,2470,2063,2021,2225,2639,1994,51,55,2492,2543,867,2283,608,1377,2506,1976,317,2799,1315,1487,2469,2471,2620,1880,184,449,2775,2968,2302,2537,2519,2213,2429,2974,1823,2696,505,2513,2225,822,2332,2892,1765,761,1218,2152,2504,2516,1331,2174,516,477,2740,1776,605,2763,2526,2532,560,1477,509,1832,309,1060,2137,1714,1617,795,1939,2917,246,1175,485,2234,2247,140,2287,342,1311,2776,343,2345,548,157,768,636,1047,1354,2068,223,2077,1447,2730,1997,2324,1025,1749,267,1260,604,975,71,945,940,734,1300,2686,231,2505,2796,408,1755,595,1163,1349,2525,626,1256,1513,245,911,1327,1435,1747,311,1841,1526,1726,2187,1161,1837,2996,974,681,2088,2873,2236,1908,1530,1608,556,2304,1294,1815,922,1434,1607,142,721,2726,136,79,1444,1496,1370,478,1287,643,2395,2842,1382,1034,571,869,106,2059,328,1646,138,1966,2230,2151,1935,237,34,219,1103,275,1426,2462,2041,246,1728,918,659,1930,667,2885,744,1843,2281,2345,1772,776,2087,2758,1777,2750,677,2557,1240,1437,1805,1606,197,1708,2380,2495,2782,1961,418,890,1072,2137,2139,1468,762,486,1433,831,1503,2685,2000,384,1636,2522,804,2942,2668,2624,1168,1981,1890,892,716,1855,1737,1249,587,735,1279,2760,2273,1549,2271,2993,446,2425,1615,1984,117,585,1288,97,183,2109,712,2211,2280,447,1001,1556,2506,747,174,2996,224,1879,2695,980,1564,2026,1256,1712,1912,2681,288,2123,2505,1606,1317,2047,1678,1154,2857,1613,1840,2858,722,162,507,1487,1561,1707,1709,2821,1073,830,1030,893,643,709,1388,1835,672,726,1256,2350,1115,974,853,1502,1326,184,492,2356,658,607,2025,96,2430,2095,2454,2114,2686,2797,2514,2250,2500,1367,1735,2730,707,2597,815,2191,1058,295,2052,1476,1013,1595,1619,1075,1182,2386,159,1048,2828,2104,249,1255,2898,2853,315,2366,227,2941,1389,2964,1379,342,2747,1473,1993,2179,2412,544,391,316,2862,1880,2152,343,53,1834,304,2381,551,262,84,2255,2049,552,2609,669,885,1419,2091,615,579,1399,2099,428,2191,2079,859,2093,2501,1209,2203,625,503,1143,463,1481,64,1655,1381,428,2992,1315,2946,1989,1612,1073,1415,2126,2804,1418,1348,529,2119,1844,1476,1538,1623,1110,1637,1886,2937,901,1194,1282,1620,2637,1272,957,1424,1157,2764,1207,2279,248,1700,1915,2709,2174,2844,1741,1185,740,1530,1534,2555,2136,839,1379,954,2995,448,1524,1567,2357,1584,1283,2485,1618,643,244,470,363,2645,1963,775,283,2934,2678,2559,2597,1456,893,1871,153,1414,1483,1179,1434,605,2916,1865,2537,706,2905,822,304,2562,262,209,2772,692,1528,2474,971,1921,1738,834,223,144,988,1826,511,712,853,731,1254,1211,964,692,233,2628,2408,2749,2493,2475,2172,484,498,1505,1840,1753,1970,965,1161,986,2153,1497,1362,1477,360,2297,2688,2686,2403,2693,2724,1868,1632,838,25,1486,1489,1416,1649,2999,2510,1153,684,1581,492,161,1469,1838,1872,521,1357,1585,2228,684,1873,80,322,45,1462,2222,2308,1600,1622,1061,2231,1297,1047,2528,623,1082,2240,2850,2786,370,1306,868,2625,1089,1554,1689,1124,1302,2151,2270,1417,852,1043,2755,2894,1175,203,77,2964,2609,2067,640,2965,2393,2501,2368,717,2758,2109,2267,229,2844,528,1582,1005,1424,153,2376,573,2097,2315,1393,716,1124,2936,151,2032,1619,1067,611,1900,1228,1679,882,251,1318,1455,2850,1162,76,1951,2850,2250,927,531,485,2358,1571,957,2097,1125,2761,1586,2336,632,1906,214,1157,2704,1185,859,62,516,1477,2642,2543,2392,604,2273,1504,2164,100,2094,534,2223,168,2143,2206,500,2138,891,2131,1570,1008,2384,1264,1754,2744,2811,1286,2505,922,2768,1775,2713,2020,214,35,1713,1006,2859,2015,2156,1712,598,1402,2641,1398,2007,574,2607,609,2658,1875,462,1381,1584,1894,2828,660,2666,8,1673,899,2030,518,877,2870,2583,563,1493,1081,807,1159,850,2435,690,320,1465,2345,158,1478,2569,1837,1563,1591,2190,528,326,2561,2878,1230,2250,1177,783,118,312,2289,1508,913,619,849,2040,823,2375,422,2649,2560,1079,2834,878,7,394,1462,1992,1476,99,2421,1851,1702,1929,110,1862,1853,404,852,1252,81,9,285,136,363,2516,2030,629,467,1764,74,1580,2359,781,2034,2307,664,34,949,1928,2771,1700,2100,676,1447,780,2451,2295,219,2358,2769,1491,2451,2456,227,520,2473,2163,1017,467,2442,1901,2073,1026,2486,2215,2141,2442,1234,2128,2437,1426,2232,2088,2843,1740,818,2331,1367,2204,2369,2377,2305,1770,1078,645,2618,690,606,438,2085,2229,1550,2471,2437,2291,1659,1126,1402,2077,47,2327,2856,2584,907,846,999,565,614,149,1510,102,657,1967,2729,2923,2934,22,40,1627,1590,1676,831,819,689,2389,696,2211,415,2249,2854,2218,307,2057,227,232,2427,1363,928,2657,92,849,105,2880,1402,2974,345,2540,1954,1569,2056,1736,2130,2062,482,1458,2396,1352,2464,301,1960,1998,174,2635,1080,1366,441,87,583,2857,799,2381,2223,1102,1418,2218,2854,2158,509,654,924,1794,31,2625,94,626,2768,1508,2682,1914,1430,1059,103,1031,1918,1106,870,786,905,921,2925,1622,2184,2444,2452,2407,548,2286,2505,2310,1209,208,1031,2110,1144,2583,678,1371,1,962,2701,353,388,2195,2917,1533,883,1837,2166,24,2527,2105,1772,2981,648,2462,3,222,738,453,2037,2644,1793,2918,1021,485,2737,2925,2105,2065,948,246,1569,1247,2441,1129,2762,1028,2243,2374,2830,2930,2337,312,1921,1206,1743,1567,2838,242,1558,2304,2035,388,2000,2079,1719,491,114,1517,710,2133,2583,2060,1597,793,755,869,776,413,177,2666,2316,1255,382,1266,632,2894,1390,54,1518,431,13,1475,1578,312,477,33,2986,495,2855,2770,351,1592,832,361,2920,179,23,1438,1451,1864,1542,3,107,1372,294,2557,71,711,1875,1283,826,1870,1970,1693,2953,2177,859,1726,1709,2791,1711,2102,235,300,2862,687,158,2999,2879,194,2928,2214,1666,702,464,2845,171,1363,347,1132,2247,2561,517,2050,1503,649,519,1115,2437,870,2416,2869,2009,795,2168,2967,2723,1997,627,71,1470,50,1630,24,1838,1659,1536,1742,1820,1982,2996,1871,1676,2106,2806,1907,1438,1283,1035,479,2193,2608,1442,1463,2333,2021,1363,1009,1806,840,526,2664,891,1005,1142,1875,664,1774,2016,1901,2881,1389,326,741,2972,2533,2857,1798,2299,1292,256,2858,406,2631,1522,1817,276,307,26,1072,622,504,1651,1508,1590,1530,2409,2940,76,2164,1862,1652,2308,1375,2189,2727,1550,947,1972,1624,1494,708,43,1971,2156,2442,869,1320,1895,1018,1790,2738,1327,286,1161,1385,2356,216,2006,2956,1876,895,735,1581,1659,2420,45,2217,2084,1376,1573,898,2024,2278,206,2227,1855,2828,1543,1405,2006,2595,366,1118,2975,1640,2495,2896,2993,128,831,356,2208,2226,1248,1692,981,193,774,801,2962,1344,2150,769,533,2550,2612,1857,2765,2216,809,16,213,2590,2250,1921,175,160,633,183,451,2574,373,1631,540,1965,387,2121,2318,2208,2122,2917,2897,2293,2748,2745,2777,665,2322,2361,377,2146,359,1877,539,568,1259,330,2524,2273,1531,822,510,376,1407,604,553,2446,2207,2003,2010,2402,1604,1010,1671,1118,2376,2348,1628,1178,282,1142,480,1073,2372,1473,2624,2625,553,1483,2485,2197,1189,2990,2759,1179,2765,1454,1165,2754,2152,2209,2385,2556,2985,2328,1637,2378,1636,2604,1066,2951,601,319,100,2406,286,121,2781,2089,1965,188,2531,957,2882,487,227,27,2379,2621,729,1742,2788,605,810,752,2563,2314,432,48,1437,647,883,1173,987,1469,920,2467,1873,1233,46,1246,2425,1535,2530,820,2476,2480,337,2581,483,2898,1665,2254,781,1056,390,2459,2313,1283,1446,132}

    1518

    1997

    Returns: 641175587

  97. {161,660,2279,806,563,883,2651,1111,2118,24,2114,652,935,2031,1030,1814,920,1233,636,2205,507,28,2360,842,975,2081,2870,1751,914,1455,1034,2335,1670,2397,2264,178,2760,424,1003,1148,842,2078,2341,2488,2280,493,2015,1524,1327,1349,142,95,1066,1028,2193,2891,2595,1479,2339,2228,2068,1110,2329,278,2964,1496,5,157,1015,418,1752,130,2040,2044,2031,1340,654,1856,666,633,1260,791,818,2083,1833,1705,2743,539,1324,2232,641,2773,559,1756,13,1454,2550,1096,979,1677,2011,1491,1276,1207,2324,1137,732,606,757,2649,71,1773,2807,2453,2196,475,1216,72,2108,126,1144,1359,1318,6,1656,239,2710,123,1050,2304,2226,67,827,675,1840,564,103,493,315,651,1665,1751,2517,2198,1393,309,199,1609,68,211,1443,566,275,1166,158,1570,1680,2311,1516,2088,1662,2799,1347,1035,2383,2958,926,1095,2252,1748,1886,382,2876,1009,2068,2332,2792,1772,1888,2060,1521,1927,28,2440,2107,2621,2688,2064,2765,426,480,423,661,1219,1129,1637,1805,106,1299,2477,2602,2125,2152,423,1935,2642,779,1408,1262,2650,1959,2155,156,1873,1372,581,577,2515,988,1228,14,2146,1523,1711,816,951,2171,2735,477,2089,1176,240,262,25,902,900,18,593,2450,1637,1628,553,2560,2568,770,2728,372,666,926,940,1764,999,588,1393,776,406,1722,2550,939,1232,1579,1262,1,560,1322,108,369,1931,906,325,2267,731,2781,1593,592,2456,628,662,1949,651,2085,611,548,1098,820,2911,2869,2707,1081,2015,2324,1047,2236,2031,1163,1075,384,2386,2386,1684,1910,869,2807,671,1202,2907,2800,2489,2848,1511,399,2631,726,1135,2897,1637,1390,1519,594,1817,752,2526,930,84,1860,84,2295,1506,1732,2715,2121,2392,2126,2234,44,274,1557,1367,715,446,724,1630,26,2865,2201,514,2204,2225,1491,649,739,2449,2062,2300,39,307,1947,971,1125,742,753,367,1707,948,366,2236,2401,2812,838,2309,1224,48,56,2663,2388,1372,970,844,44,448,708,2104,1199,2827,2179,1487,1791,132,2740,2067,2404,2809,2781,206,978,2719,1817,477,402,1943,1703,701,1928,993,764,2899,2476,1622,119,871,2900,14,717,1260,2970,567,505,844,2070,1780,2116,1570,2948,996,137,246,733,1789,1733,2892,1659,2499,936,2328,752,1089,1802,647,2811,31,1915,1947,1468,2051,2550,1509,1021,2558,1277,2017,1833,2387,2550,388,2199,2688,1007,1385,1068,322,1979,2352,2158,2450,2398,2905,2312,2376,2904,880,1488,2286,2104,1756,1415,2149,2676,581,2904,870,2770,686,2244,2173,2038,951,348,853,592,921,1450,1378,1682,2716,2006,2894,144,476,396,1161,254,1019,1063,1349,2678,2571,861,610,2141,1046,962,2145,74,84,2265,2984,2261,2628,645,1654,1756,1135,2379,888,608,877,2049,2947,2508,1401,2054,29,2807,2747,1689,2355,217,410,1544,485,2769,1482,1454,2032,2644,2387,2401,546,268,2011,56,80,942,255,414,2047,1663,1692,1242,733,1498,1836,2309,1142,2060,1081,1707,1885,2723,2309,1755,2414,101,1134,369,139,572,769,167,1227,1274,1505,2502,1227,2247,2099,1389,1051,926,1976,1563,1210,2021,1413,407,945,1749,1534,1691,2642,55,450,870,786,2489,1360,947,2553,458,2905,881,2155,541,2297,43,842,2873,456,1756,1558,752,1543,26,1022,2860,2631,378,2529,881,660,885,1085,2710,854,2968,952,2278,1136,2829,879,1467,336,1829,623,116,641,2752,1177,1142,2112,1133,594,806,2103,813,583,2122,178,383,738,2609,1678,2861,1413,2699,1562,732,83,851,2113,485,1896,466,750,2306,334,2181,2844,776,2550,578,195,955,666,1464,1397,1483,2572,1000,670,1119,981,1553,2465,1731,2341,723,2134,2432,1696,1134,1479,2138,192,2797,79,1319,1312,2580,2273,2290,2815,1437,270,1286,1578,270,234,2908,1504,584,1522,277,224,826,1118,1557,1754,1078,1594,1607,2461,2527,1657,1210,575,842,2449,2845,897,2148,1917,1231,2823,2073,1780,1143,2135,2324,343,998,2351,1729,1502,142,437,2484,1152,2158,1857,1357,2663,1368,66,1648,2518,2434,1518,2801,1960,1431,1572,2023,2724,1289,121,2787,1723,1530,1156,266,1692,1377,1638,334,204,1519,2582,1580,2215,479,2778,676,145,639,208,275,583,492,1108,424,2329,107,2124,1616,182,2952,2512,2742,398,522,652,1971,2515,84,1431,2946,1347,1171,828,2281,1373,1192,1189,44,321,792,1784,2972,2899,926,2098,1874,2621,1947,2172,157,1570,439,2549,2406,648,2938,1876,2842,1987,1938,2405,601,1738,205,2664,2825,460,1344,328,2642,606,2022,1952,1116,2062,1230,737,808,839,1414,2585,342,2998,2575,590,2351,1791,618,144,1500,998,782,2677,2187,1121,2982,101,1483,1414,2011,350,2489,611,2215,920,1700,1547,1778,1739,201,1728,552,1386,665,2040,1041,892,886,2730,1007,1825,1707,2335,1998,1790,1962,1231,1753,2719,436,1003,2372,2946,931,1667,337,1152,618,2017,188,2196,104,46,1571,2284,2156,1818,2091,1494,23,1547,476,2217,2779,1336,400,2233,2193,811,1991,2775,1009,2672,2325,150,680,219,2932,984,1447,2041,911,658,224,2281,2370,2486,978,839,2532,894,1993,289,2416,1731,1507,27,1573,1630,1884,1390,2417,2614,333,173,2288,2411,2975,786,1552,383,626,1384,2472,116,109,353,1067,1919,667,2963,1576,1865,525,544,2090,845,405,2660,1908,2904,2359,2216,1259,1582,1919,2270,1639,1928,1859,541,2736,513,2866,1503,1565,842,2731,275,2638,2373,2777,769,2316,1570,1827,1427,2566,1430,2065,1850,1175,83,1919,412,579,1617,1851,177,876,2516,1724,2069,2877,488,2086,2990,1278,1375,2950,497,1903,2498,725,2441,1225,1127,1789,1715,2127,833,2652,2898,516,2781,1127,2033,639,1218,852,323,2177,2410,968,1378,897,2826,878,1070,924,2210,326,2622,405,1144,2273,1548,1862,2536,894,89,1656,1708,1003,1608,1761,1706,546,787,1514,1403,723,2575,1715,2266,2899,2169,1054,222,2062,2992,2977,2060,672,745,2818,1632,2371,267,2948,375,94,2913,2819,2198,426,2032,1385,2669,2625,503,548,1320,1961,1471,2838,1983,2037,2523,813,2459,2720,22,498,2239,1228,2400,1275,2449,2576,2666,184,363,2235,2849,2391,2752,1015,2492,435,2812,1803,2482,1949,1371,2711,1182,796,10,120,2015,11,2880,1751,1846,910,2706,1330,2049,1712,2369,942,2035,1152,2771,1995,2143,2307,2743,2007,313,516,773,1423,485,883,1937,626,2215,1792,2568,6,898,803,2440,1756,687,1833,2758,673,1660,69,1186,668,2719,1479,2,462,2524,2799,2695,2493,2726,862,1676,2039,1741,1081,2172,564,2468,21,2588,502,2717,836,1391,163,2881,2345,26,975,2638,427,628,869,2463,176,1497,1538,872,232,688,340,1813,58,1123,2813,327,2305,1299,2423,2366,486,760,77,1587,2085,13,2948,712,2377,2680,703,2504,480,1977,2442,1210,565,1222,1435,234,846,1396,1968,2181,416,687,139,2940,2403,1296,1539,385,1726,682,423,806,440,1639,275,2937,435,2003,1501,881,1262,2640,2053,2690,1314,227,2254,711,2505,2771,2729,1385,341,1829,182,1900,2563,2595,1875,2213,568,1337,1502,1869,2355,2816,948,300,102,1493,318,2758,1143,674,1899,2782,84,9,2851,2540,2361,88,339,2517,1091,182,1778,958,281,1962,2767,2500,1520,578,1945,2462,1913,2131,803,2821,63,86,639,2182,1857,2618,2909,553,2249,2531,2387,875,1836,1872,330,2196,394,21,1550,2794,583,922,2026,1314,1149,1465,679,690,2993,2955,1475,1321,1529,2815,1184,1000,1215,1845,210,1534,2836,1215,1679,522,1254,370,56,1006,344,2099,2492,2031,354,1678,909,1504,54,629,1576,1554,108,992,65,2659,1519,2412,1639,314,483,2703,2965,378,2544,1697,683,1257,1481,397,281,2630,1977,902,241,1077,2317,2121,282,2265,502,101,1852,2172,1798,2941,1756,2381,2747,1268,2269,1958,1013,1690,2194,424,1700,2314,2396,94,1314,1388,1813,131,2875,2020,1041,359,1324,4,397,2219,2930,2620,2899,2079,56,1781,2937,1709,1811,1646,2150,1783,2743,342,871,2123,36,268,1557,2660,1429,606,1663,1353,606,291,965,1926,2329,179,765,1422,777,609,1220,401,1566,900,583,1154,1010,280,1967,1503,2104,413,836,1142,2665,2246,2257,363,1915,1602,1162,347,616,2945,2624,827,478,684,1613,1322,2086,908,1923,2900,608,2474,2601,1864,2830,177,1918,2957,1954,241,809,2448,1813,2404,1503,2860,276,50,865,2898,1232,2807,2256,1153,974,286,224,1192,101,2723,2006,2359,2318,2293,2469,746,541,2646,1060,691,172,2750,179,1196,134,19,2735,244,2434,57,1589,499,1973,1473,2487,1758,2709,1489,73,932,1366,2250,381,1561,218,2772,2330,1547,1286,1920,2374,946,2751,2516,2126,962,843,214,301,1049,1434,2618,1686,1516,1325,2790,2851,2675,2447,1730,1725,1902,335,1714,2962,2759,2475,453,2256,688,507,2520,2473,454,1428,1156,2251,1877,2824,720,2209,557,2317,1138,14,2073,2782,1943,2961,951,2995,2084,825,1631,1673,1436,1865,1146,707,2066,987,2810,1025,2551,773,1902,315,2906,2183,2550,1237,2342,50,1892,1031,314,60,1154,1311,2848,590,621,2933,465,1003,930,839,2853,1355,1796,2621,1362,2419,778,1610,2336,371,297,1410,1192,2250,1397,1835,1945,420,1880,1495,1704,1452,1651,2768,2738,756,1393,2543,156,430,2566,2676,638,1369,1873,1293,153,2600,1352,377,235,2847,1228,2436,2228,814,180,667,1447,1342,2602,1057,1774,481,919,1598,411,433,981,257,239,165,2026,288,1485,1195,536,2474,2400,597,1414,1584,2775,2791,1013,734,33,2403,1113,921,679,662,298,2766,2607,1235,2604,458,1469,745,1927,2417,490,895,1301,266,1541,842,1848,2062,742,2034,528,2415,288,507,960,215,2228,2525,2319,540,455,2840,421,1824,1205,2633,2428,2928,528,270,1994,2208,817,1492,2782,302,2736,619,1316,2470,585,2276,2011,617,44,2795,470,2206,390,1338,1476,118,1801,2927,1799,1146,27,2133,1115,2481,700,880,2323,182,1612,2969,642,2312,1367,683,2889,1050,174,2997,485,1659,1275,365,2469,839,1169,2978,1763,2024,158,1273,590,2158,1866,1353,2871,1921,2203,1039,2750,2940,2701,2862,239,2578,2167,2561,1268,1555,2972,1523,922,1623,1879,193,2671,1082,1699,2670,2385,109,2682,2810,918,899,2121,162,1148,417,1649,954,200,1902,2557,2101,1196,476,829,2060,1194,2992,2828,1150,1373,169,179,2668,1951,1253,2491,1538,832,2595,1078,2241,2305,963,1871,2916,322,2070,1692,631,1940,262,2241,2296,1519,7,1595,2736,2418,1287,933,1409,152,28,2630,1379,240,1039,258,639,2472,732,2107,147,41,987,1564,2245,2079,2910,1542,2621,1744,1816,126,1265,1735,188,2223,2516,686,1609,1092,1402,2574,1260,229,1378,1817,2764,1246,1315,2543,1186,1554,2851,2454,1269,1197,962,2885,671,1146,2072,2613,2597,2510,92,2847,2971,1701,251,2434,2647,240,326,362,497,1606,1815,504,1142,1837,1150,2015,1996,1734,775,266,763,2917,1255,1905,482,1889,1891,1684,1613,234,1794,2517,1378,2152,2616,2421,316,739,1126,592,1025,2550,275,2408,2766,2858,2355,25,2380,950,142,2028,746,1750,2647,1707,78,2265,698,2914,801,2191,831,985,1302,52,389,111,595,2812,2493,2439,1666,552,151,733,1152,1994,2704,1550,2253,344,2689,1763,1098,1492,366,2739,2753,1085,544,2817,1405,637,1937,2615,2714,1072,1515,2114,1681,2773,2161,1821,994,1671,708,1171,1861,366,1928,2088,2323,1311,2565,2029,2761,2193,1015,815,306,2887,894,2472,1288,443,2486,2617,1424,1201,2805,2393,2177,773,901,264,1127,867,2144,733,850,235,2243,887,362,2220,2782,470,1785,492,1037,807,1744,2176,1454,499,1107,760,684,2651,2421,961,1825,1351,2104,2235,404,480,981,2919,696,45,1769,1668,2700,991,1208,494,1565,2884,2426,1174,1632,2637,2690,2746,200,2934,1089,1910,889,2038,839,602,212,863,789,1586,1270,1958,2612,2541,1609,1479,1044,239,2025,481,776,1743,2959,709,772,37,836,2209,1672,1741,900,2052,2420,1076,947,2773,189,630,369,386,400,1797,1363,1727,1474,2772,2859,798,1392,1343,1449,1625,2860,2671,2742,1333,2613,1092,316,1953,735,1786,2155,1817,522,1526,1192,1239,2398,592,644,323,609,1910,1447,71,1977,651,2285,2640,2099,2318,1597,713,2036,556,2333,1100,163,2368,121,2676,900,2583,884,2675,2352,2572,397,1981,2370,2678,2805,2718,2639,1479,706,1134,431,2576,238,2072,1963,1269,2139,2693,2053,1859,1535,1417,1736,2461,2873,108,2679,835,823,1601,996,2309,2228,1451,243,2335,2650,1506,1805,2548,1503,1066,1419,1720,2512,565,219,1963,275,1488,1557,663,919,480,2633,532,1206,239,1947,310,2711,269,175,56,459,1867,1705,2949,1931,2891,2387,2103,2458,2276,2027,2104,1973,2673,1190,2408,353,2015,438,1459,1020,1080,2129,2746,2082,1251,1603,2967,1474,2931,1192,1355,323,2824,2491,1399,1577,2577,1826,959,182,233,1910,2632,219,2991,590,2443,261,2474,239,746,2939,294,2853,2873,1007,646,1081,2644,1533,2611,1346,1529,8,1897,86,1532,987,683,1332,2756,2891,590,655,2040,608,1406,300,474,792,2258,2218,1423,842,269,1236,2550,2915,1510,2009,117,837,499,2737,308,415,2579,544,2782,1004,1250,1159,158,2722,1295,1648,147,2180,2328,962,1867,2828,2626,2351,2684,1039,2979,2343,330,1699,395,2747,1418,2564,566,285,835,1930,2617,570,2015,1990,2219,183,1556,1577,2255,1062,873,1875,1835,1056,1817,2341,2093,1897,2952,1434,8,2928,1041,2448,17,2121,2411,1742,1847,1882,1191,1834,281,716,2108,263,733,1760,2470,1140,1045,221,409,1087,1574,708,1509,348,2824,2253,710,2781,1767,2261,1325,2043,1587,1532,2988,2097,837,2381,606,1558,2538,2848,2358,607,2691,2948,2075,2305,1995,1690,1563,15,2196,2591,2104,1548,1336,2137,2803,433,40,1353,2222,2930,181,1876,273,2428,91,2399,1863,1096,758,2646,2292,2843,784,804,517,294,1804,1766,2901,1650,2000,2924,509,221,580,641,101,2190,977,1214,1814,454,263,2360,1956,1906,2308,1614,1084,988,196,2605,77,1221,1489,757,23,563,1131,1989,1238,545,578,1181,576,923,1372,2213,2749,113,2066,2975,2559,1012,353,2706,916,2027,486,820,1062,2397,2401,947,676,2696,1256,1826,2636,2042,1789,1109,2207,224,1292,1519,1871,2435,1568,122,118,1244,2197,429,2742,2191,1130,293,559,2916,591,2550,2149,1413,778,1873,554,1764,2482,2643,1005,2975,23,1781,2517,2148,2389,1786,2868,1421,1774,2597,1188,1588,870,842,1572,658,2534,1677,1878,603,2246,2501,711,543,1137,311,1394,277,814,759,1243,1039,1545,2604,2319,1209,850,2555,2793,1242,275,1804,1637,2276,2687,612,848,477,1800,2537,1394,1633,2936,2721,211,1290,1642,1745,2698,2838,352,165,2177,1685,1217,2503,1657,1136,2631,2772,2180,2167,432,2091,732,2854,567,1416,2634,325,2215,606,1429,2548,500,2891,2442,98,1310,966,1177,23,2133,1115,1740,1856,969,2464,748,277,1375,2948,160,2705,384,1298,1784,504,1105,1709,2466,473,1716,1021,949,2556,1072,2018,2636,281,2202,40,2783,980,803,2749,1375,1684,1847,1749,898,21,2331,771,1317,2074,2209,1388,1085,1223,1186,2864,2931,302,919,2441,1273,2104,2196,2893,2331,2174,308,2329,994,1378,1237,454,2759,1849,1362,1541,2416,2258,606,2478,1157,451,303,1049,499,2177,2101,1653,2841,1829,824,2958,1079,656,2789,692,2843,1502,1459,1372,2359,180,2547,2415,1663,2616,393,2142,2384,1717,1314,1150,2619,839,1823,945,734,1798,1428,566,2244,2948,2676,1721,2595,2839,488,2736,261,155,2554,1457,1212,150,2250,351,2697,94,907,893,2766,2120,16,900,431,1099,1214,1459,2237,278,1571,2365,1378,2036,1413,852,290,342,38,818,2231,896,2870,2018,2769,355,1602,328,550,2963,365,2826,2225,2918,1187,1503,1249,2291,1055,1264,942,368,1365,2586,1932,1159,2254,1712,882,2002,874,664,2269,2337,586,944}

    {831,1820,471,2929,2805,685,91,1669,72,14,981,934,592,1142,1356,1710,880,1905,2230,2089,1192,1771,2366,744,1398,2133,844,1912,1198,1397,271,1336,2968,467,642,1376,990,2416,2095,734,504,1559,740,895,2360,546,2282,122,942,866,2834,65,981,213,2908,2366,507,1435,2450,884,418,1314,2361,1984,2193,86,2525,2501,1542,146,2162,1320,813,690,2713,1624,2275,2657,1872,2359,485,1702,2186,1283,1403,1627,1548,358,1173,1306,743,2193,462,1275,2847,2875,739,625,2382,321,732,605,1650,2479,1540,292,1455,2385,1596,1534,1782,1844,2501,1722,1066,310,2804,1347,1012,2922,1868,2084,2052,2328,1986,736,1752,1019,2585,242,1817,167,2279,365,2249,2899,565,2303,1775,2721,544,2552,44,2681,357,1110,1800,719,2480,927,658,1178,2265,1931,2132,1490,147,2851,822,1837,2706,2366,1439,2330,1767,1463,989,2168,2289,2239,2415,2293,2522,1281,1531,2061,733,1676,1124,2874,604,1049,2294,2402,986,2309,1481,2328,2201,2888,1513,997,68,394,1267,2860,569,2971,2779,2501,750,2521,457,2283,912,2100,2269,3,83,1458,1087,51,185,128,855,1381,167,2294,1819,2897,1712,2440,2572,1041,2127,1036,1432,2213,1856,2539,2118,2309,2592,768,457,76,2517,2595,72,2424,281,1029,849,2302,378,2648,1593,653,642,819,168,672,1291,2324,108,2136,2172,353,2125,1179,2293,628,135,1224,829,1020,812,1097,1249,2198,2053,1710,1626,624,2168,1163,2078,1296,318,2953,2385,411,987,941,137,675,63,2549,1300,741,290,570,441,2624,1103,2721,1922,109,190,1705,2427,447,2637,776,2855,449,729,1967,2639,2329,1019,1936,2584,1123,2831,1353,2249,2710,34,1538,2291,2382,1833,2751,2243,11,1907,1924,2366,63,1241,1735,1612,2522,720,1222,1533,1048,2415,1369,273,2621,2595,434,2459,1007,1162,1919,2832,1699,12,2487,2553,1520,1862,2910,2450,300,819,9,1929,562,2315,1251,2226,1966,1496,681,2331,213,1933,20,71,1543,620,454,2042,694,1828,2018,2096,2423,370,2016,642,2347,2291,1738,1476,1295,299,2621,547,2096,1763,2515,1066,2689,2560,472,1516,1933,187,2138,2896,1230,2885,2191,2309,1336,126,1277,2537,493,1421,541,657,2393,2506,1599,2077,939,2067,2948,2493,2130,1643,2670,2438,1876,2956,2106,2754,697,225,732,2030,618,1572,909,410,1380,1309,465,2362,2301,2701,1091,532,1904,90,1698,529,171,516,1203,502,2980,491,1324,694,2561,1528,2214,1432,692,480,1865,2496,592,1072,552,1093,1292,1542,1177,325,160,2147,506,320,350,539,1441,34,2678,1470,1139,2807,313,1399,840,1461,2512,1074,932,194,1320,1541,2638,242,1073,250,183,1670,1670,438,1743,335,1589,581,1571,665,2284,2640,1489,1570,35,231,1692,2646,94,2440,2905,1519,285,2923,710,1074,2994,633,103,148,2505,1583,1379,2806,2991,91,981,1247,2743,714,1806,2309,2119,1484,1453,939,2105,948,2676,1810,1652,2713,1141,1271,2464,2606,627,2055,2138,2327,613,2454,1329,2758,141,1082,2963,2445,339,1534,2621,40,923,1127,1494,2677,801,926,136,683,1770,1147,24,1519,142,1719,1252,2542,1668,1426,2867,2820,2407,594,1550,571,828,1289,1431,364,1345,1808,2796,2423,2506,1692,1385,1868,2741,101,1114,1077,1003,2981,641,710,2017,2701,52,1928,1273,2298,2748,1929,2699,485,392,792,2052,2425,1146,2159,2598,1173,224,108,1173,2594,2648,141,886,783,1587,2206,2950,2581,742,821,953,1647,487,226,1817,32,1502,780,1136,2919,1966,2191,1791,2257,1383,1101,2878,1145,2115,2202,890,2164,2087,613,644,2117,2442,485,1192,1788,599,1529,761,679,1527,2795,1238,2512,516,2359,27,1425,2517,2185,659,1353,1510,2318,637,2573,1543,635,2824,1086,1020,2558,2390,1373,766,1011,2593,1103,2608,2948,481,2050,2231,1404,2012,447,2279,2253,404,182,2360,216,2096,1172,764,1631,2662,287,183,2107,2716,2239,1663,2651,2921,2113,325,1909,646,1549,2114,1396,2298,919,2885,2735,957,44,59,1258,2314,2321,2258,179,1999,898,689,2487,2650,2422,1709,450,1091,1809,1809,2862,2085,2192,2455,903,2451,136,2099,2106,2068,1206,1056,115,1272,2680,2231,1066,931,290,1284,718,1424,2056,410,466,2027,1707,520,2781,1722,2883,546,2506,1679,841,943,2920,295,490,1722,542,2058,1804,2973,19,1593,727,1623,1701,1440,2304,931,612,694,2121,885,1611,1842,721,1980,98,1659,1746,2937,2392,1440,834,1807,1545,1160,2104,667,2128,680,1803,686,209,2392,40,829,2282,2227,371,490,967,1234,2513,1806,1879,325,419,1042,2624,1629,527,1040,1245,1321,799,1233,2848,228,2651,728,1605,2799,2431,1764,1903,2841,1441,1328,1624,2479,154,1733,2533,2596,2080,2855,641,2010,2426,2929,2089,1173,2022,573,928,1294,1087,2318,2561,2946,700,678,1788,830,2487,2047,2393,8,654,1503,2610,2026,19,724,213,2788,2336,369,2433,1645,2799,505,1020,2595,59,450,247,2269,1397,942,1551,2480,1204,1940,380,230,2068,1581,1185,2784,1034,625,1937,1033,1172,717,2634,1273,1014,138,1915,2933,1164,1609,2886,497,1676,587,2930,489,81,2118,491,1890,2048,1453,2610,2876,2580,503,968,1817,2651,2570,1083,369,531,1003,675,2395,62,2889,2727,1487,956,2897,2706,2774,2207,432,129,156,2692,2530,751,501,1258,994,968,236,964,2912,1781,1712,2967,1088,418,1369,454,1271,2759,331,531,1454,884,449,696,2265,1346,1883,2864,1472,2400,2590,1973,1400,975,1237,329,615,373,1828,2604,144,1630,388,1103,1271,1529,2123,717,162,1661,2045,1403,2972,1800,2261,1042,2757,949,1037,1688,594,2847,185,1372,1312,298,565,2221,408,2129,2923,609,44,2057,2969,1640,2121,1193,2499,831,1240,565,276,1789,1192,2715,1620,612,2762,1857,321,88,2071,2062,133,1062,781,1346,2119,1033,505,1538,589,2349,2282,1237,1242,1016,2733,2267,302,2440,2381,2428,612,2370,1271,1090,260,1993,409,2711,1094,917,1872,2251,561,2640,1547,2201,2196,1901,2599,2228,2353,2344,1480,1426,926,454,2259,1950,2211,266,46,252,1246,2229,938,1684,2346,2062,684,101,2491,1630,705,2679,2455,2096,1271,2009,2241,514,2596,1716,2165,516,1223,2576,403,2850,2732,582,2077,2914,655,764,2877,2310,2764,184,1145,281,4,1915,581,1579,639,349,1844,1554,2164,2889,1336,1354,625,1744,1230,2998,311,1974,2068,730,1856,2497,2513,1529,2113,120,49,2128,2154,687,2467,2003,2301,526,2191,101,493,888,2170,1168,2988,1727,2755,1702,256,1910,1692,2260,574,2764,125,2802,473,2590,2092,521,1428,1049,2570,1270,2756,1751,390,1116,962,228,524,981,2891,366,263,345,1964,905,2491,1407,995,1948,2762,1083,721,2006,338,2983,2430,20,847,401,2566,2965,1462,1053,1804,2005,182,260,2436,2209,1557,499,2737,468,1702,2059,2255,2079,853,629,2104,373,2963,1843,2948,901,1121,2715,606,1269,2722,2696,1088,1193,2113,1881,1069,2852,83,1804,1465,2602,1401,1034,2289,2788,2121,434,961,1538,2575,1978,2754,2283,1777,1935,2694,1117,2826,2172,1988,2787,2651,2942,1560,2070,148,1215,1003,2845,498,2793,1024,652,156,1621,49,614,1063,383,1462,1684,1473,1091,1943,1992,864,663,253,1128,1049,668,2638,1525,676,1589,1756,285,925,2001,397,1303,515,1049,1146,68,598,2484,1630,1115,1567,2852,930,1395,1285,947,2213,1192,1498,2094,1317,11,263,527,1930,1887,61,1248,836,1569,1505,854,2736,1408,1132,827,2799,891,2955,300,2012,1976,1575,295,2096,1784,1438,1436,2535,1629,2786,1071,1763,2589,1607,304,1520,2038,1337,97,2494,676,1687,1798,2248,1841,2639,2702,1710,643,2556,1406,755,2954,2679,379,937,839,2553,559,2022,810,2461,1604,385,1691,1895,2257,1832,628,638,2430,904,1747,2423,836,1933,2483,2749,1817,1367,2527,195,1436,449,2850,900,757,693,378,489,1152,2196,2955,207,708,2837,1946,440,2978,1420,1718,2450,2356,351,2151,109,2807,857,164,2457,1015,2528,888,155,2544,904,310,2613,85,2821,2119,2471,1831,1757,2084,2780,1348,1973,2247,1472,1896,426,1855,1797,2118,556,2512,2189,1118,2744,797,1007,162,2359,1883,174,1538,805,2319,1688,31,2485,362,2406,2019,2507,813,654,2433,633,2338,1571,2328,2969,2343,1674,2730,1538,202,1034,709,2202,262,2623,1949,453,223,1893,2298,1843,1330,2140,315,2437,508,1049,2986,1049,2096,1916,1017,2966,346,2415,1550,2072,1468,640,2446,1045,2071,258,2105,2550,2919,1553,1336,1292,642,2929,655,2462,1823,535,600,1267,657,453,733,2875,1661,1551,1452,2062,1802,2184,2635,98,800,306,2445,2507,2357,2058,353,2675,2128,480,1049,114,2546,88,1807,1486,1579,1958,1618,510,2507,121,589,1203,353,1624,2162,760,650,859,732,857,2582,277,549,1728,546,1019,24,440,144,2562,1858,2992,1693,440,2148,918,2944,1589,1716,480,2163,2017,1894,137,1695,249,2287,965,563,616,2821,2013,135,2130,1537,1261,2028,319,1520,105,2745,1007,47,1106,1149,1669,155,230,766,461,743,1624,53,564,2857,2363,1170,324,1802,370,2218,447,2332,1793,1269,1417,2265,1765,2828,1096,2567,888,2053,2434,477,562,2319,2212,491,2490,2413,2891,1306,1779,2884,2641,2897,2483,1611,2798,2960,505,1499,2826,2014,383,370,2954,1393,2952,1699,1433,596,2989,2166,2623,2899,2544,170,2274,16,2504,272,2594,1291,2334,263,2640,1761,2740,590,186,1546,2800,1180,1755,2394,2674,10,1838,1925,1412,1766,1442,315,103,764,2835,701,1786,1314,360,1987,2808,1641,1818,1213,832,2587,915,1058,1689,905,1755,2619,2949,2734,2743,509,2130,42,0,2654,884,2509,1339,2430,1314,2026,2667,1360,2424,2452,1737,149,806,2346,1898,870,1351,2547,621,148,2251,573,552,320,1784,2985,259,1570,215,2930,987,2134,2566,1590,1985,462,2017,2122,2548,537,2094,889,2060,2822,1005,2448,1810,1530,1762,323,2556,853,1056,135,284,223,2375,2002,2604,1445,742,158,2781,2806,112,620,2793,72,747,463,1478,335,1062,1460,2604,2175,1086,1653,2496,1812,1508,2307,1960,872,2656,2006,2544,2243,2056,843,2357,913,1394,538,671,2262,1483,541,1934,1350,1538,756,718,1161,1192,1027,2322,987,2943,1335,2350,2111,1145,919,1052,1065,1331,1589,2661,305,344,956,1392,454,1795,1296,212,1886,152,2423,983,1180,2937,2598,929,2157,2957,1135,2935,422,1831,2340,1769,464,2070,2758,813,2320,1160,1624,2561,211,1350,2827,1080,573,1130,574,2114,715,1382,2717,1440,2137,2312,449,1841,836,2499,2436,2967,2102,250,2596,1273,1713,2443,1839,2037,1742,932,2506,1615,951,1477,1446,977,1943,2806,1080,1583,182,533,2712,1138,1283,75,314,2450,1043,2007,561,1534,717,660,2751,1625,972,191,1304,1023,1064,1935,2653,638,2799,1592,409,2298,2088,143,726,2736,766,2268,895,2413,2449,2603,1356,1728,1256,2192,2227,1955,26,1026,1731,1478,1832,2240,195,1803,875,2063,2106,383,420,2569,1642,2625,2541,2276,326,1177,2694,1249,2813,2655,507,982,2872,2444,1074,976,1323,1054,318,2298,1043,1550,1364,457,493,2189,720,1121,1629,2617,1525,2877,1122,59,2864,1011,854,1427,2846,545,1088,1149,1052,2670,953,2002,283,249,2110,2292,2278,2493,2226,1972,756,858,2343,942,1900,2250,121,2890,197,2291,2934,549,932,993,942,2764,312,129,1473,1446,461,361,1040,1374,544,586,1997,1431,1411,828,1868,676,1468,2719,2512,797,2185,895,377,1018,1165,424,332,1523,64,707,1510,1864,2503,1211,1341,2300,1664,2702,2238,1228,235,1385,1592,409,1520,1002,2627,969,2785,325,2255,2328,844,1146,1118,1659,2814,409,1616,175,672,444,798,1562,2324,2727,1601,1007,559,1308,473,2514,159,1588,764,2987,1462,2003,530,534,1897,651,1626,215,2951,2200,1200,1549,93,2928,2326,1660,49,1607,256,2996,1825,749,632,14,129,598,1432,2874,1853,100,1251,520,2954,2512,583,454,2039,2658,940,1742,1015,1786,2497,1423,868,1630,2111,853,2002,376,908,566,762,2640,1573,2008,2810,2889,2783,785,942,1944,2263,1355,1391,733,1253,2050,556,2324,2175,330,2889,1951,2271,374,2114,432,2065,902,2091,2423,50,1489,411,937,622,2526,1280,1233,2276,2895,523,2990,1104,563,1388,1872,220,1056,1258,2094,405,2220,2853,1550,462,2305,2930,2310,2751,1263,2051,2833,286,2778,2807,94,1500,2925,860,1756,131,2188,1659,1773,321,2645,1919,2915,793,1663,2680,514,2429,2284,167,442,418,1373,2211,1158,387,1585,2121,1847,1634,2324,1282,1930,1096,1776,579,1583,470,496,2171,2378,1586,814,2755,1537,859,744,2793,1183,341,2450,669,1636,1838,491,2226,2621,469,1619,788,1155,708,198,1630,2583,2629,1120,2191,2089,1574,1479,2202,1830,1501,1466,1970,1857,2314,2856,1377,2677,1181,2685,2531,702,2996,1512,1397,1369,2970,1272,869,2034,2390,2886,1226,2172,634,1612,795,1068,2631,676,797,2958,2775,1176,415,2511,973,1229,2686,788,2976,2725,2039,1305,1942,1675,1416,2772,166,1517,948,2598,2900,1448,1313,1873,1712,1817,1536,203,1275,787,40,429,1369,2497,2364,2242,2738,1567,1038,1521,2348,2820,2233,2720,2057,594,2763,2195,914,1397,1553,1854,245,1361,940,913,96,1767,191,2574,2708,1008,1386,1279,1990,184,186,70,88,2096,1115,2863,82,2474,529,2126,2760,1908,1948,2497,1372,1713,655,581,1013,2776,601,550,1300,1387,2507,2360,2683,2074,2096,2628,1334,1618,2062,2523,802,2948,2743,1779,930,2561,1151,1266,2281,552,2076,842,1845,2100,1822,1635,1002,501,1006,1061,2449,2387,1897,1969,551,2228,901,1911,759,677,2898,466,1700,1914,464,2166,2203,1390,581,2768,1576,2655,2706,792,1757,2160,23,558,1652,1541,379,835,426,507,616,2945,2417,1966,519,1534,2882,2919,2205,182,1832,1600,241,1817,1965,1803,1459,2255,2709,1907,1955,861,2495,625,1019,2460,2272,2026,2254,1521,2367,231,1832,329,1397,2244,2517,2493,1477,2533,2831,2199,958,140,671,1844,2277,1138,481,78,1740,354,1874,1564,799,2403,132,707,2194,2387,1123,2780,1631,2226,2460,1034,1409,1644,356,1666,921,1939,2621,2893,296,2992,1456,452,722,877,2454,406,124,1787,555,1712,2399,510,106,1358,821,2752,2608,2599,2363,1964,2372,511,594,1336,2068,1375,951,1370,1993,63,1253,2999,394,1363,1026,425,1338,2175,27,794,2297,336,2092,2890,865,389,1441,2153,484,2251,2993,2057,2224,2309,1015,2626,1813,313,1975,589,2109,1870,369,2898,429,2798,2802,60,1167,1525,2597,704,2222,2178,2926,438,1260,861,2131,1692,2510,998,1570,2974,1913,173,1784,2992,579,2209,1111,1307,2812,1804,1036,50,423,2478,99,2008,1787,130,1763,1230,1941,1948,422,2067,498,2583,756,1570,199,2813,2596,2800,574,2375,953,84,277,2174,2752,670,2519,445,2756,1152,2788,2077,606,2118,816,235,1444,2118,2903,1658,1630,2004,2621,1440,337,695,699,1177,2226,1759,774,835,481,2985,1131,1179,2354,1985,485,2001,295,87,2773,1072,815,1031,2442,2269,679,2345,1442,1112,55,1678,2370,2561,2763,110,767,2906,480,561,46,1993,428,642,1066,2735,790,1091,1670,2173,103,223,360,1876,13,1021,21,2671,1629,720,317,621,1768,495,116,2624,784,209,1260,497,377,967,1879,389,2157,2409,1286,2487,1001,1592,402,2523,2007,1308,2330,2193,2615,605,2499,2230,1655,359,2566,2906,962,889,157,1392,2512,890,856,633,2046,2251,2716,1275,2389,1982,236,1510,1205,1130,348,2305,945,1095,507,2845,265,1216,1461,2298,512,511,1102,946,106,1570,2617,248,567,353,2313,2527,206,1163,1538,127,1297,26,2902,2182,1786,2793,2566,1591,2879,754,1498,391,279,1277,2135,961,931,2045,1315,518,1062,1888,2299,2370,424,1694,2532,237,551,2872,2844,1683,2517,1587,8,1032,1326,2178,2398,1804,2820,1059,2490,1829,1444,1393,485,1612,2639,563,2640,30,1047,577,1957,1315,2793,2545,2851,1453,2984}

    697

    2070

    Returns: 58217601

  98. {1464,1825,860,2683,659,2816,1694,2873,198,2913,1172,2632,480,1232,2502,2982,2211,677,1731,2503,2652,648,2381,93,1747,236,1116,1816,1726,2157,2884,1119,2301,2829,2689,265,1082,876,188,1355,687,2722,2092,407,2574,623,2034,9,721,2753,100,1583,1036,866,2370,41,2823,2235,2262,2759,2656,2354,2922,1278,1085,639,759,129,2184,1056,890,2349,1136,1574,1105,2400,2381,1105,983,331,1073,1628,2293,103,1006,370,174,1539,113,278,1654,1909,1875,1090,1686,1127,2569,2654,2638,2015,2335,1771,2548,1455,1158,793,2282,1514,1300,1831,2240,11,1682,2864,2008,1186,1939,1328,980,1127,1239,1457,2900,2176,2847,1267,1273,1012,2649,2639,2596,2732,2909,117,842,1425,653,2050,1601,1841,2023,2537,2339,2799,1294,1245,2204,2838,962,1612,1588,1523,447,2543,533,2885,2854,283,1416,1252,2772,2617,2163,547,1359,629,2803,1882,1335,862,1778,585,2794,2818,417,2275,225,857,2039,1662,361,691,2846,1414,2057,598,2644,1656,352,1749,1382,2775,2603,343,2470,994,2717,1715,358,1354,2769,350,1978,2297,1358,2802,771,854,1724,2969,60,133,1243,109,2704,1458,1224,1996,1173,1867,871,2242,1147,87,2542,2124,153,2208,2142,2389,2846,1307,2531,1989,2042,2174,256,675,1512,1571,2136,2437,244,896,1086,2215,581,2015,1615,1375,2234,1646,1254,1243,580,1256,1070,2340,717,1064,1196,1015,2819,2888,972,1786,2549,142,1613,2700,2923,1219,2256,2612,1882,2083,976,1488,2203,2744,666,2528,1989,1003,217,1111,2689,2275,1810,1690,837,2096,118,557,1727,476,1001,149,2567,954,1868,2786,293,2507,873,2397,719,771,2799,765,1552,2136,2233,1291,461,1031,2588,1147,1362,707,2324,1354,1423,842,2811,746,2943,2526,137,1147,2448,866,1112,2022,937,810,2725,1733,1574,935,685,93,795,2044,2067,459,224,543,2791,2413,1608,662,322,500,1306,2862,2808,1417,1419,2019,2737,2877,1231,2613,37,693,304,1451,1266,1761,245,372,601,769,1305,2326,2662,2654,1194,2272,61,2016,108,1123,911,2009,2429,568,0,1824,1888,1566,2462,2818,1829,77,1770,1675,2808,1091,1763,2627,2883,738,446,2147,906,2004,750,2294,2440,1040,1896,2072,717,2270,1925,2821,2080,2883,2110,2881,260,1322,2274,1575,1056,2611,1516,2679,923,139,2853,1463,160,725,2803,249,641,1645,2440,21,2436,1546,2357,1745,2481,1569,569,1563,2024,2517,2294,380,2758,682,1650,2159,274,2204,1995,1953,1649,2123,2857,802,51,380,1606,245,1622,1070,1137,2561,2355,827,1569,1040,2796,1622,794,572,993,443,2962,1169,1323,1687,2768,1101,1780,2250,2148,2682,2791,1809,1030,1614,2162,2366,1897,458,1578,1971,1005,2680,1836,302,1329,2646,287,2507,1178,1344,741,878,1422,2365,1815,798,2511,1158,2449,1810,1276,225,2731,283,646,1549,1104,1066,1637,595,917,2092,2806,1232,2310,545,2325,2377,2740,1859,2275,1476,2309,128,1034,196,1459,2376,850,28,2286,2871,2162,1761,1730,2896,214,1625,72,77,1790,2946,122,1311,791,369,1962,2447,1059,2345,1100,90,80,1992,1361,1607,2969,1112,2859,1697,2330,2690,399,2218,591,894,998,2829,2552,506,759,2779,2785,964,1499,1964,2994,2251,901,1081,1820,1455,2686,505,1502,18,460,2253,335,865,1903,2043,2808,41,1877,2052,2414,863,1304,438,2451,24,2043,873,649,1573,1040,2068,1991,2517,575,1567,1653,2865,96,1047,1897,842,725,952,1340,2226,1894,1941,2980,1515,373,1617,1962,1587,1714,1293,2270,2828,491,50,2001,2090,165,2087,1517,1415,736,2589,1193,1641,928,347,367,1121,762,2661,535,910,560,630,920,2092,2947,666,136,1810,2961,1145,910,2299,421,2763,1768,302,584,2650,1887,379,509,287,2129,2178,1383,1507,114,946,2897,1687,1762,1990,1341,1745,1548,2226,553,203,765,2718,896,1365,2715,272,1860,2276,28,960,2361,1064,2385,1948,441,2586,806,2010,1463,2991,271,1685,2385,1426,394,1641,1379,278,2051,371,2265,577,2268,2203,2167,1173,359,2412,1580,597,2679,1683,2001,1763,69,15,774,2263,2300,215,1264,1046,588,1437,2833,2837,1193,768,1363,1690,1273,502,2564,2652,1364,1546,2726,2226,1347,823,1293,2906,2226,1024,2326,1944,282,552,2789,992,69,2974,2242,947,1388,2825,866,2911,2536,1057,641,2524,1790,1547,1961,376,995,101,948,1627,1740,1332,1344,247,285,2402,8,1054,1042,770,2193,111,289,1613,191,1374,1265,1723,2490,586,2481,2129,832,812,99,495,2735,1648,1536,2600,750,376,1899,434,1710,580,675,2610,2607,2573,1960,367,2997,1458,2233,2654,990,460,380,261,1907,1963,433,2489,1049,728,826,2137,890,863,2481,132,2942,2499,234,1559,593,1259,952,788,402,2978,1229,2128,608,1231,71,1727,134,1224,2746,366,1790,1320,1923,255,767,1031,743,1278,2306,1908,2314,1284,899,1203,1346,2093,186,2703,601,2635,859,1951,2525,545,912,2120,834,1120,467,1638,442,2988,1946,2944,1431,2097,1409,323,1457,1433,1417,2202,2624,609,233,2813,541,2641,222,2916,274,730,1779,2477,873,2459,1593,2253,2210,965,1828,2096,1450,1898,2632,864,2020,1911,2967,1934,1661,2408,2912,2928,202,2642,2598,815,457,1342,1518,2287,2573,1666,2015,636,1507,2372,2970,280,368,750,729,398,1931,504,2435,429,852,2101,2678,1711,395,1383,21,197,2316,1359,2591,108,2149,151,309,2638,1380,1427,1348,2119,2317,2522,2464,2506,2619,2497,629,1871,2428,1787,1514,2375,391,2136,1293,760,1288,2378,1074,1005,278,1160,2447,653,280,2570,2780,1745,1929,1759,578,1163,1190,1822,294,496,909,1847,804,1555,2118,4,1057,1203,2357,1125,149,601,2150,1734,1985,1173,2439,2159,1674,2334,510,1717,2697,1289,1479,2532,1617,751,2196,1901,2364,536,1884,2890,2134,897,2473,998,46,545,1587,949,1928,2898,2125,578,2367,65,2404,216,2107,6,1807,1379,2454,1713,566,1396,788,1206,2465,228,1610,1274,1828,520,1432,1513,1943,1504,2502,1406,1739,1308,852,2832,800,1966,2405,2679,1352,988,86,431,208,1783,2167,2726,2830,2194,688,2467,716,1815,2906,2522,1934,117,493,1815,2392,2568,65,1706,2135,1543,309,2019,750,2765,2863,2744,1763,520,1390,423,1021,650,663,1780,655,2712,1938,441,1400,283,462,642,495,799,2503,585,2121,469,491,2981,2305,1773,491,205,1397,1141,837,1005,2757,2490,1441,1455,2827,649,230,1956,120,2758,827,1136,2275,467,1957,2381,2518,395,880,664,2664,1427,1688,2258,83,1598,1129,182,418,866,1660,2277,1423,859,400,464,1511,392,258,1184,327,1193,891,637,497,2048,2385,1492,1920,2411,1767,1245,1789,2678,2766,1913,1514,1435,1734,200,634,2190,1054,360,1634,2637,2966,2021,352,673,1679,1699,300,2744,717,2953,1963,694,1776,2652,1007,2153,1660,1320,1682,1032,2609,1319,1973,1815,1358,2763,507,640,2419,1108,1008,2677,2488,1611,2962,242,2637,2094,1258,1017,2373,2966,1097,2440,1421,2304,1332,2949,918,574,2131,1667,2681,824,2933,1635,47,2654,672,554,1900,1159,2594,953,2922,2385,1559,2118,1797,28,2187,977,2389,2143,2625,36,916,2406,936,2808,2622,1348,519,2269,2180,68,2283,762,656,2675,1709,1801,1626,1432,2634,2913,2614,1676,313,1067,357,2233,1908,911,1794,1741,75,90,1024,2455,537,376,2367,920,1880,1077,173,1222,710,238,1698,2142,2064,2623,5,926,539,1457,2236,1273,615,1113,511,2537,218,2095,938,628,1599,2503,2969,1640,976,2363,2433,2861,1467,2704,2836,2767,143,2205,787,386,2546,1270,956,2139,2396,389,1518,2103,2114,2015,1967,1840,2336,1073,1284,1704,1524,1688,1852,2962,1609,562,1074,2092,1283,950,2433,2181,1535,1971,1532,724,544,427,1601,320,1181,1184,2109,1188,2808,385,1854,2991,1354,1408,907,1425,378,417,979,62,1189,229,2104,2074,2713,1697,1191,2193,1567,468,2633,1704,853,2490,870,1622,1863,1701,1695,1248,1123,1337,1974,1829,2507,2962,2307,1109,2643,165,2019,1502,2685,563,1487,1020,1667,1813,540,1682,751,986,789,263,2055,2534,2844,1158,47,2085,2509,1249,321,2344,1214,545,2197,478,1742,406,687,536,129,2132,918,1509,1337,1800,508,1514,1522,2440,2698,2353,728,2022,929,1303,1679,528,2870,1209,1200,1745,46,2158,1154,2401,2041,2697,1093,1281,1022,2393,2548,2362,2291,2613,409,121,1719,2138,935,59,2921,2216,904,1631,747,1600,1514,2341,2187,2447,1877,189,2524,2115,1756,1984,1878,834,492,852,2723,417,1005,168,2406,2315,1542,474,2625,34,2888,1322,423,2844,2309,753,1914,2286,2096,864,588,793,492,1605,1131,1930,145,1461,651,1785,1706,1881,243,1622,1537,2657,1784,2079,747,1732,1138,320,1434,601,2013,2220,439,1846,1630,1332,2541,1387,858,1939,2651,1678,2259,115,178,1152,761,2962,1426,130,1356,99,166,2211,1763,441,1068,980,2383,1688,1690,1031,1926,851,1953,944,91,276,1826,2678,1093,504,2430,2951,2845,706,1311,2965,2346,2810,2560,1321,165,794,1681,2735,503,2122,780,405,2731,2420,778,2032,644,2619,1357,2445,1077,1216,2468,1514,1994,1334,1738,1080,1428,528,730,1002,1052,1945,138,2682,302,2492,55,812,2789,1457,1678,336,1544,91,449,2679,2069,1839,2475,2404,284,1475,983,210,785,1122,1292,1225,70,2160,337,2903,2086,2682,264,2912,58,482,1483,419,1508,2296,2989,766,1284,1860,1075,379,654,759,2199,1507,63,2556,2139,388,749,290,2545,1067,2842,2265,2632,1522,1232,9,508,1077,207,1422,773,1124,2187,1552,122,1469,2430,2975,1885,2724,1928,2369,1205,2914,2808,2820,2238,1126,2667,1274,1790,2246,2352,2905,2336,223,2910,1540,1981,153,1311,2984,1268,2386,191,1240,237,300,1171,1869,1895,1974,1216,176,2057,2682,2719,2788,696,2071,1771,1543,2399,1208,507,1100,166,340,0,2720,1680,2502,1788,2440,2480,2625,2911,344,130,2850,1114,2502,2409,1754,1687,67,733,270,1395,2390,197,2000,222,288,428,457,956,1715,2589,2642,1019,2678,818,2778,2217,1692,1544,297,2300,78,435,162,241,638,2423,1149,2290,1766,2704,1109,2674,1069,866,1645,985,790,467,1113,899,1074,107,1479,512,403,292,1657,2742,2124,2043,2703,1771,2711,49,645,1940,1821,1457,2291,2598,1695,561,1166,1141,734,2407,2013,1955,1240,2545,2512,471,903,1571,623,1208,2316,2338,672,1842,1112,2945,2501,1146,2868,2230,634,679,1001,1969,1316,1832,763,2535,2167,186,2337,1142,2197,300,2851,1336,955,160,1540,62,1416,2540,2958,2092,682,395,1891,1218,959,1965,1350,463,1403,2526,1808,2009,1857,2675,1302,483,1723,2789,553,1967,2467,2853,1079,2745,2059,277,1797,1550,2789,2887,1878,1015,1691,834,691,1230,2201,2009,2437,2317,2524,2280,1094,1502,2078,1805,1324,1656,681,2851,1605,922,2209,171,193,1424,592,869,946,1257,21,1176,2847,1567,2214,2927,1181,882,2912,2537,722,1712,934,2912,1339,577,2460,2437,372,1300,2887,1987,1844,1791,1280,107,2630,1041,2437,662,2634,1780,708,562,772,1035,939,1159,2618,700,2205,1338,223,893,122,1230,1870,2061,2818,976,2271,2620,907,2943,1449,197,255,1396,2625,1017,2481,2839,859,235,2118,281,190,630,201,1682,2572,535,2507,1547,463,1679,1343,390,1685,2287,2634,2280,2716,1223,621,2416,72,1656,2172,2436,1875,2275,2488,2682,349,602,342,65,265,2529,505,1190,780,11,1083,222,152,1971,1594,2675,1485,1021,2743,1467,1424,671,1433,1333,2,47,957,523,2699,2029,715,97,677,1619,164,853,2558,1306,2267,1028,30,1164,1669,2860,1433,521,1519,1670,337,798,1332,2253,539,20,1214,2808,2743,1469,412,181,2219,395,302,2665,1147,258,2890,313,754,2427,789,1946,476,422,1454,1302,1687,206,2815,1745,2036,1340,1446,770,2160,2408,360,1803,1899,1030,1629,919,1494,2433,2941,2450,390,2038,800,1257,507,755,1124,852,273,566,713,1649,430,794,2490,2711,1247,2088,2550,2033,723,1669,1568,2054,536,520,1242,264,1747,22,2529,2689,1645,2349,1158,2748,825,1654,2695,1323,738,1919,2603,520,842,2068,2739,2932,1325,116,2228,2293,2807,2404,377,641,875,1668,1249,1003,699,444,307,59,601,2665,2342,2398,2198,1696,1241,1429,1579,2439,211,2095,1878,2373,556,2409,1808,2980,1295,1589,1220,1833,2124,2147,586,2042,2195,516,1979,821,383,345,890,78,544,1092,491,493,1470,2059,234,1486,1230,634,764,583,2031,2889,113,2888,1398,157,2136,1051,2886,789,13,1745,2799,65,154,2295,2911,2896,960,432,110,2304,832,189,827,1334,1110,1702,2404,2826,1915,2469,694,544,177,565,1948,2436,1933,913,1293,141,1488,629,1060,766,1559,2031,2634,103,1621,738,1357,2345,2421,1887,1729,90,1736,1272,1000,167,2111,2724,2007,2224,2004,491,1190,1202,1457,2485,2709,18,2296,1027,1058,797,1410,2948,457,1236,1165,878,1274,1885,2872,323,1654,682,1602,2314,1629,1616,2911,1728,2815,1916,1136,2026,587,1680,1837,1947,1106,2834,1586,2237,184,982,1144,135,2623,2577,57,2239,1679,879,2295,761,1656,924,1782,2959,2095,1093,1389,2042,1088,996,1576,1011,833,1737,1635,2203,202,1716,682,1044,641,1846,905,2218,1501,1000,1359,1983,12,831,1849,1798,2068,570,1873,2758,2082,2715,2648,430,457,1660,518,1106,1683,2640,1128,955,586,2108,916,726,553,50,649,2078,2896,1898,2575,798,1232,1179,1030,2808,1200,2735,1353,1905,727,2576,1436,1284,842,913,2016,2304,103,2976,2826,2700,2711,40,613,2106,1104,1349,2350,602,1389,508,1929,2646,2134,2487,1355,1130,2039,607,2649,547,2207,2291,2263,657,625,1666,1629,267,1250,2560,627,2272,2804,1802,2445,2189,1151,742,253,2189,2689,852,273,1443,1907,2315,875,1090,2803,2470,1635,1349,1416,1193,2400,2206,302,2540,2555,331,274,531,2496,2716,1186,766,1972,1811,2837,2818,2095,2099,1603,2325,2443,2990,928,1430,1550,2633,2996,2933,2288,2951,1414,1855,1332,86,1020,1064,1983,2770,78,2247,952,1026,1321,1392,1876,111,2935,1233,280,916,2339,2404,927,217,1337,105,2884,325,2117,2710,2647,2573,1853,246,2152,2772,554,1889,2602,2852,421,1504,1270,1518,571,1632,1025,2405,181,1652,745,1669,100,2065,2469,2136,683,2230,1399,977,2777,276,35,2674,1408,1613,1195,1168,2754,42,1569,2436,1343,1381,1117,1030,1030,2695,171,1744,970,1590,340,1013,2472,984,189,25,1985,1825,1212,737,2832,2257,1500,2031,1314,1047,60,1561,2039,2285,2587,2478,1420,2749,2970,803,1484,2141,1272,2227,331,1927,1921,1400,2786,2541,2459,24,1598,1906,1415,602,2065,1201,234,127,142,2687,353,835,259,2673,2624,254,236,1204,2835,1605,779,1703,2524,1076,745,1183,1525,922,450,2539,326,805,912,2659,2121,631,1801,774,1799,1556,1510,333,1206,2871,722,210,1874,1137,2885,2378,823,2659,2132,1391,2701,115,2542,2503,2057,1644,734,2321,781,128,76,936,1530,739,2500,1897,2466,2319,2117,263,2425,2919,1446,2901,2784,2039,859,2606,831,2811,756,2438,2735,928,2069,1185,205,2616,1101,74,619,1246,2446,2941,2547,194,973,2934,1320,1624,1975,503,86,529,2747,1455,183,459,1442,255,2470,322,1922,177,2415,2177,1331,511,1445,1789,296,1422,668,1543,2325,397,456,759,1376,85,1368,1376,1261,681,64,1468,1539,923,2011,2851,2433,827,1198,748,699,66,1037,2490,2278,283,2953,1766,492,2150,621,2706,807,1278,921,201,453,1683,1480,2430,2186,1540,44,1053,2295,2586,549,812,1936,2964,1136,2179,1119,641,1604,1140,646,765,422,2654,2170,2779,2130,1827,2464,690,408,7,726,1133,423,1068,979,699,660,313,981,2048,253,1849,2203,2290,2913,1153,341,1579,1771,628,2579,1158,1159,2702,1078,2843,2654,2694,634,277,1642,2020,2258,549,112,2798,2222,2482,2830,2408,1672,379,2879,2557,1881,685,2019,2420,1793,2541,647,1626,2503,2690,2245,167,2103,208,475,2869,861,1211,705,147}

    {1780,2279,48,911,2938,775,600,1321,975,484,1045,1301,1781,1331,2548,1664,2451,1162,2782,1015,371,35,1092,490,2275,2756,2443,423,322,482,1412,2708,1123,2907,28,119,1071,2481,2827,2382,2303,1424,1617,735,2679,599,1422,1232,1913,2493,1804,691,1061,266,1919,2791,153,2889,2479,1515,2724,2383,498,1659,1989,2982,382,2496,1531,2466,836,1127,1177,1511,1667,1877,767,972,298,209,2605,1426,1582,953,1125,1257,59,2482,576,738,2972,1580,297,1521,2148,2117,2855,1556,2452,2410,856,1238,2191,2128,2136,1451,1980,1877,2136,2457,2029,1242,107,1842,2601,2957,2523,2899,269,126,1846,2381,549,925,2470,1460,2381,2325,2668,2148,1101,2076,2251,2707,1082,583,2605,657,2502,1888,65,2550,364,2845,2275,1399,1917,1221,1390,1536,2775,114,2937,783,538,520,163,446,1052,244,1030,1839,1529,2057,2903,2936,1360,2433,532,2404,103,344,504,824,2374,2229,2451,1552,17,1757,2559,684,2374,866,2940,1284,588,351,1312,1574,2580,2463,1260,1116,2002,22,2006,2744,830,1755,725,1359,2166,192,2510,934,2530,2608,2578,2393,2014,161,1571,337,1335,2654,831,283,1743,2122,861,2327,2774,70,220,37,318,338,1355,2571,2764,1377,2693,2503,925,531,2559,881,1771,2760,1457,963,967,2875,2460,1313,1210,481,2272,2586,2426,2509,2450,2053,1297,2896,1285,2961,1895,679,2439,1898,1048,2298,2046,2834,1755,1546,2140,2433,1123,2888,551,2454,522,179,281,2710,2331,2799,2623,2061,94,1315,983,898,2734,1920,101,2482,1010,2168,1577,1804,1498,180,589,150,2820,1746,1036,2453,73,313,1764,912,2715,2275,1831,2148,2047,1250,2074,501,1119,2440,1690,2524,2000,1253,2172,1536,2465,1284,441,2586,919,584,776,2999,2305,2856,2177,974,2526,2211,1888,2229,828,2266,2395,1268,1098,97,868,1897,1957,2306,635,2423,2049,2200,2945,1230,1193,214,2818,869,1592,1838,1025,11,2892,1797,2011,811,2188,966,652,2152,2665,1156,2793,335,2281,2675,2516,2150,16,1568,1808,1427,2098,1684,846,2814,2099,432,616,1628,1359,2625,2244,121,2854,2993,194,1048,2702,1457,2695,1603,1581,2858,2494,732,1072,171,2752,2073,2227,1812,1651,171,6,1422,435,389,2910,2871,680,2349,1398,766,2136,1720,2696,2819,1364,436,1745,2703,1663,2380,92,625,723,1163,1665,2933,242,2900,1230,2876,2497,1941,895,1414,2019,2316,702,1620,1839,2522,682,866,2960,2341,1506,856,792,108,1025,1869,2584,2255,1457,1763,1065,2515,744,2297,1223,721,1065,1670,2965,1527,1565,2668,1735,1026,792,142,486,1748,1792,2631,1682,2660,1326,1655,2075,2381,2966,822,2744,2381,2629,999,2099,2793,1934,97,801,1734,761,1773,2607,405,896,2791,2952,714,70,460,2647,473,2036,931,2227,279,1514,1503,2470,530,2688,1411,1668,2286,2275,2948,1119,2020,2605,2377,125,2621,2768,1083,906,2800,1386,2994,2693,1855,1986,2212,285,2204,1010,1786,2553,2576,78,1299,380,581,2623,415,103,43,2655,888,2406,2270,2635,1042,55,1007,851,1209,2763,946,682,2161,2278,1401,2828,1386,1123,1949,2515,1653,2748,1765,2648,2969,2276,2601,2306,2848,2105,2483,2066,1970,1226,281,2101,2708,1998,2224,2733,2682,235,2382,29,1746,1834,98,2785,2973,1594,143,2898,2422,2727,52,2426,486,1469,1387,1290,598,2397,601,454,2869,2719,1837,2185,1099,1639,2536,1678,2381,2010,1527,2902,2454,2827,973,1700,656,485,2738,14,1754,1016,97,199,2651,618,1259,2078,1866,2137,2416,1885,994,59,2696,890,1572,1790,975,2734,1148,2308,2816,2320,1256,363,2605,2439,985,2124,2294,1823,1848,698,1345,39,1438,1209,2504,259,2888,241,2969,1793,213,2439,1106,1421,2355,1147,47,1139,1033,2420,2608,809,2260,1322,1453,1938,1539,984,677,2525,164,103,797,1279,1492,2597,2729,2095,1628,2880,2275,2373,2613,1782,1426,1305,782,1456,2147,2284,2183,1369,250,2347,1475,244,470,1281,426,2704,2069,2113,620,2791,2248,2991,2983,2707,1633,248,617,79,2275,226,2969,456,2413,1422,2025,362,1986,2491,2986,940,2244,501,1253,2748,1087,900,676,1035,1062,1564,2721,2223,2737,46,286,1585,776,185,1116,580,2265,160,1885,2960,2438,1394,52,1106,2218,1043,1605,2348,2069,865,2110,2974,309,1125,1135,2182,930,1174,811,2808,579,504,2967,1625,226,1741,460,2220,1990,2672,722,1993,2347,1323,1103,329,1234,2008,872,1402,222,757,800,1797,1463,2403,1951,216,244,2565,1052,121,612,2341,2118,2405,2633,291,2094,989,261,23,2589,1641,1398,2832,175,774,2604,1699,123,603,167,2222,2060,2101,2660,823,1416,1843,2979,1454,2514,777,355,1879,2406,2425,2706,280,2503,2141,1251,1272,1119,1949,2857,1933,880,2702,1378,1127,899,734,1645,2051,154,2891,475,553,1282,166,1244,830,1036,1629,2329,2330,1962,2882,2057,1734,2278,131,1752,2791,609,1596,2313,1724,1087,978,631,2766,1122,1705,2563,945,527,2237,0,1540,1680,1496,751,672,2860,1878,2169,2920,827,2440,1460,2454,2998,1789,2164,958,2451,2126,926,2325,2068,928,2358,1548,2705,1184,463,2730,709,2034,1707,104,1323,641,543,2663,1127,360,2296,1134,276,916,2648,2812,1465,2283,2950,700,871,2833,1371,1276,1125,525,1395,130,1479,670,606,1999,1580,564,1091,536,655,1504,146,2653,1340,2699,739,765,567,424,1507,459,973,636,2502,2908,570,1075,2553,2410,2861,457,2404,2264,2970,2200,313,596,1115,2830,2066,1278,1869,483,902,153,44,1270,1647,1555,367,1445,21,2808,1588,1008,2761,542,2894,840,2605,1337,588,2787,1014,527,1542,2388,681,2306,1056,853,1160,321,1902,1207,619,2377,2057,1462,2326,1893,2652,2134,1520,210,2999,2862,1005,2146,1677,2302,2748,2489,555,981,141,2558,1170,2615,2837,278,779,2449,1533,1777,2413,2056,37,1056,1766,579,2742,29,2923,2417,535,2927,303,2676,1886,38,1100,2958,2275,2399,2671,1480,1163,1878,344,1125,2413,768,1242,1838,2263,476,1598,1221,1999,2470,413,2754,2555,2662,2900,2930,2813,1305,1890,296,712,295,904,1774,2286,321,1918,305,2850,1892,1642,540,920,280,2247,862,1476,836,1395,2554,2565,1147,513,942,1172,2142,292,2808,2215,934,2919,874,2621,2427,1448,28,1754,2945,167,1193,1317,729,264,1187,127,1047,521,1670,1061,2695,65,497,2339,32,1327,2695,1213,684,381,2349,2323,2208,2144,1763,1693,2281,1643,2441,2012,861,1217,2818,240,2781,878,1591,2698,1270,1752,2286,1106,124,699,1602,1505,1332,433,1051,1751,197,312,204,222,2872,1406,1089,1955,1596,522,338,774,2403,2703,887,923,1807,1125,2718,2233,1734,2154,701,359,1309,941,2878,2623,2311,1483,586,2783,847,1904,2823,2520,2205,2481,2722,2025,2440,2085,604,1419,2498,580,2674,816,2797,534,607,2548,1862,2076,1845,548,2930,1065,1556,969,2930,2497,2204,2111,815,210,1935,2760,41,2856,288,1269,1013,1038,120,2166,416,2344,1109,2665,1534,1806,356,2937,1409,2866,1597,1320,1422,2432,632,1039,2635,653,516,2282,1093,921,1783,1673,1666,1291,626,2929,606,1822,2343,622,2199,1564,1190,2294,2073,2519,2645,2282,751,1814,1261,1742,2912,2851,1988,2089,999,2547,516,2289,2666,2349,517,2259,2946,2527,2952,2939,2158,1585,1428,878,533,526,2676,25,2032,371,1976,346,1882,2874,288,379,514,9,2392,2860,1283,590,2586,605,1060,1538,2773,1030,2006,695,101,1689,1132,1895,588,1125,1230,1542,441,2830,1478,2790,610,716,144,1543,2393,915,714,1778,1067,1812,2124,198,1907,2983,2102,334,1561,1073,2005,767,647,1465,129,1667,2492,2171,848,1457,2386,2818,1095,1491,2088,884,1795,497,445,595,1141,1934,2749,1807,1383,1018,133,503,2131,2228,1544,1186,1928,1131,508,1474,1679,2954,2319,1897,1569,477,973,491,1562,2221,219,1602,1769,2017,2013,2223,710,1942,2092,1669,210,1474,569,25,1679,1300,1775,2315,124,833,2563,542,281,690,2472,1753,2633,1258,39,2471,181,2397,834,1762,1096,1415,1235,2381,274,210,835,1106,1449,1406,2403,2256,1192,2116,2927,2118,1701,987,2592,2135,666,1182,1013,1000,2062,2210,2105,2145,2911,902,45,2810,2695,69,1712,1849,1030,216,2379,2684,2842,1320,167,1005,2684,1949,2048,1955,565,2990,262,821,1639,41,1678,911,2127,19,1835,2971,2275,964,2534,1888,2888,983,902,118,1508,2806,155,1906,767,195,1498,1056,1289,39,1636,849,2069,2599,1800,304,1162,1320,509,564,491,1142,121,672,2400,841,1357,1659,2095,2500,1023,1076,2567,332,1976,1182,866,1690,1752,1172,2739,1439,984,2203,1128,448,2292,407,1628,1668,2621,2833,1910,401,62,2363,2286,520,411,1017,686,2381,254,2924,2069,2158,170,2755,173,348,2572,2551,62,1199,1342,1830,2421,111,1968,2593,2000,523,2277,2018,1253,2963,167,1204,2424,1373,1030,1018,2621,28,2040,702,2418,414,259,643,1370,981,2351,2203,2428,1,2791,1565,223,2355,984,1772,2844,2225,109,2655,2167,1594,2956,1688,2397,1275,2158,2563,1497,2231,2945,682,955,984,421,689,1407,2581,393,1454,763,1284,296,2750,912,2323,53,2156,1124,2911,2692,818,269,711,2434,2427,2583,1808,909,2030,2691,1337,1406,2805,706,84,912,2077,2704,1912,835,1553,1595,524,2296,253,2585,2259,2461,1330,2795,465,2005,1958,99,1057,2409,623,467,306,2955,2849,1598,2590,808,898,2502,101,169,829,1858,1522,2706,237,678,1567,2394,212,2626,2761,1120,1937,425,2621,1090,290,102,2255,823,2841,1384,1574,904,487,914,1300,2665,2203,1965,2133,878,711,2243,2442,819,2754,1788,2212,2280,2681,1271,197,1355,302,951,452,1931,892,2926,2517,1098,2283,740,2416,570,29,2399,1783,1136,1013,813,1489,1167,722,2487,981,1997,1084,357,1184,1444,1908,706,767,11,2926,380,1852,1687,1898,1530,2316,553,2695,1649,654,1514,1143,890,1694,2817,2884,1385,54,149,1809,1030,1483,2399,2073,520,2820,2136,244,1507,1482,2387,1528,2318,1121,2684,1552,221,1607,736,2837,1708,2109,1158,731,871,491,2249,2466,697,1671,1419,2702,428,1125,1557,1656,1567,1851,88,1868,2675,2560,1447,2580,1526,2384,1888,1404,2143,2878,807,2824,1039,2889,2603,844,2465,1384,2002,1784,1934,2239,2905,611,106,909,2092,1967,2793,62,1401,2199,268,779,843,1418,2714,2940,2495,316,2722,1794,2122,2900,489,562,602,424,403,839,2829,2758,2138,37,2497,629,373,883,2968,842,1757,488,2654,672,2738,1861,2907,156,1549,2031,10,1131,111,419,817,2253,186,1358,1292,2691,310,652,2368,375,2378,2161,960,1160,311,1514,121,2444,2717,1355,2567,2542,878,2118,1585,2776,2661,1228,516,194,1442,2329,865,2808,2042,860,536,317,1333,257,2533,409,91,2668,129,389,42,2927,2253,1114,1369,997,2165,133,1666,1439,2860,1029,860,2479,1670,2486,2902,1963,791,1817,2912,866,2164,737,2921,2255,483,423,148,1182,2906,188,1255,1894,2573,721,1807,2447,1066,864,396,1298,1286,499,758,2069,2936,1304,2252,441,2258,1342,2492,1155,70,1769,1528,2750,2105,2724,515,192,2028,1526,2657,1237,1722,1157,1545,935,1731,2741,2190,1676,688,2790,1123,2065,1190,1561,1828,1541,2925,838,1850,1883,912,1424,320,1589,2391,1034,2505,1355,1997,2447,2670,455,1030,472,1055,131,1655,1954,2689,2254,701,2319,1311,1143,11,522,1307,703,2608,1198,1366,1283,159,2009,1819,2658,1884,2735,1549,855,2100,1884,1320,451,304,1099,2611,570,989,2087,1013,1685,1556,487,1682,1560,1608,173,985,1119,984,1054,862,2045,1719,1473,1393,1979,2241,1986,452,1341,365,2764,1344,2995,1079,2232,2915,2833,1284,1551,2436,2067,2110,299,674,2792,1268,1576,889,2513,1118,81,1495,1585,1131,1671,2676,1779,2545,2057,1637,2171,1690,2270,252,494,2361,1304,167,1372,316,542,1349,2582,1704,2811,2746,2733,1558,1591,535,2743,2360,661,1328,2861,573,1440,2431,1543,1856,2309,232,315,1220,1355,2822,1175,1358,652,1310,2359,1477,376,2169,2440,2288,330,2992,2063,669,633,472,21,1687,1189,2420,1351,387,2855,26,1093,2702,1724,690,1263,550,1432,195,639,2636,2904,2079,991,2059,2510,2524,2693,1804,2356,2151,791,1078,818,144,25,1678,209,73,2809,2632,421,641,1790,907,825,325,2323,314,644,151,479,2538,1227,276,492,629,2695,704,2489,2990,216,1262,1169,2753,1116,2702,2073,2914,1422,2804,988,1633,1130,1406,1725,666,492,2933,2728,499,211,1215,1669,2953,108,354,1180,431,1413,1872,2278,786,2681,177,1379,1422,140,440,2508,2081,983,2000,1618,215,196,251,647,1896,462,214,1860,1405,2492,692,1924,2861,1015,584,1125,1570,1296,328,1630,143,952,301,187,2150,1418,2208,923,2354,340,480,1041,1406,878,1106,464,1742,2027,2611,1123,1986,2470,1642,133,1934,2893,1385,1083,2004,1273,2070,1758,1625,344,1736,168,2371,2492,384,1623,2340,1688,2611,1422,1398,2003,1945,1865,180,324,1916,2624,2270,1553,980,843,1605,2855,2205,2682,37,1654,1838,2953,682,2613,1490,1367,811,1721,2813,1928,812,437,552,1448,2628,2382,2275,2631,698,662,598,2092,2631,1934,1582,814,1882,2328,711,2203,441,562,239,476,599,2528,1471,2288,2332,594,2149,2669,1136,1852,133,192,1488,2801,1860,1104,2760,826,1116,2091,629,2771,878,2994,208,2286,2068,1529,558,1790,1009,197,2544,1602,2736,582,2492,1274,2949,784,160,2161,2549,787,1150,734,1552,2559,426,1398,1187,1406,2195,752,1197,2354,836,685,1193,624,2333,2936,1481,2399,373,2380,82,1415,1864,181,2309,796,2258,1584,703,789,2708,2112,2436,1771,968,2820,2704,56,2312,1656,153,2936,657,2996,1466,2203,1542,1718,2598,1384,2201,2800,732,172,1625,2034,1638,2895,659,1107,961,2969,859,511,1320,1982,2887,939,2595,2456,1544,1760,690,1344,1629,738,519,1567,1895,70,451,1025,1995,2484,1318,729,523,319,2173,474,1050,2172,2603,877,1227,546,2404,1245,2458,2789,2286,2220,1930,2365,147,1656,904,800,2673,1763,575,943,181,2917,536,629,2521,1102,2207,665,737,2840,173,466,231,2373,2704,2146,1124,339,385,1366,2128,2833,33,1920,1047,1617,2140,1323,103,1030,1502,2566,797,2192,2985,1115,1496,254,2507,1952,296,1484,2601,1220,1452,2476,275,504,2088,1221,2084,1063,2139,1716,634,2158,1054,1871,2413,1154,653,2307,2845,23,1002,1658,2244,796,2058,1712,871,1654,1551,2956,1081,2433,374,913,77,2709,1934,1666,553,2197,1176,2675,2137,410,2689,1883,16,789,2950,2474,1034,300,1959,1121,158,2420,2322,420,697,1979,971,2931,991,2088,2682,1323,462,2858,1736,956,27,308,1011,2179,2213,2991,2326,1712,1107,989,2741,1724,1815,380,467,1839,1838,1076,395,118,2704,89,989,1067,179,2522,1685,2011,2707,149,395,2715,1320,701,2858,1205,783,168,1776,404,2503,1732,2873,494,842,1835,656,1540,1245,135,2497,1780,818,932,1687,167,1051,26,561,1720,1554,2788,1977,2762,725,2065,2831,820,1331,1161,519,2730,2778,433,765,526,2806,1229,2212,28,2653,2184,524,2860,2871,867,371,2560,1629,2224,1989,1224,1379,2200,2570,2143,41,405,2867,1402,164,1932,2605,875,2273,2679,997,1863,2564,559,95,2598,2261,1589,2035,1582,1510,67,300,2844,2226,389,639,1487,667,1417,1141,2562,2326,2918,2972,1784,991,935,2283,1750,1108,2579,2381,2155,1075,1723,1950,2093,826,2824,718,160,1004,886,1539,1639,1320,1030,31,1342,845,2247,2218,742,2829,2394,908,1416,887,2158,2885,902,818,1783,1053,405,827,165,614,2557,2857,210,365,2509,1251,2577,1068,3,621,1878,227,821,1763,223,1032,831,658,1877,2523,933,1818,2654,432,1974,2654,1141,1493,2288,2781,2037,2866,290,1626,1668,582,1643,890,2038,2751,560,2483,2731,1270,2503,720,2175,2678,2457,1472,1100,2821,2261,2456,2977,368,2561,2987,2221,149,1277,2252,2405,2707,885,1287,766,718,1796,2315,2337,1742}

    2819

    1314

    Returns: 374580544

  99. {2946,1732,2234,1107,2425,2815,1212,685,632,2458,980,1350,1605,785,185,753,2280,2692,214,894,2015,2384,345,1540,1709,313,1616,1089,850,543,1083,134,1007,758,1538,530,939,1404,276,637,53,1931,2640,1911,206,1912,1766,1712,6,643,404,41,1180,2444,944,2890,1543,2778,909,1764,2049,525,1469,1919,1710,227,1908,2403,627,1410,283,1349,2490,1335,2420,2433,2018,1409,1517,1786,269,1625,1442,1795,2112,1051,2991,1770,805,1100,1607,393,2219,2168,1300,1109,973,2264,192,2211,1294,1903,2141,80,274,1686,1631,337,940,1501,1964,314,1746,2121,268,1870,195,2305,270,2687,1611,1729,52,2105,1957,466,2527,1703,602,2984,756,2015,192,2471,2360,2948,1066,2702,2908,1072,2115,1035,1357,1087,495,503,878,2679,1389,2026,2965,1521,298,1303,1987,2187,1753,906,451,127,2952,2394,1646,1709,2942,2,2190,1661,2872,1921,2493,931,1457,1279,616,2708,502,1275,809,2147,2368,1766,4,1977,2952,2963,1036,535,198,814,2410,1772,1371,2608,2036,646,1760,2330,1968,1811,880,276,711,2678,2815,2117,1201,988,2675,521,1339,180,1136,1997,1101,98,1171,502,880,1314,2084,382,575,517,2732,2403,2469,460,1264,2988,2217,2583,2908,1374,343,2295,1231,2798,110,1026,1870,859,2510,2374,1035,1105,2881,2423,1947,838,2962,1622,2094,1318,2784,2194,1305,2540,387,2264,756,801,518,707,2911,2822,1130,1431,1506,743,2703,1116,1768,2441,2545,2058,204,409,2688,1886,943,2841,151,2707,1967,735,1278,2931,2833,2912,1318,2039,2427,1605,1110,1082,346,2970,304,2394,1054,1401,712,342,2818,2938,2934,1097,2777,2055,2694,1052,1448,1426,1734,988,945,760,2150,2129,1757,487,499,190,2405,1745,1017,537,945,2440,1071,1040,672,1367,121,1440,2183,273,2343,868,2321,2848,1263,1347,2963,2532,798,2231,426,1703,644,1703,387,1152,268,1000,358,1344,2250,1169,2920,2134,264,1928,2704,1132,2331,2941,1270,1765,886,2613,973,1729,2870,2002,339,104,1924,1459,2416,2414,2777,118,1484,1554,2705,2902,2554,2655,1752,1187,583,744,2745,1914,18,2857,2383,2252,591,1622,1312,1428,1894,2731,2680,2867,1421,624,423,1329,2670,612,478,2781,1169,2561,963,2842,1381,1245,702,1793,2155,1337,1162,461,1833,2319,599,350,728,996,1016,1347,2126,198,757,2883,2972,309,1645,1995,2479,1159,2248,1697,295,2454,2621,1992,1920,83,2703,1584,286,990,2048,1842,1744,2053,983,2230,2252,2084,2520,64,1411,1948,497,2366,2418,2058,202,2205,1650,1842,1398,126,1112,835,1043,1593,2497,324,2832,999,258,318,2628,2658,2033,2204,278,409,1964,1050,721,1449,509,804,473,2241,1331,946,2800,1596,410,1513,2171,1427,563,2062,915,2991,2404,1359,630,2327,2170,2646,2114,1418,1247,1907,614,901,1638,1513,256,2542,1294,2459,281,295,1637,1843,1325,493,2310,1884,914,809,2799,1175,1944,2851,2974,622,246,968,246,1076,165,2717,1119,1708,692,1965,395,2512,2808,2381,456,1200,214,1280,1566,1524,310,1155,2672,14,2831,2704,908,7,1144,2429,783,1643,1082,208,1121,1139,807,267,2353,2272,710,787,424,642,2725,1237,637,1080,1904,2956,1971,2233,2222,2110,1050,594,1638,1534,304,312,317,134,2681,128,2441,2008,2651,1603,1055,1372,1631,2879,2507,143,750,2209,2776,937,742,1636,2443,1517,421,2764,349,2778,2488,1194,2943,2095,1850,103,2306,999,430,579,752,469,289,2290,372,455,641,2309,2877,1269,1217,2979,725,870,490,1544,1208,1327,2926,2561,522,2416,1588,2329,1766,1758,2910,211,1526,707,448,2967,354,2507,2419,1092,1542,2348,2735,1576,2502,1865,350,2215,476,1049,1540,2949,756,1996,1642,914,2368,223,1817,426,1855,4,1125,2192,327,652,2978,300,2201,586,1179,2433,177,923,2572,971,1610,288,1068,2857,216,2281,632,1195,84,1728,1242,1300,104,1021,433,2928,2297,2900,1248,2891,530,1068,122,1032,1120,20,1737,56,2166,2678,90,1421,2135,1825,982,27,2592,162,1155,914,1477,2786,1119,2756,1015,107,120,2821,866,1662,836,855,319,2666,2850,2349,2894,1510,2197,481,53,2391,135,201,1482,997,2694,973,910,138,707,363,2694,815,805,1712,2175,2734,797,2815,2456,2882,2294,635,2679,1356,2480,445,1208,496,2450,1356,2094,2858,797,2819,879,465,1863,862,2233,1558,2901,1796,2400,1954,2569,2709,1087,747,2202,2301,911,2240,45,540,2368,1870,2604,1727,186,1734,816,1910,100,1480,1093,1589,2223,695,982,2298,935,1778,2574,1984,470,463,1594,2311,1768,466,727,2311,1220,2078,432,2352,265,1704,352,2238,1731,1069,2530,561,1049,1230,1736,674,1285,2920,606,2135,768,1909,210,1234,1605,2458,1395,1676,2924,2768,1908,1791,41,2721,1859,1456,5,2299,499,304,408,1368,486,395,2624,2338,2786,1388,2319,1367,792,1461,102,934,2953,1291,416,741,734,1171,51,1050,401,467,192,2252,2136,2582,2126,2657,1397,366,1959,200,2907,1780,2762,387,672,2673,2204,2072,571,1560,566,32,1819,2072,706,820,373,2467,1502,1131,683,427,598,2053,165,37,1721,1567,1740,986,1403,680,2087,688,2769,2343,2032,757,2077,2398,982,1288,1410,2143,2412,2338,814,2618,2785,2005,1932,928,2849,708,115,2890,2081,402,256,898,99,1605,801,2629,947,808,2788,837,1891,1156,212,1677,2455,493,2191,692,1436,2059,1184,2348,2434,1068,816,1635,2302,1118,577,1825,113,504,1692,2875,613,2796,971,2905,2895,2728,715,1897,1517,921,1277,2445,2526,344,884,1858,2663,1346,1190,2847,2140,2737,1490,1023,43,2310,2679,1780,437,418,2416,1521,1329,950,131,1415,520,2144,1950,17,2383,1981,1749,1856,169,417,2758,771,199,678,1552,1315,60,1865,2531,1318,975,2412,1526,1082,2338,916,71,2346,591,1689,2827,595,1889,1427,2890,501,1735,1411,2560,2204,921,2153,71,1375,1123,1751,2383,1478,1860,1897,2921,159,1148,2703,645,2044,1792,1020,1745,305,1691,1395,469,284,2735,217,683,1181,374,1521,1628,855,727,1496,98,175,2701,343,308,560,2154,999,2258,1212,1495,228,1332,2662,2662,1922,7,847,1110,1437,1473,981,1026,1449,811,598,2775,2419,292,600,1870,1631,456,1477,1929,503,1830,1268,1909,1826,678,2242,27,2795,2646,883,2133,1050,1902,283,1834,2301,2237,1176,1913,1758,1544,1795,1844,2179,522,1252,1142,35,1781,572,1679,2655,633,2024,2084,2736,1077,2580,2909,775,1233,1658,1175,1086,357,22,2826,2967,48,636,873,1720,1819,2689,1022,1869,2476,2383,315,2322,251,1180,791,189,512,2459,350,2098,2062,1320,2428,51,896,1013,1443,2358,785,1319,1027,1849,1139,973,806,346,1613,559,1050,2127,1446,18,2432,1566,2144,1774,994,2725,1056,393,636,1905,1065,829,1055,984,515,1197,2287,1409,1874,461,724,711,953,2712,2504,2986,1327,2432,2988,1733,2963,2952,2559,1946,2487,84,979,1303,2145,258,2587,637,2770,1420,1718,2311,2719,504,1526,713,2236,1890,895,2528,708,2258,1938,638,1158,414,682,1074,2013,2679,2154,918,664,1425,383,37,46,2012,1092,2343,2092,2374,1555,1998,1644,2076,2200,2492,597,2639,721,2382,1561,404,2779,1084,2966,262,693,688,755,2574,1641,1660,1966,189,2966,594,2725,1789,2104,1485,2732,2989,477,2921,2359,415,626,547,2087,2199,274,2094,2717,1834,322,1373,339,607,86,2932,2833,125,1711,2508,117,2418,249,2485,2746,2107,1676,1835,973,1433,688,2037,1315,1098,1290,999,2197,1213,951,1822,1349,698,2947,538,1546,2493,503,2384,1177,145,210,541,2380,44,2917,2616,2340,398,1383,1339,1275,1747,616,2544,2976,303,2030,821,1332,2060,1241,1759,2713,2266,1422,530,1288,2260,2065,944,2607,2493,1671,1403,1696,1844,1762,2725,1520,1334,941,1919,875,1550,1055,1903,2417,1590,885,1985,926,1239,1119,839,2746,68,2249,1315,1636,2568,1657,932,2528,618,2494,1804,2869,127,493,2925,788,2394,2616,566,1292,575,1693,1398,1168,438,2934,790,2610,1537,701,2087,1926,543,2260,267,172,764,2794,585,721,1550,1166,904,610,2053,1639,65,1854,2490,2512,25,2253,63,1489,870,2119,880,65,406,225,1569,429,1917,1202,1096,1750,985,907,1626,1616,1071,1238,829,1069,2873,1025,1106,397,2124,524,2247,1713,2740,720,2978,471,471,2831,2236,89,1640,2098,1290,2952,2392,230,1808,379,2413,1082,2186,2859,1719,1148,1887,1657,2073,1742,786,1388,13,472,2733,2496,2755,258,2798,2988,62,1488,2047,982,1631,6,1962,502,2723,1425,2456,800,572,2498,2143,748,2592,649,2731,1064,2229,1543,2108,2278,237,2750,214,2029,1547,2883,474,1125,1781,2993,1050,1820,2194,2256,2988,1654,2320,1379,1082,770,2065,1007,1475,1523,1570,536,85,1051,2200,1831,300,2011,2784,2342,1259,2836,1406,2918,2631,2496,128,2615,1015,2714,1324,2698,2401,1019,2272,903,2296,981,371,702,1168,2568,1492,1336,2280,420,1540,273,1302,1438,1312,1628,2508,750,2837,1377,484,718,2046,271,1331,1943,2465,2059,1542,1915,573,1206,2857,1700,1839,2002,1789,1959,2867,829,1586,295,2138,2580,257,585,2451,1866,2128,1981,1790,2440,969,1642,1050,2439,2857,719,108,220,1717,667,1069,2608,1256,1076,178,99,557,1795,2992,913,2224,1060,1709,544,1673,747,1174,2936,123,1506,1865,206,1885,1898,378,1278,2946,1380,2819,1267,775,2572,765,1762,2212,307,1288,2907,779,540,1559,2428,1252,2280,311,1377,2556,1428,658,1990,1829,779,1626,98,2052,2502,1574,360,856,2129,2995,651,236,2630,397,1905,94,1046,9,1348,1037,475,2328,563,1190,281,1261,999,1623,2992,752,2386,811,1347,384,1608,522,2876,1102,1974,2300,2583,1069,1570,2333,2141,2112,587,1716,1330,347,2541,774,55,6,2251,804,849,370,2513,890,1338,2359,2299,1228,412,2761,2086,2916,266,743,2735,1703,766,257,402,461,174,2859,494,188,2862,2151,670,2681,2644,2760,240,1021,1357,499,1231,1601,705,1415,333,1079,1515,344,452,260,588,2866,1640,1214,1474,2735,1632,709,1945,1001,249,2316,143,2061,111,2536,1563,2091,1878,1828,1723,2910,2619,2103,2332,2926,2622,2067,2658,1756,1693,1007,297,1146,2840,2208,1172,2356,877,1636,2819,857,1099,1872,737,1090,214,773,493,1598,861,2986,1935,1181,870,1609,2660,2758,2210,479,248,2071,1032,2547,2940,137,2123,520,735,758,616,835,1339,390,958,1016,2590,1622,1540,1425,2384,2824,1405,915,340,2085,2069,274,2648,1601,2683,2233,1289,313,557,1542,513,1246,631,2108,2010,492,2360,954,731,2060,2533,2930,826,389,1638,2645,1925,2186,482,1903,2997,1336,2846,1333,1785,1186,483,1364,151,2081,2197,1386,44,1779,2051,2907,832,2829,1475,1173,25,745,302,1384,747,772,278,954,2197,1789,668,2790,2200,528,1496,80,2816,1909,2180,2937,1850,726,899,821,1769,2569,2325,467,1432,781,863,2850,602,2998,2396,529,1022,422,885,2449,655,817,2944,464,1882,650,1091,1572,2091,1077,900,2271,2834,1240,2250,1425,2974,386,137,2971,1855,2255,1323,2749,802,2190,1631,2256,1877,1689,756,378,2857,2448,73,2882,50,218,2160,53,107,2855,959,214,985,2906,210,1395,1361,2900,1681,2181,973,396,382,85,2088,2609,2946,313,1169,2518,2929,1788,2062,1515,1982,151,1291,1678,238,1529,2590,102,789,397,239,1210,57,2803,2643,334,766,1685,874,614,1836,1216,2964,2717,2000,811,1824,368,2386,1559,1656,1195,2937,694,1011,980,1000,1006,927,2008,1619,157,2934,1683,620,691,2307,1973,353,2159,1846,2996,683,169,1463,2315,2472,1687,194,2515,2091,1377,2573,822,500,2754,23,2348,489,2591,2790,102,1081,1640,1050,577,2601,1850,114,2090,2273,1940,2988,2706,2578,2216,2442,2953,623,224,2754,2903,2641,609,1837,1695,793,1554,478,454,2116,2405,1008,1847,2377,1673,1178,1340,2406,1249,167,2955,1578,1496,2600,1737,479,957,439,1545,2343,568,358,52,1557,2267,2893,2010,129,736,1172,779,2558,1030,2459,1918,2526,1220,784,1895,483,363,1483,2283,1805,873,2615,104,304,2751,127,940,379,2229,1701,28,449,961,139,1090,42,2257,25,492,2157,1047,288,426,686,1907,2197,61,67,2418,55,2846,2373,1367,1977,1895,2590,2126,1499,2433,2828,1548,249,771,393,2534,449,74,1011,1098,1631,859,402,463,621,1010,2797,2142,616,1205,1779,2766,2106,8,2128,2449,2839,1047,2982,1397,761,1768,495,1232,2973,2246,1929,620,938,448,808,769,685,68,2206,3,2510,1151,1103,2097,845,1585,828,467,536,1703,1837,1818,1577,983,2506,1342,1082,25,2727,1095,2945,2519,2287,644,2113,83,2469,2938,2482,827,608,1298,2613,115,981,1418,1993,164,216,66,2827,933,1114,2219,1983,2359,1056,441,1780,2152,1780,0,1256,1543,1391,313,1707,858,1787,2485,1806,2974,1257,2792,2362,2562,2125,2453,2034,568,173,1102,780,1535,2900,170,1239,1179,2247,444,2832,592,2756,2437,666,1347,2568,1198,558,2540,628,1225,634,2262,112,2505,682,1519,2043,1229,872,2080,1517,2468,124,1418,1879,2991,1147,1736,1821,1885,2045,38,1600,348,1203,2055,1909,109,2197,1236,959,1175,737,2646,2662,385,2812,1698,1630,339,6,958,1233,2572,1953,2802,1006,2659,272,2595,1973,1999,2017,58,2560,1611,2141,2588,2060,1016,1421,1280,697,1781,862,90,2719,1574,576,2027,54,2910,1243,942,2643,725,1604,1405,1696,400,2726,1761,2805,169,1157,2334,2919,50,1813,308,2449,2619,2319,1408,1528,1767,852,2975,1889,2614,1676,2470,1831,1041,2100,1084,1276,568,705,127,2686,2197,313,2534,316,1417,2197,826,616,2700,1690,375,499,2857,214,1870,1923,1951,1094,1401,1532,72,2687,1044,1327,1877,888,903,743,1817,1003,2926,2814,464,2616,269,1945,1653,273,972,2112,2413,962,70,1796,2463,2637,2571,1181,2857,288,2920,1876,2510,1796,428,2221,1589,387,853,547,691,2720,1251,2125,2765,554,2215,9,989,1874,313,1794,2716,639,1466,382,570,1703,1115,2443,2585,2044,1576,1078,2132,2677,44,829,1705,2453,852,254,2880,535,611,485,707,794,1125,2043,1107,436,683,917,305,501,2654,993,2747,2676,1594,1801,2657,1875,2683,562,785,2250,503,291,1519,550,100,510,2750,1088,1900,2253,2172,1628,2021,878,2790,845,2185,293,1021,1777,1358,2920,691,147,825,829,2104,1221,733,977,813,1730,665,1218,2638,2714,2184,879,2193,510,1300,2158,2680,1370,722,1400,1019,2489,779,2223,1402,2542,1739,2176,2295,290,717,138,525,476,2764,1144,2682,192,1223,2987,2754,1471,982,2701,1659,1770,512,2517,126,821,2324,1141,1321,1856,254,563,2341,2927,2414,1550,2140,450,298,2535,1863,2854,2294,492,833,2845,33,805,2248,1400,500,887,1304,2698,1610,2957,2586,295,1168,1403,2272,224,814,1154,2669,502,2583,2,488,1262,1864,1330,1425,1955,2190,1131,2155,250,580,2815,443,543,2084,2978,1637,966,1343,245,1823,2430,2472,583,2169,104,702,1388,1501,1354,1508,2718,2061,1728,133,2974,2595,2234,2387,1048,1205,574,425,945,2662,930,2968,750,692,651,1377,2702,2351,1956,2311,623,307,1383,657,164,2242,96,2518,843,801,336,2774,824,38,370,2796,1418,1838,2015,666,1833,175,2461,2521,2861,349,2422,616,615,781,2055,2817,1012,355,56,921,2603,2104,1038,2570,277,344,2904,299,2690,87,2810,1095,1142,401,1347,1981,853,2254,2966,550,2461,246,227,2084,1980,1976,2376,2696,922,1615,1541,2367,1556,1526,104,2157,2806,662,859,1715,1795,2225,30,2739,1905,503,660,1204,1858,942,2643,1689,1348,1295,1658,518,1400,563,2883,1460,279,907,775,2178,18,203,604,1198,417,232,1628,550,871,2169,1770,2844,2899,2679,598,2901,2195,1317,2969,390,2955,2019,1983,1392,1811,195,689,462,1977,1981,2453,358,2312,1007,2680,877,378,361,395,99,1258,2344,2594,789,223,681,2129,2490,397}

    {140,1167,963,1400,814,2455,1943,847,1836,2524,161,833,1396,1954,1281,1885,71,501,2013,2527,1974,738,2863,2214,2417,407,839,2166,882,516,1142,2658,2222,1507,2490,2935,758,2266,222,1934,767,1606,1571,1341,1953,24,397,2132,2841,435,2984,2951,2952,1052,783,999,2868,414,391,548,260,2635,249,261,1742,593,1158,18,119,2684,198,1244,604,1535,2231,2587,2857,2342,1680,1556,2093,2908,845,1192,1439,49,1209,1944,1226,2515,2709,492,564,518,2923,2577,830,174,1795,144,2710,1517,967,2070,2296,1460,18,795,2989,2064,2164,1204,2233,1033,375,1002,1451,684,2319,640,2756,2940,276,430,162,940,2144,1562,2155,2416,2687,2596,949,2384,1724,1945,1262,2852,2715,330,518,838,1837,1207,374,619,2331,1047,1544,631,2578,296,160,2130,336,1276,2437,2452,2853,2201,1924,700,1350,311,920,1233,2150,1264,2060,2616,2739,2336,2885,1684,2359,437,1953,647,1278,1057,2438,1509,1601,204,742,314,488,2656,1617,2778,223,2660,2490,2272,2235,2905,749,1841,966,1319,956,2593,925,100,26,1650,1004,1568,701,2269,2188,421,126,844,2158,2906,1673,1308,1070,2348,897,2739,339,655,1297,1494,2563,772,2372,2392,568,1575,785,74,1870,2383,1189,905,1939,2693,1331,176,136,466,625,788,1815,2895,1154,1874,1085,2294,447,301,1108,236,1924,591,1299,1994,2555,1139,1091,1398,728,2576,1847,467,161,1418,935,32,1565,1010,582,1461,539,315,1328,786,2767,2895,274,1412,1642,1959,756,2587,611,2215,2631,1973,503,385,196,1181,1715,1826,2483,2189,351,2329,1683,143,9,462,2147,2950,2020,1729,93,2219,1043,337,2402,773,495,1487,1725,1163,420,2951,350,657,756,1656,244,414,381,596,2989,214,1741,2509,1672,2084,2394,960,1564,1251,40,1640,1592,1050,812,2303,2280,418,2099,2780,2974,2441,1717,1462,70,1224,1814,160,981,1573,2533,753,1810,2789,2041,160,1237,2468,348,1297,1802,2108,1553,1129,1311,846,160,2074,1791,1583,1497,477,1398,439,2735,1824,2700,30,733,117,56,1490,1080,2104,1363,2637,2662,1082,1949,2122,2522,1393,2326,1318,2308,2152,2035,2729,1503,1411,340,47,880,413,148,328,1432,2169,2193,406,1709,2888,60,568,2567,2269,594,2671,964,1309,2255,779,932,1865,82,2795,1943,643,1691,777,1794,1406,2494,320,788,945,1533,761,1452,2112,2681,1224,236,2706,1677,1351,2575,1259,1006,545,1135,2504,146,2126,2631,1582,1065,2116,40,2364,1640,135,985,446,602,2608,1450,1393,1287,2652,2973,2884,2468,1827,786,318,648,2053,183,921,2932,2421,181,1878,1145,2484,2220,597,1300,2392,748,2021,2309,1058,1328,66,467,1973,2657,2575,1709,377,901,1143,706,1130,359,1134,2789,2355,2900,1975,1556,1291,2088,2409,622,1185,2196,2197,465,2426,1203,2254,2760,132,976,2522,2096,236,152,2642,2668,1997,2801,503,229,678,921,2235,1768,332,2082,2218,874,1823,589,1761,1881,227,1936,2292,2991,1341,1154,429,2405,2691,2740,266,2405,81,2916,15,2581,2431,2978,1525,2277,1323,2696,903,29,932,1690,2565,493,1699,741,661,1435,2729,1844,2159,397,349,2341,2329,136,2593,2007,2697,2791,1970,163,2228,1832,2198,1963,200,2843,1867,2191,1420,1652,1767,295,2362,1648,2462,1874,1945,706,2929,2238,2198,2185,2486,1563,345,660,2831,1125,1805,2795,980,1726,488,378,294,736,2706,729,1597,2370,2517,1158,2368,1635,1616,1677,1892,1584,1394,2669,2934,2785,2070,1855,256,1580,2589,155,36,235,924,2401,2788,1911,166,552,677,2376,2038,2449,676,2025,2988,2232,2831,1251,2162,1486,1339,466,531,2388,1195,2836,2953,1885,598,2376,205,1909,280,1246,1504,1959,458,2849,349,132,2285,2141,1599,2437,2775,224,2117,459,1621,462,756,127,2449,735,621,40,1082,914,757,2415,1371,2684,2647,2624,2799,1170,2792,891,2375,1602,833,2215,930,1355,1367,2872,1661,2655,528,2881,1052,2633,567,1906,2265,1153,1742,1579,1701,740,328,889,1434,2362,2649,1936,1277,2083,1958,1924,169,2197,1010,378,1645,2916,2601,1521,819,1800,45,1511,31,1855,1322,841,2684,1699,2758,415,453,735,1003,2583,2857,1,2547,813,1815,1571,2557,1710,2489,1282,1726,2634,1283,213,1171,1942,1127,1599,2419,2981,378,1318,2919,1230,2828,2724,2950,1407,1634,852,378,2822,183,179,1901,892,2515,1893,2551,267,870,2066,1630,1175,1045,2655,2865,273,1000,2456,2104,2243,1702,519,1574,2282,2456,2321,1576,1856,2572,2545,2623,2615,1171,2620,577,2457,1453,674,1669,370,2974,1941,1666,350,2054,2815,2320,311,408,815,326,298,2895,33,664,1530,2445,1142,1286,1454,84,2683,1081,1599,1095,2625,785,1930,550,16,282,706,1175,2756,2809,992,2540,883,1896,249,1616,2359,1135,2238,1730,1267,506,2146,1046,1850,253,2757,2239,1261,2590,1543,781,586,1200,2681,1118,490,1942,2506,1037,1104,964,1542,2954,41,2954,1613,2464,1313,1970,441,2004,523,2115,1833,71,2090,2052,2612,1399,2703,2007,2823,138,211,1542,331,1782,372,1085,1668,222,1841,1169,1601,141,2275,78,1410,1540,2003,2648,514,614,757,88,98,2838,2731,1425,1051,2220,188,150,1301,2811,2665,1517,40,1150,1468,325,283,1462,1075,440,1142,2161,974,1016,2424,1669,818,1849,835,1095,2874,1097,1183,2652,1394,1937,2429,723,2667,848,2433,804,2429,597,1169,14,2096,904,2016,441,2399,1326,1461,153,2165,612,2906,2246,688,555,495,2156,311,2281,567,26,1465,100,468,69,2233,1899,1680,325,981,1294,485,1989,1198,1117,332,61,1458,1613,2117,163,262,1378,4,2878,1033,779,278,2076,1673,684,1130,1473,1748,1816,2188,2200,1009,10,2977,2703,2108,2084,1878,526,1481,421,2129,549,1703,366,2985,2258,1303,717,1271,1098,2989,1439,1000,2959,2499,2094,204,1109,76,556,397,2748,1663,1345,1922,2900,577,223,2611,1238,408,145,626,309,928,1166,320,1310,124,18,1529,795,2102,2760,746,2510,75,1395,961,1624,2807,534,110,9,2819,288,2414,176,878,2268,2691,209,2371,2547,338,430,2840,1924,1188,2546,2648,1694,1122,2566,1628,514,467,2680,1327,320,1138,164,1327,604,2599,498,1761,1125,2856,1274,603,2111,2820,2841,192,461,2730,508,811,547,1089,1410,1517,2315,2611,2778,991,1852,2035,958,599,1691,19,1777,2028,487,1540,246,169,1051,403,504,806,345,332,1429,2736,2889,1776,1126,2988,2303,2244,1182,2699,1261,1401,1518,273,1024,2200,1750,376,1539,1880,1327,172,1128,2683,169,2130,975,1247,893,676,414,2245,639,160,2081,2914,491,1641,896,2825,214,2189,1596,1245,501,2740,329,541,369,2279,933,1520,881,367,1675,1232,965,2742,2830,1550,1336,62,453,499,2590,568,205,2739,682,1714,1679,717,2785,1016,4,1190,2288,964,1690,1662,1332,2185,405,1331,272,1836,2416,394,1652,1943,2246,44,1927,2173,2311,982,1246,2261,933,2190,688,337,2664,601,1787,102,1345,370,1566,228,2466,235,221,826,1883,1809,2393,2669,2948,839,226,971,639,2427,2460,1033,2759,1124,2658,769,1651,754,2539,2458,499,2624,146,869,746,2369,882,2778,1721,2725,2379,182,2318,882,2437,981,1140,1094,2327,2128,2314,1265,865,2340,2359,491,2740,214,1946,1440,2683,1595,769,2861,1525,321,2313,2291,751,673,471,2190,930,2420,2223,2783,1175,1391,2697,2781,1973,882,2549,2871,234,1083,567,158,474,804,2047,2832,1088,2177,1736,25,2338,2473,971,1909,2693,2632,1638,1341,713,968,2881,839,1684,2939,1382,1122,184,2485,128,1500,43,172,314,1455,1943,2973,1444,1871,2310,2543,104,2726,2361,1612,503,1616,597,911,2462,1759,1765,1888,1385,687,2287,1583,191,365,756,2617,280,2458,2497,1336,2127,2737,1449,1222,387,2860,385,1834,2075,2131,2095,2303,2861,2411,2042,13,2517,488,4,2153,2726,2411,2447,1095,1167,49,2799,208,9,2457,2799,1840,1095,821,358,2316,500,1327,2339,271,942,1964,2680,1720,776,223,840,1411,952,2108,2855,1362,2926,2241,2955,2954,168,2302,971,1630,778,1755,2666,44,2040,2109,2959,1824,2213,1892,1126,2201,1051,2317,1587,66,2069,1977,1375,1034,16,1700,400,2617,2843,931,1472,2999,242,2438,172,1414,2547,597,2472,1347,307,507,121,1399,1470,2145,1191,2810,2966,1665,1467,266,1833,2070,163,493,650,688,1597,654,2695,2378,2032,2199,2684,699,1450,95,247,1227,1306,219,1375,2953,247,1803,1554,2558,40,629,1881,18,823,1359,2974,614,1070,271,898,2149,2092,1636,1807,2696,2504,1190,2354,769,216,2780,1337,565,2343,2294,1263,1471,688,2223,289,2898,1345,1000,1658,1677,1125,111,11,408,2441,242,13,1946,1033,2370,2832,536,2447,1603,702,971,1655,1543,2096,1798,1423,1333,124,1255,1349,1103,115,214,569,2334,1707,197,2774,570,2285,551,58,1593,2886,91,1855,2514,2655,806,1797,2446,764,2158,1960,281,115,442,852,2294,2451,1242,1868,1460,2648,1608,789,1775,336,1315,505,108,2052,2100,2548,1772,1650,623,2395,2472,1448,2815,1988,1161,995,1148,2938,1067,2008,2477,902,102,356,1885,1345,705,2643,2396,35,2240,2631,286,6,2376,1853,294,493,41,1957,1812,998,1953,1243,743,2050,2097,2511,2662,965,2598,2915,1233,1285,2964,1002,1836,79,21,2958,1322,1118,46,6,758,142,127,2679,1294,1293,2243,2614,140,1812,2585,1202,2276,2636,1684,1083,1413,987,478,2913,1471,2441,2312,2422,151,137,1647,1248,763,2435,1973,2874,1614,1575,2538,2670,34,1803,591,2717,1590,819,2226,2929,631,1607,308,533,2990,2056,1164,2763,314,1376,2684,119,2480,181,2155,1570,92,1004,528,314,176,1503,1593,876,2529,1848,258,499,1172,946,2347,1350,925,2425,99,2022,1172,621,2792,1012,2662,2564,2157,1658,1284,1003,2047,224,1780,2523,2519,23,2922,1959,2892,2819,951,2098,740,2019,2293,2854,1296,2302,2185,1978,399,919,1707,2207,2771,675,779,760,2885,2091,2879,1774,707,1056,143,2296,106,2202,330,639,631,2867,2935,2408,2055,2900,2692,1433,354,2815,1684,1425,2961,2793,341,296,2683,1260,663,1571,1402,933,661,32,2326,2164,717,2057,1975,2008,1212,2519,72,2600,2615,2197,2030,2391,2306,457,703,1944,223,1536,955,59,245,363,1719,359,1250,2337,1245,1526,651,2650,1762,2087,252,786,1369,2448,66,1551,234,1165,935,1516,1353,1510,1575,796,1472,2361,451,144,2407,1755,1581,1931,2333,1991,1074,2980,1986,1053,1845,102,2851,2041,758,1815,1961,268,124,380,1419,2405,225,2020,930,1261,1137,2229,2897,2406,2739,2751,2032,542,1194,379,503,2182,1607,1749,2861,2440,2896,253,524,332,2167,664,1471,561,1989,431,1977,1535,2813,2066,2325,314,2333,2896,2357,448,2204,782,1660,632,1739,2981,2047,2767,386,2901,867,1175,1025,701,378,438,1416,389,2815,1652,1939,1629,1035,1266,2477,2559,2907,2833,164,274,1505,852,1294,287,1316,1522,1089,2832,2458,323,194,1877,2203,1037,377,829,1420,577,2772,2333,2435,2579,2267,112,1276,70,1258,1722,1411,1349,278,2202,1969,1591,1742,1149,1175,419,2076,461,2486,1232,382,2823,970,732,691,1701,1888,2350,577,2556,2407,1272,2925,1059,270,911,2304,911,1618,1209,116,393,2014,2534,2491,2840,1406,1989,2664,2385,2574,499,866,2785,1685,2081,2118,1549,955,516,163,909,2773,2061,132,1133,1783,1416,1294,1461,39,2032,258,2359,2390,2784,1166,207,2815,1296,617,2197,2468,1160,2338,1861,2634,2206,139,2546,1835,982,2284,605,2238,2387,652,759,2189,275,388,631,783,233,51,596,1441,1609,2827,773,2246,250,2163,1447,2068,2752,931,372,1903,2595,747,433,1196,2738,2552,2685,530,2615,2328,1766,1068,2900,2954,490,2031,842,2141,1002,803,214,1282,1046,1620,311,204,1952,77,1248,1258,50,1179,2895,925,1961,2872,1878,2864,2032,622,1674,2181,2584,2920,1004,2489,1006,2936,820,2259,2885,1224,1584,1983,2335,193,1514,1380,1282,1418,2063,1316,1206,642,254,2174,149,796,2009,2341,739,2743,2450,2270,2391,2674,1307,255,2458,2450,1054,1933,750,390,462,2887,1502,2029,2008,286,2697,1972,1052,2839,2869,1005,362,622,1642,999,2246,1998,1545,2408,123,2852,1708,1062,2286,1298,762,113,1179,1611,2729,2661,608,185,1275,2532,1471,2516,2362,2988,2287,834,2119,215,1637,2022,1835,964,1366,1633,362,2039,1665,2392,2804,2363,2384,2143,2057,1306,2580,1435,1278,1068,2427,2095,1730,920,2186,2227,2597,1659,2803,1755,56,1738,2058,1688,860,2024,2340,2868,2478,2749,2119,164,1123,1105,1763,1937,428,682,816,2368,702,1659,912,2744,1111,2595,1512,1851,2975,2506,1613,1060,2162,349,2447,810,2263,2649,1339,2707,1390,2550,2139,1616,1743,2032,2753,749,2796,1555,2782,319,2214,977,2141,2092,2023,508,2826,2926,2088,1176,874,1631,1061,275,1211,2395,1511,2502,809,1975,1578,40,1418,870,1152,113,2499,2100,1181,2606,25,2308,503,1029,1471,1884,659,290,2306,1594,616,1424,559,2580,2643,2500,1612,669,2493,2190,216,360,461,66,2525,1077,1419,1611,2870,1234,1051,2710,2030,2967,1948,130,2003,2988,2614,2164,352,653,2644,2778,1734,604,259,2087,1768,696,1365,932,1018,875,2759,1812,1257,431,41,124,1775,2403,2242,349,1664,408,2836,528,1911,2085,1010,1754,2605,2112,364,2779,2215,2712,358,1013,2989,1218,679,1070,1113,1387,2495,532,1125,1851,2976,214,1667,289,656,1184,1527,1375,1764,1523,450,2626,2204,1623,371,192,243,503,2743,532,2857,1211,332,2087,2974,494,910,716,1136,2474,12,2535,1601,2844,1193,193,110,918,228,533,1331,138,1254,304,980,511,480,2458,2909,490,854,730,929,936,1549,2816,1975,1782,701,2400,846,187,1327,1242,1456,498,539,2503,2359,1948,2819,200,1970,1233,1498,2397,1113,223,2411,2653,193,1094,1909,1545,2796,2056,442,127,2907,2001,2711,231,2666,2248,171,1735,242,407,1944,1895,282,789,411,508,775,2670,1303,1802,980,1979,2595,1630,2803,438,794,522,2368,1733,2006,2960,286,2098,2519,2055,1165,379,2101,2835,2359,1541,1142,2032,1219,1758,13,1710,1916,671,1724,2169,860,1344,2013,1520,1002,1631,1493,460,68,1464,2659,1954,105,1912,154,263,101,209,1566,2436,2311,1479,1598,2627,2380,743,1014,2546,1860,2553,789,1706,2110,704,1790,1363,2559,1579,775,1768,2501,714,1008,555,2625,1063,811,1212,859,932,2592,2820,2549,2611,569,2462,241,1358,285,2602,1670,2204,171,1676,546,216,2078,2120,1953,1394,2186,2536,1158,2042,578,2493,1249,211,1870,527,921,418,421,1042,434,1291,1211,1683,1021,1098,1649,2395,1235,1003,2519,1730,1857,1303,831,842,1017,2389,692,616,1449,1480,1639,1919,812,999,1249,636,1239,2890,1531,942,1553,46,1971,360,1253,948,1089,1494,2329,2722,2215,1488,9,25,2588,365,392,1977,1883,1627,2137,1054,1103,1050,869,2929,2164,1031,590,1457,2951,1732,335,2445,550,2623,2512,140,2481,971,614,2256,1907,939,2345,1263,2218,2789,881,1682,2787,1166,1055,2702,533,2672,270,1199,1652,864,1073,1899,581,2679,1977,1523,1215,2733,1862,1223,785,2267,1265,633,2100,1514,457,1037,2323,470,1273,36,920,1784,1826,2618,1717,2274,978,215,2158,2365,2929,910,306,2085,1278,1294,1815,2452,116,264,2589,689,1532,167,1530,1046,2983,1888,2558,1410,2581,1028,2905,156,1327,1518,2475,1661,704,2988,2658,588,1873,2519,2092,2196,970,1773,1630,113,1787,97,1262,1929,1039,2089,421,1631,2334,1352,2109,1445,1251,339,817,980,1762,690,553,895,1476,2579,1537,890,805,2994,276,2741,634,2624,1330,2079,164,2173,1394,2442,1176,1491,205,814,2687,2933,2198,1866,169,964,851,1026,2338,1799,2289,1886,2138,1719,776,1710,2702,2537,98,1525,2433,2047,2962,1430,799,1360,1869,584,941,918,2148,455,1840,1145,2079,1071,2097,1252,1402,1771,1111,2929,795,292}

    1593

    2281

    Returns: 196732865

  100. {2627,1367,362,210,2291,1446,316,660,1715,1458,2013,2260,2047,2631,979,786,1865,1435,2846,167,1,2589,2605,1691,2068,785,1035,2913,292,1896,312,1843,2117,1444,890,743,1416,2861,2155,1004,2685,2604,1734,2304,2847,1755,2700,870,1719,661,1922,2259,2566,1699,63,1524,2612,1913,1217,183,2366,173,467,1433,2268,758,1877,1790,1058,254,2025,2565,2644,384,176,959,1181,1845,1020,1018,1078,1753,1053,1671,2432,1090,503,2854,2966,1315,783,2984,19,966,1811,1760,1409,2641,2715,1614,2003,151,2872,2093,1893,273,455,1629,600,158,711,236,90,247,234,821,932,138,2189,1205,116,337,2720,2151,1937,2701,459,1747,913,885,984,2235,1275,128,662,2709,223,490,759,2714,2258,2929,2669,1144,474,1375,264,763,2909,1976,2971,2256,180,1023,78,851,477,2129,1127,515,1109,1837,2504,2809,2647,685,2251,2711,2643,1854,1873,1238,633,1280,1643,1743,2675,1292,419,2507,1011,2277,825,1750,394,1553,1765,1763,1139,1842,2518,2841,2076,2812,67,31,2907,116,2078,2339,452,1857,877,1071,200,1023,840,215,978,165,2084,1383,1787,1114,463,2621,56,2623,1551,2867,2700,2428,2381,2941,2725,1939,1493,1255,2449,2963,1707,1078,1676,2340,1930,22,1464,2583,223,2080,203,714,1507,178,1728,545,1877,632,2924,1283,1957,1477,2960,237,2992,202,411,2335,2075,1501,97,2413,48,1761,1807,2431,830,294,2873,2699,1812,1347,1926,1474,1056,1322,1378,2052,2530,1770,2002,678,257,2888,599,1919,19,1606,2535,723,1158,1880,1221,212,59,1743,1806,1612,997,2428,62,2688,2871,2743,631,1470,1617,587,2408,1368,1175,834,1240,371,443,2095,2130,2003,1015,1202,1614,1054,876,2548,1214,2270,1103,1813,1243,851,143,2436,1537,1940,437,69,647,1309,2481,1404,2209,746,1342,2391,962,1474,2220,1978,2823,2933,1611,733,382,827,309,1140,1560,1923,317,1685,854,176,1566,2933,184,1357,2029,592,1949,1870,1887,1903,2470,2895,2018,2569,694,2919,2476,824,2731,1485,1442,60,614,2215,895,1909,2139,345,309,517,2980,1272,2994,1074,1737,1874,104,1444,2598,2158,2805,316,1717,830,2456,1384,1825,1934,2955,2703,871,2330,1422,1224,1382,2593,547,1933,1818,2385,2936,2708,531,443,491,2747,2884,216,2005,807,1459,1789,13,2228,2493,1219,508,2350,2689,1044,178,1528,2091,320,2547,1473,239,396,1630,1444,2699,2729,723,958,2445,281,806,667,2283,977,562,820,2477,2657,1018,1334,465,174,929,2640,2116,1115,1754,2875,1684,1417,1571,386,1605,359,2916,1410,105,250,2203,2865,2429,2582,489,625,138,1078,760,1811,2855,449,2833,1579,2520,2157,684,2842,855,2052,2352,1268,1108,830,563,2447,556,442,1058,2497,861,1745,1024,1652,725,1716,224,1625,2190,1959,858,2690,882,2321,171,64,622,26,2884,1643,457,2860,1073,2007,2443,1156,2505,1246,94,2414,263,325,1442,1320,524,309,2716,1474,640,1729,2127,244,655,459,1226,2339,459,2482,562,358,1504,311,1527,148,2743,1376,1152,1771,2715,650,1786,326,1998,805,742,1386,1152,2350,2030,915,1341,205,2456,2545,2271,325,1881,2256,2124,23,776,1793,2201,418,1044,2516,2484,428,1049,2106,736,1904,528,2230,1010,2684,720,1244,138,1815,811,918,982,575,2002,392,2134,2534,2734,599,826,1507,2872,1463,1909,1778,527,155,2987,1398,2129,104,2554,1021,2302,2433,1917,579,936,2299,489,1497,183,1976,1098,2830,1018,726,1616,332,749,1010,44,2240,2944,1792,2153,2450,386,867,1081,2699,2203,1403,1270,2881,2304,265,1680,1948,264,45,673,2473,941,2898,2383,641,551,1827,2421,2783,2703,1136,2636,1914,113,2097,740,1938,2449,860,2070,846,2938,230,713,2748,354,526,1770,1154,2277,1434,2563,1013,1478,2742,165,1012,2188,643,25,1371,2832,2132,2461,603,763,1571,2019,2776,2165,2704,538,2044,316,1585,442,1860,2697,818,2050,2259,758,1510,726,1370,2120,2002,2117,2775,1364,2059,642,825,985,525,981,2286,261,2785,2956,1489,500,1969,2827,2138,1625,2744,886,237,331,1363,1864,1432,700,2409,1154,574,763,526,2315,90,2086,2696,2183,1556,1732,2064,2074,181,2800,2586,322,1788,204,1,619,756,473,50,1782,1693,1638,2815,1069,1142,50,2862,1982,1618,210,1583,2354,151,2815,2928,1861,1632,410,1589,2238,1087,2141,1677,195,1026,63,2606,1225,2698,2973,2878,2323,688,2585,581,1707,2931,1826,1330,1951,2318,949,859,2981,2660,2441,1854,812,2079,1055,2343,2841,1029,2458,2373,161,368,737,1554,2313,1613,528,819,853,2208,1470,2092,1420,2984,1840,2682,82,159,99,386,2546,753,353,2660,289,777,2610,2445,1985,2281,238,1822,2949,896,1924,283,2783,2693,1328,2562,452,1993,2683,1223,1078,2579,465,2646,968,2444,1684,2815,2023,183,347,2252,1639,779,2352,1632,1674,541,1339,2896,269,1045,1134,43,2865,1786,818,2249,742,1459,2974,335,775,171,732,2527,1385,2659,2945,88,724,1686,909,2128,348,2755,2325,188,381,1484,1408,1387,806,146,2303,657,2759,2628,1839,2121,279,1687,2905,500,75,2159,1838,2583,1201,1779,2826,1767,4,642,2969,2293,2503,2527,1823,585,2072,2295,1277,456,941,1668,879,506,919,483,2249,2089,2167,2714,1636,2764,2370,1330,1485,947,176,2679,2304,2654,469,1011,2173,2508,2779,2213,2593,1120,2715,1813,87,2621,2341,2822,581,2027,2355,784,2808,33,1004,2439,2048,1940,1538,1067,14,2572,2957,985,2158,43,329,1960,2170,216,1518,1648,951,2213,1489,2002,988,2636,375,176,544,2199,2735,1691,1858,865,913,1555,2521,1748,2903,1318,2547,2550,1743,560,750,1810,2193,2768,2677,1677,1086,1965,2296,2860,1625,733,2307,2355,2659,986,2647,2880,1128,1060,1764,458,2403,1288,1957,1764,1038,580,2397,2742,384,99,2647,459,412,1282,2560,2021,1711,347,1796,2119,43,1946,97,2083,2225,2361,2945,2339,2463,644,375,274,599,2984,458,577,1121,2775,573,2668,201,654,2700,2678,1306,2888,96,80,1291,2633,30,349,2140,2947,1049,2125,22,150,1510,2882,62,1008,2658,2429,2528,2630,480,594,1525,1086,1760,2656,313,323,1500,540,194,243,2131,267,2769,950,863,2075,2440,2964,1424,1091,2889,2850,2139,369,1707,2022,2256,838,1577,689,2041,2949,541,2607,659,1656,2306,2560,2849,675,2955,2742,888,2232,2263,2333,1115,146,1025,796,97,1684,1058,2397,1178,2089,2127,1287,695,2527,471,1159,866,2391,1595,2294,993,1308,43,2612,1703,252,2293,2610,703,439,185,1294,2194,514,1007,1989,1599,253,381,942,1999,504,1144,1761,2776,2331,1938,102,2200,2113,2570,698,545,1580,2932,1968,2601,2398,1812,1593,1967,2070,1658,2658,2655,818,1767,1703,1522,2840,2490,2282,69,1373,66,802,464,1047,2755,1010,1668,1609,2823,1464,1180,75,2659,1999,2052,361,1628,2765,849,1317,1103,1271,755,2238,26,263,1589,646,293,2158,1159,2972,1835,1901,1493,2883,2048,2660,265,2802,2079,807,2542,1066,663,1212,2830,877,2901,2950,1133,2693,2859,607,653,2700,449,1016,2334,2661,2814,133,2649,2310,1292,1394,1680,1569,2124,1176,2997,1781,1794,1156,2705,39,2894,1981,2965,573,203,1404,300,2377,246,1068,2597,2048,2972,1540,742,2694,2690,1166,1965,1721,1365,1134,1630,1803,2762,2746,2997,491,2796,714,2546,926,2512,1100,92,541,2672,2674,995,574,2168,550,2330,2857,1548,1579,2311,2704,192,1455,2434,2861,659,1961,417,1814,773,2099,1990,1793,1539,279,1857,1872,1271,493,2184,2804,127,192,1568,1832,979,489,1974,2302,1216,2821,1166,1450,1995,928,26,2818,1599,1306,2925,999,2468,1290,61,1759,188,1294,841,1956,1868,203,2944,1400,2048,1963,177,80,1524,2129,2287,2116,688,1193,846,2476,2789,708,2622,1005,2351,137,2393,2133,2851,2602,2782,468,2782,344,1733,1390,534,1274,2810,1192,1899,1121,1454,2327,617,220,2585,1177,887,380,2916,1426,863,2783,2385,2136,355,2659,1269,1925,2825,1067,1448,1692,1756,1085,1999,2177,1916,2684,192,2386,2177,2390,1900,2984,2561,585,1801,894,2834,701,2502,2393,57,934,82,1369,2416,1427,944,2298,2949,1563,1824,2240,196,88,2696,1741,781,1838,1196,214,2261,1349,2977,2040,1266,1294,68,726,1514,1095,2793,1440,516,2990,1342,833,2453,2714,694,49,788,6,1027,1857,1867,185,1362,800,1920,2513,2454,503,2330,1403,2236,1430,1944,2308,560,306,1710,2836,903,2646,1037,885,1832,870,230,207,2826,1610,883,832,1626,601,2822,2145,1607,968,2803,946,946,1648,1181,2062,1911,1011,234,2393,115,1952,2590,2559,2136,1672,1344,2165,1063,962,1590,1668,919,1395,1474,1665,2345,1647,1166,2048,2961,2156,433,2118,1281,1639,879,137,819,2138,611,1437,1589,609,503,1475,584,2772,2354,898,58,482,1631,568,368,2061,1427,2359,1842,221,519,1554,185,1700,1930,1691,1428,1787,1305,2305,884,876,165,1350,1438,2527,1984,2970,403,2760,2478,1586,1624,675,645,41,2860,1578,1227,875,2312,1269,375,1848,1652,1490,1029,1072,785,2254,1098,634,1187,318,1202,2934,129,2997,1743,2025,1944,218,2380,1908,1348,982,423,2604,2092,1002,395,48,222,13,2298,1485,50,1572,906,743,688,1406,1588,205,1589,780,1009,2653,2204,2390,2366,2244,1624,1159,901,305,1634,1812,1749,1561,476,2560,306,2633,2874,2045,1215,1338,962,1413,2064,1660,286,2782,2086,2063,1219,2730,972,1152,1694,1497,2847,897,1946,2516,2508,1973,2786,1785,344,28,80,957,1110,1213,325,2031,2363,2592,396,206,15,1117,2837,2132,1118,2929,2703,7,2060,1466,2257,178,2084,2765,2639,263,1627,1200,277,474,121,2642,1152,2659,557,588,2115,2276,2080,133,2060,2075,2731,617,1885,1882,137,2974,1530,1346,2575,2711,2680,1794,450,579,2135,334,503,1316,556,703,1183,1155,863,167,1519,1363,161,791,1559,2733,2859,1214,2587,2188,258,2563,2826,1870,1724,1682,2218,2006,2580,1375,2321,1468,2104,1400,440,1407,1832,2640,40,1873,2906,1379,1579,622,621,2001,2230,2913,379,1254,632,812,471,2471,2114,144,184,2462,1113,288,1524,914,1426,1875,2599,348,2546,2718,1189,2036,190,2826,2937,2742,2768,941,1739,1943,2194,508,1802,2522,1216,2615,2032,735,2098,405,1463,688,903,2182,1066,1453,1644,1397,1483,373,2765,2095,2402,1533,593,1236,2685,1886,1135,1792,955,1893,511,541,2009,45,441,995,60,1208,1648,688,1991,2138,2397,1349,2190,1407,794,1422,1788,2456,2640,1935,2639,741,1101,167,1791,2985,137,2986,2365,399,295,1257,579,614,2871,2883,2203,1371,2280,627,1470,268,717,965,168,925,2998,591,2040,790,2205,2123,2398,942,2928,2620,610,480,2992,1509,1159,2714,2660,2185,1743,767,307,2039,2447,1761,218,1729,2671,242,1375,841,725,1932,660,1506,1557,2968,2881,51,232,2676,2392,1911,2911,3,2219,2297,218,2016,1030,2346,1535,1502,1938,1304,1158,2246,835,541,2829,2615,2622,2287,714,1645,1742,2151,1525,1900,311,503,644,143,2967,1812,2639,24,1059,1780,2692,2110,2146,2040,1931,2815,2674,1907,1465,2213,1521,2790,2706,407,2477,1999,2278,2074,640,1653,65,1511,2014,1300,298,1307,2577,53,1408,1850,2327,1280,2604,2320,1747,363,1515,2555,2174,2021,2391,1419,154,497,1372,171,726,281,2101,1147,1623,1468,2000,1354,1191,166,272,1533,1282,2686,2397,1146,1220,2916,239,2466,2233,2859,2457,587,968,2172,2547,2139,878,461,1523,651,2223,2353,1718,449,1413,2227,341,2861,18,982,2348,2138,422,1955,1201,696,526,1703,1710,2839,718,1741,2335,1688,2257,2538,2555,579,1122,303,1697,2531,429,1801,479,2549,1860,531,689,2179,2314,541,1456,328,2594,841,2401,2040,1242,1183,225,2358,145,576,88,2634,1337,962,2916,2523,709,1229,1976,2533,2693,164,667,1962,2443,1329,821,0,1680,2085,262,1822,570,1697,467,1224,2037,1023,894,1958,879,664,656,2324,1557,2990,818,138,2231,2956,1753,818,1101,2670,2940,1933,1967,2161,510,1868,2095,444,1740,797,2733,2629,1231,648,1911,1822,2350,1066,729,2772,868,572,622,2035,1541,2367,1410,1438,2363,722,1123,1967,595,641,657,1366,1468,2353,1113,2071,1547,2434,580,1251,2220,2147,312,888,578,78,2641,659,797,1470,2412,2551,137,284,350,264,558,1326,1039,2656,276,1494,11,712,11,1804,1459,599,481,2978,2288,2476,2997,2903,2397,567,1320,2937,1518,2704,500,1472,2313,1308,2082,2407,23,2553,2020,1534,1836,2408,2191,2477,2321,669,695,679,1697,2238,2007,2456,2891,2563,969,1811,2872,924,2863,1353,6,1735,1508,2195,655,842,962,810,1127,1023,704,654,1498,2525,2618,1134,731,2559,2015,1128,563,811,331,649,1086,586,34,1718,2162,2135,93,708,562,1668,1496,1499,2637,1105,2485,928,828,36,2033,609,2166,1456,2021,205,1302,2417,1463,2268,541,2190,2460,538,1166,30,1169,2770,2227,2494,2292,2893,734,325,1312,50,95,1640,784,518,1076,391,290,2957,1433,413,116,1364,2210,2509,512,1906,1232,704,2564,1177,1462,2595,2034,2843,1401,1459,1533,2444,636,2355,42,2908,2396,219,1968,1065,2095,1193,1631,2272,2458,2504,1227,1710,2299,1052,1757,872,2059,1542,2143,1138,1166,1094,2551,104,640,219,1799,2827,506,2903,1622,1198,881,2412,2010,175,2004,1189,137,339,821,1818,433,2390,2983,2043,2975,2433,2890,1854,1967,1396,1532,236,1079,2291,2040,2871,1011,5,2179,248,1858,2328,2437,1090,1707,1857,1662,683,1088,1415,1048,1641,2604,425,1389,2641,836,2583,2033,631,1345,2227,1854,186,569,1601,2178,2343,2867,1592,918,1431,1039,2730,2991,386,885,1438,330,76,1755,2,304,968,1397,2402,2350,1753,1131,2716,797,1795,2397,491,743,2380,2820,1116,1983,161,1675,637,1648,2555,389,2436,1194,962,2241,1949,2406,2579,752,1159,503,2197,498,1068,992,59,442,135,2239,2132,1404,886,485,939,572,998,1216,2396,1531,472,659,1425,1594,2150,1337,1805,136,2622,1547,2187,1668,2511,579,2300,424,1679,338,1461,2322,777,1268,311,2203,1143,2154,1443,156,862,1150,1190,1943,1211,2132,2264,719,1520,121,1624,1832,1156,1342,918,1828,1405,735,1489,1487,2829,220,2353,2436,1278,676,124,1291,1591,920,1320,296,1764,2073,239,1279,210,1380,1397,2352,2391,2386,591,1847,740,905,850,1402,1408,2535,374,899,2957,621,71,1,1959,103,720,2216,2238,2759,2452,2175,998,1894,2168,718,2602,289,2828,2412,2750,1026,2727,1166,353,2895,123,1098,438,478,525,2962,1230,2135,1777,1186,1002,22,1646,2266,917,1725,303,459,1157,1875,374,1795,876,1415,2255,1825,2026,2248,2219,2978,831,2173,1818,1821,2021,1816,1779,1708,2046,2610,226,2498,2673,2783,1124,494,582,1660,592,1941,2997,396,2182,2527,2888,205,1343,2964,559,94,2993,596,336,2626,1188,1502,27,61,2525,2681,1775,2953,2412,1145,1320,161,1031,12,20,557,340,621,1488,2840,253,2541,910,1777,1281,10,1744,445,150,1422,2060,2784,1301,327,1318,1863,2067,930,190,62,724,815,1149,812,1453,1222,2848,2989,982,2689,2604,866,426,1967,277,2393,1204,2397,2384,506,1311,2542,1194,2429,545,990,2659,2558,2238,877,2719,1938,1139,625,2859,1364,2963,2767,1677,428,222,560,2723,1591,2985,1743,2502,2427,239,1842,43,2919,2736,758,517,1800,1867,1994,1096,1409,1698,1081,1506,982,2344,219,2771,2139,2995,2550,1438,2313,785,1114,628,1569,160,1591,2367,1986,2085,1228,1130,2096,325,1682,1659,2747,2653,1993,2675,2371,1640,2465,2797,1469,2324,1652,2890,842,2651,360,1967,802,1602,971,17,2645,2571,945,1202,2214,2712,2562,12,96,670,2379,227,1834,150,2038,2532,926,377,2603,2416,2037,2767,557,1966,182,86,2017,1019,2160,1748,46,427,197,2649,884,1089,978,2699,1151,1668,2081,258,1023,1095,308,1365,2742,2365,2262,339,870,2224,665,1758,2316,2186,152}

    {2520,652,1722,706,2149,2890,2776,1732,2447,2850,240,1112,1717,354,2066,2873,103,2483,409,489,186,615,2230,527,2560,38,1605,2622,1097,1782,2923,682,677,498,920,1516,2129,2946,483,2890,904,2625,198,2715,1165,1239,1183,1227,2248,2835,1942,395,2410,890,1653,807,2055,1332,2210,2936,2423,1048,2662,2243,2613,2622,2791,2376,943,625,1722,1330,2112,1303,1964,81,1855,1280,115,2610,1003,2549,1774,2198,2624,874,2887,1601,1823,2444,2961,2539,61,1112,1022,1935,2797,2397,1355,2577,707,2397,1819,1571,2207,1586,2699,1788,1310,535,1143,2581,1708,895,699,2595,342,1582,2219,106,289,490,2343,2356,2696,1514,2438,940,1552,2536,1220,1755,532,562,1615,1219,1776,1690,27,924,2593,2167,2647,1440,2158,2218,1023,692,2807,1050,1026,941,2340,1684,1233,688,1945,2714,2496,2160,2336,762,814,1345,1615,2656,2945,1200,1340,299,32,625,998,2267,2872,2397,2353,113,363,262,2931,833,185,1289,2894,1826,1545,498,2069,447,470,2139,1557,2048,2048,601,2838,964,681,139,1689,2524,2881,1088,2129,1034,2488,1917,94,1169,2077,2023,2413,2690,1150,762,2921,2489,385,1852,1589,761,1999,2566,2568,1518,2898,268,722,2422,277,2624,2557,2817,2194,2908,2099,123,702,1629,289,1677,1209,2999,994,1713,445,2135,1191,800,2338,502,1576,245,1996,2334,519,2986,1129,2319,1106,1546,2547,82,1273,1701,640,1483,734,2171,1526,668,2311,2131,340,2686,892,2516,2696,2220,1923,2052,2367,811,1216,1750,762,2604,256,522,2060,1909,555,96,1814,1283,725,624,171,2388,960,278,2698,2429,2912,930,2702,1163,737,1974,1122,688,1184,2248,1295,2698,1605,1070,1942,784,519,2236,49,2086,2647,1406,931,191,871,556,2774,69,2923,2367,1879,2180,817,1110,1598,501,2085,2043,2107,1856,2926,2604,1746,2927,2492,901,2116,1958,197,811,2537,1391,2197,2477,499,1988,2327,1772,520,2486,1433,2681,1052,1482,841,655,1767,2794,1170,1370,1919,704,510,1543,2502,2086,2994,980,2566,702,2883,2954,889,1250,1044,2367,507,553,1709,62,500,1567,2203,2593,1078,1640,1980,100,412,1046,1537,319,2935,463,827,1614,1399,932,64,675,1347,2299,737,844,1719,1177,2040,2580,141,128,302,1730,1517,1275,2907,961,2509,1359,2447,896,808,1352,2457,876,840,198,1104,809,2952,1604,2888,1691,2265,1782,1890,2721,1702,1083,1201,1968,2900,575,2608,904,503,1072,137,400,123,313,2678,2880,864,1413,1078,2650,1214,1418,828,2438,662,2984,2890,2564,1298,2799,50,1921,694,2585,118,2713,548,2800,1752,1615,2866,2510,1367,1657,647,1264,2590,62,1862,1985,102,2378,2724,1299,400,2056,119,1109,670,1131,536,1774,291,1444,2775,1535,1890,2087,1634,2487,1591,2745,2061,598,149,2600,1939,1750,142,85,1905,843,436,733,571,657,332,172,1997,1284,743,520,2198,979,2085,962,48,2879,2715,2208,2188,2086,1967,549,608,2929,2754,1754,2567,357,1364,1080,1586,448,1939,1543,1022,612,262,1895,380,2458,1502,265,1512,1645,186,1826,1434,1320,1902,1751,2369,363,1590,2811,1127,2954,1168,1954,47,191,1383,2540,2272,2078,1347,433,1844,2588,1201,242,2972,2753,2349,370,1707,2279,2372,240,87,211,1413,1794,239,1830,498,103,577,2895,408,126,2443,617,2018,492,2148,2196,2838,1589,1770,43,1173,120,2077,1658,2429,2240,1086,2464,1715,2245,716,487,1023,1352,2689,2400,2756,987,2335,2118,680,187,110,1348,2936,2735,2583,2499,728,1706,1927,1665,2481,151,2192,2284,714,77,1901,1486,490,2560,296,718,1662,1716,1245,233,2898,2959,1670,2167,1900,562,1846,419,804,567,1802,22,837,1973,132,2473,2808,694,62,2496,1198,107,2364,794,881,2337,165,419,1634,1747,2694,508,2385,1501,108,231,388,2192,1624,2181,2940,2609,1162,2105,2151,563,2535,347,383,939,1942,1361,1946,82,857,2496,135,747,497,1292,181,2568,1427,538,500,1597,1,1781,799,1616,325,1245,1148,320,1099,476,185,629,2710,2012,2918,797,1231,465,2374,222,2054,1213,845,1709,2837,1393,1187,956,2176,1746,378,2548,1148,533,954,356,965,868,2014,1503,963,2960,165,2767,2487,1915,645,2683,22,2292,1370,465,1801,628,1615,1742,647,71,2005,2377,1153,63,1668,645,1064,2237,921,2072,2925,2560,485,2397,2412,1078,1764,670,1472,311,2573,1571,914,821,2275,595,2384,43,2694,255,86,2155,2581,398,2861,2138,1927,1397,2648,1801,689,1829,2221,2441,725,2815,1581,2216,2234,1117,579,626,1974,265,414,733,830,2544,1724,730,2543,1562,443,414,796,296,629,925,2783,1127,1460,924,2525,1439,2916,1113,1769,927,1203,1870,2210,2364,1482,2984,2583,1433,920,609,2675,1461,2543,2343,2778,62,1902,2347,226,1171,2459,2590,262,1591,995,524,2787,788,2474,1693,228,1723,1793,2527,462,449,2021,2129,362,2694,902,1906,2617,769,1483,2473,2961,1582,2000,1033,386,1697,829,2978,689,2842,339,650,2962,645,1258,1321,18,1551,2986,2574,2821,1913,906,2316,2594,1873,2186,2277,2140,146,238,2136,2397,1683,2915,2694,2762,873,1707,1006,2222,1202,1889,2555,2962,1131,1444,1134,1678,339,2262,2338,793,2375,2588,2099,1629,2174,229,1975,491,2058,744,138,492,1664,2696,892,727,2441,1489,1315,1543,93,2087,1883,2888,1406,1123,2407,490,1732,2766,259,806,2231,1228,2616,1974,96,30,1253,1268,599,674,2650,2737,1412,660,496,2206,1996,1467,387,2247,2392,489,340,1969,2033,193,868,2970,2813,1661,2394,2429,2487,1130,1731,999,1716,1075,489,566,1764,789,1897,474,72,1544,338,311,981,103,93,1776,2534,489,2514,628,2930,2230,2574,2292,82,364,1202,1100,2142,2922,354,1536,216,249,265,1727,2433,2259,2385,351,1515,953,933,811,2840,1043,2248,417,2647,1615,922,1808,1971,1826,2887,2608,2160,265,786,1817,1455,1442,456,2290,2665,1830,2265,1835,2955,2257,51,2781,2202,2362,2921,1460,2142,664,2475,654,2527,2620,1021,2889,1493,222,1668,1207,2315,1358,597,2638,1652,189,1809,2758,2647,2512,585,1721,1604,2966,299,1006,1602,2130,2815,2299,1715,1254,162,475,2693,396,710,1728,2269,267,2443,1762,2479,1276,794,1719,1306,1960,2678,18,1214,771,908,1481,1832,54,1097,358,1079,2529,609,140,904,2408,1967,2499,1892,2827,739,1692,238,2418,1726,1886,2663,2752,1445,1823,1997,877,1753,2156,2151,1435,815,1981,2647,333,2900,1654,1,2991,2741,2265,1843,896,159,1919,2767,1218,2600,1470,1557,2885,476,1510,1166,2844,163,1699,1093,456,2749,1829,2812,2420,892,869,1801,1495,1386,2940,1212,2751,1738,1621,2354,2529,1285,146,404,1313,1272,1761,1823,2576,2467,1171,22,2500,282,332,2280,470,130,1094,107,2841,621,2064,189,1794,1953,1185,1121,2116,1167,27,603,2360,2412,1214,1248,2629,2455,2116,1918,2858,836,1340,944,430,2389,557,1064,1573,1519,1694,1969,2126,1263,2253,153,962,1575,2835,1865,213,609,1137,2687,1536,281,1743,262,1869,2756,2965,1558,2925,736,2925,197,2925,2923,1649,2788,1639,1970,1205,191,2520,2907,1884,2424,109,1201,1720,421,188,1329,1242,1746,1111,158,1665,1913,2597,1667,2056,2242,969,1325,366,2008,462,265,1883,290,2102,1335,447,1967,664,2415,2451,1243,287,1049,973,2100,360,359,2397,1201,241,1956,0,2590,52,705,2164,41,2138,2749,310,1411,990,115,2576,331,891,2085,900,2604,2829,1797,2661,243,271,566,914,1032,619,2584,2990,2849,1120,1742,2836,509,453,2472,2312,2212,2134,2395,1957,231,1732,924,787,1763,2815,2773,1213,1574,266,1480,848,2555,538,1823,530,1160,1804,486,1684,1614,1862,280,1648,725,2965,281,2468,2346,2301,1504,1787,686,79,1161,1041,423,844,2856,2710,847,2243,509,318,2197,888,1441,2739,2756,1650,1296,443,370,223,967,1617,1032,1082,2477,2551,2821,1669,2824,1954,1612,1565,2442,400,2266,1623,738,200,1023,71,880,24,2649,2982,601,252,2684,1510,2302,2378,952,1921,798,1469,801,1617,1233,2548,770,1360,1385,2264,2053,1335,2091,600,841,176,2954,658,1101,2716,1140,420,674,921,1072,969,2889,2256,1385,952,2357,2944,2420,2803,346,2429,1356,2229,2285,2715,1637,2213,1529,1397,1818,2375,2405,1460,2976,1979,2665,715,2291,1342,1314,1197,1265,1597,315,1003,2675,1666,98,449,176,349,1967,893,877,1974,2878,352,171,2939,2506,2308,123,634,811,763,159,1492,31,1745,2539,1902,1491,224,1765,1509,1898,2961,2471,2150,929,2756,1912,2283,2724,736,2809,889,1049,365,69,2273,579,1319,2949,1392,467,932,2139,2387,1100,73,157,1851,2570,2764,480,1103,2252,675,2864,821,1269,2425,2819,2169,623,2274,489,1474,2951,393,2669,476,2757,659,2459,51,792,1901,1283,2642,2012,2979,2872,432,434,1910,2605,821,1938,1293,1361,660,2268,500,1930,1640,554,637,2643,311,2414,962,1000,2451,288,1715,63,885,2457,1792,911,1814,16,2385,839,1600,2732,1745,1582,962,1141,488,2272,1966,1222,1603,2763,1543,901,1017,1444,2640,1447,2714,1985,541,1098,2899,209,62,1374,856,1166,117,640,392,84,2854,768,1537,285,870,2829,89,1652,321,1682,446,201,1074,2780,1888,425,1308,183,1906,21,2916,2698,2049,1180,205,454,2560,2967,2691,1004,1762,2787,2304,1201,2324,672,2966,2086,1271,1798,2958,200,1401,2470,851,811,219,1333,1859,1818,1823,764,1237,1086,2605,597,894,976,1869,2411,1918,2547,1128,2704,2051,2943,2726,1989,521,901,2021,956,43,684,75,16,148,766,2347,1153,580,1159,2412,1715,2798,1608,368,1770,2794,1950,352,2109,2831,226,1800,1605,2347,1645,75,664,402,68,2398,2091,546,941,1261,1738,1468,1149,363,1423,384,2509,1827,2455,2865,43,1109,1164,1421,2147,2527,2661,651,1107,826,1583,841,2335,1550,105,882,738,2811,543,2342,1716,2563,2214,1281,1564,2722,1666,343,2615,260,1981,2480,132,1363,1347,1441,2340,1949,1945,2573,1588,2061,1260,1048,557,2334,114,707,1001,2269,1360,1026,2417,2839,281,1572,61,979,2605,970,1103,277,2635,466,2335,1001,29,1478,1618,2988,366,1199,2293,2240,971,885,1344,1766,862,1877,866,2589,1971,1184,2499,564,2292,148,2857,1575,683,2853,2852,2108,186,2435,1891,2829,435,2271,2536,2226,2077,510,1051,2954,152,2870,134,2526,2335,937,2742,1758,1624,2700,693,1673,1389,2816,1413,2694,2726,1093,377,2909,1663,974,476,1556,795,2837,1718,2658,2608,2562,2650,355,332,2821,390,2573,199,467,690,580,842,2917,1695,2332,2876,617,367,1166,1766,2091,1928,1672,2238,2166,1126,2001,250,987,2536,1721,2902,1082,1323,2028,2936,2610,2042,2072,1878,290,265,1089,2372,397,2127,947,1040,796,1180,1320,135,872,757,62,821,1363,2146,2967,866,2111,2397,1962,1125,1871,1367,406,2309,1692,2549,2482,1446,1036,2852,147,293,208,264,1186,265,2501,453,2116,1172,1708,2491,1388,758,2063,1620,1179,926,170,1635,1242,1057,938,1649,491,2252,2948,2658,2255,1580,736,1753,2526,2557,199,2433,967,1776,2755,1214,2052,2665,1792,1824,153,669,630,1214,2942,1574,2850,2205,138,561,115,690,125,2321,2163,1776,913,1973,1209,587,721,192,361,2495,638,604,1765,2516,428,1482,2365,35,1919,2931,2238,1417,2011,2716,1224,1831,147,2135,1969,2233,1500,2693,1168,2319,2321,2716,600,2604,1160,1371,1320,1181,2441,189,2132,803,184,2273,18,813,2254,1747,1185,1743,2115,364,287,2229,697,1820,1670,2431,390,2724,2458,2583,1879,2647,2489,2749,1280,344,394,2459,1535,467,1652,862,2826,1201,2377,2386,300,2086,2430,1084,887,959,384,1063,414,523,2916,176,335,279,2095,2144,1660,1570,567,470,806,1062,55,2572,2368,589,1992,2573,222,1634,953,1597,116,168,2573,2982,952,2678,2792,2871,301,1587,1826,983,2460,2354,2967,317,609,616,5,1148,2294,2122,403,996,561,1505,1761,470,2057,969,1221,219,618,2730,2242,1716,1918,955,451,130,907,2620,2781,772,2869,2460,376,1280,1053,2444,2728,1028,1943,1570,2116,1405,1649,1257,2825,2243,1714,570,2740,1381,2321,2898,2326,1336,1068,1109,1023,1454,91,1345,2596,67,1429,523,716,1078,1210,816,2646,1513,314,542,1235,518,355,2160,43,2096,2694,2246,2999,1198,1773,1655,2832,2088,754,2249,503,2517,2929,1846,2423,169,434,2430,1596,2949,2178,2312,1166,966,2406,449,912,924,1102,14,1396,2877,508,1908,386,2726,2100,393,240,2733,1704,2811,797,969,2289,1471,2931,1841,643,2072,2591,699,2859,1936,1139,1462,2034,1649,1926,1898,1400,852,37,1763,1453,2808,2242,130,582,2446,18,1947,1128,2666,262,2916,417,1579,112,1844,2756,956,2695,2943,1564,1273,1977,2393,302,2278,2460,2075,1905,267,2168,1479,1449,416,897,1061,2771,935,1128,782,2886,93,325,2795,2820,2777,2455,2991,324,745,1927,121,2578,625,1929,592,1042,70,2147,2127,1019,2526,1509,2886,1154,1938,2391,18,2248,1741,1972,1790,1119,1092,1947,751,35,2345,1500,2419,1862,2707,211,2403,2965,2308,1889,1476,857,2844,1075,1247,2767,1364,2701,1004,1318,2999,2250,1308,2355,393,1641,605,2752,465,214,1507,2291,1677,1567,695,1555,529,2317,549,1267,2219,2566,2576,2299,495,2663,599,2981,687,620,1742,239,2580,1249,390,2398,822,2190,635,552,254,2813,1477,2687,2761,323,1683,2228,967,639,179,1707,1590,908,919,2653,52,505,1825,2647,1801,2468,2652,2090,642,196,896,2768,2448,991,416,265,83,2920,1252,372,15,2414,924,1619,1069,1578,364,2600,2681,434,1591,2515,992,1180,2611,9,1718,579,1297,153,2872,1732,497,2451,2664,1712,748,2106,1705,881,2880,1657,774,2887,1987,185,901,2463,200,433,427,1069,129,1350,1784,2205,1549,1894,1584,1188,1256,1651,2598,1995,2990,561,2949,1964,1876,2270,1395,2632,2614,1015,517,582,612,1331,1005,101,1349,2519,2667,151,771,833,272,279,1657,965,1983,2291,2887,995,1662,2639,2401,948,2267,2337,2520,34,1768,1011,778,74,742,924,2678,1454,380,2600,2979,2174,908,1633,1967,235,1700,50,1194,1709,690,2217,1724,1494,111,2520,347,1577,2329,1997,2904,1656,1062,552,180,0,1924,2399,1358,2897,54,151,386,2239,513,532,917,1420,122,866,2814,2765,2473,2955,2892,1139,364,49,2123,2152,1243,2418,793,147,583,2914,2039,1760,702,1474,2094,926,743,640,1614,226,691,129,1098,2024,2805,2428,1364,2426,277,2815,445,1978,431,2973,2632,2236,415,2499,1219,2888,2091,1853,2528,1430,2325,281,2103,844,1234,2910,2557,510,2771,1742,989,569,2086,2211,1571,1324,1162,1377,2456,1696,131,1743,765,1590,975,426,2264,2996,671,100,18,278,2520,2456,1128,1844,1351,2319,956,1327,1961,481,1849,1014,1684,2382,1883,265,2557,2021,1304,1924,1269,1457,1726,1185,1451,823,736,1400,311,1992,265,2801,384,565,2230,52,1182,2254,5,401,1408,2112,474,1670,2220,2590,1730,1956,2404,2469,1452,863,2418,1621,602,2395,2418,916,2065,268,1276,1985,476,8,1736,1514,2914,1674,2659,1673,1406,2412,1414,2453,606,755,969,2447,504,1393,1524,785,1380,2955,1579,355,1491,1540,275,2999,2414,297,2694,1792,2845,1681,2879,2738,923,684,346,548,2401,2505,1831,1160,1833,2527,2112,410,2137,1479,255,1500,484,613,2279,1329,354,1132,2494,339,1206,396,1540,2061,2829,409,577,1262,251,1077,2556,2717,1640,2048,467,1957,460,443,256,1454,1269,1697,899,61,310,2815,2684,590,2550,2710,955,1738,1902,2806,1214,1968,165,1018,1388,99,1902,539,1497,1642,2377,2632,2166,2646,1292,2552,2786,174,1127,2619,2868,568,2765,1808,169,2537,2040,562,1259,1984,1838,1241,2547,2653,666,1124,1793,2909,2204,270,720,2037,1286,271,1629,1436,2768,620,217,2989,120,1911,1174,537,1783,1343,1866,1195,1988,232,2380,476,926,685,265,617,1798,632}

    412

    2703

    Returns: 557166778

  101. {2139,2550,441,2839,1126,48,1779,2916,2649,2232,759,1399,1410,2901,216,572,1747,1004,2295,1637,810,1134,418,2744,2076,2236,1690,2996,2975,947,880,1721,1313,1170,1393,2081,2547,1533,787,1538,1238,2421,2538,1027,2964,773,1402,37,2329,883,2805,19,2951,642,2764,2376,2642,675,44,2358,2995,1473,2572,2518,1515,2600,857,1180,1448,812,121,297,278,2184,438,37,2332,2657,1264,1996,1639,2455,711,406,430,2926,1458,892,1232,2749,2433,2202,733,2553,2159,1860,1572,2234,2534,2870,1441,440,526,2429,2833,1745,1119,2934,2302,271,867,1420,1253,2012,2557,1096,2872,155,1442,2113,2858,346,1501,1926,1996,2768,100,2304,2053,1694,2916,2374,2410,1841,2867,563,2802,2665,1472,2154,1884,2938,1042,476,1436,1549,1637,1720,2470,321,1731,736,2556,2659,1119,2343,417,2238,2192,480,1319,1938,2588,1474,533,1554,1523,1197,1396,1903,2489,2233,2456,2401,857,2848,671,1299,1016,2010,1122,14,1702,581,1060,1224,973,305,336,986,494,2983,0,1115,2463,2393,2412,2060,1956,409,2313,1203,860,1905,162,2748,666,1498,1627,290,1747,86,2177,1032,794,1628,1856,367,900,1519,2086,882,1247,1878,2901,614,1582,1926,1762,2475,1405,1459,2545,543,336,2424,772,1853,2182,867,1579,2499,909,183,871,2685,1003,2528,2544,6,1281,1316,1291,678,2413,1137,281,2191,2758,916,2853,2172,1652,117,2957,2158,2439,2323,1206,1326,1407,1007,316,2807,1676,468,2765,1612,1801,2124,473,2072,2859,1912,580,1932,1492,1177,426,1079,1187,2938,1927,995,1652,1496,1050,2470,1355,2182,2836,664,885,2975,683,2367,84,288,2270,425,2644,2248,2023,1964,1759,859,742,1057,957,512,486,2293,504,1091,1796,434,2057,1391,273,1244,493,1303,1481,2054,2219,76,1005,2764,206,2711,2561,1346,1129,454,2913,864,1194,1501,1725,2850,1724,2416,449,444,1796,1969,5,2011,2220,1675,750,1289,2008,2960,1787,2053,2538,985,885,81,2562,2633,1712,609,340,2595,1917,157,919,2255,2632,668,2738,630,1993,1822,557,207,250,1760,491,1026,1191,2853,6,1560,716,1974,1802,468,2418,152,1460,2993,2761,2981,1939,127,1901,2687,1904,273,1873,1082,785,2386,2881,2936,2883,1911,2841,1703,2403,2890,2698,1663,1575,2420,2683,1486,2065,1589,1643,410,96,2830,1336,1474,2316,785,1669,1308,874,507,2280,195,2261,770,197,207,2521,195,2650,726,2592,760,1709,491,485,1686,2375,910,2620,2137,604,1038,2363,1832,1769,1929,1140,2177,2483,1599,1058,164,2262,386,1524,2127,1969,1825,1385,914,683,2886,726,1032,100,2826,141,669,1634,874,1187,2014,1236,1442,1139,28,690,79,1797,707,569,69,2477,2916,1418,350,2436,1898,2312,1693,553,2071,697,2211,2466,1744,1362,955,561,500,1724,9,2073,2826,652,1669,1111,2733,657,1132,311,2309,2075,811,2767,897,564,1701,2335,45,2872,1083,1456,1637,386,714,2048,1607,2257,800,993,11,1530,2411,14,1619,2198,1848,137,2479,2294,308,1374,1276,2603,307,2302,1292,746,1460,196,674,1607,756,2661,1648,2904,2066,2342,2615,1859,1675,1877,1963,1939,1708,2686,1851,518,2936,758,525,484,569,1075,2981,2174,2265,65,1407,2648,2018,1715,2774,689,2074,256,761,1430,1417,1704,2947,1358,1625,1749,325,1454,2476,2088,2834,370,2210,1048,966,1565,2549,1453,1490,1427,1582,2133,296,1904,727,1848,1648,1939,2782,476,1365,2066,1250,2440,2375,1211,1183,1730,1147,38,1039,1429,1505,2632,835,2185,1188,1286,189,2493,593,576,1295,809,1844,505,822,2286,2635,2922,1688,2305,176,1539,2400,2823,1377,998,1412,498,922,2805,2473,582,739,1793,2675,1199,941,1820,1851,2851,2610,1726,833,1135,2146,1207,428,2046,2952,1460,1304,73,1353,984,2857,1071,1547,664,1914,735,2675,171,262,1324,2393,2127,1466,1140,741,1600,1026,850,1116,1311,630,2253,1451,1781,1042,804,1800,397,553,2441,206,1674,1028,1248,1962,2448,1203,2507,1298,1486,2344,1669,1138,86,1733,2091,2615,890,2615,118,1945,2445,692,2827,165,2417,2626,148,2289,734,292,627,821,2512,2306,2948,2006,2329,2214,1555,2546,707,1871,2582,2393,1532,902,1520,981,1780,1120,43,1188,1642,1013,104,2309,1323,1318,1670,1002,2500,1934,2819,1361,827,431,262,29,905,2476,707,1976,1684,530,2176,2310,161,2697,2109,2586,2994,1505,2543,1088,2394,1713,317,1012,120,2182,1213,1067,524,2177,1145,1205,225,1234,2264,1740,1658,2873,2970,1303,2308,2912,2607,1001,2430,2977,1426,827,122,1213,2905,1142,659,2617,1009,574,181,738,252,2051,2164,369,1475,1288,1747,2909,1610,1562,1957,702,2070,712,1702,648,2546,2204,632,2987,2567,753,803,2054,2152,375,2303,67,1672,1184,152,2020,1029,5,1248,700,1435,600,1700,683,990,384,334,1190,496,2301,877,2842,889,659,1251,1188,977,2577,2117,2756,1132,881,2153,2224,1838,2954,1794,1410,458,1684,2980,1050,1957,903,2534,2818,2156,1103,1143,780,1754,1153,396,450,472,1926,6,1632,2213,286,1974,2660,1719,250,468,2773,955,494,1211,2284,2257,281,736,634,1568,186,2746,2681,1555,1904,1568,1833,1014,2784,2446,535,1553,535,1661,2178,2790,1378,323,1900,2067,2977,1662,535,446,420,246,2988,2124,1571,46,1745,441,1284,369,302,233,1264,210,1764,1927,383,2033,2587,719,441,1191,1985,2466,1471,2153,5,1819,1939,1424,1434,1378,1208,88,2388,2848,1979,1456,2875,381,388,2561,2476,1308,1046,2287,1000,1209,2074,762,357,2011,1240,2099,1093,176,1825,1025,899,2325,1676,994,1121,739,397,1429,1276,1807,534,508,458,1451,1817,306,1986,434,2906,2622,681,434,819,1249,2509,430,434,1669,1381,2928,2946,337,2908,1556,1327,1092,1726,2659,2413,532,1607,920,2584,1319,2891,2933,2764,185,2418,182,2227,1049,939,424,2765,829,483,2516,535,729,721,1920,666,2004,1398,2695,1217,1698,279,1825,89,2400,1548,1797,190,347,304,376,2240,716,1231,1610,726,1092,2573,331,1817,334,2243,1816,1564,2094,1437,794,2059,2029,811,1476,2151,1765,1340,2980,2553,650,223,642,1277,378,907,2196,804,2551,152,477,181,1291,570,425,1732,1680,732,2791,2313,1054,856,2536,2776,477,1210,704,2973,1856,925,660,325,2534,548,1593,1211,2183,2540,1405,1842,1541,805,2947,1530,2721,801,930,1181,1213,2442,1878,2402,1832,2440,1838,820,2393,1157,2079,2153,2664,2199,1420,364,245,1005,1931,2614,2022,564,2148,1887,1471,1815,263,1925,1551,1547,1240,1559,2950,1832,2958,2421,2758,123,1104,1172,22,240,1534,2596,1071,2081,1368,479,1387,2677,837,1580,1186,2300,2584,2179,1506,1339,1204,1124,761,1128,2754,921,361,2250,430,1753,414,668,1047,1591,1814,780,2681,1736,294,585,1625,1996,2287,1910,430,1422,1731,355,2978,1023,1931,2829,2458,218,1851,1225,479,556,1458,1929,93,2568,2269,2935,1098,1933,325,1920,995,1405,614,2169,488,2347,877,2927,2136,1546,1378,1433,2101,512,323,709,2104,24,1105,2947,248,2075,2770,171,1388,1691,1598,2404,195,575,288,2225,790,1179,2520,2296,2662,2578,2122,1563,1516,468,891,1145,855,571,1122,1858,1061,2458,1827,2910,2830,150,1351,811,2259,18,1958,535,2653,1635,303,2642,2021,1438,2386,2641,905,503,2469,474,2052,2005,811,164,2037,2304,1265,440,2647,992,932,2908,2264,2202,1875,2503,636,1979,2793,1169,1198,1714,2651,1987,560,1259,2962,2266,335,1495,1457,2129,1171,1008,1932,1215,198,794,1342,2305,529,1750,2942,1050,193,611,1409,1670,2817,1637,2394,1189,2797,2839,2727,1358,2110,2388,2605,2856,2987,1735,2259,2371,2061,1652,1123,2829,1617,2658,632,2043,1160,2038,1907,2765,207,2072,1380,2766,2837,2124,2044,1349,725,2522,2112,1161,416,1707,872,1429,1193,2113,347,676,477,2819,2474,2546,298,103,68,1375,427,97,2075,1397,553,479,1147,2452,1513,1310,530,1613,1746,35,2790,737,484,724,284,438,326,1232,701,1313,279,2132,762,2331,2830,793,2679,1721,2728,294,2748,1917,1210,2152,317,616,558,2791,1531,2040,2335,806,2284,1667,1088,1494,1539,226,2025,2892,1773,2435,232,2021,2141,554,1873,2521,1892,1081,1695,1224,2411,1599,2325,1599,1509,842,490,1081,2862,1358,2271,1508,397,46,777,448,609,2526,258,1168,2846,2841,664,2960,91,645,2152,1998,1452,2283,754,2288,680,2896,2964,1888,1260,2884,1560,1610,2047,1537,2163,2826,476,2460,125,1839,589,1424,2699,1574,1402,1315,1653,2899,2326,945,1725,1651,578,844,1676,2154,543,2724,1721,904,693,1276,2994,2494,173,2116,2392,1873,901,1495,479,1698,1297,1298,2901,1577,143,255,535,2360,2486,1622,1189,2728,659,2105,1450,1837,217,354,1460,413,1126,152,906,1599,2325,1178,743,434,2450,2926,1265,2171,1966,1624,133,2151,2761,1152,1727,1789,761,1443,1790,846,1842,1217,2674,1592,48,1132,2434,2065,283,625,466,1911,871,2577,2138,2054,22,2543,1104,170,1006,2767,1929,984,341,1418,1835,102,1239,2399,2359,2506,1834,315,453,2478,2994,1422,58,2594,714,2035,1074,80,2416,2703,1748,1990,1476,1955,2000,907,1999,1042,351,576,1659,2749,1325,1649,929,1483,2916,2084,867,387,2926,971,2417,1797,2703,2577,2531,2510,2427,1096,1285,985,1938,1037,2136,1587,2982,1741,2931,2659,962,2390,1482,2434,130,440,1866,1846,1298,1278,1525,2745,2565,2653,1779,2209,2937,101,216,1108,2734,1876,2635,1884,2787,206,1139,316,2698,576,2254,2159,2020,2939,2153,599,1493,2053,2446,1900,2617,1831,2988,1561,2512,1842,1857,2169,515,2953,1141,760,364,941,1228,1831,2483,472,2167,643,2553,408,2421,1081,2814,1332,954,1833,1621,1435,1721,1367,2444,862,1120,325,856,2154,1165,1145,739,910,2661,885,2354,1246,2457,597,1330,1733,893,1236,2168,2835,2716,692,2597,1071,2858,1794,484,1884,1819,1078,2898,400,2514,2634,750,2970,480,2967,1895,1091,247,1100,1179,1451,1125,1005,1078,802,323,2158,1546,1524,2715,61,691,458,2798,2776,1248,2826,206,623,1299,604,138,1816,2133,438,965,1227,2726,1260,1470,1478,186,108,574,447,2420,849,285,404,233,1397,1532,1121,20,407,2582,798,2916,2860,2944,1964,1794,2202,1289,241,2240,944,2189,2197,1994,1851,2047,664,1920,2770,396,818,111,2299,2111,2912,537,1783,2575,2608,2359,2214,685,1219,1950,276,551,1829,2998,2117,220,1992,2638,2222,1970,538,778,661,1511,877,997,1513,452,2671,386,1489,2908,298,856,2266,2806,1318,2100,2194,2428,2583,696,2533,66,1570,2425,615,1444,967,2653,1882,365,2884,1837,2451,39,2541,1100,2188,975,2428,2634,457,122,2702,1435,2319,1720,2149,2341,2451,553,149,167,1954,309,2417,441,148,2143,2368,985,2486,2575,1867,1325,128,952,1049,1375,2247,1558,2306,2565,747,1821,2213,1777,698,210,2305,2937,1650,1010,2999,2502,197,1733,2894,2362,2684,2717,1794,845,504,250,2601,221,1518,1733,2850,2044,1430,1880,1091,1537,2349,1139,60,1555,2134,621,1603,917,1996,331,1813,2352,1878,2815,2215,1590,571,2800,2075,2683,2820,1190,385,757,2794,2295,1579,1779,949,1612,85,1721,2727,622,2066,2091,197,853,557,2464,171,810,1686,839,109,1265,423,2168,1419,2463,298,2459,1252,1623,1282,496,454,1974,2038,937,2965,1524,433,1280,2410,813,1250,2013,339,375,513,431,1249,2688,2318,1053,1737,2057,2124,1593,2484,147,1145,69,2380,1830,2573,565,1397,1143,2987,2454,1741,2977,1248,745,539,2006,2241,256,1798,1431,1799,2263,751,368,409,247,1826,2073,1682,633,541,1397,1841,2115,567,2976,1572,1750,2573,2393,2455,2080,1289,1199,2502,2021,1454,1852,848,2162,935,484,1136,2680,1231,2988,48,2589,1059,2217,339,2020,981,2606,1995,1837,1382,946,973,919,297,222,2598,2769,2309,2283,979,705,2437,1796,2781,1876,1497,1849,1160,2355,2624,296,2487,2890,179,1893,1150,1066,410,248,584,1851,209,2842,212,681,2871,2944,1423,1266,166,478,2282,390,335,477,247,668,1108,1909,531,1155,928,2302,1383,1393,2673,1031,1133,2877,1965,1862,424,296,114,397,689,2593,1414,2096,221,601,2483,1173,1755,1094,78,2578,2751,2149,2803,44,2384,1127,2618,2569,1772,1585,981,251,1569,1712,2851,56,1047,2084,239,2978,1474,1609,1344,2917,881,2537,2120,52,1591,1973,1078,2150,2968,812,2949,2277,2049,1319,1768,32,2460,672,1263,477,2619,2496,42,2454,313,789,809,2602,1726,583,1317,1366,1020,1878,1190,1188,1137,2770,1414,628,813,1560,1930,431,557,782,1851,2786,506,774,535,848,44,2154,1384,401,2550,218,2615,2876,1958,1386,1358,858,553,2706,687,1804,2122,1676,1470,507,1222,2170,57,332,875,814,2047,2824,1889,2393,2327,1739,2094,2264,2615,1726,461,1699,1430,646,1483,1915,631,264,184,2550,704,2287,985,257,479,2601,2651,434,396,244,2464,2299,2637,2340,2009,2917,1934,2284,632,1958,586,2521,2197,1948,2689,744,2519,1333,2730,749,8,459,1721,693,1504,1038,1499,1031,942,6,2324,1602,760,2526,629,1773,2179,675,1394,2062,168,2100,2221,244,1233,917,640,210,2117,44,1574,1123,2252,771,2573,430,2284,1903,2422,1227,2681,1450,1975,326,1521,2580,1834,573,1052,2469,532,1571,2776,2498,221,1660,867,139,2155,1689,2392,2739,2795,1151,1221,1281,553,914,1488,1230,239,1113,1658,580,1216,1981,465,2402,1594,2454,125,1021,1443,1217,2803,2135,1117,1789,1838,342,2588,442,2429,1268,1129,2492,455,807,1921,338,2279,1367,811,1625,931,1293,787,511,2504,842,492,1511,281,253,984,2428,1044,574,704,583,985,1378,2641,1094,1796,647,1526,206,1265,410,1431,737,32,2893,416,2357,1056,1122,158,94,2446,192,1165,159,477,2987,49,2354,2621,971,1450,2183,1812,1716,287,706,2,1401,1629,1085,234,2513,1107,2990,2656,4,897,463,2769,487,1695,97,2664,2082,2983,249,1868,2206,2001,952,27,1415,1250,1296,1049,1198,2604,1741,2464,612,1808,2619,421,181,844,2798,2466,2573,1015,1397,716,498,2888,1485,2932,1188,2793,1795,1083,2974,2129,1072,518,2329,1571,1534,966,2281,656,1517,2789,1880,6,931,132,958,1591,2307,2432,760,2226,510,2374,2130,1460,1071,1080,632,2295,588,1772,2073,1560,822,1031,1322,2255,1010,1537,2611,1879,2231,1591,1908,534,1989,33,1596,1877,698,405,469,503,2093,2921,249,1671,2443,2945,2455,2789,2446,191,870,2521,15,954,1508,1362,440,224,299,925,1766,1298,2618,1877,1357,2292,2295,1531,593,2462,818,1407,2772,747,2175,2466,2505,293,1905,619,1929,204,2393,2910,663,497,2574,816,952,2379,2890,267,1070,4,1294,2359,894,482,1110,552,1432,40,986,1368,419,1204,2648,2947,902,982,386,824,1990,2172,1563,1951,2764,530,2876,1055,855,553,1312,2328,660,273,2059,1879,2207,2606,1964,2129,1351,2838,149,815,2054,1152,2903,1211,1380,436,141,1401,1393,92,2872,2432,1567,988,1372,2348,2924,739,1265,425,436,1870,1256,2817,2237,1983,21,2313,2851,1462,590,298,557,4,1595,1738,405,2552,1890,1289,325,2899,854,13,1941,2575,1977,837,1563,1537,2872,2260,430,715,2934,1637,2026,592,477,2657,2796,1513,2822,2047,1031,2461,1403,233,2923,2292,260,1805,208,1363,634,2207,1199,156,1369,395,2125,2492,2421,661,366,524,2811,1928,1958,665,12,2959,1425,2849,1035,291,1936,2177,401,2065,2666,1317,816,892,912,2577,1866,2301,265,1756,755,572,17,1801,2830,1670,272,1918,2698,1933,2276,2497,1595,1081,843,113,2996,1772,2230,659,119,1321,392,1693,915,470,2790,2788,243,2829,2627,1521,2336,2020,2994,75,844,1846,242,2869,534,215,1616,841,213,2855,2227,1615,2315,1666,758,1102,1663,2644,2659,2248,1212,2768,235,1111,2748,1527,1063,2239,1097,1483,1614,1788,1772,642,2476,141,1842,351,1306,2562,41,1156,551,2930,755,1794,858,2385,535}

    {277,1275,898,963,2374,1928,1840,2157,1947,650,221,462,458,718,1279,415,1,1612,795,2874,2,707,197,822,1145,1976,2384,473,1646,647,2406,2515,2165,2508,33,1937,1035,141,1980,220,2927,1404,1428,853,1981,481,1322,1196,2588,476,1248,2341,2534,2923,1062,2250,2702,1836,656,2613,2718,1417,1878,2986,1290,1551,2816,437,1245,1885,794,75,329,1276,2464,57,818,2429,2627,1806,2542,949,2736,2466,1114,2971,1521,239,926,136,2211,1557,1243,669,2511,441,298,1839,1897,2232,858,2179,473,2690,1948,350,913,87,2466,2376,202,2813,2321,1091,2960,168,1271,2074,810,450,2076,2070,128,2641,129,19,2031,1758,1065,835,2438,1612,796,520,2031,324,1789,2484,2227,2623,2551,853,1696,2713,1867,2504,2369,2230,382,1616,124,2843,2120,2989,1643,2408,2453,1747,1528,551,37,2403,2902,680,38,220,71,1335,1512,2989,192,2,2693,2048,1213,1262,160,952,2911,1601,2957,2490,1036,116,2473,1039,341,2568,126,2616,1942,464,320,350,1540,952,2747,448,2337,532,2128,2370,151,1243,553,920,1130,2048,829,2705,607,764,1261,278,1890,477,1400,1018,688,1457,2557,1031,2614,64,2590,2753,135,1185,1012,1081,2946,2872,2462,314,2577,1163,403,879,2819,1662,1126,318,739,1988,1068,1423,799,1004,2773,2966,2722,1921,2741,1313,228,266,324,1257,2423,582,681,1077,2264,1143,1049,1583,1182,919,2848,1872,976,1622,2246,1964,2549,2050,808,2359,1005,358,1342,398,2502,1469,2896,2118,429,300,2375,933,865,878,2480,5,2125,2786,29,983,1109,2796,1293,845,1191,2890,1652,1665,616,1026,1318,446,262,888,2126,2639,262,2322,1743,634,1673,2925,1771,1604,2409,1665,391,2653,2098,1652,1702,858,713,702,1645,823,2318,534,1674,397,2223,1422,866,1328,2716,867,489,1163,1630,1772,2712,34,1435,1601,357,832,1090,1782,1263,2220,2923,651,1037,835,1150,2606,2671,1859,2537,2666,2470,474,1667,701,1459,981,1469,1784,1241,2465,1213,2521,961,2439,479,602,819,2208,2535,131,830,2986,1362,1032,2287,2019,2321,1642,2982,1340,740,2278,2362,951,2299,1646,1011,497,2215,1850,199,395,477,2050,1956,1145,1341,2922,311,1429,1217,2466,1809,1367,2160,2152,967,1376,492,1893,2630,479,2761,2245,720,1370,2499,2359,1971,1742,1608,333,2840,659,2050,1249,1778,1024,602,1273,2901,518,1249,2212,1873,2245,434,1605,317,183,1533,667,231,2175,187,575,229,2740,757,2375,907,2702,1824,2249,2947,2655,2952,1761,2432,733,1167,1803,1314,2554,1751,385,555,2537,1864,1083,1289,1424,970,684,300,2485,1337,1312,82,180,2168,120,865,2745,426,1899,47,2119,1240,1620,418,2063,855,729,805,2628,2842,1188,2389,1952,397,2339,909,480,543,544,2032,816,2503,280,2566,1703,1486,1929,1298,2462,2844,1175,1412,2392,1834,686,2532,1733,2210,144,1588,514,1430,855,1644,936,2388,32,2694,2694,803,55,2431,2147,731,164,196,1159,499,2550,2660,2926,510,1735,2301,2672,1246,1948,2174,1607,2615,2977,1764,1111,1662,2375,675,972,2188,2707,1620,2073,330,1116,2372,1636,1642,1061,2821,2714,2065,2090,2082,83,2954,2247,2645,1643,932,2065,1416,964,2882,2285,1767,1413,146,1593,360,2482,2327,1586,1481,127,2823,1798,932,2524,1114,2363,1345,2931,2786,763,879,1570,2861,210,2221,527,295,1919,821,1652,2884,2038,2916,1974,1074,1154,2488,2771,2410,1104,1527,2038,421,1310,2591,1456,2399,1439,53,435,1702,1158,2521,2673,2687,568,2383,458,2539,1635,1535,169,267,1956,1982,2894,2161,2119,975,887,1625,1858,955,1359,707,1100,1755,118,959,1743,2551,15,2666,405,2221,572,63,2952,214,2970,323,726,2259,1630,2323,2016,2449,1798,2827,1529,996,1642,428,2466,984,2218,122,402,1972,199,1025,1104,1499,861,2962,1251,94,1715,2256,1367,409,2398,1677,495,2143,618,324,413,2298,178,347,257,476,15,1188,652,296,2372,861,1577,1591,69,448,2507,1568,2777,101,457,1631,325,110,2540,1562,1705,986,1498,423,0,2299,2908,1100,1452,1051,1307,467,1906,2517,430,1535,2682,2845,2496,797,2087,2396,2683,2266,434,1131,952,1654,1757,664,2042,2739,698,790,2831,2873,2056,2066,1818,701,2280,2371,943,759,2525,2045,2828,1536,168,123,2267,2354,2638,2522,2832,259,221,1069,2567,1772,1075,1188,474,2522,1645,2694,2065,1360,1447,1869,1261,1902,825,1784,171,1112,1498,516,2732,1550,267,1245,1792,1430,474,398,683,2584,426,2410,371,2153,2490,565,1532,551,2740,447,635,179,1479,7,689,377,2275,2354,1331,2393,956,1050,886,2579,2664,4,2115,106,700,2935,1935,38,1331,1302,1090,936,2306,576,2680,255,567,1526,431,2393,134,1043,443,2530,2058,2943,983,1192,493,6,2402,2755,1392,54,2985,2556,2358,2556,197,327,2551,2634,606,2646,1251,2068,541,1523,1578,316,352,2125,1040,1914,317,1174,1095,2525,389,2341,1182,2721,2359,1214,752,1920,2336,1445,192,2855,1019,2195,2322,2997,1008,2295,846,1502,2752,2812,1351,262,263,190,26,2338,1639,1351,585,2387,601,534,2097,2627,174,307,1947,2551,392,221,2890,2981,6,2381,2220,359,2979,2485,411,2658,838,1833,2466,2435,1831,867,989,2274,895,1953,1655,430,661,1525,2186,2290,51,1415,311,929,363,984,1581,2911,1097,19,1526,978,2029,2341,297,2495,811,2453,2482,1560,390,2241,1943,2108,823,1452,986,209,850,2458,1923,1855,2259,1510,1625,1664,1747,310,1866,30,2373,1304,682,1128,1820,1179,673,783,2451,2435,1195,474,2759,77,2645,1235,255,2231,774,1146,1374,1809,458,2879,2204,1520,1207,2422,2511,1319,86,2895,2316,2652,1932,1250,92,2268,1365,2986,2503,196,2811,454,2156,1236,2126,1045,1350,460,11,987,813,2486,2948,70,492,839,385,1455,2395,2406,766,2563,1071,1991,2641,981,1884,2985,1131,2924,2043,1703,1700,1582,1412,1519,2357,1488,275,1390,477,338,991,55,2808,1732,2142,2582,2779,1440,1272,1468,411,1369,1309,665,245,97,2203,1559,2568,2106,1562,1796,1734,2366,1786,1132,1853,2955,1999,276,1486,2268,924,2083,2156,659,581,2700,2946,1060,105,694,971,499,103,2311,1484,1863,2149,1121,847,1913,2954,1295,2257,2189,2969,863,1351,1446,980,609,2918,1152,2769,2441,993,528,2470,899,1747,552,2054,1226,1470,2984,2047,1596,720,1024,2827,1961,1975,36,1616,2033,2810,2225,2580,2516,2137,399,1074,1652,1686,157,636,154,2339,545,1186,1973,1436,598,2971,769,2242,2115,474,2357,999,2157,2870,2892,2952,2066,2872,1163,2192,835,782,446,1137,2615,1529,955,2552,855,322,2473,659,1379,439,1157,2929,625,2018,645,62,1145,655,535,1893,947,70,659,379,2521,2683,599,203,2499,1347,1315,647,2508,210,2483,2960,1961,1316,1501,1089,1960,86,1213,501,2554,1793,1265,2158,450,500,2978,317,642,581,366,23,873,2887,1401,1348,1179,695,1924,1182,80,1605,184,2762,1326,367,2364,1818,1402,1808,2573,1500,2994,909,2640,1005,2600,822,1560,908,2182,1916,850,2507,1721,2995,2048,2179,215,1545,4,1460,2038,1832,2132,1893,2465,2625,788,2054,2804,325,1443,2698,1886,778,1371,1854,1678,2065,1510,1235,1318,727,2162,1003,2092,81,1946,1847,1358,831,701,1845,2971,2187,1336,364,2894,2074,569,2055,932,663,1017,270,1007,1952,1843,2599,2759,1076,2636,1914,2863,736,1229,2119,2708,880,2555,2303,779,594,2465,2200,2372,2217,1254,317,86,173,1685,1561,1628,786,1602,212,634,2212,2295,1710,423,1665,1611,1463,1022,2562,1663,2962,504,2770,1572,718,211,2837,2694,2570,2830,2956,2757,1078,413,2,2941,934,2764,2267,1408,522,510,1020,2401,1046,677,279,1718,2708,1276,2770,834,1729,1538,880,2391,890,2606,72,955,369,2912,2039,592,241,861,412,784,1148,1708,66,1174,2765,210,869,1932,1581,1087,1464,2166,2223,535,1943,620,1326,458,938,2817,2251,2123,851,2470,1703,2346,2770,1764,265,2018,837,1780,2932,2217,1301,1069,2121,761,960,2454,2411,380,2421,1633,395,1220,340,2397,1881,2145,1599,344,1727,1683,1435,2291,1051,2474,2294,419,902,2695,1369,1850,1577,579,1597,867,1625,610,141,2188,1794,952,1524,496,2434,2770,2606,2554,2385,2076,776,1729,1302,2771,1611,985,1934,2305,2085,430,494,98,2921,237,1071,2051,2538,2914,750,188,407,1144,1864,2609,2048,152,716,2167,752,1465,1274,74,2890,1552,1060,2953,102,1338,451,1886,2866,1805,768,224,940,2867,1706,1299,968,144,966,1708,830,557,395,605,1225,2696,2420,471,1891,370,2786,1617,1100,2207,1406,2382,1180,23,422,2020,444,2731,219,2012,2911,1269,1029,1213,1460,2842,1563,353,2077,2920,1273,420,559,1636,2446,1558,1143,1505,2666,626,1340,281,129,755,1074,2984,55,2107,952,2456,643,66,1674,2317,1949,2412,587,2913,2151,0,2205,1491,202,4,2719,1978,2412,255,981,315,1968,389,1210,856,2743,923,2775,2404,1883,2602,717,955,1920,2466,1068,836,1270,366,2692,1201,1753,1190,2443,2188,2165,2144,897,1776,1417,95,37,2183,2556,1563,1525,2051,2939,2725,2339,2877,202,1340,2075,506,2305,207,765,2994,2262,1642,1775,2504,1894,1395,1267,2159,201,161,2182,2461,396,2826,662,2878,1502,562,1507,974,2501,97,1584,1648,1791,1008,1212,812,2667,16,1334,2997,2820,708,547,2064,794,703,241,1305,2438,775,186,2030,1776,2262,2991,2464,1300,1607,1846,2151,1591,2514,2356,2065,2913,477,1099,2678,2125,637,2550,1175,2963,2654,2865,1904,1801,2391,328,1903,1309,2864,1544,757,345,2409,295,2546,1295,1233,587,2210,120,55,741,1242,2786,2826,1959,1752,1656,2660,1716,2230,1692,698,338,1939,1563,364,867,301,1871,2691,1373,282,2763,2268,1576,2299,2700,1722,2021,2872,1562,2179,36,832,473,1974,1944,1481,2322,1499,656,868,152,1054,2418,1329,2852,2259,1606,1984,2250,2153,1103,2482,2720,2211,2113,1354,1106,2742,519,1005,2189,115,2796,1139,2708,670,536,2762,1133,1716,2951,710,2750,784,2737,2666,1281,1952,424,952,2102,1647,474,2398,1194,2972,885,1638,2928,2413,431,254,1364,1551,33,523,1441,2188,867,2900,2047,2153,2102,2576,2391,2376,2202,1468,2817,1127,2153,1402,1681,1526,1751,1725,2615,1878,1310,1525,2477,2980,2799,1162,51,871,2211,1943,877,2323,755,1698,369,941,1962,1069,2162,456,1847,2890,885,426,2336,1665,2351,2452,1837,2280,1101,2776,2008,2522,2710,716,615,1825,107,723,2238,2114,439,1053,809,337,445,2369,2571,2171,2954,1152,980,1338,2055,2772,436,1058,2055,1480,201,2889,1006,2559,2809,2629,2341,374,2322,172,2670,2120,1185,911,429,2556,616,98,2003,112,1997,1766,189,1066,2659,2774,2472,2732,730,543,638,2738,2389,895,2940,2709,593,2850,362,2095,1771,1760,2192,892,750,2551,1061,394,407,375,1066,2036,2692,2235,2208,1289,1437,215,1164,2854,470,2915,1458,440,2272,739,1723,530,421,209,1751,2797,1942,129,2994,2426,2738,572,1736,2781,1529,800,2903,294,909,1122,343,1449,1041,2950,295,458,1598,1408,2704,2251,2041,2310,2992,714,2810,1289,1574,2961,2058,1224,86,535,1208,1628,1187,617,261,2759,1943,613,2767,557,38,2316,807,2144,55,1029,2553,1768,775,2699,119,475,34,400,2481,2103,1514,1814,2892,2365,681,274,2224,1158,1755,2477,2146,2738,225,85,965,2296,1060,95,2551,2394,2229,2786,145,2361,724,2900,1372,1176,987,2308,707,1073,2375,67,599,2100,55,1160,2838,2716,1356,1981,1656,2414,1797,2829,658,2333,948,543,2130,1940,2880,1641,314,772,946,1480,2922,653,1313,1787,1841,1761,1716,867,2258,1626,2208,2415,2336,200,408,2464,1456,1152,1697,767,1865,2764,1366,892,496,1352,2428,969,1987,2262,2121,65,543,2211,938,177,775,2890,2481,1461,2456,1457,2024,698,21,2770,31,828,1034,1861,2151,2760,2770,1696,2765,1435,2164,1711,2735,852,1409,2347,1830,199,1268,2395,2548,99,248,2313,1651,2216,1785,1577,2073,1859,2303,2578,641,1343,381,2151,1522,2831,2761,2774,2238,238,86,2481,2420,2230,569,2073,1802,1945,175,1170,1117,859,1458,1512,1456,153,2676,1081,2400,656,1200,2446,2491,2936,1935,2982,2116,2467,566,1941,502,2663,1028,728,1772,2031,430,115,653,207,1038,2738,2763,1702,2778,1030,709,2393,454,1251,1182,2598,2193,654,101,891,2612,933,69,348,2715,682,327,845,431,2180,834,2907,1243,550,298,1828,475,2336,2466,772,817,803,2729,1166,1555,551,2847,1586,2588,744,910,302,1104,959,2668,2117,2314,2529,454,950,1531,2803,2190,1124,2020,389,1328,2089,412,1859,546,356,1657,1467,2953,1526,1543,473,31,2427,1618,2475,1908,2643,2183,1527,1573,1290,269,1896,1011,1292,2125,2811,1118,2912,2759,1186,2852,1581,1327,2790,2705,236,1945,1877,1808,2884,2273,488,1250,1086,683,2445,2471,1213,1210,1264,896,2669,821,2025,7,1601,2530,2581,1187,2269,48,2600,2452,1662,2632,1355,1908,226,592,1287,897,432,235,11,2780,1421,2908,1308,2150,2521,2731,2359,380,557,1223,393,2028,2189,2423,370,438,946,12,983,2780,503,1661,215,2908,1717,542,2345,2334,2378,59,2484,1843,2201,2698,307,1999,688,2575,2783,884,2218,1188,987,295,1838,1126,1914,2701,1399,863,2309,2941,473,31,2799,2976,2917,2173,2123,2458,1218,2215,12,2960,953,1149,142,498,1744,1033,2746,525,1656,644,90,2825,2314,2558,928,1186,2606,781,367,2149,2521,663,2745,2661,2017,1969,2971,463,1729,1559,905,205,1258,2258,2282,2841,1013,679,2089,163,791,1074,1563,2336,1255,2320,1664,524,2034,1679,31,2447,1411,1064,4,25,295,2631,2546,2396,2527,2647,1308,340,140,283,2122,439,818,353,194,2414,807,342,1237,1494,1810,803,380,2897,1131,772,1974,284,1485,2830,2406,1550,1559,2007,2549,665,77,2150,2568,2560,383,1108,1479,2653,494,861,985,2019,2909,2482,1939,2801,44,1650,699,2303,1401,1605,1967,2957,1487,2350,1584,867,350,1499,1149,268,1776,2309,1349,509,2935,1610,1344,1049,2936,3,1191,1686,2181,557,826,1149,2320,2679,2771,1038,230,2868,2330,184,2536,1539,2129,671,532,1213,375,840,2267,1389,319,1131,1015,2478,615,1673,2084,1823,2562,2180,2140,549,1276,80,2352,540,1130,517,2407,2131,1493,595,2419,2427,2005,366,952,1825,1915,1503,2273,1200,2586,557,2191,590,277,986,13,2458,1922,965,1177,1084,649,2069,2580,768,2770,785,2451,1921,500,2947,2585,748,440,1770,494,1728,1874,2297,2885,2841,1607,941,1366,228,2468,895,2861,624,1049,1445,2610,1653,1049,2226,553,608,2287,2078,624,1777,1826,1734,2161,972,2614,22,2982,1640,453,2494,562,1477,450,434,607,2457,2405,241,2398,833,1522,1908,883,423,2567,2305,2899,923,2872,2792,2066,468,1386,151,824,2695,1934,77,314,762,926,397,2471,2935,2723,918,705,837,2919,639,786,331,2399,1782,1299,2302,38,829,1503,467,2228,2353,1648,1552,1843,2416,125,722,543,2816,2785,2074,1818,1565,1091,2466,12,1915,2620,1383,1987,2182,235,484,2138,31,989,1278,2393,2286,2965,848,1283,1689,2653,955,1676,349,2027,1668,659,1197,2591,1542,1898,1521,1482,1687,632,289,107,1839,2293,2544,2375,483,557,2451,50,711,2970,1266,2293,227,2841,1251,410,261,1811,2153,1763,2945,2683,2532,2025,2309,1265,2395,2151,1677,876,577,2408,2896,1563,2523,1202,1724,1008,39,2303,2466,2687,10,2002,1361,2971,2615,947,1625,790,1082,1502,480,296,1043,373,2564,2434,285,927,1060,2232,2151,383,2246,1305,1716,6,591,225,2235,2377,1674,336,2244,2854,481,1915,1976,372,312,1262,1633,1249,2015,574,1198,2416,184,2353,1556,2653,603,708,1620,163,958,2169,1204,660,521,1275,1996,1320,1058,2100,2794,1774,792,1566,596,710,1622,1773,2375,2930,957,2554,1329,2699,2872,694,474,1029}

    895

    224

    Returns: 415797056

  102. {916,2990,2052,1987,2338,1697,515,2171,962,1494,1714,1972,2478,2463,2602,1575,122,113,1762,2312,661,1111,1148,1223,947,2339,2488,908,38,743,1456,2240,2612,594,1162,923,2473,936,632,2260,2909,2886,458,703,1316,1499,1146,2389,1801,308,1361,653,362,221,1175,1983,2900,1126,1223,665,2237,712,2850,1372,1605,2171,2555,827,1053,1775,2488,2154,778,2938,1537,2077,2694,324,2735,564,1552,2876,2573,254,533,1172,1549,2592,2914,1620,383,2039,1150,613,310,1595,2160,2624,961,2377,2824,2558,430,2665,1023,2898,374,2472,241,2451,1607,1664,876,801,2503,96,1283,2221,587,367,2965,2340,1978,231,1931,2746,873,667,548,1927,2354,2491,2448,1228,2280,2988,2410,1325,772,2845,1563,1204,2199,2629,1320,62,1794,139,2139,2346,1057,2498,1000,366,356,253,645,232,123,539,2887,2066,46,1884,1170,1084,2514,152,252,145,433,2563,2850,1872,1627,118,706,82,1971,738,2756,676,840,1311,1054,474,1883,2639,2797,1722,1565,1611,2760,2741,2790,329,633,2540,191,449,937,1438,197,2270,110,776,1200,2228,64,1336,948,462,2602,2812,540,338,1677,2044,1171,2877,1915,2727,1551,1150,551,1338,2448,2449,2680,2366,2983,2999,1026,2581,1672,2819,2892,406,339,587,2603,1917,1996,571,1889,937,1178,83,99,1578,2309,152,2987,2356,2696,319,1327,796,377,326,2768,573,297,549,480,2505,211,672,1439,2922,2406,1225,4,1699,1945,114,1691,2597,488,1522,2296,2236,2247,2650,1476,2051,2066,2614,2167,1580,1661,179,724,1377,1184,558,1474,221,2495,216,959,798,433,525,696,2102,2787,228,1527,2859,1629,2937,41,235,2384,443,2884,710,2254,1492,1877,2629,912,2812,590,2229,2293,2904,2,1883,182,1298,983,1113,2207,1754,165,1648,1531,1005,2261,1102,2953,1671,2663,68,7,719,687,2622,841,2248,2891,953,2946,24,2032,38,2129,158,738,2439,758,497,1960,163,2340,593,268,2370,898,2154,2197,2005,2843,1736,1919,820,2505,1343,2793,879,2943,1337,892,2812,265,1306,100,54,437,767,1791,1190,2354,1558,1828,1166,423,1589,709,1092,556,1323,2518,1083,1957,2015,882,456,1431,224,1507,2403,1192,276,977,59,538,553,920,146,1808,1539,456,1114,1000,1575,1693,1180,1321,2323,1046,691,2878,1808,504,1435,549,424,1313,1389,379,988,1772,1395,1965,71,58,1406,120,1783,1599,2968,2060,1023,2779,1314,1667,2460,914,1615,2260,2201,2233,617,935,2518,1656,922,2032,2307,940,2621,2378,2963,1367,1960,1972,1631,1625,1715,1490,1405,1278,2549,446,298,2087,2107,1934,2162,2220,2928,942,1062,2131,2236,1653,2558,399,2396,1514,826,710,1694,2569,1807,748,2073,91,2616,49,2307,637,790,2467,517,2270,876,2211,1195,1391,2447,1211,77,682,1443,1609,1756,2791,724,290,459,2853,2127,2163,1444,800,1283,1937,1389,2670,35,1679,1517,14,550,2740,836,351,2353,917,1705,2391,565,1458,1477,2648,1804,2529,2289,2045,518,1403,1514,2474,2544,1387,1203,1566,2257,2373,1703,1168,2638,2299,2712,2144,2050,675,1764,325,258,421,981,83,2851,2982,38,2165,891,13,1764,911,1475,1533,1436,2576,2537,1959,2934,958,992,189,1225,2288,2442,2336,1514,2918,1623,420,771,188,783,2171,459,1902,2715,271,750,1819,2520,1511,57,2458,1040,282,386,2810,9,2346,1323,419,2541,1549,695,1803,345,1521,167,1053,2398,2521,861,1267,1175,1498,2976,1815,2700,2824,586,844,947,685,475,1493,2143,434,0,162,2278,1174,720,2679,1128,2429,1315,2958,1418,2423,1301,118,2536,1837,1903,1489,1684,2634,2514,2043,2469,1086,2547,1505,546,744,1326,2786,2134,23,2668,2888,2777,1404,2333,2231,1611,1045,971,658,2222,2069,1107,641,2820,834,2945,2808,1342,2742,338,1972,2011,1735,455,2762,2162,615,1456,2703,1110,2450,1375,2415,1546,2919,2908,653,439,2763,530,2790,2933,2936,2881,1107,2780,834,2611,984,118,633,2054,1184,2431,900,2909,2403,710,2993,109,1835,626,734,1957,332,1688,250,2423,27,2028,265,2909,396,2691,528,57,623,2210,1761,2855,513,2708,1624,565,859,2834,100,978,2964,191,1956,1520,2106,2308,2203,1058,2070,1829,265,2566,916,2719,1804,2046,203,1836,1263,1291,1575,1946,491,2859,2344,2418,1443,854,531,1376,1664,2169,2356,1536,2212,1535,526,429,1490,1158,259,1190,2912,1258,1675,1627,1825,2920,258,1685,2383,2596,183,2388,102,446,591,405,530,2383,263,1221,337,1170,429,1761,2059,650,2686,10,2959,639,863,1308,2395,1908,2180,2333,2549,160,1764,1914,1934,546,2988,1584,331,822,2166,1265,2725,593,861,602,560,2778,2283,19,1689,2707,1990,2233,1978,2138,710,1413,1022,722,485,75,2613,1832,57,132,1771,910,375,1002,543,2133,1884,1573,2702,1122,2523,1621,1961,407,1195,2109,401,1624,2572,1859,1580,2630,1416,1867,1342,553,2954,2051,771,2654,1055,2719,115,2582,1948,1014,1474,1900,2456,1408,2464,1743,1169,1912,2837,2824,2063,2726,1843,2020,2456,1298,165,41,1440,2568,1160,712,305,1131,2287,350,2098,152,713,2387,2703,1844,2126,241,2211,2832,2526,1705,803,272,699,2493,2937,2923,397,791,1587,1181,1540,493,2299,2620,861,57,871,2466,902,957,2970,1256,136,1569,1626,102,1651,2247,1848,729,2335,1070,2063,1432,1026,150,1989,2891,303,1514,2023,57,1583,1898,2639,692,2797,2901,2407,2672,1071,1888,599,2464,1667,2770,544,2614,1330,681,552,2378,947,2099,2516,2117,2515,2389,759,2679,1489,955,2596,1541,1776,2288,2459,2724,2585,1845,2547,1904,2579,1822,2717,319,209,2443,549,757,713,1840,700,616,111,148,2746,2293,2476,2703,1073,2180,151,359,1224,1368,1433,1917,704,138,569,2401,169,290,748,2636,2033,2175,1813,1921,2278,2090,1007,2838,1723,2376,2494,2158,2085,2899,1030,2542,2905,726,583,2356,829,2018,238,1777,1845,300,2504,2667,968,2216,1081,730,891,302,2815,2644,1921,2927,2512,928,429,1374,1178,1675,1858,1489,1724,402,2519,2116,22,1375,2778,2847,1543,2331,1995,506,2975,594,1655,1630,993,2666,1878,499,676,455,587,789,2944,1059,1458,1303,2438,1910,2114,1265,1880,2733,465,2458,540,276,2185,2651,88,1385,1700,2906,995,476,1632,1310,1626,2177,2031,2288,2840,180,1047,289,69,1267,2968,114,1615,2509,1571,1482,53,23,2034,1953,1855,589,2965,1902,2783,2939,2854,1437,944,2966,1349,392,1185,2247,1302,1471,724,1322,1605,1740,496,230,2916,763,241,2022,1927,1174,1191,2800,690,70,2531,1889,2976,2427,1032,96,2460,2895,97,1587,1486,2481,2886,2698,106,1020,2910,2693,2991,1010,1178,723,2444,1511,244,2883,11,270,1618,1616,1746,2962,2768,2037,2241,1884,1141,2792,1279,2854,256,438,791,2293,2463,2686,1825,311,1288,1172,546,2270,2091,2018,926,52,686,1452,2191,1794,1683,1831,1120,987,2067,1911,1567,880,194,866,475,2676,1954,1785,1738,2458,1085,1745,2674,345,2630,2680,2615,1448,159,411,410,1511,759,2681,1967,1733,2352,934,1470,1806,907,2816,276,1508,821,2085,1975,1168,2479,529,2033,1115,691,1619,26,2857,1135,2126,2799,518,313,1520,475,2862,630,729,1377,530,1260,687,939,172,207,605,1819,825,1430,1474,1075,630,2698,2923,333,1832,1631,1320,2418,2403,2775,92,1206,1840,2162,814,2248,2816,141,509,365,1328,392,768,2354,2582,2097,1386,1577,1399,1560,2498,2877,2846,1312,1753,2826,2210,1692,2633,172,2908,761,191,1980,2616,1560,2855,2452,65,116,2223,331,2976,954,2679,267,1224,1033,115,366,1561,2897,962,2753,875,1639,1754,342,1314,2249,1821,1533,503,2663,1584,2077,584,2679,1647,1791,2362,671,1412,314,878,2188,1907,2499,2818,750,142,2104,671,1266,1057,2371,2257,2164,1392,1529,446,2809,2875,2609,1622,30,179,1949,453,1663,1643,2222,1815,2370,248,2061,1217,460,493,782,1265,2669,154,1293,906,996,270,2771,2477,2583,2433,1149,39,1793,559,1051,994,2624,978,2947,1980,183,1374,2944,2197,1513,1716,1781,1750,1989,750,2605,578,2751,2186,70,885,1318,331,1136,1353,1759,133,1615,2912,1319,1434,1567,2078,1682,1332,1086,998,2306,1002,1125,1403,2759,790,2120,2602,806,635,1958,2803,1078,2658,2101,526,2272,611,641,133,1924,1979,2131,2183,2919,2898,1635,2506,1216,982,1576,114,769,1491,1562,1047,2239,939,621,2855,1354,2078,870,1659,2971,2913,1687,2333,1044,2489,2617,401,1497,1535,1952,825,2821,2687,233,2454,1856,2933,482,977,551,2078,163,580,1234,1005,2702,641,2074,379,1900,124,2554,1502,2992,1052,21,1530,1301,1645,511,2832,1300,753,2762,1246,2030,2153,2063,587,489,2271,992,1470,2826,1015,264,2015,325,900,2575,2783,1586,2904,2515,1538,530,1407,1437,2542,2341,78,641,2759,1005,2063,1567,1863,1565,2863,7,991,663,1891,1818,2739,622,1815,443,214,2274,562,1677,630,452,2186,2492,1890,1174,1585,1510,191,1188,1072,1911,1009,2989,864,2851,19,987,2012,1843,1832,421,47,2388,2613,2083,2440,2546,23,2872,2904,1923,385,2058,1374,393,390,1136,2065,1788,2622,597,2623,2812,2019,2915,897,765,1688,726,2897,2916,536,1229,2266,779,1260,2502,1398,471,1815,2328,1802,680,144,1458,713,1535,2724,540,467,66,2931,218,513,2375,2556,1189,1789,1940,2086,2439,1399,5,879,269,1132,2322,2870,2513,357,2346,1335,2851,2805,1670,386,334,175,2516,1093,2911,2434,972,2776,1531,2504,1394,808,900,2433,698,2634,1075,1216,1637,258,804,1790,8,2332,1551,2697,884,516,2858,1015,1040,2719,2065,2024,2069,1871,2711,137,887,1178,2118,2235,623,1697,1463,687,1867,2029,2318,2461,2587,2265,2254,1623,2629,210,710,2629,899,2830,597,2752,536,2404,860,795,327,1623,2830,241,789,1620,367,604,2601,1875,43,22,85,1668,1220,2662,2400,35,1649,606,2745,649,1263,364,479,213,2450,1451,2367,2105,117,98,455,543,2659,2171,2154,2658,1464,641,1185,891,1918,651,738,647,93,2939,2890,2589,2973,1972,2503,2254,2950,1997,2305,765,1381,1040,1986,1765,2523,1548,1574,206,904,2103,1310,551,1596,1316,1859,2738,257,845,1916,427,1539,2967,1287,477,477,2544,1086,2301,2086,2793,1420,2280,1681,2099,2171,767,1618,145,317,381,2532,882,207,320,881,165,1884,2482,1024,1053,2618,2897,1671,1712,2818,1197,352,1956,794,1357,99,2666,86,1450,1435,2764,407,2375,2290,982,843,283,1650,1025,1427,1900,1424,1178,351,254,2502,1695,212,1355,1363,601,593,261,2781,68,1328,688,1520,2157,198,973,1633,16,1011,2508,1277,2979,831,2810,1483,2394,2615,2309,2416,392,2533,1633,1853,717,1619,156,1794,2296,2806,1260,1339,1328,1399,1956,1905,1876,1886,715,2781,103,2622,2013,1086,2794,159,2018,2469,2309,2776,162,598,1828,1272,502,2244,1907,1106,251,2187,1105,2900,1792,1968,2744,1799,26,1698,280,745,1454,2237,1029,255,1346,218,1179,1832,485,1069,2705,712,661,12,2584,2639,2214,495,2622,2366,2490,2457,1640,2133,654,558,642,1504,795,2430,96,44,785,594,1967,1120,2059,1497,660,1809,47,1667,1028,7,1876,1510,1267,1874,2749,557,1635,2230,124,2178,2577,2562,620,1474,830,2151,2414,1343,1661,1701,875,1682,324,2756,117,730,819,1933,1329,2786,2719,2460,2023,2908,2051,54,929,1839,1001,117,2554,33,1830,2194,1828,1961,2141,2320,1253,1877,1660,1309,694,1949,2695,1634,2222,1938,514,2663,872,1534,1648,34,1371,1267,2030,1042,1644,2653,2027,2486,2313,864,123,2631,2316,1675,1518,1225,2369,1174,2642,2587,2723,2903,826,123,1756,1443,1690,2589,2747,2782,347,2994,1714,1121,1864,2818,484,2924,666,340,1696,1098,1292,1203,2186,1669,195,240,153,2448,58,2830,2988,1885,423,655,2414,87,1589,1509,2284,2112,2403,2513,2894,553,422,2437,2932,882,1319,1851,2730,1881,722,1980,541,2308,2085,2635,2002,2553,195,1947,1770,2687,1292,1286,2830,1413,2416,1328,264,968,1638,2051,1623,1565,1358,1182,446,1448,1438,2637,411,346,1261,755,1006,2768,475,875,865,695,874,2878,1399,2718,2903,2033,2574,2819,2238,1849,1317,2780,266,1483,1497,2197,710,2803,1356,2108,447,1189,727,411,2619,1783,2405,1813,373,652,123,453,2191,2063,2388,1589,1419,554,2109,1230,335,2042,755,1222,2986,1141,342,1027,2997,1249,1756,1764,2581,1710,1271,652,2295,2106,345,2090,890,1105,1221,2660,364,2896,765,1382,967,2654,404,842,356,1776,1743,2221,1499,1134,290,2222,1245,900,1613,1298,2147,1996,2930,2462,2818,669,2905,780,1624,501,7,427,2775,2286,1747,2485,953,1999,341,718,1902,2339,2785,1690,1251,475,847,1015,1626,1745,1282,2072,725,2425,2985,707,502,109,2705,29,1649,239,2825,1606,974,1905,69,826,2794,2832,26,1336,2123,1826,322,691,428,1147,110,2435,994,1669,892,1295,89,1053,2363,2985,833,35,2200,2174,2635,2841,1932,1634,1220,593,2946,1424,733,2688,1145,200,2814,2302,1173,2196,562,240,623,2589,836,539,1619,1513,1052,1713,705,2201,2548,960,1865,1744,2859,2538,1657,2952,1153,506,1333,2046,1277,2390,710,1556,937,1222,1897,428,2978,1113,1145,2743,332,686,1062,2009,1091,1766,2,2162,1759,2918,1236,562,1161,2163,2301,2159,2806,2991,2165,2833,2741,1090,1655,468,2172,2191,1068,2156,1315,588,1810,939,256,2123,2741,91,146,334,1037,1623,877,561,2766,1572,2095,1074,1127,2937,105,245,1264,2228,584,2898,21,1884,404,176,688,1779,1502,1894,2731,788,1025,1593,1777,1125,2469,578,1511,1972,1529,249,861,1881,841,1929,1673,2234,1333,35,1977,2426,2310,2190,542,998,2535,2806,2153,623,289,2304,2373,2343,2472,2625,2710,2144,1945,1919,2642,1548,2726,1071,1397,943,2032,2954,2892,17,1498,130,212,1426,2119,2826,1905,1464,2008,1635,2581,299,2033,2430,2123,1523,2765,419,1979,1500,1474,2367,515,2505,2515,1778,710,1755,14,2278,2747,388,150,1832,797,1868,1089,1602,2565,227,2830,2406,1225,1591,2090,216,2124,25,2807,962,2564,809,1445,1184,1717,1344,2837,2064,2417,2355,1783,668,2338,830,314,2722,2425,956,2830,1930,1862,291,92,2738,2723,2607,2205,728,1866,2017,2348,1330,2247,189,1661,1748,1243,2383,1478,2879,1341,2127,386,2463,1593,1085,1767,1924,2617,2056,2114,2998,2225,1091,2654,10,403,1832,1869,1706,1362,1399,418,1921,2847,240,2647,2584,2048,2880,1342,905,2677,1798,1615,610,2844,1719,2189,760,55,638,2001,2719,2273,1793,2737,2510,1652,363,553,751,2757,1306,2965,2132,478,2862,128,261,724,2125,1941,2694,240,2302,1170,476,240,211,1989,1580,184,1704,803,889,1095,1371,1712,279,1722,1716,1242,431,2079,67,2658,1892,2260,1189,1094,1594,1294,2912,677,2976,99,2761,1625,2684,1603,1675,558,71,945,1562,2561,367,1383,840,988,1857,1442,2542,2374,818,771,887,901,2461,2854,101,2075,2626,1539,2278,2014,1484,296,45,2501,386,1724,19,592,2597,2115,2000,2181,2761,1367,270,1031,2714,2250,659,1684,625,2359,2984,360,1159,1736,133,284,1521,1332,1842,2104,577,1887,1665,537,2709,730,1137,1790,1021,1469,77,2093,2892,71,2804,2635,2893,1706,768,2420,669,2065,1259,2809,1225,2,298,1815,1747,2082,263,1048,764,1237,2772,1834,2435,1446,2053,1782,114,1734,2938,2738,463,1080,771,2689,687,2457,2840,1772,2115,753,2965,1774,1637,1943,2934,2589,2433,792,1104,2985,2651,841,2288,2317,2898,575,1642,1421,269,2867,96,438,1204,143,2946,2698,1305,1140,1546,2712,2809,1276,1077,603,415,586,691,2116,1171,2163,1447,2475,1424,1390,218,641,1165,1464,2155,573,1581,1779,2282,1191,41,225,1534,2872,711,130,276,2054,1,76,1861,2538,1951,1610,2155,2339,424,1366,1466,35,2104,2895,285,2599,1692,2984,923,1420,2482,965,2025,2668,695,1506,985,999,2802,861,1000,1705,1974,2856,1291}

    {1141,77,2895,1150,2133,2931,2029,1664,1133,1513,789,1727,2213,1337,1567,2876,1817,1502,631,382,2353,2523,772,657,2145,660,710,1460,1389,1239,1109,1470,183,1900,278,2968,757,740,2087,999,2667,1116,2403,1522,2402,274,1014,2542,1594,2691,2035,1113,828,2327,805,1739,2193,2154,1934,633,2782,1990,1543,1013,263,2852,1130,611,435,2772,1316,1225,1793,1621,2568,441,1617,1111,2231,2495,1729,2855,1297,714,2280,857,823,2673,2915,531,705,665,1304,1832,2132,500,2748,2373,2596,134,2113,2661,2005,191,2346,2668,686,1359,2431,172,2650,2256,582,1805,1894,2732,1944,1321,336,1441,2812,1741,2586,1318,1700,864,1340,221,527,2206,1183,686,1408,2554,2593,928,764,784,153,1748,2221,2068,1270,2645,2057,484,992,605,1551,971,1859,1731,241,2581,2076,658,2385,159,2869,1250,677,2131,2105,2553,590,2543,1878,1789,2887,2089,2378,2933,35,494,1178,2873,2805,2278,140,2069,378,191,1913,407,2495,428,2859,302,675,807,2445,1601,1722,2960,1115,1979,2000,1000,2449,1624,2718,1803,1011,2133,1260,595,597,308,458,2162,1596,2466,2937,191,949,2992,48,283,224,2080,521,1598,2436,481,1282,2649,2431,2004,2598,2355,2936,1008,617,21,746,6,710,1124,40,2554,1260,2505,1128,2431,883,1064,1705,2197,295,2800,2397,2969,2868,770,1905,2987,2929,2719,2702,118,365,2326,1219,2941,1235,343,2885,1870,1290,1634,2671,2820,1423,2623,2504,2491,1172,1268,1656,2553,2253,1246,1645,177,2268,1164,2386,2357,1633,2696,2747,2768,546,2281,2900,895,1162,495,1939,171,2406,149,1358,2755,2155,2984,1474,725,1218,1972,443,643,1848,448,2151,2925,2185,1048,1055,2402,465,710,1548,2025,131,2022,615,315,1719,1414,1791,269,138,2718,2499,2335,25,2096,2028,1628,1613,1771,494,1172,953,2948,1895,2457,2185,418,1352,2784,2995,1403,2484,345,1019,1593,87,1528,386,702,1832,2389,1483,998,2322,1135,2231,2971,2049,869,388,2016,1440,472,765,543,2301,1382,161,1083,2162,2325,314,122,2188,1452,2832,1951,526,1015,2840,205,86,2641,325,456,713,2058,2995,219,1985,1425,1595,208,670,2680,2904,2319,1588,170,521,2347,2835,1529,1840,2646,277,2322,1786,862,342,835,226,2298,1961,839,389,695,408,979,2671,2837,1348,2677,2371,584,2889,415,2180,1683,2573,1530,2865,1084,1475,2019,2545,188,2216,2780,220,2278,2574,1280,1263,1099,1668,2298,2247,538,2410,1199,1988,2300,1952,433,2482,1720,1455,1901,2100,2549,1998,1471,1802,559,2580,2578,778,1177,838,1972,1955,825,1223,1122,340,839,2368,1527,2636,248,986,1525,875,132,410,1567,616,323,1168,1967,2809,2211,2217,1483,92,2222,844,1191,510,133,2688,1373,574,1135,1036,325,2315,762,1333,1322,721,600,1549,921,1938,924,799,1700,2170,1960,1272,318,2817,1547,1170,241,2871,216,2260,979,2394,381,1201,2347,1235,1757,1940,307,2446,2945,615,136,71,1847,93,1482,369,1673,2786,2294,52,2406,1369,1666,209,98,872,728,724,241,982,2780,332,2355,2827,898,454,2860,2441,1971,662,335,310,2877,1229,954,1472,901,1350,2026,1617,149,1317,1078,1448,2082,263,2457,2567,344,82,786,2525,96,1184,812,2463,2850,522,1922,203,2171,1465,2930,42,258,1542,1396,392,2097,1485,2243,1345,2630,1080,2247,50,732,1633,2825,891,2809,2741,2574,129,2786,276,1737,335,1648,834,398,1580,639,2377,1332,1347,2328,744,2150,1411,1604,2651,1688,429,1549,1882,21,980,526,1225,2050,443,596,458,629,535,2244,2937,2552,853,81,564,193,512,1612,532,1624,433,1835,2663,371,1428,1564,1484,209,1212,133,633,1376,918,1861,428,1879,1475,74,290,2864,173,1752,958,2146,2388,2382,1772,317,547,1993,443,1399,725,2407,1174,2755,75,1861,664,1544,1956,1475,1847,1159,1605,1661,1996,1833,1858,1056,2141,1248,2630,328,766,1357,1624,2285,1289,1161,1420,2137,1808,1804,969,2862,1202,1138,599,2476,1653,710,230,2909,789,1343,977,71,13,631,2484,2100,490,117,235,2409,1149,2442,1864,896,2847,1882,391,1766,1369,2720,1458,932,1620,558,1101,2776,2327,1003,1557,1048,2341,1635,1757,1458,477,1722,2716,2093,508,965,1796,1548,2135,2380,1050,2326,1519,1474,2567,1269,773,2727,349,2921,2110,2877,2646,1116,367,1549,2424,2291,2724,1405,1053,701,2308,2671,1787,2713,872,951,470,41,1128,1703,1152,2425,1041,386,478,2423,1800,1127,933,1588,1528,2981,683,2823,2801,1178,1554,1479,256,870,188,1304,516,2704,1526,908,2847,1180,2633,2252,1039,2984,1117,771,1136,1057,2710,1524,625,2181,461,1706,1867,2851,930,41,1855,291,2865,1053,457,331,2976,1052,2751,858,1226,37,2568,1806,1837,2842,1550,1452,145,2234,236,2851,1861,1964,2652,2388,2191,2262,2199,914,2944,127,1097,265,1135,2,2062,1688,821,2411,327,2815,1475,2961,2017,2244,2678,2432,657,1006,2295,1135,2996,1969,2902,11,400,1835,20,36,443,2480,634,2675,2824,746,2595,741,1909,2887,787,1781,220,817,1299,2637,2905,1023,566,340,1187,383,1364,417,2335,2581,1400,1048,2962,1709,1854,158,1365,1379,469,1203,791,2886,1131,1235,1586,2149,2081,1249,1611,1131,1495,891,2869,238,1712,2777,1452,2439,2517,1726,2811,2198,2350,659,776,2295,2828,1412,568,2641,1916,2098,440,1159,2844,1693,2846,830,1928,2551,679,692,2863,32,2192,2200,40,123,846,1012,1310,1150,1198,2122,1753,1428,900,2119,2342,630,2448,430,1984,1950,108,2750,1409,1144,655,1253,2972,2630,926,72,2755,1657,1932,2256,640,2244,1092,807,1516,2356,1112,1838,714,2956,510,501,515,2934,2393,303,1120,522,2281,2618,333,322,2179,2246,166,1815,1893,441,1538,1555,192,2810,1841,2247,450,627,1615,952,2773,726,879,669,1507,1989,1170,327,411,2293,2942,458,847,1840,455,162,278,2698,2004,584,935,648,107,2138,1726,1423,164,1737,2365,145,1049,1922,41,2412,46,1463,2871,168,90,118,287,2206,1454,735,994,1457,1515,1812,2392,1971,2156,982,993,2227,1422,1711,1763,2546,1532,2301,519,2563,1481,105,335,2280,815,941,827,365,45,1108,597,2389,547,643,237,2942,1163,142,2809,1647,1272,1418,1623,1031,2876,2862,992,2880,2735,73,553,1758,232,1520,423,755,456,1550,1325,2571,1389,2527,749,2249,109,2074,1960,1854,76,771,312,1038,2033,1721,2913,954,427,2609,1488,1576,2324,679,1966,1949,2208,1319,2112,2133,1299,1167,446,2751,1662,2209,1972,683,667,2501,374,750,2794,1684,1162,399,2809,1716,1557,2964,69,1622,2311,2191,860,2194,502,2287,736,2940,327,2075,1660,1087,2644,2325,18,1480,1998,2066,2866,2016,2316,2069,1717,946,1654,1031,1694,781,1162,914,1452,247,338,110,1908,2966,423,2413,1866,1495,1055,432,332,358,2696,112,2201,2191,2007,1545,1728,1770,808,1470,863,917,2364,2293,2226,2428,1814,74,2035,1573,1614,2594,1332,930,1520,2221,2699,1926,2762,1169,2803,2345,797,1710,61,1660,369,1994,1840,1708,1728,1924,424,1082,2655,1303,2579,229,964,2232,641,94,240,840,2691,914,2184,612,921,1959,2777,2098,898,2865,1873,316,335,1491,2143,1983,2696,1096,2452,2882,2408,445,83,2349,80,439,2422,2333,395,1538,64,970,2258,1043,1383,1302,2202,1487,368,411,459,275,433,2691,225,562,2090,1732,2819,1559,2133,790,1302,2324,388,1100,2605,644,1669,2639,354,2937,887,1210,2916,2561,2315,738,1380,1219,619,1223,2859,2301,199,1631,1674,2018,576,2691,1692,191,2773,2161,1758,1142,1013,469,2054,13,2758,1729,563,2984,524,783,1034,306,1820,1912,96,2061,777,1749,938,2224,2109,2958,1388,2098,31,1879,2259,1792,872,551,850,1225,1012,2372,2628,891,306,2581,1970,1174,2275,138,1004,1452,1980,2714,1443,1982,2446,1320,1185,58,950,2269,309,738,2668,2712,2459,135,425,2515,698,669,184,2717,1241,424,1469,929,1074,2663,2497,104,882,1927,1281,1118,1811,329,799,1067,464,1661,2949,143,785,350,2482,581,1579,886,2306,1467,1461,1465,823,2676,2955,2240,931,348,585,808,2835,1273,1251,2204,2920,2003,220,914,2706,1514,2218,1167,574,592,230,2793,2062,258,2319,2632,1561,1936,2488,2813,2861,135,725,1332,2207,413,209,1547,2312,416,16,225,2182,2539,2440,487,1840,2465,2463,1088,1233,2326,1531,202,47,199,2431,544,1336,2895,353,1412,2358,2854,1799,1621,2515,186,888,2147,1800,2806,1996,1448,1769,2452,2698,856,956,32,262,2418,2027,33,1661,2751,1608,721,2557,1521,2604,963,2588,2092,2658,2078,1784,868,298,1255,2779,28,1336,347,2653,2701,529,392,1646,2461,473,175,201,927,196,2907,919,2703,2800,2540,1659,1170,2303,614,1273,1516,1969,710,1667,2730,2378,1951,1686,2657,1154,1231,2335,2705,1582,2251,891,1816,994,2530,399,1514,742,526,2878,1623,1086,1159,800,1256,1596,2085,1580,601,1542,2761,336,220,2305,535,248,1410,903,816,2354,1303,2094,1514,2965,1122,743,1017,2213,1233,95,1891,191,659,32,2502,1637,1378,1924,1606,35,2723,1777,1316,2,2637,248,1813,914,309,463,2739,1094,641,1399,998,2462,442,1926,894,2567,2560,1948,2561,2021,1212,484,2127,166,2788,185,1962,679,1399,972,674,2251,2192,70,1976,2327,1151,1215,2508,1403,2628,1155,1795,1214,2816,1155,1016,1866,174,2957,2533,1221,2333,2016,2800,2235,1307,696,2078,2864,630,1855,1963,2507,1203,1403,2643,1301,1865,2757,880,655,1452,2656,507,880,2378,1716,1781,1241,2786,857,1812,2154,637,260,269,893,964,2573,1235,255,1683,1263,1512,2696,1553,2321,2581,2383,2549,1502,1190,2063,2891,1365,856,60,387,215,1570,446,281,27,1320,692,1475,243,1257,165,2021,2786,22,392,2735,2378,155,879,262,2410,2897,967,759,2947,2276,1025,1007,496,1942,932,808,431,2095,1526,1837,1592,1245,1780,708,929,2468,2153,2743,1920,1760,2851,1023,96,1157,2589,1884,1811,1823,2890,1620,2819,269,1986,1620,1223,644,555,737,1542,1712,164,2954,153,87,273,81,994,2953,1393,725,522,2046,1604,2005,2279,837,778,1082,2696,489,268,1889,1227,1490,539,1697,372,1330,2377,1724,1904,1129,1103,2666,2627,443,1016,2388,1143,121,1449,2897,2152,308,258,2690,1519,2360,1951,778,1399,1035,913,79,738,2202,793,1196,2277,973,1342,578,720,304,2728,986,1205,464,1208,2495,484,1254,875,1203,2165,995,1278,1842,2002,2863,1018,2083,84,1847,1590,738,126,2888,76,2127,724,579,2308,994,2831,1893,553,101,1806,2747,1402,851,2097,911,1589,1002,2338,803,1252,9,792,1938,367,1459,2004,976,1613,505,1139,418,1203,2640,2010,2682,2666,2917,900,1278,276,1274,783,2153,146,2334,555,301,515,77,1257,177,848,2683,936,1992,2221,1031,210,1288,1725,534,2761,2097,724,2179,2691,2750,979,2728,1850,2736,1675,1888,2758,733,53,2328,2403,1466,562,2840,2836,2642,2461,2586,1285,2075,1716,2796,2553,402,2734,678,380,1036,1213,2130,191,1185,2364,2795,344,2664,2540,2335,1317,1453,2133,1066,442,1589,1906,2148,358,1079,2418,1399,900,388,1296,1381,994,101,2714,2245,2402,1238,355,652,2127,838,688,1520,1480,1327,2172,423,1270,2879,2459,2721,441,666,1661,2256,1855,1340,1266,330,523,1899,673,1797,373,1287,1682,1390,545,681,921,2131,1615,1124,2036,2431,438,2524,1660,2591,1879,1000,2272,824,2142,1856,2878,98,911,1925,2036,1981,2977,1176,465,181,241,2137,2231,1711,332,1961,436,2420,2776,1846,813,1652,554,924,2630,658,1580,747,2758,367,424,1683,184,2308,1648,288,730,2718,366,2951,1653,775,355,286,2291,2453,689,2849,921,183,241,2419,2587,802,2136,739,2692,2330,2810,724,286,2316,1597,492,1507,1824,1742,2260,1972,2087,1194,199,2471,1602,543,445,1852,83,2102,986,1351,406,1267,2459,1561,2974,520,1815,2534,553,71,2550,2980,1541,195,1168,2496,2084,1608,2913,1722,1383,1832,710,1231,1786,879,2738,2171,152,915,2822,1561,2518,1938,2046,2071,586,1462,2405,2093,2133,370,1640,2600,1278,2088,301,2882,2862,526,2780,1746,1007,2509,934,235,1551,2556,823,1270,2916,178,411,1657,2897,1748,2337,2242,1172,2314,9,1107,636,1340,2431,369,1904,2769,323,2792,1040,1506,645,2754,392,2373,1262,1677,1996,1540,607,1884,810,2942,810,1683,2215,1593,135,2466,1528,2811,1370,458,1061,273,335,964,693,2033,672,2861,1972,2741,1244,953,1714,324,2171,217,1317,618,1619,2040,321,830,2247,1982,1284,2112,2797,2948,1480,1191,1186,2874,1680,2080,231,1261,1341,150,286,2048,1123,1806,1375,1130,56,258,2961,2346,787,575,1503,697,1924,1728,724,247,147,1676,990,2797,255,1983,1587,903,1783,2295,1985,708,2334,1478,2260,2767,255,2638,2339,733,384,1171,1726,2324,1156,204,1565,621,262,2063,2991,2848,309,2131,158,826,1924,1558,1837,1580,2937,1706,2421,2006,291,1715,756,2090,2794,731,1142,99,2608,119,609,2748,1577,1961,258,1245,1927,551,546,975,994,1884,2698,960,1398,1687,466,2217,2222,2297,406,2511,2595,220,2296,2301,362,961,2983,1904,623,111,172,1416,1105,698,2581,2819,1128,2375,2786,2276,2936,625,2222,2887,963,1844,2851,551,527,774,2984,2083,1267,2859,730,1929,1470,2952,2178,2565,775,2660,2174,1682,716,937,1742,190,51,698,1086,2211,430,2191,1330,1888,2143,144,414,549,1063,1340,2895,2121,1658,98,2679,792,2033,2500,1768,2365,329,730,610,2464,1429,2191,1468,573,1647,1800,423,2617,479,522,1940,1301,852,1866,446,187,2839,2456,1302,2915,346,1363,2934,2570,2541,795,1736,1411,505,1119,882,930,174,1722,903,308,2168,1390,423,1247,2335,2003,1403,829,2375,242,2803,1332,1672,1212,1106,152,412,424,2584,494,2408,2711,2172,1832,643,656,849,2723,1375,1730,1641,53,309,909,1077,1598,478,717,1359,2561,2211,1174,1234,2935,1225,2047,2522,1372,2747,2106,546,1627,623,2977,2405,1514,2789,2219,1345,81,2495,1707,2334,1162,1750,1773,1178,586,1716,1141,1956,2470,1954,2451,1327,1825,2176,231,2493,1331,2197,1864,175,176,2361,1973,2055,209,610,572,2774,2437,33,1174,2559,1235,1496,1439,1568,223,1473,867,684,2069,2847,2936,125,348,322,2614,2379,1656,1119,1481,1632,2592,376,2373,1084,956,2478,965,1404,136,2590,30,117,2268,1779,855,863,2809,1896,2274,1619,2679,222,1174,2164,832,310,1176,392,170,389,1031,1181,2041,2379,1749,2667,97,1568,2608,2483,15,2606,2362,1600,1831,2016,2025,1580,599,481,2695,451,2313,628,1185,394,768,2351,642,2487,927,1720,953,2284,2617,2698,298,446,2999,1405,2019,2876,1125,409,551,966,2263,1678,2654,1222,1991,1338,2975,2143,1360,2252,2952,1441,136,2370,2938,1153,1417,2267,338,2143,2829,765,1599,1998,1207,872,891,82,917,498,2140,2200,994,2388,1960,1044,1016,2035,446,15,1507,3,1903,526,2610,1550,1459,1649,2329,752,1860,1501,293,2373,811,2553,2375,2882,2264,1220,2300,658,292,486,1751,2812,1384,2028,1702,266,492,358,1835,797,2622,2195,2413,2798,1318,191,646,1444,754,157,847,567,479,2455,2698,1193,2669,1031,2809,989,1781,2946,1696,2663,624,2553,2865,2087,570,2709,1286,1089,1076,1303,1128,910,1232,2416,1357,2818,444,2625,522,1523,2021,2111,1209,925,483,207,1065,459,294,803,2128,2449,2038,2926,1789,426,2729,451,1882,286,1100,1024,2810,1471,1415,1203,2780,1827,1874,1355,1324,2035,659,896,2528,1123,801,1660,2381,2192,118,1084,246,2391,191,366,651,1547,578,1240,1334,693,1934,234,799,1636,743,1935,506,63,2255,2173,1401,2940,988,2685,1448,2023,681,1718,2054,54,2051,1701,1267,1060,1109,2452,551,1275,2197,2360,1036,1567,361,2991,997,263,724,1024,2399,1443,254,331,650,608,2775,21,697,2292,912,2662,2356}

    2124

    689

    Returns: 304324461

  103. {567,1136,2869,1902,2179,1355,1008,1364,2526,1186,2779,1722,1518,2441,261,1831,2330,677,2897,437,29,1368,1246,2924,818,1280,2338,2549,767,916,1951,1430,2581,2618,2690,1466,366,2764,1488,424,2120,809,168,2658,2597,2324,1415,983,547,694,1764,2406,2393,1149,890,910,70,119,1651,611,2049,2408,2870,2937,2103,1056,1334,2630,955,2465,1394,1076,2555,2742,2782,33,1073,2918,222,2959,923,2814,2800,182,1955,2760,1668,703,1597,2284,2967,2603,249,202,1561,1553,1785,1914,324,1326,18,1424,937,1479,1601,1393,1254,2870,1247,1342,423,2795,371,1949,1381,2584,993,1607,2072,811,922,1263,1044,1198,2494,1228,2618,1419,652,1726,2351,642,763,1074,1463,2991,686,2672,1771,2816,1944,1416,2524,2530,896,2606,1574,587,2311,211,1541,428,936,454,1451,576,1098,489,260,819,2863,22,739,2419,1729,263,23,2724,810,827,381,2441,887,2354,2675,2924,917,2126,2541,1946,501,1854,1015,819,1410,1028,2460,214,515,2489,1508,1051,1222,1258,1047,519,1401,2709,2798,142,287,1302,834,2955,1654,1228,1028,150,2673,2638,1894,995,2131,1425,2555,2043,903,2392,783,244,1763,1439,1204,2544,1000,1383,2834,246,1772,1461,1236,2608,2768,322,2526,2187,2393,868,954,1412,1066,759,2671,1860,1186,2566,2671,1315,2135,347,1773,2616,2193,1336,448,700,1206,1223,2388,1473,2894,587,2509,34,2725,192,1897,1746,2213,743,1236,2012,1436,529,2378,581,2251,667,1325,1055,1090,2332,2446,322,1503,415,561,2708,156,1360,26,2213,2569,1937,1450,124,795,2737,1627,1246,2583,565,595,2450,1650,1468,1236,1318,785,1095,639,1065,2622,842,510,332,2173,2800,1762,2838,433,2466,1145,1921,2748,1685,1330,2058,393,271,812,42,2979,2152,209,1291,1030,2688,2786,162,178,1335,276,1044,1612,1245,1976,1423,576,2933,1350,232,187,84,1590,1016,264,1044,426,1310,1817,968,962,1763,2220,2923,1147,377,2787,829,1485,2963,328,365,2170,479,2187,768,2929,108,2520,645,1361,2850,1959,2368,2724,2452,170,1849,1802,1664,1499,2149,1867,2931,1249,675,958,179,1898,1634,2838,1472,544,2007,809,205,417,2997,1553,1802,2108,2519,2370,2435,1988,2033,73,1031,1202,1111,1851,1202,2553,1904,2009,528,1207,2329,1179,1104,1952,465,1660,2392,1973,1482,288,12,779,62,1762,1171,1146,557,2724,2859,66,1905,1042,2694,1547,1870,374,1792,343,2777,2459,2391,134,329,1872,2798,2509,2466,2212,1373,1922,148,2328,1227,969,1864,830,1412,1257,851,2342,1152,931,561,2574,1673,1262,289,2699,513,1635,181,461,694,2498,2710,902,1943,2504,2746,1103,871,2847,1435,1816,1480,1316,2573,746,815,512,886,1125,1701,2824,1968,1529,2976,2694,298,1800,1532,1876,1084,695,757,1568,1646,1645,2847,582,2825,1642,1265,2117,2156,1619,645,2288,2008,2013,588,905,1835,1966,2557,1330,1731,1225,2024,1092,1383,1573,982,1800,1789,1330,1402,2394,1895,1506,153,629,214,2326,2451,2838,2907,2611,825,260,1767,42,2107,1335,1903,324,589,615,1772,12,2576,2761,2152,2383,1892,752,755,1713,2986,1520,2065,2672,2802,2356,2071,2691,1179,310,1506,532,1471,2153,564,2470,2229,468,178,1762,1407,2656,1590,595,1660,2599,592,1187,940,461,2022,2427,1806,2538,2733,1509,2830,821,1246,493,444,2312,2340,612,1216,2738,1114,2397,1469,774,244,2843,2183,2012,1022,1218,2597,1842,2058,526,1395,835,182,1664,2300,1156,1083,663,1783,2351,607,189,1112,1603,2269,1745,1267,1952,562,2694,2241,1195,1818,158,1028,2292,2260,658,1184,2847,2171,2638,1077,1349,572,1439,2197,1768,2153,1945,1643,982,1342,650,859,2571,388,1961,2028,506,2062,1771,2756,1744,913,2706,2541,19,940,1243,2028,642,1192,1849,2881,1440,2162,2651,907,2617,2434,782,2237,2455,1917,2521,2907,2647,513,1737,2617,258,20,1591,972,74,648,2440,441,460,671,1609,318,1499,720,2763,590,1115,1204,2298,250,1772,2609,792,1185,1044,2059,2759,1553,769,2809,277,2296,502,2875,2706,1654,1864,1641,677,2255,2021,1664,2299,2581,2495,1398,1485,2680,2685,2986,609,732,2893,2624,1434,775,2977,2229,1044,1216,1567,351,1398,376,994,1461,1001,520,257,1828,844,1067,5,934,338,2837,1167,2090,2601,155,291,1123,1696,222,1501,56,2420,468,210,1653,1295,2034,712,2618,2694,1532,85,2798,2038,335,1318,2928,292,1984,2061,1089,1032,1453,2786,2168,2143,197,553,2993,1577,2092,1975,2209,1723,342,555,727,2997,344,1006,2134,1950,1796,20,2558,1256,2946,751,722,2796,633,1261,26,1891,2917,2452,2581,2279,1164,1044,1663,1565,912,1168,828,1841,1793,1990,170,1556,2082,1159,1150,298,2215,48,2383,2449,332,1095,216,1014,876,2360,1970,359,1459,2145,388,2807,1818,466,1757,2787,2818,2067,1709,2637,1030,1530,2073,666,653,644,1216,2254,1467,2011,1591,2451,2135,2415,1597,2384,915,1428,1283,245,432,742,1724,2134,1360,2848,2124,2493,2244,1801,2325,1654,822,826,1661,580,1512,2441,1587,1595,2894,380,924,2422,555,709,2548,2876,2882,2339,966,1101,2439,45,2011,2485,2130,175,499,1186,138,1493,293,2417,1700,1180,1407,2493,2234,1377,1110,1459,2078,1748,2225,2538,20,2762,147,637,752,1405,2820,1037,1207,1876,2932,2035,1910,437,1348,1333,1054,613,2970,393,1775,2531,724,2909,1447,2015,1188,2842,272,2835,907,1995,1205,175,1880,925,806,890,1235,2890,2374,2401,111,2700,2379,419,624,1248,1182,608,910,1644,1584,2678,2709,864,2541,2178,2398,1002,1874,986,1445,342,29,1014,1971,271,759,1313,1096,1232,2617,2830,302,2370,1811,161,1739,839,1091,1720,2979,2098,1400,1467,574,1658,212,2733,1516,1756,2032,428,799,1044,607,1875,2876,2755,25,2747,1929,2147,1936,1833,734,1659,1621,683,2689,2260,1061,271,1594,2690,793,2480,1315,1174,1360,2557,1985,2110,2944,1436,2183,2631,1750,1943,2972,1287,1344,2596,1810,428,2462,2081,1565,1268,1738,476,2251,995,2032,584,1919,817,1229,2269,445,37,1628,0,2768,2834,921,1586,1874,686,2393,882,2525,841,1352,242,751,1660,515,2541,1276,169,585,1329,1910,2322,258,2678,1314,1242,1870,997,595,1849,1560,1090,1101,1291,2566,1946,1360,2017,1598,1618,2590,1857,1420,214,1852,1136,730,2232,1428,658,20,2367,2911,1743,666,1472,249,1316,1117,1803,1246,1436,690,2532,1857,2459,1535,2163,929,1464,2404,612,1950,632,2328,220,535,1282,2277,2654,668,2614,1226,2534,1911,2753,2335,2692,2968,2493,2670,2854,679,416,1939,2094,1126,167,2395,614,451,1156,1966,86,1575,218,480,556,2659,538,1523,1736,1631,2675,1085,2058,1914,1306,1616,2100,165,1735,414,170,1917,1368,1944,2008,579,795,2019,1269,1230,2823,154,1344,1319,1484,306,1884,1478,1143,717,2176,2883,371,1768,2669,2649,1784,2069,2009,624,1124,2336,2322,2901,1320,1911,2343,783,2219,2048,2395,1889,2622,1862,2033,239,2002,2694,2814,58,1853,1783,743,1805,2878,2463,1559,1428,1023,1117,1708,2971,164,1874,640,2810,2522,2081,2037,434,2869,527,464,1955,152,1309,741,2119,959,2330,620,2352,999,668,1084,848,1756,486,1300,2461,1663,1444,2497,1031,1369,2625,2068,2368,2633,361,1330,2660,1917,103,598,2687,1680,258,1706,595,121,2863,23,2296,620,2235,682,1197,2266,1426,2468,1632,1541,1541,1518,37,2211,1855,890,2140,982,1545,2438,2462,2078,344,2563,1244,1598,2180,1373,2199,711,705,558,1678,2412,2791,2400,2392,2917,1724,412,725,1360,1439,2297,1870,702,1473,2799,1440,728,2833,2232,1103,1733,431,902,2129,11,31,170,2391,2584,208,21,2286,820,2969,450,1376,1448,458,1943,195,2597,1592,808,2839,2363,1596,44,561,2491,2977,2819,241,1588,2995,1490,76,234,77,410,1030,2896,1252,794,370,2105,1216,1906,2848,1460,2436,1551,768,2203,641,2580,1345,198,430,407,801,74,1383,2300,2102,2789,1827,1441,1639,738,2152,1298,541,586,349,1058,2150,2375,866,2462,857,1542,1972,472,281,1398,1094,2512,355,2353,2667,1681,2368,514,2782,1713,1899,2622,918,749,204,173,867,2626,2193,569,1567,596,2676,2986,1826,257,2108,2077,678,1848,2699,941,2931,431,2501,227,2879,2892,1195,1675,2355,2657,1606,437,1323,1688,2607,23,2089,952,2177,1796,1433,1300,1280,2818,410,154,2855,1803,1722,388,1845,2925,1232,1818,567,964,1850,2500,484,2588,1119,1182,419,1118,122,643,527,2637,1144,2705,606,1349,1801,595,1212,1717,1519,2229,1630,873,2999,1320,1470,1807,916,1481,1993,870,570,1452,334,448,392,2790,1455,2318,2902,519,2744,1772,253,180,2368,1357,1920,1999,1769,2900,1633,800,2775,838,1203,757,206,1204,2997,1455,751,659,1319,702,2666,1699,620,2651,1521,1375,2711,718,734,127,2519,528,2645,437,248,1832,2282,1804,2552,1681,2971,1301,2509,1434,659,624,135,1777,197,1730,1668,2894,1204,1107,440,1323,230,801,2395,2173,2878,569,2081,1105,601,2681,2634,1010,2158,431,2938,2344,1179,1834,1859,2430,923,1439,1398,1251,1161,810,442,1046,1933,207,1576,631,799,107,239,2106,922,517,1674,2707,493,378,1042,1760,2920,2778,1216,2551,2816,2574,247,1933,2179,2584,2378,1068,2628,1702,1814,899,2391,2067,818,923,1613,2846,2186,1992,1594,640,2156,1558,1489,2542,1548,1592,2615,451,2683,1745,455,2222,1447,567,1896,1580,1632,496,2273,2517,431,950,1625,653,1822,426,539,173,2714,2003,306,2713,446,2459,758,2897,969,2534,1886,2980,1132,1382,673,489,175,1551,2806,201,422,2644,288,2557,1082,1567,294,1452,1214,1943,1930,1233,686,2115,516,2829,2544,965,2667,1431,2407,697,1472,137,2535,1325,1161,2735,679,2030,2939,2042,805,1537,704,1402,2342,2219,1470,2614,752,2170,2084,404,2487,2889,2563,2109,1374,2181,2433,84,2899,979,509,1825,2027,1061,2786,547,2719,1644,402,2922,157,2354,1887,1627,498,1670,1103,1999,2887,2428,1364,174,1277,2676,1163,1489,1913,2070,1539,2218,2212,2779,743,1,1955,2383,810,1568,1467,302,714,488,2707,1573,2861,2460,996,872,2112,2486,2629,817,302,1,2096,464,2436,2715,1380,1883,2860,679,660,2636,1333,607,126,402,2644,2114,1445,348,1176,9,2621,2905,404,363,2750,1813,1103,913,2458,299,429,190,2935,1526,1189,2475,505,493,2335,2108,657,2578,1541,904,2196,2005,28,29,753,2855,2718,2612,658,20,100,395,2191,2832,1955,1436,2325,26,2926,1397,1679,825,411,2550,2962,215,664,496,937,1870,279,984,1679,1184,2426,1054,2384,817,467,932,179,1161,2876,976,551,1700,2779,2068,457,111,123,2998,541,402,2767,1035,349,44,1768,2509,2797,2828,595,1508,1443,1184,159,1627,2144,2458,1898,1744,497,927,2122,1964,2043,1627,194,2223,1478,663,546,2406,1660,2752,2194,2239,117,2165,461,1334,2212,2361,2995,2027,1392,461,1153,2765,2890,697,1284,2774,223,2170,1912,1954,375,1044,1041,1843,2059,1143,83,1000,1363,1662,581,2662,875,2124,2577,1578,2671,2825,2758,2206,2569,1992,2593,2980,1386,926,2688,59,2808,2792,1957,2522,2155,1691,2841,1830,2158,2007,753,2082,2691,2265,577,2231,2783,1935,530,1398,1284,2928,401,2234,826,421,1459,2339,1347,2601,2401,2866,566,1959,1185,289,2689,531,1803,1231,1335,2395,34,2376,46,1503,1231,1483,1944,2448,651,477,824,1051,173,953,1867,425,575,715,2328,1827,626,366,195,1112,1379,2855,2208,1565,1725,1778,1934,2675,1236,1216,1911,615,1019,2834,2886,796,2672,112,2174,2039,2014,1412,1183,2184,964,1776,2898,1831,2720,494,519,2605,606,2013,1449,1559,663,2035,2682,2261,1872,2066,105,1824,2477,1414,2899,1602,2917,2724,2965,1274,1704,300,319,18,790,2763,2734,1458,2210,74,561,1000,371,2216,2681,52,2682,271,2651,338,537,634,1321,871,347,1476,1544,492,312,2376,1479,1668,771,2887,2169,2579,439,1621,2278,1041,2217,1839,953,1982,1898,2795,161,1255,1952,2810,2994,1329,1861,2859,939,2418,2365,330,2621,1944,266,880,1160,2570,745,2456,326,2375,2218,2021,1356,1243,365,1491,2169,474,616,282,888,1093,489,2079,1527,2666,2136,2592,2336,566,1553,2539,2523,1940,217,747,2470,1038,2828,2315,2832,2610,649,2825,2973,2066,2086,1270,1638,519,586,956,437,1017,2565,1210,2364,1131,962,621,1272,240,963,2251,90,2161,2945,1677,732,2887,322,1385,965,2697,548,2938,2505,1938,2193,490,1492,2161,2975,1786,960,2783,647,1793,1005,2020,1849,911,610,835,2976,1849,1803,2650,1460,99,1134,341,2193,1509,438,791,2862,1579,2386,2120,2013,2366,1162,625,2083,353,1373,1717,717,1051,1815,1498,1007,1724,288,2786,2645,1701,1032,1909,2668,2960,36,595,548,1075,2543,685,2160,346,2632,416,193,2454,714,2803,2496,368,793,1009,736,1333,2502,1474,2029,1756,438,2109,2871,1325,2046,1867,274,2200,1064,1716,2543,2903,2294,891,1864,26,1644,106,2328,2987,2554,2104,1493,1276,128,1381,1485,2289,2686,1935,210,993,1522,2800,1297,348,2423,2744,1042,2655,204,153,1911,441,1185,2495,1728,2572,2115,317,2526,1152,263,1059,2257,98,1816,699,1562,2254,2501,748,1223,105,1792,1850,1390,760,614,57,2176,403,1141,1026,110,1570,2854,2346,2334,1394,521,1762,1996,1221,1308,2607,1730,5,1050,2966,1006,2492,613,2401,1303,2907,723,2502,2192,1665,745,2157,1128,1888,480,2940,2492,311,1352,1055,268,1510,2452,2821,2240,674,2368,164,1213,1173,1835,1118,1032,1804,1871,1525,961,1387,2041,2176,1816,2588,1350,266,437,1459,882,2252,1282,2268,1322,617,807,885,2116,1591,1272,2996,820,2927,834,2798,1005,1923,564,1080,111,542,1669,2280,2537,508,2708,789,1876,2179,624,1049,1611,1183,1033,39,2670,2074,2140,2170,1586,1879,2639,1051,2106,1282,1481,2160,1119,883,417,707,149,1766,1956,2678,1970,536,1373,1094,2865,1617,1404,1758,44,3,2758,1304,2623,391,2208,1176,1609,1866,1745,241,187,692,1084,1640,2617,2495,1143,376,975,2698,2190,878,2826,892,1329,2937,2114,1158,765,1498,2491,1402,2894,2277,2309,232,2227,519,397,74,2754,512,1995,1546,1950,2557,2680,826,134,2938,676,1511,1902,1786,2722,2361,2395,222,1990,862,1022,2955,531,2026,360,888,734,1768,394,1500,1982,2280,2051,1732,1632,2011,988,2510,584,2065,2660,416,2057,2844,901,2963,2964,245,1671,2212,2997,1933,2513,1018,1710,2503,2546,987,1603,1787,2250,1543,2595,362,891,2701,637,1591,448,1121,1041,2992,1089,166,1491,2598,976,927,663,1419,1976,1932,2033,2099,2878,1636,1913,221,1450,1019,1649,696,1730,2189,1429,352,2937,2280,2342,2973,1979,624,468,2369,2718,433,1268,2577,2282,489,1918,2291,1396,2027,2636,89,2564,1476,2214,1832,772,982,847,805,2665,2961,1618,768,653,2458,1108,581,1710,385,555,571,777,2750,2220,1288,1957,193,1282,1163,867,1253,1494,2056,990,1833,534,844,575,1893,732,621,1797,1510,2027,1865,2070,139,2133,1974,1967,1198,2836,225,2696,252,1370,1648,337,1111,2826,2647,2708,1523,597,543,1923,2375,1225,1910,982,1366,2618,1097,1946,235,1299,1388,244,822,1694,1471,787,114,2348,1348,2322,689,1476,798,376,2164,74,2121,2786,416,793,1802,581,1492,1672,199,708,2828,1764,582,1277,826,67,2128,1553,2395,2569,2089,1781,1932,2095,2028,514,1391,233,948,2464,2997,154,579,1623,2827,1554,1424,2007,1489,2014,555,1227,1181,2109,1721,282,1143,1470,2430,1802,1273,1086,2521,1105,2228,1888,1351,2236,341,119,517,2955,951,657,101,2559,2059,1278,2029,2722,2402,1352,145,696,1960,2524,1177,2849,1842,1758,1367,448,1715,2265,989,2964,301,2128,2280,2472,1989,274,358,734,2763,2364,1369,195,1069,2823,2240,514,1505,1609,670,1289,134,2781,1788,1945,1884,2731,1154,675,270,1217,1121,518,967,13,2083,1553,2919,336,687,2146,2556}

    {1187,919,1533,1335,788,1891,287,1634,1503,873,1837,698,2577,2594,1514,184,1121,1249,1025,2957,2101,1761,2088,2395,2290,976,1749,2585,1019,1771,2246,1913,1190,790,1358,2607,2951,2813,2040,1485,1901,2897,1546,1460,2431,2804,1103,2554,118,261,615,861,540,358,2159,1802,2360,481,2403,1680,788,2890,2134,701,334,869,1862,751,2587,2790,2788,866,1284,1753,1029,1063,2494,740,1863,2472,1821,732,2464,2954,1330,2138,2981,2238,1163,393,2087,1389,2331,2153,865,1798,1801,1710,2856,1459,2118,2754,1330,1536,243,345,1279,1053,392,2221,61,482,1803,2237,853,2111,975,2627,2434,1301,81,877,402,1923,178,2743,668,2409,2709,2838,623,992,928,996,1131,1420,2076,1513,537,1981,721,908,94,2545,2143,2799,627,1283,2075,1892,2420,2480,1509,1010,153,1178,464,2974,855,833,1127,246,182,2874,396,2753,2663,2589,60,2878,1051,899,1420,1321,1697,387,34,2039,1222,2868,743,852,2658,1133,2584,2736,2118,511,1836,1479,921,1755,1770,2957,1651,448,988,51,2118,797,236,2728,2807,487,2621,1029,1890,2129,502,710,2021,2908,2229,1683,2787,416,1070,557,1193,593,1667,2560,2471,1120,2516,1060,2597,172,830,803,344,503,1354,1176,1048,897,1749,2451,2308,2786,49,1266,1029,2899,1691,640,1090,4,1466,43,2569,120,2137,114,1962,1959,1367,831,751,544,1186,2995,1845,1068,2535,2393,1477,1365,2336,261,2385,592,2514,218,1087,2544,1476,1462,2515,2723,1459,2113,2258,2613,1698,1150,1100,2530,1239,535,468,1465,1236,386,267,927,889,1470,1034,390,2861,1513,1850,148,1236,614,1302,1422,1031,2349,2541,2826,1754,1315,2485,1066,738,1938,2942,628,863,2319,2923,2946,614,436,1874,1491,263,2798,177,2753,2010,603,1951,627,1199,441,1051,1932,2568,2332,667,2687,1831,949,442,2406,1947,1096,1808,778,1476,2476,2893,2123,507,2623,1470,136,658,1555,2733,340,1624,153,2148,918,1782,1025,2435,84,1633,2705,2692,2998,339,2853,2861,39,1630,1799,425,1393,2132,1471,2930,597,630,2039,1095,985,1058,2138,670,609,249,2303,2519,2006,2307,1472,813,822,977,1437,762,2584,928,2071,2021,2617,1563,1620,490,2172,2368,1325,2080,1544,1324,744,1755,1619,1028,1591,1501,316,1436,1995,2944,1530,428,2607,220,200,2508,1809,1998,1855,1795,2744,64,1120,2429,2642,893,626,554,1300,957,2,1481,859,2500,468,525,795,209,371,1686,2918,2798,1366,870,2643,2578,2096,784,1507,1209,986,2559,1922,661,2618,179,1571,478,2354,1128,12,2707,2240,2509,2972,2709,764,466,28,229,2204,1568,1736,1038,1487,1977,688,2376,970,2587,2704,1584,1891,1292,789,2931,2490,2269,893,893,1793,2364,1653,1694,1111,2604,1191,2965,1576,351,1186,1189,89,1421,1108,919,1481,38,208,287,117,476,320,2189,92,229,2603,2485,1946,229,1564,1632,2816,402,1141,2916,1297,606,1389,496,1730,1656,2114,2798,2561,1959,254,2578,2851,2868,1475,1879,1470,814,714,1550,1004,219,2426,2943,2853,895,697,297,745,2426,2891,17,2106,2493,1427,2086,233,2786,1866,2744,2709,2113,986,1765,272,2435,1238,1711,1927,2918,2885,383,1413,1893,1586,2029,930,234,1491,53,2906,2582,2023,443,285,927,848,1997,315,2752,1977,1371,589,570,2581,1020,786,851,2295,668,2870,672,2305,1915,1445,12,1156,376,2850,2941,452,1667,2702,2990,1619,306,1978,2838,829,367,571,1581,2554,1831,2447,1307,1759,865,2198,1855,1164,659,2455,2442,2054,373,40,1893,1018,1438,397,464,1705,1838,334,1663,57,1290,718,2579,443,175,765,2439,76,1803,592,275,2004,1144,2050,2243,2001,47,2414,2694,1,1217,2967,1144,1347,2027,2379,1048,608,1071,1778,1164,2633,2739,945,2569,1205,1221,472,151,2601,1895,91,668,255,1041,1738,343,154,1925,203,259,5,304,435,2025,615,624,1061,2480,1146,494,665,2168,966,2958,1293,2979,351,1730,664,880,2910,1916,1569,1762,1704,1116,309,317,2861,1467,2036,504,2314,582,2528,2012,2641,2787,185,2195,2769,2082,2894,367,2919,1880,186,944,1185,1359,804,1007,2798,1708,2677,364,105,2885,341,2396,2354,1281,633,133,265,982,146,2502,2121,2117,2090,308,46,2812,2359,719,295,488,991,607,129,1100,2033,233,127,850,823,2958,920,2551,2445,1249,370,2894,1576,2576,1842,2211,1476,2955,988,114,2312,1990,294,2269,59,191,523,2615,655,382,2543,135,2961,1569,476,2986,841,316,2650,1053,1740,618,602,2800,16,711,170,1846,1790,2406,2109,877,1632,374,1979,2213,2646,1901,2085,2015,1175,2664,31,1345,2035,2786,1058,1036,1256,2086,1780,1317,1800,2425,1576,1425,2647,1032,2551,122,642,2000,817,819,2608,2372,1371,2620,927,2369,2442,422,52,1246,344,934,2298,2378,1040,761,2311,2233,371,1403,1211,304,1187,418,1172,1199,1955,1652,269,514,426,600,874,2511,2677,2805,2288,61,1353,2867,2895,1092,579,2652,1286,2337,1687,1944,2392,2693,1482,1813,2578,732,2224,2861,439,2507,245,2400,1675,2499,130,2983,2007,2495,2597,1509,370,2155,1651,1332,1045,2618,2439,2044,1136,2082,793,2040,229,2019,1445,2892,1332,2452,1983,898,93,2605,2145,1810,2726,2383,2314,2400,1952,503,1825,2953,313,237,819,1915,659,545,2048,2586,2328,1332,2371,737,745,2811,2706,2950,26,217,2725,441,1481,2611,450,515,1586,2917,65,793,1502,851,1364,1746,1130,175,1122,1113,2145,2703,1566,2584,1866,2582,802,2019,849,2283,1474,2221,1646,1943,607,1813,561,2602,1121,924,2140,2704,1411,218,2462,2553,1804,2764,2490,42,1362,1900,11,669,2541,1436,1855,2538,1685,137,2906,1432,914,2123,760,2484,2320,513,1533,1299,1229,2581,383,217,1441,774,560,605,2884,2231,511,654,1729,1299,1991,392,1467,1994,1680,630,2277,372,1109,2495,1741,957,2984,1378,2513,2741,1804,2492,1789,385,1685,890,2256,2836,1571,797,1682,572,1151,1133,998,75,2622,1933,2304,2258,2055,1553,132,2385,2808,1200,2750,1870,2589,1768,1231,1666,1412,1977,1443,555,1866,1594,377,607,1088,2931,92,830,576,371,2631,1869,66,2722,1421,1398,1022,231,935,1160,966,2482,1433,830,1080,1111,563,229,1724,323,87,2651,2787,1589,2936,955,357,2649,1459,954,65,2995,2527,2181,964,1412,30,1303,1481,928,2982,2625,2440,2258,1406,2518,2509,2672,2193,1024,1573,1675,246,408,2623,2323,2052,2593,170,1425,713,391,326,2872,816,2745,1706,917,1021,2089,648,1132,1952,599,1608,140,1964,2277,2734,1926,815,907,2675,2051,2730,2882,1692,921,97,2099,1418,2455,1685,229,2707,1502,1641,907,1270,187,1669,1534,895,1707,54,2310,1720,1864,1678,1591,714,2717,1972,1492,1831,2732,2459,1712,1204,695,11,2798,1126,2753,402,2293,499,966,74,2727,1554,1219,428,2529,2427,382,921,2090,1254,1953,2858,153,1412,2588,2217,1679,1108,737,1090,2234,245,2536,1634,2302,264,1557,2245,916,448,823,1,2965,805,1857,2952,2135,2798,2469,2721,2462,1315,2207,2118,2141,2634,1594,1216,1907,2271,416,1059,2880,2276,982,2873,1491,2987,2926,2781,1031,1241,1519,1364,290,84,1948,1829,477,2943,2921,117,21,1501,653,2226,82,1216,1966,947,1504,2287,982,1874,2368,2180,219,1142,1867,191,2382,1380,2827,207,752,2032,420,2027,2316,612,197,1905,1754,1655,2021,736,1477,1401,1688,1932,2368,399,2753,961,573,2392,1810,2093,413,1724,393,691,398,428,1634,2700,2452,389,1122,2081,2672,1944,163,2057,1644,823,595,2220,859,1384,1796,448,1043,426,1029,2864,1135,2524,2721,1013,2904,1359,1456,1729,268,1311,581,2063,1878,2234,1264,2263,2623,328,2554,2263,20,144,832,2274,1334,1618,2796,2086,283,1360,1300,2426,1734,2097,1277,2502,492,2776,776,1555,2151,2153,935,1319,1064,900,289,2193,1593,1492,155,1821,2377,1117,2378,1364,2658,2072,528,2703,493,1495,1781,2893,177,1582,357,2387,1818,636,495,2213,863,1220,2248,1196,614,1486,1540,2589,2670,138,1773,1877,2814,1871,1107,662,1236,1360,2135,743,587,1334,2321,1129,2045,2208,2888,1305,268,1139,2855,1138,590,1970,1425,2746,1527,2549,2282,704,679,1232,245,2211,909,1517,2185,468,2189,2648,2189,555,826,980,1599,159,775,284,2313,943,716,2270,978,1170,2344,1595,2672,1633,29,473,2581,1592,1003,2383,5,1174,960,549,232,528,2443,2316,2281,131,1234,2411,904,379,1102,2388,1204,898,389,2986,566,2098,731,2175,2679,2879,622,905,296,8,2031,2647,1653,2543,33,2032,1931,1695,2253,445,55,1605,881,2716,1460,2216,646,1980,850,1603,107,1738,2410,2042,2333,684,6,954,81,1257,2429,579,14,598,1254,2608,1041,2160,757,1845,2462,2838,1720,1569,2533,327,726,50,974,597,1366,153,1823,1492,2258,1548,2247,2660,1753,927,590,2987,838,1747,350,649,515,107,896,703,1643,1141,219,1083,2521,448,843,10,2421,1360,1126,902,1485,1231,2915,1091,681,29,2162,622,2188,1169,602,672,1898,1081,877,7,83,1544,2208,2822,81,1977,1137,2478,2886,1881,198,1718,2847,2360,219,2099,1762,2649,1572,1067,1338,1680,1676,2771,922,2612,1440,1080,2019,617,2772,2064,1215,750,176,326,402,2746,1288,1633,1573,605,1314,1166,2060,1185,77,2250,2097,140,392,15,1062,2000,2533,697,391,1039,1236,256,2548,2422,134,2352,1664,1814,1084,1647,905,2684,837,1022,2051,2770,2493,1855,1340,1590,726,2861,2167,2753,2103,2956,345,1592,595,1056,1157,1237,2763,2828,2347,773,736,789,2163,35,2515,2170,70,1009,795,1889,1794,921,2285,2825,2809,1361,2334,530,2575,1496,1130,1205,2485,1259,1819,1573,1854,769,2785,595,899,1240,1224,2201,122,2453,198,535,602,1675,527,1609,2422,921,354,2794,2798,2850,2121,2138,1906,822,985,2455,2477,1060,1629,598,2653,1294,755,2915,1852,550,328,1843,1847,2121,604,656,1541,1117,304,1775,1147,614,2488,1182,1620,2466,410,57,288,1176,2378,770,1278,2840,2082,503,1691,258,758,179,967,2120,2102,921,1719,2567,1639,2798,2457,2004,1622,928,2242,2729,2237,1119,2176,2956,2393,2437,2473,929,1976,2915,327,238,2638,1222,567,2022,226,2208,2324,920,1576,2183,1205,2264,476,858,2621,1369,1430,2838,2167,1944,2635,2255,1284,2281,2208,315,526,1475,2288,147,263,922,459,920,2740,1610,148,807,1703,1728,2262,1729,1791,280,219,468,245,566,402,1144,2930,2694,2847,2395,1565,2985,1966,2406,349,20,2118,890,1541,533,2838,2731,2275,1046,307,683,104,2535,933,964,1987,2786,1805,77,1603,1968,2709,1174,1963,587,1854,2874,2345,1953,2509,2058,2724,2746,920,2393,2101,1316,717,1908,2893,2182,717,1368,1606,2023,2660,678,503,2782,2815,2724,40,1502,427,2082,665,500,552,1236,727,884,1442,2846,68,1144,1789,1188,2146,2964,105,1089,2680,2766,78,754,45,2264,2202,1165,2481,1330,109,1051,1682,721,2090,2937,910,2752,1137,2127,2327,1807,619,2058,1549,2481,2910,817,1086,2029,622,835,2381,2949,2700,838,1853,26,213,632,75,1249,1970,1742,1079,685,1713,63,1963,2961,1208,1242,696,2826,1143,91,2291,2424,370,1364,1284,2282,648,83,41,819,1585,1989,1751,781,551,2412,1357,138,949,981,783,2581,800,2328,233,2474,576,2341,1417,1592,2526,371,1885,1898,2807,324,2570,2954,1243,2719,1011,1647,515,1583,92,1601,26,1366,197,1075,1633,1535,1481,12,2640,187,1928,579,2712,1745,2627,1181,463,2056,663,792,2483,1911,1148,845,910,47,2612,1781,1615,2506,890,331,2396,286,2213,1347,2182,2887,2699,237,429,2893,117,327,1159,2857,333,1661,251,735,470,2317,1968,1600,1794,1851,1353,118,2318,873,535,734,582,2354,2310,1538,2522,2422,1728,993,2845,826,1106,437,2833,621,2658,1434,1680,303,2527,1527,612,894,2288,237,1531,860,2835,916,409,1735,2481,2197,1802,2389,130,1984,973,1404,2418,1719,798,971,2562,1343,498,125,89,2600,693,1216,1485,2857,2399,2328,315,438,1936,2874,2368,920,2917,706,1257,1176,2618,1669,273,145,1604,376,2821,2913,946,2855,1094,1443,326,2067,2878,2438,898,638,2917,153,155,2416,2293,1454,818,338,1831,1287,36,750,1647,2934,2797,1525,198,2306,2005,146,2909,2373,1012,645,1216,1693,225,314,2640,2526,757,1300,2153,352,1140,1882,848,855,1833,2538,72,1253,1604,1078,646,1637,925,1393,668,928,80,2495,456,807,2259,757,2578,1503,1966,2139,2665,2664,183,2617,2308,334,1911,271,1040,2703,1155,305,1838,2180,77,1952,27,1000,2272,1958,1533,1462,654,2487,938,95,1030,1624,1431,1858,2973,1803,1296,2619,612,180,432,1074,2757,2261,2367,160,1689,2541,2069,2578,2367,77,566,2499,559,2887,384,2011,32,2787,402,2784,2531,2674,968,2998,925,74,1246,2793,941,304,471,1072,2749,2197,1780,1058,1848,1970,434,1986,524,444,1573,669,138,1548,1070,2646,2016,1462,1780,1428,2779,2801,325,2015,1844,1905,579,2955,388,1046,356,879,1346,1929,2200,2400,2989,1447,2521,2838,1022,2470,32,2432,519,2591,431,2444,268,1362,645,2390,902,1327,1969,293,1952,405,2274,2555,835,425,1180,461,491,840,2424,1233,1743,1425,2947,2817,1854,262,2738,1524,2462,2526,2690,522,1285,1553,1194,1556,171,249,1941,799,116,1768,1813,2279,2413,2020,2988,2948,517,2228,2169,1950,640,1457,1648,1911,2027,1714,1526,2053,2683,1840,895,1337,587,1614,2079,136,1843,620,1659,2512,977,2858,196,2598,2869,2015,1690,1638,420,388,1312,325,388,2316,999,158,1627,2091,1842,2857,2153,2019,224,153,425,1333,453,1080,1227,2885,1537,1409,2459,2479,717,1486,2156,991,1382,1260,827,158,557,768,1866,1132,942,2225,1375,2173,757,355,1862,1722,608,2552,534,1524,2267,1680,2234,2887,1408,2912,96,2786,2903,2780,2031,1246,1482,1134,1394,2300,1370,1727,888,1473,2020,1460,1117,1328,611,447,622,329,1803,1201,2831,2786,863,2305,188,2843,1996,271,2370,1697,2378,1057,1774,117,1722,1383,387,406,528,1453,2875,105,2441,274,1181,1841,1752,1812,591,1158,476,2108,1839,592,1528,1497,727,2301,2705,2694,152,475,1421,1942,69,2100,908,1233,1027,1136,1730,2205,120,2058,2384,1809,126,1275,1700,2577,371,1331,2845,556,1570,2211,2405,1051,1018,168,2578,1984,1462,2874,1657,2178,1179,1684,535,1701,2125,1873,1670,457,2320,745,2877,2230,2407,1918,2567,2257,721,1178,685,1590,1080,191,2677,1911,2504,2229,228,1959,1868,925,1932,1644,228,1051,2982,984,1368,229,1597,2018,400,2644,386,2786,444,1824,1858,2176,1293,459,2879,1511,2047,145,856,1425,1450,986,907,2500,369,2084,568,469,24,1965,1532,2197,2012,321,854,848,1362,1761,2695,1060,2661,291,1576,1167,1924,438,2540,1052,617,594,756,1646,733,2166,2819,2307,258,2282,2464,1850,2852,339,1936,2231,561,2415,1458,1182,1394,1424,1399,1072,2381,2080,1109,923,2141,643,928,214,88,1973,1481,102,2581,1319,2554,2144,1856,1099,2610,1571,2228,711,1232,1437,2838,1103,1339,484,358,1329,420,2666,133,1617,1626,2769,1852,1803,396,2832,1383,287,992,2033,1873,1027,483,803,616,1804,1352,846,1964,2914,2154,1372,2643,2978,2326,343,1869,361,2358,717,1153,1724,1443,2142,113,143,288,462,2467,2832,2357,2121,2846,126,2333,2380,1341,2054,44,729,1085,2028,1601,635,1074,1552,1779,218,2660,1146,2470,1271,2651,2133,2773,141,1236,2642,2135,278,1820,115,2249,1544,1438,1178,2938,2350,443,583,916,2304,2655,2114,766,1470,2548,2366,70,592,1263,525,817,79,1336,708,578,1397,2020,1515,2489,2326,2606,449,2144,533,1298,836,2800,586,1908,851,779,859,1805,1051,357,2263,1446,780,2547,680,1901,1717,2623,2362,2628,2407,485,1801,2622,1182,373,1579,906,2751,2688,47,2699,2930,428,1385,1239,1177,1653,1250,71,2521,781,1322,1838}

    2437

    2507

    Returns: 620434135

  104. {1122,1975,1338,1413,1756,1403,2360,2463,387,873,1461,1768,1655,1946,2326,1836,2888,2680,2642,1464,2362,250,878,2031,2153,936,1988,2097,2730,2785,2496,1816,114,2714,2949,614,111,39,1340,1902,1655,349,1963,2322,744,2389,1200,1639,810,1250,1009,388,412,2249,700,1870,2172,1674,2574,395,2579,189,2264,1557,12,777,730,2400,1629,2905,1156,544,1563,2012,686,333,148,2159,2723,970,80,6,1774,2668,602,575,1635,2187,815,2747,1546,2624,2666,2979,1478,1551,1507,2996,2720,265,1026,2133,1362,970,2549,1252,1972,517,1442,2971,2988,1153,1528,2746,26,2645,2828,321,1359,2291,1339,2446,2938,2280,2618,411,1493,1709,627,1993,1306,490,2201,2239,2000,2734,2614,1335,2483,353,2213,2778,226,310,1306,2397,1310,1825,1392,2257,240,2292,59,72,906,150,1044,285,2485,2153,516,180,274,2977,2909,471,745,1684,263,1520,442,913,1124,2927,2211,443,921,1584,754,1486,483,1417,665,937,2248,2946,1007,1081,2298,2083,457,2358,2576,1823,1236,2975,1581,2276,2357,2650,1689,2307,1681,417,2310,1888,1395,2800,2296,442,1440,1238,1203,1893,2305,885,1830,1474,1181,1500,1483,1581,2368,107,869,600,2979,1980,2157,1697,1614,1315,1104,1171,1034,752,683,1070,1900,1410,2299,775,155,1598,2315,697,262,1176,448,2783,1875,2315,932,389,2591,715,2450,1283,1859,101,2023,2153,1185,688,187,1872,2920,2025,1976,1396,926,2934,707,1570,823,1065,1777,1053,2677,2153,193,56,41,1401,535,1644,262,1610,1892,302,1788,1218,95,2485,2096,1939,746,1038,458,1476,1881,2254,2303,2389,1996,2402,1792,1676,1720,2579,2325,2627,2848,2240,992,2469,2942,695,2604,2342,51,976,1877,2351,78,2371,2897,1870,597,1953,2419,364,2527,739,1943,1688,2056,2401,846,663,1214,2539,2085,1121,708,2301,1470,287,151,719,1466,67,1264,882,2488,216,239,2946,1187,1190,1526,663,2824,1061,617,2822,2024,1124,2231,1801,1394,1223,2184,1873,2721,1654,1692,2236,2175,414,2396,95,1767,251,2419,2555,2815,1945,2287,2038,2966,1451,2596,1455,2176,492,1555,340,503,2391,1180,1415,1213,2306,855,2523,1840,1000,1934,1869,646,750,1032,97,663,1646,1973,359,838,1994,1400,1482,1643,1206,33,2495,2843,1745,462,2273,1378,2974,1017,442,664,2475,423,2933,108,2008,2823,807,2384,1078,2851,2487,271,2720,113,2699,1645,1606,2258,899,1582,453,648,844,1043,810,2025,759,2175,403,2727,1889,2145,584,2314,981,335,2063,1272,313,1575,2946,1543,2530,1305,2603,1184,1812,1543,2802,2731,2871,2212,821,2969,386,717,506,1889,1351,1249,2035,2953,2811,2375,18,1258,2001,2305,2210,2536,793,2801,1841,2823,738,573,1445,2366,436,2925,1698,1670,1320,843,1864,327,1910,2874,2862,1583,800,68,2598,2960,2869,1722,1161,2414,431,1990,192,192,2506,856,2032,1901,1062,454,215,2691,890,2931,506,2837,736,2292,2412,1015,2615,2324,2973,1753,1550,678,992,1976,759,1821,2136,831,360,677,2960,1758,973,2683,1429,707,2949,515,1999,1414,351,971,2724,2223,564,1794,2597,379,201,2977,362,1269,938,1691,2816,223,2069,1958,1581,2409,1820,2854,2664,1431,89,1109,1456,2647,330,150,819,1989,926,1368,696,2455,1703,498,1893,2757,2083,2390,218,291,2084,2145,1452,1066,1326,427,2229,2496,1341,384,2776,2439,214,860,2875,823,1677,1008,2201,547,1388,2799,1853,1638,2295,2618,2863,954,365,2854,2938,884,2230,2542,691,2402,1228,2489,859,469,1653,277,2738,1908,352,2173,2874,1659,2824,1584,1118,2786,518,705,1220,2239,1593,2770,2186,1607,30,1415,839,2407,901,2546,260,2269,1169,668,907,192,930,1009,1851,2655,2100,1694,685,2668,498,120,1421,1084,9,24,1134,539,2516,2853,1871,931,1318,430,1574,305,829,450,2281,1742,1841,2778,2178,494,2501,2091,2802,637,626,1253,1549,2049,2247,2585,2871,2051,48,1029,1514,2449,2750,769,2610,1238,343,2498,1811,2951,2599,647,1679,2234,2197,2024,200,375,572,2474,2988,418,1180,280,2832,2053,1537,222,2725,2328,1522,1601,2019,888,1710,2701,1113,1491,1791,1780,2841,2768,454,2482,1999,73,2515,606,1084,2196,1212,1391,467,725,117,1951,2532,2638,1758,2196,2703,1449,2766,885,1526,2535,1048,97,2699,480,109,2922,2240,843,1612,949,1966,1442,1853,1998,1452,1512,952,523,1309,2939,2,1435,2045,495,2187,507,2294,1267,2812,1022,2771,102,300,1379,1900,2837,1219,1944,2073,1891,2546,1473,829,1927,2005,242,1721,1743,788,728,2807,52,1918,2678,769,2269,751,1977,2226,2438,1303,1759,551,879,1429,1263,308,2257,1130,1355,1106,1966,604,1454,2088,620,2572,1106,184,1263,1625,95,1117,655,1795,2971,1853,901,1317,1244,1241,1742,2598,1504,109,1094,1206,185,1562,1972,877,1343,1167,2669,2678,974,954,1866,11,2499,2920,1756,2543,1085,922,1584,708,788,1470,891,928,2108,1906,1086,2714,1787,2990,1990,1964,2030,1910,1184,1934,1566,1057,1550,138,1796,52,2666,202,740,2185,2569,74,1498,2800,2958,1591,2477,159,660,2597,380,2811,329,2205,2967,2632,3,2920,2375,83,2738,502,2634,2427,1258,2040,2438,2828,1307,1674,93,2292,2683,2844,415,2302,2672,2332,892,2152,8,841,1592,2114,1603,2137,673,932,1581,1259,1314,2957,2696,2324,33,1662,57,50,1528,1301,2192,1079,2052,2801,1384,1455,1191,2303,479,547,1054,1473,2531,1594,2484,945,2979,337,783,2430,1306,2979,283,2790,709,957,2748,2290,815,292,1545,451,123,2975,2452,2099,919,345,1371,2451,1942,694,197,2788,659,2549,1516,948,280,2246,1992,1997,2719,2380,275,298,987,204,1701,2197,26,898,2325,1410,230,1857,2067,449,1542,2398,308,1032,1418,1453,2775,107,585,135,128,244,1482,1536,2075,2234,454,1789,2443,2911,1123,583,551,2879,1542,137,2340,765,2226,2225,2340,2957,778,2155,2824,1871,2568,271,2198,2444,1337,1719,1443,947,2099,1115,912,1205,353,2050,2928,2871,1623,182,1275,2053,2463,485,861,2665,1912,1337,1576,130,1255,6,2362,1077,1532,2472,2300,1271,3,779,955,230,2058,150,1951,252,489,490,284,809,2457,1251,2768,431,1991,1996,2152,1779,2108,1686,1581,1177,288,2289,2390,520,1903,285,2154,2178,2600,1055,1954,1254,2557,1067,1661,2332,985,2661,160,1740,2745,2421,1940,2014,2696,1198,207,2664,1360,940,1644,221,623,2388,2428,643,354,1594,879,56,554,2970,433,1550,76,1243,2729,2553,2649,2325,733,1536,655,1008,2684,949,866,1782,1800,1391,1317,736,1393,2734,53,166,1455,102,2759,122,1787,72,872,1863,2348,1640,2761,1245,2762,2828,2717,2503,2811,995,934,2340,1536,770,817,1312,1933,2760,1594,1302,2865,764,65,795,2500,1621,672,576,1009,2846,1766,1040,656,2946,1299,2783,746,2459,829,2556,1364,1943,511,408,2934,2914,2840,2526,2384,510,1666,2740,429,2094,966,993,837,1330,655,2070,2749,1306,914,545,1431,2180,2269,2934,2738,249,1407,99,1273,2945,1061,1813,2189,691,1300,1362,379,2807,502,1380,2134,161,2509,1022,808,785,797,1611,2394,2306,2280,327,594,2502,607,2222,2196,2300,858,1209,1331,2559,1402,329,783,1454,1312,2709,2940,150,2696,540,842,1862,1004,2033,157,2059,1122,2496,2461,2964,607,186,1258,1446,2429,456,2133,1390,125,2935,2534,798,2728,2547,2912,2688,2216,864,1435,1255,942,811,682,386,93,1242,152,89,867,486,2486,2589,2261,681,595,201,1878,1026,371,2945,685,1854,451,406,363,932,2164,27,2202,618,1935,432,1745,1116,2642,1288,662,920,1159,2156,1403,2664,652,980,1356,1666,2906,483,168,317,2642,1263,2014,1056,1700,2210,2872,1092,2947,1502,1178,1721,2185,1519,2195,1124,2708,2162,963,1632,2573,596,2308,1419,1494,2369,2043,1608,809,2993,1799,358,553,413,2324,1975,2724,198,2436,913,2735,1837,1468,2166,1957,2212,2816,134,1081,1961,369,1222,2907,2934,850,2235,369,2425,1447,2648,2031,731,1802,1907,2316,1967,2743,2702,569,271,1057,1692,523,2100,1771,1487,2618,880,1660,193,1930,2145,549,989,1914,302,2611,988,1713,2934,2259,791,703,274,1417,524,1195,2568,1230,1285,951,1439,338,2393,2763,1329,1247,1683,727,2774,2407,990,2209,2998,1542,1577,1817,187,772,1943,521,195,955,2891,1560,963,464,2489,1439,172,2260,474,1596,305,169,863,309,2008,2346,1423,2366,1796,989,1917,2255,1227,1365,2153,2673,2173,860,270,1158,811,1698,1760,1934,991,1675,957,2934,1163,2050,2030,95,1184,444,1900,2583,640,1964,1804,753,355,1067,2835,1843,1839,323,1787,2323,1280,420,2453,1733,968,1890,2204,49,1774,1763,768,3,1338,2036,2307,2197,2496,1671,2804,1156,1006,483,451,1283,2736,200,2737,2145,1369,1838,2685,1934,613,1584,2760,348,2141,1473,1683,210,1092,714,2946,961,2549,1835,2305,634,1143,2879,764,1111,2518,2618,1419,2755,1692,484,2163,2267,1284,2269,841,1275,211,2946,2082,2192,2781,2705,2241,2114,1148,2349,2228,1941,1165,1195,158,2386,1749,2282,522,2254,1966,1915,2262,1188,1134,248,47,2799,1517,687,1828,405,787,1381,2084,1184,1184,977,94,2738,1323,1107,2590,1606,2359,1420,178,1375,842,335,1983,1103,1692,1417,1705,689,2831,241,1214,1607,2496,1708,2136,1904,1505,1016,62,609,1549,2453,136,1709,2242,1245,913,2586,1870,2177,2097,640,1032,464,2320,255,2150,2666,1028,2750,444,2541,926,2581,1867,511,2619,1563,1387,993,710,2803,978,629,668,2153,2449,2335,1856,285,85,1373,1175,1558,2552,425,803,2789,2180,2622,2007,1345,2868,611,1812,2277,1295,2876,1467,2080,955,321,2475,2474,2440,299,1552,2278,2013,1861,2941,10,2522,255,23,790,2857,1063,2863,1728,936,2041,944,685,2926,496,1417,1573,926,2229,380,2591,33,2817,54,1775,2625,2582,230,1568,668,217,2305,1989,2723,281,2378,2320,641,99,146,95,2191,513,1343,1628,2702,620,559,2503,118,1292,2558,998,2877,2130,595,313,2229,2683,324,2967,1712,2035,156,2762,865,849,2420,2031,1337,2592,874,2662,2194,2109,1818,1323,2700,2124,2788,296,2669,2061,1316,2149,1433,949,2605,1795,1193,1692,2743,1219,112,2847,2000,1280,2549,1894,2230,1807,18,862,1099,1731,2751,2229,2786,2734,2573,796,302,2169,2245,2422,1730,2068,2852,2076,1307,806,1297,509,1723,646,717,2210,2820,45,2558,1412,838,1796,1267,2786,1472,1791,1000,2535,759,832,2812,1486,453,724,1473,2958,1066,1523,828,252,2521,480,2870,1640,224,2028,2810,2752,2150,2126,101,367,248,1796,115,604,1865,103,245,0,562,2320,868,754,1269,530,2824,1897,2195,2698,150,246,836,782,1171,272,257,9,399,481,491,2166,2800,797,2827,1780,1673,1941,1646,2567,1168,2107,1876,1260,2534,1149,2215,1783,100,166,276,2183,109,2934,2819,2525,566,1445,2586,2622,598,2929,1676,712,107,2592,1747,2805,1954,668,1465,163,333,1805,2238,1448,1216,1455,1039,586,3,1474,730,2465,1155,2153,1875,2248,1823,12,1490,343,1560,142,593,2574,1154,89,2469,794,2431,2908,1682,1920,2028,129,987,589,719,2751,2670,2647,2077,1780,2776,2800,193,1186,2432,2765,1156,2347,2466,1263,1928,2612,2236,1050,480,2529,1342,2005,2977,973,1931,1713,2370,271,2961,2636,2220,2438,734,1553,278,2830,2098,1436,2153,817,1125,163,1924,47,1381,756,148,1982,1556,1805,171,2278,43,2335,2150,107,1197,1981,493,1992,663,334,681,1996,1143,2023,29,1063,1391,1847,343,46,1390,1328,1043,2057,1471,990,2670,2158,2503,2624,2641,1124,1946,1529,2958,2989,2355,1441,1580,1567,1109,537,2154,1160,1627,1817,2449,2232,455,2580,1898,1703,1004,1844,1724,2325,911,2565,2496,988,1442,2305,2756,1554,1308,96,4,588,2962,2907,1488,1456,1629,706,1562,489,2944,13,2025,2808,2949,702,1644,1124,57,2896,2369,581,2078,2312,480,2472,972,668,884,2712,311,293,394,2971,2312,2650,760,2791,2506,366,1557,1899,1853,969,1113,945,739,924,1637,2605,1556,1177,2443,2920,2195,453,1263,1992,681,416,2352,1721,192,1571,2943,903,520,1408,2251,2100,2260,173,2712,1563,2082,556,946,956,1384,2554,2119,713,1692,53,1435,113,1996,1534,2135,923,1776,533,1163,2328,2396,523,2884,2030,239,2501,1479,275,1096,959,158,2949,2626,1198,1611,2869,1269,964,789,658,2227,759,2325,2085,605,249,1344,661,1764,1756,980,234,1046,1197,1769,536,518,1198,2690,1957,568,2620,1379,459,2407,1136,1658,2383,1669,1087,1810,1450,2695,21,1361,1836,2279,1071,2009,2331,377,833,744,2602,1113,415,1702,985,1542,2624,172,1570,1399,1970,943,1360,579,1625,1883,2903,2253,332,1586,2515,1207,2964,620,803,1676,1832,2994,1999,1850,378,2322,1168,763,2933,1312,1675,1641,1772,2920,437,2320,2772,253,752,77,1290,2890,71,110,1585,1758,525,1027,952,2670,2950,2806,1112,2530,1438,285,2047,2633,1066,2724,853,2099,1129,1435,1621,1303,2223,1654,1729,918,1137,542,2589,2594,1951,2026,1724,109,2761,2899,2010,2948,259,2496,938,2336,1491,2299,2381,1547,2191,2526,2852,1534,972,1945,150,379,1642,1795,1399,1,2932,1079,233,1552,257,2847,293,1930,1553,446,1064,2295,1198,485,687,1534,398,1751,734,1560,400,1012,2143,2534,1862,2416,2081,562,2211,2905,954,477,2300,659,2824,2640,1342,2256,220,550,481,2066,1602,1597,1382,1621,608,244,2002,1980,2946,948,2828,667,2218,552,1178,1795,1873,881,2778,1552,1670,1739,2844,1625,2432,1333,23,1256,86,2822,1326,1588,2050,1549,2241,1847,1938,954,1727,83,112,2946,1997,1150,932,1887,1823,511,1119,2135,380,2673,2221,385,2254,1355,14,2575,27,666,2653,2534,2786,250,1621,1263,2832,1326,2366,1736,2296,1338,852,2252,1998,2242,1034,1678,2588,225,2139,1259,1535,1777,1710,2148,911,1605,1183,321,2727,476,1195,638,973,1312,2884,34,1001,1287,174,1229,1842,507,1208,1358,1833,2434,2611,2143,1403,2153,1774,501,674,2958,1480,592,2919,2100,408,2424,267,1810,1454,830,1265,323,79,2779,2711,1477,2868,2244,984,2218,1329,2136,1516,675,2274,1003,1794,462,2826,1257,2651,150,348,2364,722,561,2607,410,1663,2871,2901,2521,2784,2448,1101,1121,270,1417,2758,1013,2600,2938,500,5,2092,445,801,2182,1287,580,2034,1947,2824,83,1106,2361,139,106,2671,1083,5,1206,1360,269,2441,2537,1701,2374,1966,2741,2869,1534,107,1044,1813,2087,2955,696,308,761,1719,1325,1962,289,2174,37,2979,2603,1098,2860,898,163,2147,682,2990,1081,1842,1806,1125,2519,1427,991,1668,1568,2917,1093,1170,2990,2732,1180,1836,1184,894,1037,2168,624,1426,1616,48,1923,2878,401,2697,788,220,275,1028,789,2538,1998,1136,954,1940,577,2567,2918,2648,494,1783,2702,2719,2462,2857,627,387,1666,937,351,1873,2587,2530,2240,2704,2715,701,1648,1830,198,2524,823,1718,439,2036,936,2968,357,2006,102,563,1072,2628,376,1042,2272,2933,2311,1540,447,747,190,810,2767,1803,2887,767,2928,409,2930,943,1377,970,2675,1978,2182,1689,2469,1023,2567,1847,1851,834,2237,1560,1361,477,2071,2429,1099,667,298,2738,1139,2824,777,1567,2153,2750,1018,1172,205,1738,1926,2318,2633,2135,2591,2710,2727,2067,257,907,1965,515,2950,1344,1589,2355,1126,120,1449,1625,1347,2109,2380,2072,2575,970,1028,2440,2426,619,2764,1781,83,2388,1770,643,2679,1913,1420,1855,1830,1714,1797,2426,2828,1711,1452,432,2468,1344,845,1340,536,478,2546,2085,2938,1907,2226,783,858,1675,1125,846,1402,719,2283,2288,2825,1183,2507,1050,2181,2188,295,1985,298,941,408,1786,1158,2299,2141,798,2921,2885,13,2384,560,2765,2833,489,2410,1716,2488,2889,141,2053,488,497,2924,1685,2468,2513,1695,1627,519,2761,975,1817,2386,386,471,514,374,1777,2001,669,840,2545,2504,26,716,1564,992,732,630,1937,775,2986}

    {2042,1009,660,2134,859,2279,268,2575,1559,517,1069,2551,1189,1308,1468,842,1485,1856,1744,1609,2566,2989,402,457,1498,1599,1049,2983,1294,1335,2418,2285,1243,902,2409,1016,1818,1162,2229,2541,274,1666,1784,1409,2599,1875,2903,789,558,2465,2897,1809,2458,7,1298,1959,37,1526,1612,1410,2146,1894,603,188,897,2985,404,2499,2242,1823,2801,2477,1692,2396,2389,1223,1934,1599,2583,2086,2938,432,1955,2905,1028,2548,957,1406,252,1246,2295,2952,384,1525,1518,964,55,1801,526,66,2194,1329,2637,1755,2240,2245,1845,2438,2114,48,103,1436,2664,2368,1831,401,2792,1096,1729,995,300,1910,180,489,1196,1830,2753,232,2874,2384,2956,2110,2618,2911,543,2330,523,636,980,2367,2612,2440,1342,291,599,2738,1215,2442,2286,224,1463,2571,1560,254,992,2212,960,2800,438,2259,1099,505,548,1047,2893,23,2212,284,712,694,2403,1765,567,837,1243,2160,1662,759,2372,2938,1699,2661,989,2493,2617,1436,2549,399,1892,1217,2773,1992,2433,484,2809,1141,721,464,789,2571,559,1394,2949,926,2788,1438,2737,191,1171,2008,1058,698,431,726,267,992,258,2480,881,2229,1230,970,2470,1531,2323,1999,1452,1304,2733,1044,2831,1142,279,2008,300,1746,1247,246,484,2047,1201,452,2164,2426,488,2945,1052,641,2616,2304,1654,2706,1179,2550,1515,2224,2915,1125,2539,393,213,99,2790,1752,2652,2997,2441,1673,2735,1412,2671,2321,460,1374,771,2476,1997,462,2127,2768,542,1925,2515,1370,2242,1223,1416,2795,2476,82,1779,1467,1886,1503,794,1680,2807,1748,1681,1861,1219,736,805,1503,1896,611,2063,986,2802,1362,788,2540,1052,757,1895,2102,1001,564,1213,1303,2683,722,267,2374,1909,1071,857,1836,92,2787,1481,1259,2151,2050,1618,1848,1173,2194,1815,18,1088,56,1285,2883,2972,1648,1571,983,2368,515,97,2635,276,230,2114,246,1550,1326,188,1276,28,1625,357,1076,361,1762,66,369,1767,2395,126,1988,177,2619,1997,1912,932,382,1039,746,531,2990,507,1777,925,2182,1114,2318,2998,472,616,1793,1051,2329,2445,1482,2747,2898,305,1404,963,398,2780,107,2129,2933,37,2016,1411,1862,374,735,1459,80,243,523,1030,831,308,1655,795,827,835,956,2252,1322,1530,2292,2010,1453,941,581,951,17,1911,2965,306,668,1414,2726,1061,604,1833,1126,2194,483,833,858,2833,2031,2397,615,2398,1503,2440,1646,2328,2914,1725,1667,1880,2608,227,701,704,253,1636,1723,1129,2969,1357,1249,1579,2245,2377,2880,1847,271,2800,1541,1735,2163,9,1422,2542,2697,2513,2118,2621,792,668,350,2845,2035,2881,748,1953,2235,980,532,1433,2065,1324,1027,2548,1390,271,1533,1794,1087,2853,284,2509,376,578,1779,2000,1159,1280,484,2036,601,2103,1076,1078,2531,2609,2094,463,2230,1155,173,2296,20,2613,1232,87,1543,1372,1346,1084,834,1091,1919,2993,2641,2397,1482,2143,2142,2618,2261,982,799,1437,1862,2353,862,2331,2514,73,1988,315,1769,2658,464,1669,1524,2360,2452,759,783,1428,485,627,1717,1221,1916,1354,1515,826,1386,1316,1569,2940,883,867,457,300,1946,1436,1948,1726,147,2844,541,2815,1477,908,80,1798,1910,1821,617,443,783,1236,153,1726,23,245,2317,2966,2864,1882,1291,441,2751,1036,405,1623,1215,2190,2413,1021,1428,2585,1171,1727,543,215,2038,1436,2478,887,1795,1423,443,2188,2165,1550,2380,2801,430,407,1947,1457,1012,1477,2498,1598,67,1852,1696,28,2015,1155,1275,2471,2517,2105,1174,1548,1040,2233,809,1691,1294,1403,1120,2938,2940,171,1473,2515,1492,1843,23,2601,2919,2034,721,116,365,821,755,1530,96,2454,926,980,2951,2643,411,621,119,309,193,1158,396,1963,1152,936,926,711,2677,2549,129,1265,1782,1761,429,1611,2802,1418,632,2690,2021,831,2207,2309,534,132,961,1198,692,1963,1595,1043,2928,448,253,749,781,578,1665,2980,1478,1294,2153,2751,1155,2829,1350,2070,2900,2481,1812,2485,1572,1651,1434,2692,2131,275,218,749,300,2029,236,1174,2335,1866,1024,1995,2776,502,721,1383,2913,2775,1082,2592,2387,721,1801,2989,713,2582,2004,2674,134,1441,1883,2377,369,2946,2235,1194,914,1353,1619,1180,1631,635,1511,1686,412,2084,2879,2941,2254,528,1263,2281,2598,922,2065,2886,1633,853,2447,1156,1542,1766,2043,2396,595,2946,2570,768,2435,645,808,1659,606,1531,1475,651,1236,2404,1105,1453,678,653,200,2744,60,1631,2263,1450,2650,2574,2030,1482,2122,534,1190,1696,1316,684,563,1401,1932,2165,909,286,1576,2960,2546,2946,99,2551,1603,2647,870,636,2969,2000,1538,2816,937,470,568,996,2997,2415,2008,739,392,2699,282,1826,2258,2181,1106,1829,92,604,1921,381,2800,170,2000,504,522,2515,1796,2014,1885,579,2194,814,845,2567,1009,1385,2024,1332,1860,2123,1622,1988,2276,2382,900,424,285,1665,2177,2567,666,519,2722,1300,1772,1293,2000,301,1475,53,936,385,2332,262,8,2255,341,1525,2319,487,4,1089,2631,1587,2506,2721,1174,1340,1273,582,2456,76,2677,622,2546,19,824,390,2584,2999,1785,2423,1762,2950,2353,1348,2229,1180,1179,761,2564,2765,2450,2033,1166,1423,2765,1613,2761,573,2504,1604,733,1562,1031,2903,574,2866,2958,1780,1578,2392,444,1590,1701,194,1769,1796,294,331,2551,1458,2032,1234,461,299,1211,1692,1336,2336,1602,1066,2821,1851,2707,1705,612,164,1179,2385,641,2954,1095,762,967,1243,319,2379,12,168,1707,2411,2188,39,2476,2338,2856,656,2060,1939,1497,2976,1313,976,1765,2089,2531,2501,852,1468,2891,1717,1606,496,2154,1929,2892,906,2058,1581,546,2175,754,913,2589,127,109,323,2384,912,1615,2429,694,2798,1451,1253,264,2742,1943,1704,1581,956,2881,2208,169,2439,1245,1366,2560,2381,2840,2005,2337,206,768,80,2212,1868,37,2335,1068,1498,1605,1628,1455,1094,2362,2558,1286,1093,1120,875,1625,2579,885,878,669,2350,792,2393,2294,1435,218,2683,212,1531,195,124,2662,639,80,1472,2027,629,1699,2245,2919,2208,2184,1266,2964,2530,1164,2834,2188,1188,2144,831,1076,204,2277,972,1853,713,565,786,1706,1617,1851,1885,2577,720,1544,1290,822,1791,2088,2506,2343,1534,1996,1796,398,2972,1108,347,1460,654,1499,1837,1743,1565,2101,958,1025,2628,2959,32,475,190,713,1996,2879,38,2989,2813,979,2919,1306,2018,2840,2714,2636,1432,586,1500,2081,1030,1737,499,1484,1231,2538,1290,2796,16,2328,1346,1134,1327,1638,2691,2979,1424,2818,950,1672,1376,768,1337,1583,1693,1289,1190,210,1272,2644,2507,766,1576,1715,568,2271,2467,2761,924,512,2910,2909,1180,1129,1045,88,1626,1059,2108,143,1316,1011,1072,1539,465,1621,2265,2159,2750,2167,795,2333,34,2979,2609,1801,2927,1507,457,7,2320,1078,808,1120,2345,477,1600,646,1017,1489,892,235,2229,2048,1423,661,444,2463,932,2671,1434,1035,2597,2334,1740,2517,1132,960,1644,507,153,639,2648,1914,428,2344,1926,631,135,2541,2754,1979,1146,2718,84,663,496,2058,810,2544,1879,485,1692,1773,607,1828,1526,455,484,2293,215,2649,802,1495,1945,2262,2978,1762,2913,1075,1647,1391,2877,2294,2507,784,542,2112,2975,2858,2079,2506,2841,748,2593,1444,913,199,2569,1418,2245,2250,436,322,1040,44,1235,586,1808,2650,259,2138,1259,748,498,591,1922,1681,237,2938,2969,1724,2082,1482,1655,2405,625,2088,1834,491,2621,2507,2590,1353,863,121,2216,2592,2966,647,192,2857,2917,1211,1885,817,2095,2932,1019,1243,1574,461,1730,1801,573,651,1619,134,340,1909,2841,2362,2543,2707,275,1620,1858,1712,494,1210,1472,1545,48,2313,906,2967,2702,717,810,2606,266,1145,1614,1168,2132,2656,884,1954,490,2597,2466,1496,1225,343,147,1043,1003,69,398,20,1427,2258,2325,2980,2365,2012,2913,665,224,1696,2539,1221,323,2982,1732,2382,2511,1287,2067,246,422,2339,2253,562,163,2936,2363,314,1590,1805,2618,90,2958,2506,1911,428,1969,1199,2333,1338,2200,820,2123,2872,1450,2395,641,2630,2081,1234,2235,96,2014,244,1083,1469,2874,1452,2125,2324,2089,2111,1312,427,319,2856,1418,2778,2676,943,2000,209,2312,309,2749,721,2586,723,2552,2992,312,1352,2751,2278,1945,2203,841,2530,164,592,2067,2489,2341,2877,42,40,1508,35,283,58,140,1135,776,879,162,1583,724,164,2067,1215,63,795,1823,1215,1204,2008,896,2411,344,2831,2833,1531,1392,876,2624,650,1790,894,1077,617,935,657,854,269,181,2285,2356,67,1139,2410,2810,1010,477,336,783,757,480,2662,2360,415,307,2436,2810,2784,1510,2199,1450,168,1392,2318,2467,1608,2870,301,1993,1226,435,2765,1542,1804,1814,2383,434,2357,1412,2846,290,1652,1110,527,1809,2711,2951,1900,2849,1638,954,2059,1598,2777,1578,2778,1590,2384,2268,678,2347,825,806,2618,1910,737,1951,731,2859,2760,2840,684,590,2660,1757,1144,2275,1939,1196,2475,2055,2549,2727,2552,186,2464,742,1435,369,2443,369,2666,167,2188,312,2408,1435,1268,2277,1574,2998,2812,697,1999,2839,2716,988,1649,1903,2912,1165,387,2618,163,1969,681,161,2697,958,2506,2855,788,1690,910,1956,2171,2993,2657,2670,1715,1404,1521,2107,862,494,1608,2528,2466,686,1236,805,676,2040,2671,326,564,142,2463,283,1621,2472,70,1282,321,464,989,1819,99,2496,1788,2904,1147,1826,22,1796,261,256,1408,851,1058,1758,927,2914,2043,1500,672,1675,2750,2646,65,1949,1456,892,2757,651,1128,2237,2512,453,2035,279,2684,233,131,113,2982,2014,1305,2700,2194,2750,2039,948,816,196,762,380,2549,547,2420,2124,2561,2490,2179,822,1133,2663,1623,2121,860,1033,1012,321,1122,1609,2896,2444,610,175,2936,1085,2296,20,2413,508,1638,12,466,2806,1334,2129,906,1513,25,2247,690,552,2077,465,2991,168,994,2619,2849,1608,303,1307,1103,2325,61,1151,2445,1470,2318,1403,42,1005,1643,142,818,787,1567,668,2105,1028,932,649,254,774,373,1997,1269,623,2149,1624,2033,1071,183,1492,2650,1372,995,493,1108,1574,395,383,927,2750,229,2849,2738,242,1996,109,1315,2850,2219,1296,2521,1001,2501,2842,515,2327,2916,2849,98,1785,2472,2491,2184,1311,2884,1012,1988,1813,1743,1405,231,829,54,1091,271,2507,1686,1149,1213,2418,253,633,1319,1822,1222,1787,1227,1047,1574,1281,2671,275,2370,139,1436,391,2895,278,2217,2801,218,1555,1041,1270,257,2478,1885,2050,2932,2667,2056,453,1612,2191,1874,1486,2324,2180,1279,2088,37,2255,1988,373,1172,2442,2831,2839,1180,2689,2045,2977,2060,1163,893,2867,1367,2552,2354,806,2657,1449,1638,743,171,2477,2436,881,271,1549,321,2735,527,1442,1556,2037,642,2214,2394,2391,1984,379,2921,1027,1003,1452,465,2772,2599,1024,1486,2750,48,2911,2794,1988,1501,131,493,2141,2700,2542,2502,167,624,2907,1774,907,2954,2648,651,215,2686,961,2452,1527,1827,2007,271,1241,684,2747,848,2578,865,2500,888,583,768,238,102,913,2050,2698,67,2793,2097,2772,1300,2206,2157,644,2762,2328,666,2287,2636,2778,2873,89,1182,2996,2995,2175,819,868,1360,554,755,2084,871,2895,1140,675,2399,1353,2279,1492,1168,2574,326,812,219,974,263,84,1542,1390,750,1398,780,2605,2124,1525,1052,1100,376,1912,2475,2709,588,1271,1956,1258,671,2684,2599,926,1171,957,2769,2389,759,847,2113,2286,215,2389,1464,147,2251,2792,2284,1011,627,1467,6,31,1657,1027,2666,1779,709,1893,1954,2522,2293,265,965,74,1040,937,713,1329,1354,1909,1580,904,1590,248,1953,2050,39,2044,2113,2955,1556,508,1351,57,1986,2445,2495,2230,464,739,1403,1024,1419,2551,1381,884,2297,1198,2003,2963,2376,2596,2207,99,419,2562,2881,1748,2320,2050,1147,2320,2937,1862,726,1548,2044,1750,48,1441,2191,441,2693,1108,23,2494,52,2380,2175,2571,249,1372,1102,2902,1741,2505,2596,2299,1175,2728,1265,2093,318,2065,1837,1638,1556,1251,521,1103,773,2653,2629,2219,789,1344,2733,2323,91,440,1060,1960,2789,2602,1463,304,2507,1656,1899,2814,1127,1936,276,416,1924,791,2388,1083,1883,90,2357,1172,1390,2479,2437,1343,1812,637,1468,1506,2919,2460,832,999,2264,187,1952,1799,285,318,799,2687,1239,203,933,1765,2649,2011,1586,2273,1329,2153,818,2342,1,2861,1190,89,2568,668,2017,275,1069,2266,1195,2498,2987,1848,1924,1805,982,2872,1177,1734,2739,2419,1954,176,2022,2760,2128,1873,2191,380,482,1598,1570,1968,2526,2248,75,346,750,2335,2497,1184,1261,2563,1249,1918,1010,2373,905,2492,1190,1691,1473,2500,1770,114,688,2463,628,2654,1634,2447,316,1065,372,421,1214,653,679,1482,1771,939,2682,1321,2087,1519,644,571,1349,1808,514,1549,1163,1254,1858,880,738,739,916,303,1425,297,1415,2775,1782,2901,1323,2267,2723,2872,700,2840,2950,2212,2294,1613,2094,2712,1462,2059,1570,2797,1664,1307,929,1086,945,2520,1347,200,1002,1223,2534,875,457,1048,1430,2117,198,2427,2410,1024,325,1532,1645,2836,1210,1376,2019,64,2690,306,1970,2567,914,201,2193,2659,2270,1650,375,1996,746,989,2104,2421,1014,1849,1337,2879,1120,2489,2527,538,137,1213,738,2788,1950,208,2550,367,1224,693,2358,2531,2981,1418,2671,1542,1358,2380,529,2191,2447,331,1936,399,2609,2191,2074,684,91,426,242,1286,1281,1630,614,92,2527,2728,1012,2769,2236,2812,1151,1627,2817,179,1251,2343,886,2874,1710,1789,1696,1531,967,2627,269,2681,668,1417,2546,220,385,2672,2761,2115,2559,2695,2369,2507,2882,81,2919,2406,1971,2650,2618,1757,83,2618,2496,164,33,2743,368,2153,649,14,2475,23,2747,491,15,2767,2332,1836,2227,1030,105,2293,2062,670,145,804,1307,2647,36,860,2713,2368,2651,144,309,246,531,1705,1372,42,2467,953,2894,1213,1503,2090,2313,2880,2142,1974,1823,1824,369,2497,329,1823,1666,2558,2253,1233,917,255,2243,2106,2433,88,680,2341,661,954,2382,2783,1846,554,511,369,2757,895,2126,1389,1681,1987,2254,1485,2855,661,1542,1902,1905,2064,2002,16,1363,384,2417,2046,889,21,2694,2847,1106,2248,595,190,18,1754,1001,2785,898,2032,1263,2409,758,1837,397,661,2942,184,1819,2114,2032,1178,384,2830,2548,97,1138,1337,1514,209,1263,363,642,2840,1670,554,1240,1392,465,1157,2349,271,514,1680,627,1541,2315,302,2040,1899,1486,133,136,915,1278,339,2478,132,816,2097,1493,2943,531,2083,47,2699,2936,2693,1202,1417,555,1005,280,2846,444,21,2589,1192,504,762,1907,2639,2074,2162,2905,888,356,479,1311,2522,777,2377,2224,247,2365,1940,325,2573,951,834,2303,89,1066,48,2776,1038,1020,2233,2370,1621,149,2785,451,468,2623,2801,275,2707,1262,678,2496,2894,718,1861,2165,1397,384,2056,1561,1687,2294,2892,422,2782,1793,2389,1123,2694,2201,329,2478,189,342,1612,1660,473,2621,1290,1185,398,1274,2664,273,2987,228,252,243,2076,2888,2420,1981,1180,2795,663,830,2507,1578,2806,1090,2713,1259,300,624,271,889,1548,1952,2288,2984,1534,932,569,81,1841,2116,2120,320,1503,506,962,1884,2473,813,932,295,2335,1074,1509,2678,2648,395,2389,916,638,1351,2416,1214,2751,1692,2485,2610,1262,1073,328,2394,1674,1097,2434,1527,261,2532,1080,997,2738,383,1277,1907,2819,552,2533,2785,2350,858,414,134,2,2838,2530,2776,1778,674,503,1493,163,515,2108,1069,2802,991,2939,1441,2770,2595,734,185,2717,2262,970,2840,1896,983,1124,885,587,1671,1584,523,2433,1850,104,768,2735,2149,739,1106,2061,699,2170,2140,1903,2020,1611,1123,1162,2789,980,1237,362,282,1197,494,165,1681,178,2478,154,2923,1749,741,1003,878,2510,2161,2197,1239,1552,857,2508,264,2280,1131,253,2746,74,2054,1248,729,2571,557,2524,2589,370,1291,2460,1,570,521,2618,2334,2698,82,1671,2726,1709}

    1746

    1083

    Returns: 11637718

  105. {2209,1643,2272,1080,2676,1538,2635,1343,238,2520,2573,1661,548,1316,2087,2188,2862,2306,2723,2890,2511,189,1960,2395,729,1560,2275,876,1050,1920,1932,1779,201,1691,2192,2278,417,1093,2000,683,586,582,2451,2853,2973,1542,793,1367,2361,1021,2847,1442,1966,2036,1893,1663,884,1425,2165,81,2754,1684,1691,1356,585,1303,2720,498,1215,519,2392,1387,741,543,625,617,1908,1951,150,2689,1613,976,2246,688,86,817,2294,2610,2152,2861,726,1216,1320,366,2871,2448,356,1344,2081,138,2543,1853,1002,1854,1232,2710,2038,1084,749,142,2938,2164,1764,2548,1744,164,838,129,2202,563,193,1794,1362,2370,724,2464,1003,213,1421,1181,2190,2646,2489,931,2776,1513,725,1228,2021,1237,36,311,1680,377,2058,1418,2518,1824,2068,399,2024,1441,1713,2036,1910,125,443,2799,1788,1055,719,141,474,1369,1042,2066,2571,1961,1194,2462,1238,981,636,2135,2668,1878,536,860,1227,1991,2057,853,2686,860,1638,1401,621,191,1645,2361,37,2124,1023,467,2826,1063,514,423,1055,2964,2280,618,853,1958,1806,2850,789,1196,1586,1740,1079,2559,1145,933,2883,720,1121,1583,10,899,1733,1700,983,2485,640,2887,2096,1627,2297,2206,1502,722,883,14,97,2566,572,2357,2292,139,1978,795,1618,910,1863,2535,115,2249,755,2075,1345,2140,1758,1960,2828,2970,2668,272,1729,2981,1143,277,1688,1334,11,369,1783,1947,2242,1309,1492,355,2034,1079,2959,1168,720,1603,2407,1650,633,1612,1610,2211,1100,28,1354,950,642,2101,535,248,2174,618,1597,2464,2961,2205,1472,168,2108,128,2088,650,594,1351,2282,1827,2590,1745,2145,2705,2732,2683,441,2163,589,1688,920,93,2177,1690,2824,567,1652,2872,1476,1945,2510,2591,1314,1165,1573,471,2026,2120,2060,1556,2270,536,1509,1120,2403,2467,1880,1559,126,2629,294,453,2860,389,2794,1880,1360,2122,2385,1206,1581,844,91,1039,452,827,147,1743,2374,1218,1373,33,296,1485,2303,953,2033,482,1938,1521,653,2147,1225,2828,1432,2057,2054,811,348,1206,2140,982,2958,2874,1036,2923,1523,1536,2572,1029,936,2874,1678,507,2915,36,2830,163,1771,2704,2221,282,1207,999,1319,114,1754,1397,1238,382,544,1838,325,1996,19,1193,1969,2632,253,1959,1500,46,1999,603,1076,1829,2421,2580,2186,1590,1902,371,966,2479,800,413,977,2839,1256,1813,947,2693,1571,1266,1267,819,1785,489,1095,901,1256,31,2106,1776,88,998,1809,2155,1537,1500,393,2568,561,2958,580,1011,2247,1454,1416,1174,2922,1076,2913,2833,1018,2899,1396,629,675,977,416,1306,884,1126,2325,1416,356,1036,1249,1053,2441,2385,1743,2318,1614,296,1228,0,1692,356,623,2395,1356,440,1591,322,1671,2433,351,2179,974,2397,1557,1889,450,928,252,127,2480,906,2036,498,1885,1690,1674,2026,1128,2967,1850,906,1224,1054,915,2381,902,1422,2326,1574,2502,1013,2846,2290,937,301,2520,1433,1518,2283,2586,316,1613,1526,2355,1443,2864,1882,1181,2843,106,2822,1716,2988,2902,221,672,2129,402,2419,1434,150,1850,2711,1311,1502,1603,2945,1467,2812,2616,1420,1854,1840,1322,724,2696,1449,438,924,290,637,2402,2609,2164,993,1199,894,575,1430,1381,1032,106,2722,15,2206,1846,1446,329,1158,890,2650,1256,2347,2139,706,1959,390,20,1746,1646,230,242,2687,1734,1978,1594,2054,2719,1270,2312,1461,540,1713,988,2785,1828,1996,1120,453,2454,2051,1262,651,102,18,1657,547,1134,1226,1501,2887,2543,761,2947,1810,2309,2241,2594,2602,2230,221,2065,140,435,2343,2005,2019,2006,2002,2505,2864,1884,1364,864,373,93,796,74,789,738,2256,1369,929,453,1731,1075,1304,1691,2389,426,1856,2016,1241,276,2184,709,1608,2887,1212,107,893,981,268,1854,1358,2376,131,891,120,1356,138,1915,1715,2809,151,1592,1130,946,162,1129,1018,1007,229,2578,116,2450,1202,366,831,823,2692,2853,1256,1925,2037,624,24,1535,1251,1658,82,2150,244,1793,2770,1666,2109,2845,522,2864,526,1291,2159,2196,877,315,2868,2181,2417,176,1195,1797,990,1298,1316,2462,786,133,1097,2509,2336,2698,1191,2151,835,1315,2090,2432,1539,993,1511,887,2107,2539,436,2232,379,2135,2918,2863,2384,1983,585,1418,1236,1623,2141,2856,1929,423,2908,1338,2917,2320,1368,2468,397,1269,1656,2776,1660,1672,2153,932,2947,931,1549,618,1004,546,1568,2039,2477,1815,1635,1018,612,1492,1146,1633,1627,1427,233,1689,1289,1137,1593,2385,1155,2537,207,2951,1365,755,2135,2769,1934,2773,2132,2521,1524,2108,698,2419,354,1370,1413,2971,2080,1357,2297,1870,415,2598,2063,2498,184,1987,107,421,1667,1960,1749,359,1902,929,265,2432,2905,758,1239,2893,27,379,539,1488,1357,423,1975,213,2284,251,2613,1547,2991,1185,166,85,1815,819,1900,1466,1666,2424,969,289,2978,1544,2475,2647,2511,468,539,717,653,2082,79,2464,912,583,1676,1494,871,13,1339,1126,131,2908,1029,239,2274,100,149,2076,2719,1184,77,1682,2193,63,1478,645,2717,1793,1040,2273,750,368,2336,1965,867,2630,2614,1604,1105,2365,607,2069,89,1227,1854,60,1170,1069,1619,2905,1410,445,1794,1640,2896,1903,675,1454,1391,1829,171,2883,1486,430,1652,1393,259,2469,232,149,770,2709,1691,36,1601,1815,771,913,2996,1771,2376,1341,922,2197,2939,795,2389,804,2160,40,2622,1859,2873,1590,1914,772,1452,1799,326,1946,178,93,1143,1348,1030,531,1271,1451,2507,1240,2717,2678,2909,796,2859,716,143,725,1382,1832,2117,2666,2340,980,1198,2871,2864,2847,694,636,2200,1054,682,1798,1544,1153,2120,2856,2599,1252,2035,1389,856,750,1109,1320,2465,1162,2647,454,1360,1397,1068,2608,2939,954,1984,2819,895,2855,1756,1886,1901,2549,1226,389,620,1930,2822,1397,1559,2149,2952,2925,2608,2595,59,283,565,2240,2478,2310,2179,389,860,675,1470,2929,173,2812,2304,2246,1716,1207,2948,2242,1053,529,1675,1738,2430,899,2491,1281,873,301,1297,2697,191,2015,1028,1179,422,408,2738,1563,2165,1645,452,26,824,557,1189,2317,627,2660,2263,2903,2838,2773,2919,212,2094,2459,183,301,1560,924,1140,2743,1016,2773,1029,2292,1998,718,1431,827,918,1471,714,1641,874,1663,2252,131,101,2652,1160,1858,1453,1874,1717,2931,2045,1915,270,2451,794,2864,1432,1020,1379,2769,1953,2161,892,2797,103,2055,1422,1814,304,2814,2924,1324,1883,1819,343,938,1239,2483,1002,2775,1581,706,2382,2891,2566,1387,1685,2766,1380,2259,2472,571,123,1152,2853,2866,2742,2319,149,1885,2812,785,2887,2661,1252,1970,1687,1996,140,2425,859,885,113,1570,2639,1950,2423,2827,212,813,2147,2652,1816,2378,2753,12,1118,2915,1029,988,1978,2317,2173,882,2694,420,1537,1735,2067,2281,172,1979,1567,2184,2457,2116,449,827,767,657,2553,708,688,2383,2320,2069,222,2236,2912,562,987,2531,1307,1546,1148,2133,481,231,223,1229,1517,1831,980,771,1494,1184,1761,1423,1545,680,1047,1284,1984,974,820,1787,1393,2629,1637,1959,2473,2231,1113,2097,1072,1223,588,2112,837,1747,1380,1699,78,2658,983,2600,982,2438,2299,2405,551,601,1177,1879,2214,1300,286,1184,266,2122,908,2458,2292,1751,99,537,2189,906,59,2289,1938,1853,2265,723,779,1407,773,1763,2930,140,697,328,230,2926,2927,902,1441,1226,1342,2166,855,1983,1406,667,1092,1610,2355,1685,1759,2425,1853,2658,1500,1474,1411,128,1137,797,305,784,829,1196,1292,552,1433,136,2272,80,2729,1481,1525,2121,2022,814,506,264,771,1139,604,898,2099,1487,2233,322,2996,1091,863,923,19,1691,376,296,682,152,213,160,2147,2912,2023,2442,553,1833,2607,1823,563,2042,2468,2851,451,2323,789,121,54,230,1548,2640,2413,366,2785,2948,1881,1517,2047,2409,1374,2306,1083,110,2198,1727,171,1498,1633,2265,1898,539,1632,570,1290,1575,2296,1963,2526,635,1868,2534,188,2962,750,2138,2059,1748,2588,1991,281,1651,1449,1426,820,2906,1415,1012,1065,2985,181,1066,1648,452,2049,388,906,2935,292,2767,841,1845,823,2245,2110,1735,53,213,860,1146,1530,1565,2157,1746,2444,374,129,2428,1512,2389,755,985,263,259,1207,1774,375,318,260,1634,2322,806,152,387,1521,683,2213,715,2618,2463,1227,1897,303,1360,2219,1256,962,1252,2536,930,297,2788,895,2220,505,1793,2717,2852,2906,2826,0,1272,2716,2414,2250,731,2801,2408,1610,7,945,1502,973,788,797,1751,385,588,2580,430,580,1133,1240,227,882,1533,546,2131,1194,270,534,1452,1786,618,2965,2734,1982,2611,59,2548,2826,502,980,321,2513,1308,638,2300,1689,1517,1683,2028,1959,2887,1142,1378,2755,2385,1958,1950,2505,2766,677,746,851,132,1266,149,36,1242,1566,618,1167,422,104,2878,2304,2549,1743,1668,10,2714,928,2105,1093,535,2008,81,2254,2046,2273,2970,1013,43,1708,379,1273,790,2688,1149,770,304,2092,1254,2815,2929,781,261,2467,1679,1704,185,540,241,1742,324,2143,1178,41,2419,2551,2094,954,441,709,2456,2060,2722,1893,717,2434,1422,301,2659,579,183,2683,2095,2695,801,2776,1816,1027,1005,2150,1787,2516,1118,1878,647,1511,1042,1629,1069,955,2483,2640,1202,2909,2179,2207,711,2239,1993,2317,462,2310,1127,867,2439,2176,2599,2152,1167,1678,2240,2030,2334,2401,969,2491,256,2085,1272,2094,93,2259,1070,1061,2074,1121,815,1691,2719,1716,191,731,321,165,296,1022,1116,1018,1997,1015,2089,2786,616,271,2245,2641,1276,1204,2760,1955,611,617,1811,1161,1471,2543,614,243,61,2730,1276,1705,630,1024,721,2310,1949,1013,686,1175,2009,1070,1804,1893,1533,2437,1496,1093,2613,1980,1076,825,1655,249,1221,2031,2563,1846,2724,2392,1330,987,2882,880,1762,643,613,2593,874,307,1123,2759,1268,1752,1138,1262,2130,2409,2118,240,789,2085,1737,1580,1298,1607,2068,1171,1577,2653,1083,2971,1589,1805,131,2718,1169,2636,247,2379,2967,1006,2344,553,645,2416,1654,2364,189,2011,1892,578,761,1072,2786,2725,2576,534,2152,1129,2131,2415,811,733,1451,1414,2490,2925,593,1085,202,2091,44,2001,2145,2966,699,99,1990,796,2589,2703,2417,199,150,1190,1942,1468,2641,1469,1336,1266,380,2233,1525,2753,891,2584,1391,1248,941,2044,2948,287,1123,1693,1460,548,2154,1871,591,2590,1335,2136,576,608,2315,1809,1897,2979,1420,1625,1650,934,2940,2475,2624,73,232,209,1628,342,2146,879,2871,406,808,2559,2347,1989,326,1180,311,1133,640,1718,1012,117,517,1815,754,1858,2673,1062,1010,347,2482,1550,2486,62,1381,2849,335,197,1790,1712,2892,1598,591,2776,2366,2758,1510,850,611,2229,2023,1609,2310,2950,247,2877,2535,974,1247,2422,705,309,184,1825,1444,2474,2129,381,2669,2472,2667,2700,1661,234,2964,2361,1377,2881,148,1272,448,576,2740,1201,1652,2829,1230,2050,2085,1894,1450,2993,2144,766,2500,2467,271,1777,670,1965,2857,127,2458,1748,1613,44,207,371,973,1932,1820,2841,1924,25,970,1525,920,2438,1021,395,1010,2386,2999,671,2468,752,410,299,2991,2262,1277,2139,2116,1861,1084,576,1721,2399,1438,2148,1144,462,2281,1706,1980,1561,504,2713,1424,2477,1260,1064,2887,2935,1769,1659,105,2020,1433,1298,2385,131,601,1235,195,2131,837,1313,870,2189,1830,2026,1219,2786,550,2688,337,330,2300,1956,1301,32,2796,906,1291,1660,992,2333,2609,1005,2443,2436,764,2209,2171,1664,1401,304,1251,2258,2447,2779,2069,2015,867,2194,2807,2817,358,872,2642,1245,1078,831,2636,1612,2732,1464,127,606,2872,2191,1853,2781,155,714,1183,1364,429,2796,2488,1862,2370,2323,888,361,732,2482,1234,882,1175,1258,2376,134,2635,679,452,2946,1556,497,848,1050,1154,2550,1612,588,702,2603,2338,1184,1055,2346,2617,1322,187,1037,783,2390,1648,273,488,588,2777,2885,14,393,371,217,87,1255,2866,2777,1988,2626,1418,2425,542,1251,577,973,1730,1545,503,2535,1226,2150,805,122,257,1925,1141,1555,771,1040,2515,1517,2678,2643,1797,1030,775,427,1097,1107,531,312,430,395,1257,2588,2151,2135,495,524,937,2070,2883,58,1993,2505,1698,2612,1973,1654,479,2376,598,591,1266,2402,1159,1512,987,1578,177,2718,1079,2906,1062,115,2992,11,886,1558,1045,154,1067,2494,1537,2166,1349,1537,2966,1356,2680,925,2883,236,276,1737,2904,352,1286,1207,1697,275,585,490,2980,2460,577,1058,2428,2623,1659,635,2372,2890,2483,0,400,2805,1806,5,1355,1248,2410,72,1403,2654,1387,407,1337,298,1078,1543,348,2274,2914,1274,2357,1480,2747,2990,2867,2702,1056,2613,1931,54,372,2253,2670,2120,305,940,2735,832,777,2399,2479,1027,2297,2537,843,736,2857,2506,2728,478,1454,2585,1870,186,444,177,2376,728,1118,1544,1059,2184,202,674,525,205,2406,2060,896,69,2900,591,2224,2469,2886,1937,1251,2557,2568,2013,379,2454,2463,1046,2565,2269,327,350,96,2708,1440,1408,378,13,972,2803,1011,1787,2337,211,1855,35,1766,675,581,1313,1581,2831,821,2503,2428,529,1849,2560,2857,2334,378,994,1213,1034,1495,1259,2075,1248,1970,1321,879,1323,502,150,564,1482,644,2836,1846,1842,1343,263,534,2653,227,1447,2505,551,421,1397,541,1102,2184,1227,2645,23,1864,1470,135,1564,1158,2567,703,1553,2552,1111,390,251,1517,1393,2777,1760,1115,2208,415,1927,2649,150,1402,2602,2094,1007,1692,317,1952,2826,1449,2818,2701,587,2322,948,1780,745,2750,858,22,2070,652,1793,2168,2908,2562,2575,93,2018,2551,1780,1122,236,1779,38,483,2949,1330,1917,750,2879,2110,192,2350,2718,1673,2671,943,1846,1495,2741,2561,1272,87,1239,2149,944,96,431,2530,397,2469,234,816,2699,1994,2883,1581,2219,2857,1299,267,2166,1851,2789,1588,1419,646,1302,1556,316,1305,662,2298,461,1354,638,2638,900,1432,1307,2791,2709,1911,469,1922,1866,2813,1627,198,2588,2634,390,806,2548,1404,2528,442,876,369,1263,713,836,1275,1728,2117,2461,150,168,2954,1596,2266,2631,2301,1747,883,1930,2373,995,2056,1678,2681,1491,1393,2896,2025,2940,2142,1139,1639,1759,590,2831,775,2578,2193,1568,812,2130,720,1807,1313,2777,432,661,2615,2901,632,56,797,1112,492,1505,1405,1665,2985,2804,381,700,49,234,2912,100,1484,2073,1515,223,1778,885,1005,1633,2007,1175,1290,326,1247,2101,2368,2908,1502,2301,2786,258,1697,704,1604,84,2758,1935,1691,34,2636,1834,2251,2532,931,2093,1890,508,2644,2947,791,25,2870,1517,222,182,1367,2314,1454,1001,2574,2583,1142,1836,363,49,1455,1800,2094,2094,313,878,2867,1803,682,1269,205,1605,611,956,1643,626,2719,326,1025,987,572,95,1600,2227,2193,1321,298,2471,2085,29,2746,127,1934,2917,1878,1821,1744,1948,2493,2359,794,2820,1585,1509,2488,1937,1938,1011,172,150,2750,840,1020,2942,796,1627,107,943,1602,1695,1322,2898,2395,1081,494,2018,1541,2052,479,2312,2941,2452,2886,2292,1517,1026,1116,1810,139,2408,2662,2686,940,2094,520,1279,718,484,928,1139,1100,405,1136,1681,2316,2499,2558,865,2848,797,2588,1808,1562,1825,2047,2432,2421,378,2656,1230,2232,310,3,1112,2094,159,1945,1504,54,1346,434,2972,126,291,1955,2635,1457,392,2028,2915,1151,741,428,2811,600,345,228,903,16,2509,2925,1708,2917,1298,1850,1980,2287,818,2023,1111,226,1393,1207,557,45,1770,561,1657,906,1848,760,1620,449,2244,127,601,1299,1279,1443,879,103,2675,85,2487,2440,776,2566,1835,536,205,1387,932,1438,831,2237,2122,1081,1059,651,98,1467,1050,1543,1637,959,422,2731,1926,1727,2670,2964,1802,2535,2956,337,2906,1597,370,2247,2199,454,1442,938,252,2333,733,716,656,178,293,1527,595,2479,2064,255,2094,2313,208,2391,2261,1104,2869,2896,2348,1197,2373,1027,74,2411,1520,2582,1923,1217,2252,2492,92,2359}

    {2184,987,1976,506,1959,277,1440,1686,1897,2871,538,1506,2313,663,1889,2684,536,2300,694,412,1856,153,1606,1648,1413,2280,1080,1203,2324,1500,1612,1799,531,576,2699,2095,2410,2445,213,1768,1311,978,1412,108,2180,243,2972,2400,2799,1068,214,2151,1136,2804,1209,2517,1858,458,2813,2248,884,1265,1110,2313,357,2686,2440,2394,1500,1647,236,2228,452,1383,838,904,1388,1276,725,2020,1571,1100,607,675,816,2087,1261,266,2969,1321,956,2811,1617,1714,1611,2553,205,529,534,1841,1439,365,873,2895,613,1348,2338,2789,2977,1028,2769,246,121,1208,2527,1400,1433,1608,876,2974,919,2721,1546,1340,75,1981,197,1486,2509,1471,2977,224,2034,272,2672,676,1806,757,1086,242,1736,2060,973,1241,1066,2010,2416,742,2520,2628,283,2772,2831,538,846,2624,1727,684,2857,219,213,1681,1612,1027,42,2115,1316,2042,2220,639,666,1269,761,399,968,133,2342,166,1534,2318,2040,1576,1962,2618,1055,279,693,2420,1477,1735,2533,2730,914,1537,714,555,2040,2797,25,883,1953,1433,2584,847,870,468,2648,633,502,720,745,1028,1360,2040,322,1496,2474,2474,2621,2537,2699,1255,466,247,1142,164,551,1352,1094,1853,2308,350,1945,782,2255,2541,2222,531,1417,1044,150,634,1419,2377,2283,2892,1232,2313,1942,2780,785,1363,702,1064,2354,674,2402,2577,2233,479,501,1517,491,1049,1713,986,1846,1792,1057,1423,1248,2089,107,1295,536,1669,1627,308,2676,450,2212,1164,1913,1556,17,2262,2756,2523,528,2309,1363,1635,549,2402,2724,2210,509,2299,461,1168,666,1101,2219,2597,1852,2771,1015,1095,1153,1939,2683,612,559,1236,1315,313,2509,687,1675,698,1881,2114,1604,24,519,498,1,2411,2361,1088,2748,1763,1330,2772,2806,152,2440,2871,302,2050,1739,1249,2293,2904,919,1978,1359,1909,1948,551,2177,1519,2864,1516,2115,982,1353,2273,600,1387,1717,1562,2033,1809,2921,2330,2223,666,2614,212,2141,1182,486,608,652,2861,701,779,2041,2619,2657,1581,1103,1318,95,554,1077,1597,2707,2029,1048,137,2744,967,967,1678,2658,1075,2491,2036,172,2935,718,2193,1193,1456,2858,1530,1803,1087,724,2507,827,390,1400,2459,487,29,2238,367,2203,1272,1332,1688,2462,1858,1257,13,191,87,1806,1932,882,2353,2925,1742,1428,1436,624,2940,987,1459,1761,1251,284,1376,1772,694,1884,1178,738,2094,1640,2546,629,2853,1996,147,2564,795,2538,127,1975,225,2227,1949,2717,1817,2620,1179,910,2199,1551,828,2800,530,1490,2618,1597,1283,1056,1135,1467,2675,2600,1645,1151,2823,2722,2402,2802,2944,2037,1012,1392,2077,89,1367,172,2146,2896,1074,1663,2854,498,938,839,383,2312,2164,1115,2955,2715,533,1644,642,1720,1422,623,2584,1937,951,93,1843,2228,172,152,1081,2070,2653,237,1255,1070,115,2772,1918,1182,2857,2592,1577,1348,2735,350,2779,367,2127,1797,439,1765,2153,2822,355,810,1200,1769,2186,412,518,1539,691,2785,2770,1587,834,224,1433,1280,2234,1925,227,2766,499,2560,1203,268,506,2518,574,2679,2832,2218,1166,1143,1747,2696,1957,2361,1083,1813,468,1839,269,2084,1018,2295,2440,2240,536,1479,914,2476,1750,457,1362,2995,1535,68,741,2889,1661,1364,1860,2036,123,8,167,1205,2531,1954,382,560,1489,1011,2640,1573,1202,2072,618,1409,2837,2801,2277,2487,2102,2589,2320,740,1186,1187,129,1513,1246,856,1418,827,2774,2362,1592,1458,2633,733,1134,771,1925,1974,691,2487,1766,1996,591,1676,1311,1222,1661,2791,2751,44,468,460,440,400,2603,2407,1232,512,1452,1476,384,2682,1213,889,2557,2987,2260,1014,1769,2371,1110,2989,395,2027,1657,2003,2660,2878,893,1710,1511,1260,2707,197,1278,1646,1701,1098,68,1637,2051,2734,404,2147,1372,2941,2722,819,1231,2440,1115,1017,1793,685,686,266,2302,758,1772,1909,2439,1244,485,45,1914,1907,179,2934,1985,2531,2348,1858,380,1711,1294,2497,684,1253,1002,447,215,2104,2665,577,2431,2080,2444,1531,2869,115,2201,254,122,1011,488,1088,2953,2544,886,2099,2968,1497,2568,741,1665,1716,1853,1002,2961,834,1855,2797,1112,2685,1607,911,1619,1531,2011,31,2461,2767,1623,2825,975,100,1790,2722,1685,1567,1854,2757,641,2464,55,823,160,2172,423,306,2817,2958,952,1158,387,1264,1587,557,2812,1473,490,2862,331,859,418,1046,1375,831,2907,444,1134,1793,96,2919,225,742,1448,274,2739,337,1932,2549,213,225,519,320,2428,1138,289,2045,2264,559,1167,2880,569,226,807,1896,1402,1645,535,681,2508,1635,1024,1996,2527,475,216,774,1192,1296,940,448,2743,2450,1875,575,2387,1258,942,2783,2458,2002,1899,513,2190,1706,2840,1419,618,2018,2762,2440,717,1822,2381,485,1549,2400,2264,1052,696,1838,162,1963,1493,2014,1415,2440,322,2785,622,2609,344,282,2077,2593,2145,2522,262,1433,2103,146,345,858,2470,1445,2862,1443,2357,2772,966,1775,2415,424,1552,1037,1182,190,2834,679,1220,1317,1588,57,2262,2884,1272,1983,116,954,2960,1772,1164,91,30,911,1507,1094,2983,769,2449,945,2390,2179,110,1171,2821,1631,1690,2989,1181,470,24,964,1659,2099,285,1379,2459,217,1096,595,921,2570,1247,1876,1867,846,1933,2832,2453,431,2941,1846,611,717,608,366,2134,1143,2337,1579,2077,2518,1433,322,187,1031,1397,127,852,107,588,1435,811,2233,597,591,138,452,1978,2618,1324,2719,169,2749,2657,1137,2276,2299,1511,685,2479,1664,2747,717,1779,1384,2280,2798,532,1741,2894,1004,304,1139,1959,2625,1748,1371,204,2819,2745,1094,1292,542,468,1984,665,198,2997,814,2053,1801,732,1938,1996,1819,2076,1133,2395,1419,1143,1210,2419,874,1947,1179,2907,1290,2125,2542,2073,874,2929,1502,2686,2153,1306,909,1653,2722,1184,618,822,2495,2117,280,2933,914,668,296,2099,1944,2029,422,2181,2458,1498,2017,4,2859,2223,2334,1282,436,1272,649,1167,1394,1073,396,1727,1858,840,1671,1086,1975,2835,515,2706,1356,1401,1904,872,67,1500,2358,1797,489,1488,500,1099,208,634,2675,1803,1624,755,2164,1055,689,1140,2332,2217,2455,1571,2859,2505,357,349,1980,1948,796,2397,2891,1646,2044,263,130,2293,1943,609,796,1630,1223,2152,1518,1770,2910,2760,693,444,1873,750,177,338,842,265,2641,414,145,2539,177,218,2864,501,2335,2307,1168,314,2156,120,1847,2329,1556,103,2606,810,2651,2444,659,851,710,1050,1854,2883,2254,666,2136,2707,991,1996,948,157,2057,802,1947,2504,1106,1203,2111,1971,1826,1140,242,288,805,1243,778,1869,2627,2655,89,390,1621,2986,1214,411,2864,1490,2796,1182,1293,954,1815,220,2703,2203,889,52,873,2404,2205,2549,2147,1329,2095,1636,743,1996,511,50,834,812,814,2340,1803,1973,1017,2518,1015,2870,1289,2994,1735,784,1857,297,1959,756,1282,1018,1726,638,1906,1787,1115,949,2998,997,55,2657,348,2123,13,170,1080,404,2792,48,330,1811,2429,93,2085,437,297,327,1414,2890,1060,1753,1793,1880,362,907,609,2026,59,412,506,1272,1499,1772,671,2214,2141,1015,1115,1702,1967,580,2401,1664,1541,2375,1637,2185,2985,1657,2130,2418,836,2739,2471,924,960,668,2145,1893,336,1310,399,1204,707,2385,763,369,1613,2291,1183,1916,1582,869,143,2380,2412,2492,156,1846,778,1224,1402,1931,1897,372,1837,2495,463,260,2549,2705,1604,2653,2017,2584,2344,647,1156,2703,638,1167,2878,1331,2288,861,1488,2433,2045,1389,2646,1143,54,2415,616,755,184,686,2417,227,620,189,1705,1418,250,2840,577,2618,2728,1597,2603,2520,1108,1308,860,1744,1272,278,910,2083,2674,591,180,1277,942,2719,759,816,2272,1250,1816,537,1002,78,758,1654,124,2764,2948,2727,2208,1099,394,406,314,1554,426,2451,2009,1141,737,1745,1720,2761,1009,1057,2797,735,1816,712,36,1748,1031,399,2857,2402,1282,709,1676,102,1089,632,1019,390,36,1115,1717,539,1691,442,366,1986,2291,2596,2488,1895,1992,2545,809,334,1716,1454,1559,1226,690,1830,1943,1986,1691,208,1625,1684,183,2816,2801,2808,2883,2588,2973,592,2226,1160,2035,338,2975,2433,1825,2055,1233,2637,2339,1348,1290,2451,660,746,1174,528,263,1047,799,1595,2555,846,1717,41,820,1662,1560,502,134,2776,289,1008,2530,2209,480,1163,2373,545,2360,468,1250,1118,744,117,424,76,2587,2348,345,419,208,9,1765,1124,1173,1143,948,6,1013,506,2402,2592,2378,2798,802,2721,2865,2948,1782,1522,1911,2876,1866,2178,300,2534,2393,158,534,1601,2752,2360,1932,1984,692,1366,2273,313,1743,1540,845,1143,2939,2578,355,2113,1649,2538,651,183,631,580,1511,2110,773,1517,2705,2929,860,398,2140,1774,689,2765,2865,1125,2677,1041,2400,134,2094,2100,2915,1973,1285,2026,1535,2875,1314,2865,2579,90,1707,2183,705,2017,1657,93,2785,2332,1035,386,685,1237,2456,1947,1077,1569,1603,175,2556,2023,657,533,969,1822,1871,355,1238,131,2871,818,1477,1941,1190,2161,2075,2581,591,1743,568,984,2221,479,875,2797,1234,2440,556,1978,1461,2404,1841,445,2844,392,2435,284,752,1147,798,1487,1049,1134,1959,926,1385,2524,2584,2512,746,1531,259,907,2349,1205,761,159,1090,837,851,408,2052,1032,1131,465,1353,2547,1616,2344,1793,2215,2201,2062,313,152,773,735,2700,1795,1801,2268,1588,1173,1261,769,476,1857,431,428,924,115,2128,2123,2007,888,2301,1055,1888,1681,239,699,2793,730,438,1463,2399,171,1503,1119,1095,1151,1782,1395,1114,2520,2291,842,1980,957,2913,468,2651,1695,926,64,2209,1228,2087,610,2297,1539,1703,1863,2360,2606,1765,421,1170,1959,521,1181,2110,2937,2120,2876,1342,1143,2642,1292,2527,1990,2225,605,2769,243,2226,1046,529,2087,1351,1288,1637,2195,2188,2881,2664,2271,2006,618,2833,2474,1529,1195,1184,2795,1055,1129,234,718,1934,328,1648,131,2091,808,2980,2830,115,2842,501,2426,2286,371,1732,1251,340,846,1818,2496,1700,2606,1908,2345,2857,1967,747,1725,334,1070,1838,734,2484,1773,468,1107,785,2086,2843,2814,314,75,242,1347,2385,456,1972,2057,578,978,1915,918,196,2712,642,2098,1372,2626,2428,1322,2118,2543,602,891,623,407,2199,210,1938,2226,2957,2982,2135,1626,2352,2236,109,2459,2519,2394,1897,2137,626,673,1111,2956,2363,2699,2188,200,1217,857,408,1366,1753,1719,70,2287,935,1317,1479,2095,1116,2588,2668,797,2388,127,94,2241,73,2787,2505,572,2826,948,1625,2193,2243,1136,2250,675,1121,2967,1218,1046,1083,1150,1541,718,2700,191,598,140,2719,575,425,1968,472,2197,963,1137,2017,974,2270,2327,1076,2453,47,1723,464,1882,664,1767,346,2069,319,553,1176,611,2529,330,510,1178,1402,1796,2297,912,2396,2586,2816,364,1406,1793,2627,2766,537,2496,482,129,573,2995,2412,583,1878,2508,2094,2652,2453,1511,2917,1583,937,932,766,972,2675,2284,1140,790,2601,2758,1595,1508,1206,1784,1793,1921,1082,536,1809,2460,2292,1724,2951,527,833,111,2250,3,27,232,401,2895,1164,701,2005,647,71,390,433,476,854,2523,1880,194,292,678,2948,2057,1706,679,2864,1266,2415,2560,2374,2638,2261,561,1539,578,2814,2127,846,1705,1539,1556,1140,607,2162,759,174,808,724,73,654,1905,446,2901,1930,2654,2847,425,1514,580,1374,2238,2520,2839,1639,2518,1312,2381,252,830,1810,1940,615,1256,1982,57,980,2017,600,458,2373,339,39,2157,2910,566,118,966,1735,2307,2132,2158,2935,1589,2454,2520,2916,1581,1043,1733,1511,1951,738,2485,376,15,628,2919,2531,496,1098,269,226,2584,2328,2349,720,2428,1887,1012,658,215,2763,971,1603,2257,2458,2847,2079,1022,2455,827,2976,1471,2792,787,1346,2897,550,2839,1011,2715,1769,1314,1936,945,642,1409,2032,1373,238,837,367,2361,2934,849,2609,2849,2214,1984,2920,727,944,2768,1369,1422,2260,1068,168,1776,1872,403,2481,2337,1855,311,209,2897,643,1615,1038,543,1478,1398,2790,1206,447,197,1582,1972,1877,38,378,1081,2369,2039,1063,2446,1982,1839,382,2043,115,459,2305,834,638,1769,1919,2069,2223,2279,669,2515,424,858,792,2514,1800,2004,2460,2709,1199,1137,91,1532,799,2135,1409,2432,1499,1451,431,1038,701,235,623,11,191,1427,1509,384,585,1502,601,2555,1079,1132,1367,143,780,2042,2267,2840,655,1975,1455,2204,1588,2535,345,1797,1452,333,341,1640,2554,977,1306,1664,2439,133,2198,516,1692,1290,1163,2313,2660,695,623,431,932,1085,1662,2923,512,862,756,21,1188,18,2848,2921,1442,1815,409,2270,1175,212,447,247,2187,523,2801,2950,1599,1844,2169,1657,1512,2674,2828,2714,2216,980,996,1748,2896,1785,2520,127,1781,691,1240,1904,367,2802,115,2888,1794,2430,1688,2470,2518,2224,2078,1815,2817,293,2867,133,455,620,1520,1825,826,1696,1117,1115,2682,2696,2907,876,1465,794,307,1002,2586,349,360,2736,2244,2304,2209,8,2017,2518,2367,470,2454,1664,1287,316,1528,1477,2311,2650,1219,1390,1051,97,1512,993,1866,2668,2412,120,1694,2085,1977,1983,477,1653,549,1287,1481,957,295,2491,2533,433,2193,1431,332,863,1237,2321,244,669,629,2896,825,2928,2341,2707,2784,2042,965,1403,1498,830,2303,1097,1878,40,770,2215,2315,2569,2984,2505,1000,634,902,1438,2589,1362,1193,2167,1590,201,66,2604,2605,1226,2750,1769,2032,326,2110,1095,2652,265,220,1707,1350,2252,1249,1487,2999,2340,23,1902,2110,1133,1228,51,2706,1521,1383,266,1169,29,2193,1735,648,603,392,2285,2663,2395,2733,964,2836,183,1483,505,1079,2214,2705,1333,2597,2536,913,2165,2894,123,938,897,1111,2385,2905,448,1891,2776,1622,1709,1829,2820,1509,1330,1011,1112,1831,122,1393,763,2520,1928,2843,2380,206,2119,838,2009,198,979,543,827,1586,2705,2653,2159,709,512,591,1866,2071,143,1755,1741,254,1462,1670,353,1564,1682,98,1737,616,765,1077,1744,1217,460,2848,882,2366,866,2795,345,230,2936,1793,303,2859,2085,2356,626,305,316,434,1682,2182,611,1397,473,2840,932,1420,748,444,2017,467,42,2895,2466,1812,958,2077,636,2501,584,106,2788,182,2654,932,88,2543,2300,408,2911,1367,577,1360,1068,2468,88,2616,2588,134,1000,144,2304,1677,1590,2351,1803,939,868,2302,1804,2597,493,2664,1173,564,594,1723,739,2931,12,737,1923,2629,2460,1502,544,2352,1433,84,119,112,2347,2726,2131,1559,814,1518,2896,1804,210,2025,2223,1637,203,2382,961,823,2110,803,1172,727,1357,2943,313,1173,1323,1386,427,2215,1816,1926,14,1568,1787,2851,812,2366,1327,2325,1642,1194,1546,2473,1671,1907,244,1459,950,432,2950,2223,2674,1676,2048,1511,1893,642,1254,2691,2302,59,2111,599,1091,2868,737,1858,989,1704,2791,2737,902,797,2587,163,2080,297,1429,811,2235,1945,272,1328,2964,1475,2791,2470,1120,2440,2620,905,65,1584,1571,712,619,1630,1612,831,916,147,1606,265,2968,1033,1045,658,557,798,1326,2250,2280,2900,2443,721,1752,2356,91,2458,161,649,1885,574,762,1898,931,2778,1703,2793,2837,65,1234,621,2690,2455,1325,1964,660,219,2336,768,1595,447,1865,1272,2279,1106,22,2610,2459,516,1356,444,988,929,2778,2193,261,825,2193,1335,284,2356,2137,1572,917,1119,552,786,83,1408,2782,259,2,2061,896,2999,2004,2525,483,558,1361,2402,468,2012,883,2427,1995,1983,1145,1465,1292,2416,2170,1616,2810,227,2512,2509,1791,323,296,87,660,1081,2317,881,499,812,720,1757,596,140,2488,816,2694,836,1912,2331,2967,2175,597,2292,2174,382,1684,2907,1879,1722,1149,1157,823,1279,2398,927,2597,2492,183,2950,2932,1898,2126,939,851,2433,904,391,319,549,590,2589,545,245,2477,2511,2833,1789,241,2164,1040,1880,2471,2963,1437,13,1211,315,2448,9,751,702,2540,1399,2669,1071,2289,753}

    2704

    2987

    Returns: 694482486

  106. {240,1190,996,919,1750,2599,2138,752,70,1559,807,1826,902,216,2468,907,1154,515,1472,2941,2105,744,2809,2129,1619,249,2779,578,2567,1000,2258,1939,1783,1458,683,2584,160,1379,2149,396,2939,269,1988,1407,830,2366,2493,1696,857,1985,1663,691,1400,1988,1772,448,1279,2003,1843,1179,1115,1783,2112,2418,1246,2993,2551,2985,630,1252,1763,482,315,1204,2192,452,2367,758,2714,654,1055,2161,431,2718,2693,1585,2634,2536,2167,853,1843,1717,2665,87,23,1512,2281,852,1961,10,384,2788,2846,231,198,2544,1355,2837,2091,2429,1327,2394,669,2217,78,2010,1428,971,2692,1741,1802,1562,81,1138,1004,1425,1173,2267,1303,1404,1127,749,581,2632,1214,1482,231,2029,850,848,85,2234,1359,1010,169,2846,1150,2796,1096,1370,2149,1844,73,1628,2574,20,2928,2816,1168,1092,1848,1067,1806,2032,2613,1600,1900,2489,1271,2200,132,1075,2128,468,161,1773,2914,2634,1666,2681,2776,2633,1896,1424,2875,55,268,893,1164,931,1712,975,2029,598,2035,2813,2097,2378,2975,2686,2630,1024,398,61,2728,1290,899,1474,124,1912,1988,1316,728,2008,886,1743,2376,2217,1030,1857,1159,800,1390,1058,2532,612,784,2438,886,765,735,1847,2990,2700,346,1305,78,816,987,792,618,2638,1956,2934,2729,1664,594,359,1692,993,2303,1321,1440,2935,141,426,116,2213,122,1472,2503,1419,157,2512,1865,389,2956,2560,1450,406,2168,2848,1548,1321,2789,2019,651,1648,1202,2459,2076,556,2626,2546,608,531,78,1984,2514,2926,2948,1679,2565,2677,329,1248,2781,2797,1781,1543,2111,1787,2940,2488,1672,58,1634,2936,68,2386,2605,115,575,1353,1732,2949,455,1343,1601,2431,1546,2211,1503,2639,1205,1989,720,1256,1024,1110,1419,1921,726,719,2133,2794,2643,1388,2574,1445,1956,2869,2625,1172,1986,2917,2878,2536,2005,1488,2825,906,973,190,336,1107,856,356,2602,2149,1843,206,1134,2482,1277,1153,2764,1371,1759,62,2465,2236,2987,2236,1199,2407,567,1151,612,1953,1485,164,1847,1113,1361,1401,1486,109,876,1095,1304,1773,554,99,793,1108,2200,2542,546,2491,1423,2528,459,1209,2957,554,2837,1607,2578,2182,1561,2398,644,482,2984,1677,186,64,2952,1373,553,1966,948,299,1480,190,190,181,1915,315,2597,706,828,225,2272,2185,1704,408,2408,2551,2442,2220,1191,951,1127,410,220,345,685,2118,849,2658,697,1187,357,1971,1687,1975,2294,1266,1252,2828,2246,2055,1695,119,1147,680,1251,1040,322,1413,2079,1733,1172,13,1352,1391,2603,2733,2974,1902,1978,92,166,2868,2175,87,67,2175,2925,524,1890,2098,378,2479,133,2449,1158,1939,1922,1449,817,506,2881,1294,1576,2734,1022,2739,2580,2712,1345,294,2910,2738,1478,2717,852,679,2581,1330,576,2794,2711,1935,618,1147,1658,2400,2021,910,2114,203,2945,885,2508,904,1349,1596,1734,1715,1268,2445,2799,2929,2271,358,1748,2444,1683,624,661,554,996,285,1469,265,633,227,2534,1924,2154,2750,991,540,1964,667,2447,2294,1351,1667,1420,2956,2890,1001,836,890,832,1354,427,1878,2673,859,2574,2395,1171,396,1790,1772,1829,2530,1052,295,1359,359,1317,1634,777,648,1687,1459,379,796,1224,938,2790,1830,887,830,252,2871,2312,2720,470,861,1651,2183,2848,2395,952,480,988,2625,2378,2239,1936,25,2486,66,1040,2097,1252,1651,895,276,2962,1760,2372,1189,2375,2260,2013,2762,2520,557,2468,766,2116,1173,1916,203,2770,1975,2054,114,2384,208,2836,728,2162,97,2771,2136,1374,919,469,91,2794,2173,1629,2793,310,805,189,258,2667,186,1407,840,54,2537,1594,1970,2492,2389,2886,702,2906,2071,1489,652,381,2174,99,2902,958,1633,596,1370,99,2284,1540,1306,2186,1501,2346,2100,1497,2767,1333,1079,2988,2439,1398,1807,2775,884,798,1613,2733,1613,1601,1014,422,424,2790,94,1630,2836,2100,1615,2673,2768,1976,1964,1147,2302,2287,1174,1209,1333,1300,265,1071,1671,905,1658,2441,2837,1972,2217,1760,1108,531,2144,2798,1417,846,411,1361,884,117,700,2053,2803,389,2080,2846,1538,722,1173,479,969,552,635,1536,816,535,2983,2159,1914,851,57,2101,2460,1690,2850,344,1440,253,1939,1768,1034,2434,1815,1817,1172,759,1460,2029,2487,1419,1942,882,659,1263,978,2736,2248,492,1020,173,776,1923,2764,2869,1764,1742,2118,2965,2648,2404,995,1913,1687,2942,305,2532,982,612,2822,134,2900,847,1068,2752,2263,2235,852,2824,1111,2015,1207,1897,2748,1169,1889,2641,1408,475,832,2053,904,105,818,2661,134,265,971,1912,743,852,905,2017,1023,2677,528,2762,619,1757,682,1389,2764,1851,839,423,2000,2069,2571,705,852,815,2375,1768,1506,1766,2903,1900,1322,95,2531,2262,1075,281,1155,2491,210,2608,438,2058,1557,2994,1071,1956,374,518,1035,825,569,2987,1359,2481,156,781,1181,1971,1254,454,2732,265,1571,1291,621,886,2366,2670,2257,626,1077,754,1828,2389,1382,2311,1726,1399,923,1430,822,1533,2862,2072,1962,1672,1678,961,686,528,2492,1578,667,942,521,639,692,134,2249,2650,2803,1423,823,2461,1091,694,2352,2010,1156,2390,1233,1127,481,610,2898,2155,1331,835,1231,1945,728,2621,2468,2788,106,323,591,1196,1113,2574,476,446,2027,1093,2186,2073,620,984,1707,2114,519,2140,1426,2494,1686,137,568,2649,2162,456,1946,2711,1977,902,616,205,1358,71,2107,2800,2074,2096,1906,1948,789,2919,2026,311,1882,2246,2915,1120,1131,2360,1207,2640,1874,1606,2577,1687,1900,1733,1303,2164,338,1779,1619,2693,1139,1895,919,712,552,219,327,2567,2771,375,1127,1420,2575,596,1463,1365,121,498,986,367,1372,1923,2563,623,1965,749,851,231,2836,2955,2823,1703,1075,1311,607,9,733,851,1961,1430,1448,1312,195,2064,1820,2057,1281,887,2723,851,2453,956,1682,934,247,306,2904,1922,345,629,488,2754,2297,2957,2910,322,1837,708,1346,1880,2570,2359,1978,775,1525,654,2219,1983,744,1376,175,2414,2562,2335,2797,112,1323,2762,2456,2945,985,1465,646,2304,818,1355,2496,2380,1853,1385,172,1735,1278,1397,1611,1919,911,1257,716,1821,2674,430,2797,1388,1704,1429,69,1574,1730,2675,27,441,2578,2850,1077,2344,116,1392,2075,2108,566,702,2147,498,2243,2428,2933,1146,2858,1546,969,1651,2067,1582,1729,497,1972,2849,219,1678,2728,563,844,2551,207,1131,776,2225,975,2774,1587,2258,1118,1070,2639,1741,574,873,1623,1653,195,1273,687,2473,1551,2852,83,357,1065,491,905,1314,2562,2431,2584,1595,1835,2813,1208,983,1056,916,936,1860,2980,2493,1860,2216,282,183,2353,2625,329,326,2409,592,1122,1970,2857,1819,1194,1378,408,1988,1364,2333,2248,2367,1559,145,2066,1845,1041,2648,1145,1890,1460,689,1826,1441,2538,1911,1429,1542,194,1014,469,2633,2835,1227,1388,2236,1399,1230,49,2505,1971,759,1421,1259,2509,1960,1088,1699,640,2948,1420,1795,1607,1873,43,1663,2143,821,2771,2069,697,289,2588,731,1680,2656,1375,1227,466,944,1862,2473,714,354,646,1132,88,657,584,2085,2076,510,1525,254,1387,2869,1253,2671,1924,2459,2262,12,2572,2783,2837,889,2276,1078,1378,2894,2745,2152,2793,1632,2728,1949,1887,1059,2804,1913,1971,842,1956,2840,460,1685,1976,2718,2151,1513,2875,2069,2583,1292,1525,1606,1601,342,766,2969,722,113,1911,568,50,2898,810,1827,634,929,2023,2317,288,2886,2890,35,1552,2167,1449,2621,2852,1533,1225,2833,483,1354,1827,1295,2174,1851,751,382,1238,453,2737,2038,1082,1309,2627,1383,479,1586,1781,210,1395,390,869,829,973,838,2175,529,1313,720,2846,290,957,2190,1811,1256,2402,487,1198,2900,1642,2365,648,1581,498,1988,2881,61,1954,1793,2551,2375,417,2113,1499,2203,1529,546,2823,2562,2613,2333,147,1758,1507,1517,2979,2059,792,275,2369,1827,2443,1295,554,1316,2361,2161,602,762,2695,2264,897,1939,1189,2396,1227,827,2812,2497,948,2519,205,1065,2751,2402,900,1851,2920,1391,1433,723,1797,883,402,1742,2321,1182,2417,2533,145,851,1939,554,1400,1570,78,1939,1451,1076,615,1451,2524,1261,2125,830,2730,2988,2123,2699,1788,2478,2874,983,1163,1873,2667,1919,2309,365,2806,2014,1205,1388,53,2895,1963,2762,2717,948,2293,2365,2290,2656,2784,1609,1695,2743,897,1464,1564,1093,445,2613,1329,179,1655,2864,2757,1170,720,1752,2560,1257,1298,2454,687,728,1350,431,1239,1158,2935,989,1254,2011,2096,354,2767,800,2679,2312,1555,135,2232,2018,411,2488,2668,2470,733,1908,261,2749,2242,382,350,865,436,474,2693,851,2171,141,2107,2346,1472,1734,1347,1311,1338,967,2303,1516,2064,2025,250,114,2048,2191,2431,2036,2706,1900,1947,1887,1000,2091,743,1988,2389,1453,800,172,133,1091,1403,2358,1658,1501,2555,2842,50,1240,2300,1851,644,2981,1112,994,2386,2765,415,2243,2468,51,2019,1059,2612,16,1496,2947,822,1985,21,2520,2651,68,2480,684,2084,1116,399,1253,458,2064,2542,2958,457,1713,2903,1387,395,747,329,716,2064,1358,26,402,1523,335,1495,1988,2585,1761,159,2429,2824,2548,1676,597,1167,469,1898,1808,1472,2983,2663,1383,1001,2444,2171,1553,2312,1868,821,2629,1136,275,401,1458,413,839,2684,2195,508,1505,2858,2624,2354,199,589,111,462,261,23,1621,161,2640,2412,2844,2853,79,1465,2230,992,1109,1406,851,1045,2656,2838,1618,1949,2319,207,2179,383,1444,2484,1408,2538,277,1886,550,1723,729,54,1197,1250,486,594,2268,733,1742,257,2986,1719,1394,2808,1867,2311,503,1739,2358,2500,1725,2792,2542,2994,564,1955,2598,41,1125,295,167,1939,93,1960,919,1333,1685,1083,117,2684,325,2669,1513,28,1997,79,260,2189,2804,1437,2008,1412,1613,1565,696,2994,2720,2663,321,1231,989,1930,496,1842,1981,1033,1452,1586,1769,2296,2940,1106,1017,2535,2090,49,2875,2678,1299,324,1736,2052,745,990,155,2944,239,2964,192,1745,1337,2870,200,1620,1604,199,1930,2880,1527,2067,1220,1347,88,427,2504,1212,785,1613,2883,2814,1508,85,2964,1960,2391,501,2397,2472,178,2246,2069,177,1270,2473,2747,2271,2171,1165,1990,102,452,2998,757,1047,2709,1133,813,977,2126,604,2428,346,1070,2688,1551,490,662,2305,1924,2964,1219,2490,2769,2728,2887,1891,2558,288,1611,1240,2041,473,1781,929,775,2449,2642,1968,527,2423,2209,2106,835,1338,1224,2150,116,1118,779,90,2404,1905,2848,636,1683,959,1127,2851,1998,1803,825,127,2699,401,2193,935,2135,2866,1659,205,949,1301,754,213,1547,1909,2486,1314,854,1502,174,1029,934,774,2861,1309,316,1562,2967,2776,908,1083,2094,1856,1625,80,2846,1365,2785,2115,1634,300,2616,817,1218,1934,443,1613,594,1443,1676,1108,2934,2594,1247,1226,1130,1505,2913,1941,2865,2511,2029,2979,1502,2248,1864,2590,1987,520,297,2313,2914,933,586,1768,2846,2767,2321,2287,1619,1818,1750,1359,1101,1589,2701,2074,2277,2109,2383,188,228,560,528,905,2869,2489,2517,272,2391,2070,1037,1,2135,269,2562,967,1131,1568,531,590,1499,2473,2192,1697,1065,322,472,2704,2945,460,225,1501,1968,1280,364,1150,1573,447,2519,2142,424,1838,2292,2869,22,2331,2507,1627,168,1746,393,379,2703,1022,2054,2556,376,435,308,2288,2948,596,1973,1592,1979,2490,2226,293,1529,1701,242,1116,2230,966,2567,265,1728,1654,2091,1944,2591,1116,1760,963,1668,454,1491,1657,666,1303,1991,2150,388,832,87,296,2184,195,2056,2370,2099,1647,677,2413,2358,2921,1156,1218,1062,1684,2221,2805,60,2162,757,723,366,2113,1939,1497,2275,2769,1056,797,1952,2615,639,537,713,2170,1603,2852,2422,127,2287,1422,800,2144,527,2004,1300,1974,2483,2017,207,518,250,746,2144,1979,2438,1819,1982,1419,1565,2951,1747,2295,1611,2044,2787,659,2686,360,636,1503,1491,2210,256,1186,2240,1115,2323,2259,2488,2728,775,2639,2312,152,644,653,1516,1711,1617,522,770,580,678,522,1885,2995,2811,481,2332,1565,1036,2031,1341,517,704,555,554,1515,382,2316,2683,2150,1800,1347,1951,821,596,2606,2045,1727,2773,518,2960,2751,89,796,2219,2933,824,2063,1468,154,563,708,2096,1052,1591,2999,379,2455,904,1837,2288,919,2586,2510,167,673,2980,278,2954,1442,2511,1276,1414,1078,2829,2760,255,769,2441,484,1766,1409,1483,1741,1366,630,532,803,149,1829,1639,1173,306,965,1520,2298,822,1907,2820,338,1089,1772,329,1708,1366,2149,1558,2135,25,907,264,1043,2088,2941,2401,335,2811,641,1363,1329,624,701,2204,2946,1464,2536,1418,594,815,1456,200,1963,771,766,2788,2230,1426,2055,1519,2645,2163,1297,2713,894,1460,664,87,1983,498,588,145,1508,787,2357,208,1333,1115,977,673,2221,2719,259,1158,1234,895,223,543,1648,2383,2944,1827,735,2418,477,2617,167,888,1379,351,1831,2774,520,1311,1888,165,2091,773,1794,2741,250,2428,474,2289,178,2236,2893,2596,295,1722,1504,2893,518,2130,1860,2562,2326,1649,369,100,2706,2940,525,743,287,860,1939,894,1182,196,1317,2064,2725,2807,790,2814,1873,205,2780,229,332,2087,2810,2201,1601,2898,1483,836,400,191,707,1255,1583,157,2452,205,20,2157,890,292,246,682,2601,1643,2033,2816,852,1734,1582,104,231,1001,1707,2197,1009,1683,2886,2837,76,326,1021,1307,1709,77,2857,3,1650,2854,1608,1813,2734,2300,1670,353,85,2418,2513,270,697,1395,1202,332,1872,2755,860,2636,1537,1970,647,2916,2574,2321,1778,2172,1236,355,641,2518,204,1296,841,800,1887,2977,1432,81,1146,2328,376,923,2673,1386,2880,2204,696,1222,1344,1906,834,1476,1103,2906,252,2552,1460,945,2009,2197,565,1694,1694,1734,761,2030,1937,2256,1655,2773,1927,1,2836,293,141,1612,2505,2121,1273,2342,2701,1791,1783,2230,2003,1868,2605,2374,1678,1840,50,953,173,2544,2201,2561,2109,2252,1460,1337,1656,2521,1450,2662,2640,1663,1529,1681,2355,1717,2795,2141,406,1971,915,1317,1881,136,1523,1188,2000,1763,2846,277,1295,2054,338,157,433,1064,2716,1506,1586,637,2717,775,271,1610,1633,580,2694,1368,741,1302,968,1483,2482,660,2119,1168,1035,2732,682,2069,2821,1586,459,2307,2248,2100,999,1252,2666,654,1309,1600,1093,2802,2890,1983,1369,1096,185,2803,2805,523,1175,1810,2902,1652,1262,798,682,222,265,925,328,52,2723,304,2050,2928,2531,392,568,1855,666,2029,672,2781,1563,2834,2020,2276,2160,1699,725,1253,1572,356,126,2844,2281,1356,1294,123,2099,665,2308,2325,1638,2633,1216,1827,1169,2132,469,2094,1225,851,1370,1916,2464,2519,417,2542,1079,2224,1855,245,15,473,2973,945,130,2224,1305,1460,1490,2846,1059,2818,2207,627,1452,1312,1779,1887,1554,1078,742,690,2485,1737,1165,1257,185,1290,2771,2918,2764,816,2499,2116,2418,736,2291,2827,2403,1055,48,32,2109,84,431,1151,1518,945,822,608,1383,2492,2156,392,85,1681,2993,806,445,1513,697,1521,937,1593,171,1160,422,1157,557,627,1328,2546,842,1193,2662,2498,915,1721,753,1713,65,38,816,592,2387,1600,1754,689,1231,1863,2299,163,1875,1053,2903,2753,2006,173,2731,32,397,2458,24,2244,40,879,2285,302,2589,2996,1085,2410,625,262,1013,1484,1043,2016,864,2401,963,2541,1613,2866,2300,1950,2336,1696,2049,2943,224,1109,2196,2517,2230,2419,2813,114,1136,734,20,2635,527,286,243,2469,691,907,579,163,341,2613,807,912,36,2219,2932,2345,2563,1572,1075,2102,241,762,714,1699,531,2124,340,1827,1493,740,93,2584,682,1084,2922,2968,2869,2660,1391,1542,768,115,2660,2341,2875,2791,10,183,1607,1349,2055,344,2532,2186,2395,1915,950,464,1326,130,2659,421,2120,2726,288,44,485,251,379,381,2488,2253,1035,1696,2324,86,1016,2178,1923,764,572,2366,1792,758,342,826,1492,2161,144,2677,663,414,1902,2992,2415,2923}

    {1997,1410,1348,2728,937,700,97,1586,1841,2860,1235,2161,1308,1411,274,2586,1877,657,671,2819,1080,1753,2040,1347,667,145,1714,442,2134,1260,248,603,14,975,2645,184,2855,2495,2321,1103,2414,1561,2952,2845,1480,1939,1561,63,2054,1265,2519,1183,787,2307,280,2413,2300,1839,263,949,2899,1340,1542,1099,1875,831,2947,1175,642,2327,1342,1382,1587,33,437,2834,2436,1475,2748,967,168,2634,2779,2345,920,2166,2843,139,656,759,1468,2833,15,1455,747,1921,2127,2846,1123,1339,1833,2631,205,907,1097,452,2960,1910,2716,606,2776,1458,649,1396,713,2846,1190,533,59,172,1710,2637,125,2541,80,482,145,1695,658,1601,2032,1258,919,2996,855,2033,1419,205,112,955,2169,2286,79,27,442,2060,252,2763,2148,1452,1672,1825,1063,1780,1698,2622,2549,2722,2152,1870,2230,841,1853,820,2886,178,542,2375,1016,1269,1569,1702,1635,1559,2065,605,2077,1525,2685,2251,1276,2937,903,2680,20,1045,657,2167,349,413,1643,2146,1623,2246,2497,2587,1202,102,1837,349,2673,952,188,1859,1263,2332,639,2983,2797,932,2142,1609,984,2387,1662,1508,1075,396,1994,2578,1637,2420,702,1143,1029,1295,2767,357,2392,1079,2858,709,4,1781,1457,804,2009,193,1642,1455,1169,2940,2047,1911,421,1871,1149,667,561,1936,640,2858,2520,32,1819,11,1367,355,2944,1289,298,807,2105,1116,303,2208,129,2786,928,1988,1393,530,983,1237,2904,812,539,1181,2149,1775,809,349,411,2281,620,407,2150,858,1902,2816,2861,2161,1126,32,29,63,2342,914,1942,214,2948,2959,2657,2547,2425,2365,1387,1065,1576,2073,2121,685,676,1427,1147,628,1846,2182,2780,107,2766,1622,1379,2150,867,200,786,870,1002,2562,2847,721,1397,693,1442,1901,615,1824,1748,896,2764,2991,1042,2153,239,1734,2498,1415,1309,2778,409,2936,2941,1003,2106,1564,2140,1510,175,1988,1541,1498,110,1332,2590,1567,1166,811,2934,1953,807,2598,972,2206,1504,2161,190,1841,1601,1267,2305,2429,935,1784,76,2792,2327,2010,454,1172,2763,2074,1980,213,161,938,596,1201,1795,1776,1633,2286,1434,2437,2550,2424,2895,1177,2211,359,477,190,1025,1662,1550,2467,1958,2915,1176,2784,1881,913,1718,2906,2999,2522,2531,526,1447,1843,1110,690,1420,2554,600,2521,361,2475,905,2620,1111,1780,1518,466,235,1404,320,2199,1427,682,631,1744,2758,2718,1821,148,553,1489,548,2318,1273,1431,1969,1027,527,2255,2144,2936,1426,2150,2393,1440,493,1034,2575,2564,990,710,475,2803,81,882,1597,1939,2352,220,672,2940,2711,463,2403,841,354,1458,1739,553,331,2905,1012,52,1050,705,1873,1713,973,2737,489,763,380,596,7,78,1887,431,1316,648,1867,2229,2569,313,1286,1432,2001,877,207,1637,1939,138,1057,1872,1155,1380,1610,32,997,2797,2565,1740,2375,2897,342,17,935,2221,2902,1311,1611,2200,120,152,1402,412,1652,183,1168,965,1266,26,548,982,1816,1387,2161,1465,2836,1007,127,583,1593,1782,2996,2435,1189,1768,2767,1561,1693,2502,1513,1843,1159,2689,2562,2423,2099,493,1728,373,2988,2476,1501,1650,1786,2695,1575,2319,896,1994,416,1787,1989,191,641,193,1090,1771,2595,2055,2759,2082,140,276,2261,1229,2294,1736,1500,745,551,878,2710,333,910,1745,2097,722,2687,2408,1871,1239,703,411,202,2067,2181,822,2449,2912,125,1221,2654,471,306,212,911,1924,2521,999,1076,504,724,56,1183,2076,1049,2092,1480,2608,2202,1894,428,685,622,2010,2944,363,2828,2284,933,2837,210,835,715,2961,412,2797,1988,473,266,2565,432,2040,2033,2573,2545,1869,2949,2761,473,703,34,1008,1031,668,2872,2300,1357,669,860,1605,866,2362,2936,2175,1284,1535,422,1264,898,1317,2938,1370,2672,2846,1143,1505,2782,504,156,1487,798,2647,1202,28,2562,176,967,1609,1801,2720,1344,651,1100,2470,734,2566,2110,2751,558,2551,1416,1991,1078,352,460,554,1228,2061,1723,2568,2075,747,2326,1357,1998,1707,2586,1576,1354,2176,782,1275,2922,2363,1370,2122,1446,1646,2473,1371,562,512,974,1217,2001,1297,1255,978,1897,195,883,1939,1154,429,672,1907,2600,750,1593,1532,718,2519,545,2009,2477,583,1294,326,891,472,1943,2319,1161,655,2357,1876,53,523,2261,265,2343,492,1200,1230,309,1135,1408,2585,727,1313,571,513,2441,1781,1381,335,205,2613,794,957,2427,2902,1766,292,2735,2901,1707,1186,1388,1376,873,2888,2338,28,1306,2797,609,2693,359,195,183,42,2046,2428,2777,2724,1114,2548,2312,462,1085,382,1843,1669,420,2156,577,2763,444,2687,1147,2221,2199,1305,1601,2161,459,559,181,505,2576,2817,1507,233,1896,1799,2740,2651,492,2333,2662,1725,1242,1470,1529,1441,753,2723,955,254,2846,1448,75,1141,1720,2144,2107,755,1762,1081,216,962,2610,2971,646,187,290,2027,2548,544,1118,537,24,1550,1700,2263,1673,1349,2489,1531,2503,1767,2542,2148,1076,624,1326,2335,654,2692,2549,1320,12,2499,206,2300,2427,705,982,289,1503,265,1662,2847,1144,1133,1128,2430,466,2139,2940,23,1736,844,1549,670,1282,2976,1384,205,2575,497,2371,892,2241,1841,2217,947,2638,18,2907,2230,937,2880,1758,614,1662,2875,2449,2254,2776,2441,1539,2856,2564,1286,1918,1893,1644,2901,402,1832,1523,310,2880,2451,2148,2382,1200,797,1755,2065,632,1765,2492,2273,1834,1439,746,2655,604,2411,2339,1144,711,203,2676,2419,776,2642,624,2034,512,2017,1152,396,478,842,2251,2389,1576,2859,2116,190,1325,970,1675,1826,2956,1451,1030,2351,1348,861,1001,571,416,2177,798,1848,307,1574,2889,2768,2158,961,991,2870,1747,473,1707,2122,1460,1443,2585,2951,1367,1073,511,616,40,2099,481,2405,2996,2742,128,2512,2491,2401,511,601,1187,1186,1828,2269,1717,2733,739,1496,2889,843,1102,1579,1663,1957,2351,382,1716,968,450,2891,647,875,2927,60,2084,386,956,1296,2090,565,2241,74,2774,1758,2081,950,2046,1851,5,2223,756,1150,2689,2712,1005,1791,1460,967,1348,1209,1457,1873,656,1512,1303,2923,2762,2894,648,1951,1138,1178,872,2845,798,1216,2632,2513,2511,1985,2935,2794,1663,957,1387,1634,989,2847,1312,2559,1333,425,2961,996,2844,582,2511,105,980,1006,1986,1774,717,2270,2115,988,1601,1491,1688,158,2682,1165,2940,1716,695,1175,2764,757,1272,346,1037,2733,2367,927,178,253,1151,2839,1140,2599,1029,1212,1812,688,1362,810,2103,46,1569,17,1104,1854,1944,1019,1144,2188,2947,389,2069,1494,2369,1526,1523,1842,1661,1319,1928,827,1458,470,1738,2873,2114,487,385,205,1545,47,547,2586,1845,2389,761,778,1108,1776,2466,737,2911,2767,2847,1750,1466,473,1931,2546,496,2251,2763,657,651,585,349,2506,2945,996,2359,1528,2200,967,528,505,208,2998,1966,2997,1026,6,2446,1884,1917,1607,2996,2281,1064,849,451,2395,2481,2312,2517,434,1436,1907,144,1300,1814,659,1362,1222,2858,1560,118,33,925,811,2996,1676,390,1693,203,222,1781,1408,1069,311,1822,1039,2862,1188,2988,1308,2586,1786,735,1573,336,2901,707,2687,382,2397,527,1075,907,2474,1480,381,2120,882,1693,199,2623,699,2557,2972,84,914,937,1891,977,1618,2983,1777,2833,514,1190,2245,830,883,733,525,2214,2641,1387,318,226,1837,1477,1290,336,2743,1503,1559,623,2619,1251,236,1667,1153,1932,1828,666,1303,2607,295,440,121,1574,2206,2068,1077,2990,2862,1530,1748,2931,2327,2773,2632,214,2402,926,1442,1959,2205,2076,2358,2639,2507,198,107,2944,1224,1710,833,2656,1344,2712,2875,2875,2052,2369,940,283,2149,2525,1599,2345,28,98,1225,2119,2633,538,612,2930,1850,1213,801,1074,2307,1968,102,1027,803,2039,312,2582,1689,82,2966,2762,1843,112,534,1424,1089,2578,684,1586,2143,1429,1659,2898,1206,528,444,734,319,1239,1432,393,93,1865,1879,623,1160,1634,2462,2236,383,1685,1151,659,2814,1316,230,1197,2569,1162,502,2904,1615,465,952,1524,907,1610,158,738,645,295,441,1551,368,1202,1306,1627,2249,2479,494,1348,845,855,94,2095,330,277,1615,1926,1860,225,2768,772,2525,1463,1233,2282,2998,1566,2131,2220,60,1836,2876,141,1600,663,1335,2002,1773,1705,1311,178,929,2209,1853,2980,1170,2395,723,1616,1519,2940,430,2075,1081,2612,509,2757,1934,2993,1873,842,1166,2935,689,1604,1873,1371,374,121,2776,180,8,315,2953,2265,780,674,860,1066,1687,2519,2881,2236,1330,504,1479,1414,2909,87,45,829,1512,1989,2145,2421,2725,334,1675,2415,948,1641,1580,2805,2489,461,2691,1184,7,2349,596,2373,1858,1666,1213,404,621,2739,357,2491,2560,749,1701,563,976,960,1782,2350,1467,2218,1582,726,2579,1065,2143,1078,2096,1240,1817,2221,387,1211,1927,128,176,2613,1821,2831,1999,1944,2609,2794,2947,482,1624,223,1317,943,2254,1995,143,1796,1853,2604,207,2149,1172,654,1798,1241,265,1245,637,267,108,2161,816,1695,851,2432,1944,2565,1960,1508,527,998,694,2315,372,2064,954,1311,449,2100,214,2515,1940,1993,616,831,2096,921,339,651,624,2519,2811,892,1216,119,348,527,791,1992,2274,28,1061,2489,522,399,182,2658,295,384,2546,849,1927,2614,2686,949,2225,612,415,2795,1400,1814,1378,275,2611,2787,1063,748,2533,767,1401,142,963,783,1358,1561,1821,99,1573,101,170,593,2989,427,882,2837,1315,846,483,1586,1435,2229,80,1681,2877,2923,968,31,1396,0,1756,69,900,2024,548,2977,1707,2230,2143,911,1513,1043,1160,1442,546,2195,2618,1458,2371,2762,1954,819,2765,2629,123,452,2728,583,1959,1819,1636,2440,1641,922,2869,252,1225,1634,2364,815,1383,1512,2777,662,2880,2948,1404,664,2426,1310,94,2902,1985,2533,923,1564,2727,1925,633,804,1897,2043,563,891,2700,414,892,1681,2307,2117,2868,1333,533,280,1465,685,160,978,742,1692,862,2385,841,2263,2912,2128,161,1707,1162,1631,1051,685,2944,777,1488,2578,201,2977,2242,2218,28,1108,116,2733,918,211,2217,1536,2326,1432,33,342,1836,1933,1785,851,2954,1439,1174,232,2540,2896,2388,2566,2007,1751,2945,1015,2520,995,1564,830,1018,1642,1674,301,2337,726,1853,1988,2106,347,2266,1823,1988,161,2668,1556,754,2468,2639,2919,2093,153,1658,2409,2368,1243,690,1408,1044,2720,995,115,1544,2590,2463,698,768,674,2416,1000,1157,212,1379,2310,2575,157,1112,2233,763,1929,2622,2870,2093,1164,244,1619,871,2836,103,2369,2037,2982,1471,2721,1642,25,2815,2717,2950,1087,82,2699,2102,2803,279,310,2709,2661,1660,1196,2934,222,1048,1614,145,1961,1296,1597,96,978,442,1865,2064,313,832,1727,2250,1360,314,2532,2234,905,33,321,2156,157,822,2864,2099,2837,2283,1580,1741,2546,1706,421,965,2501,2834,157,1985,1286,396,2550,1285,960,92,983,2736,455,188,2523,2200,2646,611,580,1195,234,1000,964,1060,735,1092,273,2104,2942,1079,2978,1996,2857,516,2284,706,2756,319,1294,2733,1835,979,2356,2175,1805,2839,654,230,1000,1217,828,1312,2902,1103,2892,880,2929,2992,670,1227,2792,1250,766,1215,732,1029,2161,221,1274,2741,1247,418,1959,1029,1770,701,253,2469,650,625,679,519,2300,1897,334,2899,2206,472,72,1503,961,1105,2495,1488,2586,1385,2371,2258,2584,2418,2897,2278,2879,2976,1400,1328,798,1509,238,480,570,1256,31,981,1377,2825,2399,1461,795,522,500,540,1724,856,881,1522,1883,1378,2772,1707,900,2670,1024,2578,2690,2519,454,2377,2441,216,357,441,1393,2653,617,1419,2012,2359,2104,950,2704,2286,336,1789,1311,605,730,2784,2763,2696,2735,2182,2615,2734,464,1485,1663,2601,1742,1983,2743,2381,1533,2717,343,2211,2550,2080,11,1098,1135,1819,2094,146,611,2901,2477,1014,1848,2165,1117,713,1296,516,2743,462,1716,2180,2961,2051,10,987,225,1480,35,337,983,2052,1920,1961,1024,2433,868,416,2673,2570,754,1975,516,2589,748,2990,1094,2707,2408,1269,2853,1884,356,2325,2662,1851,2927,49,2521,1717,2948,1483,1690,1909,1192,1505,68,2048,209,1904,587,2516,902,1405,1577,1025,1388,1668,1142,1736,2231,1871,1938,805,835,1957,2320,818,2884,2020,924,693,1645,2946,1585,2628,2782,2112,679,2329,1939,1684,2693,2379,2249,2011,786,2644,1382,534,1967,2766,1032,2697,1847,2357,528,1588,2472,1804,1321,238,2904,1590,2436,1890,2826,2867,2073,613,2662,2881,123,1262,1665,2908,2049,2902,1801,84,1360,2187,2393,831,388,2238,2279,1303,2743,704,2632,1336,2553,393,788,1006,2492,1324,496,1682,110,1223,1109,1016,499,2704,1725,546,1217,743,1847,1262,318,685,1202,760,2841,217,2632,2578,81,460,2042,1567,518,2348,1860,1896,2891,2325,2844,1609,2028,2808,1450,2280,1651,1173,627,1948,2232,1180,916,371,1751,643,1105,617,2608,2257,1685,638,1687,678,1211,2198,2438,881,676,1836,2593,2347,2364,451,1652,917,307,1834,1030,2492,1054,2471,966,1809,1459,1892,722,1109,319,528,363,1266,2634,1040,761,2720,2543,2832,1215,1865,1899,170,2326,462,1398,599,2613,1852,1217,131,2174,1236,746,237,837,600,1449,759,1086,802,1287,358,1586,873,2705,2715,407,2554,625,2619,1873,1603,2850,1028,1903,37,215,2078,2808,1105,1513,2893,391,1589,2806,1511,1373,2225,1318,1716,652,2839,1172,2222,1094,1457,912,315,352,512,2457,16,551,2313,2717,941,2749,747,676,2316,2371,1634,1017,1711,1656,678,2383,1534,2213,2150,1454,1570,305,1180,117,2137,608,208,2511,1438,881,2852,561,2022,2332,923,1416,1840,2806,1507,417,2749,2837,1175,1293,2534,1476,2215,2203,1288,243,1272,2306,2801,2056,403,333,2448,2227,173,2664,408,1489,97,1960,2416,330,2702,1006,1986,495,1749,30,2441,1827,2747,1632,1010,2346,2824,1307,1495,681,858,998,1038,2341,2592,277,946,291,2301,2637,676,231,787,250,444,507,585,909,2890,2885,1248,151,1157,1268,222,235,2882,1072,666,1432,1612,355,814,1351,1231,2150,528,2089,116,2413,2237,978,1206,2153,1148,2346,317,1875,1607,2918,2119,2109,2228,310,994,164,1655,2639,1642,541,2314,265,1382,2539,2083,666,145,2537,1456,1677,860,134,675,19,843,2963,2087,1731,811,2062,2334,1747,405,614,1059,1111,467,108,2776,16,1262,1119,716,370,1810,1598,2149,1542,1875,1243,1561,1137,2933,678,804,1124,1203,693,409,2970,1988,354,346,1707,1383,802,1244,394,468,1574,2886,1046,2621,2029,1159,2941,1825,2862,1157,1626,1004,2069,2892,162,2825,2247,1533,2507,887,894,2338,518,612,2340,2519,1444,64,799,1612,0,105,2824,2548,1400,2803,1514,829,1267,2704,218,901,1687,2797,596,2698,1648,1202,1993,1332,1851,2312,2033,283,1601,2598,1083,885,108,2450,23,1580,2924,1601,1861,284,2933,1231,1792,419,948,254,681,1434,2322,1854,2438,612,2529,1660,2746,1546,766,930,2490,1462,949,396,1132,2526,798,1011,811,2891,601,2644,2781,834,2773,1939,561,83,1691,150,226,1874,306,2422,1045,1903,2847,2589,108,1640,1480,1062,1832,197,1185,1121,1875,2801,596,2130,1227,1259,2432,157,2109,549,3,1067,1502,1791,159,746,2481,1829,392,2552,1065,1228,1048,536,1303,1316,1525,2212,1722,2977,2560,1300,17,1358,1473,566,1225,2708,2705,2846,1464,543,868,11,722,1629,1231,1162,512,471,2565,81,863,860,1584,1746,2422,2001,505,939,1210,1865,1334,832,1108,1774,415,1611,1036,310,1202,954,377,1866,2922,595,1875,441,1849,573,2652,1426,2162,2169,2019,2891,421,1101,2824,2744,2718,558,1997,2619,1922,2473,1963,2084,1602,1129,2406,2558,1466,1262,205,2390,908,528,2863,1481,1303,1416,76,1970,808,1535,39,1857,2194,2086,430,362,2584,1182,2011,2423,334,1580,1217,2001,1232,908,2625,2830,1523,1851,1750,999,1887,439,754,172,1127,2237,874,1283,2330,51,1249,429,2527,469,2}

    2522

    737

    Returns: 620335533

  107. {2044,36,701,345,477,854,1129,1034,1150,2471,701,2301,727,824,1921,552,2946,2430,415,354,2955,475,1884,2490,2612,520,820,761,1163,2516,2384,2139,2719,1621,1174,963,1721,1548,1218,1198,2718,2780,431,2279,2374,1676,2679,981,849,645,1419,1393,1070,2033,81,1323,1782,450,1820,1105,2361,2543,2570,2144,1274,931,71,1257,1913,1230,390,2986,2543,2054,330,831,2606,1578,718,422,1337,2540,16,551,1411,2443,1254,1041,134,2173,554,183,729,584,376,489,630,1427,2099,979,562,2302,1497,1329,741,1504,1366,980,1415,1241,2265,2820,2622,2804,349,1442,369,2499,2248,2916,564,2355,877,450,2304,2487,798,44,2000,2896,1373,403,1452,33,2745,1907,72,2931,2848,2786,743,874,2978,279,1484,1861,1461,1142,2432,442,2907,1608,2520,2550,1469,768,1338,2518,87,1620,518,1696,1610,318,2148,2456,2132,2299,845,2927,2107,2725,901,2236,915,2644,708,209,192,2062,2663,595,1658,2873,961,2879,2724,299,2753,999,2744,2320,1879,824,294,675,1763,2356,2422,1405,2323,102,2314,1866,907,1085,947,2192,632,1045,135,1656,570,1926,1912,1131,188,2099,532,2973,417,605,1923,2472,2623,1914,1114,2061,1523,1916,1197,2285,700,2274,1820,2797,131,256,152,589,590,1700,2043,1718,371,2908,1642,781,2053,618,2699,1482,1887,2438,1996,2255,1783,851,2288,1269,868,2704,1497,509,2888,2599,2472,2355,2826,1409,1470,1892,1463,14,1643,2371,172,2171,1346,654,297,792,2003,2640,2924,2268,773,2339,300,2343,2670,1215,495,642,2373,2183,1120,2069,1987,1662,315,131,1855,1191,1261,1183,728,360,215,725,471,2393,1032,717,2042,436,753,749,2867,1300,253,1305,519,816,707,2137,815,448,419,2161,1922,2134,2959,556,641,1546,1102,328,1449,1420,1609,2835,1559,2020,241,2308,1629,1254,287,1509,762,1146,2907,1689,1421,344,2674,1397,2382,2807,996,920,230,1948,2506,2018,342,2881,615,6,603,2575,360,1857,797,776,1409,2203,2113,2779,2853,777,335,871,2030,2389,2573,1551,1767,2330,2004,1849,250,2049,510,420,791,2439,507,2378,2301,2176,1742,838,2532,380,1136,761,1363,862,2962,581,71,345,651,86,1389,1487,1164,1798,2766,574,1102,2086,1597,1714,416,2196,2369,620,1046,2552,1749,118,448,568,1293,2905,1945,2914,546,967,944,1934,2707,1234,1679,1764,1880,2867,1767,736,1847,2683,976,1446,2699,444,1476,2564,1606,387,607,2978,2583,586,827,844,1191,770,639,1948,2721,474,1049,636,500,2271,1384,1792,320,662,1072,2449,845,199,1400,1995,455,2538,1282,1275,1943,2489,2231,16,2642,113,46,2116,847,621,292,550,2922,2339,2904,1235,2162,1300,1142,2494,1539,1761,243,2759,2147,1992,2395,2986,2043,1508,106,1670,1300,1223,1378,624,706,2401,2932,1537,2216,240,244,1972,941,1177,12,835,575,2402,2771,2449,34,1067,1821,1640,112,2632,2771,2823,1625,1050,18,1845,2925,2502,1006,2598,1526,254,984,261,1771,579,1026,2960,2862,748,2467,2945,814,314,846,2957,2927,2276,2728,1403,1398,94,2382,2128,443,559,150,407,1007,1806,501,1349,2352,570,212,1200,1350,2449,1319,2253,787,1296,2023,2660,1152,1077,1281,927,2835,80,1861,609,2809,2376,122,1095,1652,2373,1000,2576,299,2237,1157,1139,1351,2575,727,2051,1420,2034,1112,2602,2938,1936,1007,777,2627,906,1442,2221,2000,409,1470,1133,2279,1994,1182,633,300,2190,2914,2398,4,1084,2707,2670,2342,1143,604,764,1616,293,450,2865,1457,1677,2583,830,339,223,638,1290,2939,1722,2421,1122,2435,123,981,1144,20,764,564,2674,38,532,695,2338,1500,2348,1760,2847,276,583,2025,124,1536,1369,2451,2630,2213,2970,1947,2762,386,1230,2927,2171,1172,872,231,1837,2111,2184,479,2502,953,1558,1322,2222,2557,1624,908,876,1979,549,1868,2140,2091,1102,2670,1971,1076,386,1005,7,210,2977,2679,2693,981,406,1025,2489,2856,1071,1218,1888,1414,1524,437,1415,7,583,2766,308,918,2848,1980,2638,2084,653,984,789,2952,964,1158,2193,513,1683,247,2318,2920,1641,2790,2751,855,2577,2797,2746,1982,909,2345,1470,397,1911,2087,231,1148,1808,448,2185,1830,2548,2289,2507,1236,2608,1195,161,1577,253,23,2350,2179,2546,1311,2343,2202,2015,2333,1946,2066,1930,557,2271,1531,47,2387,570,2534,482,501,548,2695,1851,1281,1116,1390,660,2061,1471,862,2395,1592,604,1279,1370,323,2373,746,525,513,1052,2747,2670,713,1320,2026,1295,514,1087,2955,1384,1478,603,2443,1599,2368,1008,576,1763,1762,417,1779,2107,529,1797,1130,2246,684,989,2153,2348,2325,2775,2026,417,1399,2742,752,2190,1276,2001,1771,2120,1833,2510,1802,996,711,2337,2100,539,688,2684,2438,2992,1880,1220,2830,470,1667,1523,542,985,2187,879,925,2074,1063,2370,324,1106,551,2996,2140,1686,178,628,2011,158,49,50,2588,2035,923,2299,1971,2902,2901,1897,1661,2349,2288,2843,459,2967,2035,309,2058,954,2788,835,1394,227,2558,2746,446,2120,1791,2015,2472,2315,2117,2441,2490,1568,2342,996,647,2876,2671,143,296,2727,576,2261,1776,1853,2594,2211,2120,1171,499,146,1701,2514,285,824,2053,925,441,1252,137,2058,149,1254,2766,883,1588,1006,2912,1428,917,1848,2340,2528,2002,2187,2228,835,1499,1837,2947,1352,2402,671,825,1899,2279,1082,1471,1306,643,977,1983,2589,2678,77,281,1930,113,117,1175,1067,844,2533,704,1784,229,1152,742,1584,1297,1907,2575,1721,2297,1254,264,1774,2311,2612,1571,1505,2949,747,1529,1867,1934,2256,2115,475,1840,2342,1857,2581,857,535,28,690,2701,1570,350,2416,1805,2883,475,819,2467,2386,544,2652,1862,1076,1349,1475,2962,305,909,2891,2596,1009,2220,2577,2063,1487,2145,2980,2312,497,158,1463,2044,890,1083,321,1803,2319,2513,96,1269,2756,1564,599,2965,584,369,104,1005,214,2695,2815,1951,885,1990,104,1423,1246,1770,2007,750,2806,2215,438,1966,446,2717,2585,1124,1985,38,72,968,1063,1785,1279,291,2603,556,455,1689,2192,1233,1977,2702,2057,269,1117,18,503,2495,1839,1126,965,1772,2731,615,1367,234,2112,1542,1696,2485,1678,2763,724,2993,779,2197,2724,1518,1830,1214,2325,2133,1062,379,1706,1181,76,1072,2198,2383,2783,2760,1341,1326,835,1306,172,720,469,2664,2257,708,906,2891,79,2166,954,372,1357,2305,1629,1529,519,655,1842,824,451,2241,1773,836,2157,1455,82,98,2898,1025,157,2406,2068,1997,216,175,1402,2201,1449,2884,725,542,1979,158,2047,2652,1120,1552,504,1528,646,1825,247,1955,2335,806,2659,97,508,2933,2832,2154,2626,1863,1063,2466,435,289,2355,2484,2219,2676,241,2146,1917,2614,846,262,2844,1723,183,2544,1391,2078,1142,317,187,2584,1024,1684,2154,917,1481,1276,2468,1058,1214,1131,452,1690,1860,2392,2685,1324,2325,1730,12,2963,917,1489,1800,2869,1121,864,1462,419,2734,2876,1205,2878,755,1323,1285,1801,2099,420,248,526,2106,24,2291,340,619,58,258,1521,1604,2909,1666,1209,2139,1141,1331,2887,2708,1372,905,299,137,602,2882,875,1892,1219,2488,1423,1299,2829,470,2452,1091,908,2348,492,1890,2940,2386,1656,1058,1279,1594,1521,829,549,431,2410,1893,1391,2870,2797,1914,918,1932,940,815,1425,1409,1310,81,1542,21,2569,1459,2225,1961,72,1025,1459,2610,1099,2058,2448,894,476,429,723,2323,161,1306,310,1972,2386,709,1768,2001,1587,2453,811,1074,1515,1601,50,267,1421,1595,737,1358,2636,415,98,1951,1336,2707,412,889,751,761,1480,1061,435,1989,229,2234,2292,2913,2633,542,1350,2949,1857,1984,1804,1505,1262,2305,998,1680,374,2096,1997,1867,2563,696,2375,500,903,694,796,2772,100,2049,689,1040,331,2136,27,576,2329,169,128,733,286,716,964,1936,2251,894,1278,2758,904,2987,2539,1529,452,1069,2444,278,1494,890,1754,684,352,172,947,464,1264,2069,2184,1661,444,2899,1366,2238,1298,560,2876,2428,1310,1736,665,1312,2846,1683,1257,103,2626,1384,1036,765,899,1648,142,900,1800,26,2774,1021,1679,127,472,1713,1790,183,309,1368,2691,1335,2573,1678,1775,843,531,1023,986,1809,1747,2099,2584,139,283,2708,667,565,2160,1734,2691,2222,1178,1201,2366,1458,1554,850,1162,2119,2272,647,617,1886,2105,83,1404,2311,1377,1238,890,2416,437,447,1694,1466,748,1578,2272,729,491,1651,46,2623,565,420,253,1053,946,1336,249,2713,2651,2248,2122,576,2850,2547,2845,2887,840,2886,1423,997,115,2612,1603,1591,1832,307,2622,1523,920,2291,1187,2127,489,514,9,2473,1607,2331,2819,611,692,454,487,255,2697,1107,1905,516,2365,462,2062,329,2735,2600,1523,565,2618,1080,2066,2870,239,2416,980,2140,2836,1653,962,2279,1775,74,902,1207,2050,2082,1295,1612,824,974,299,2426,350,2726,2172,1250,1183,783,2880,665,1315,1349,1320,1771,2444,2257,803,2423,2264,1071,2559,596,2842,2929,1812,2191,2787,2075,240,1234,1579,272,1783,2496,2017,2338,1844,396,1447,739,1852,1970,1627,2474,1246,886,1795,1676,10,1678,1015,1239,2003,2342,2681,2293,2996,2271,1709,503,2767,1281,1649,2716,13,56,2114,2593,1819,926,2026,2017,704,2934,2007,1539,1174,1304,874,493,1666,32,1115,2607,2788,1190,939,603,957,1962,815,2660,1256,2781,1843,907,2766,350,2301,1189,1242,583,1126,2859,1661,2286,730,130,553,2717,747,1276,94,2854,2475,1732,2851,1410,2962,2096,503,440,123,670,2807,1279,1440,2034,954,478,2614,2021,2800,403,1620,534,2076,2080,1853,2038,2770,1224,436,1832,1814,2260,2436,1725,377,2881,955,878,695,1903,1716,136,2254,467,2585,1342,1526,1891,408,1362,1592,1344,2325,669,1918,1672,1789,738,1191,579,553,1140,2550,2091,1121,808,712,707,370,684,414,1465,872,39,760,2917,2724,2031,437,988,1751,1078,2797,1703,2022,709,1980,996,2186,2153,735,463,268,1059,2027,2661,1265,302,1274,2526,924,2013,309,1215,228,482,2014,17,2059,561,2638,1295,1179,1000,1474,1084,1470,2624,247,217,603,490,513,874,1549,484,900,176,2999,151,273,550,2707,2749,2476,147,2998,1672,2031,978,453,422,239,1683,1200,747,97,1651,1091,494,2769,2591,1229,1419,985,2794,935,2422,837,2273,2499,2055,1301,879,1109,27,678,1316,1547,2992,2212,2045,526,964,1775,2752,2351,2623,945,1526,2621,400,1579,2117,2013,2700,1475,1563,2492,1946,237,67,2505,2093,778,1833,625,1851,1523,2667,1913,2289,343,1058,933,2377,875,2317,2942,2754,2481,2983,274,2102,2809,1258,2562,2672,477,1309,2632,374,2479,1259,1364,1286,2757,1268,715,1496,723,2081,2013,2201,1934,431,2735,2660,2365,778,1776,2863,2876,434,1280,1401,1395,2325,2768,355,2860,754,2834,922,1535,1199,176,1197,1392,2272,1948,2361,1578,2592,137,467,2075,156,2854,1655,1269,2178,2459,1939,2462,2518,2694,1426,1195,1576,2143,1798,2358,833,2021,2288,2404,998,2690,877,2626,2881,2587,1215,483,1734,2281,2646,469,1091,1490,660,1208,116,429,2814,2119,1809,75,1620,2009,432,957,1147,2985,1114,569,489,1307,1529,174,1110,326,1762,2816,2688,1308,2314,2217,2557,2397,2242,1991,2300,2482,2013,805,1129,662,579,1606,2593,530,2431,251,2868,735,868,1924,1926,312,902,2911,919,287,121,1287,2945,2190,2341,469,1993,46,1559,219,206,1852,1581,1777,1247,1615,991,2861,1407,1169,1926,1555,693,2094,838,107,237,71,2850,1578,2703,623,2360,2464,988,2144,581,2425,1384,819,2562,2785,698,1439,272,2508,385,1812,632,1699,353,37,2120,2550,479,1717,1815,1940,1346,1374,1329,2655,1745,2102,2745,1494,878,2464,2531,2060,2973,195,540,1413,2899,743,25,703,2584,784,2974,78,2437,2743,1575,865,2706,7,2927,296,2327,2488,926,1833,824,1566,865,1791,1389,1508,1324,1778,1429,2936,2184,1525,1942,1005,29,345,2022,2632,2370,2669,1363,1355,1806,691,94,897,1197,357,3,1137,2736,1014,1675,916,2729,2602,997,2516,2357,1066,2911,1347,1895,2935,2968,202,2987,756,429,2395,1541,1301,1936,2604,211,471,267,2553,2176,1543,1092,1473,1081,1082,392,1521,2662,46,1457,1308,1360,1508,2660,2059,2796,81,2719,2464,2495,581,1231,1263,2202,392,523,2203,367,1061,712,474,2296,706,1523,1753,2509,2210,1038,2282,1872,1646,2979,2559,2690,2546,1094,878,536,1582,200,679,1834,524,744,2059,1401,189,332,2981,2923,1429,1339,40,2086,135,2130,2564,1338,2897,1688,2761,1747,246,593,1044,1232,2766,1986,1938,1734,800,1594,2611,1577,1755,2386,1595,1286,2641,450,275,2784,511,717,842,2367,661,610,171,2957,2848,2677,1195,2056,2001,2985,163,1833,1777,386,1306,2870,2720,1607,530,2904,240,247,785,1882,2344,184,98,176,2600,2507,532,2698,2407,2519,1438,579,1597,1119,958,1101,2249,1793,1312,1695,2324,809,718,282,261,2729,2987,2494,194,315,928,1930,666,1041,978,2365,2164,888,2049,1912,739,1231,2472,2411,2271,709,1302,181,1282,1132,1697,334,735,1598,2396,1442,2438,718,1360,1856,1319,2414,2032,2076,42,394,374,2571,503,2325,828,439,1488,869,2226,2242,2810,2951,2670,747,1876,316,1804,448,613,952,263,2199,1857,2670,2169,809,1274,2612,1495,1661,2450,1791,783,2166,512,1027,53,1480,1506,2611,2539,1343,776,2203,164,835,612,727,1407,2303,682,2670,2637,2622,1641,2631,626,2993,2808,2457,2445,2962,1214,1665,1498,2066,1282,1895,429,241,2720,247,1846,853,1933,1628,2533,543,2913,78,2777,2478,2146,1865,2025,1916,1826,574,1771,1765,1738,1242,2870,1159,1769,1053,2985,159,768,2700,1629,1795,662,789,1253,865,797,872,1444,1683,1616,2455,302,2574,1008,148,430,2727,721,408,684,1858,590,908,2755,2255,1058,1798,143,1580,364,2474,124,2989,911,665,542,388,402,1145,300,579,267,1108,42,1276,2413,2459,225,2704,814,2864,1541,1028,2705,692,2729,2943,460,155,1001,2765,1297,2007,1307,1005,602,1004,2275,2642,848,725,561,1863,1613,704,590,1489,71,1866,2465,2272,1178,12,2518,2174,1369,514,614,696,2059,807,2231,2590,572,301,1305,1128,2180,1260,1625,1389,224,1208,1927,1194,1539,917,900,1473,558,2115,265,1863,804,2000,2248,484,2243,389,1951,1498,255,2488,2267,2648,243,180,2087,2692,2773,966,528,752,1221,1031,2738,471,32,2347,956,2405,466,467,389,629,1405,404,1232,723,768,2052,1553,1573,1886,1119,618,2838,158,1362,2681,638,567,586,2566,581,637,936,2800,1335,520,201,2722,359,360,2447,1729,2628,1938,2708,2722,802,1035,1678,2404,2453,384,2647,446,1764,1771,1402,2832,166,1806,2707,46,2837,48,1981,698,1504,2462,2893,1967,1934,2209,156,1905,2925,845,1862,1232,1167,1449,2154,1277,1594,2945,2903,419,301,2493,1484,1286,811,664,2110,1751,698,571,245,2400,494,1073,2114,2307,1731,2670,2688,1168,312,1656,197,2062,1812,317,103,601,2956,39,1147,162,336,2758,2724,709,589,2059,685,960,555,50,740,978,666,1815,731,1672,1826,971,2201,2185,1625,953,835,590,576,557,2475,2647,2981,1837,2122,1206,2619,597,1666,2236,540,2642,1024,801,2310,790,604,934,1283,2656,2643,377,52,1496,2143,572,163,1654,2209,2188,788,248,2991,2894,1597,1823,963,325,777,1217,916,38,1959,594,1950,995,1624,1964,2512,455,378,2936,859,2251,2055,2091,423,1697,926,161,1201,1683,2822,1863,2363,1824,21,1420,658,2886,1295,158,1720,2597,1960,789,445,73,1154,337,2194,1568,799,2754,426,2207,2622,2444,594,2975,2411,215,2399,2942,256,2530,2614,1257,474,2601,2019,2434,783,2153,1734,1935,2889,2310,1289,1827,2422,1993,1930,1342,2475,2529,2469,2685,687,790,1451,968,589,396,320,365,2224,1749,2242,1759,1167,436,469,2890,1726,1663,138,1733,1436,2858,2530,2278,1111,1166}

    {1412,2009,2738,2715,21,465,304,1758,676,533,1214,2692,2695,2661,2064,218,2072,1235,1010,1813,1216,734,2350,517,1881,2195,1835,1328,1355,1300,2850,603,1013,2301,1894,1562,1756,2270,2818,413,1204,1784,1405,265,268,1981,241,498,2131,414,1849,470,2625,2318,319,468,1050,221,959,1709,1029,589,692,1153,2626,2634,1032,457,2418,895,2778,1787,132,2817,2156,245,2445,1791,395,1514,377,799,68,833,83,1838,2378,471,969,1237,2227,983,1192,2013,1865,315,981,2214,764,1626,2911,847,80,949,1187,622,1062,1295,165,2598,2211,119,2248,2166,485,1318,532,296,1362,771,685,546,2919,1626,427,1791,508,1450,1382,2086,1844,1954,1485,795,1151,2886,128,791,2689,684,1237,1469,306,1585,2882,858,791,22,1882,420,1284,1372,1420,1303,1724,1766,1235,1750,1784,172,2475,2097,516,1058,2752,2323,143,1898,2205,2580,1345,2408,1388,2220,559,143,2313,343,2610,59,1858,338,2419,602,735,1921,1018,1122,1853,469,4,2365,2086,34,2583,1831,805,1908,987,59,2427,2551,1698,1911,1511,298,281,1845,2036,1161,799,1977,1305,2626,903,1513,457,1735,2714,2206,1043,780,33,2056,1707,108,2480,1061,1913,1737,2968,1414,2493,487,2066,1641,1357,1430,2989,1334,2214,2670,361,2554,889,1570,1671,533,2214,1634,2168,2623,2743,2660,2674,56,12,1122,1606,1098,62,123,1096,2686,2373,1664,65,1629,542,2239,346,103,2298,984,1368,2206,1748,1965,2242,174,806,768,1350,568,2980,826,72,920,2550,2059,1638,2128,15,2378,1032,2913,1839,2626,2013,2545,1080,1217,23,353,242,1453,2422,1670,125,685,1629,326,411,2300,1101,850,2075,915,1267,1654,114,1816,1424,393,1365,875,1670,2953,2367,947,1100,2560,2653,1875,2834,1669,1833,1433,722,267,1749,2650,266,377,2472,1671,547,120,2534,1373,2687,2702,2956,1486,897,1572,1402,2441,1225,1160,1019,2099,1208,469,1431,1697,1082,1627,60,1656,598,1854,2153,1276,423,109,1994,35,2090,1282,2347,2382,1678,465,1543,2919,1384,454,1893,1338,2905,930,182,992,2156,898,1055,10,1597,2227,198,772,2536,1957,2222,1011,947,1798,2798,651,2523,667,1545,1719,1512,56,1075,2800,822,1079,2759,1379,1121,2149,643,1798,1197,1681,2011,1075,2488,696,1852,628,60,423,1538,1380,2032,1825,1776,1295,202,662,519,1325,785,2764,2923,584,467,1758,2452,777,2092,2871,1486,1951,1481,2964,2465,2204,1188,1183,2272,2755,2284,2959,2160,2486,473,613,1861,1611,1190,2062,1335,473,2304,900,1249,2138,1422,1836,1850,1580,2264,2161,338,2707,580,1023,2467,345,1623,653,1021,1697,2359,1913,1345,1905,758,2840,1390,151,2841,2010,2632,1008,724,2060,763,2517,2504,566,1596,163,2921,1926,2817,2865,1448,137,2941,20,455,2360,2080,1406,2174,2593,1048,1448,142,1232,756,389,2537,1065,1697,1833,2606,1760,1810,2712,1896,2792,2290,1901,2011,274,1617,64,2336,2152,1974,2537,2771,580,2384,1912,1012,55,1321,2766,1959,2890,740,1673,2068,603,1369,278,1670,2671,2497,957,2337,402,2313,475,1502,1567,1672,1708,2772,575,1835,1078,2430,2622,811,2188,16,2442,2216,2671,2833,1151,2276,1625,2321,1123,204,709,2532,634,607,425,648,1738,2099,2587,980,2440,590,382,1401,2462,2626,1508,2334,1642,1244,1523,1994,66,1121,1198,2234,1721,276,33,1765,1479,420,1336,2133,2053,1034,2360,1861,1727,231,1426,2140,4,745,121,1452,530,350,1705,2806,1618,1949,2870,1718,981,92,2882,2805,1788,1853,526,2387,2905,2373,947,441,1508,2192,544,542,2433,1654,1659,477,589,2043,1196,2391,913,1540,1557,1583,1693,1682,1519,1314,2688,2540,2902,1618,637,2198,2535,46,1095,2223,1150,1354,1164,2037,1668,576,2067,2604,473,1464,2780,1734,1224,33,2649,193,302,1953,839,1710,581,893,632,704,2622,2534,80,133,2660,2062,619,1799,2085,644,1197,2270,2909,889,501,2092,112,880,2098,418,1859,173,1715,719,56,1977,97,1102,1651,1739,822,1874,280,2571,1474,14,930,1470,738,1009,2970,1348,2496,2241,576,1130,1374,2341,2572,103,2316,2395,180,2399,562,436,1292,881,2402,2460,1744,1532,1501,1015,2522,2252,2420,1016,538,1245,945,1518,755,2791,1952,730,910,1187,248,832,1435,191,681,1234,351,2828,1842,1936,180,2029,1390,2464,887,1657,2153,1134,1973,2123,417,2470,2075,2780,1858,1715,559,91,2751,79,2254,1399,356,1632,2187,1437,1061,268,1893,2727,1672,2600,1676,2870,157,1821,714,484,2605,1487,168,788,1833,815,713,2651,649,1201,2720,2280,659,1184,502,1578,1125,588,2679,2182,2152,298,349,2696,1353,183,2016,252,145,2628,1472,1131,469,1408,2858,2,1392,218,2890,1186,789,1529,1384,1191,1239,2231,2498,1388,2141,2534,2248,183,1103,904,1636,2317,2595,2259,1764,2615,2818,973,1901,1017,208,209,873,2492,2832,2339,46,2108,1310,1595,2799,2325,179,1222,1491,2219,1566,1051,807,2886,1330,2540,235,228,2262,51,410,2043,2707,2098,265,1583,1064,1593,2495,327,1908,2353,2044,1056,2268,1534,1226,2505,1900,2165,2875,1447,674,727,1340,1906,403,63,1363,715,2995,1544,1849,1820,429,874,2717,1200,2333,220,2903,1311,2061,1662,2755,1260,2707,93,2783,1422,1060,1678,2706,1350,2714,1660,246,740,1909,2661,1057,2884,2041,1904,1294,605,1828,1958,1976,2347,1889,1476,1030,1560,1175,1554,2355,2755,2578,1534,1357,1637,127,586,2188,1422,2877,522,834,294,1346,2652,2883,2355,1135,1423,98,2185,1200,945,1191,951,1432,1376,424,2750,1470,2638,1248,673,1342,2816,2913,516,2273,1874,640,2420,2384,1052,2043,1088,2341,790,1350,1985,1968,2766,2379,1811,1675,2018,2471,2153,2156,2866,2489,1630,433,2066,1206,529,1327,1208,970,460,2187,255,1869,1261,164,1170,56,2722,975,2056,1744,2780,1946,967,1214,1156,1800,2488,73,1812,2994,730,428,9,2758,415,1418,1936,1395,1616,572,303,2090,667,1270,1197,347,2997,705,1493,305,2581,771,2313,1674,1385,2031,2521,121,283,1951,374,204,2771,1578,892,677,1328,333,1403,346,2059,2120,790,1323,2384,1520,398,2090,251,1490,2616,1237,2153,1280,2095,2402,2364,236,2350,2839,1965,1094,205,2077,2573,1268,1918,532,2159,1583,14,1632,2032,1616,2811,825,2539,2258,920,2704,1988,2667,1635,218,1308,2827,2822,151,2913,1652,1757,1097,357,1291,2434,2776,358,2416,1422,2119,1474,1600,1352,2722,794,722,1764,2122,2496,719,1273,1142,737,480,2962,759,2990,2623,2545,2377,326,15,367,2654,2082,420,750,649,393,241,1419,892,1566,686,1262,1142,2283,721,1401,2082,2575,1352,2431,929,1451,1102,545,2463,1919,2297,750,313,425,2883,2671,1183,2412,1332,1375,1020,2720,412,1323,1507,2667,149,1323,2197,190,617,417,83,2620,2666,2624,1550,232,2890,420,1590,2769,603,1266,2735,139,1561,1597,1127,1597,2883,233,2121,2778,1276,2064,1416,1581,1276,2005,1213,1138,2842,2808,1378,2427,2428,583,1414,1633,2546,31,1652,1102,1094,1126,752,654,2522,2831,7,2200,409,1658,2043,270,605,2626,186,1712,685,2910,1316,2635,1527,1496,652,605,2792,888,2928,1170,2625,1746,521,1758,912,2872,902,1824,444,134,1687,2812,2567,2151,849,1342,1941,484,1589,1864,2739,1409,1120,2244,1715,227,2250,2901,2073,2735,295,222,170,1643,144,1980,149,1926,1486,1276,568,1475,1504,2859,1076,2595,2311,2156,1356,758,360,2184,390,1873,2302,1563,1516,0,2263,1832,2475,115,1263,1483,2711,1728,2474,2946,466,761,1199,1920,1197,527,446,2523,1671,2668,2555,443,53,2793,1262,1602,2310,1054,1551,909,435,550,1173,1215,1767,911,1666,2339,1077,537,1426,2328,182,2918,2935,74,600,399,774,730,1320,1505,2104,1240,937,2499,1969,896,2240,1417,467,703,1912,1902,691,556,1586,2962,1523,283,856,1796,290,1142,1790,2516,2727,2556,2886,943,1535,435,1686,2538,2918,1208,429,2695,1452,2469,1460,790,2159,1009,1460,2245,2548,678,1310,945,2723,366,2660,238,2792,772,2071,1631,2626,259,852,1814,22,1481,1326,1956,1285,2852,1951,2981,757,1542,2925,810,2754,1885,2718,1742,94,481,1865,2455,2752,2657,311,2101,494,1626,509,2055,1384,2318,612,1530,80,532,822,83,2950,679,167,355,1523,743,2215,257,2472,2824,1847,1008,1201,2802,429,1568,19,618,2477,1931,1268,46,33,279,1410,782,17,2229,2449,1352,2652,2764,576,283,1622,30,2584,2230,1727,692,2028,1615,355,2518,832,1999,1094,1402,34,2969,1163,2858,1157,1036,1482,372,2373,2525,392,2055,2114,1812,1871,2614,1503,561,348,2119,2511,1819,2226,1176,731,1633,698,673,817,2766,222,2726,1293,1691,2375,627,1058,1702,2462,506,1706,1357,195,2164,2476,2524,2660,2013,1522,2701,2976,1721,171,1941,15,1718,1651,1456,2542,2727,434,248,1395,1486,2492,2773,890,2750,1526,1119,1683,2159,815,8,1211,1300,1272,2438,1789,1373,145,1645,2581,1307,2235,1639,439,1965,1186,2089,2032,1611,2863,153,2135,2481,148,1180,1279,1847,2898,381,2066,2240,982,837,1609,2926,373,577,2155,70,1915,1517,2951,1571,783,1694,1186,2871,2982,778,546,2626,1998,764,1357,2318,2876,2220,1386,1317,1431,2656,861,1395,2527,1595,1808,860,161,1791,2979,2568,830,2108,830,1913,60,1953,110,685,2471,1281,367,1193,2287,572,2678,2326,1832,1681,458,2143,2304,2879,1937,1299,120,1361,264,2900,2161,1230,2792,2080,1936,2306,112,685,996,39,215,2855,526,2522,2686,1184,725,346,2295,1900,1223,1062,539,2132,2579,207,608,1556,659,811,2709,77,2269,2469,1145,1807,2560,1125,1335,728,113,1764,631,2581,2775,891,131,151,2021,2675,2345,2455,1904,683,1809,85,2039,948,54,748,1354,1149,1158,2266,2332,2380,1359,793,2179,2695,2104,241,700,2234,819,1264,2146,886,1071,1492,1806,2403,1948,549,362,775,2309,2133,1433,344,1461,729,2645,2679,1131,1082,377,761,2584,185,2977,503,368,591,2126,301,2389,383,617,705,1097,1525,764,379,2055,668,2691,484,919,2247,1629,616,1865,1093,1477,1692,2970,516,1886,69,2132,696,2312,2472,1232,2075,994,1059,2481,1895,2226,2048,473,668,863,669,2722,2155,1201,1471,1387,488,2409,2233,2279,1718,2730,233,241,158,882,1895,2525,2294,2026,671,1985,1377,2370,2038,272,2665,1469,2687,1976,2809,2323,2149,1160,2737,2388,727,993,1521,105,2390,2789,1113,2299,1037,1596,1819,1785,363,262,426,1202,1045,2818,573,908,2365,1877,580,2984,10,0,586,2339,927,866,90,1255,465,603,2707,2293,1993,151,2855,2354,2634,1544,126,2001,1548,1793,1734,1228,1743,241,924,2124,2857,1800,793,1212,2993,1896,1928,2670,603,2668,657,920,1419,2948,2459,2741,2944,496,2332,1781,475,2679,1842,2782,2324,2382,1681,2738,1084,2479,2919,159,2544,2645,884,2512,90,2146,1690,886,2074,1089,503,1667,2870,1195,295,1369,61,2733,2702,1596,520,1914,15,322,2845,216,1297,2326,867,1376,1645,421,1500,2879,2807,1946,705,196,807,754,2416,2046,1390,1593,789,878,2803,471,367,2309,2165,1068,2416,1175,1878,1409,1215,1136,1053,1050,300,1794,2279,547,1461,1078,2971,2533,257,2645,1224,89,1871,2208,996,1714,2051,680,1605,2415,2749,1883,334,1643,1032,2968,2504,2394,261,1749,1189,591,1283,1185,2317,827,2401,2129,1440,1313,1786,2885,182,1090,2645,900,1274,2855,45,2122,41,1618,71,932,172,921,2158,1510,510,2082,731,1676,1452,435,515,2472,1712,1716,1390,2954,15,2801,2734,2966,2220,2795,345,2453,1876,2035,2275,810,2317,1881,2083,2937,2364,900,1496,1666,1650,1039,2953,2361,121,1175,2142,2,357,1320,391,519,2561,226,2070,839,2525,2717,2170,2871,1467,2613,932,928,1579,100,1746,739,1691,1175,110,1366,568,432,252,1311,643,1666,2466,2960,2342,403,2460,419,1271,324,2184,2417,2887,102,766,950,2372,1834,1978,2910,372,1443,516,2086,847,2175,1047,405,1375,2204,1324,727,2454,452,2707,2854,1853,2605,2268,2518,2874,2408,1574,2909,479,1002,831,2599,1608,1033,562,2491,74,1719,2547,789,2733,2557,1085,2594,2118,1870,2387,1197,1257,2340,1288,1106,1629,2066,1061,1449,2622,824,2522,2429,1614,2219,1244,1853,585,2764,1165,1071,2702,2440,118,1903,95,2544,1208,2815,607,2895,2658,2118,2362,2673,2310,1659,445,1065,2321,1845,33,134,15,520,1109,357,111,2276,1446,4,2680,1461,327,1214,2515,1445,1350,590,1420,851,519,790,1277,1822,582,1380,549,907,2047,1279,2919,1003,2673,2059,2251,1074,1950,2137,814,213,649,1210,586,2446,418,99,541,591,2805,2644,2180,2163,750,505,2312,2177,129,2715,1215,141,2626,2565,549,1396,486,2518,2583,2708,2963,1136,1925,1344,702,1767,2268,2783,1273,1711,84,2758,2620,2931,2231,2213,813,1752,2051,657,2835,2402,2382,632,705,1062,905,2896,2602,790,2752,1969,1162,401,2617,1097,812,177,1094,1357,1027,635,2335,656,1935,1141,1468,2314,2575,990,149,1118,2923,415,419,456,2740,1757,1007,2815,2152,2332,2373,350,2163,177,1210,2808,1100,2044,2538,137,1526,1357,9,936,998,1943,850,2424,875,2065,1524,2661,1136,2570,1975,531,342,2167,1523,658,1999,2754,1383,2260,199,2946,1079,1032,1104,1,462,1851,841,2346,22,843,2320,1685,1458,1929,1542,1324,277,2110,1068,445,2972,2662,1306,663,568,2211,2822,2184,2759,772,439,870,916,553,1042,1472,2642,1129,2586,2299,672,2766,704,706,449,786,705,2173,2035,859,1683,1616,2021,591,352,1134,1629,1432,2008,2040,1254,1045,2783,2486,1741,2409,1197,1621,57,1474,2708,1785,429,918,2227,2645,2321,271,2158,400,910,2915,2757,2682,177,1758,823,1381,2561,2639,160,2103,1191,195,1704,2385,1985,1542,71,71,299,799,1638,2411,2501,2099,1622,1262,2980,1454,1987,2710,1806,2968,2898,2333,296,2677,2503,563,235,1402,2825,1935,1910,1943,721,821,644,1074,2961,409,1326,2477,113,2549,2394,1508,2653,2342,2119,286,1647,2001,2988,2732,2876,1411,647,732,1803,1817,2146,203,2043,2849,116,2542,2449,1382,716,2198,1373,1203,2125,1676,750,1227,2418,1718,1699,361,2144,1576,1178,140,1780,2528,243,1533,380,924,445,2993,2090,207,2647,375,738,1865,1413,1132,1538,2821,1611,1278,2381,618,86,313,879,2146,2189,2621,286,1451,2139,592,2766,2461,101,2780,889,33,750,2322,896,268,769,1566,1672,2930,832,2906,675,2283,697,1163,2534,341,2729,389,2303,12,1944,2127,1062,2865,1214,2458,2538,2340,2801,1371,2395,1251,284,578,260,2722,2405,1349,1951,521,1094,1290,379,606,710,245,1546,972,1403,2483,2058,60,1680,1565,914,391,103,2427,1336,1950,1123,2006,678,609,26,2141,2181,2493,2132,97,708,154,2541,433,553,1091,1566,1389,2645,898,2109,553,188,900,1570,112,2449,2218,2629,1247,1493,5,2496,2500,2609,1155,1715,830,579,1131,360,1352,1833,38,2677,43,682,2257,1775,1067,1472,818,1517,1832,1200,2360,129,418,1629,2718,1662,2748,2247,1166,2184,2969,1161,1505,580,1768,935,1841,1569,508,2876,351,205,558,726,1619,1053,1829,2872,1672,2067,2444,253,288,1441,1190,2012,1482,1278,2348,942,8,1422,1434,1186,1644,2977,1529,475,1243,2238,1346,587,1981,1022,972,2820,767,2582,283,1740,2913,617,2236,455,149,859,1158,522,1346,1450,2915,2071,294,2958,1333,1963,760,20,2248,47,1255,246,398,1969,1813,570,2517,142,1086,995,646,2122,2707,2283,685,907,2892,2707,2024,11,1676,2232,1968,1800,2927,2090,2620,1543,2470,2571,2202,2663,2532,103,325,1900,2821,1332,539,1002,2079,1182,1970,2792,2279,88,988,643,446,1866,2871,1818,2277,195,323,2674,696,673,2729,2902,998,2088,1330,2322,1054,522,900,759,209,461,902,2382,1197,2150,2660,2903,1990,2860,1209,461,938,2813,699,650,684,613,2745,1690,1861,849,621,448,2656,1625}

    384

    1723

    Returns: 119630862

  108. {1056,311,2976,2052,2332,806,743,1087,641,2306,748,1357,2809,2776,2679,1368,1304,995,963,1614,2661,451,2478,1894,87,1438,603,2447,436,1602,2113,2517,477,743,1092,1859,2162,1331,151,449,1288,558,2756,293,2734,2969,1008,322,1686,104,1400,641,1782,779,1961,1270,725,2844,1899,2103,1994,690,2281,2452,2926,2474,278,2918,2431,326,870,858,1835,1084,844,1114,2007,2506,516,247,2680,1834,1400,2432,2516,2486,2536,1521,879,1879,2737,884,1298,437,1711,2157,2442,1470,1073,1327,563,1966,688,2927,2056,2656,2997,2877,2158,2869,1819,1889,1784,613,1784,356,1169,1857,426,2752,2531,329,1384,815,2385,267,1346,2895,2660,2422,2050,689,206,1577,348,138,670,2229,2506,2177,385,1174,547,2625,2743,1861,2023,2908,415,292,1192,2860,2260,2278,2312,2162,202,846,483,1770,2707,2505,2894,965,431,2867,52,2155,902,2854,2997,2484,2095,2042,2064,2910,1100,940,267,21,2289,111,389,569,1103,310,2173,89,860,1163,2505,2353,1038,2347,1888,819,2075,1055,12,2245,2365,1956,1823,676,1461,2072,2487,1205,2377,2402,2572,2237,2137,166,2587,357,1491,2199,1946,2078,2722,1905,1222,1683,1906,2115,302,1042,2987,2372,87,2576,1982,1320,1491,2283,245,524,414,1153,1794,1919,604,2505,2673,2709,690,1994,2575,1926,1378,594,607,1927,1070,1723,1023,363,2162,2907,346,2232,102,931,1709,2496,1356,1435,386,1760,658,1275,730,1189,824,1189,1495,1473,1209,33,2167,164,2085,1245,2650,2152,1432,1418,2501,1262,1715,2678,2975,2672,138,2955,1212,580,2504,1269,696,2284,1004,956,1062,2260,276,1063,1246,688,2796,2174,866,2577,912,2321,1193,2679,486,1223,2838,2616,531,1310,2935,2733,1760,1060,316,1036,134,2457,1333,2449,641,912,2059,71,1460,2456,2322,926,1108,530,1217,812,1324,20,290,676,1983,937,2386,716,1059,1294,1619,471,286,1167,984,2499,1697,1837,2446,2345,507,1231,2068,1966,2676,170,2353,2179,1789,43,579,941,708,2099,2714,2785,821,1031,733,1646,1562,576,799,252,2582,16,936,270,627,2367,641,2178,1216,2953,2477,2392,905,293,1063,1689,2896,1806,212,537,1525,413,1114,1718,2319,1121,2915,1631,2261,2411,646,2441,1142,717,2733,2543,1639,2322,1139,2412,2299,443,112,178,2469,136,1286,1865,2365,1849,364,1521,2359,1806,2018,407,454,1005,2648,146,2387,2107,2992,1260,1340,989,29,2723,2182,2104,486,2871,1058,99,2511,1791,1491,1179,2445,1176,138,1324,1342,2158,2133,2037,2725,656,510,1852,1364,2336,2237,393,2344,1837,40,1824,2967,1172,1397,66,2612,567,454,1109,473,254,2224,2270,1586,2623,2126,1263,2058,1337,2521,2506,2237,842,2143,2187,2970,154,1224,1160,1198,513,958,707,208,1611,2912,1559,2119,407,1600,1265,887,2882,788,857,1845,1568,2556,2049,2492,212,1774,884,2375,2188,403,1111,936,579,672,2760,1340,1748,1216,2424,2017,1063,252,2343,1676,1931,2839,317,104,798,691,2957,1515,2611,48,1634,437,1094,372,1607,1596,36,450,1318,230,2500,2459,2531,94,2715,1400,2660,2793,141,378,561,472,92,1965,1605,2949,1411,1909,1290,1963,2066,2458,1403,599,12,1157,1909,2819,2431,2415,2637,2717,157,1665,924,1100,2620,119,253,243,1230,996,478,32,1020,1534,2312,736,135,2909,126,1273,1686,912,266,1856,278,1323,2483,581,1088,92,2955,1868,1284,1311,1037,2732,1385,252,978,2761,909,1741,509,2261,885,94,1140,2885,2829,123,1629,1533,947,2545,2631,1114,1621,1635,1769,1335,2823,2950,2478,2321,1463,2325,1434,361,319,179,2124,771,1493,2831,2008,1380,2658,726,661,2184,1026,468,2817,782,887,1815,2196,621,1557,927,1239,7,2941,1082,2434,2774,490,1537,930,1977,387,1677,2001,856,950,1665,2116,2365,1392,737,1834,394,1540,1421,609,93,836,2175,466,212,2126,1437,462,2102,1447,2940,2180,2685,2154,2087,1456,569,1404,2135,2684,2084,61,358,2771,1559,1725,997,1442,723,2612,1329,1544,1492,1926,911,2585,1441,568,470,685,936,777,36,255,1185,2147,2533,875,2123,1931,1025,1131,2043,994,1486,2806,2049,2596,1834,1146,1516,2889,2114,371,1813,2777,863,1775,2116,1549,2901,22,2953,2098,485,1787,2794,1462,1413,1811,1329,873,1325,1773,414,282,2545,1862,1097,2219,1432,1392,110,655,1385,1902,1512,2014,1291,955,147,2242,511,2391,425,2664,1022,2396,1843,1156,2710,532,953,1951,1170,1691,2025,2533,2723,1799,1651,632,731,1540,581,1538,2183,2461,1876,2393,2000,2387,1079,1252,1115,2150,2750,1954,1222,640,2992,1612,2129,2697,954,2482,569,1194,534,460,2575,2688,2938,1797,2380,580,390,2007,358,490,2810,2232,995,2002,2782,2135,1338,6,992,2694,1026,57,1596,1238,865,248,2277,680,1211,2387,550,2617,2404,2056,1013,1133,490,498,2189,870,2908,1660,1017,2265,2,451,192,2328,2373,414,275,2959,1897,304,312,2486,2329,1992,185,761,2049,2090,218,1362,2526,2052,1310,2334,80,2231,812,1784,1543,2311,551,1659,2317,855,601,1079,1561,2677,911,761,1366,1349,2015,1831,2880,654,508,190,2945,603,2683,2646,1462,2953,1799,2795,2550,1114,1433,1688,712,1916,2580,234,2420,1001,2609,557,2013,2099,1302,2361,1625,935,912,2070,2841,1549,2329,1039,531,251,2038,1267,2071,2317,1319,2014,2555,383,1865,821,1086,449,0,948,2847,1133,1704,2083,1504,726,1500,2070,527,2686,798,52,455,50,2081,2172,1538,455,1520,1285,1084,1859,2195,1077,2702,258,919,1593,818,1970,1342,619,2323,1294,59,1107,234,1624,1799,346,559,428,1784,347,913,2123,2915,2363,1263,2134,1161,2340,2423,2988,819,1020,6,1937,679,1575,656,879,2113,2995,674,2109,2126,1931,204,847,1401,2209,1107,2535,1607,2793,1414,1634,1148,2152,670,659,2203,2478,35,795,1897,2313,2559,2174,1306,753,2125,2785,2867,1032,2560,76,1981,920,2659,1244,606,2580,2012,457,2110,2391,2869,987,114,2178,1061,2489,2938,1848,833,2294,2734,1291,2835,2297,2090,1866,400,2224,1263,2055,88,2016,2788,2592,1696,1095,887,2285,649,1510,2022,2758,1491,2900,2792,2871,1437,221,1814,223,636,2348,2339,861,2333,1482,2837,1064,1350,2440,1739,2610,1177,1664,1359,953,559,399,247,1392,588,2937,682,1828,823,2555,1643,2064,1457,1346,584,1310,1840,1115,817,404,1241,1258,2882,607,2216,1575,1615,388,2848,1756,2330,846,829,2500,409,2591,2553,36,1920,2534,2774,133,1790,1594,979,1883,153,1268,1467,2896,79,1633,2936,1198,779,847,1060,1423,2924,986,430,194,1580,1301,1685,2848,1916,2549,2259,1000,2889,1545,1466,1354,1616,2629,1960,158,2784,138,1403,366,2822,2340,1194,2072,2747,2729,1864,1639,1076,307,1011,2250,845,749,877,995,949,770,1776,1591,513,1707,1390,277,2651,1060,2963,619,185,1804,1559,1185,1839,269,1351,2913,1436,2303,308,1745,2196,1939,1055,789,1540,1241,2881,1571,950,2412,728,657,2538,703,1422,410,2234,1050,1482,2292,1966,315,1850,37,590,2403,2004,105,2196,1733,245,1654,1349,863,81,1632,1044,1759,2887,2848,824,1201,2106,532,10,1206,1728,2405,2818,2343,2508,2828,1263,742,948,1924,2509,190,2212,1750,2080,1885,2797,2108,1314,1615,2781,2552,2869,801,56,856,1806,1777,1489,1162,715,844,1793,1559,1002,1768,1491,631,2980,1351,1790,2194,2123,1655,61,799,2718,220,1228,1778,318,966,1527,2617,1736,1988,1496,2245,2229,414,1052,2065,2546,590,991,1329,2438,2365,1994,2919,2389,2939,1723,324,2591,2938,2612,1743,376,1172,2454,2140,2140,1942,1218,2453,671,1799,52,2667,964,2617,960,2353,1242,2136,2533,1967,1617,979,707,698,936,1300,2273,252,2023,765,1287,2497,2583,521,2751,462,1913,1831,1904,724,2468,2796,1510,1296,2602,2320,2762,1843,2260,2248,999,754,2028,2897,1766,1621,561,371,2071,191,1756,433,1061,2572,722,1927,2567,319,1340,1714,1268,306,1329,2922,2652,1162,1948,1903,1804,1598,204,1001,183,1821,664,1764,708,2936,1825,1406,2952,1253,1374,2679,1062,1120,2275,1636,2420,2028,1067,1011,1232,2949,673,2912,2162,452,405,1085,840,386,2887,2662,434,2497,2497,1116,563,2687,2731,2966,2578,1615,2758,2857,2985,2650,2340,2938,2636,1976,391,1968,2524,1006,1238,2189,470,2249,218,2711,2313,968,1211,2401,1636,2181,768,2328,2805,915,2125,362,1885,807,2424,979,1375,1896,1284,90,1667,2062,1054,1271,1052,2999,988,1712,1895,811,578,2850,2732,1363,822,1577,964,1559,2501,1406,1539,2694,1980,1834,1034,1154,2663,23,104,2291,718,1454,812,1491,1745,2420,423,2884,1129,1348,84,758,1591,355,1947,2063,640,425,1622,1109,936,284,445,2196,1193,513,1774,510,951,1694,1853,1917,286,2790,2955,1271,1212,2076,1563,0,706,1667,1515,2354,2958,1004,126,1491,1990,1454,700,894,2176,633,865,1027,2921,1531,2040,2125,2238,649,2901,924,766,1911,2498,2891,2677,2293,1877,2529,2879,2237,2850,207,2591,2161,1491,2362,1781,2310,2291,2144,1805,880,1827,563,1691,2092,1587,1661,1309,2759,599,2161,2840,435,1668,1933,1590,226,832,1738,1644,2970,2397,2150,904,794,2614,365,915,2120,322,2410,1337,2427,1353,839,602,1556,414,2853,1211,379,1920,2431,1474,712,1820,321,2555,707,1147,2868,1824,503,2529,2125,2418,670,2230,297,835,2912,802,697,2005,1377,469,2465,1268,2842,1308,1921,2617,1319,88,1451,295,1932,376,237,937,2653,2066,932,1668,998,2285,384,2376,1170,1137,366,2020,2411,2878,1666,1217,2011,1215,899,2750,2734,2150,2270,1640,827,2739,1280,704,2442,2004,2178,25,1421,1803,2036,2115,1660,678,775,2823,425,1501,1052,823,1500,387,654,804,2961,2349,1850,1950,1545,1428,1720,2451,906,513,2936,7,1961,956,460,1493,412,1792,1958,1077,597,666,1188,925,1112,2314,2911,2218,342,1035,2861,1927,1419,862,1155,1570,2960,1826,2090,2585,1419,305,382,1549,2009,167,879,644,1611,516,1820,2334,2215,1444,2460,250,897,2567,2475,1637,1934,1634,2873,268,2770,368,1298,2766,733,713,357,1592,2404,1540,2866,1090,2334,2733,2608,420,974,1526,484,1725,1882,2934,555,2031,2336,2555,2562,323,2774,2973,1386,310,1461,2514,2118,575,119,1822,1630,2977,1996,2426,2331,869,2665,2242,1852,837,2386,1655,2074,2853,53,2619,1948,192,2073,1150,2467,1069,142,995,1882,601,1655,2143,2497,1260,1611,1878,926,2233,2840,2708,438,687,809,183,1434,601,1114,11,1615,1282,2003,248,2296,1219,981,1645,975,2182,992,2029,1912,839,1771,1016,2450,1257,1405,1420,1836,470,912,92,186,2187,1172,1489,975,249,2221,2429,330,703,871,2622,2917,2448,2207,1579,485,568,1281,193,236,2683,2893,2494,2556,334,194,977,2937,1592,534,884,848,2006,1558,2615,791,2711,1572,643,2064,1267,860,1782,1143,1293,1913,1384,142,2377,2638,1232,2963,2885,2588,1041,1973,1233,537,1452,2610,639,1433,1212,1834,1976,2674,2700,2074,1199,600,2458,63,2592,1148,1877,2274,2518,2628,1262,1780,1929,835,2462,614,1283,2090,2174,1761,828,1896,873,1456,2403,999,1266,323,1639,878,736,475,2315,2530,828,165,223,874,2438,2868,456,2336,1865,887,915,2982,1108,1068,2810,385,2065,2570,1895,164,2291,2869,728,2400,1208,419,1960,746,567,119,246,595,2841,2930,2312,225,1214,2049,943,1394,190,864,1353,2419,566,2865,2526,1273,1438,2912,417,1561,1433,2288,601,1049,2087,159,2490,2887,1601,376,121,1987,2256,2364,1596,1295,33,2611,883,1228,692,2025,2356,2504,1272,347,1672,2527,86,1517,598,2562,304,237,2775,2401,475,1374,204,1956,2850,2007,2547,1803,755,1690,12,2589,1107,540,288,1576,2286,2110,884,2735,652,2591,974,1016,2801,1383,1060,181,2422,2964,2371,2051,366,564,790,1807,694,1971,1388,923,1689,946,1931,1029,429,2894,2722,2387,1385,1327,1373,532,461,136,1503,648,2932,1331,1593,2440,90,1338,2208,1058,1993,2624,301,2799,1487,1984,2445,753,1151,834,40,2509,381,325,2206,1715,1254,344,96,259,2304,960,1135,1191,619,419,1511,825,2557,512,1888,2635,350,1876,430,2569,1586,620,1960,2525,1549,187,2748,69,159,2521,1672,1608,431,884,1305,138,1079,2589,2868,2643,161,2233,270,850,934,2527,2436,1046,22,983,802,1745,328,1134,1750,791,56,1604,1025,2353,2489,2315,1897,2630,2279,2476,207,116,2775,2117,2033,1901,7,705,2858,2486,601,244,889,1831,2202,405,1133,2036,442,432,1120,28,1089,1420,1994,1986,1130,876,392,2121,2301,1966,1026,117,896,1582,161,2048,2402,1642,2944,2905,881,209,1966,1417,2933,1040,1221,1737,806,2286,2833,182,2094,1576,1329,644,2029,2538,2052,454,938,1718,1262,427,726,693,29,2618,1558,1250,1099,1730,2227,2677,1109,2238,1389,2687,2086,2091,2263,635,1460,2210,2947,1852,778,2406,1513,975,2411,679,1113,2192,663,1834,2822,793,2272,2259,1334,2958,2697,2744,749,727,2786,1315,2462,68,1669,681,2989,1213,731,1271,1135,2309,1389,2041,1114,964,287,1277,303,560,1502,339,2597,41,2525,2680,556,1356,2532,2143,2245,1621,2723,1870,72,1372,2480,2744,918,2902,1203,1859,1920,964,2836,1213,1926,2613,564,557,1602,94,172,229,343,2928,2023,1042,1275,1496,417,516,2163,1747,1904,2675,2338,2463,666,1183,1297,1170,2868,41,2071,618,2401,892,93,2701,1762,2561,2772,2365,2442,1321,1981,2009,138,2308,1814,1722,895,1532,2329,679,868,1904,2177,847,2538,1775,1642,1181,2903,217,2080,2944,275,641,1004,2101,1422,1148,958,2862,1886,625,1129,2421,1991,2248,1339,2232,1698,490,2699,1469,350,2565,131,514,2547,1337,1553,572,1806,1909,1096,1976,1776,1711,740,1491,1674,1415,68,701,2778,669,1931,1444,1224,1589,2593,2093,2098,1915,2906,1771,359,2622,137,1186,2335,2704,1875,1149,1289,2779,2070,1274,2166,106,2037,2679,2622,1003,2362,611,637,252,270,2435,199,2099,953,635,65,816,1340,1754,2938,1263,1385,1284,2990,1194,2295,2211,1966,1786,1104,1955,458,1528,2938,1519,1196,2221,2901,2170,914,1337,53,803,623,2908,1365,2590,2200,1024,1513,2691,2306,861,2629,1414,2312,887,403,753,2378,2196,2730,178,2827,1890,580,1549,955,622,2519,1273,109,1903,22,2467,591,2271,1793,907,2770,854,1974,1829,206,451,213,1613,2341,665,46,2889,2002,2800,1354,1796,2683,810,896,274,155,2247,668,70,1403,1420,1640,147,2200,1042,2070,2593,606,2002,819,2488,2875,1478,1514,1851,1112,2415,2997,1212,114,2374,57,2470,1152,2572,1348,1861,2152,521,1349,278,791,1619,425,136,2758,1830,2974,30,1912,1104,2618,225,571,396,1264,2765,1965,1869,503,823,741,1638,1566,2897,1382,1733,1513,1425,2692,1706,358,704,712,666,1727,2732,1529,335,199,1281,2193,704,497,2257,1997,2492,2925,2974,1210,487,732,1180,1774,1124,2643,1088,1799,2655,1564,2227,1901,2053,2942,588,758,1718,2068,1760,156,474,677,2200,98,877,2364,2334,1228,2625,1724,2076,2591,2738,1922,1583,1348,2533,703,1331,1403,212,4,2014,1507,2681,2032,369,2213,1749,367,580,1273,2644,859,38,341,593,2993,1241,1279,1340,1531,2508,2685,1742,2019,2387,306,1903,1306,1971,1966,1203,1385,1839,2032,2034,2189,2693,1901,492,2298,543,2972,143,695,960,533,1092,1644,414,1865,798,2987,388,2229,2506,2495,2436,2537,2943,2474,2085,289,1798,2736,1973,1733,2651,2199,1271,569,463,22,1668,1871,2936,225,2430,59,698,260,1891,510,97,2778,2831,1548,1975,1342,1865,1820,1121,1985,2150,1141,168,812,104,917,777,2607,1241,309,1701,525,174,1454,548,2787,2339,1049,1027,1962,2273,1546,2852,992,1591,2805,1435,1370,2489,421,485,640,2533,1374,205,2975,2629,917,1552,2982,2769,2944,2726,2205,2664,2661,1446,1150,1076,1048,2749,586,509,96,2770,2110,485,1123,1995,2889,2118,810,1289,1545}

    {2633,833,2701,173,1652,1472,2931,1927,203,2263,1886,1676,1670,1099,1834,24,138,1360,2755,24,1442,2005,1879,1110,1528,1458,592,2275,2440,2796,2045,1375,2885,1063,119,1032,758,798,114,149,1790,2185,213,1521,2635,2826,1684,1313,1554,2178,571,30,606,1847,2890,1580,629,2167,114,2952,1807,398,1753,92,1883,32,2244,197,2887,2234,1679,2139,2654,1900,1215,39,1779,1793,523,2695,1015,427,1235,2196,617,753,243,2884,942,830,595,2712,802,2139,243,1656,252,163,888,2773,2522,2986,2077,490,1541,2489,48,1526,2682,2741,2386,1585,2407,2123,1218,2505,872,2254,1824,839,2820,1316,2119,471,1228,2802,348,703,1922,695,2871,1385,2313,1716,1909,703,737,2016,150,634,48,563,2832,1079,237,2567,1973,1100,1632,1693,2734,2554,2587,214,2956,1143,1491,1465,1901,51,1071,229,2130,561,1160,2774,2253,2171,767,247,2583,806,1309,2054,120,70,2605,2741,2102,2661,240,1242,923,636,844,602,2673,1953,1229,927,1609,1537,2908,2796,821,1077,2340,1844,2867,726,995,1032,1560,633,2428,964,1996,5,521,1122,1491,637,1300,1951,1635,933,675,699,1744,2895,2979,971,67,952,2017,1670,1338,1733,2300,1917,331,2537,179,1235,1605,89,2414,1207,1740,1516,1204,1659,2215,2364,1757,1103,1318,2530,1911,999,2060,347,330,2654,259,1508,2915,79,2585,1753,1636,2644,649,2186,1382,1927,1689,1715,2290,1431,451,2767,1280,268,508,1882,2029,548,263,2795,473,383,1969,75,1167,2458,1183,1693,1541,965,1733,1171,2202,500,1803,1757,1310,401,2727,1710,81,2944,946,953,2859,1652,2704,2961,665,2223,1329,1240,986,2741,3,1642,1669,874,903,2863,1527,380,2412,2821,468,721,1438,982,1528,2648,653,2563,821,730,1133,1021,2556,1030,521,1476,585,426,2806,2739,2039,1063,1547,1752,20,2573,160,1233,2813,754,1057,916,1481,2710,2072,1477,1988,1481,2084,1996,2586,2657,2184,2304,2889,1184,2441,900,2054,289,559,2144,1452,1376,2639,2364,2412,819,2604,1844,1502,1306,287,42,2984,513,1971,418,2578,1818,973,109,69,857,1249,1117,573,788,1114,423,1463,1678,488,2090,583,1319,34,144,1741,427,852,1014,2381,751,1133,625,615,2685,1878,2712,19,504,874,1222,2088,2998,2313,2124,2437,1994,1940,517,1214,2954,1488,2696,18,1544,1149,2258,2891,2127,2497,726,618,172,1347,2893,1609,2755,375,322,1278,87,1918,826,2689,1055,1958,1408,1343,849,1908,813,2403,2320,1955,636,2292,2508,683,1303,2444,2251,1307,2394,152,1120,1900,322,2586,1410,2916,371,2382,893,2830,1676,1658,545,1961,495,2232,553,1316,726,2164,2333,1944,1994,1060,2262,219,882,1577,1688,207,351,1247,365,2439,2671,126,2089,2617,237,904,2027,1852,680,265,1784,1693,1351,591,2202,167,1256,1550,684,2481,1181,2503,1220,1641,485,237,288,449,289,992,2128,1091,2189,607,2897,2795,1834,412,1376,1650,467,2430,280,1742,2585,787,1388,749,83,675,499,1734,106,2634,1614,1337,62,2513,2428,2337,273,2112,1255,1481,1978,1202,2946,927,2269,1443,2884,2770,932,824,1471,651,283,664,306,162,2733,572,2202,1139,2491,763,606,2013,330,466,2159,2105,2556,1098,1267,751,2533,55,2250,1821,1416,1615,1982,1950,387,1198,2006,1007,2469,1671,1467,1778,620,424,2704,2462,2237,1218,767,421,2153,2872,2227,2766,1811,1850,1855,1215,2481,1011,2169,2237,2748,1694,2279,2197,2722,1647,561,2379,2161,2417,1517,2445,2789,2343,901,2382,570,2318,861,2490,1608,415,1123,655,761,844,492,1300,2184,2629,956,2893,1388,937,562,1873,1940,505,2035,256,2805,1630,2751,1916,1434,1814,1172,1052,1485,2183,2580,967,1381,830,1299,1195,2260,1198,2387,2472,2497,453,2362,558,1715,1680,2792,2431,820,101,2146,1610,1611,1345,1218,234,263,349,1000,1766,2404,2130,803,671,2816,601,1710,2318,66,2343,1793,2728,813,911,738,1747,2326,964,1409,2778,1807,1881,2351,300,139,1460,797,829,373,2970,16,109,1738,2935,360,200,1856,2679,1907,2297,2488,2683,213,1788,1961,2252,549,139,1584,784,1160,429,729,2929,176,537,2700,897,2829,2608,1001,1013,184,2198,1776,1119,703,2689,1860,1231,1458,2243,1400,2598,2684,2064,711,936,1191,2740,322,231,70,415,201,2505,1190,2724,1751,1006,262,1106,1973,2753,673,90,859,1600,1412,81,2217,422,2279,2026,2573,1033,67,77,461,2035,1950,828,1094,901,1557,2754,332,264,1854,828,2728,1065,1058,1592,2084,1402,73,1538,1744,2721,1107,440,2172,1448,548,983,599,2358,635,2222,1400,1260,2262,1290,1538,109,1110,1710,1799,1400,2010,1303,1809,824,352,2418,1051,1926,1795,2685,32,2941,887,81,2030,1203,1983,2373,2485,2889,294,2408,215,267,1057,932,627,2704,2951,536,1080,671,1160,2650,1006,920,87,1340,1203,1460,2567,2584,1445,2531,1391,2384,427,376,492,1139,544,2227,1783,1148,1676,1651,1550,2845,85,494,2178,1430,481,529,468,1359,30,2855,1458,649,1333,1423,970,521,2466,690,1611,1948,2540,2563,597,257,191,1608,416,185,2585,1545,1259,1497,81,453,1846,227,1697,285,2148,2769,253,2849,1630,2723,2583,686,1211,2353,757,733,2189,1494,1699,2615,2876,1786,1164,1890,2774,2834,2587,1549,2881,1607,2146,811,2298,2022,252,2319,1816,2466,1144,2608,992,812,2642,972,1888,2504,429,1170,2189,1447,993,1227,2808,687,1440,1273,415,247,340,1430,1518,1657,267,2122,2121,1522,537,1152,1945,1555,2145,1971,2350,718,588,1970,915,2931,136,1241,2293,484,322,2734,535,1268,1592,2250,1592,1008,345,1438,1661,1799,270,847,2786,824,456,2267,2101,1425,1308,760,2950,2606,1648,2891,1693,1396,2856,412,1718,546,2978,82,2002,867,1491,1770,1276,1931,83,2763,2361,1147,1278,589,2703,2589,1483,1627,2,2623,813,1030,1731,765,1636,241,175,2528,980,1456,976,2320,570,2713,1132,2424,2079,1073,2847,1190,2130,2287,177,796,479,480,1764,1290,322,448,2369,589,444,2178,1212,1936,3,605,2421,330,2486,1200,442,1526,978,2661,425,171,2932,638,1047,1212,1998,838,2464,1028,2774,239,2994,2510,2131,2245,2471,289,1312,1773,1281,581,433,1032,2780,497,2274,1840,1863,364,794,2645,2887,2348,1019,2585,453,2433,661,1839,1970,2587,1717,2662,2200,421,1705,2576,1471,2328,2265,1136,2337,2337,1628,1930,2955,16,908,2178,2292,417,749,1520,653,1271,439,2702,2664,1444,2327,61,356,2791,1304,815,1083,752,643,101,2944,1719,1330,1369,2786,733,2076,1955,1903,759,674,1063,795,628,756,891,1063,2098,284,819,2816,1402,397,858,785,2685,1232,2164,999,1908,2545,1166,131,1785,145,1306,1265,178,2184,2450,1316,1979,1449,619,1332,580,1590,1204,1799,1999,1598,53,491,1491,1012,115,2585,2942,2228,2668,1455,951,195,1042,97,2226,2847,2200,877,2702,1131,201,169,2317,2571,1248,898,633,766,2625,2525,1772,2313,2121,1937,1760,2986,584,2674,1993,2013,706,2949,2232,836,741,2321,2389,339,2405,1072,6,1517,2896,2136,896,1832,1498,131,2982,1964,656,1042,2980,269,1109,2760,2475,38,2238,1549,242,2270,1399,2141,271,2499,2387,1703,2086,2116,2936,1516,1316,1934,2751,168,1708,90,1888,10,1595,1185,873,2806,1872,240,349,2846,1726,128,2623,1188,2387,224,384,1101,718,1330,2920,2825,1585,2312,84,2162,1739,2676,44,1419,93,2054,1721,10,1520,1925,1905,2383,526,315,1741,2883,336,411,563,642,1424,1660,1805,2490,1874,555,394,2812,841,1760,1729,1598,2740,750,602,1522,2043,1202,681,11,1833,2854,2887,20,1997,1484,1592,620,1056,2664,2325,427,2280,89,1549,2965,1012,2276,752,1565,1389,2746,2899,90,669,1081,980,2364,2335,2954,1148,1536,1012,712,935,119,1910,54,2581,2240,1359,1872,413,263,2685,1512,2807,2317,2409,2096,800,2822,809,2803,1128,1626,520,840,2745,1349,2603,1697,524,0,2696,2189,2443,2370,2340,2238,32,2067,1741,506,986,2274,2345,2627,2620,180,2179,2799,1165,2447,2567,577,991,2123,2235,1194,2955,2391,2079,1379,1444,2790,1245,2531,884,2922,156,1152,1317,622,2854,722,2230,2868,660,2716,1692,12,2814,702,2346,175,2387,745,508,2970,191,189,1642,1548,1800,1022,2255,328,525,1107,502,58,211,170,1747,1398,354,1985,1892,714,1606,2071,1237,1068,999,2870,1575,96,1294,1936,1020,1239,2447,2225,106,496,2968,640,1985,2876,2227,2949,2966,137,2316,2980,475,2777,27,537,2847,2047,428,2445,2862,116,1553,1063,2245,1459,2600,2156,726,13,1965,2135,1078,2764,2794,2473,2324,921,1188,944,272,1067,2889,1189,645,2315,568,2632,807,1537,2966,1150,1812,1893,1364,1035,238,1693,2069,2420,1158,2479,567,1516,2864,1729,1968,1793,2239,515,962,2622,1336,319,1935,2555,1760,2524,2443,2549,533,2981,830,1326,539,108,516,905,287,1109,2201,2214,252,2793,1338,2688,719,1923,2969,772,959,2706,95,1745,1914,64,936,1673,2071,1879,2241,1052,734,1926,2202,2174,1767,2997,2615,2143,2611,1723,2413,16,679,596,2544,2955,1393,2374,1453,1275,929,2279,823,1834,552,2812,1310,936,202,1235,1310,2189,1011,2002,1907,1505,9,508,1114,661,359,2507,1592,1564,519,671,1024,1273,993,1261,2509,2210,2830,1941,2567,985,2225,380,291,1104,1344,2781,374,1034,2602,2072,2419,1353,490,1199,1197,743,676,2980,2690,1379,1514,1809,1753,1060,450,143,2595,293,2138,2786,1173,851,1832,1551,2783,2962,2319,2133,2923,2873,2138,2119,1343,177,104,15,1898,2566,146,874,348,450,2611,113,2478,1499,1320,1,525,762,334,505,1184,1557,2425,1496,2090,813,1590,2933,2278,576,711,1475,1870,2782,1545,2130,2149,1931,90,748,1127,704,2574,1367,278,2886,2799,2564,269,125,5,2366,1060,905,2649,608,860,1374,1011,1044,1532,1927,2671,69,1865,709,2604,657,885,2991,1799,1524,2492,2379,252,1455,2216,1622,1075,733,119,2024,669,968,314,1063,2951,2390,800,769,1264,1861,1853,2395,2492,1189,970,2678,2448,1642,2230,1866,1758,1358,2236,2264,457,2343,1569,2295,981,2230,2382,1681,1867,333,1218,2556,1510,1344,2856,780,148,2885,2424,386,720,574,2397,2525,986,886,1598,2918,1290,766,616,1255,2892,1710,1173,2462,1641,874,174,2971,1998,2523,1823,1763,103,122,896,1653,1332,650,1616,1959,2342,1074,1525,537,534,32,769,553,1872,744,4,251,1129,2307,1662,91,1694,2820,1104,32,1289,1968,311,1381,2923,791,1328,554,1680,1535,2444,2982,2788,1858,1479,2142,39,1101,207,2274,1427,179,2587,2986,2891,2076,1797,2888,2859,1765,2979,1474,1063,955,628,1462,612,2593,1323,279,622,1558,506,1836,1791,522,2197,1700,73,339,1557,109,1922,1620,2475,313,1429,1325,2567,2412,1063,2036,1321,1371,114,2237,805,1464,288,1596,735,2768,1093,327,648,2233,377,331,370,2073,820,2359,1523,2767,92,1091,1774,2944,455,1235,2793,1340,1795,352,2555,1750,124,1645,1084,2357,632,1067,2290,948,2516,2130,2811,1532,1535,1629,1723,993,1725,2753,647,2715,198,1058,2466,1870,447,2340,2297,2233,1042,2515,2057,749,589,1395,1234,431,1478,1007,1315,2015,1274,1082,1387,1289,2111,869,774,573,402,2915,538,1498,1469,2541,2300,1733,2352,1315,82,313,2607,2720,1296,1897,2768,595,1236,1506,1302,1831,1938,1804,1384,37,420,2498,1834,1793,1319,2641,1943,1187,840,885,187,1755,2757,1972,408,736,623,1599,198,1896,1645,1578,2758,2461,2685,233,1757,2220,2263,2798,975,501,2587,2722,379,2360,936,2502,666,231,2884,1353,285,8,949,2952,2832,1351,1840,1848,2068,1137,562,1749,1009,1532,2626,26,1046,2191,493,1510,841,2955,2436,2168,610,1096,568,2656,2310,1622,710,1104,1000,1750,1369,2619,1739,695,1079,2621,464,1603,475,130,1553,1191,2776,17,1355,73,915,1184,1597,508,406,2162,1223,1359,1212,370,2671,587,910,353,2794,831,2670,1637,821,1642,619,2415,2601,667,1118,506,311,395,338,2688,1364,2266,1241,325,1297,2788,725,2302,490,853,1884,1178,974,1099,18,246,2638,228,2804,97,128,116,995,1705,1223,569,2054,489,2707,1814,1477,2230,873,792,1277,911,1469,631,216,1125,739,622,2720,1332,2996,2164,2555,944,998,613,1278,2077,1212,1871,2450,2841,2742,1957,185,2551,1735,2701,414,2322,2705,1359,2493,2898,807,1062,1656,1520,457,1575,1568,2778,1068,2965,2404,2347,2017,2824,1542,2568,170,858,1338,2864,957,419,1275,540,2896,2232,907,2655,2760,2613,1414,2887,2090,1729,2788,2004,2669,621,2070,232,1470,952,2152,1319,2679,1032,2649,2890,2733,2700,2068,116,2461,1842,1749,1206,2538,1622,1340,298,1761,1703,2474,2554,2455,601,296,1552,1692,723,16,2153,1107,1027,1682,1663,1573,230,1588,1301,318,2475,2555,1850,1663,1378,366,2312,1302,1419,1108,2933,220,176,1864,2050,1058,1454,1077,767,2169,662,1769,44,764,2579,2237,428,747,1408,2135,1841,2952,1450,2646,898,2317,2594,446,1162,1419,1992,2345,2082,1159,1292,2150,1223,1581,112,1528,375,1638,1462,847,1567,1875,1342,2412,2046,44,44,2215,21,1284,100,1882,266,1618,1067,2923,901,2174,2305,1653,2666,1961,1168,49,1901,1251,1224,406,2107,2151,750,257,1010,2516,1406,2328,110,1966,880,1505,2141,2528,2097,2558,2652,403,459,1045,2275,992,2153,33,1732,371,938,1592,952,1480,1649,2100,2698,2189,126,482,2999,1523,1926,2845,1462,2539,2584,1315,222,552,2904,1452,2542,1167,39,2416,1226,196,1592,1834,1919,50,615,1817,1008,2275,1453,931,309,1114,2347,834,23,849,1973,2326,1066,2246,2929,258,704,60,1948,1092,1964,2748,2368,476,1145,2320,2914,1671,1160,1931,823,1498,2662,2509,1102,959,1238,2646,2052,704,2086,2222,806,428,781,1043,16,808,192,776,1011,431,2551,1952,611,742,582,2078,1147,2313,2835,868,2070,2185,2171,1322,134,1042,230,2312,2548,2851,2640,615,1275,1748,2953,1611,1911,1236,936,750,2160,1341,1061,2948,690,188,1361,2321,1746,2021,1533,263,2509,551,1422,2264,218,541,1880,718,1668,563,2804,2631,1319,2403,2796,1440,2156,47,2520,2264,435,573,960,1848,1138,415,2556,378,939,539,2545,695,2263,1290,1900,1651,2590,1439,1666,2541,210,2399,1538,1011,2417,927,243,1736,2099,139,2037,1023,489,812,999,815,673,2227,92,565,2379,2843,554,2776,839,31,1284,1497,1175,2605,1243,1426,2364,1939,2753,1574,2282,1771,103,285,2874,117,2297,126,1058,1428,299,2672,1635,1925,1407,2388,1352,2576,783,922,495,1098,738,1016,1675,1225,473,843,1658,829,129,2061,1018,1182,731,281,2746,1150,2979,2327,2424,2077,2787,319,1169,2589,78,2135,339,1597,131,630,2334,2599,993,2174,1151,1655,923,2074,303,1713,1810,568,728,1805,1549,2744,668,1201,1105,2753,2451,2220,2417,1887,2932,2898,1989,709,2763,1892,2,2362,2575,1801,773,1928,1267,118,1802,2190,1124,870,1126,2576,1808,2679,1094,2483,1053,1438,1838,54,293,2268,2261,1468,1908,814,990,2324,1623,460,1949,2436,2329,1598,1691,1857,2418,1420,2847,2687,518,2762,2204,2943,2098,2032,1263,2988,195,1212,671,2174,2746,2630,1340,1980,1340,2643,178,441,961,2213,2044,1993,2093,1407,624,2104,1687,491,607,364,2071,2983,2426,2029,2097,588,2647,2171,1804,2474,127,890,337,2403,182,1359,2185,1848,628,2578,686,2428,2271,338,2896,2475,2988,2815,2770,372,132,928,1481,997,1110,2355,2966,212,1992,2456,789,1061,1004,2868,259,1695,537,969,2393,2847,1509,1173,320,1462,1702,2132,624,2774,528,2261,107,2872,2315,2933,2567,2719,261,2262,252,1682,945,1997,1951,1676,504,465,542,2592,630,632,626,2685,1530,1490,1309,1079,2007,2936,1965,2126,2004,960,643,357,1701,45,1500,1738,140,2500,1840,1574,74,235,807,2512,14,1774,736,2398,2165,2446,2932,786}

    99

    2648

    Returns: 544046908

  109. {107,42,1290,700,2052,1245,2233,1587,2291,2664,204,857,2950,2694,1570,2117,1714,242,579,510,2472,1283,1633,2226,2885,2108,2540,1436,1764,2901,2033,1974,2283,1121,2975,917,1377,518,1205,812,900,1277,1012,429,2364,2314,2344,512,771,1612,2745,1491,1073,2661,1426,194,913,889,315,2817,1792,2383,982,2632,529,437,2880,14,452,132,1057,1782,829,688,1048,1682,2951,516,1379,440,1658,2618,363,1904,369,2309,1780,133,496,2461,997,246,161,1679,2533,992,1831,2367,1713,1997,2963,626,2198,2326,1015,1402,857,394,1931,1322,634,2340,2061,2758,2624,1451,2608,205,2534,979,2364,2799,1936,122,2390,2962,562,1611,318,1795,350,119,1003,1922,906,213,2019,1203,1145,2920,2543,1295,268,389,2718,2266,1918,2034,2685,212,2121,336,2546,2867,1658,1065,2435,953,210,179,2476,1525,965,1210,969,1717,468,538,1653,2852,1869,827,2381,2225,1904,2455,1688,1295,646,553,2111,36,1544,983,476,1625,618,1561,1805,1514,1667,206,1049,1285,1726,1258,438,2883,2446,1424,478,2419,711,886,723,1990,1404,674,877,245,1939,2481,198,2466,156,1696,1454,646,2257,226,695,2684,2430,2306,1447,1247,2853,1654,159,1692,1716,1749,393,564,142,87,2408,322,1079,2146,815,1482,1627,578,2576,491,1605,2195,536,125,1528,76,721,713,1944,1690,1140,935,2183,1385,1086,2339,481,1963,594,1038,1823,1492,171,987,1527,107,523,2093,691,1331,2430,2868,2904,1174,2491,1957,1658,1514,1276,2020,2415,2516,327,1103,1338,760,818,282,2403,561,1785,7,995,65,887,207,895,1916,1427,285,655,1779,2364,804,2279,2225,645,1417,59,2878,1905,535,1303,808,2381,1414,1820,1385,2944,2237,1610,1401,67,1420,1531,2819,1537,815,383,2817,1113,1071,2229,2631,1626,1693,1445,882,2897,1971,1324,511,166,1975,2404,2340,564,2895,759,1342,187,2088,2779,852,1026,2141,998,1904,762,2099,2143,2380,1376,1844,2505,1510,2417,2667,1093,1462,1772,1400,1150,135,223,1730,564,817,1586,1770,2941,2954,2110,1357,946,388,1419,2357,918,2885,1614,2805,79,389,1723,2603,2904,1392,1481,1763,417,1454,2908,1718,1506,2788,163,1691,2974,2403,2165,2452,2034,1458,1082,2049,1974,127,22,445,1105,2598,2088,2748,2498,1181,2468,2280,1167,2486,2709,2613,2626,1230,1027,2155,2964,1735,1331,1092,1805,2569,45,1579,1418,1742,2551,93,1586,581,2313,339,2904,2546,333,1994,2582,2656,129,1661,1397,1229,1295,1513,2688,1147,1603,884,564,2049,1397,1792,662,2825,1063,371,2133,1647,2401,591,2611,1361,1009,825,2999,2396,1068,1134,889,2766,2206,635,1167,2210,991,1228,485,1406,709,205,436,1983,1245,1010,582,483,2662,2829,651,37,1813,1208,2666,1762,708,1725,2195,1504,2998,2288,138,1103,129,176,2976,1593,837,2849,1201,386,2158,897,2770,2718,991,1543,632,1746,2492,792,1316,598,2974,1643,355,1782,2115,1077,2640,1220,2557,39,2004,91,1240,2397,1595,2536,1885,1160,22,1909,2090,2784,340,909,682,1410,2821,2490,510,1781,1861,1212,1890,2211,2657,592,577,923,613,2732,1758,1246,658,2038,1901,2173,1889,2363,909,1960,2285,2676,2953,288,2187,1398,1118,2208,1709,2829,1967,2009,2562,1168,864,2652,858,1012,1246,1249,2817,2910,2831,1483,227,531,196,2215,2967,2445,1538,75,1315,1608,1693,1342,2144,1957,1344,842,1559,278,2577,361,23,1490,2551,311,145,2117,1050,1725,148,1317,2891,47,945,1806,2438,354,979,1552,2129,1643,2001,2631,519,2371,1605,2244,486,2534,1619,325,237,1626,901,1305,1730,2015,1342,1377,2961,1484,1846,140,2860,1553,237,2972,2062,993,2807,391,1918,996,2443,283,2583,2611,1174,2213,404,2128,1535,2836,1811,1375,992,1700,2479,2480,1377,1760,652,2270,1760,733,2745,1643,925,1740,373,252,1462,940,2815,730,302,1958,2156,914,1927,1751,1063,2195,2777,444,1003,1043,2119,1335,2847,2831,2910,905,2213,867,2756,183,790,1691,2611,475,413,1249,2649,1017,2379,2970,886,1401,40,2088,452,536,1332,964,402,2040,1238,929,2382,1751,832,2024,717,2488,2204,2443,1178,1980,1693,1381,1875,2124,2355,594,2494,510,1769,338,2423,1146,2171,382,2261,1328,601,1861,498,1505,2265,953,47,2890,1274,1413,2927,2935,220,1679,2308,2337,556,464,1845,382,2923,2400,1362,413,309,419,2509,1850,2804,1267,2866,945,476,1735,1057,533,2126,966,1719,83,2067,1281,2836,2082,1094,2573,1058,2238,1912,2785,1294,2966,1294,828,1374,861,908,888,1083,1231,143,457,76,73,2538,211,2291,2836,75,2080,2129,75,1672,2102,2559,780,2995,413,1375,1264,772,805,2445,2783,79,1662,1650,2319,183,1329,1660,1387,2872,1669,2692,235,1532,259,2123,927,2016,883,1205,192,1497,2847,2012,2003,2064,1205,1418,2365,1154,1415,1169,1210,2342,216,1811,939,2880,2054,349,33,1316,2341,1318,167,2776,1390,1205,154,2691,684,2926,1345,2314,1185,2720,595,236,1380,938,1576,682,2572,2146,2315,2014,373,654,2257,2851,578,2818,2889,2753,787,140,1657,2715,1438,1883,86,1620,1910,1542,1753,679,2309,574,1962,1147,1448,775,2248,403,1585,2421,2213,1361,2789,1627,2739,1744,818,947,1707,2341,1930,1672,2798,1806,1658,2289,778,1584,682,1064,2533,927,2140,647,1171,1377,296,614,1973,1459,1893,2411,2788,888,576,1558,990,1029,2017,2811,404,2473,2805,2629,2312,479,413,2994,2991,1063,2401,1236,419,1438,225,2044,118,1634,1816,2627,3,40,2905,457,1847,1471,2844,1761,97,1371,708,2303,74,1068,2166,1130,1757,514,2410,2623,291,983,1524,793,540,1794,525,2433,2440,222,2264,157,437,2161,2424,2680,890,2437,2590,1109,2901,1640,2089,2613,710,1170,2591,1434,1928,591,2158,2164,2475,761,2203,1415,2153,187,960,1616,1591,178,433,2962,1971,313,2894,504,2170,1468,1008,1639,917,2136,947,2318,2910,2598,2295,1685,1503,2929,123,1548,1243,2602,537,218,2355,1613,2203,274,2473,1346,109,751,1648,2378,2472,2798,717,2707,2516,2836,1124,796,1044,1577,2379,2442,1085,617,1798,726,1878,1800,650,1582,39,1266,2273,1042,2974,1537,916,2690,2374,2133,2269,1346,1339,2403,1680,741,1256,521,2878,658,1802,2574,626,2270,2885,886,909,2925,2971,2581,387,2907,1822,1611,2341,1467,2980,1073,2588,1086,409,1835,1709,2223,2466,335,1635,2058,1900,277,1004,152,314,2670,1479,1617,889,2094,2141,2972,2197,447,1477,972,2192,2833,2534,1030,2275,1336,2280,739,414,185,2699,1926,1680,2878,823,1961,1512,1022,1764,1999,295,2698,2522,2895,1629,1038,164,2310,801,205,1858,2485,2480,253,643,2413,1349,2884,2146,2439,1323,1615,327,2484,1073,2923,450,1607,1711,1506,1717,2942,62,1864,2064,1250,2280,2361,2396,724,1022,1731,4,141,919,122,2403,1730,452,1780,2538,817,2371,199,276,1170,2914,1114,358,97,1463,2066,779,1466,658,2895,2876,78,1981,1959,2853,399,672,533,543,219,207,1342,163,2548,2757,2708,97,877,1212,1543,781,532,639,2703,2673,590,1678,1167,2580,894,2603,860,1643,2117,873,217,2327,1946,1584,811,2880,1968,1116,304,1455,1607,1726,2810,1956,2541,2524,2899,2683,2731,1358,1478,2360,2382,144,1699,2248,2270,2891,1777,2800,2849,228,2666,2816,2379,2632,1616,2385,888,515,2320,410,457,823,2832,2181,62,2693,810,1,73,1867,64,2635,377,1221,2376,1657,695,460,1123,2127,1732,2355,2005,2762,1840,2537,1900,2623,1805,2730,957,1896,1460,2947,789,970,2454,2802,1861,768,1102,216,2531,1192,97,2322,1319,963,264,1510,2075,2509,2980,1357,2357,2564,682,826,2343,1000,1723,109,129,1300,1915,1142,474,2236,928,2127,105,1128,2222,1052,1053,1315,120,520,630,1499,649,1663,2353,759,759,1010,2117,2440,1649,2506,2836,301,1580,1438,1422,2273,2855,1721,1174,1623,236,2429,1640,1152,700,2757,1478,527,1587,1676,774,2406,1438,1655,2659,20,722,2926,526,1670,817,729,173,1534,1419,825,1035,781,240,502,1765,149,1881,626,1083,2501,2688,1839,102,1344,2881,586,1332,1408,2831,1058,2835,2822,1294,1295,853,359,2389,994,1050,2460,71,2427,48,2552,1084,2603,1432,1440,2781,1825,376,2918,2849,856,38,2235,219,2984,2654,2079,797,1452,1876,1735,1815,708,714,398,2559,383,2420,898,1718,26,570,2766,2348,2236,158,736,2752,1895,1520,1217,2890,2812,125,2,286,29,1897,1320,952,1339,805,1528,2854,2076,1923,837,1835,2894,294,1152,1621,1105,2825,365,785,932,1178,2539,1836,280,2631,2004,1909,898,1678,325,551,601,453,2515,597,961,851,583,432,2613,1723,2249,2964,2239,727,829,942,1756,1183,1721,371,1342,2125,1542,780,611,2648,1157,365,477,2094,938,2296,1440,545,260,2531,535,2059,1370,1299,1971,383,2133,384,2302,2613,729,404,172,889,787,1153,1077,1767,2869,757,1546,179,80,1708,338,2134,563,2279,533,2979,1568,2010,2697,2690,1687,2427,1205,907,690,1716,1320,2831,1966,2943,2460,370,223,2476,1089,677,1656,742,2026,2534,678,308,2763,463,1430,2735,2451,99,1679,1006,163,1631,1785,1938,427,238,1095,1094,2385,833,1933,2690,558,543,745,2381,1239,508,1356,2276,2421,2005,2775,1585,444,2640,2377,588,108,677,1550,1299,2495,2095,1056,1764,898,1902,745,2055,1332,2381,580,2202,2468,2053,990,738,2647,1599,2653,2724,1456,533,2623,2362,533,469,2606,1288,304,1470,457,2850,147,425,1747,2592,2727,2901,20,1838,130,978,2472,2569,1101,2139,1548,1896,978,1515,1565,1790,1526,1666,2687,2915,1502,1858,184,46,1075,2895,2313,389,1826,1909,1464,2123,538,2157,955,412,1361,1848,70,2434,2327,2288,2360,2970,1751,668,1122,1992,2662,2246,2373,2849,1120,238,2267,2447,956,2935,2814,2411,994,1757,2861,1989,1364,1510,685,1199,777,248,212,928,1222,2248,1021,1019,2438,2608,2145,1960,891,139,2120,2403,2913,1201,1272,2131,2346,404,621,2494,2290,1698,2168,916,1897,1740,2780,2621,1037,615,1179,2663,223,1189,2771,934,1387,2741,1693,2930,2455,2974,449,1761,636,33,1292,2036,1780,2119,548,257,2181,2452,1749,2567,2672,1359,1207,2816,2368,2758,2156,543,2257,2009,443,142,273,300,2662,1524,2602,1494,1882,2231,888,2941,2518,193,4,1907,499,51,2511,1245,2328,920,2099,287,2472,1709,37,2946,1953,1902,618,1652,2037,799,1290,2607,911,1873,681,585,813,747,1308,2162,1029,1891,2160,2830,1968,811,870,2482,2086,737,2420,1165,237,1396,2388,626,1705,925,2471,458,2904,1624,1293,44,433,567,745,1509,2193,172,1228,1663,430,2393,2325,2616,1127,1153,201,777,986,2011,2178,1562,851,298,950,855,2958,1018,2855,640,936,241,36,1116,744,2570,2514,684,2745,1789,625,2844,352,624,723,1286,1692,2526,1196,347,171,957,2229,759,14,1030,2255,433,2061,2984,953,2904,114,1970,103,1979,2979,1741,639,933,2428,1194,2840,2688,2009,2580,2855,2750,1424,540,1269,2857,77,1528,1914,1118,742,1834,1448,2774,1213,2416,1506,2128,1111,2455,2894,1994,2631,2491,92,936,1621,1205,2387,1241,748,1808,2940,2099,1074,1316,2794,2164,2096,1910,2436,843,1191,2443,2954,828,389,216,880,1775,1174,1576,1371,695,1324,2409,1636,143,2827,2701,1613,2548,1976,2712,551,1878,960,2365,1298,756,1021,1770,2967,2039,1787,513,2248,2654,404,33,967,1341,868,657,2351,2637,1236,389,2314,2826,2714,1950,1528,2956,1695,2057,2445,2757,2619,2508,2244,709,18,2549,2590,2590,2731,1348,2771,2646,2661,200,2267,992,1997,1617,2377,2832,2876,501,133,2738,2214,1814,2718,2160,1754,2479,1116,1853,805,2974,1228,1308,2015,928,2669,428,1267,2241,2855,2504,583,2072,551,2940,1737,1398,767,213,988,2109,2651,2735,2497,2684,1580,2834,1363,789,1796,142,2513,1378,173,1412,2789,2458,1720,1793,629,750,773,1899,975,1693,1283,652,595,1274,438,1778,1003,1837,2910,1793,605,2984,2301,2280,1806,2328,2532,2251,2822,612,600,1976,1594,2414,144,1425,1595,2755,636,1644,1560,69,612,1954,1354,1127,692,947,2187,2137,2379,752,299,1016,2135,797,2569,1495,2772,1112,670,689,2340,1405,2853,2189,2847,972,1580,976,96,1328,1206,1642,1265,672,356,2262,1438,1780,2758,1334,2541,2820,1326,2537,1909,2891,1584,2403,211,1119,2252,1117,815,2884,554,1244,2364,533,2282,926,117,53,1723,1283,1860,1697,510,1636,1412,2289,2846,2152,2940,195,2188,91,2999,1398,146,2354,1068,1003,2443,456,1035,2109,1669,1657,2654,220,694,2671,2043,248,1546,853,2355,988,2182,2361,149,1466,1171,523,1382,355,1580,1313,1783,1762,2805,862,289,2609,762,2898,2169,773,2574,826,1668,2539,1488,2473,6,2080,2144,2686,73,43,2519,1310,2205,1611,1389,2815,1544,2030,433,2934,1632,1819,83,2243,1275,1374,545,1668,1363,1862,2926,2906,44,1323,1040,1756,1869,2006,291,2169,846,284,2386,892,2773,1638,1965,1294,2284,1623,766,1925,2548,1994,1598,896,2104,2506,2653,742,2867,317,2421,1058,2747,2826,435,1749,1727,1884,1278,1978,2232,499,1467,1750,1531,2511,2466,2230,2880,2411,1752,1201,1842,192,2779,1908,2195,878,2307,1556,2133,303,2698,142,341,2607,1524,1667,380,2292,2810,1725,1055,1758,1226,1128,183,2613,602,1207,1719,2979,925,1481,2350,541,850,1148,1563,2595,364,1209,1487,1852,1792,1885,212,397,2900,2805,2050,644,1178,458,1612,2494,1888,571,2159,805,2502,1206,2937,1910,2509,750,2936,1917,2723,1482,68,687,362,2881,1143,2603,1664,1322,674,1536,1736,796,1036,2984,1620,526,140,2908,185,1652,36,2047,2942,1409,1541,2068,2885,718,2769,2411,1267,802,371,897,1052,810,676,1520,946,2939,847,2007,383,2525,2457,2217,2641,1345,118,562,1965,2009,1924,162,2904,2075,1786,452,2025,1001,539,2476,1332,2558,208,2906,2053,1076,2512,2148,1520,1760,1051,631,213,1846,550,822,503,399,728,1621,2404,2510,2127,1892,2761,2869,2981,2929,1981,1207,2687,934,544,767,2134,173,2963,321,1373,2681,2672,1830,839,806,1435,1657,764,2123,2126,1222,182,259,1342,1613,2168,1880,1858,2330,2430,2234,1176,1702,509,2545,854,662,570,1124,1641,1196,174,1653,949,2134,2103,2547,2126,2771,1066,2679,2917,2584,1807,2283,1849,901,1174,2765,955,157,90,1940,1022,2220,952,2580,172,1545,988,1671,2073,1799,1534,2813,1473,2308,1181,2803,2655,1337,2188,1128,2308,68,2859,1748,2370,1943,81,327,626,2604,380,2268,270,495,1308,1532,212,1516,895,2827,2846,2801,2507,2453,2242,1304,2911,24,2987,2953,2628,1920,1755,1504,673,1643,1166,1998,825,129,160,1401,737,1325,1069,2151,337,2318,1262,2690,2923,437,566,415,2678,2490,2643,2147,1514,443,780,1629,1273,801,2052,1674,2934,2838,1182,2418,2571,1965,1606,487,1844,1164,2886,1300,1814,68,2086,1320,1690,1105,538,1605,1974,1685,836,2388,2013,2510,1115,2800,1522,2464,2640,805,521,2263,1388,2053,1206,460,2076,1639,1817,2280,255,1564,2499,594,913,693,25,2741,975,1611,1778,2559,2646,2182,526,789,203,1046,2857,177,2550,1354,2101,806,2664,259,178,2553,255,2419,753,1611,439,1522,1551,1307,1902,2843,324,288,2827,1698,1204,2509,2677,2238,2806,1293,2932,2839,2328,1505,323,2966,2952,702,1555,2651,1153,1694,1749,2080,2988,2593,20,2941,629,277,1352,2716,170,2171,1501,623,1504,1069,2136,1721,1299,1653,1047,1590,1502,557,1784,746,494,442,2277,467,1730,2909,2870,2141,1793,272,404,1870,2397,302,894,904,2294,18,1861,122,1177,929,2412,465,1856,2882,2527,304,1749,5,389,1959,1992,1363,1698,1014,2916,487,667,357,460,1066,2264,1705,304,823,2391,825,2392,1862,2410,1831,2483,2357,2924,2703,2705,1242,2074,2900,1654,153,1718,2798,2644,2595,2429,257,1065,1597,385,2430,2358,19,1239,2041,1105,1816,1670,2430,669,1337,913,766,1300,1734}

    {290,1071,2514,1938,522,2863,2346,2717,2328,2177,1007,129,1273,1308,724,1998,383,2046,1316,926,2634,2875,1853,514,697,2814,1457,1864,2235,46,854,2817,1423,621,1666,2974,1804,1691,531,2258,2755,2239,596,518,2670,2083,397,2709,926,944,1829,1507,256,21,570,487,2196,2034,2281,466,2317,1200,1530,2173,761,1157,383,2912,2094,510,2841,231,1568,344,437,1916,939,2757,2309,2219,1017,1193,1916,1098,1943,1771,110,130,154,1842,992,1091,705,1480,1057,1334,2324,510,514,937,1404,367,1795,1382,952,1788,2028,1809,1962,686,833,1477,1156,2456,2262,2225,1485,1081,2178,262,1068,2220,2556,1518,2892,166,2917,328,1397,1862,433,2742,2983,1287,1814,2702,2484,535,1221,2798,1167,1096,800,1091,2842,2348,2798,2695,689,1828,2817,681,1555,2752,1334,2314,2695,2706,2911,397,1057,2615,1803,2430,2213,2616,814,1554,2205,82,2757,1177,2749,1521,1378,1956,2361,49,1604,1697,2612,1035,2335,954,947,74,1067,11,1782,351,1612,763,1830,1917,230,382,1881,205,1078,156,355,2424,983,2889,1463,2862,1449,1829,158,2448,2275,224,1206,1942,127,36,1675,798,2105,199,823,1630,433,1391,777,1097,1824,1574,1306,951,202,2228,2077,1149,1081,1944,2876,2723,1658,1002,1368,2889,2465,1411,1596,2755,985,1184,893,1300,2395,2287,1083,450,2857,1575,173,304,1634,615,2309,173,729,1607,2208,1472,1429,927,1749,1887,2153,2880,175,819,1465,2715,2910,2158,2422,1421,1008,510,124,724,266,540,2374,1106,1268,330,1969,2131,2559,639,258,2286,1442,1707,1522,1279,1241,1151,2452,1643,2845,451,580,1793,2839,2177,1636,1087,2891,2512,1858,473,1387,2741,1961,2251,420,1450,1178,2943,1438,434,50,227,2595,2177,749,1254,1444,948,286,720,725,454,2690,1587,1934,119,1062,1771,2564,2082,2470,2381,2291,1809,632,1743,1881,2664,734,534,2930,2558,1085,2131,113,2323,1990,2469,1043,258,523,2170,2116,665,1487,510,1578,452,2774,2674,2830,110,1881,2299,1773,2836,405,81,641,1914,1196,1363,931,1650,1155,1357,186,2109,590,2625,1784,2816,2928,2446,967,2809,763,1430,1655,2746,786,594,623,1496,1336,1039,280,2750,2346,2294,2985,446,2250,356,2755,1906,1296,575,1214,165,797,2060,2274,1284,2500,666,1865,2247,2645,2894,24,2665,2880,1703,1697,1957,2887,2369,973,1080,205,838,1884,2561,2536,1720,1065,1378,574,872,875,165,2270,142,2602,98,38,177,2426,574,1230,1389,493,518,1849,209,610,2819,60,417,1724,632,2752,2294,202,1210,2904,286,1028,770,1814,830,2640,1674,521,279,816,2918,1923,2826,1394,703,2979,1107,1759,41,2031,2998,1722,2046,357,1050,2359,184,36,2161,1935,183,1195,1658,1639,1578,572,1778,2678,712,1972,1197,1862,2270,1646,2840,1945,1233,325,2936,2843,1237,319,2321,703,2307,1606,2892,2276,350,2172,1583,2647,522,9,733,433,1722,2349,560,925,632,2293,815,163,2852,30,2272,2414,1928,484,2379,1857,2527,1299,902,2232,2685,1128,334,0,602,1822,1217,506,1891,1715,1099,2383,574,468,725,1811,1343,2792,47,2014,2470,73,2607,2982,1826,1097,1775,604,2022,1132,2623,919,437,2977,459,2520,1222,599,1334,1642,2489,2131,998,42,668,1775,2993,324,695,1774,2202,2581,896,1565,1161,2008,1938,2701,2405,133,15,444,2822,142,2430,562,204,2212,2217,310,1730,1841,940,576,143,1731,930,1719,1951,2440,2248,1362,221,2908,1232,1928,1054,909,1350,1322,474,2355,210,277,1427,52,1479,2767,2566,388,1721,1731,94,2097,2117,2138,2726,821,267,695,2278,1174,107,2395,2719,1923,2636,2002,1099,437,172,2255,1801,860,2748,2405,1896,2820,2701,2224,393,2755,2244,1224,1402,1125,1289,2244,2299,984,1063,157,1701,1729,529,609,1542,72,1354,2958,1107,2352,2392,2507,2085,911,713,1589,85,492,488,1432,2530,2304,766,2618,2607,2966,1919,2710,2374,2969,342,2110,227,2329,49,1585,471,1798,2542,943,441,1946,54,1363,2142,656,1909,1540,672,16,1360,1473,659,84,2911,1144,2163,124,1450,233,1129,2932,2405,332,1009,2465,2256,2965,2434,433,2940,2124,1510,1547,2070,1549,1611,2745,2364,1722,697,1742,1878,2324,1330,2745,1770,1442,1645,2136,1230,2496,372,95,881,1602,2986,1439,406,150,469,698,2188,1648,2074,2078,2046,1252,842,2063,2927,587,413,278,1208,1129,688,1139,1108,2045,2904,1590,2168,1446,928,1294,917,23,440,863,578,1557,302,2744,1649,2925,2001,417,265,1389,1052,457,163,2256,1402,2260,1898,113,1643,989,271,2319,2407,2347,2873,1441,1851,1453,433,1500,2173,27,1704,992,2574,2530,872,353,2202,37,2132,1843,1508,1259,2700,1510,1205,1165,1537,1014,562,729,1354,191,2326,497,1908,2100,1572,416,1893,660,182,2836,1342,1964,2476,2512,323,1407,1799,1211,2675,55,2206,2414,1859,81,2258,968,1333,724,2377,517,1547,1887,40,280,2827,2650,2152,1882,1072,1282,562,2245,2519,1126,2240,1027,193,505,1670,848,2502,2839,2445,2935,1097,938,2885,1652,204,2173,1791,2700,2021,2178,365,2512,116,1687,1900,68,2130,356,2581,434,2868,1356,2147,572,2057,2780,2136,1207,1207,2314,660,2831,2177,1911,32,118,293,2455,1948,1023,2547,2919,1534,448,2186,2627,2609,1576,2040,2731,552,390,2926,362,281,2213,2190,71,139,1105,1180,1285,1149,981,1917,2625,2586,589,1981,2403,2101,2910,1248,1035,1235,1115,2285,859,1432,889,303,90,531,183,2167,1866,2072,929,2654,2908,2709,2678,1095,114,2980,1741,1476,2103,2016,1290,1570,2791,378,601,2438,482,1138,922,2774,707,2149,1515,2438,1832,555,277,2655,150,1519,565,2996,2386,2771,697,1707,2164,975,250,1856,2800,977,999,2952,237,2614,1874,1188,2726,2714,2036,835,699,401,2362,2651,1110,437,2487,2292,2596,2903,1098,2118,1966,2565,2839,421,2991,1072,2148,1198,110,1812,1544,543,1495,42,2888,2472,2922,1738,451,450,2782,255,2227,2901,1402,148,402,1600,1179,1327,2285,1215,992,1518,2572,411,1024,1081,1877,2910,1925,474,2053,637,2221,920,1706,885,1717,2123,239,627,2802,1275,708,2379,2154,1809,401,1859,2449,269,1177,977,1392,2938,1053,37,2746,396,1100,1187,747,670,809,1947,1517,2974,903,2334,305,2246,2189,2321,1061,33,2098,2303,617,2438,1831,664,2620,524,2725,2578,1786,874,2314,379,2622,1592,877,2174,2902,1571,2075,188,1939,2048,1645,629,1620,2568,1267,2832,1768,2491,1299,1728,1301,2538,2773,1996,2709,661,1025,1590,1271,1261,1520,521,1580,190,214,189,148,709,1599,879,1939,226,2443,1128,1727,1808,2123,1013,278,2177,1891,265,111,2880,2617,1827,1004,2572,2324,514,2068,408,1609,748,360,1428,104,831,551,2232,2951,1300,2987,653,740,1592,715,2736,2161,1347,696,1057,2579,1741,2311,705,2317,1342,2511,294,2526,1774,1604,1918,1528,2331,925,633,17,1021,1190,446,815,1097,216,1399,235,1868,1740,2864,100,2180,699,2493,2399,1279,1032,1604,2660,2333,507,2092,1662,1462,941,1316,1981,756,2991,994,1894,1937,106,428,2565,2800,290,2300,965,1157,2633,2030,606,864,2377,142,1280,2416,2856,807,915,1611,1822,2576,2966,2225,366,2610,1645,2554,2670,1300,1884,1219,68,841,1470,1487,2327,1084,275,840,2005,1322,2755,2900,208,913,1469,2658,1353,791,2764,1624,1881,1516,2715,30,952,1224,1531,1081,1955,1821,584,630,889,126,1228,1646,695,2725,73,2768,568,1637,112,2684,2889,2949,828,1043,2982,2280,1431,2291,1628,1537,1398,2041,2425,734,1274,331,1342,864,709,361,2792,2893,1691,2733,620,2795,1719,1838,2193,130,1163,743,2372,293,737,1528,1733,1512,213,297,2701,224,1534,909,157,2638,2050,862,1302,2926,2749,12,1357,2808,1837,1991,1080,1855,446,616,2528,2045,2502,1525,215,2345,1755,1746,842,1929,1542,1604,945,2605,537,2440,2154,627,2165,2341,322,1399,2089,1923,578,2080,178,2732,2209,1037,2257,708,1662,247,1974,952,638,1284,1799,2373,1423,839,1341,404,1852,2759,2298,2746,2684,1518,1909,2446,1768,1534,1742,367,1394,1333,247,382,1823,2783,456,557,2179,1392,921,563,1653,1555,261,1432,320,1936,2575,2363,2336,929,1022,1804,460,2133,2310,2306,2684,1384,2069,2990,2077,1161,1892,2111,575,2543,1395,1251,457,2065,1277,2427,2426,1068,37,441,2328,2136,2254,1661,2373,607,1277,2710,2878,2774,185,1628,1118,1125,181,2313,249,549,1415,962,1342,2199,399,593,1921,2631,2981,538,1090,1116,2911,1343,1774,1005,2539,1255,2989,2430,2587,480,2005,1512,257,1612,1956,18,1825,2177,945,1365,2509,2760,197,1684,121,776,391,2786,1722,2902,2560,433,1588,1421,1638,2644,160,189,183,701,2519,2317,423,765,918,356,474,2673,2131,66,447,2927,131,2131,485,1710,1008,487,2432,1398,2346,781,2639,35,1041,2933,1771,2257,2162,2512,919,579,2917,758,1060,1723,2908,2644,622,189,1275,1994,1382,2728,346,1993,502,2441,10,1903,1291,879,1659,2008,2759,343,2466,1639,2521,619,2945,163,2801,2056,557,2885,89,2959,2207,1831,1514,2846,68,609,1161,1378,2824,1654,1949,1314,1770,680,2796,1994,929,2805,1581,1263,1402,2850,2265,1581,521,1173,678,680,2880,2813,1596,2084,363,1775,690,2346,1334,443,132,721,2894,2416,2668,1223,2672,2439,2233,660,922,2268,2980,2636,1295,2338,2477,803,192,187,879,1665,2790,1720,1188,2798,2053,1879,2286,1877,1433,553,2087,349,869,540,569,1257,2443,1032,291,1003,173,490,828,2314,2908,1941,874,2737,1797,2731,2814,1106,948,2411,33,2016,793,188,383,724,417,2957,1673,847,1994,1841,987,433,1492,1386,2246,1186,2917,1716,731,2280,608,670,1293,2158,2562,2813,1734,446,355,10,480,345,1376,2817,1196,33,510,2379,864,2472,1299,2590,2346,923,1970,2755,268,909,1878,2663,1693,2185,2365,1567,987,960,2405,2233,674,1763,625,178,140,121,2974,165,2635,777,2276,1455,134,319,2023,2646,2218,417,2995,955,219,1276,314,2646,416,2676,633,1351,546,2127,426,1254,1854,912,1620,1511,2444,660,1135,2223,509,463,2823,1048,2793,2327,1275,2808,908,540,2201,1006,1982,1247,1175,2711,573,44,221,748,2957,551,1172,980,2735,1290,437,400,1750,145,2253,922,1841,2544,2129,1413,1141,2843,2535,115,531,8,1887,2419,2207,479,1833,857,689,2690,1087,528,2627,2150,773,1174,1045,1066,1912,1474,2035,468,1342,1493,2336,938,2543,1227,1011,2805,2445,281,375,2313,2756,2538,2107,306,1095,699,587,2047,695,63,904,981,1091,1676,104,397,1461,880,2938,2046,960,1642,2047,214,1995,1773,742,2592,637,414,423,1167,2526,143,1595,769,2616,2876,2042,570,401,2503,2966,218,1131,292,2478,1399,170,1580,1031,2334,1193,1774,2025,2291,2420,2350,512,1130,50,1977,304,447,1104,1258,2328,1299,844,585,925,974,2462,1116,2271,988,2934,1887,652,215,221,1107,1251,2783,1397,547,2467,732,2278,1392,2243,310,1721,1496,628,2271,860,1372,2375,1442,780,1320,1539,1298,2053,1823,172,909,489,2279,254,348,1133,1984,2327,2585,782,418,663,840,904,1604,276,326,500,1834,1079,1220,2379,958,2379,2321,1651,2597,460,757,159,2106,2545,820,130,1218,2817,2362,2872,2963,975,142,1645,1848,1832,689,2642,1698,137,591,695,1533,2374,810,1492,904,1590,625,1738,2216,1366,2974,1934,352,2227,862,1818,603,392,2364,928,2094,491,2297,1340,352,2094,2126,608,690,841,1809,2332,1643,1355,2924,2181,2328,1801,1849,775,919,980,2027,2016,34,1012,2161,2165,142,1584,995,2817,2394,871,1753,1898,1886,542,2431,76,2580,1618,1211,1322,842,329,672,785,2776,2405,1157,438,2820,2144,742,1195,2696,92,2997,1009,1658,842,1365,472,1312,1339,97,559,547,2014,2949,928,975,1256,168,1746,169,155,2874,784,1985,2192,2512,1188,1190,1923,556,815,381,237,213,1046,455,700,2581,601,275,2462,684,237,224,1334,2722,642,1508,244,2205,1159,1208,1849,2470,2482,704,1783,1971,2144,2568,311,750,1990,1337,1802,401,1030,2752,2287,1722,897,2419,1183,1443,2294,804,2671,2593,310,1872,1456,2483,46,1297,2948,2311,2111,1367,102,2720,310,2102,1575,2941,2646,1695,2051,719,1510,1910,2113,2538,1478,2646,1890,851,470,1355,1241,1721,463,923,1222,1297,636,1169,2316,1675,2751,2164,2357,1742,683,1003,1066,1810,825,1403,2662,876,2419,109,1491,2299,33,519,1530,2730,227,462,2512,2805,1763,2600,2306,564,671,422,2551,2150,2229,1662,2539,18,1986,2279,1573,2384,1900,2699,845,90,1638,2798,2601,2813,1035,1040,2540,865,58,2864,1529,1376,1595,1070,1258,780,834,543,417,675,1654,1707,1995,826,2490,2921,2080,619,1593,1397,2176,1568,2827,699,788,2979,2992,1030,2715,2837,2091,2445,229,1384,243,1432,2322,2428,2729,1702,1473,145,924,1745,1397,2524,395,939,2299,260,1256,1849,221,2630,416,1442,1196,826,112,2463,1579,1804,644,2474,1948,2755,2931,2759,2147,1776,1311,1924,2858,2729,2721,1845,151,476,1520,2402,809,2603,1524,1277,1741,136,2344,2305,640,446,2430,1086,2026,2491,1208,2594,2464,1251,1939,2000,232,636,2464,1679,1431,754,1186,684,691,1434,874,714,530,1021,2563,1338,1020,2005,279,2512,1260,2704,1233,326,2255,2985,1475,2845,1367,2005,1365,1363,388,2087,2512,225,1245,2797,2978,828,1158,180,1125,2741,2871,2523,1341,1544,2276,672,460,2715,1300,2126,1689,1382,2429,278,1657,2830,1213,626,2114,2226,1507,154,2877,762,813,2464,1225,66,1601,1445,824,1863,2373,178,959,804,1234,2547,1720,1767,2376,2846,932,763,424,2356,1471,1987,1270,1797,1253,1893,2274,154,469,2285,2424,625,1584,2891,1025,1845,2163,520,1287,407,1853,2505,1499,1882,725,1002,1227,2231,1436,813,726,258,374,1511,2176,1806,1131,476,2555,1137,461,90,2824,1528,1131,1015,2173,1840,307,2534,1166,316,1614,2029,1258,889,937,1059,1392,28,2529,849,2182,2714,2904,847,1033,2500,260,663,1442,648,1354,2966,971,1360,2754,166,2516,610,383,2366,729,716,2798,2995,412,1913,2704,2865,1034,826,2968,95,1272,2536,239,458,1566,50,127,677,2960,1456,2517,2112,2327,1101,2164,986,2686,1932,282,90,1447,790,937,514,1869,57,1477,1140,1645,1669,2590,2180,2689,2910,1909,1677,1321,210,2081,2328,2926,2448,755,2200,139,2450,2885,912,2816,2879,1416,43,2512,784,1674,85,389,2618,49,1202,2746,2640,1189,2634,1766,1014,2228,1683,2852,2654,706,1475,1604,1069,31,735,910,2071,1523,2752,1568,1681,61,1977,1982,2422,1294,700,1899,1851,2295,1871,165,2848,1645,2929,1437,1426,2782,205,899,1657,1981,1488,1363,948,847,2018,1489,267,2955,355,101,2940,1350,2828,672,2932,2381,274,1106,2607,100,2100,2852,2292,2225,309,1271,1561,1276,2332,1888,1862,1887,998,2896,505,2184,2621,2787,2599,13,126,1569,1309,2734,1939,142,1835,2249,2973,1740,1358,795,1983,1304,2990,8,518,1162,548,2133,1525,2589,182,5,431,1493,2502,762,1323,2270,1512,2093,2798,892,1293,179,2476,368,1466,92,914,1623,833,368,2136,1136,2533,1712,2800,2588,2764,746,1858,1383,2459,405,2643,1534,1534,2940,2923,1188,196,2527,938,1510,2259,846,1037,1221,794,62,2713,1674,263,56,723,1147,2256,383,1620,128,2551,2164,1835,1498,2553,1321,906,1948,1643,866,1088,930,2499,2739,2647,1609,2265,1216,2810,1953,2251,2186,748,2935,231,789,1952,536,1158,995,1393,2778,158,2191,2032,2718,1739,417,1175,189,1944,704,2188,2928,2682,2966,2234,88,150,81,2743,1974,1988,2575,1542,234,1653,1382,2387,1686,118,2904,2016,2269,235,2361,2326,2897,2122,1810,312,2281,783,1338,1630,1152,1486,2545,2688,33,1070,2847,409,629,2194,536,2175,1791,2251,1859,1247,2805,1089,1369,2398,2473,2200,2904,2942,2474,1387,251,1622,2740}

    2941

    2921

    Returns: 90958131

  110. {2558,2439,2486,2802,1330,60,2194,2681,2711,2920,1752,2044,2345,2751,821,2037,1784,1269,1472,2629,1007,498,1471,1398,2123,1837,634,689,1255,1843,1009,553,1778,2253,450,1691,2987,2059,2148,186,605,1384,722,596,2150,415,2977,195,2050,2193,278,1759,2493,838,2551,2164,1381,830,133,281,1633,2972,2748,1828,1520,2256,973,506,464,41,933,1454,2160,1257,202,1662,435,2697,721,673,772,1354,2304,1024,2468,1682,468,1007,2764,127,62,2462,2451,2429,90,1395,291,662,177,1267,2509,2570,377,1053,2253,2961,1985,645,2325,2326,1184,917,2829,2537,297,494,1351,1750,2395,1465,312,2812,1471,1431,1266,923,2457,849,88,1173,2401,61,1260,848,2857,378,2450,2168,20,1301,1805,1585,2636,1979,873,1951,2315,942,169,40,2142,121,2606,2364,91,166,544,2518,2495,844,2788,293,2451,42,1670,1569,1885,1391,691,1111,2095,1637,2352,1987,363,1347,2028,1807,467,184,1665,1490,90,2613,689,320,1762,1541,1748,330,2356,1130,653,1593,934,2191,960,2313,317,2715,414,1830,2188,2497,180,1647,863,2083,1751,416,1713,379,1933,2364,1137,1800,1097,2879,813,2418,30,182,1460,867,1536,1093,2529,2394,621,1521,848,2005,1681,829,2909,2258,437,532,552,1276,331,562,411,914,2181,2334,882,2321,700,1531,2257,177,1317,1520,2864,2604,494,288,2295,1201,111,115,2335,2409,2979,2398,1663,1446,147,1060,1012,1601,2018,101,857,1015,1475,285,684,2237,1033,183,603,2292,23,2748,1326,272,2807,2775,1764,1508,2015,21,1795,2001,1861,68,2914,1542,1324,2093,1191,485,2270,1464,1699,1557,2827,1137,316,2312,2715,1650,421,627,2550,2244,1359,304,1454,1979,1472,136,2610,2423,219,1416,1452,2492,1827,1135,2014,2557,2130,1694,597,1202,219,2765,2343,2829,1629,1427,1517,999,866,825,935,2483,2272,2724,1617,1056,2757,218,179,1073,1449,1682,1818,1447,166,1657,643,1073,569,1150,130,322,1331,726,1180,1639,1091,1255,1961,572,786,2446,774,1489,2824,2685,1114,1855,2013,235,2984,49,1555,2336,2780,1894,1637,2054,2315,740,345,2330,473,496,1245,1300,1752,2076,1573,1211,2925,1463,1208,342,1980,371,1415,199,147,2715,1096,2959,2342,2489,832,102,1934,971,1276,1035,1176,1831,1816,549,1850,1370,2254,362,389,1744,1165,155,2321,983,1994,2294,2631,1521,1635,413,1112,19,683,1299,2373,1644,1533,1536,1525,2680,2573,1936,743,1460,2341,2567,1082,2358,0,561,957,2922,926,878,418,2684,131,1559,1515,2301,340,2995,1561,2681,764,1052,1986,947,859,371,2423,785,1318,1961,540,153,1507,1278,2765,2513,509,2580,1868,757,186,1520,1705,2133,1817,1354,2040,70,2600,2819,1225,1498,2291,512,995,2237,2657,497,1971,1625,244,1911,252,537,1502,984,1426,1548,2365,1018,1962,1173,1043,1020,2503,21,1086,1610,933,792,1424,1832,1387,492,75,1236,1648,1669,1753,2838,2613,1522,1755,789,674,2674,2687,1710,2161,623,1484,2115,167,2441,2537,336,2254,2654,1542,2328,2051,1581,1023,1197,2941,1829,273,168,2575,1041,1590,667,2722,1680,1591,784,890,57,975,2539,1170,1061,2826,882,255,1348,810,1156,1407,363,1764,602,2692,1840,2124,1239,1747,1946,2167,1710,1737,2969,1574,1247,457,675,1661,2852,2200,2770,1103,710,2616,2893,1179,122,1841,931,1996,1505,2541,2035,881,233,836,1893,2012,2889,1513,2950,1255,554,1356,769,265,2619,840,59,459,1117,1476,2820,1195,1741,59,2299,1598,189,532,2809,1457,906,2966,744,2778,1218,414,429,869,2591,1037,1787,961,2679,2187,2259,2871,1155,2126,2496,2076,285,1962,190,2578,820,1568,2600,536,2611,2242,1113,158,2281,955,2201,2720,2556,1914,2407,312,658,756,2112,2052,895,2960,2935,281,1193,269,1273,2614,1602,585,2596,1913,327,2721,1931,2817,1305,2071,2668,2980,1221,1765,2206,1733,831,534,1020,476,279,94,2770,506,935,2882,2008,2317,531,2970,865,2749,503,665,2493,157,670,881,1317,114,1613,1289,603,323,2942,2461,2955,1934,2621,1141,2740,1632,1799,69,1605,2700,1885,1265,1093,1875,2000,835,1666,1893,1781,538,793,1637,1283,1831,2957,2638,93,1575,868,1565,160,2603,1310,337,2139,2151,1882,1490,2516,1561,2095,1412,1714,2906,54,1702,313,2028,1366,1889,2508,855,2942,893,2400,457,811,353,1271,2803,2314,1318,2069,651,1465,1643,1775,2489,442,1763,2977,2466,2146,2915,1035,1835,2028,1055,1100,376,2541,602,916,361,1989,1805,2669,2875,1464,688,2167,86,640,2344,1495,2249,2430,1057,1963,2915,2188,1006,1276,332,966,1754,2174,640,1333,2892,1534,2224,1304,1743,842,1936,2317,278,2777,1978,2431,1789,1621,1985,1786,1424,511,1473,2136,2273,2580,2642,1256,110,420,1359,1106,2829,1358,2242,1847,2915,123,540,2997,1277,894,2151,1630,2977,2163,1628,500,686,872,2376,2172,2876,1878,396,842,1140,979,628,2636,753,2317,500,151,1578,1674,2719,2153,2983,2190,2649,172,2548,676,2308,190,305,899,790,1324,1076,733,1552,1281,1928,2466,1550,1094,2572,228,1398,739,1940,209,2279,1367,776,2714,697,1588,1737,870,2070,1980,1410,1834,933,726,446,2104,581,319,1311,2596,2937,2846,1175,380,2144,1827,2720,2827,1354,281,1782,2280,1309,50,1614,520,1494,244,522,2209,1547,889,9,2607,1440,2799,651,79,1919,1618,845,2302,297,677,2337,2369,1128,2553,1884,754,899,1712,333,116,406,2841,1499,2712,170,999,122,1287,1648,768,2920,653,2922,2208,2485,2025,260,2194,1956,1762,881,869,1814,24,2183,2285,1148,2152,86,1038,2886,1837,2124,1017,1212,1065,2695,1726,1450,1980,935,2357,842,488,1187,277,1085,1537,2502,1581,2338,2219,1354,1365,1138,1014,2747,2727,1764,2907,551,1879,2471,2692,1727,198,747,1722,2019,2034,2592,2125,1377,490,825,2339,2922,2572,66,1104,1969,1800,1272,561,58,257,1928,2270,1886,953,2983,1866,150,964,1116,1963,1473,2360,2732,1004,1027,2896,1866,1288,2834,43,803,2405,2451,2644,480,276,298,1728,438,1672,2731,1642,1480,1102,1480,2933,576,2926,1571,2315,1539,1161,2509,1729,2601,937,1075,122,1136,1055,1710,1982,1824,2327,1662,2870,824,1356,255,2228,2124,1330,190,2578,448,2757,243,1926,1876,2329,2776,2985,1232,2517,2924,1584,2325,2001,360,1375,794,177,609,935,1843,401,46,2548,2389,232,2198,709,1081,1000,661,1990,1708,315,679,1314,1391,588,2678,2212,68,576,1264,1552,363,2377,596,2351,1934,2757,1837,1393,1558,1407,2631,1212,1480,907,1330,1023,1296,2970,172,92,2074,547,2602,2395,2269,656,285,1182,2012,2512,2376,2089,2039,2457,649,644,2810,2599,551,1952,2383,2322,465,2492,2583,2490,1023,890,1381,1723,1720,750,1882,2951,2579,1746,1601,1399,2133,2399,314,2542,324,938,1055,2438,2195,2233,944,2501,2808,568,1219,42,2519,2099,1543,232,26,2298,558,1554,2305,870,968,2076,1109,1490,2076,933,1560,589,2829,1008,2590,882,653,1343,2406,1315,1903,429,2293,1344,1775,12,2710,1504,638,2150,572,2741,380,1182,984,1697,2857,299,1958,513,1977,987,323,2234,654,124,1944,716,1013,521,237,1471,842,1193,1846,1218,292,884,799,1465,1445,346,2871,160,1779,2507,1427,2021,1977,752,1949,732,1600,1760,2715,319,2392,2561,882,577,1306,1776,2301,405,494,384,1558,1385,1147,2120,540,1565,1598,2619,2204,1260,1675,2983,1398,423,1079,2363,680,568,281,660,803,2875,2955,2452,2028,815,619,1983,708,1609,1437,1653,1758,2160,2692,534,1661,349,1536,2359,2998,2305,555,661,1523,1349,544,2,45,935,1807,237,1484,920,2016,771,2563,2617,2541,1421,2772,499,1279,1987,1734,551,2448,1828,1591,302,2088,1724,2759,1825,1520,2884,163,1295,2567,2628,2821,2250,147,2053,2066,825,100,1470,1051,1249,695,341,2844,668,1948,1776,789,1604,2669,2143,1701,2160,571,2601,136,534,1233,2082,1145,386,2564,2275,1045,1509,158,2806,450,1966,710,1166,108,1781,2316,2586,1736,1519,124,1456,403,1128,136,2814,1790,1731,1335,508,390,1213,742,2389,743,1672,1136,749,808,1508,1717,91,225,351,707,2337,1928,1034,474,2034,2445,1111,1203,1689,2975,1401,2734,2436,2151,1965,2625,524,1761,1580,508,1521,2652,2158,198,64,859,2655,2678,2637,2723,2717,1907,2062,138,527,500,1933,1838,1471,2216,1625,2379,2239,1558,2782,958,2930,2587,2826,286,1455,1120,1207,483,381,2612,508,2091,2154,1155,1359,2811,1682,779,1565,2273,1687,811,781,870,2799,628,1540,2042,1156,648,1126,1980,804,220,206,243,2615,1568,2938,2928,218,886,42,2414,1263,2342,1039,1068,2688,1917,146,2639,704,2932,333,27,2864,2241,387,2770,1633,1210,799,2418,941,1411,1260,2690,324,1469,2606,2638,2293,223,1630,816,2848,805,624,578,772,2570,507,1753,100,1079,1327,1932,2803,178,870,2440,1725,2445,54,1213,2864,2459,1159,2302,785,1207,2726,2254,2541,982,321,2766,608,1493,47,1853,2533,39,1544,1741,1383,118,2979,2253,899,1688,1627,2492,2715,1461,97,1796,2308,2566,476,504,2263,709,826,1910,214,1352,286,397,2164,2507,350,2572,312,2762,1839,1893,2975,1790,235,1964,2205,2465,1803,2959,1919,1174,2063,437,2608,1762,1849,2275,2797,1944,621,1693,4,1169,2221,961,2494,570,471,2143,1738,1408,1314,211,1595,290,542,1837,500,1132,1287,2706,2541,771,2708,816,347,2459,905,151,2107,702,2076,469,2319,1544,2996,326,2091,2246,2470,2214,712,2577,2418,2702,2805,475,1327,1173,494,2735,1869,603,597,710,374,1943,1317,1306,441,160,2974,2499,2999,423,1649,359,1380,175,2874,1087,244,470,785,858,1369,2489,1866,2228,59,2558,2787,684,2337,2992,2292,83,2869,2927,2990,1492,194,2961,1621,2756,2390,2635,2130,1153,1297,85,2824,2985,1505,2574,1781,728,802,1154,851,816,185,598,2267,765,2898,1951,1016,2860,2144,1476,920,206,1733,2546,2740,401,2899,1763,518,2742,80,997,13,2853,1962,2489,2502,1245,124,2582,1668,1159,2168,2438,977,1348,1479,2965,2268,829,701,2371,478,2950,2886,1200,2467,381,2424,2597,1854,2015,184,1485,685,1688,1848,2358,1388,1223,1641,1127,2169,2919,2826,224,1724,80,2213,896,1459,2947,2017,2710,1478,1102,2580,1533,151,1440,1013,1161,972,2011,1556,261,462,1934,2983,717,603,1435,2484,1660,431,1533,839,302,597,706,294,2676,2007,1720,2175,2444,2548,1955,2314,2743,952,2355,2388,1057,998,1431,70,1661,693,2696,2302,321,1448,276,151,2926,1873,1062,2650,1295,86,1235,2426,59,1216,1227,281,1334,7,2694,1347,2738,821,1044,621,59,578,2718,2355,592,812,655,887,783,2885,961,381,1663,2570,2695,791,2717,1990,1897,1057,340,1769,2662,1911,2271,1950,85,528,2380,1397,256,2601,69,2078,1821,1636,39,2261,2918,2891,318,1755,2695,1040,1243,717,1957,266,1801,650,970,540,1021,2151,173,1524,1555,1654,1648,706,1733,150,2349,1745,822,1173,355,933,354,368,2023,2547,907,2350,2853,685,2644,1835,2020,437,1210,1896,2524,1254,1530,909,775,2937,1775,672,1093,25,1990,2469,2629,2000,1541,2666,1757,2836,1967,2551,2181,391,699,2986,1339,348,1383,2680,1346,2902,818,2144,2013,1442,260,2263,1360,1131,2983,1136,1562,1724,1123,1334,574,1938,1801,1496,1821,1219,2609,2766,1862,633,2150,1942,193,2890,1946,2357,1266,1967,531,313,2719,1194,848,2898,2964,1023,366,2604,1945,1598,2196,573,188,383,610,1741,1669,2825,2239,1076,2407,239,1309,2741,1883,2032,1555,1992,466,2790,1455,2567,894,2056,2433,1077,2231,2551,1520,1430,458,937,1492,1350,532,1430,2995,206,2819,2796,209,2697,461,2826,357,1073,2285,1222,816,1035,393,1734,1390,2953,2940,2039,2452,2410,1080,2009,2086,672,492,151,2935,1917,2218,1561,1522,1820,1055,1361,2177,197,1677,783,355,2915,52,434,1745,2237,2113,1434,2309,2460,2076,1631,1656,128,1845,1036,2952,2859,678,423,1877,1724,2224,2800,245,250,1197,2887,2541,663,2986,1144,1574,2454,322,508,2515,1921,285,1912,2593,949,2934,1788,1249,1744,1705,1255,657,1542,933,2831,2962,23,135,1526,2418,192,426,1420,1978,2023,1303,1349,96,1333,31,53,1756,1212,959,2647,1487,626,657,506,1281,85,2290,1490,1210,827,918,2088,735,2517,1939,692,1101,1048,1553,2783,777,214,2370,1948,675,747,1078,1024,1657,2325,1762,1906,2613,1001,967,2407,1,2419,547,2422,756,2307,159,2792,1439,826,471,1340,1805,1819,656,1033,2697,2056,2417,2631,898,2019,1331,2974,2685,1153,2632,2079,238,2347,1444,151,1610,1248,1336,1704,1801,1068,945,2411,621,2238,557,708,2293,940,1141,2427,2526,404,1879,1005,2408,2676,1369,2487,2577,2253,1938,247,2490,964,743,965,588,865,1280,208,1333,459,2013,2633,2543,1092,1817,1368,1844,1459,1725,1719,283,2470,1843,2840,2158,157,2255,1404,1321,1837,2857,2453,1811,175,720,631,2015,684,1239,2626,2767,82,711,2341,2567,2835,1810,1586,1097,1379,2921,624,449,1588,2911,2988,1393,2593,2124,534,1360,484,2946,2466,1493,2845,1245,865,2743,784,2864,716,1785,1608,1403,1520,2768,1830,233,2829,1500,2603,2133,634,1253,1432,1890,2689,1510,36,2540,2447,2974,2549,1115,1268,2949,2572,780,2502,644,645,2951,479,2504,2748,362,2485,2451,2271,713,704,2185,2673,1238,232,894,254,884,1392,1215,2152,2348,1797,2898,2549,2951,1594,532,1956,755,1915,1889,1209,2394,533,1099,2833,1636,448,132,2059,2641,402,319,2111,604,2140,1742,1064,1284,1502,2784,1651,568,2368,2901,869,1946,2192,2310,2664,2188,548,1714,508,2920,2582,1234,1302,2332,2207,103,297,1376,504,2069,2975,894,202,2327,1922,2921,1269,1471,432,453,2594,1601,612,281,1798,1690,2983,220,2649,597,1269,2657,2216,2462,2393,847,2595,2768,2661,902,2793,1358,2973,2728,2859,1167,2493,2723,91,2412,1725,603,2163,2133,428,2109,1317,1366,2607,3,947,2767,167,1651,2767,1348,2530,2028,2881,1622,1882,2246,2111,939,744,668,2753,2162,2369,1633,2829,1149,1312,2437,1615,2203,395,960,115,982,384,2279,1720,2148,1554,190,1239,2886,534,582,2423,2344,384,287,2241,1907,2186,913,2705,898,1397,842,1287,2907,2849,869,2353,2890,1743,1065,1925,929,2229,189,71,281,597,2618,1464,2631,855,1900,528,117,2499,2814,32,1031,1768,1851,534,2704,365,2700,1023,452,2650,745,1051,473,1163,1888,1534,1658,1995,32,1338,1067,1963,2785,1505,2337,1239,2832,1893,2259,2826,338,2251,1806,2576,223,552,1177,2818,907,766,944,2445,156,1644,136,675,2580,1905,974,1481,1787,825,2535,908,2717,2102,1721,1858,1499,2128,1085,207,2284,2069,1791,886,1775,997,2159,284,2739,1050,1381,1385,659,2729,2727,72,572,2829,2622,2293,964,2044,2692,11,2527,1409,2856,416,2668,2375,2572,2140,1685,2565,640,477,257,2144,595,1001,2455,1769,1307,295,2561,226,259,1217,2919,436,2569,543,743,2684,2652,2741,53,785,1067,1800,86,1028,2781,1071,297,1336,2243,595,1565,79,2678,1648,933,866,855,2202,1782,1581,734,1351,142,737,1559,389,1733,2367,2772,1158,1686,1266,495,2063,2033,2074,1716,368,1620,2829,383,83,2809,1406,90,1345,2795,2670,1793,1735,2890,363,2321,2046,1079,2155,1622,55,1054,2430,2967,2700,2229,1700,900,2394,147,146,473,2609,1568,1794,1754,2976,2116,1255,1240,1601,789,1136,303,535,146,473,1249,809,2580,2195,1170,565,1630,2108,534,925,1186,2603,712,1487,1678,1323,267,1521,1252,896,1831,2832,2178,489,2297,1240,975,1526,663,1613,2692,2513,1812,636,587,687,1000,2913,323,1835,1722,1268,2545,2305,1285,551,45,2285,2036,2048,1612,67,1150,2118,1582,1021,710,2179,2369,2577,2416,2771,1635,822,727,2912,1546,716,2829,2915,2866,1934,798,978,353,284,2961,2365,1623,1794,1832,1158,597,896,659,659,2659}

    {2763,2540,1629,1093,2681,1823,2936,78,709,2166,800,473,910,1146,729,1290,568,906,1626,1374,1813,1557,2288,2179,2150,2944,2366,2935,882,2585,330,745,1092,360,56,2861,1333,1746,479,1208,1877,39,1774,1284,2855,960,2548,1505,647,567,2487,936,1429,413,526,1259,1069,1407,11,380,1554,2867,2413,2120,1119,2648,1282,1226,1285,1069,2055,594,1180,1723,221,186,748,128,1398,592,1998,1192,1725,1578,1215,2531,868,1612,2775,2733,1407,2658,2526,1565,381,1478,2254,1054,1468,186,2011,2415,1951,129,854,568,282,2324,1696,660,1181,2361,1166,143,1551,2270,1987,2543,2966,2804,2420,1563,1019,209,1341,2018,1698,2901,2418,1000,1906,1266,1089,2418,48,2026,2424,1244,869,922,1988,2506,1111,2564,1864,1394,2901,2836,2331,2865,2627,1072,1294,347,590,1058,751,583,19,234,1804,1013,1958,2791,873,1159,35,1142,1317,2532,1098,1279,1702,2748,2285,2206,2229,106,1069,1817,1217,2693,1701,1256,1308,1208,2334,2025,1704,2202,100,1460,1285,1695,2567,1381,2027,1678,67,1528,2340,2221,2182,524,2692,1860,1582,806,992,2170,1408,2277,1297,1034,1441,876,2643,896,2074,1601,1207,1646,2987,1516,1970,424,1224,1493,1444,43,1619,2751,2387,2525,310,2458,2108,2180,931,1490,1843,612,2038,2229,539,1345,77,2548,1619,634,2650,2024,1133,597,319,1638,1450,969,2986,2122,2111,367,542,1427,2233,423,1502,1184,1676,24,517,295,2117,661,2890,1264,1034,1304,491,2956,625,2580,2900,2176,373,969,534,2261,1534,1211,28,1026,478,705,1178,1128,841,2751,630,883,2167,189,2076,599,140,116,2259,1772,2908,2605,1729,2729,2548,1298,2261,234,237,990,1188,2152,2479,142,2239,635,413,1423,1287,1964,2873,1645,1657,2459,2757,2759,1714,2078,585,1475,2086,527,2896,1200,2079,2825,1258,406,2145,1596,2920,1717,2748,2183,387,2731,2362,2987,1538,32,2649,268,356,2741,1977,1714,1399,2235,571,381,1194,699,380,378,1125,1360,960,1699,2072,456,460,325,656,2935,1922,572,354,2678,1742,2708,1257,2311,1866,2124,930,2899,1424,2161,2680,2256,103,1612,2289,2573,258,1900,1163,1616,2557,2234,1439,1218,664,2327,1458,1061,2043,168,799,42,2456,993,1307,2869,989,1419,286,74,690,1594,1672,2877,536,2567,1303,1951,1261,2140,2744,2632,489,2157,2655,1590,1566,1238,241,1837,599,608,1128,793,2894,2080,2681,2234,2821,1826,1805,1561,864,2031,2874,408,2725,911,1557,1310,1097,733,2784,1189,688,1085,1544,2229,2129,1520,2896,2868,753,2019,1478,2484,217,2354,2280,1295,217,1550,2776,2069,2007,2383,2006,2995,560,2536,1333,1794,295,1717,2423,748,1669,2830,2746,244,1891,1654,980,137,2119,612,2577,1455,787,2166,1124,986,1054,1402,1633,2188,2451,1274,812,1460,1669,257,86,812,1001,1846,2591,837,935,171,472,2864,2517,874,2422,859,2697,609,179,399,147,2794,2179,213,201,237,1558,772,2013,1143,908,1724,1987,2977,2666,2890,2300,2680,1091,850,2738,1460,396,1046,2583,1116,2942,1655,1557,1142,1630,36,2691,1032,582,780,2546,1864,2432,2507,2457,2106,716,1176,1780,2918,2361,1260,507,2161,333,731,494,2115,2443,666,816,1732,246,1633,1051,1725,1964,2856,788,1760,2276,1167,961,1490,2976,1463,1587,2772,274,1266,1625,1040,1166,2193,2888,2061,1703,2850,305,1157,2358,471,145,668,2860,2130,61,2276,1993,2342,2642,206,1909,685,497,339,210,296,784,2582,1836,860,1593,458,575,168,1776,460,1712,2015,2480,1751,2325,956,911,903,884,1168,593,2004,2737,1939,861,1729,2721,1749,281,2517,1902,1055,1387,416,14,2138,115,306,2962,955,1889,2149,1291,2770,1166,1987,963,2270,1017,1971,1667,530,2544,1922,1878,2731,2236,2374,672,2181,1155,1500,2807,699,961,2016,808,870,1659,974,2418,1211,1122,893,261,1492,1783,1424,2668,933,2451,2262,1110,833,2510,2819,2881,1378,2507,1898,499,1948,150,1683,846,425,1767,1114,237,2734,2480,2527,646,1972,2950,746,2900,99,455,2111,961,2660,205,231,825,1880,406,1104,2514,427,885,1895,1448,1171,2755,2570,53,1964,370,2948,1730,1572,388,1186,2678,2687,773,2119,1800,816,309,954,1413,1436,2148,1199,2567,1833,541,769,2844,823,631,2321,774,1237,2711,1466,2598,2231,880,685,1586,1333,1554,115,796,1303,669,2118,508,585,2534,1224,2730,2754,1775,2378,2649,597,2478,2839,825,2124,2427,1715,2584,569,783,531,671,1733,824,2901,2220,1948,2077,2481,281,1275,1192,2570,1721,2488,1231,369,490,1229,1167,1603,1808,2394,1751,1872,2545,103,2115,300,2416,2994,1991,2000,2500,652,2717,1801,1638,2505,16,2748,715,2064,2810,1684,2422,414,1325,406,2015,2665,2310,1766,1606,2851,875,1784,1011,18,1322,514,2188,1605,2100,1191,2301,2015,1147,2473,263,1518,556,2105,1291,2966,2468,2588,842,1365,2305,1478,2085,1155,1883,2757,1935,2275,2097,1733,2072,1730,2784,825,1357,1246,63,2013,730,2559,2959,892,683,352,1339,1533,353,44,1438,1064,2819,150,1981,448,174,2575,1570,2052,2421,712,1068,2710,657,688,1940,1817,2602,380,2904,1204,1192,1313,2356,2799,451,2288,300,1288,1155,2384,1567,2022,2168,2363,2823,1206,229,1802,1517,2304,389,1394,953,865,1020,771,347,2287,1103,1612,2404,2044,2484,1378,2811,2991,2702,881,935,2568,1058,2839,2210,2286,1521,856,1847,723,1339,367,1070,1401,1396,967,2576,508,1951,661,1386,1391,2239,2156,2861,2482,2391,1678,812,2402,2210,2880,584,1889,510,1398,1947,939,2058,2837,2555,2917,220,841,215,2407,2283,145,2989,1776,2747,807,2915,2819,2278,2336,1706,2139,2935,2262,385,861,56,362,1161,671,936,2240,1763,329,169,2028,721,5,2754,115,2703,1521,275,2505,2020,1141,2735,382,124,2141,898,2617,1764,2085,421,1174,2382,2367,1480,753,1741,1923,1242,257,2885,102,384,823,2021,2226,2369,391,2518,1467,1773,2477,100,2667,2914,747,1023,1050,2041,861,1477,2140,2490,1433,139,2204,2472,2293,1133,2137,2884,2180,1755,1599,1961,2130,156,775,529,2519,1452,2740,2132,2036,2792,2646,2321,2023,1079,380,1168,606,1439,696,1620,137,399,1652,1219,2278,2707,2445,932,990,1856,330,1422,2437,1718,209,2607,1997,779,2562,91,1237,1207,1541,2847,2813,1262,1215,2815,66,1525,151,550,2300,560,2020,546,1163,253,2220,2919,1293,2604,2114,1993,829,1886,1423,2716,2295,2136,2029,1333,18,251,2073,602,579,1937,1834,1000,752,2950,2919,1155,2819,1609,1337,2971,2350,534,2087,1838,244,1782,10,1775,1239,482,2823,2522,1709,1100,2285,922,2098,2258,1149,559,2691,710,645,1297,1235,622,1739,698,1650,2842,43,574,695,1139,2864,2319,2094,2907,2306,632,2179,1025,1688,2952,1049,2564,1198,1948,2986,2228,2213,2354,1428,1311,1118,2752,628,24,1326,838,1601,2692,253,2948,73,2529,2780,1887,151,1994,915,980,1333,310,2254,1750,86,1108,2713,725,443,2888,2935,323,1541,165,470,2950,2178,1854,613,1672,1960,6,2072,881,2466,1964,67,227,1927,1344,2503,2385,2680,280,2334,852,317,38,2459,2916,407,2484,2193,2860,2223,1002,531,2717,1521,347,2968,547,2431,1532,720,763,1214,1954,2999,2822,1671,2422,2651,1378,2313,1132,244,901,151,2826,1792,2479,1074,2049,106,181,2911,2765,1527,1917,1994,1499,1692,95,1166,2456,2157,265,1918,2979,347,996,472,2684,618,872,641,1617,1640,1937,8,1462,164,1568,1686,935,2184,834,1985,1121,2506,196,2174,2911,1038,1924,785,760,262,770,1827,2000,251,2663,1280,726,2823,2275,1091,1674,2907,1900,995,144,2864,2954,1228,532,1417,842,119,286,1901,2689,281,517,2316,1997,2901,1341,1577,2828,2038,2711,1114,112,2732,2147,639,1278,1474,1354,2290,1954,241,233,706,1317,2669,2929,1869,2374,2858,2189,667,2895,1529,928,1949,1723,2025,2449,1517,1236,683,2211,260,2256,2127,1699,2158,1652,1547,148,532,2305,2253,2733,1480,1968,2528,2387,2274,1288,1239,2699,553,1095,2919,2103,1284,1973,1776,2321,47,2282,413,1535,2489,2655,2173,1925,2264,2945,2199,2823,1724,22,966,2036,2300,1609,937,1750,1251,186,364,2138,2505,1023,1894,1046,1134,1842,651,1241,2983,2569,1160,2332,2233,1415,2835,2517,2554,2943,2653,529,1573,2687,2686,759,2901,1242,980,1106,2879,2356,1220,616,240,1929,1346,710,1420,2818,2317,1412,68,611,2604,1535,1346,91,1292,716,2493,1349,2192,1534,775,843,2114,1486,33,2799,2194,2836,641,864,347,1809,859,105,2018,419,685,2118,1359,1749,810,1090,250,950,2800,348,492,531,2799,2383,795,474,2962,1758,2962,519,41,2972,2520,1535,2883,712,116,1311,2963,1907,1647,924,98,1991,45,2434,431,787,2275,2471,19,2772,1152,1148,629,2760,362,1924,1925,1186,67,1301,493,2523,187,1448,1270,114,443,2715,2181,1527,2346,613,2076,825,1733,2219,463,2692,2602,2253,1483,2108,2129,2535,1023,2081,1987,604,2715,347,2096,409,1501,2867,1428,1327,2721,2377,107,2972,2675,2372,737,2681,1744,642,2541,748,2613,2493,504,2640,2872,2958,1789,2179,1421,404,34,7,359,1398,980,1326,1704,2761,362,1193,2395,2492,428,300,641,2774,2203,355,1946,2682,2381,1767,819,1488,944,1700,2476,2036,1679,1532,743,447,1502,1490,351,285,1057,2246,724,343,1015,1150,1070,2571,2615,1597,358,2750,2396,615,1590,2596,1155,1879,126,430,2769,2247,1170,2447,2215,1197,234,1572,981,487,1284,2792,2978,671,2864,2338,553,422,2581,309,113,145,2878,1326,367,2433,1776,249,2681,1451,1272,1603,1185,580,1464,1342,725,1920,1856,1951,2470,2503,955,2813,454,2179,163,2902,1155,2350,564,264,629,1350,563,2011,1190,1325,1246,2936,736,1196,476,53,1155,842,316,5,2053,1415,1378,1994,832,2670,188,2812,825,817,2865,28,1836,1424,2127,367,1817,1841,1552,833,2421,2717,1135,2789,2476,2629,2037,2349,2535,2217,1350,328,1331,601,1583,1554,2259,1032,246,588,1870,1084,1360,228,2600,1916,935,784,705,2291,219,2131,379,2092,1603,1145,2710,2781,2680,1240,1582,2232,1433,161,1215,1725,2076,376,1153,2135,782,2502,412,2010,2041,51,870,1172,2013,1606,2476,2139,977,2218,1535,1607,1574,122,1799,1134,1095,1630,1892,2630,913,534,985,1771,587,2288,1232,1902,1891,1092,2244,738,2179,2296,2204,1878,960,2763,1589,1624,668,1255,2620,2924,404,433,2161,2480,1434,2180,1360,1517,1941,2215,797,2463,2770,1164,207,191,1649,576,8,2238,515,2613,1505,1598,413,1250,1658,2121,1981,1959,828,1506,2155,1205,1609,2681,1287,244,1763,2676,2511,551,368,175,1940,532,2602,2484,2897,639,853,536,1091,1822,2812,37,2736,1010,508,2266,1834,762,1353,1587,2386,113,1673,2134,233,2067,2806,209,2131,2844,2910,1054,673,484,1898,2598,1857,1579,2299,980,505,1863,2823,2285,2002,523,473,903,302,1181,1218,2110,879,1784,2246,179,2902,2474,1983,1201,333,748,1593,2645,1114,801,501,2412,91,1516,1388,1520,175,620,1859,261,414,809,716,1832,2613,1307,2909,247,2639,1527,2503,152,1316,1837,2962,1172,1808,2923,161,2864,1635,2475,1974,612,787,1564,1914,1372,2168,1003,988,2110,2428,1107,2552,2252,1256,1415,613,2701,2896,1030,154,1848,2030,2786,874,1212,1029,2800,2528,1176,60,525,2577,440,2441,2683,444,1416,2169,216,2767,430,2489,1744,2859,2863,2166,1882,2382,212,2273,1977,1047,921,1739,2070,2502,2616,162,480,442,2115,653,1987,289,1237,1320,1930,2412,2300,821,86,1219,1083,1848,1389,1424,927,1498,134,1452,394,1800,2834,2668,358,2543,2982,568,1063,1711,459,2698,1517,2165,121,1874,2208,1287,1613,186,997,2091,2373,2909,516,1961,1814,1015,1704,1806,2648,1913,2665,2265,21,2127,1747,2578,2355,2057,2321,1885,1053,486,1020,1443,369,2623,2180,1554,1007,2257,1216,1497,81,1348,158,351,324,2524,1549,255,135,442,2456,20,1819,1482,1674,1001,1747,2222,989,2998,294,1646,1638,2358,954,2688,1522,854,2680,2425,356,151,1871,2000,1162,881,47,2315,1994,2053,2671,1614,809,2216,774,2638,1394,479,705,271,2560,2466,958,290,881,1983,2169,1259,1804,2397,842,2118,1201,1867,52,1770,718,1471,519,2627,820,1830,594,647,74,1976,107,1264,1878,681,617,2358,2970,398,1538,2583,1722,2979,2723,2151,2755,1841,2001,2869,1529,1095,459,1298,686,1503,62,384,1949,459,2986,1141,2524,767,1179,1155,1973,1137,2538,741,1137,597,1864,2507,864,1991,1536,1169,542,1634,2779,204,2959,103,31,390,2124,1686,1740,1371,2931,1860,168,1613,2672,1346,814,2631,200,1714,392,2843,2629,1056,1141,2522,2938,48,1104,973,2817,1611,231,2152,2756,331,117,362,1549,124,738,2242,481,1363,2101,2245,2624,81,1685,2171,308,417,2567,676,1315,1180,17,1938,116,448,2213,2464,1329,2616,1839,2216,2833,1536,2081,597,2386,2206,2315,1608,2068,2422,2942,29,745,13,32,1685,1148,1659,2606,348,2083,479,1520,108,2574,1953,665,2623,975,1646,1455,1046,459,653,1373,588,2939,1904,2292,2907,445,1405,2047,680,2935,2816,870,236,1775,1172,785,991,469,2715,614,2248,307,1576,2722,2366,1640,904,1802,865,676,2520,2108,1260,466,2513,1071,877,2121,2023,2111,2810,1304,1219,330,1806,862,261,383,1116,1522,1106,2900,667,2354,64,2738,1193,373,1799,281,1537,1521,674,1286,2392,653,454,1975,642,447,1512,1418,2329,1925,2148,2905,917,1022,701,442,286,784,625,493,1704,876,2024,1328,168,1760,230,110,207,334,2442,960,2403,207,1764,714,948,1679,1364,2090,2150,647,1294,1999,706,1164,2946,936,2440,2733,1322,2102,741,580,1804,2020,499,1783,325,2115,1777,1088,2774,160,2484,1760,131,582,1200,2915,746,319,2749,1685,344,1841,2003,1414,2318,2308,978,2366,1414,2756,529,260,394,1984,1900,785,1601,502,26,2856,703,869,1059,1042,2430,2755,888,520,1424,125,2970,1302,1674,1131,1428,1298,2903,2589,2021,2709,423,2014,1577,2737,1044,943,2583,912,1772,692,1600,1153,2681,476,2901,2227,2518,2582,1067,1336,1834,1425,1379,1545,2435,372,1357,2829,1724,2758,1559,116,211,71,1612,2834,238,566,518,694,2661,2060,2825,1835,722,1491,150,2563,1435,2634,910,1355,2491,2204,73,160,1918,758,2113,2770,2311,311,1815,1155,2942,913,2796,2692,149,375,2761,270,274,1964,1806,2697,1382,2617,1319,682,450,203,699,2445,1795,2935,2697,2225,2585,2225,2216,1648,2320,2977,285,1633,76,520,2260,1701,1736,2806,1031,1412,587,74,1044,825,2708,2749,994,607,962,1907,2285,522,677,1054,2580,248,1128,1408,2415,2820,2275,2490,2205,546,2161,1883,2787,1831,2543,2593,89,1707,2981,1527,1003,1422,2140,318,2862,48,2502,2065,725,2321,306,2046,1852,2799,2149,1266,2079,2147,2839,2160,719,1498,1889,629,2045,1899,1174,48,1744,2468,281,1718,65,70,1644,1592,2993,2102,373,2735,1427,176,2409,637,219,1881,301,2014,1851,891,2293,1129,946,335,198,591,2498,921,897,1914,2521,2230,1109,976,2197,1066,1412,828,104,222,1025,2334,1211,1514,2691,243,2080,1121,831,2662,1962,1243,68,2669,1204,2618,2229,2246,761,679,724,2333,2299,91,1091,1990,871,654,1400,725,1191,1453,2303,1865,384,1571,1240,1183,1288,1534,494,2152,400,508,2083,1114,219,2801,2968,1105,1722,210,2656,778,1330,183,1170,816,1238,547,597,111,99,2681,2451,1689,84,600,2953,109,2279,2572,410,2075,1051,15,87,2854,242,1230,251,2570,1332,1300,2541,586,505,1664,634,2386,141,1408,1984,2489,2446,2953,1747,1200,2844,1416,736,799,2738,2371,2640,2281,2677,1266,1908,2305,164,545,2904,417,1801,466,2169,1399,2323,2798,1511,2084,1733,439,1160,1362,2541,2745,1531,1787,2241,147,951,1151,797,1688,919,497,2785,227,2773,120,973,1113,1905,1531,2688,865,1062,2681,2329,2456}

    21

    92

    Returns: 431237636

  111. {1786,2002,277,1620,2237,2805,2593,1611,962,2602,2192,2180,2800,1200,1350,244,147,888,297,2147,994,1466,1412,2808,106,2985,61,1761,1814,1460,2466,2356,2210,2208,1012,2331,962,2440,562,2507,2014,1703,1658,683,695,1741,43,2845,117,2008,1022,1686,2602,2891,1560,972,531,1472,1858,2733,2152,202,2874,1148,1334,1624,1819,840,1860,2421,1783,148,2388,870,939,1538,2078,2007,2651,169,1726,1379,1602,1882,468,395,2693,702,2414,2072,181,2589,757,402,2981,2450,2842,1662,1236,2184,1917,2223,1703,875,2233,1182,2001,2394,1586,784,1270,1179,644,2003,723,2888,29,386,1968,983,266,1202,840,2922,831,2163,895,993,1932,2011,2084,2958,2773,663,446,2504,2699,1067,2389,1361,2811,473,1113,2132,1410,2372,301,104,907,1581,2395,140,697,186,1703,2511,1440,1448,1956,882,2135,528,2581,211,2317,2434,514,2938,1547,2410,2033,2793,2057,2654,2971,2488,669,1137,2739,1466,855,1822,168,2423,1571,1940,1221,1785,869,588,937,295,2728,1414,1950,2498,1182,262,556,511,2886,626,2641,226,2368,416,449,2991,2837,2826,2512,1306,2448,2287,892,1311,220,2042,889,745,1958,2738,687,2040,151,2087,2604,1613,2220,2124,2323,1047,344,681,1390,1890,686,2609,1516,493,119,1666,1940,2990,292,1823,960,2419,2815,554,1018,2701,1919,2332,690,0,671,2607,191,1479,225,873,929,660,2705,2807,1856,1391,2034,1188,1661,2105,199,2957,1241,206,524,2381,2261,1809,357,2223,1211,1025,247,676,2688,1337,245,2484,430,2211,2235,2306,611,540,2629,1754,1309,147,1923,992,687,369,873,2941,715,462,2417,2192,712,2205,1368,297,6,2971,1243,2391,975,2916,2573,2241,537,1501,738,1777,2799,1099,579,2721,285,1757,2687,822,1984,1014,2290,2998,923,1323,832,763,905,2617,256,538,351,1691,2401,2961,174,994,55,1163,878,1861,2215,991,1718,2465,1389,1056,873,509,679,885,141,2976,1346,1384,1372,680,513,2186,2680,2912,2710,777,2690,1476,916,374,1985,1151,398,1321,2401,1270,2758,110,916,1855,487,1539,2472,1890,1067,195,2740,2651,323,1947,2183,998,2245,830,2399,800,1483,2708,2697,310,1319,1634,950,241,1417,2383,832,1493,1650,1276,772,2905,868,1904,1791,2325,1142,159,47,1080,615,2135,859,2259,934,1464,2482,551,155,984,593,348,2423,765,2521,1026,265,2383,1860,2623,2727,834,1486,2864,2292,1690,1951,1856,2557,524,2764,1992,1041,1162,737,1458,1965,2401,2680,810,1150,1102,1870,2000,1996,364,1900,2165,888,1162,2440,174,1903,93,1756,2181,1672,1263,3,456,2952,544,2979,271,748,599,40,827,883,2571,2146,614,1403,406,401,1184,2567,8,440,2799,232,437,1051,2135,439,2369,885,2135,574,2098,1668,2178,2608,499,315,1643,2414,1476,1170,2607,1886,2732,1698,1201,369,89,247,2032,916,2672,570,2857,2381,2505,1189,2154,365,916,201,2452,1550,641,1218,177,2533,2329,297,1078,84,2222,891,2964,372,341,2261,7,2500,541,1280,2682,962,2091,1173,1526,294,36,2969,2528,2869,68,2105,1655,860,619,1021,1595,130,2813,1054,417,430,1572,186,273,1631,1300,1327,1157,2883,756,665,2664,386,1432,1185,401,760,2023,2536,1877,1561,1418,1784,543,1859,2913,1848,940,80,385,777,1133,2054,2735,631,2225,864,428,1346,1404,1129,2397,315,706,906,1872,2599,2193,2085,371,2473,2102,1770,2837,1782,367,292,1493,2395,550,1142,387,1416,480,1119,2127,1025,2373,1934,1810,1659,13,1084,748,2869,1219,2126,1178,2409,99,2136,2385,1919,1724,2052,1497,2390,629,1906,2226,349,770,984,2354,1345,1923,1392,2336,2877,1578,1770,2490,2726,73,2719,2284,164,1187,1393,2939,2110,1379,2368,1091,955,2040,76,661,1462,1630,2122,2549,1232,2946,724,1327,1179,329,942,791,1471,2170,1410,1791,1206,874,2607,1727,1471,1857,1256,1626,2444,580,1226,266,1256,1753,1309,2277,443,2709,2820,1513,2987,418,734,2112,767,54,853,657,618,2418,2796,2943,2862,336,563,493,1990,2686,1758,344,2274,2234,2181,2315,900,2885,858,303,1039,2054,2598,999,1252,2921,2820,2988,1646,2880,1140,1209,1918,1162,211,560,2487,1697,1260,1907,1631,895,1154,699,2384,582,2447,252,1939,1822,2912,433,1784,1151,161,2966,2761,1142,2603,1292,407,1306,568,1783,1790,2799,543,36,750,587,2501,640,820,1885,1315,232,2780,2996,2532,2594,1669,1587,2102,1816,2473,1854,851,2076,377,1616,2412,2878,2795,1270,967,1314,567,1843,2889,2041,2174,1602,823,132,447,1193,523,2628,447,2188,1952,1576,1056,1556,1280,2574,2688,1855,2939,1400,543,1952,2904,2660,1235,573,2070,2496,256,2921,1150,567,603,1063,1978,2641,2126,1924,1805,1911,1963,339,1350,911,232,1828,1413,1340,356,2979,1364,2768,181,168,316,875,871,1620,2970,511,339,963,1728,892,2446,2755,684,2265,1999,2016,1267,645,1266,2314,1296,2237,546,1301,1736,1654,1585,420,1676,1874,982,2525,969,2839,798,2090,1634,2918,1073,18,156,1885,1498,2641,2622,1506,2367,2170,2311,2843,805,2333,1274,88,1207,1089,2090,2644,1152,58,904,2733,2880,1620,806,2901,2294,2707,2678,2739,1887,1322,1279,1333,1970,2826,622,2881,960,45,1324,2370,1255,718,1768,594,1426,2602,466,951,584,139,1206,1526,1985,2534,2671,2049,1579,1428,195,61,1906,1330,1890,2976,2405,942,377,2826,2995,882,1065,2861,2094,1590,1741,2217,1953,2495,2745,1819,2681,1298,2030,1590,231,1919,1427,2625,47,1301,2285,591,2337,1328,2777,678,1282,786,447,1082,171,1341,617,713,2911,1351,2022,2469,635,773,1880,1199,1689,108,1092,719,695,504,1222,226,2282,2167,1797,2146,2407,2,2985,2379,1327,2908,68,2698,1294,1895,2857,1626,1935,2189,2877,1976,2175,2585,897,5,2124,1993,1841,2286,1410,2196,2421,826,2857,81,1933,1477,1506,2330,808,2281,2041,2945,2241,52,2864,2468,2532,2047,2081,2504,927,1986,2701,2545,2829,2300,1527,405,258,2488,1230,567,1942,2667,2597,1885,1900,86,223,2439,1037,1793,2078,188,2557,1581,848,2434,631,1105,2721,1844,2719,1394,1966,2054,2482,77,532,1897,1955,2352,825,290,636,2531,379,2701,1486,1271,1424,103,2968,746,1156,492,2243,2610,364,79,260,348,2182,1,2307,366,553,2313,1632,934,651,1952,1030,1364,2482,202,2635,955,1497,661,856,2110,2758,2915,2524,1920,326,2269,210,2769,1014,1619,1099,40,2151,1534,1188,284,172,2743,70,1544,1356,2109,2264,1996,2950,2946,1303,115,884,1510,1759,652,2734,1685,666,1780,175,646,105,331,1765,2869,1671,1607,2303,1912,882,914,856,1605,1309,490,17,2296,282,2935,1679,1459,232,127,2010,1630,452,1495,897,301,1735,1960,1926,2341,26,2334,2154,354,1037,1170,2314,1517,1723,1875,2689,1306,807,896,2892,1498,2168,256,2447,328,1565,2552,1207,1893,2019,39,1343,513,630,1521,1370,1664,625,150,1799,1341,1798,2217,1805,2646,1566,2162,1178,178,2593,2823,2972,187,711,1979,2573,2102,657,2109,138,795,2049,475,1513,1557,451,1890,1569,260,2775,1631,122,2587,2059,1124,2199,1464,2506,315,1081,2515,2487,613,1775,2887,1277,1268,2386,1639,2314,2982,1189,2651,711,2817,548,2850,1401,2636,2303,1255,856,1837,2428,2894,50,1918,2888,2881,1456,1664,1914,1009,1104,93,1636,1164,2446,403,2298,2320,1354,733,1893,2122,1931,2567,186,445,2834,1348,2762,2242,367,2086,2447,66,1490,196,2273,118,2159,485,1300,1858,2864,2523,2325,2105,2526,1771,1873,1491,2655,210,1406,1464,2403,2668,675,2178,2263,2967,656,391,144,2940,1971,243,1469,1706,748,819,789,2866,1010,2153,2719,2095,929,798,1899,1044,272,2079,1798,1175,1540,2456,791,412,291,683,934,448,543,1613,1141,2116,1187,1860,2090,2583,2954,1398,1623,2550,911,1327,33,2564,501,445,1892,721,854,2723,1366,403,14,1087,2238,2377,673,1724,2420,704,1318,2088,412,1260,2315,1481,1943,692,2840,601,2591,250,878,893,590,579,2494,633,2879,1492,2486,967,2788,2635,2796,1677,2259,2299,399,2018,80,1139,962,2910,1193,2927,2488,1487,1971,1209,1758,903,1207,647,1016,2200,1903,121,580,1943,2253,2201,224,2747,451,2297,1654,1904,2145,900,1367,2423,707,2150,708,118,2952,2560,809,2706,2018,2148,280,1258,1053,2745,2228,2289,2616,1108,1369,171,2162,1498,777,2670,2366,2300,1506,37,2580,755,1458,2941,787,2164,1983,1631,525,2563,2671,2470,2964,1384,924,555,868,2278,2380,1919,1882,1946,2211,2468,446,1459,95,543,2146,1328,1208,1193,701,204,1428,1918,2701,2249,1522,278,2428,2866,2195,1540,42,938,962,868,886,898,163,2288,2593,494,1613,2802,180,213,537,2768,1446,2692,586,1832,2380,216,2549,2556,200,2474,190,1867,1967,1486,1203,1165,2006,525,2519,731,2316,2305,2277,2402,2487,1665,560,577,2140,585,2116,463,2443,1986,2982,1916,15,1500,1449,222,363,322,1040,1945,2482,1159,1042,1655,266,2189,1574,2941,1985,1683,395,1034,76,996,1631,1691,2827,2217,1118,2553,250,976,2647,1499,1606,90,1620,2610,2516,986,2480,2336,742,1449,1082,449,2656,179,412,251,765,2728,198,1776,289,2197,1397,2954,462,2974,977,480,1692,1985,72,2655,179,2633,197,1659,2294,1536,2498,2990,59,113,1118,1147,2174,1794,2078,1736,1846,337,802,2072,1576,2636,1720,322,2158,173,546,643,2183,1659,622,2090,1354,400,417,263,1405,56,1286,229,2566,2854,447,2214,2052,1709,2049,1506,235,350,714,731,2269,845,2138,565,486,623,580,143,2596,2340,1134,777,2620,2018,1600,2678,666,1571,1180,2869,2592,2146,2915,1689,434,2565,2674,1301,1861,5,508,57,1031,2933,2743,1985,146,2853,528,1841,1974,729,1449,54,2929,2002,1430,1084,1721,584,1758,2706,272,2867,718,2421,1813,2793,856,2145,1278,823,2963,2736,1050,2423,1522,1877,185,768,1674,1508,708,2915,1747,1671,1209,1226,2167,2,93,2278,404,1627,931,7,1802,1588,1826,811,1573,521,1699,66,745,1035,2502,1223,2662,1765,2638,2238,1772,1762,2932,888,626,837,1116,1079,1941,1045,1330,1149,89,2663,2795,2821,1994,1290,42,1317,1269,735,1734,2737,2472,1468,1343,485,1076,2246,35,973,2679,2317,1897,2341,474,1459,2973,2869,1032,1217,2796,757,2068,2374,1351,2683,110,2261,1350,827,1093,1640,1726,1623,639,1022,1740,230,295,2835,10,2633,2883,1142,1219,2695,2316,2588,401,1274,2992,1735,2549,1832,622,286,2890,749,1743,2314,2709,1831,2746,2876,682,2727,2546,2729,749,584,2835,1522,1441,1302,2324,709,265,616,70,2783,264,2703,2801,2744,762,1925,2386,1770,275,2217,141,1896,87,2528,141,957,1498,710,1166,1507,1649,2497,2498,801,2928,2099,799,1618,1611,98,2311,1368,2732,1854,386,564,219,664,533,1332,207,1780,856,1532,1371,1364,2946,316,1691,1335,404,2509,224,1096,2714,457,737,1758,472,2480,1164,959,351,438,597,1840,1358,2593,256,1792,506,1881,2031,1112,228,1146,2642,634,2144,853,1898,627,859,2121,2956,1921,1077,2958,2409,1760,1778,644,2805,2666,2802,1353,2095,1501,1206,1379,2947,1062,1454,142,195,952,1771,1327,596,752,1031,2371,1998,2966,1403,2160,2811,2984,1169,1086,1126,2829,1725,1561,212,763,1508,1247,2836,176,2663,2236,1133,266,1919,732,1408,429,1492,979,2936,237,447,2134,2391,2819,1759,1706,2107,24,606,866,943,168,2325,2423,859,1779,927,2682,1517,549,1807,955,778,502,1847,2219,1639,2314,1883,1070,2756,2452,1858,1141,2759,828,649,2030,1167,1954,630,255,2729,2971,2826,38,448,2718,2866,1484,2876,421,593,2380,803,1238,1808,2224,1156,461,559,1975,761,1397,720,976,1243,967,731,2684,1893,948,2269,1172,2272,75,2180,193,2143,1632,834,295,2058,2413,2517,2241,1960,1355,1835,283,2258,1307,1896,1202,2169,36,5,1483,2018,959,1679,2271,2688,728,1052,892,1388,1180,1607,2312,251,1410,2613,2838,804,2779,2596,1171,1491,2431,409,2415,351,2925,2196,1922,338,1508,2959,944,956,2934,210,909,265,148,508,1508,2038,1292,1313,2,839,2279,1109,1447,2157,348,1111,1116,1943,2977,80,136,1151,1320,1431,733,2756,325,1598,1236,1084,315,763,380,2293,2352,2781,2301,2406,1179,1591,2585,1755,1260,2260,2415,1564,2946,595,2725,166,1251,96,210,1048,335,544,2214,2247,1734,2705,2493,1815,22,2187,1805,1429,2043,1371,1529,1233,2403,1496,2061,77,2960,1552,2801,1652,2842,1562,1425,2105,613,425,1703,1364,1428,1952,345,1357,1627,2317,2856,1703,269,455,2208,955,1653,2547,558,542,2650,2330,880,1643,1077,1058,1759,2470,1074,1750,638,1465,547,1498,333,262,1519,100,2108,491,2191,1691,2212,2909,2578,2691,2122,2673,1935,116,2539,102,2427,2229,2435,2078,2178,417,1492,1720,1350,347,2482,2271,2359,1213,1302,1671,272,2008,2688,1670,1270,2062,2863,1796,2978,918,1240,1985,2131,1483,2851,2174,2085,2427,2321,1577,2917,2057,2497,28,649,499,2689,2014,2141,2686,1634,194,704,1394,448,1589,1232,2824,2319,2961,393,145,2040,2054,9,1599,821,2191,2317,2870,203,2098,1303,665,833,2270,2125,2761,2058,2835,2473,2175,788,650,273,1602,2182,754,135,1541,319,1352,124,1416,1866,1502,2369,2771,1153,1449,1704,846,999,1123,2335,1024,197,2031,2944,2575,2361,1785,2040,1695,1673,2009,628,1479,2237,996,1117,2636,1710,1410,1028,1083,2876,2549,2739,2924,1931,397,2725,654,1766,1379,2911,665,497,1099,2108,498,1379,2094,2572,2794,106,2919,2668,42,210,1842,2058,2751,2368,2389,2423,1671,2069,978,2811,2206,1365,1943,1844,483,1379,1513,1224,1187,2185,2198,154,500,2042,299,1085,324,277,1300,614,1429,836,509,1850,2435,107,1408,2102,1504,604,796,1176,2455,2796,502,2930,2577,987,2841,1484,2058,775,213,75,2067,2611,1760,1055,770,427,1559,2154,1624,2453,1145,1811,449,2966,2513,1770,699,2799,2782,1695,193,2323,1315,2188,155,1588,1712,252,1488,273,1924,1214,560,1251,2135,2432,1802,165,2014,981,728,1543,2610,2188,2786,633,60,1570,733,2135,2154,2833,2338,114,886,2398,2904,1100,1141,1075,2114,1139,1740,1630,1589,545,2774,2728,1884,308,759,601,440,1371,2125,2120,2451,161,46,1085,1705,1755,208,2770,9,1344,1475,1438,1051,2142,1985,566,2010,215,1287,2171,2846,2384,2869,815,1952,358,1065,911,1554,2684,1874,306,2382,2626,392,1483,2130,1247,1143,569,301,1339,2075,149,971,2316,865,2198,1854,2883,2555,1916,210,2250,502,2024,1531,2679,1804,2269,880,1618,1269,1535,493,1179,147,177,601,908,2613,1569,2865,2582,2043,1302,2510,2593,2989,2849,536,2266,2514,693,957,1892,2074,2897,1748,1236,1383,543,1819,2175,22,1265,939,1675,695,1462,265,2425,1814,2015,2902,368,613,1133,218,1576,1597,1409,1466,2029,541,925,447,2598,1503,698,2575,1309,2212,1457,1156,1453,2436,650,98,358,2355,2478,417,1041,1423,962,1115,2194,2920,2044,2713,340,265,1091,227,2435,1187,832,1581,2860,588,116,148,1517,267,1237,1781,1584,1331,27,1522,2830,693,624,1545,1965,367,1493,1621,2393,1145,2414,923,2156,1394,1261,261,2296,659,2163,577,2564,375,1186,1017,162,390,269,2997,460,1351,2874,1546,1841,2806,2451,199,1203,1181,302,2341,792,923,125,661,98,808,1039,39,2509,1312,2274,1732,1153,1231,426,667,2914,2261,766,1535,2321,2497,700,667,946,2799,725,287,1009,511,1325,23,2590,2765,1439,1829,1687,2099,1347,1071,824,1300,2622,908,1191,174,989,2724,1254,2384,2491,1289,1035,694,2340,570,731,320,1537,165,2087,1782,2180,482,2275,2972,1282,547,714,2564,2802,749,856,47,2058,1631,775,1812,1625,1890,1832,249,160,1670,1538,1631,792,1367,2224,620,1106,1684,1119,801,319,401,2814,432,31,1083,697,1360,2740,2374,697,2849,805,1890,1367,202,2637,275}

    {1536,2942,493,828,590,247,755,1358,1754,2459,1891,1352,204,1161,1957,709,238,879,1289,1814,726,2403,1364,369,1607,530,817,40,164,39,604,2705,154,1524,1690,1483,126,1604,2739,1455,614,790,210,593,2826,441,2662,2570,2454,612,1811,1948,1046,1571,936,2285,2237,2723,1395,127,621,1865,2094,933,2767,1259,2111,1498,805,1597,813,2084,1625,1545,2784,15,117,1907,2058,2441,1074,2619,2482,2027,755,1746,2428,1586,2849,1587,36,1045,519,1790,1737,2938,2657,952,658,1588,2954,2149,2675,1135,2266,2579,61,1752,2584,1121,1986,2276,1389,1746,931,744,1033,1459,129,87,2162,1693,944,519,2129,2309,1490,2174,2469,788,525,532,2939,2797,870,2869,1906,648,2818,1460,2819,2017,1205,1721,53,1374,2047,1426,2314,1165,898,618,1526,205,593,1271,498,1965,1892,532,300,304,661,1852,489,1889,560,861,204,2667,1113,2378,1180,1177,182,2591,2185,1159,2617,51,1134,2061,2776,2679,2676,2682,2597,39,2031,708,2006,281,1340,631,2303,2084,2,2204,197,1974,532,1096,2404,1447,396,1415,1088,1940,1379,2086,2942,2424,2660,1306,2025,2651,1596,1247,1113,1839,1465,514,1202,632,2736,145,2525,1685,1590,945,1204,1311,1436,1774,1099,2387,2723,1507,2647,1476,2939,267,2884,2752,1077,310,2306,2460,1741,2152,147,1897,2993,2001,1410,1538,953,1170,30,835,2726,2327,2596,2803,837,755,299,1655,1399,1583,1706,1457,2688,1065,2184,1740,2053,1795,1369,2571,451,375,1369,1045,773,1493,2980,2415,894,514,2458,1178,404,1339,1485,2899,2885,2449,1310,1152,1536,2086,2202,2660,2692,2254,1313,1037,2469,95,1372,435,170,1098,592,1567,1408,1085,2179,750,1313,2742,1784,1250,1931,929,1654,254,1576,2438,309,2828,2827,747,2178,810,1086,1227,1686,2838,134,1084,2985,1818,1367,2321,1063,955,1898,1641,1982,534,1568,2677,2766,1638,1448,785,1534,2688,955,232,1531,731,2208,1171,732,1242,958,435,1146,2102,1138,506,1656,1084,567,887,1731,1644,1048,2452,2540,652,1121,2272,321,2208,1538,2847,1938,899,704,716,2362,2901,871,1715,1678,1624,2569,73,2615,2351,519,735,2770,851,1845,880,2714,2381,413,1473,494,476,2624,1113,415,1196,2648,1273,45,510,1953,1587,2482,85,2859,1533,1478,2371,2598,2953,1094,933,1073,450,481,2711,63,1469,604,2935,2729,2632,931,1285,1858,236,1706,326,763,1720,23,1495,998,1495,708,1803,120,2297,293,1343,1780,2975,155,2688,2988,2774,949,2192,1719,1642,185,2139,1011,736,2962,2085,703,801,1011,1833,2857,2433,1493,1137,1660,1334,2690,1771,1281,1866,73,2867,494,1318,614,2478,410,301,536,272,30,1643,2098,1376,2737,459,1395,857,2094,1323,1489,185,1841,1575,2775,1220,2538,2664,1043,2778,655,2492,1990,181,2905,1479,2366,1919,2770,1722,2595,1401,2177,2093,2392,383,2426,2350,1105,1720,995,222,2863,81,584,301,1998,343,2216,323,1197,1537,1709,171,959,1338,1708,338,1531,2427,203,2869,1410,470,1476,1020,1959,416,1136,1445,1316,451,2866,529,362,782,1758,2096,327,849,1648,2245,2323,2448,1661,1244,2108,968,1276,2141,2037,1150,2711,2774,532,479,2012,2706,797,288,2319,1613,1420,2123,2181,325,689,1494,1873,315,1382,1234,806,140,1586,704,1402,2699,1493,1522,798,599,2308,2405,2428,2642,2422,773,2071,1223,2754,2332,2302,1442,212,1986,2411,1185,935,1253,1672,1622,2118,374,317,217,1704,1251,2615,1916,50,2633,862,326,1919,2312,97,1555,1630,1860,2983,2648,714,976,576,1576,1465,2062,434,2432,1125,334,2005,83,356,725,93,2895,2570,284,2231,877,1804,272,2047,2690,2828,524,771,2430,1408,2442,1856,1121,2318,2902,2681,930,463,360,1173,526,1890,1046,603,2909,2358,212,279,2485,996,1470,373,116,685,217,1938,621,1443,2709,178,818,16,667,1013,1356,1664,2073,668,1928,2197,2317,1789,1052,2092,2488,489,98,798,2088,1130,1305,1701,630,1028,1568,2789,1556,373,2522,814,1487,997,1272,1444,614,235,86,1739,1396,868,2991,524,525,2781,1812,83,2820,1738,2544,2348,2876,1614,1633,2781,1861,276,1767,2834,831,2176,2395,2020,1664,2827,914,2515,169,2519,590,494,2622,2026,2518,2586,1444,2812,1005,2211,608,779,552,1589,1517,2896,1461,2491,2869,1975,602,2422,365,2312,1349,2685,856,2280,2545,196,454,1340,1783,408,1270,226,2119,1031,2600,1249,1925,1535,607,561,2673,9,1118,2050,2570,1535,831,107,2751,2023,913,719,549,363,352,73,1356,1340,2597,1460,1020,597,2263,2248,1298,1364,409,2407,2569,2123,15,732,2826,1576,1648,1715,1672,1464,268,1710,424,2237,1463,440,2212,2314,1560,876,1758,1377,1820,2925,2939,2005,782,2381,1927,256,2720,688,1084,2046,2854,888,2612,2289,1553,2999,2345,630,520,1805,1048,1476,1187,2593,2463,1766,2620,1165,1060,128,5,2738,48,337,1936,199,2739,2558,2094,1372,655,215,1749,2430,2915,2607,2827,2723,345,1574,2985,2023,2242,1961,1949,2069,81,453,2781,2035,64,2055,1707,1455,1420,2004,346,1910,788,1584,2480,2893,400,2239,1459,1714,139,2825,1407,2779,1815,2471,494,1695,4,2172,2115,256,97,2738,210,1602,503,1492,1128,2094,43,999,1902,181,2359,2686,2127,2278,841,2679,1290,1207,515,729,2911,2659,2700,1274,2065,2058,1206,677,2249,1121,2052,838,2604,2907,1620,1270,783,1085,737,2667,200,609,1500,695,2160,1951,511,1742,952,259,2621,2169,2903,1338,2463,1336,750,38,1155,25,116,982,960,155,353,2453,768,2039,1302,2643,1599,557,812,1877,959,442,1202,1069,695,1817,1905,2860,2779,966,1688,2612,2022,1165,2282,1025,2090,2764,1419,2004,1937,1824,1329,1068,783,272,916,2284,1586,1731,2294,1674,2188,2117,2512,1844,72,1664,2000,1122,2092,552,2610,2782,404,2214,1018,2902,462,1464,62,375,2559,1586,1717,311,914,941,546,2155,750,2561,2036,969,2781,367,2971,260,2267,886,2677,2657,2203,988,2606,2043,2221,1778,2188,2214,2084,765,19,1025,2328,2225,41,74,944,990,2291,1649,399,1703,2965,1467,274,1384,2765,61,1255,2065,1506,543,989,689,2560,2492,2428,1465,1085,98,1043,2541,1576,158,955,1466,2212,2697,2170,955,1985,174,1223,257,45,1599,1908,1549,2722,311,977,543,2152,1471,2809,771,1678,393,674,2241,1878,2677,2415,740,2792,513,1525,2756,2906,2454,1860,704,1758,2176,2841,61,995,2874,2394,1441,2200,2701,2420,285,1221,2407,2190,1084,1750,162,68,1565,1465,1804,2684,847,1498,1844,516,2662,964,2875,1417,874,2196,2898,1389,1283,2077,2785,1864,2376,750,985,1231,495,2482,1548,2100,1012,2872,1018,2082,846,1112,2969,35,1602,110,1232,1040,1407,1569,16,508,185,2370,714,1408,1474,1289,2887,2445,2719,1690,2530,839,785,1841,2976,2606,1371,2094,270,265,1736,613,2170,2945,1043,2806,2059,1492,1797,2551,2869,625,206,1971,2046,1804,2551,1236,980,1681,828,1944,2731,382,1023,491,1851,2573,2461,322,739,1734,2054,1376,1680,1262,2831,2233,2636,1756,477,1260,1601,754,375,131,1168,2423,2433,1411,955,1120,2135,506,2726,2622,403,374,1452,920,630,2066,212,16,1602,209,919,1634,529,1520,2865,2537,661,1038,164,1871,723,189,2256,1303,517,722,922,2143,765,2056,2949,774,1384,1000,1151,1929,1279,2344,1870,2148,2097,2740,2989,2034,960,2871,2472,291,350,1040,299,434,1334,1035,2827,314,1558,2660,21,394,2079,2163,870,2089,816,1379,906,2114,2489,2400,908,1287,1259,2563,2649,2312,2607,1272,2498,2858,2766,2557,2588,2395,2090,675,1966,2851,2437,601,1004,2750,2342,1567,1090,389,863,1730,1203,382,716,2061,794,1517,424,447,1260,251,1121,58,2094,675,2255,1853,2423,781,1919,2651,535,1118,384,1892,1969,2612,2481,1605,1202,5,2691,1985,579,850,1845,2104,330,2794,642,2064,2880,2195,2770,1845,2306,2408,1324,2123,2901,890,1695,221,2527,256,1346,311,851,2841,922,1647,100,2814,1774,2880,832,403,867,1212,2094,2419,2368,2060,1346,965,1981,1379,473,1179,1359,1164,1485,499,2278,351,449,1581,2447,1304,826,1405,1915,147,970,2315,240,1054,877,2706,1511,1996,934,2685,312,717,1523,1758,1629,791,1592,982,2680,2294,2667,653,2662,741,2941,2568,1556,1580,1968,2753,1912,2528,2820,14,1374,996,217,1635,2951,2606,2347,2040,1288,294,1515,879,1430,495,1291,2219,2650,2054,1746,1240,2816,325,79,575,736,572,2535,1182,267,2202,69,1019,2548,301,279,2209,610,1027,1192,1464,1645,1758,1194,1771,597,583,900,282,1385,1487,649,91,1506,1695,2979,210,1319,2112,605,1488,1628,1383,1972,496,2857,1188,976,458,1317,2658,818,1114,352,144,2679,2087,2831,310,1381,2115,2003,2260,2304,1301,1259,850,2357,1517,974,2003,2494,2464,1651,2764,1881,909,2246,2448,2669,417,2447,1571,2860,2130,156,2123,2368,1101,2559,1182,48,2245,1076,2567,1478,2892,402,1164,411,488,347,1127,2618,1968,92,961,2827,2981,2468,402,1082,381,2897,298,297,1617,2715,2353,265,1026,2569,245,2791,278,1758,2892,2827,2376,714,709,323,484,1736,2573,1665,1246,2051,2047,188,1966,714,411,238,76,1178,301,65,2028,45,2790,2208,214,1607,1858,2854,1968,1006,854,459,2972,1325,934,2851,297,1763,396,2791,1531,1980,2416,2480,159,1998,780,519,730,2665,447,2532,897,1244,2714,2268,2566,2639,840,1124,424,2725,186,49,1203,1319,2285,1029,1551,2757,2733,540,2646,660,2236,769,233,2653,590,2216,1588,102,2658,386,2857,2357,237,153,589,2701,2747,2146,2979,728,361,1089,1001,1615,2573,1713,2938,1842,1923,803,964,532,242,2498,507,2465,2018,2895,599,1930,78,1814,2706,1796,1798,1284,355,2421,2810,2548,469,239,1918,2902,2704,14,1919,596,221,94,29,67,2429,719,2617,2604,1450,1098,2790,784,153,978,690,431,1108,1275,1876,672,2247,2838,2062,868,1985,499,2001,1858,1873,237,1411,587,2988,2554,592,384,712,868,1274,1116,339,1486,1216,1096,2748,758,2706,2901,2335,2285,148,2798,2822,2621,2052,2617,2706,2150,1227,1603,355,621,249,471,2838,2783,1190,2008,377,419,1758,448,2948,2931,1624,1104,1356,1215,2396,2251,59,1744,1061,2938,2731,2265,1160,630,111,2798,661,884,2880,2760,1857,1509,2769,167,2109,68,937,1570,1986,1977,1781,911,822,1072,387,1239,377,155,635,578,1642,1857,1432,1064,1245,1444,2508,127,2537,2604,2499,1123,2052,1179,2259,2443,1758,11,275,120,318,2012,2218,1592,2457,1090,467,1582,1110,2171,955,87,1177,844,1113,2032,1276,1862,1466,1988,2765,677,2827,1219,2595,376,1798,954,893,1065,1773,2754,478,1270,2782,1658,2729,2994,157,1395,2363,2874,16,683,1890,1218,1276,1517,1380,892,2730,1637,1903,1930,418,1822,1113,2731,618,186,2705,2529,1965,1455,1611,1909,1798,2182,579,93,1297,1084,1571,581,2325,1203,2168,324,2240,378,2081,2844,87,2787,534,2435,54,1057,2483,1038,1862,2344,1178,209,2541,1981,2272,2630,937,705,1919,2598,1905,313,72,662,2047,2557,2652,1667,2988,2401,1549,2476,2075,2627,928,2143,2693,2745,456,1107,2496,630,1422,2712,1112,2455,2075,1609,1367,1706,2475,1178,493,190,1713,2471,1373,1236,858,1888,1464,1464,503,1225,2325,137,2166,2576,1306,332,2128,2702,2714,1530,498,1865,2091,1844,2864,2760,2520,169,1158,1277,1074,893,1946,1221,690,305,2539,1407,1696,1195,2031,386,740,579,657,2171,1386,2211,1729,215,447,1162,1206,527,1827,67,2,2160,1552,307,2297,505,2239,1043,2972,1894,947,2346,2994,1243,2118,522,2851,2105,593,2996,1607,518,2714,1513,1756,1612,1228,1346,364,1276,2326,1210,479,15,670,1291,1417,1569,1266,1814,435,1800,679,1901,1518,2900,1863,2955,1375,2447,2145,2079,1911,1474,962,1,2447,2439,1854,1588,348,719,1103,295,2645,2832,1015,2434,1263,3,251,594,2365,932,444,1868,1997,2798,2075,2106,590,202,1822,1834,388,831,817,2100,2436,902,2914,2190,1065,1670,2852,1444,370,66,1458,1527,2088,1700,881,1806,216,316,1260,849,2567,1341,2074,1473,677,1827,2601,1302,793,829,882,1412,2528,723,2261,2775,2408,843,1836,590,40,68,2049,1576,2986,1385,1769,246,2075,2439,543,1143,351,465,1630,2812,2816,629,296,455,852,1456,2553,1607,2805,842,1247,1964,776,1336,2717,2365,1619,1594,2774,2213,1756,1716,2772,1174,765,2267,2621,242,183,39,1128,1326,553,751,1985,2703,217,1480,1995,491,2543,1652,1709,2447,1708,994,1036,1505,464,2094,543,2080,1266,1593,2891,180,1968,900,1482,1059,245,1097,2030,792,2462,1219,749,2133,1624,1751,1299,1257,1670,835,2500,764,553,901,1987,2209,1632,12,2028,1049,2811,2700,914,499,152,412,315,1624,859,1203,71,767,2388,1801,1610,2988,1973,1542,1733,1427,2855,1225,1758,1342,380,2605,2672,2542,32,2311,1905,185,2719,1321,2818,2383,2687,1459,996,2544,2349,511,2152,766,598,2480,2631,1308,213,803,1395,1132,1248,2362,1771,631,1153,1003,840,2909,2762,1674,1811,932,561,410,926,1913,245,232,1008,2800,602,1363,1694,79,982,1403,1935,338,447,1016,1682,325,2244,1963,1735,2296,515,253,1306,900,235,1300,1061,723,828,835,532,719,2343,1129,422,2216,1435,1849,2479,241,630,2314,2758,1836,1821,248,1596,232,1086,1294,406,2562,297,2372,414,663,2887,93,1777,101,1378,2013,2090,188,1919,2075,2849,2673,915,975,1180,2257,1810,107,1788,3,2923,512,97,1397,2021,1497,1465,1904,2910,1899,464,419,2375,2291,2298,2341,1787,2557,1829,1157,2679,359,1855,2380,482,1170,1777,2694,1903,1264,273,412,1387,696,170,2310,1821,2330,2845,1479,2713,1528,583,1171,1463,5,1161,2741,539,2313,234,2827,1611,1131,2330,1498,739,2910,541,1670,2113,234,2477,1976,288,820,757,2339,1947,97,2159,595,546,2882,323,1745,2873,1784,87,2762,153,2364,2170,487,436,691,694,600,1438,2988,20,1295,727,1327,2805,1784,2101,1798,2791,666,1362,2283,493,910,30,2026,1514,666,2346,1057,2062,1391,788,1711,4,1406,823,414,1535,2926,267,2406,1663,363,1167,873,1293,2860,737,2981,1298,424,2079,1758,2602,2793,637,2173,2085,2261,2174,1067,872,2455,1746,1865,1764,2874,2099,412,1872,518,1104,1155,551,201,375,2614,1220,1323,2711,2018,1206,2329,2722,2739,2232,1306,2394,2322,248,839,934,2737,1385,1592,1364,1325,2521,953,2538,1941,1392,2389,1783,931,2277,514,2725,1673,768,1856,1511,567,2138,1469,1198,1369,2360,2167,921,2482,166,1410,2383,1670,2921,2048,105,2511,1010,1085,1535,2531,2285,2680,184,2640,2619,461,2801,2872,80,2325,614,351,285,2786,675,112,2662,1879,1282,1830,310,15,1627,1024,2923,2741,646,1173,1802,2091,1989,675,2137,2723,2049,2187,2564,1204,2610,342,2202,2894,1471,2877,1487,138,1702,2629,2763,1512,299,82,2804,1631,2740,385,846,2028,1563,951,34,2162,1839,489,1588,2724,513,2351,386,381,2868,873,912,1451,2207,1437,1086,1433,1657,487,212,133,1007,115,1110,1810,1649,571,618,1869,2467,2317,2503,2658,364,2143,1421,2374,2532,1142,1949,2569,2634,2376,1444,579,1701,379,2349,199,1449,546,2316,2020,1855,1526,2785,933,1962,2295,2696,1838,1634,2872,1243,2227,2395,1095,285,1919,123,1676,1861,1056,1144,695,2230,178,2252,1066,1428,2770,3,1676,2978,888,42,547,2598,1825,2516,697,2796,2590,1841,1295,2716,917,2325,1688,821,743,2617,159,2376,2687,2711,2573,1627,1104,1992,185,368,898,39,44,2248,1229,138,2063,2711,1179,1991,178,2083,1230,753,2607,109,1608,1441,1779,2353,2314,1874,1854,213,584,1828,2937,1408,2045,2147,2880,2103,763,1183,386,301,1002,1936,2262,192,1434,2848,2350,357,2801,277,1723,1892,2161,1075,1483,2647,1903,433,360,1730,2661,1210,2749,1354,252,423,2170,2067,2237}

    843

    803

    Returns: 714727089

  112. {2328,1872,401,2168,1852,2280,252,1725,1682,1991,1587,1249,1317,2515,2942,1127,330,2187,1101,1033,491,1239,1718,928,1575,2913,1368,2292,1672,1250,2060,461,2892,1963,66,1561,153,1378,660,2252,2452,1757,697,2197,1184,698,1339,89,964,816,1688,1627,2797,1739,2223,1629,1007,2475,2911,884,2118,186,2788,1981,233,759,976,1384,1418,1939,232,187,722,2829,1051,751,68,2788,1581,2796,2757,1775,445,496,1925,985,589,1086,2704,2572,1311,2672,362,2736,1956,1092,1887,2789,2961,273,2222,2875,509,2639,804,2249,1434,2048,279,1566,1151,2816,915,1390,2776,1055,1650,1633,1798,2643,1628,2014,1804,702,1486,1419,1458,60,1543,692,1790,2292,2161,134,1849,1557,2564,2015,398,2804,176,2426,1118,2500,1878,1967,2752,1942,1593,1643,1166,1299,2904,2444,2911,126,524,310,806,742,1184,1501,1788,1502,1055,1416,1492,2541,1068,2164,968,124,256,80,1223,239,3,996,2311,33,1645,1327,1292,2589,2412,2312,802,1407,2350,2054,463,2691,1822,461,751,1921,344,1490,861,2575,2986,1552,2585,2057,2972,438,2439,2334,2473,1668,2745,1110,2506,2058,1631,366,2155,1457,2140,1794,2346,2192,161,437,1399,78,572,1354,1908,1580,1712,1254,884,1017,1053,2225,303,875,1088,2437,2096,754,1252,139,2851,1064,1416,2175,346,842,305,824,2962,2510,2597,926,1540,2361,903,1780,962,504,475,497,1834,2509,1768,2977,559,1222,119,1384,2450,1144,1122,2583,1898,2101,1786,2903,62,876,2137,1716,1100,1958,296,421,1199,2203,1443,1855,1040,2096,347,824,298,1710,2287,2098,2418,474,1282,412,209,2632,428,829,1618,258,1477,1378,1033,430,2735,2038,2506,2024,2976,2587,290,2555,2033,268,1643,1370,2054,2126,1640,2516,1979,2617,711,1624,2944,339,1125,1024,2525,2992,344,2355,1124,1264,685,218,2001,2559,1982,1591,2659,751,2444,1763,1940,31,1483,2135,1757,2106,654,1570,222,533,2104,1755,782,1742,1179,1972,1653,2444,509,2511,111,1913,2441,455,107,2477,1193,2905,1548,2573,2312,1299,1211,2003,1054,2114,2892,620,1405,2766,1290,233,1296,1582,2521,1740,1360,435,1995,175,1082,1548,1248,860,953,1404,1527,2325,952,850,1066,1173,1109,1696,75,1446,484,2667,1699,1607,1788,1848,1419,380,1074,2262,1357,794,2066,509,2709,2899,1679,1039,46,1423,481,2081,977,149,376,1211,593,2621,2965,387,1644,1872,1409,2173,137,170,2954,2806,802,14,1646,1693,971,898,291,2765,2926,969,2174,1460,1383,341,1613,1998,1405,573,2291,2667,2793,2185,1886,74,2853,2719,2318,226,1400,160,514,1162,1673,1968,2494,420,1104,1133,2088,360,2759,75,2744,2382,2330,1450,1397,252,373,2700,2809,147,2935,1537,2018,418,1889,2697,2259,2027,768,822,2588,1275,2903,1675,2873,792,2068,2632,1297,873,1366,1056,627,2629,73,1025,732,1742,1695,89,1585,2384,1561,255,647,200,1618,2492,256,297,496,1661,2387,1181,2241,2982,2914,2357,297,1808,1176,473,707,2280,2596,2935,889,550,2280,2836,1866,1968,895,1706,1986,2144,182,1831,1562,2042,1465,1491,1652,857,835,1125,628,1260,125,2839,770,1184,885,2011,671,2181,1722,415,1521,995,2998,826,556,1208,2526,175,1610,2968,2227,780,888,2105,2115,812,2244,982,2365,464,1412,2119,760,2626,396,278,2714,1368,507,1394,190,954,2294,1573,2302,2343,602,354,2428,684,1148,147,1838,1927,332,1580,2736,897,2190,1006,1117,1759,2854,301,1415,488,440,392,431,2398,1651,876,1104,1043,843,1300,701,2099,2601,2955,931,1149,338,812,1685,1901,123,2250,2234,611,2917,1378,2364,1972,1932,2061,1440,1804,428,2862,918,1400,2134,706,1670,701,2729,1729,769,1167,2871,2267,1835,1081,561,2000,2711,2064,1006,2610,1198,611,361,1930,1572,17,1871,2761,1670,1926,1940,733,1993,167,2135,2359,2390,832,205,859,240,1544,2564,1783,989,43,2310,135,986,231,412,1451,1667,229,2049,1217,589,473,591,2726,2833,631,2430,309,2146,1908,1443,774,793,2213,986,532,2624,2064,814,2119,1408,1091,84,1209,2728,1449,37,2841,2096,733,1611,1883,2911,2224,855,2805,785,110,992,78,2892,1874,283,1211,1384,725,408,896,961,2759,899,1512,1448,735,968,2473,854,2748,2199,2271,439,1690,1374,2531,836,1368,2433,2903,2282,2648,2038,536,157,39,1461,2946,803,881,776,1632,1944,2280,1695,994,1919,848,2278,1657,532,1888,2365,1121,768,794,2594,1616,1967,1389,2072,2311,2685,792,1867,2231,2430,2036,509,589,2286,1,1189,609,1504,708,115,1699,2770,1098,2430,1853,1914,2834,1925,2544,2957,1780,2339,171,356,1626,1028,1055,544,561,2822,1146,803,1766,532,512,798,14,2082,1709,2248,1102,1732,2659,2805,2649,1922,260,2589,1021,1105,2074,2757,2117,1119,1174,1252,1317,1627,2232,2846,1909,1037,2763,1650,1001,2812,2340,367,1930,2037,156,1177,2863,78,421,1556,1367,1024,748,104,2014,2967,1528,1792,1938,1231,67,1138,2694,1446,1238,1821,1371,657,1538,2836,1203,1085,1035,444,247,1493,1438,312,645,787,2017,412,180,1468,2407,2956,94,2778,1396,2457,972,2546,516,2515,1344,2119,1976,2868,2556,914,416,1224,2095,1677,730,592,227,363,2347,1142,589,1075,1536,2817,634,2679,762,2100,832,158,1309,1062,2410,541,2459,1494,1097,469,1245,762,329,824,2250,391,1789,1971,1431,800,2943,1024,1898,2024,8,314,1744,100,1795,1750,934,2914,652,1750,1410,2563,2056,930,2495,2864,2683,2897,2955,2674,292,37,490,2912,1694,1925,1812,2277,241,1946,1796,1818,2039,2423,494,1860,2610,1879,1719,1298,2582,706,1826,2833,57,2809,2922,4,1084,1514,2954,37,2564,1322,42,915,237,2570,943,2668,604,1569,2922,1268,1318,803,1437,660,2322,1463,2015,13,1288,2164,2769,1583,1004,1757,1543,1637,2928,1761,315,39,1252,814,1444,101,1249,1863,2918,639,2501,581,1622,1276,211,1252,2528,2814,1950,2715,2961,2347,2839,910,1147,871,1112,1156,545,161,455,2993,2693,1543,806,2908,2784,2764,460,813,276,2140,2354,2898,2406,65,890,1283,159,2233,1228,2149,589,2775,1719,1134,1707,2750,1022,579,2082,1069,1301,137,662,174,1208,1263,2984,1610,1040,814,1198,1140,454,1730,1910,436,699,1318,100,2426,1261,1224,199,2745,1210,2806,2405,1613,1291,39,483,985,1716,1312,2406,522,1012,2260,1515,2064,982,337,369,1120,2445,2836,1633,1496,40,1436,1486,2212,2106,335,1647,877,2465,1257,1317,620,692,189,2316,2048,399,2375,244,2578,604,925,1999,2916,1297,2466,2419,2805,1509,604,480,804,963,1426,2582,1753,1915,1471,1552,1827,2159,2729,714,1369,1732,2010,2152,2050,1364,169,2482,351,2400,1076,2354,1867,1743,1658,1716,1458,140,331,2160,1316,2180,1263,1998,2181,346,897,185,1072,1323,334,2131,894,2452,701,314,2120,2706,2441,1850,1149,2569,837,830,1562,2836,2143,802,596,928,48,574,344,89,2987,132,1866,346,634,1885,1028,709,1579,2426,782,1769,1113,665,2253,1865,2498,1295,1762,188,1382,1317,355,2070,461,608,538,1442,1611,2455,885,306,1160,122,2624,1627,1194,2566,2439,2727,2240,2662,141,2974,2337,377,7,1954,1343,1523,639,85,2191,2273,19,753,2638,1677,2083,1385,2676,1843,1081,1078,2677,1521,2424,1042,2141,1358,2561,2376,384,840,1197,737,79,2584,1072,1862,1407,2847,2464,2692,1954,2580,1516,295,2350,2721,905,1596,1976,2136,2733,198,496,2958,2814,1886,2857,1637,1361,913,67,2439,2263,361,1317,39,2634,851,2556,2580,2131,254,1226,683,328,1900,2342,217,1548,147,855,1592,1518,199,2053,1464,1491,1376,2791,1713,1564,733,2317,2755,1895,728,2905,1794,1232,2968,110,2691,1186,2298,35,1868,2229,8,2725,327,2239,2649,819,2415,523,1639,1192,2504,904,173,589,2525,514,39,756,1614,2308,1128,1919,948,678,2210,1470,1662,2075,2038,2222,1399,1897,1745,1749,687,2269,976,1181,2231,1699,904,823,1153,786,2820,1926,2611,1046,721,2182,1348,2461,69,2863,107,343,761,2620,2507,561,2138,5,475,531,1918,1975,1409,1039,2547,2701,1936,886,569,1965,14,269,1895,747,1753,1686,1561,2880,1131,2382,743,294,615,2610,391,1779,2085,1277,404,1652,1909,2045,1381,2320,2322,376,2879,2907,1026,1637,1287,2142,670,2373,1402,2470,943,2546,2354,2294,1534,613,1119,1463,451,1906,2208,1133,1348,398,2221,2091,82,2836,682,2536,1049,2106,1461,1308,2185,2440,1048,858,2406,2212,371,1916,2407,2883,1724,1896,607,2386,902,1907,1432,1230,1183,1511,616,1685,352,1992,47,2681,1826,2160,1100,457,2669,1229,1546,1932,2930,867,2486,2312,323,1473,299,2746,2909,2393,1386,1703,1643,2968,1173,460,1398,50,585,1782,2216,677,1158,1568,1267,292,1851,2195,1322,2497,103,1217,2649,2314,1668,1461,515,1413,1575,186,1512,710,866,674,181,175,1860,2643,140,38,1406,262,196,1928,814,715,1564,2319,2435,166,1208,2650,6,1652,1344,2565,959,2726,1776,2869,2488,559,1746,1010,112,2809,1932,769,853,2304,1224,834,1076,960,410,2163,442,1520,427,1574,1147,2950,2694,1717,307,1111,2212,2283,604,2507,411,258,2447,518,147,45,773,217,1097,2331,2539,393,1506,2789,681,745,816,1154,488,2524,636,643,768,2959,2909,1463,1542,686,943,1598,1095,837,838,1740,1573,1760,632,2691,1399,2710,2117,2904,1280,1184,2138,2917,1590,1463,1611,1605,2486,555,597,2001,29,2812,1403,2709,2081,1911,2744,728,492,1052,1891,449,1077,871,2885,1945,130,2084,2250,2744,2071,529,1223,680,2534,2461,1374,2534,802,2256,1082,1664,1965,808,567,898,2789,78,1233,1102,911,684,756,58,2937,701,650,2434,98,2156,2135,2257,2204,146,1223,1870,2208,2014,1305,1572,200,2179,2353,1359,2592,530,1152,1895,2040,204,2186,447,519,1837,1266,1943,2609,578,2432,1901,2816,2408,1912,1146,1122,2354,1598,2243,2506,2020,1284,865,2552,825,69,2992,2730,629,2962,2008,1747,2217,1570,2148,2951,2120,1021,2195,382,1823,2106,550,2885,956,1356,752,2578,2734,724,1994,465,1255,446,1690,2303,1224,577,2942,2744,1592,2485,1221,764,70,182,675,1461,889,1525,319,2955,1097,2092,2265,531,878,1702,279,1297,2802,1345,226,2193,2551,670,2024,2678,2081,2064,2934,1473,2248,2950,1115,2837,1901,169,1603,336,608,2376,2759,885,673,1773,2537,1000,953,1738,2512,1062,2734,1961,2435,1976,28,2940,2875,2396,568,2546,1825,1200,1263,1300,1461,2704,2991,2789,2184,2431,1676,729,796,658,1490,2567,792,2778,1076,1901,2423,1539,249,88,1318,1683,617,1605,489,407,381,778,2833,477,172,496,1612,2392,583,1247,2769,340,1103,566,1807,756,2993,163,181,1589,775,778,2562,731,1479,1923,1817,2018,1417,2016,1435,378,1804,879,1028,763,1074,50,1034,1151,2472,2778,960,1869,664,2266,640,2527,2990,387,1627,2106,2728,2906,2789,2846,2396,1697,2868,988,349,1570,359,1041,2379,1201,429,1753,2038,2601,1306,990,2187,2507,1096,727,1760,387,124,1403,2351,2507,1684,1414,1002,448,2743,2680,432,1851,1627,2019,1487,1856,2139,1964,878,1873,1432,957,1321,131,396,1740,1508,2269,1283,268,8,538,2622,1955,2417,1716,1712,243,109,626,192,728,1207,804,2286,2269,2097,208,1725,1150,538,2474,168,742,877,1680,1622,1815,662,1815,748,2397,1007,765,2045,2224,1441,1351,1606,1550,280,1514,54,1836,602,2592,2606,1502,2808,1164,1032,2346,2789,2472,897,68,1542,511,1328,1825,998,2652,753,575,1969,2060,2211,2618,679,2505,1931,2812,1258,2639,581,2256,566,6,635,1886,2336,1047,616,936,2704,295,1024,1176,526,673,1895,2105,1940,2645,2444,2792,806,2062,1520,2879,536,1840,1814,832,981,1835,1088,594,1276,327,652,595,1249,1092,2085,1267,210,2138,2527,2347,1432,2073,2943,2134,1910,2541,1607,2108,2088,308,2581,2107,2860,1774,2239,1940,106,2153,390,509,1229,342,896,16,467,2848,1669,2921,2188,762,1388,1549,718,2010,1565,951,1295,296,791,2545,2399,1675,2034,1093,701,313,2001,1356,1356,2471,2209,1392,212,1129,1024,178,902,2355,587,193,1672,2296,2935,479,2515,415,2615,728,1068,356,1165,86,1542,1658,1260,1832,1882,280,832,2484,249,1036,1815,1564,1186,2786,1796,622,877,266,1700,1482,1916,2926,2923,284,2823,1843,825,2496,37,2876,1016,1685,1899,1930,2406,2249,2731,1076,2704,1725,831,644,1514,2656,2034,1698,1988,259,173,1952,2350,42,314,2611,383,1754,2865,689,937,2688,1241,1035,788,1083,893,2163,1578,2762,2855,901,2989,136,1539,2954,2865,940,203,1991,1821,1189,1163,1365,177,2491,1237,2741,1964,2818,2378,2267,2964,278,2560,2082,1997,1824,835,1071,2890,1424,2977,896,51,2559,322,1806,1864,1714,2417,624,1524,2789,1949,1289,2130,2264,2443,2574,2507,106,2362,1392,1662,1590,1571,2335,1415,2171,1135,1059,1816,2799,2527,2249,2889,2403,2789,2685,1921,1985,1110,1686,1303,1857,868,1,472,1415,243,1638,631,2119,961,2249,1208,2968,2016,2389,2063,1562,2075,869,538,2606,747,847,2205,2347,2625,622,570,1311,954,1397,92,1303,1453,1685,659,496,375,1835,1920,1231,950,2708,2890,50,2635,471,2246,2269,1685,518,344,434,2588,1773,1537,585,2238,1559,614,2471,1580,276,2689,969,544,863,753,2092,517,2069,1276,1120,187,2673,2045,2675,1804,1947,2871,513,1362,2199,1,2445,32,1744,2182,551,121,1246,980,2175,2978,175,21,900,1821,1144,824,928,860,2832,395,291,2128,2765,2517,1851,1024,1931,2296,2835,1607,2949,1297,2388,1033,1292,69,1906,663,1987,839,2367,573,1960,387,2020,1674,617,1043,1883,749,1342,1350,2322,2274,2297,1815,2704,8,1801,1343,124,2229,2624,702,1079,2002,96,1139,2647,2703,2262,2933,670,2309,347,2626,1223,344,2789,877,1828,1834,2132,2604,666,171,1919,2024,2029,2975,909,451,283,1773,2655,2757,1316,2600,858,604,899,67,2080,1521,685,2045,717,2361,1459,2341,814,2088,195,387,1835,37,815,1530,1359,2855,2620,507,221,1703,1138,977,2366,2163,1883,749,1493,853,2385,784,541,2285,394,350,1050,2059,2884,1114,919,2550,2510,1212,452,2002,642,2518,2530,2194,457,1078,129,1048,2482,1430,2906,2923,2595,2731,272,1748,1097,706,339,746,2114,917,2038,1153,2820,403,2444,984,0,1065,2741,1929,1392,620,2133,1899,1353,810,2588,126,2345,1411,2089,243,1142,1645,955,2887,1174,2050,34,1941,2289,1107,411,1895,498,2982,2741,2099,1199,1611,970,2731,419,2974,1624,2819,2149,1519,1395,1357,2493,928,1378,1517,1153,203,2415,164,2335,1554,1355,1067,1193,2537,669,2705,2553,2787,954,289,361,145,2791,1399,2648,304,1270,30,1045,2596,1206,1088,1555,1645,1735,909,505,2797,2396,132,1436,2729,1098,2030,921,1564,2110,267,2944,49,83,164,1338,728,1752,1622,2630,1665,998,1468,1496,359,1469,877,1954,2618,2336,1957,1422,1461,1467,1423,1785,832,1018,2216,2111,8,90,1527,210,1188,1595,2553,540,2003,2199,138,2456,2621,720,845,288,1760,2725,1289,765,2499,2513,413,1594,2420,523,2417,1861,410,2213,1392,2096,2340,1742,1168,2135,711,2326,927,2510,572,75,362,877,2081,94,1220,1910,2913,918,1242,2913,2854,2309,1757,2264,1620,2050,2698,2610,1534,889,2874,2788,2115,1876,980,1396,2871,2177,2262,1954,2541,2657,1215,904,203,1319,2879,1174,1755,29,1251,173,2745,1505,1870,1980,2100,837,2604,943,249,990,116,724,2792,1973,2973,1296,63,1466,376,776,1699,1219,462,1474,697,2050,104,377,1615,2543,2334,1588,833,1940,780,401,1809,2631,2284,764,1973,1950,2409,508,1273,2282,866,2161,874,1275,497,1271,939,586,77,504,750,2793,2639,2801,2446,2489,2027,476,1877,2960,1482,2944,1993,2259,827,1245,224,246,1128,1951,588,238,1188,1821,2394,552,2603,2715,1728,2174,425,2962,2767,971,481}

    {2085,1613,1314,2041,1089,521,2272,164,2095,1240,209,1299,2932,2887,2990,2506,730,2953,1106,2284,1419,204,1972,2487,88,1565,378,309,1004,2255,412,2087,1354,172,676,2178,1954,389,601,1584,2628,539,1217,2918,922,1529,1647,850,2532,2926,691,1165,1247,289,278,1076,305,1115,384,1047,16,2214,920,1537,1475,1561,1510,1549,2716,1775,2258,2574,1511,1387,2349,254,547,1867,488,2223,2470,2016,1674,1793,2995,2081,2654,118,1512,2530,1137,1866,1656,1474,2048,2969,2716,482,1531,1893,1895,701,1766,942,472,2807,386,805,106,919,590,96,2339,2747,782,1288,569,2790,902,154,2885,1608,2927,2486,889,1854,668,2629,674,1203,302,2054,2004,2557,318,726,2850,771,1091,75,2690,1788,2142,703,2001,828,2311,506,1383,582,1696,426,576,2727,2356,0,2347,592,359,1293,1724,1985,1330,428,2725,950,1908,1805,1228,1325,745,429,1967,1893,288,1024,1212,481,1541,1221,2024,1175,250,781,1420,1452,1081,2295,1570,2269,564,1021,173,383,2971,1285,1563,932,827,1074,932,753,2444,163,1700,30,608,209,66,2026,17,1817,2357,2028,2902,1317,2478,2312,1460,436,2278,1028,2255,1023,2501,2910,2641,451,2895,2881,671,706,106,910,2495,2759,1867,750,1138,1520,2756,697,2142,2913,812,1140,2712,1905,2269,643,1080,2300,1177,2506,852,2323,731,1307,2872,1377,2566,648,55,2707,1306,700,712,1817,2078,1447,1133,2347,2459,1621,2308,9,24,1583,2426,1467,1270,717,1907,2891,1401,634,1435,2381,2985,1840,2503,650,1545,1766,2127,949,799,1159,2052,1689,281,1930,544,1567,1001,213,2789,73,395,2840,448,1352,2254,2497,1318,2269,744,1297,2956,1441,2312,2619,1605,2828,2757,2470,957,902,2069,1997,1454,2589,1611,2221,312,2300,2151,156,2194,656,1681,1184,2178,945,478,2619,2597,1747,96,353,2258,2765,1704,139,753,2072,1378,1656,690,2566,2918,2115,1239,2873,990,634,2280,327,1185,7,853,1880,1974,1017,2601,2938,802,1493,750,1168,2989,1306,495,626,1157,2188,1811,1895,1824,387,2443,537,813,1554,2508,2005,1856,2710,1658,2947,194,688,1008,1357,2522,2387,2700,1943,1775,2149,209,79,11,421,26,1583,902,423,2692,2971,513,1785,1992,1253,2714,1164,2142,2138,2965,1170,1198,1751,258,1654,725,1291,1025,2970,243,488,2108,1928,2135,1704,703,2333,378,1657,1756,2552,1833,2619,2988,2208,661,1403,1801,973,2204,188,1834,233,1963,2220,2059,1628,8,1497,1522,881,1766,705,2879,1405,1772,2878,2300,1791,2407,282,381,2764,1199,693,2250,324,739,1451,409,367,2193,2685,1924,400,414,10,2670,1272,1405,1950,2956,1507,658,1047,59,1699,220,1393,531,2716,2789,2291,509,246,7,2740,426,445,1617,1795,124,2976,694,2411,2356,183,1035,692,1409,2095,2803,1340,1272,377,1462,2346,49,1790,421,2948,2054,1741,197,1869,1595,1910,608,1228,1641,1883,1253,94,1685,1895,2057,2495,2568,1631,741,1898,2233,613,2627,942,1445,2655,298,2894,1223,1666,257,475,1052,767,1017,2916,1298,2648,1540,2914,12,2051,625,1761,1954,1061,729,877,1559,1937,1374,64,1682,879,1647,695,1062,191,1227,231,1884,2026,1015,212,1288,2031,1409,2247,2458,1847,909,1366,1914,1136,517,803,2412,2923,1039,548,1552,61,1333,2161,2821,2194,47,2630,373,1781,2513,1287,842,2456,1029,1295,1447,2501,1091,2275,1725,2366,2795,1576,1255,1794,897,422,2109,668,142,408,2088,2242,1442,2954,2308,243,2367,72,2557,1034,728,891,1038,2583,1186,75,1245,514,1449,2252,683,87,1211,2038,215,137,975,1619,1737,1924,2554,2917,698,372,2541,1804,1727,2566,1211,317,1754,2814,1138,1086,2371,405,287,565,2935,1983,2437,890,653,1256,265,2891,2598,820,792,2913,1171,2866,794,2713,271,546,1935,1734,33,2912,1357,2556,2122,1035,2,215,1410,1399,2442,1466,561,2839,1085,2359,2887,2997,1271,2759,412,2482,2600,2642,2877,2829,697,2121,249,2832,210,1402,443,2119,880,685,2441,2368,1009,518,2977,1590,1099,621,883,1321,1911,841,2720,1209,769,999,2738,709,1458,396,2534,2432,2090,2424,1313,2770,2465,1525,571,2195,1625,2773,1721,369,2018,1684,314,1552,2235,2135,1263,2919,984,896,2924,995,2065,2675,2646,2207,2607,1423,924,217,2502,589,1152,2200,877,95,1471,1821,2980,1190,912,2939,234,2249,1894,1375,14,1901,2774,1652,1559,2648,2648,646,577,2448,1488,1496,2250,2319,1104,120,723,75,320,655,817,2310,1498,2767,2285,2630,382,2896,1610,1050,1048,2601,1119,2165,2270,1026,576,954,1830,170,2914,2105,2704,2872,1462,1196,348,2619,598,2094,1690,49,898,57,2497,947,1699,1048,1264,614,325,583,453,2794,1595,548,18,2074,1368,2844,1629,133,2595,2577,611,423,2184,2338,1859,1592,1872,554,1694,1610,2194,614,1180,2772,2653,589,407,500,495,2919,1777,2027,2422,2429,595,1110,1967,1374,2915,2887,49,1086,1340,2234,2341,1715,2294,466,736,1877,417,2989,2399,1888,1039,2267,2945,459,171,928,846,2067,2279,2781,1356,1870,1269,2199,813,619,1829,2668,2614,294,2855,2395,576,1454,790,772,801,2629,1905,470,1370,2887,1243,53,2831,2877,2706,692,2319,1403,1431,422,1809,203,2231,1905,2462,2056,1383,928,1181,1884,2413,325,275,973,856,2996,2659,1843,551,1870,76,1406,1547,2567,2627,2749,1864,2537,1442,155,813,2455,2826,2538,1221,2855,530,1194,2660,802,1419,2605,140,1161,1105,161,762,448,1366,273,264,2898,605,1104,2483,653,422,2887,144,684,2704,1371,2438,1213,221,573,487,2451,444,561,1331,2391,987,2619,991,2900,670,1013,743,2954,2877,322,2699,566,823,1725,1321,31,712,94,814,497,1372,532,1344,2290,2454,2542,1833,1050,1311,892,2445,1174,1084,1397,2593,1299,1568,178,2434,1543,1263,2894,2481,1771,264,29,1007,270,2127,2196,1711,1493,528,113,651,692,1622,2123,1341,2545,1305,314,2490,373,1172,2783,1032,995,2728,1705,2685,2025,811,1308,1409,195,673,2429,779,1167,2632,178,1187,2852,1359,2276,2386,1461,2780,283,425,1784,2917,1102,1553,1210,2018,1003,928,2404,2755,2913,118,453,245,1499,2402,1189,753,2429,1220,1218,1435,57,376,509,2392,1066,839,2902,2227,1603,2476,1580,2416,982,252,1005,1145,1766,1481,58,32,2851,2358,492,2472,1754,1412,397,1405,2097,2751,1886,2820,509,727,392,52,1425,128,932,2058,379,1399,1817,2962,2768,368,88,1887,1310,1514,1365,1818,580,2691,2731,561,1738,3,718,1359,2470,2994,458,2769,2039,221,1223,675,923,1671,1990,1909,1234,1117,1248,1972,117,232,1344,2427,88,506,2034,2913,915,2825,2262,1276,743,2765,2657,1580,219,1959,2254,428,206,2172,780,790,2718,1775,2151,1023,323,1314,1057,1436,2039,362,2647,2624,1875,2304,1483,1297,2920,584,1435,832,2187,722,184,1736,2057,362,502,2110,2602,147,2911,909,363,1191,2888,2026,2590,1895,120,1804,1692,2419,613,283,1406,1731,1791,2507,1665,366,1126,868,862,497,2370,70,2514,2170,1680,127,1881,1950,2599,824,1265,2938,1680,1834,1813,143,2770,448,2210,1017,321,261,693,1324,2483,129,536,2651,2483,153,625,953,2454,1193,1444,1226,2744,684,1516,37,1974,1893,1649,116,1193,1757,2011,546,1527,318,1787,1974,2079,1984,2755,1895,2728,485,2104,2281,1105,1819,2260,321,350,1336,560,2145,908,2480,2268,2873,1512,825,1560,583,327,2946,339,2671,1610,216,2681,2935,2094,532,422,1180,1513,2533,2549,859,2235,978,150,1433,2963,652,2666,1592,1674,1883,1406,599,1903,2387,540,576,2999,2788,2219,2637,2165,1663,627,1968,1894,2876,1081,2241,1155,1989,1991,1099,1320,1427,1569,300,1872,684,2006,141,580,370,1054,22,344,2595,319,2139,399,2512,2283,2215,316,2740,223,963,879,1702,760,2954,111,633,132,2911,144,240,2002,786,1359,610,2721,140,380,840,1781,2093,663,2728,1399,1147,1858,2103,1213,439,2523,2353,2366,1391,2047,560,2793,740,1094,1740,626,2730,2738,1337,327,2478,2414,1176,365,2591,1845,670,1841,701,1678,933,2476,1561,1105,2764,1326,2971,2167,1090,720,36,1778,1512,368,543,1934,2793,1914,2824,344,980,1768,589,2414,2363,2777,1602,1033,883,2869,1263,2344,765,312,995,981,1186,2262,900,2035,1597,2161,1813,289,1832,1598,1014,148,339,2269,42,1774,1221,2228,2012,2940,1277,2877,1012,347,1584,1337,650,2519,345,1790,2048,1303,1800,197,916,2395,61,1383,678,2453,1065,195,1406,2558,1664,1526,1794,387,2352,2441,1231,1174,2966,2022,2760,2086,2856,67,911,1353,166,2125,1817,1145,2392,2013,2110,2754,1182,381,1217,804,2471,2052,1216,2702,1533,963,2088,869,1380,2007,1538,2815,2216,2923,2251,1953,904,2952,1309,1753,2428,1155,981,214,489,584,24,488,1379,217,175,984,2426,499,553,2684,1924,2964,2463,984,578,728,178,406,2695,51,631,36,2677,1903,1692,1635,365,1151,2189,865,2632,852,1399,2250,950,2832,2832,2436,2497,832,734,382,2789,1431,881,811,1469,721,1726,2237,777,2124,2502,1432,1682,1244,357,1750,60,2162,1293,2122,1664,118,1733,1600,2925,2758,2240,2443,179,947,2643,2395,197,2464,397,940,436,2667,2102,1904,1657,2348,596,249,81,1296,2395,1195,249,1454,1415,1003,630,2095,2663,673,2014,1334,193,856,1356,2913,2214,496,2157,1547,1123,1438,433,252,2842,1313,1051,56,1236,1710,2508,139,338,561,1577,2519,2682,2529,2230,1484,747,1032,750,2456,1605,509,1255,1815,2840,1570,1179,2070,2837,408,617,2306,276,2571,860,603,638,2510,2046,2487,99,398,303,217,451,1807,2329,2700,1110,1839,108,1630,2812,821,2460,421,2435,2548,502,2979,643,945,2857,901,1406,2163,1753,2206,1009,1708,2779,496,1917,1405,307,1088,1193,2602,2767,2748,2759,2282,906,1362,2767,1747,535,1429,498,397,1473,1803,210,2201,2285,1962,859,54,2134,1882,499,1856,1763,2514,400,217,2515,2624,15,935,1048,1623,2989,2789,813,2305,608,767,825,1758,1700,114,288,939,1535,353,2333,2531,1252,2913,2001,825,1770,176,2613,2113,2876,1562,2870,1255,2874,2619,1836,422,413,2238,2778,1349,2918,2319,702,590,990,967,2436,2072,1888,2938,1645,1815,197,877,1004,471,1121,1710,883,2858,1253,2992,2886,2688,1499,946,1810,1190,933,2430,228,924,1186,370,171,20,1214,1024,1454,2010,2138,1616,1465,958,2129,1108,525,2827,1839,1087,2893,2892,233,2346,2459,1283,554,1557,1221,1172,2665,2406,228,2162,2163,1967,2664,1852,2479,995,2077,1883,2722,54,2980,2020,2789,1924,707,2082,1295,1428,2608,572,2287,240,1248,2910,1183,1456,902,2239,1575,2332,1020,418,235,1701,1596,2894,2834,205,803,277,314,2290,2724,423,2301,1068,2232,783,1856,1575,2742,2891,1788,251,326,2813,2725,2472,27,1507,605,369,2747,1997,1078,832,1977,3,1656,1116,1849,1277,2579,2260,1970,2048,2387,1357,2369,596,1604,2498,1205,966,548,2322,2515,258,4,538,2843,75,2537,1374,1842,1844,1690,2993,94,2360,2299,1296,931,366,1371,140,1846,2460,1748,2844,2687,504,1286,472,1183,1660,1507,2110,2293,2366,518,1373,1044,2859,1390,1459,2360,2054,1332,1835,2793,44,478,718,2544,1141,664,2168,882,1532,2923,19,2771,2034,2018,1813,1052,1377,2739,402,2198,941,1601,347,413,2098,175,713,1933,207,2176,1571,1750,2348,279,2425,2901,2372,2142,667,2292,1480,1463,2365,1598,1104,1315,2367,1433,2151,1001,295,458,1149,1070,1714,179,1006,434,641,486,2514,1259,13,871,623,2935,236,1742,246,1260,1027,2895,2839,2283,1335,268,2450,2174,811,749,2874,362,698,2123,1575,361,2834,2170,542,2092,2230,807,562,979,590,1249,1657,2321,2364,1940,1446,2871,263,2569,2339,719,997,345,2408,2781,1895,2478,1890,1726,2456,679,1564,1412,1833,286,20,952,2346,1825,922,2519,2169,1073,627,849,1775,419,1845,506,1900,1623,963,2088,1436,40,2470,2383,2810,912,392,2307,1413,2396,1396,2811,501,2722,733,1066,1058,1357,1384,2189,288,2424,2112,757,2519,25,2144,2586,137,1340,93,864,364,602,1599,1689,1610,965,2452,151,550,2863,2700,2665,1354,2158,1252,1950,2644,907,2449,2882,79,1403,2845,2612,829,622,293,2209,2598,1677,97,1277,2406,1347,2716,1914,2226,2576,1778,61,2936,2989,142,105,2038,2374,2168,1432,2401,2486,2009,534,428,724,1950,649,1163,2798,641,189,2341,1876,683,1503,94,1948,844,1930,2737,258,1277,274,2020,1385,2238,1974,1678,551,412,1442,383,439,420,711,523,1901,2092,2468,1485,1253,1476,2021,1799,704,1655,2616,1920,1645,2144,35,766,1022,2181,2064,1363,2811,2071,1610,915,2640,808,2753,1818,2156,621,2447,1868,705,386,1978,2461,1252,2488,2129,2721,1659,2923,1624,1384,864,2137,997,1546,1665,2211,388,1865,1553,71,2395,2518,2675,1783,2898,1930,1568,813,424,812,300,1358,1627,194,220,551,2981,2236,1377,2253,2540,623,1202,2360,1067,1740,2616,2588,2452,2689,2324,2135,586,1127,111,964,1296,711,2940,2633,1458,752,122,2677,2113,2032,1043,1031,2339,2124,2095,2300,711,1741,2206,1235,1103,1233,557,2484,1767,2875,818,1716,2798,376,660,1193,1930,253,1346,445,2556,1634,1720,2729,2938,1966,2643,649,999,1996,549,1604,1820,2249,1033,2623,2846,475,940,2421,1439,1503,2116,2314,2260,1278,1797,374,78,1764,1015,385,1063,1931,116,614,723,2913,2862,1649,280,1184,2495,2225,1551,688,1939,441,755,2424,2820,2717,2503,1911,1657,1609,769,2147,797,1008,672,1505,132,2530,205,2339,2023,102,2566,2887,2941,520,1983,221,899,765,2219,2110,1140,1262,2937,2239,1577,1130,400,2096,1357,1902,564,1294,1132,2374,1143,2469,1302,540,1086,1099,1437,1480,339,2790,1019,928,41,606,2044,870,1419,1067,1408,2692,174,625,2318,866,2830,1717,2038,1277,2327,2861,332,1664,2183,2761,2163,2166,1691,2315,2933,311,486,1684,809,2052,2043,2809,560,406,1441,1802,1357,23,2142,2886,2871,1427,2694,1229,1768,1066,204,2535,397,856,637,2365,969,944,2867,2924,510,1661,2354,227,1327,2748,201,2055,902,2464,2194,1354,1396,2757,929,1186,480,1395,333,1338,2391,1765,795,2665,1867,1968,1408,1610,1173,1391,202,2617,749,2921,1181,758,1876,2843,1243,1169,2757,1422,1146,872,789,230,1977,2136,384,2260,1358,300,2245,54,573,685,2476,1449,2636,1925,1558,1407,456,1693,2732,2327,387,1866,1184,833,1449,1279,2146,2709,887,381,2135,1833,2585,2110,1230,1312,563,1139,926,2509,234,96,33,1496,2151,1008,635,217,331,165,225,1661,1253,1937,1688,926,2877,366,2519,558,466,527,2160,248,1529,935,2018,1876,2871,2689,522,2576,362,2980,618,2750,578,2441,1399,2624,1704,242,716,2696,853,2849,313,793,2300,2177,824,1201,2929,2395,1274,450,2424,1801,688,2917,1545,638,1417,518,2782,2092,411,2426,2637,2014,157,2462,1322,2983,358,1201,1399,2562,634,527,2117,1356,1687,828,2076,493,2275,1892,2800,1359,967,2791,503,1883,2356,2838,1060,2940,388,2600,812,2218,1495,59,2439,629,2112,441,2867,2224,858,1225,2377,842,325,604,1423,2809,797,2719,1177,2313,880,1338,1411,451,1281,771,2116,417,2576,1586,552,536,1304,2299,823,824,2498,1705,1030,1278,538,2150,468,1329,2661,1472,152,974,629,765,2785,377,891,1648,1106,714,1178,1204,162,1723,978,1870,285,1230,523,527,281,1017,1538,1105,2261,555,2217,2467,624,1500,268,1478,2199,282,696,1088,2520,1653,1226,2380,2010,1058,2588,2686,1067,760,1636,986,475,1659,2723,1033,1715,1289,738,1011,2360,58,719,2561,969,938,902,956,737,2288,2249,1844,1489,2574,904,1012,612,1073,600,532,634,2510,513,582,2354,1291,2202,1925,1421,1455,369,2931,1560,1442,2154,2085,2980,2497,2218,91,1521,1993,1102,2658,1869,1324,1642,1460,983,993,2643}

    2845

    2497

    Returns: 943228591

  113. {2649,2622,2180,1019,1853,381,2278,1737,743,594,1853,272,1675,1709,140,904,672,268,2428,2113,246,683,593,95,2218,2219,2638,2794,2304,1966,1109,1265,2783,2513,1721,77,2634,976,863,2431,2907,839,2024,2979,1169,2863,101,1261,1275,1740,734,1988,1364,2658,842,2255,46,2779,1939,881,2534,2347,1604,2462,1481,590,1339,1886,2360,1987,129,1617,227,1799,669,2848,1053,2233,2568,778,2107,2275,509,2088,2956,2225,896,2629,629,559,600,1756,2500,446,1338,2294,1433,1257,802,1283,2700,1944,906,67,633,2403,1513,745,1527,642,16,2139,2220,139,1060,432,1955,2180,2246,812,2826,1312,216,2143,2544,2253,2608,2703,2120,1796,2102,2403,2268,1926,2185,1144,1383,1992,2364,1905,1837,2640,1505,650,2940,457,323,2469,429,2662,2889,1564,538,478,1405,2541,607,289,1354,47,1770,1380,2774,2937,1185,2994,2178,1348,2105,2705,121,1837,1274,70,2505,590,1136,2729,99,2717,1976,962,2659,2653,1290,2816,2488,725,1355,2742,2313,2319,1179,87,2439,61,2143,366,2366,1035,1946,2808,286,1980,1815,195,2153,2599,10,1367,2845,303,2143,68,1826,1036,1672,2540,106,1734,1372,16,521,2532,1724,2808,1149,519,320,728,1769,1167,2473,503,948,2817,1280,2701,2522,2686,2084,1784,389,686,1549,1338,962,2781,1792,1955,400,463,239,2497,706,2056,697,1453,2925,2722,2043,2590,2587,1242,1738,2699,1532,333,1200,222,1425,376,612,52,2562,1768,1416,960,1562,55,2322,2562,1896,2805,379,2086,1771,1627,1815,1073,1612,261,1582,1834,2375,1853,586,1880,352,2011,2467,1900,1605,2723,2238,2486,1044,371,1666,1036,930,835,1839,2876,669,2110,1583,2256,2295,1205,1618,1787,2062,773,544,558,891,2959,869,1716,1424,137,1063,2953,1858,1070,1824,526,1001,585,1855,2649,1951,1260,889,247,2908,2005,705,1025,602,748,298,1045,873,2739,2830,913,1990,1213,1211,2429,781,2371,2879,625,951,169,826,2136,2032,1530,2992,683,2472,2275,417,406,1906,407,2453,953,785,539,525,750,197,1196,1571,2108,735,2776,903,2032,1316,1698,76,2630,458,2759,271,969,1576,2827,1388,1919,2180,2640,1933,1638,2957,1479,1046,2044,726,1817,849,715,929,2747,2504,2485,2016,259,932,1657,1112,1427,1272,577,1293,2106,2428,1118,851,896,2128,2773,1919,2884,2745,2533,325,301,566,1351,2680,2016,1609,2462,630,130,2627,78,2793,2340,1074,2817,1682,1483,2307,46,1891,2447,861,2375,1759,757,1437,1241,1448,1261,2139,208,2872,258,1285,711,606,2975,70,1586,1585,4,1767,733,775,1610,627,2567,2576,502,2415,2952,436,2728,967,243,943,2367,1274,2251,2851,921,88,1517,2052,2046,2096,993,1079,2105,331,2228,723,1859,1085,2598,1419,2678,444,2836,2809,2035,544,2517,543,1033,436,1473,2735,550,1288,2894,2419,2919,108,110,929,2939,371,1844,2551,1471,2278,2727,1348,2022,384,1166,2344,1407,350,1808,770,662,1079,1920,2590,2758,2977,1057,828,692,1176,1189,2534,186,1015,273,2846,733,2209,989,2150,2958,672,2571,2597,2154,2649,2598,698,1633,1338,1555,2719,144,1080,2245,266,795,1366,2627,2978,869,1042,1204,1928,1248,753,2340,271,1986,705,2360,2414,2641,1578,2629,1320,424,723,1607,2851,50,1061,1381,156,978,2162,2627,346,2656,2610,773,751,856,305,2864,1986,266,1570,515,2522,2240,2099,1560,216,1688,840,1283,2735,58,2746,565,1661,1220,2915,2033,2097,1322,1322,442,1808,619,2892,1154,1040,594,748,188,1834,638,596,859,2285,1907,2257,724,2878,267,506,2610,1450,144,2198,1830,2534,1488,102,426,373,1511,1954,2374,1157,839,2765,2650,2237,315,2900,2484,1449,590,2510,2867,97,2949,2044,736,1983,1754,1872,972,2022,1088,2653,2973,409,1442,226,1884,2086,9,1883,866,2585,2679,2256,216,1667,2466,1796,2475,2652,2259,787,1123,1600,2580,1361,2676,1172,2309,505,892,2281,2510,2872,194,2185,1551,2968,593,129,2417,18,1389,2296,2397,629,2979,2095,2951,2734,2561,1953,2048,1409,2047,1359,498,84,129,871,187,2198,2649,2189,921,1081,1526,1034,2595,2984,339,1233,724,2332,2169,796,2655,378,2931,212,2743,1745,1286,1064,1670,2220,2173,1905,2624,488,2112,1620,1119,2405,2689,776,1484,1521,2580,1156,434,655,603,268,690,2278,838,1979,2949,1256,940,699,2034,71,2186,1504,1775,817,955,920,1839,458,810,2880,2873,914,2774,141,140,1759,846,1069,1471,988,2861,1475,853,2550,1217,997,486,1822,2648,1923,465,319,2765,2668,766,1674,2721,2624,1279,1778,546,2426,2335,148,1084,739,2922,699,2746,161,1874,122,2247,2841,2266,303,365,2683,2288,1636,2209,2779,2306,1241,1252,2929,2643,2748,2017,819,2209,2619,2390,2277,60,1189,2892,2392,2505,1171,1882,1594,1842,197,135,2437,994,926,1095,1656,1351,1214,912,1766,2059,1695,1918,534,2082,2724,1470,2187,1892,2515,2087,2105,219,538,923,1714,520,2825,1266,1401,1678,2752,2208,519,922,1123,692,154,1535,1163,2396,348,1318,1871,1281,1869,1197,2684,1706,1757,2949,166,2316,2074,345,2874,2361,2079,1022,2755,2586,2535,1455,233,932,990,1725,185,1552,2173,391,216,282,1644,323,2820,2289,129,454,2469,2703,1711,1690,1619,2947,435,2225,1498,1090,1416,2008,449,1079,2369,2517,1226,528,1542,1866,1618,2423,1567,1430,908,1977,829,2936,1512,2707,452,2171,985,2011,492,78,343,2197,1306,1180,2536,128,1802,904,962,1919,2678,2714,1521,1005,1360,1898,745,944,2603,145,257,1614,1686,2696,570,156,1790,1515,2444,2549,597,771,816,2401,540,2612,1052,463,1228,183,2640,2606,1498,2074,483,1888,2009,2075,1881,22,596,2731,2054,1306,1843,1384,2432,2170,2010,567,1497,1447,2301,821,2278,2969,57,899,230,666,441,2552,1232,972,612,1978,2645,189,2288,1815,2410,1499,48,2446,497,1615,2211,1712,953,1156,1432,1287,2178,2186,202,1962,2861,2969,1220,411,1507,2263,2886,2047,2589,1649,2194,173,2104,2137,361,2486,290,719,1000,1667,2121,890,1042,2444,532,2049,939,2882,1969,2068,2822,1159,507,1170,2275,1946,1304,791,2792,1482,2815,2079,2010,2560,2135,2720,833,2447,1014,67,1396,1269,2352,876,2183,2028,789,1028,262,1476,614,1551,1706,2384,1905,279,1937,1106,2236,1336,2076,1364,275,648,2051,1087,1955,255,2412,1811,1739,283,1051,2823,730,2737,1127,10,353,62,1207,276,936,764,433,1686,2357,219,2194,2959,1830,149,2802,533,1720,2254,397,90,496,720,436,1751,2033,2592,2895,1013,1293,1145,788,747,2216,1204,1133,1728,9,2715,2806,2703,1867,879,543,583,422,1620,566,886,2639,153,2509,2079,2116,1878,1004,995,290,2849,946,1462,858,290,2852,1142,2415,1285,157,1510,1049,14,2804,2459,1955,722,448,2042,1956,1296,1712,1867,379,1084,733,2466,2792,803,1863,1247,884,1762,2294,2166,1235,1788,2525,227,1055,1948,1698,212,2788,970,2962,1501,2899,1656,1508,399,2442,2496,1131,420,1012,2251,986,16,508,2808,2441,2045,1418,2728,1508,2092,1137,1036,1795,888,980,1056,2444,2990,2241,1102,257,2386,874,1774,2650,2603,2328,1131,1314,2290,31,7,2720,844,1556,146,1851,126,1475,886,1955,676,1872,1554,1124,637,1256,2928,383,2204,699,259,1770,1378,1543,848,2275,1362,1617,2684,2985,1790,2888,2965,2343,294,341,582,385,2659,1497,165,542,2204,1348,1402,1205,1904,1561,1399,124,1690,614,72,2877,573,1822,315,855,670,383,1500,1848,2607,1215,1607,1936,1650,746,1737,1,178,1125,876,1595,186,1775,1867,391,2889,1803,1884,1901,2592,1882,1478,112,2926,2627,2365,2145,283,1665,602,2674,1625,2831,2015,294,2051,2657,834,1102,338,561,695,2428,2618,1834,1819,2906,2210,909,218,2710,428,893,2207,1243,1037,1251,1043,2273,2010,1246,209,2538,2053,314,361,1252,1109,391,945,849,761,502,2331,799,425,1706,784,1071,2909,614,2979,1736,1798,1478,1677,1936,1753,2664,364,733,1911,1544,716,221,1725,653,2179,2193,2402,1411,1536,1511,1623,1282,409,1472,1857,1551,2904,1145,1381,2443,794,1363,2119,62,885,2258,1665,2113,500,2948,1657,2156,2527,2013,512,2339,267,2676,2308,2866,1153,45,2022,952,1759,1222,2674,2598,1316,110,2644,185,364,1064,928,2914,991,2638,1647,1587,2679,702,1853,2128,2680,923,2550,807,561,2129,2948,1194,2650,1247,1686,1420,664,2933,604,93,1152,2016,1864,1404,374,34,2531,1240,2595,126,422,1109,2675,736,1963,1756,1759,808,17,259,1512,1843,2756,1377,184,1290,2449,2522,2172,2514,777,884,1126,2808,2226,650,540,1886,994,2240,1266,1885,1637,1079,2685,2273,475,904,1649,894,142,2858,581,1176,544,2789,9,2456,1596,1461,2468,2574,2433,2252,1731,126,1750,262,259,2843,504,1326,2627,2232,1789,1109,592,474,41,58,2924,789,2146,1157,184,2844,1376,2936,880,1728,2336,2337,1766,1406,143,2900,1588,1221,923,1036,440,2474,1891,2183,2889,1006,1180,833,1600,1828,2772,104,170,1010,708,1679,1521,2626,2116,1889,2871,1693,2219,1965,2523,2424,308,2643,2663,2654,872,2198,180,1413,1327,934,1463,941,2273,1991,966,2315,671,2318,1021,1676,2154,1225,527,239,1898,2242,2132,1151,2983,1643,733,1922,2954,1478,2967,975,2262,2728,1592,612,2061,1368,896,1155,1474,1202,2510,441,117,2271,2781,1875,2353,1543,590,300,2510,2494,2480,653,812,2,1985,2096,2987,861,2030,2037,1818,1508,2291,2198,2499,1520,432,143,2570,1104,1984,1215,1615,829,2324,197,1040,1531,2709,1682,231,2635,2376,2898,1491,1853,1446,1312,1083,837,2612,59,1677,1105,1860,700,1027,357,51,1306,2185,1854,2049,2545,1460,953,62,2116,2683,723,2490,1100,2651,617,470,929,1735,1798,493,123,448,1364,310,2021,2732,346,43,979,2554,831,279,2548,721,1814,2074,1764,2063,2801,2782,32,2962,2332,1548,2582,759,2644,2079,367,1102,1833,826,2844,924,1592,2767,826,1516,2124,2404,2634,2760,2177,1759,2221,2765,1120,1678,278,387,1140,2846,2115,1455,2621,1798,2829,28,2747,503,396,2932,1933,2546,2489,1917,487,2043,240,2418,2942,480,1118,446,456,1440,2330,723,2601,2859,2669,259,201,1400,1642,2736,133,2201,2224,2055,1720,2288,1524,468,2313,815,2296,1727,833,744,2216,1,2715,222,1235,458,2740,1239,1375,2636,1220,26,2692,1969,403,2608,2447,882,1983,1478,2504,1470,624,1426,1507,2590,1382,2743,2898,1294,1186,2691,1236,726,2487,2233,2356,1620,2466,1404,1031,7,2222,1479,303,2113,162,2043,2392,2559,85,988,2981,2651,308,2370,503,1796,1216,522,2921,582,2495,2356,1102,2982,806,2851,2251,1454,582,2925,1966,2693,476,176,740,639,632,37,2072,681,700,2559,303,2633,2529,2474,2827,1956,2485,2707,1369,802,2735,2677,914,2094,1259,2346,428,2652,984,1613,279,15,2859,884,1129,309,2496,2843,2011,1489,2694,2223,2506,2883,1415,1078,2367,1193,2436,1922,1059,1538,17,2134,836,659,1706,683,1269,1090,1992,1220,451,2621,205,2663,2817,693,1245,1839,1066,2537,1939,77,956,2677,1686,2953,447,2395,1994,1865,2448,2799,2938,1992,2728,217,895,1243,864,2482,2623,1361,2661,412,2481,2999,337,1455,2198,2818,2886,29,2099,1780,1277,2706,2496,2103,915,2038,2510,422,419,2480,531,1455,1241,2298,2151,2600,67,325,516,1093,1473,1268,2598,723,843,1934,738,2687,2138,2769,2456,1502,2760,388,2220,968,631,2708,1910,2941,1941,1653,742,2681,1017,697,1796,1726,1902,2055,380,1148,393,149,537,868,1388,2617,1934,538,2016,1468,252,758,196,1732,352,1043,106,1808,2292,1997,2504,1324,419,1793,1966,2274,556,120,1098,399,372,2851,2292,2057,2092,2497,2613,1114,2199,431,1669,1512,2844,2684,782,1756,2582,2753,1986,660,2592,14,2848,52,1825,1313,1034,183,2525,39,1798,729,1086,2614,844,1726,844,956,1707,380,2407,1181,916,743,1971,1992,2925,1125,2642,1196,1074,1698,1783,1728,923,872,745,1831,68,2992,540,2684,2152,236,1675,1330,979,2663,2092,150,2508,413,2476,434,663,1048,1741,1163,1866,2096,2766,467,1482,2342,2847,1412,1964,1393,1490,751,1491,521,1222,1455,536,1913,62,1103,1931,1407,2149,772,955,1222,1621,2962,1541,708,411,84,2068,2320,117,1721,1127,907,1396,90,2080,1866,2022,1927,2058,902,2233,651,211,2639,2871,1604,1416,622,729,2053,644,214,2330,2836,2397,992,1640,2363,503,2806,2526,2154,1159,2260,763,544,1255,627,894,2536,2366,191,297,2878,2902,668,181,2133,83,732,811,2151,2054,432,262,274,2506,1827,2334,1214,195,221,1195,387,2946,453,745,2087,2507,1033,52,1881,1153,2858,965,1052,1085,314,589,971,1980,2910,2352,844,1996,901,2520,2790,2896,1473,2927,1572,1952,830,2968,542,2660,1917,981,414,2195,904,1224,1749,1140,1088,789,1919,2103,2727,160,2805,2749,2732,1808,2181,1634,2836,1360,50,745,2973,1741,2618,1319,2198,2881,856,1323,1318,1983,794,1128,1256,488,1887,54,822,1905,720,82,595,1023,1667,2818,1878,805,2164,52,1996,184,630,2284,1194,599,510,2521,984,2833,973,1579,52,2126,2831,2538,8,1249,817,1108,2770,129,993,2377,2839,1449,2934,1350,2935,2698,684,2811,1872,605,2413,1341,300,2556,1475,1238,415,2515,2204,2763,712,2312,2269,1686,456,1429,1935,1720,2462,1230,2592,2593,2051,2929,280,1307,2634,620,1845,933,1231,2089,1756,2673,415,55,263,2672,2162,2400,2818,1203,1763,2530,1146,1987,1899,2542,2007,1892,1592,2034,923,356,1493,1485,36,2353,1215,317,1802,1667,271,1823,2027,1306,2531,1096,1111,1895,1465,2129,1568,1579,53,56,1076,623,2194,889,1427,147,2996,2527,2330,525,2272,1203,710,1315,1253,908,1102,2897,2345,2525,1897,6,1316,8,70,232,1980,2848,2472,1033,133,1613,1117,1148,911,1639,875,708,2192,2534,1656,2246,198,2651,52,921,531,731,411,2863,1038,2531,2828,1082,557,1831,603,2392,85,1603,2743,1162,2010,2392,501,1115,2115,337,1889,11,2471,1372,580,118,2120,1717,1578,1215,1649,1637,2937,17,1876,1772,1127,1914,1830,1511,2304,1191,166,2361,1439,2459,1458,2867,1134,113,2310,293,354,39,718,1023,1689,1719,1516,2143,1372,1356,1589,2710,2349,2075,2422,2395,1858,2969,998,1056,1400,615,552,2479,2248,657,419,762,2851,766,950,242,786,2203,484,1884,1755,2796,2730,2915,1980,2513,2870,2309,641,1001,58,2031,1195,732,2432,1697,1704,1386,1223,1279,673,564,540,322,118,101,582,1946,630,1528,2887,2740,2015,426,1102,2682,2810,266,590,2656,1001,1759,1258,262,672,2380,1351,237,1043,332,804,2079,1608,2033,1112,2592,1413,2317,1184,2382,400,2661,2725,714,2474,100,1119,2799,2067,568,1352,1906,604,2054,259,964,2772,1479,1765,1481,658,1098,1847,424,1461,1817,370,2267,1478,1344,2839,1004,1800,2745,2658,2215,1861,862,2872,1153,353,2166,737,2944,516,1974,2559,2444,1132,2044,2424,2969,1039,458,604,941,1426,191,62,1956,280,613,171,2619,408,174,2130,2333,1227,1864,2450,2962,1882,2315,605,2573,2624,222,789,1401,1422,655,2473,2537,2707,2217,1434,2092,818,1784,1574,2350,692,843,2705,723,362,2498,1686,602,1908,2393,1692,1268,1150,215,2141,1818,850,450,2603,2274,39,1387,1984,1628,2119,2402,1763,2817,2270,335,37,1195,859,1295,2817,1835,1324,30,411,2860,2632,1463,2751,2383,1877,378,281,68,1202,1147,2016,1363,2575,39,1471,754,2133,1744,2352,1204,683,2314,2210,2665,423,33,1679,1443,2932,1041,2637,2598,1457,1464,62,1467,1973,1965,2923,2791,1688,2786,1426,1396,1942,409,1522,2009,2435,2676,2977,2528,2616,2487,410,1013,1353,2979,491,2527,2701,2817,1292,1948,2103,301,2550,863,2006,1418,1873,1120,2399,63,745,2858,2851,1946,2914,1222,2397,1999,2071,235,1562,1250,1210,2342,2853,140,1226,2811,2213,2231,400,970,746,1259}

    {557,497,1718,1941,455,1573,882,2857,2768,2139,1889,1214,308,109,1475,592,344,646,2712,2404,1516,1494,249,1681,347,369,1080,2295,486,598,212,601,1036,2120,2998,2746,2625,2836,2299,494,1382,2326,2579,1538,353,179,1903,1223,1941,2847,105,1180,1151,2382,2682,2253,2690,1614,2631,2818,1788,222,1934,933,703,2557,2120,610,2417,800,286,1171,2962,2152,2261,2945,1722,2920,1504,899,2719,1886,968,2004,2003,1192,1427,2799,681,2271,319,2991,753,2114,2550,2088,2049,2503,1664,1473,518,37,488,699,2525,2970,907,761,1479,354,1024,192,1445,1040,518,436,1175,1349,2799,1919,2014,1408,456,538,1230,2428,750,1047,2744,164,2879,436,1166,1463,1250,2199,1983,933,175,2966,1541,1022,1192,1414,2091,728,1529,709,1884,896,1563,2399,1268,2022,848,2702,2799,254,2518,2239,2434,1194,1980,2330,988,169,2026,1369,1912,2029,308,572,1809,1238,1776,2266,2171,2338,2899,2338,2793,1040,823,1917,499,1462,2653,37,834,2892,704,123,1245,2405,1614,5,1895,2987,2871,2078,2798,2163,2995,247,2055,2270,952,2959,2704,109,961,78,1849,2459,849,2334,2757,2284,322,2591,287,2025,1597,2527,1772,2079,2679,511,2594,82,958,1068,931,1329,1526,220,2395,854,2144,1880,2571,958,1918,1370,1086,2808,115,322,186,1214,1195,1874,2160,2454,2282,818,1988,982,2975,605,2665,328,642,704,661,334,2596,1729,808,1479,1063,1831,1977,364,2429,2978,13,592,2362,2883,1026,1872,924,286,1156,2507,789,7,1777,2123,2868,664,2199,724,2067,2256,228,2332,333,2938,2707,1681,444,2295,281,311,2963,368,2513,1282,1469,2354,1217,1165,1451,190,2871,1638,1521,156,1495,2381,2131,356,2176,920,875,2002,2222,1945,619,1782,2289,606,561,1802,2683,1830,679,211,915,1828,878,826,1584,685,630,2491,2735,2598,1730,588,2874,2172,395,848,2593,1829,1846,2670,879,2133,1803,1348,2913,2931,2566,1154,1340,805,360,1864,1904,1654,2457,790,471,1090,61,1228,2773,483,899,2587,2953,132,1011,674,1475,436,2076,2997,2020,2337,151,1959,1476,171,1503,1370,1838,1021,2985,2355,1844,1427,2975,2222,1461,608,665,1964,422,159,2330,2249,1981,404,903,2033,380,325,2100,2368,2875,2534,422,131,1870,2848,843,1400,935,2505,2157,386,2117,2342,9,1176,2928,340,210,2959,1771,763,828,1919,1754,256,38,1736,2785,867,2918,1026,2398,2914,2980,2079,1021,460,197,1635,645,850,1363,790,1439,793,1750,3,1703,116,1967,2064,2718,2902,584,1215,1586,382,1919,867,1925,1471,1964,1053,398,2958,2241,603,1195,1007,126,54,692,1774,1131,9,670,1365,2253,2311,813,838,2042,275,1729,2967,2115,769,1737,1309,302,1243,2140,2817,96,461,1728,1299,2957,2069,1367,2424,2988,1257,1945,2588,1110,1566,851,637,1285,1298,2656,2741,1541,2296,2274,921,1263,1531,2859,2785,2562,155,1242,1273,1287,827,1268,2916,873,2871,2073,1131,2793,1141,1798,2850,1302,402,1628,2462,135,631,58,2113,2019,1556,328,2347,362,1853,300,1093,2850,1667,1352,2198,345,2558,724,2687,1276,2041,1958,553,2993,1550,1966,2780,175,1403,1441,1305,1937,1592,618,1444,2387,1272,2329,1598,2429,323,1303,1801,236,2481,183,2856,1695,114,1837,1122,900,1331,938,635,2649,2919,1958,824,1573,2170,1585,1164,2138,1109,1070,2484,2358,992,547,775,2671,1601,2629,586,848,1700,1089,1701,1726,2229,2423,1796,728,2345,176,1684,1174,2123,569,1036,2869,2274,23,2873,2862,806,495,826,488,2701,593,1586,1108,1232,1572,914,806,904,2103,2923,116,2332,2832,1020,2890,2733,875,2419,517,305,1440,2121,1330,1916,1316,2275,1659,437,2775,2711,1668,194,473,2085,2762,1781,789,1534,2574,869,2950,1473,463,246,2815,789,2303,833,370,2297,67,465,2122,1685,2638,1980,873,404,1195,574,2563,2594,2687,0,202,2321,557,2527,777,1048,2642,2626,409,1397,2287,1840,2274,1314,1909,2111,672,867,1906,58,1553,1109,1561,1991,1455,216,1693,1024,2412,736,1131,1955,2772,56,247,173,2696,2496,2022,2858,1194,1759,1852,887,64,379,2837,2208,2537,1632,1886,917,1462,749,67,1698,2325,2862,575,2098,1608,294,1062,1933,943,1878,2959,1838,1366,1463,1654,2478,675,323,521,2344,14,756,2171,2481,148,1759,642,247,1841,532,1191,895,340,2616,1313,2051,1774,1879,1099,2661,1710,1577,1844,2086,1810,1453,1998,2647,667,461,158,1330,2776,2092,564,568,1393,1407,20,2152,2975,2438,1023,1673,2485,713,1686,2933,1660,1423,2509,2185,2958,704,569,2194,411,21,2183,493,327,1640,2703,182,2630,953,1750,1465,1831,1627,929,817,430,2746,1085,2113,337,2490,2912,550,2148,2835,962,424,1988,569,1205,301,2427,2621,2470,1493,2827,1839,1580,1866,92,2696,1575,1658,2653,2227,1385,306,1623,380,925,1548,1747,1234,604,472,2326,2937,1478,2567,1576,2086,2878,315,915,1713,2176,2087,943,2792,1856,1535,614,2736,567,1381,2040,629,542,899,362,2516,2284,627,661,1804,2215,296,2421,1118,1262,1648,107,2286,2776,2824,2702,426,103,2738,2282,1414,1433,1697,2289,2010,2582,183,265,799,2583,2852,2033,1848,2582,2754,634,748,2788,901,2746,2235,1,557,1720,2523,2815,199,224,2136,732,95,231,378,806,2381,290,533,1119,1133,835,1957,2183,1731,2716,1342,2901,1177,2722,604,1195,1206,2081,2820,1112,877,1087,995,1187,1030,1837,957,1091,2211,1270,529,1107,2641,1072,307,576,40,2650,433,1990,123,1995,117,427,2406,37,1708,2703,688,101,2774,1057,1864,1432,1640,672,2550,1284,1164,1546,1955,96,489,2166,1514,1655,1205,1194,2406,1612,542,2489,1097,1532,1558,2522,2992,2369,1743,2524,553,1072,2425,1025,2714,2646,388,728,2332,1609,908,410,2534,1212,2178,2176,947,314,1012,2492,2663,204,2799,2957,438,2118,460,2033,733,1351,1038,2357,1190,1584,81,1321,2077,1982,2386,1301,2678,2167,933,2990,2511,1742,625,963,2177,2566,2811,930,1398,73,2668,943,1662,1484,2079,508,2251,1839,2,1303,779,224,904,1107,2286,2734,2004,533,1794,2341,1812,1591,2524,2120,367,1176,2854,815,2168,50,1381,428,1894,1335,1741,2787,2696,1523,1560,2251,1202,2379,2688,2532,123,1228,1788,207,1829,1109,538,2062,1890,1208,1446,1102,1787,2731,2855,2156,644,378,642,1860,1346,2757,957,1026,132,1507,2818,1459,973,2578,93,2569,979,1215,2113,852,2713,847,680,1271,974,253,2430,678,1900,1638,2436,2440,1746,2198,2788,937,193,946,1882,2555,514,27,2654,1934,553,1785,884,707,1930,2022,1095,2182,663,318,135,213,615,2721,2867,222,2557,285,2198,1059,2064,1652,1676,1319,2082,2618,1221,2938,849,2800,11,2553,1218,227,194,979,2348,1027,654,1334,1768,593,2871,728,2331,548,2620,74,1992,2143,2159,491,2858,738,927,800,2939,1742,2174,351,1862,1058,1182,790,1338,2812,1249,1998,2879,1085,2136,1285,2206,1361,783,107,296,2367,1921,1933,2233,428,1964,477,2874,2084,2902,2103,420,1468,535,2594,2832,2092,1467,345,1143,1629,2781,2426,1050,111,2971,1698,2891,2233,259,1583,88,2941,2410,2838,2951,183,2123,2692,998,2128,1129,68,1970,165,2155,2198,286,1384,2378,2545,2512,2410,2611,1615,996,1214,1392,2154,808,639,1786,2327,2171,32,1550,2435,1106,2037,1536,1388,551,487,555,359,269,951,1519,1590,1438,462,2777,1430,1938,1369,2865,2755,1714,140,1946,1986,20,2988,2314,626,2825,1827,1720,2475,2531,104,269,896,1046,2050,753,2099,2771,2079,2826,1054,2473,1599,2932,449,2630,1541,2650,2458,1728,2948,1832,1004,1937,865,165,1312,1430,2684,1398,1255,477,1168,9,470,2489,1065,1919,977,2417,2162,2892,1155,643,366,1942,663,1056,1705,799,1933,1484,1752,2306,846,1161,513,417,2504,2565,225,2808,987,2703,1391,1113,1085,167,2572,2911,1691,885,2096,1330,2087,398,2827,1376,523,565,1609,353,2848,1813,1802,2057,898,2166,1693,327,866,129,1750,1646,1328,2108,2499,2461,888,277,1843,2491,2559,2103,2221,1392,2701,867,2306,260,2451,2036,1702,304,2905,882,1442,1929,1919,44,1960,98,1850,2952,130,2424,2753,231,1274,16,1140,540,254,733,1024,1919,1263,2446,2489,2389,9,138,1911,2972,907,1864,1760,2469,2677,1766,1756,486,1856,1961,1737,119,1671,129,1889,1400,2759,1202,2604,682,2609,905,1740,1687,2537,1819,1479,1412,2629,961,1551,1260,2223,1217,408,2177,2784,2976,2053,2507,2121,818,328,843,163,1723,486,31,2243,1083,455,1572,2847,128,1872,2621,9,2275,1620,2543,1633,2132,2787,314,2205,8,1645,1141,2275,250,1989,661,805,2056,2562,1572,244,2009,106,1367,2989,1264,2448,2300,1167,2799,229,1522,560,2493,1384,1616,1772,358,692,2103,2407,2312,1560,636,191,1882,2322,1309,1310,705,1581,149,1866,2042,2007,553,1328,2264,2209,1915,2079,2079,2176,2525,2720,326,2083,225,2837,1109,2598,1804,832,2684,2250,2667,2159,2022,1548,434,880,2078,1782,2096,746,1758,2609,1325,2393,1275,1564,837,494,1537,1707,2244,1933,2352,694,291,781,2581,2206,728,1005,884,1937,1483,985,768,2807,320,1317,841,387,2636,2844,2998,2272,1275,2848,1256,398,2473,1480,2779,833,1934,2093,186,1761,466,2764,1777,105,801,323,2007,918,942,649,2842,1351,699,1000,1371,1806,524,339,2253,2616,1722,290,2234,1669,1394,980,1158,1029,895,660,2158,1399,1032,1676,1925,324,24,733,112,1167,820,609,1026,1100,549,2022,2532,2056,1622,1474,746,863,2411,831,2516,1125,2863,865,602,2022,437,587,549,2088,2372,2888,1070,1483,1362,1965,1227,398,1932,1608,1312,2032,1853,2518,1971,195,1964,363,2502,2010,1115,245,1260,2113,2972,2143,559,2039,456,708,168,1356,601,248,1773,691,2709,375,1224,2808,2189,1084,217,1995,2974,1101,370,782,2949,394,1844,589,1138,1069,1508,979,563,798,664,650,377,459,2683,2007,2053,280,1034,942,1965,2477,896,40,1625,2598,2938,2367,2212,1070,2444,1257,1374,2455,2622,2803,1621,2453,1964,1183,2199,801,378,1667,1788,2225,1559,2948,1651,1613,899,1023,1173,2388,2565,1117,2757,2189,1584,1987,1018,62,895,2991,1668,2103,1525,910,1577,1561,2360,578,1632,2909,2337,1931,763,2096,2974,2602,993,2778,1586,1740,2147,1978,349,1289,1574,616,2334,2019,2904,251,1094,755,183,1533,860,6,1101,2964,35,1879,1366,2802,2490,849,2233,2154,2564,689,1325,719,2065,2300,2173,1663,449,1205,1032,735,405,696,1680,671,1734,624,755,984,1229,2428,1421,752,1357,439,2620,1545,2012,1335,1141,148,779,129,2580,2938,1135,1102,2239,647,315,190,692,2385,660,301,1075,655,1343,1279,1641,1771,1611,897,2906,1222,1197,1075,1983,1556,1531,336,149,320,1524,1968,2175,2961,667,852,411,631,172,1381,2203,342,1801,1092,1244,814,398,1579,1962,2079,1860,1290,102,1259,2761,581,305,481,2718,1020,1615,2906,2323,1121,2394,2003,2011,474,1791,238,355,2808,1545,299,1919,2397,430,2652,2484,3,2352,2751,1194,2813,2605,746,1816,11,929,1483,1626,660,496,2703,2279,1608,1537,2938,990,1812,1922,2519,1135,1018,2621,751,1902,1410,576,129,48,1222,999,2060,994,1893,2821,1902,2718,1509,1845,451,832,741,271,1097,806,257,2275,2927,278,288,1873,677,2795,687,2251,645,809,2579,884,2302,1746,1433,2709,12,1319,590,2684,1312,760,321,949,1267,856,2243,1297,1294,677,2445,2985,1456,883,2483,1506,1912,2136,1188,1052,933,661,2073,1620,464,181,2891,2452,1780,2196,2021,2664,2389,2781,1674,1172,640,2324,2218,1360,1127,2465,1337,2814,2955,2087,1264,422,2665,661,2444,2984,445,512,1258,172,1425,2661,1924,2847,1153,1198,2612,2855,2891,975,918,992,1557,983,2280,2680,2463,2655,1074,2132,1436,2276,13,2750,245,1288,1729,2201,554,2180,2428,223,765,2943,614,2711,1138,778,615,2850,2359,2088,1015,2236,1150,2018,1432,2087,1704,2021,19,701,2849,436,1544,774,1362,729,2893,1807,1827,418,2560,163,323,2577,952,1328,2706,2818,1526,2391,1417,325,2570,742,1201,936,2149,1126,2006,1817,2711,2797,401,1101,2670,1844,1541,1725,156,787,2547,1375,2200,1347,2113,2614,2629,2963,1768,742,1476,264,1745,2253,1392,727,1446,2444,1882,519,1209,2718,24,25,1021,1770,767,1884,656,1452,2143,69,2695,2191,2517,2165,1815,546,2443,2928,2894,2136,295,1744,2251,1820,1025,2315,1823,1906,689,735,1613,152,806,1009,2244,844,222,284,1583,1222,323,1905,1772,1016,970,1136,1667,1565,2493,2855,2352,2615,1160,2017,579,662,292,2410,2650,1279,2070,1456,437,408,1282,2086,1686,2354,2252,11,1308,66,2214,308,1466,1895,328,2289,289,534,144,2772,1795,446,270,2003,2401,2180,1733,184,1579,1992,2904,2814,1660,1165,530,1448,203,968,544,1872,316,94,2133,2023,2676,1327,2268,1519,2983,1209,2858,2035,878,2666,1740,1178,469,1318,1194,1207,2206,848,2522,434,1360,2792,1515,1,2903,160,1005,143,772,411,221,2011,655,2566,2643,2208,1332,852,490,2208,1379,2860,532,572,2423,942,2266,621,1001,1311,934,571,592,1637,1487,2627,1821,1415,1481,460,1370,1486,2360,689,1612,290,1249,907,329,1219,788,1292,2481,957,1367,2074,1477,1311,2915,1551,639,1471,130,1306,811,1694,78,350,763,2697,192,683,2476,71,823,1975,2711,2638,2629,1139,1265,1099,2479,2582,1129,2373,1513,1988,259,2305,1974,1569,690,1295,905,1692,2142,2034,1026,2760,872,1235,1447,2338,2844,2101,1473,863,1715,1325,703,1222,2438,1070,2953,1398,2960,1370,154,2748,242,825,1254,1309,1224,2043,2460,587,18,2652,2819,1204,2656,1145,954,1283,414,2510,1395,2338,2221,1040,873,1412,290,89,1116,1005,591,2638,775,2539,2443,2408,2098,1330,1799,2292,2006,2265,1435,1685,1592,1867,780,360,51,442,1950,2626,79,676,2183,2293,2683,717,222,857,1593,1874,2865,2930,206,328,2726,1630,619,551,2082,1291,1900,391,1540,2284,75,2096,1931,1690,2638,2424,611,2007,1580,2720,2840,1373,421,1366,1600,2610,416,134,2508,328,2351,2577,1748,256,1624,2846,2563,567,145,1817,1222,2408,84,1808,2107,1693,334,2230,2131,1832,328,1502,2834,1572,2562,2721,1457,970,1802,1797,2225,1842,2113,1992,1278,2382,409,1163,988,1696,1934,2938,2230,2231,2090,2189,200,2485,1947,1040,923,1077,1955,390,2001,2141,44,1994,2000,1683,10,1333,315,392,2500,2341,2698,2793,628,2162,1067,2066,2222,2133,864,86,1002,1281,683,2530,380,2920,1949,1492,2415,868,1784,823,1080,1575,1438,2125,652,2708,1005,1416,959,2584,1959,1193,1836,2131,1130,443,1322,1539,994,567,1524,1943,2190,51,557,959,1266,136,480,2191,1343,870,1779,58,1898,234,149,1996,1300,2538,2940,1393,574,1138,979,1314,91,2958,1945,1336,2399,817,2606,2185,1348,2968,511,2563,1878,792,2448,1940,752,2351,1106,2306,273,65,2917,339,924,496,1757,1004,2674,1259,1919,1358,1993,2109,1060,2975,2576,545,2986,49,2054,1364,1585,2636,2760,993,845,2628,1199,1694,624,177,1431,1428,714,2376,129,2133,1102,2501,1129,2512,212,1215,389,837,2688,2890,919,2562,2134,2995,2519,127,221,2035,80,1977,1237,491,499,70,386,1927,623,485,2292,797,2254,1360,1805,417,2517,1390,1580,2416,1641,1084,330,562,699,125,1163,551,1585,42,2730,831,2161,1396,654,1109,62,2288,1455,1564,1740,656,1496,1351,953,1455,1784,2885,837,1547,531,1631,1259,2127,724,2518,2434,1562,2262,2420,1048,602,130,1602,1811,2053,564,2444,1003,1008,2643,978,257,2261,1688,1864,1516,2494,312,1118,241,2748,2017,541,479,1345,2982,2558,354,482,2988,2042,2342,1532,1735,805,1627,1699,1868,920,1606,178,2464,2409,1161,2184,2631,898,2100,2188,2496,313,1490,2483,839,212,1518,865,2283,1476,167,1972,341,1015,2489,2202,1927,148,1902}

    35

    279

    Returns: 52589877

  114. {1349,1025,2342,1580,2372,146,578,972,1633,1898,833,2112,47,1399,181,31,2041,253,2295,76,104,890,488,2366,2155,448,2443,2851,52,2033,311,2871,2599,1770,1151,1397,286,1954,34,1342,1363,2766,483,1692,1901,114,1433,917,304,2779,996,1881,888,449,2415,2678,2165,2058,55,2607,1252,1987,586,872,2268,250,491,2359,2271,886,1525,1976,1259,2918,2052,946,2164,1357,2027,870,1371,586,2076,2332,2623,816,1998,1339,1796,2965,723,949,11,2489,2039,2471,131,1205,635,326,1433,2326,1689,2432,2791,2559,533,115,2897,1855,2239,1735,1820,1323,2412,469,1446,1773,2460,1689,427,2698,771,292,1568,1511,1972,1465,2794,2911,223,2364,1780,1191,726,621,2201,1153,2126,1505,2470,1975,1082,1798,2311,2715,1178,176,1102,499,1114,24,2962,1643,1151,295,1383,440,857,2991,1181,2682,2858,1218,806,238,803,1218,1200,437,2015,2727,168,1045,1261,2895,691,1732,132,1568,2929,535,763,1734,1404,654,2233,2286,1651,2997,2310,2244,1540,1629,1329,2606,1599,459,2081,708,1954,379,2290,355,2492,726,2326,2522,2093,1483,1750,324,1504,1095,774,1014,738,1921,1813,1548,1339,1025,1951,709,1500,727,306,2520,1137,398,2766,968,2510,2266,1347,317,729,1608,910,1177,0,2680,2426,567,2390,1642,1825,2541,2637,1028,2228,1375,1082,329,1611,1406,2861,2300,206,1689,794,1242,374,1575,228,732,359,106,1087,2910,2485,2677,1446,876,1743,2779,2777,2998,1099,2786,450,1194,1460,1579,2792,1338,1693,1085,2503,2505,1662,1191,2295,2145,2714,60,908,1114,583,1042,2517,832,1401,1918,1816,805,1455,735,2323,1053,504,1020,1146,1002,199,314,709,1556,1565,361,127,1935,2074,113,2981,751,2868,2615,1970,633,1696,781,947,1109,67,2306,105,308,885,1783,1967,2346,2763,2285,1768,1779,2419,2757,2851,690,1534,2957,2707,97,1291,1733,1141,468,658,1865,257,2559,1224,1361,2459,710,541,212,2014,1893,2861,1442,1602,148,217,1459,1298,1640,2479,943,469,64,285,1408,1480,916,2634,454,791,1314,1708,1091,238,846,2966,284,1919,1368,815,2517,221,2752,1137,1629,2931,1479,1737,848,186,502,1992,2228,2013,2895,2678,1823,807,690,2067,2833,406,1669,1604,2437,2672,653,723,1913,1175,110,1599,1998,2380,2332,561,964,1104,1996,2991,1636,2554,140,668,1870,1882,2413,1720,2114,147,298,38,1052,2304,1876,24,2685,2520,518,1260,1232,507,846,129,2828,1988,1785,1973,27,655,2839,2730,935,1221,2500,2649,2554,818,1976,749,1459,573,2238,2209,212,1056,2009,216,2766,707,2927,1172,1213,2799,2892,1162,2972,53,2914,2027,1731,1929,231,2934,2670,1285,1954,625,2129,567,2704,284,193,237,2624,2085,78,1044,2966,2268,1716,1616,2946,755,377,2843,2377,1592,108,2749,2993,2918,2505,1996,110,426,40,2360,1445,1025,2085,1783,213,1027,2292,2405,404,2524,712,1421,2871,481,2583,2233,2574,2069,1403,268,487,1339,1152,520,767,1177,472,1594,2852,2349,420,907,1601,962,2666,270,2629,1685,2900,1194,1663,174,1685,1518,82,1780,648,2397,2129,1776,269,1185,797,997,1605,2232,2900,1792,2267,2417,2645,828,1113,1556,2174,145,1140,1470,2995,1352,1805,651,1421,109,2177,2358,1979,110,1916,1661,1127,855,1234,1460,606,2262,374,1639,1106,1606,1153,2251,670,1059,2200,1583,899,2675,2951,860,2948,2133,555,2322,2593,969,2235,1994,1178,829,2838,526,1781,2937,1212,2754,1586,306,2208,2132,386,233,972,938,746,773,82,2350,995,2686,2021,2882,149,1994,1780,76,1275,2863,542,670,220,2022,618,2139,2786,482,485,1742,1785,1464,2238,1256,2259,2438,2055,1896,1629,1767,2994,1396,2302,2737,1794,1010,1780,1916,2114,1555,645,2981,2741,2510,78,1287,2135,475,2865,113,1373,777,1136,1856,1322,357,1323,2591,1812,728,675,1656,1634,2421,969,2260,2649,1780,1847,1004,1023,1380,2444,2345,1776,553,1762,1549,2073,2785,27,2708,2681,1117,2334,2693,188,2920,368,1857,981,1248,1218,809,1280,1015,2620,2554,767,2432,2701,2296,2717,2743,25,331,2139,1476,374,2430,1348,1050,2524,1714,1116,1233,547,569,2495,571,1376,2731,71,362,1499,1628,2167,2327,1088,2298,2079,2774,875,223,2633,2757,245,617,871,1285,642,641,1008,1695,2826,2618,2685,259,248,907,456,2123,1983,1710,1672,2660,1466,1255,240,1515,1512,1872,542,2957,693,406,2292,921,1303,2140,2827,2650,958,1349,107,2617,2803,2687,1642,191,1528,1202,2054,2648,1953,2266,2130,1728,1513,2513,1397,1631,1771,1866,819,2463,388,2453,235,861,1519,594,2511,1369,1855,1472,2114,2183,427,2386,2375,1184,1185,285,689,2334,648,445,2865,2056,2434,127,1732,1614,2777,1557,2683,905,2565,1253,2157,2844,1884,2766,1180,95,463,1803,1210,884,2162,2089,115,178,2454,1900,472,1844,339,2660,2995,785,2808,546,1601,254,1305,528,2494,542,869,86,2191,1691,2766,419,1928,2598,605,954,2655,2693,2634,619,1554,480,2160,2420,1072,2524,8,1745,2008,903,1923,844,515,2211,553,2328,203,2964,2130,981,960,1863,1491,1803,2365,2513,1622,1837,2032,556,22,2427,2782,2621,832,341,118,2700,640,354,2312,577,935,1573,372,2516,24,1910,534,2617,2764,1168,2609,1036,445,228,1436,2867,90,791,2286,2899,2997,2767,2440,1279,1520,134,227,2568,732,395,2868,2328,900,957,222,47,2320,903,2711,2807,1364,252,1805,1726,2882,1064,1965,223,2446,170,2249,424,1390,1721,610,2509,686,2208,2073,2876,2994,2802,2414,2075,1485,450,1174,2258,2225,1767,188,259,735,1255,579,2388,1900,1391,1081,2696,1721,850,2035,2143,1056,1343,213,1209,2096,369,847,1326,1553,224,1488,2215,2967,2881,1851,1470,612,2681,2259,2733,245,646,2798,1681,2855,1746,1940,2354,737,295,2579,1507,1340,2214,1616,870,2573,2187,2480,699,1530,1398,1557,2021,1769,1171,227,1150,66,1050,1201,915,50,2452,2253,111,1071,1345,74,1037,1792,1089,69,1106,1774,866,2971,1847,2282,2712,632,2436,2626,2046,2605,2193,1983,2549,58,804,599,2569,772,475,2771,1186,2333,2468,2379,2169,538,375,1009,1878,1263,642,2196,584,1344,1732,812,2311,854,948,1812,1450,1176,2795,253,2900,939,1992,1838,2762,2438,1060,460,182,2021,2923,1151,1421,2531,8,314,1651,1131,330,605,1994,1284,1129,387,1285,485,434,2145,1835,2730,879,2431,1036,1720,2417,1482,2322,387,477,2729,334,2768,787,1837,1405,1071,1454,1014,1146,1249,2124,64,2042,2479,1046,770,2554,2793,793,2542,1644,2643,163,271,1399,1608,696,2232,1734,1844,2623,1025,1620,1243,1809,236,1921,2252,2944,1364,2423,2835,1884,2195,566,866,2951,2670,866,2758,1683,1831,277,2887,194,2910,1650,767,1535,1096,2706,2003,1729,1295,895,1839,102,2957,1474,301,2513,2149,2107,1708,786,1253,2916,2867,190,854,1801,1433,1597,1298,2390,1518,1838,2998,282,1727,1789,1499,3,2702,479,1734,2391,697,1349,216,2766,124,2280,2084,1117,1550,2787,1900,803,1964,611,1722,1060,749,952,1870,2797,2622,1215,406,2356,2537,242,1697,1699,2779,567,2295,1820,1807,1987,1107,2961,2493,1001,974,49,1250,2247,2609,1900,1873,2467,1603,2478,1230,1283,2267,1628,593,334,1601,797,2698,1333,2000,1906,308,2377,2475,1911,44,2129,2662,491,2840,1507,769,1911,540,48,2922,1884,1180,1718,1004,2580,2635,235,2670,749,2409,386,2266,1589,1939,2007,235,943,2382,2920,792,2059,1993,2496,225,2670,1392,2925,1485,1893,2315,1504,602,1433,925,1189,548,2613,810,1936,117,1866,464,2647,1180,1303,667,2469,2858,2925,2469,910,1175,322,1943,1303,2352,2627,2609,2211,2326,199,2965,631,2571,2347,2797,571,1547,1314,1458,2336,870,521,585,2949,649,2859,385,2374,673,1332,1421,712,2619,2639,2477,2935,921,2576,1685,2710,523,2728,2330,671,78,88,1069,199,1142,1744,2735,572,1517,2985,150,535,1201,766,2760,1008,1937,2184,2903,1735,1642,166,1454,1944,458,2338,2202,1457,1270,2834,1667,723,2464,251,459,1368,1236,503,1046,1516,1339,1038,1811,2812,142,2816,2950,1661,399,2265,798,1335,2812,1689,2769,1641,1169,1750,2761,1964,388,1207,1414,790,950,2904,97,569,2818,1036,2711,763,2276,2545,1819,2425,2266,2600,2380,183,2588,993,2686,2506,1147,2181,142,2892,822,2543,2121,1952,1716,755,767,2380,2455,2375,1534,366,1492,1210,2994,1635,2887,706,2293,945,1820,1321,663,259,1314,971,2874,47,104,2595,2774,2147,1045,1204,2176,1301,614,2036,2756,458,1394,2892,316,300,2379,1590,1655,1117,554,2426,471,2190,2458,191,230,1350,802,401,1967,2530,871,788,1262,345,708,1053,2239,1206,336,2331,816,1424,505,63,1054,2726,2671,571,1746,1627,2640,265,2821,2168,1833,2832,835,1452,2054,1762,1704,1036,1661,2670,2896,2911,2128,1007,346,165,18,2664,387,680,735,1547,1683,558,1283,1513,1268,2987,224,296,1279,2357,2576,456,774,360,2783,448,1966,2536,2652,1173,752,380,829,890,1211,1311,2082,2203,1961,2216,587,1036,403,2039,1892,2252,1452,2438,1646,2348,2008,1714,1911,2559,2948,2653,294,83,2682,834,2304,678,1124,1163,2402,2960,1302,2183,31,1820,207,2229,2293,1877,2332,96,1446,1671,930,2309,442,1707,677,816,42,586,2575,19,2189,760,1825,774,2966,1180,1292,2047,2948,586,2445,2655,637,866,2371,1776,718,2362,522,1473,2111,161,904,1103,1354,309,2910,1552,1063,1259,2078,386,73,341,2782,1419,685,1873,1108,1910,2300,2676,2795,2734,1944,1248,2874,2648,36,1713,2978,1143,762,411,2795,2343,2344,2697,372,409,1105,137,1772,67,672,1445,328,2300,2587,609,2174,818,1338,2266,1499,2882,2142,774,2831,2414,1896,2572,929,987,2207,1824,2719,1194,2828,1091,28,2913,1654,2813,2329,2376,2517,2227,679,1737,2711,1403,2178,1446,371,2653,2961,2952,1685,2893,2355,2381,1226,2289,1329,2532,1989,2029,2468,763,1680,1517,1767,1372,459,1838,2490,2245,1755,2246,2513,2175,987,2434,1834,172,1537,454,2780,2072,860,2317,1768,2190,2386,1457,1955,2507,793,565,312,80,2121,304,390,2583,655,2537,2766,1079,1562,1303,2499,2408,1582,2384,1736,2179,2846,2628,428,101,1133,2578,1514,593,1157,63,2513,1070,2353,804,2974,465,1826,215,86,2525,2699,1854,1998,233,2657,570,203,1951,376,2232,1210,1295,988,1614,1116,1390,2369,1421,2523,691,321,2368,1362,2101,185,2655,1343,1482,2621,2010,1661,2992,1427,2877,1994,1073,11,2037,2514,2783,1477,1944,2318,2911,1420,1446,2290,1217,318,458,2389,2877,940,425,2573,78,1238,2584,1066,848,1754,138,1890,2944,1261,2397,711,1008,543,576,2789,338,757,335,67,1348,1030,2398,583,1012,1785,239,1570,1941,484,1178,1235,374,434,2157,1610,984,2266,2063,1307,1495,1239,2818,1863,269,1478,2813,2979,1379,1799,1314,2290,2980,531,2028,283,921,1164,1885,2829,806,1572,1854,2878,1366,1982,877,2440,2156,1968,1788,955,627,976,926,2241,753,1069,2502,2540,2628,1409,2077,232,1898,2159,204,2420,2137,784,2690,758,2565,1120,2779,383,81,1830,1815,2891,2464,32,1789,637,2570,2638,846,1866,1243,401,1546,237,1195,514,981,1518,998,245,2939,1032,1352,571,1112,1798,2689,702,2842,1641,1536,944,1436,1599,2383,1124,2182,2021,1561,1341,2055,1187,525,734,2322,227,1948,1599,1661,261,1932,1418,2154,1087,2385,1635,1915,2297,2523,2581,1405,1787,2364,1448,1837,1426,1298,68,506,938,1737,213,710,951,1288,2723,1617,2259,1843,2696,479,924,1832,748,1423,1996,442,1900,64,1657,1265,2932,1287,896,475,1933,1539,1219,96,1917,121,1080,2707,972,108,1714,2482,2319,2655,1276,2862,2779,1732,1600,2324,1985,1667,4,1761,2494,2113,2461,1023,1572,1474,1303,1496,1632,1594,1046,493,1769,210,578,1986,473,1093,2964,1182,140,2172,1359,1121,2847,1730,72,1601,2370,1297,805,756,1630,2658,1532,2119,1490,868,1088,840,933,2551,2411,1902,2492,1519,2611,2861,1667,596,1018,1804,2568,2121,2940,880,1912,680,2737,661,1885,2472,2302,841,917,768,1221,2863,941,585,31,1804,2437,1647,2735,2533,2093,2325,2380,263,1837,1095,414,2427,307,2291,2568,1549,880,1160,1808,2292,1297,1011,1517,2724,2527,2542,2298,2186,1627,2265,60,2772,2602,2536,2830,1017,18,1594,1046,418,1522,680,924,323,1859,2637,2770,724,2593,1363,2782,818,2965,531,1294,1119,1025,439,2092,1307,2344,2432,416,1114,2157,2938,2418,1417,2942,601,2618,1975,2709,2636,1590,2092,1010,79,1949,428,1143,846,2888,340,402,39,1809,1331,1864,2415,1144,468,77,1750,1685,1488,2173,1204,925,481,2409,2738,563,760,1434,666,1779,504,1305,620,2900,151,994,758,1287,1272,1714,393,477,2888,354,712,1290,1179,1416,2721,2756,2755,742,2733,428,2221,24,1285,1193,1474,1975,2570,496,2174,2774,998,1472,2366,2748,2300,2026,1034,2814,2990,2443,1488,1650,2322,2204,1297,871,2526,2358,1447,424,351,1682,776,742,937,1492,1464,1561,381,1588,616,2795,1997,991,2044,2764,2480,1935,2946,2386,1340,2576,2667,1984,2960,2773,383,2382,126,1514,934,713,2116,2088,2569,1854,579,2426,2849,1657,1797,2478,2197,2138,818,2449,622,2895,1518,912,2283,1135,2973,683,2977,536,2932,1427,690,2142,2221,2363,1420,999,2568,1507,685,845,295,1258,350,2586,2486,2118,2430,1254,2335,2871,1762,2235,2017,99,2809,1947,1579,2669,619,2123,1248,251,1495,2704,1028,747,2134,2905,1393,2121,2766,1594,1507,1358,1552,302,1553,2107,993,2782,2664,1740,564,720,473,1409,75,780,1999,2688,2830,1287,2839,1290,2386,2939,43,1593,1101,988,1339,1158,1042,99,736,1996,2872,249,758,307,1945,1714,1434,1349,2577,89,690,1326,1277,1306,187,215,2869,394,474,980,214,2426,1137,1638,2687,2494,1797,2735,127,863,760,301,2551,2761,299,2012,1647,2433,1683,1259,2670,848,489,2816,189,2604,797,2460,2001,2729,2769,767,2684,2477,636,2636,290,1229,2779,484,567,1429,2647,430,1579,891,110,767,2327,1065,1340,2158,283,1273,2928,1902,1448,2253,461,2647,2230,729,450,1327,985,195,2875,2683,2390,1300,2964,1542,1307,1718,2025,114,828,1525,1328,2057,2674,1190,891,1499,1374,253,33,1183,805,2344,2529,2173,244,247,2031,535,358,792,1798,1121,1436,2299,1825,797,43,242,1997,891,149,1196,2394,1886,1942,1100,774,2768,1994,808,2400,1384,2047,2976,2616,1602,2776,1145,1248,1905,2568,1119,2356,2116,2955,2070,1250,1790,2765,1909,2885,2090,536,1097,1977,1311,2889,740,1794,514,119,565,783,644,2063,2907,2341,1340,1489,1069,1825,1057,1257,1315,1626,2795,291,2795,658,2464,427,2998,965,18,2090,2088,883,472,683,652,285,2284,2710,2152,2727,1802,547,589,1782,1746,1991,44,1651,831,2115,705,2380,1508,2524,2505,2277,2416,1631,410,1720,2316,1142,2880,1874,2952,2738,2002,2466,1269,1143,131,858,2908,1503,938,2344,1493,722,717,931,1390,295,2278,2071,661,2010,356,2142,377,2526,1753,1653,70,138,1110,1198,1967,180,62,1098,924,282,1651,1879,709,2887,1991,957,2455,1061,1893,1386,2882,1677,2930,2699,1371,270,2147,2943,254,320,2816,2711,2647,1852,679,1879,1968,2420,981,1296,987,2068,2012,1195,2980,283,2966,422,848,2143,1839,2060,611,2118,1481,942,2957,650,958,2112,758,2884,1189,54,1964,2974,2067,1647,1668,2244,803,1090,1989,227,548,1586,797,5,369,618,677,1524,638,2044,2249,10,2934,2053,603,1895,405,2988,110,276,2129,2610,1607,1661,303,1327,319,356,2941,2051,1365,1029,1958,1921,191,1621,435,631,1963,1877,2006,1156,234,2984,473,29,104,2012,1992,360,31,2232,2312,2069,2709,392,1083,401,549,2211,93,1729,344,1795,989,1555,1195,742,685,739,2048,1804,2420,1424,981,1909,1868,1382,1181,1871,2605,1007,1230,2999,2513,1330,2672,284,895,341}

    {1409,1887,628,2898,1222,2646,2612,581,2102,2064,1041,274,679,1623,1549,1940,966,262,1950,2019,2467,245,383,1040,1417,2534,500,455,662,1025,875,1562,268,708,2401,1602,2402,2377,193,2409,807,370,1073,1695,829,1583,1596,1399,2248,2061,1046,1401,542,2630,995,2563,2682,860,2934,2128,2146,1643,2530,1274,209,795,2620,1534,389,1564,112,1844,1762,2878,1501,158,2183,1575,928,2555,1950,766,1544,1819,1759,58,2948,1169,2627,1566,1399,611,767,1872,2871,429,1184,1877,486,200,2305,1642,891,266,1194,1788,1809,2040,1588,2236,2728,2948,2423,2696,1996,933,1769,1242,800,34,2875,1800,2593,1984,388,2791,121,1271,1303,657,1676,1569,1206,1962,2252,1056,1166,443,2905,2489,148,2416,155,212,1218,1772,295,1292,1294,1519,2242,1069,1882,1612,1785,2022,937,1702,2730,157,2017,1780,1197,610,1817,2066,1510,542,2772,2357,891,78,1511,1854,1778,1006,1359,1748,1499,737,708,2332,642,2206,1558,1976,470,2471,375,1428,444,2474,1998,2292,1677,1987,2070,1309,2795,584,219,2805,87,2617,212,2235,1695,1138,1956,755,2086,1183,305,2327,492,1843,2846,2183,556,2211,212,557,1760,1602,485,2698,478,732,48,2190,2036,319,2067,2380,9,2460,2353,1025,853,834,2500,1041,1522,2321,226,2122,321,1000,2686,1640,849,1159,523,1053,1558,1441,1563,2156,922,1244,2452,1788,2307,692,165,1858,185,1298,1073,1356,139,1721,1159,817,2691,615,2156,2657,2104,342,495,1485,1650,1200,55,392,815,2436,1019,411,1290,544,296,659,2739,2141,1962,1255,1930,2461,2007,874,2483,2937,1897,2503,680,809,243,494,2097,2136,1642,2243,1957,1574,591,2497,2387,364,452,174,1591,2771,608,1043,218,113,2353,457,2906,833,1222,2733,1165,552,1951,1686,583,2915,2030,2449,448,2839,535,2300,2268,1461,2008,353,2429,332,1866,1645,1126,253,2167,458,408,2295,1443,767,925,1219,2468,415,1687,2786,2476,1747,2303,2115,1954,230,499,1872,907,1041,578,2655,387,261,1390,2335,232,496,496,2625,1294,1400,1267,125,255,1844,1153,852,2861,1339,40,1772,2374,898,1562,986,2552,1283,629,1046,2596,1422,2741,714,937,1597,1531,2063,2557,1584,2645,1933,626,1010,1027,287,710,2938,2110,428,959,2811,2250,72,245,2739,2193,2501,2358,535,1360,1655,1035,1567,1356,496,2439,1325,2399,1709,2699,2794,2087,2113,2263,892,972,135,1763,2023,2215,2413,1456,331,1368,240,2918,2944,1403,1797,1282,1417,619,1465,1683,2982,2742,2261,151,2512,2565,1170,2559,1036,2106,1927,1022,1291,1192,586,1979,1553,1166,1405,1018,2270,482,855,1882,303,512,2471,86,2045,160,937,400,2674,711,1829,1169,1871,54,2883,682,1078,102,1969,588,600,2853,2272,101,2740,2979,143,2961,2701,880,226,1306,1251,2006,2478,96,966,2820,805,1646,1875,1734,2180,1661,1436,1804,1431,559,893,2730,697,1454,230,1432,2127,2257,1493,1779,515,920,2402,1989,1691,1944,1884,2994,832,1298,781,2440,381,100,171,995,2373,2765,2788,110,2553,13,513,154,423,2220,794,1900,2478,2983,1194,1459,199,891,1839,2580,2240,151,1017,2068,671,1205,276,1154,1591,1597,18,2998,1144,1724,783,918,467,1458,2200,1959,2193,824,304,1967,726,1084,2510,1735,1219,2566,1496,2669,1283,730,818,933,2079,1419,1674,2006,432,270,1879,2420,1336,2288,1118,2980,1977,2395,1264,2618,1024,2223,545,1670,980,1215,542,1166,1332,551,878,283,715,212,2642,140,1571,2957,941,1502,1509,1402,1227,192,2560,418,280,1474,1034,1599,606,1036,2912,2358,2935,814,913,156,529,1914,167,212,360,1578,2185,2377,1576,1770,562,1407,396,2161,1876,2855,851,449,1422,505,1984,2355,1945,764,725,251,511,754,1033,2578,1218,2665,293,2259,2625,2724,160,216,1810,60,412,1037,2404,641,2950,113,2737,1921,2340,2796,2151,2651,260,2083,1319,2871,2238,1295,2546,375,661,741,605,2625,830,1105,2582,2449,645,2450,1938,1700,114,2297,56,2324,2987,1444,2754,2150,716,1159,94,173,1092,2715,227,448,2039,660,485,2517,1992,1329,2295,2674,1877,1842,2033,881,1005,1274,2900,2486,582,166,524,2451,26,1051,1796,1902,501,509,547,822,1493,656,1501,2393,2815,378,152,826,862,24,1986,391,1456,2390,1053,831,2576,1806,2989,1667,2369,1958,1894,1169,2025,745,2886,1224,1763,1226,2123,481,208,2900,1416,2036,914,1313,2777,2476,1738,2695,816,2619,818,906,1601,310,1700,1409,2695,2175,1218,1945,2529,1169,1262,1047,1960,2562,401,1660,2504,2795,2596,590,590,327,1579,1356,1326,2528,2290,1808,457,640,1222,1152,399,2130,2778,2655,598,2874,1587,365,1496,443,531,2680,2745,2109,2713,401,940,1106,880,1557,2736,1590,2137,2428,647,1180,2195,1086,109,2737,2063,2227,1094,2573,2370,1727,2870,1121,1283,2387,1858,2818,72,2247,2266,1866,2682,207,349,2315,1736,1252,1154,2622,1031,702,842,2423,2172,883,1914,323,1049,164,651,2423,1960,941,28,24,2694,349,2199,575,1950,2892,818,1562,1067,496,1654,2109,243,1484,2766,1078,2733,1514,531,2021,1858,1658,2156,2875,2940,2909,2173,1900,2836,882,2906,2739,2936,680,1082,555,2962,1181,1378,1282,1825,2809,1971,155,1703,1534,421,2156,2205,1130,362,2933,2543,2292,2517,418,434,614,559,2536,2050,630,1395,1231,2456,801,2372,1749,1785,2442,2621,842,758,2760,352,2703,110,2365,2214,2581,2129,20,2882,1653,2627,2447,719,626,2556,1468,253,614,1125,1853,2065,535,1404,821,982,805,519,1514,2809,190,2578,1069,2386,2224,1430,1816,2373,896,2730,2553,782,2129,2524,1132,2166,281,1751,967,1117,767,2310,1521,743,1827,2759,1409,2705,1297,2934,2434,2289,1546,223,2646,5,2850,2112,515,480,2819,327,2578,122,2601,1885,2649,2127,2462,2914,690,369,2031,2580,728,1507,1046,2117,1426,21,816,2597,496,1712,2609,690,378,897,2644,2427,9,963,893,2592,902,1754,553,928,494,1660,1481,1281,198,315,417,148,2786,1852,272,2609,2425,870,319,2478,1531,179,2881,1735,1446,2217,1446,1694,1848,1758,28,1652,1576,477,1577,791,898,185,1888,1069,1543,1420,1283,525,461,1719,2928,807,827,1411,1583,1062,630,306,2362,622,1601,297,854,597,1920,399,416,2679,2300,2575,1994,1204,2795,2370,1824,299,2047,1791,1389,701,2436,2894,1195,20,1260,1933,1208,880,2209,2096,2441,336,1360,2882,2541,2406,1757,2539,1243,2905,1534,1713,1978,1590,199,2997,2766,2484,2994,2098,516,420,585,1995,374,369,2294,1846,1124,2944,535,1186,1339,288,2876,2902,2608,2101,2495,2074,2396,2757,772,2928,2348,2866,197,2672,663,2093,2190,1334,2119,1443,92,2871,422,44,809,1439,307,2436,532,2266,2155,2570,11,2695,2947,597,2848,2824,2594,2894,2959,2093,2873,640,2601,1918,1545,144,2259,174,1284,225,104,524,2435,2521,978,2752,1844,607,2901,2954,84,287,192,288,1677,472,433,2619,300,2037,2529,1629,1125,1533,2860,2511,217,264,2322,2488,2010,1378,2314,1598,747,1448,685,120,2415,1220,1974,1216,2816,1259,676,1562,761,1766,48,1413,1153,273,2015,2970,2413,2673,1609,2534,1210,11,304,2190,2831,532,1999,1345,414,2804,895,2033,1498,842,1262,1151,2372,118,1527,41,2005,1326,604,2986,2266,998,454,827,435,1084,1137,208,1235,1601,2271,1790,476,567,1940,2352,2,2603,839,1937,1199,2478,2093,1409,1377,1514,337,2251,958,254,690,2542,1666,1149,2407,930,1041,1382,1242,260,1284,406,1980,2751,537,2788,799,1339,2365,98,1900,256,1284,2287,1679,47,178,1235,2802,2153,763,1475,2215,2967,2498,2827,1061,2687,1915,2104,582,545,2632,1582,2599,1581,242,181,2722,319,1539,1743,1135,2673,2447,2286,1360,1218,1544,2536,1985,688,1665,956,1977,1926,2665,2996,1906,39,446,1648,1802,454,2122,818,213,1901,2269,1317,2162,1904,361,2565,2356,2168,2871,2656,2567,1303,1368,1070,1376,1596,1467,1715,2231,1389,1618,97,1319,474,1599,1346,1597,893,2052,246,1190,1760,1913,2346,1412,386,1667,1714,486,496,1981,1076,373,1426,1523,2091,605,2321,1135,818,2266,2629,2144,2322,2328,162,1307,2163,1647,2613,2269,2736,2738,878,2473,264,698,1322,81,767,1768,2016,979,2073,912,2090,28,1783,2080,1899,1564,1795,2669,235,510,2753,1925,441,2583,2893,1654,2573,2716,1855,2780,794,1206,826,1910,969,133,2508,2223,838,1871,574,2693,1765,2849,2257,149,269,1664,250,641,1471,1440,1625,1585,2324,1821,794,2856,1776,696,335,1862,1510,731,2375,42,475,1437,65,451,2814,796,2276,1739,527,448,2786,2565,2600,1860,2148,350,889,2002,849,1689,1814,2864,1820,146,1055,136,2342,1003,2459,2843,1585,2386,93,1077,2729,1656,2222,292,1275,1218,1053,744,2781,2969,1914,1262,1039,2907,507,2746,856,42,1859,2888,2175,485,631,1278,840,2295,1786,2557,1844,1153,696,1245,2810,1990,1469,2159,2049,2845,221,1672,2273,2142,283,2274,1579,2047,868,1481,2202,1409,472,692,809,2542,2094,1437,0,177,2688,2631,2756,2038,1349,2218,2641,1152,490,169,1995,2118,2292,2605,314,1381,691,438,1002,1841,354,1080,2669,961,1979,2774,196,2879,1562,154,2828,1303,2851,592,17,1455,831,2589,1233,1004,2226,1270,2487,377,856,1900,2104,384,1068,1891,2100,2863,1690,185,2481,261,2073,1946,1463,1519,1712,606,1194,1538,443,2075,2176,1223,2734,307,1117,274,2087,840,2960,1115,2654,2819,362,274,1760,623,1203,1412,2027,2380,2654,1389,1795,875,1802,970,730,1613,964,2422,1781,1026,883,568,2524,2544,2670,2816,1917,1474,2529,2511,1022,2152,2254,45,283,32,2562,578,130,2703,1208,2333,900,1844,2253,1387,1167,1952,586,2674,2127,693,2718,1548,1294,1434,1784,1126,1711,2296,1837,2308,1172,2802,936,2457,2589,2924,1388,382,1478,2424,484,959,2601,2328,2043,850,1821,1718,2561,564,1572,1336,995,739,2264,1292,513,2953,879,1289,1526,789,1793,2406,1986,2741,2123,2478,91,1774,1675,1784,2136,2028,2817,2779,2597,2398,550,849,201,2783,980,1699,2744,2721,1247,2440,2410,2593,1248,1494,2991,947,2478,1239,969,578,1884,444,2881,2285,2570,48,1252,2290,2564,569,1266,285,319,2298,1159,522,46,847,1320,1764,2021,154,2335,174,159,1270,2558,1655,327,2741,2044,1970,2059,1438,347,765,2963,2942,2601,431,2125,686,2313,83,2448,2614,1016,2652,2312,2518,241,166,2130,863,2011,2297,159,2533,2754,622,2806,2392,2888,2286,1508,2166,1516,137,2330,497,1406,2720,2822,1067,646,12,2164,2212,1075,2171,2105,37,300,1069,209,2425,395,363,775,2550,212,330,1682,517,2499,2968,1969,2636,1465,1360,1808,2921,1992,842,2257,1083,2663,125,2278,333,1933,2507,1240,977,1979,865,1916,1436,1996,1144,2027,447,2441,462,2517,867,749,2542,1324,466,1852,387,1749,2089,2123,2391,2103,426,2178,2095,2669,1725,1364,1266,813,771,1548,969,2517,1190,887,1841,1173,2262,857,1872,2578,1277,1850,2045,599,624,1519,2657,415,58,2576,2147,1861,205,2827,918,1661,634,2896,2026,2099,639,2843,2355,998,884,1336,1436,1070,2051,187,1580,2482,2774,932,2680,2213,1433,1139,1701,2479,212,1994,1435,82,2511,1251,169,2413,1330,450,992,1682,642,1790,2021,347,508,2755,2094,922,1391,1928,2651,2153,685,154,884,1486,863,1983,2930,1881,2387,141,1391,2850,1499,1143,1020,2670,450,1644,2131,2079,2660,323,1410,2578,2584,953,1605,560,262,2198,1521,217,1283,1340,687,379,2857,919,1934,1487,295,1159,325,2800,1072,1294,1353,2237,832,81,1013,1534,1673,1875,2669,2268,1506,723,2558,791,51,1166,2890,620,2668,679,1308,1588,2331,1644,1553,691,2575,1287,2992,1238,857,1293,1210,211,270,2821,313,871,2034,2337,278,1605,1348,637,1343,14,238,2692,383,1137,1698,1188,510,672,1846,714,230,1756,2683,1243,588,2316,2685,843,2230,1945,2219,2987,1336,2383,1119,990,2358,1299,700,2730,473,2501,1975,2085,1389,2463,289,648,1318,1633,240,2600,117,681,1065,2328,2504,1655,2015,445,1504,2281,57,2926,1650,7,2964,397,2156,1786,2351,2997,1166,1900,2797,964,2732,2234,2813,82,925,2496,2790,2188,97,1624,2337,1734,663,1818,374,1847,2563,1971,2526,2513,2194,1785,1228,795,2809,1516,1416,1456,2958,1230,2251,969,2825,2605,2515,1,1752,2209,2769,873,1413,541,1866,2367,2524,23,1595,2840,353,571,2931,2945,1436,978,1355,648,1503,2757,2661,927,482,119,2548,1433,2738,980,1042,1025,147,1938,236,2094,837,279,2193,2506,2725,1994,492,66,1237,1225,2256,1840,1560,539,2129,2610,1462,2861,74,1541,1041,149,1337,2801,2926,2956,2711,1585,225,1551,2299,630,2730,158,2961,2551,2007,1489,1255,1294,1559,759,387,153,1411,1678,1132,643,96,123,1029,1564,1729,1893,2045,2290,1387,890,2192,1071,195,1688,72,1749,1921,30,595,1421,1656,2020,348,466,367,2706,1048,2023,923,491,2683,1908,15,161,2718,975,230,1123,1550,175,1723,1289,1897,475,5,1036,2492,1310,1,2590,1837,763,2585,1933,303,1922,1175,2875,2584,1247,2002,2102,2679,327,1649,1122,1148,657,299,139,2361,27,1776,1476,570,592,732,1757,1015,2944,2304,825,401,1825,2366,658,2331,1243,2659,2369,2252,1453,1920,2301,1762,149,2538,1721,1741,1714,2809,2565,2822,1774,67,2171,52,2587,1404,284,1924,267,2568,2544,1617,2888,823,1875,1088,2465,2482,1304,2691,513,1286,46,2747,61,2213,245,1313,1316,2775,1224,1834,617,202,1717,1762,2380,35,2130,512,430,141,1161,1550,873,909,2083,1637,1529,2871,730,1659,283,2327,665,1510,1849,703,2036,2562,2774,47,659,1079,1660,1036,1026,1385,1374,2295,1351,2928,1774,661,1994,953,11,1822,1913,2425,980,65,987,1547,1880,883,2316,598,1451,1660,903,2684,782,1025,2841,1134,1329,580,1502,2845,1067,2411,721,2650,613,1907,2260,1421,2893,807,2644,1510,1404,960,1941,1214,991,2631,1370,2247,1409,2493,1293,2443,2069,209,2223,1889,1182,2766,2386,1169,1128,685,1788,571,2830,2363,2024,859,2917,2837,576,2559,664,2519,1702,909,1609,1845,1340,489,157,1367,935,2747,2519,791,240,1491,938,2981,2828,369,1289,1836,2275,576,2535,65,883,1185,894,2062,2027,2447,1349,1822,1285,264,1369,1899,843,2210,1107,116,2170,2919,1777,806,695,1036,368,1831,1280,789,1685,831,340,77,1188,2177,2015,1026,1830,2694,2350,109,1147,820,1720,992,264,552,1251,111,1155,1869,2356,2710,2339,494,1425,1277,1637,897,1446,2551,850,980,856,128,797,664,1893,2121,268,1991,1038,2961,2656,2207,2925,1766,2189,2279,2500,1995,2674,2332,2255,2143,2971,2002,2403,1043,758,1931,2854,103,2837,1900,1796,750,413,2279,665,1890,1730,2518,1449,728,876,1058,648,2043,2245,2608,1916,2004,799,300,973,85,2593,1939,2108,317,2940,2157,1241,935,97,1246,2364,2491,1520,2382,154,2492,791,1111,890,1532,1963,193,184,2460,472,2341,364,2975,1903,1036,1312,475,1384,879,1587,1884,1941,978,436,1958,2676,690,786,2727,1530,2120,1684,1224,733,2894,2018,84,2504,1803,1041,381,1706,1368,41,632,2511,829,1126,2934,908,303,1705,258,1615,2266,238,781,694,296,1339,1295,407,1703,285,453,115,6,690,901,836,2313,704,530,15,1306,28,778,2113,2084,2228,2252,2494,2259,275,684,2486,1619,2562,545,811,2684,711,1983,2750,16,1497,2823,44,2085,1876,784,1027,2547,347,69,1735,2726,1489,1862,1408,542,1853,1021,690,1775,1689,118,2949,2353,2175,203,998,464,1827,1083,1514,1646,2730,1866,864,498,781,146,2680,489,1098,1455,1867,1656,2957,1887,1883,1423,983,1393,2871,779,1074,200,1318,229,630,674,669,343,487,427,484,2671,2583,1734,2490,364,1093,911,650,2172,2156,1987,2996,2378,59,2660,2513,2784,1415,484,2543,2783,2466,2522,2021,1828}

    2623

    874

    Returns: 746109913

  115. {1963,1421,1371,1904,1733,2575,1584,2751,1543,2569,656,1002,2281,655,1183,2733,1545,249,2548,2647,2293,897,712,2306,2386,1688,2592,1641,217,1890,2984,944,2167,2241,554,1805,2258,2199,1261,2588,2958,2954,499,1576,538,1737,544,138,1766,2309,1595,1062,2391,442,326,935,1475,181,1242,768,537,1218,2854,2296,382,1318,2689,1682,265,350,596,2701,2596,377,821,2505,2024,784,638,213,2080,648,1547,703,2362,2915,1102,1476,480,679,408,1445,2724,772,55,1394,277,1314,160,2301,2,921,338,2447,700,1408,1434,1659,664,2931,556,2331,1469,2998,2468,2023,500,973,2352,611,2541,35,33,241,2123,1353,2915,943,1530,1662,2985,1396,2050,1728,214,932,2162,364,684,2703,1524,2095,1859,1909,1389,688,2037,1503,248,460,554,279,2009,816,1230,2749,1121,2464,2140,1723,834,655,2496,2691,1024,790,926,1635,623,2159,2365,2377,577,2726,819,2522,1638,601,213,1767,2878,2244,2128,60,564,1741,2061,2531,2897,713,1505,486,978,1744,2945,1583,5,2728,1990,1874,738,968,2501,557,2538,2644,250,2012,2854,2260,1931,2447,519,2725,2063,1988,484,1451,2561,2496,1780,249,2229,360,216,2992,2260,562,101,356,186,2399,2892,1044,1580,2693,1330,315,1317,745,2304,273,2314,2002,582,247,213,695,2626,1406,563,1678,2510,1912,2477,2179,1906,109,852,185,2487,2318,1440,441,1638,26,2541,429,2909,1555,2701,2837,2060,1878,963,1142,2106,1369,2029,7,402,132,1618,2476,2086,811,993,41,2665,629,1717,86,2988,2624,1016,659,2390,1964,1629,1617,1275,1344,2428,2509,2361,1516,1531,2800,784,1656,2294,1237,2543,440,2575,2641,1021,1726,645,2911,1393,721,1271,2841,95,734,413,1465,2148,1695,1940,1001,2096,149,1212,278,2345,232,2619,2243,2069,2039,1255,1997,1027,1510,1895,2641,807,82,824,2639,2968,87,150,1685,1335,540,50,2818,291,55,2470,2940,2500,1577,2602,2464,868,2711,2484,2802,2510,360,1545,1214,1159,339,2237,504,689,2481,1394,462,2628,1483,2608,1125,1148,1692,226,727,1420,2282,1786,276,468,622,185,2404,2618,834,347,310,465,407,553,2092,2059,1645,1603,64,2396,1401,576,585,108,977,110,192,955,432,1032,69,1574,1724,2765,306,959,1488,34,2343,69,2627,590,1818,1227,2017,1115,2955,2511,834,2582,2874,679,2807,2861,2016,400,284,916,1676,595,2626,433,1119,346,2748,1161,2509,2836,1750,2310,666,411,1429,709,975,1569,1952,34,1573,764,1906,1616,40,2636,2002,805,2558,2939,457,2780,834,930,2550,667,1178,2343,1011,965,2327,1758,353,521,560,2531,2737,2382,1027,452,1657,1279,2268,38,1020,2968,714,2376,2034,678,2281,719,157,2025,1297,1731,355,74,2886,413,242,452,1000,1315,2654,295,1995,1870,673,307,2016,679,187,2097,1874,7,2930,178,194,639,1982,2264,1961,1064,197,2191,1084,2817,1923,2636,1312,853,344,1134,1472,2562,2259,1419,2353,1681,1859,1353,1564,2168,200,16,2893,1398,1247,2819,88,1504,2073,2384,2673,133,2666,459,388,2817,2533,1252,2004,1716,2720,2349,1372,2135,1607,838,1847,2686,2270,659,2870,1819,1562,281,485,1205,609,2582,2408,690,1321,1307,2959,1109,2447,1684,1681,2759,1087,2327,2175,2790,1920,2308,1498,699,279,681,2888,1577,2926,46,1912,1108,702,361,1750,2329,839,1913,93,281,1430,2336,1205,246,1199,2970,2299,883,2085,248,1840,753,2529,312,2399,546,1924,2038,1366,2369,1977,1872,2814,2034,2621,1235,2665,249,535,186,1808,2359,2479,345,942,1864,2170,834,1289,2872,966,433,2764,117,1758,2069,1027,1630,2507,2995,1603,595,167,1242,2011,1207,2372,559,2453,1753,402,567,2548,381,582,800,2936,146,1040,1961,524,1689,1559,890,2518,61,24,158,2039,1245,2976,1602,1696,2482,140,134,1016,2811,1711,316,2451,1308,2401,999,1888,677,2993,2264,2232,1184,147,2773,1603,408,184,2592,1961,144,775,1996,694,1505,111,218,674,1640,203,458,2706,2344,2235,2,1251,840,1409,2309,2911,1872,150,1221,2058,762,62,1536,1939,683,2887,2003,1637,843,982,2293,2704,970,1588,1394,2705,993,1417,541,1537,923,2382,985,1432,2869,2110,190,75,2817,1176,2692,285,42,1735,995,576,1525,603,2418,2073,2425,1280,2654,1230,2963,212,2068,1323,609,662,2537,2353,900,741,1612,246,137,2456,2973,417,2799,944,1690,2663,1359,1165,1598,748,1789,1748,1044,1027,2729,204,1618,1944,1004,2576,2468,112,408,2674,926,78,319,264,1095,2046,138,2271,480,2502,988,2196,760,403,2502,1932,1661,212,1847,899,2731,2980,629,880,368,668,796,2764,1825,1410,2284,2030,2469,2683,2055,213,866,1829,570,1670,2982,75,1647,1162,2287,103,2309,2471,1649,2432,837,1951,636,971,1581,1337,11,74,875,1901,2367,2448,525,1699,883,1181,2384,2801,2363,2084,2871,429,1522,1249,520,1157,2861,850,1808,2047,316,1635,361,2176,1619,1303,2382,1055,2794,1499,2568,1808,477,1363,199,820,1134,1251,208,2422,419,121,1859,2183,1489,1021,1467,2310,333,112,874,2758,2720,1989,329,1637,2429,1462,1801,1488,1752,2134,1934,2168,790,2796,1092,609,2977,844,2169,876,158,2360,396,2702,1755,478,395,920,2708,521,2312,809,388,679,1231,2289,1423,378,2172,2154,2724,1404,452,2260,471,151,2479,814,1929,657,1816,1714,2413,566,2893,709,2893,898,2198,23,1802,1600,219,1679,1424,2327,579,2621,1433,1391,941,2546,1027,1640,546,1258,2370,2086,68,335,1407,1691,2754,365,2011,713,1675,1461,343,709,1099,2201,975,868,1107,1826,512,1292,975,70,2076,641,1584,1697,2722,467,1740,2975,1787,95,2573,2245,708,1024,994,523,351,243,828,2511,907,49,1449,1468,213,1764,1358,2468,1472,292,2942,1614,2590,239,1446,1102,2950,2265,2882,2326,519,136,2489,23,902,1447,1640,326,1472,1514,1137,782,960,2515,1754,30,853,1869,996,2302,1750,1036,1858,2241,1022,2647,1735,2214,2571,1960,864,1088,265,1914,2333,1403,2381,638,788,147,1545,1728,2146,2022,131,2854,2693,2047,483,37,2443,193,700,402,1513,2934,2309,1100,1296,1033,231,1995,1648,138,2324,346,29,1737,1694,1462,2341,1306,1909,574,1702,2779,1176,804,2398,769,1866,660,834,2548,2034,14,1746,1874,2184,399,2691,2069,1551,971,2817,2025,2208,1640,451,2911,606,2124,1701,2759,1456,465,1844,2768,1038,613,1412,1303,1961,1966,642,138,562,2598,2257,1054,646,1806,1207,873,564,1361,1313,2846,1702,829,92,1871,1572,378,1793,493,2833,373,2861,295,2053,909,2764,1817,2762,830,1756,346,739,1625,1926,2381,402,2633,2830,1937,1899,2326,1908,2451,1368,2682,2142,1896,2337,176,1534,429,1176,1492,1029,2913,1286,2001,2279,1610,1547,2475,2772,879,2194,1152,507,2468,2052,582,1251,280,2348,316,2413,2854,2398,795,2799,1711,1758,972,1342,2082,1800,2929,514,2752,1477,1236,2554,1098,72,1843,1681,2825,256,776,2269,518,2889,1139,1814,2032,2054,2597,1178,1111,2571,929,1955,1294,238,585,1272,1376,1777,391,312,1287,1744,2878,2881,658,1027,580,402,737,1075,1307,832,213,568,145,142,1676,137,1299,424,1901,270,986,2422,1686,316,1529,1252,2990,1710,424,1338,1043,1003,1091,1106,1547,2519,2003,879,573,2941,63,2081,1796,740,2712,2205,1671,2976,177,2910,2294,927,659,556,2023,1423,2641,413,1006,1838,2828,1785,572,1658,1867,581,1021,246,723,867,2153,44,1535,1741,2273,1256,1877,2221,2121,626,1455,2995,1656,2300,518,2354,1032,1892,2294,167,2720,1632,628,1529,317,2994,1812,110,307,1604,28,2924,635,235,1997,1619,824,2423,565,152,393,517,962,2460,660,447,1426,269,163,2956,2902,1286,340,1052,1669,1275,1514,1961,141,906,2534,596,2688,1508,2247,913,2361,2117,1435,2976,2453,1355,127,2065,2077,2481,735,1039,1375,120,2812,2582,524,1762,722,1533,2616,2189,1810,520,615,1730,885,1558,2205,603,58,556,936,513,2656,2006,2413,2371,136,1021,489,350,140,638,79,1744,472,2397,892,2127,235,784,2445,537,2603,2150,1341,1508,2285,1946,595,1048,1514,2817,1588,1952,1291,469,1526,720,452,98,94,1696,2158,1498,481,204,2058,1854,1739,1889,2168,2590,387,1467,2517,1581,1877,448,2208,2537,468,1576,2812,1977,1930,1333,2724,611,2451,151,1036,2919,2847,183,1140,1008,2079,1077,271,2521,1007,2034,1706,2071,1087,538,2359,2444,1453,2575,1450,882,2096,751,7,1359,1678,100,2824,2516,2927,2177,1781,2817,2933,2472,1347,679,265,2485,2192,1413,1475,2468,1388,2599,624,1010,978,463,2268,917,237,884,2447,797,2675,2318,2187,1972,2005,1783,1962,2890,1612,1884,1632,241,1852,2713,629,2563,2227,1788,547,900,1643,1621,831,2489,1154,997,1994,2145,919,2929,2709,1526,1426,1610,2280,1924,1675,619,63,819,812,1203,1045,2633,845,194,2419,2824,1961,2914,1028,1671,1467,260,2402,2277,1103,610,1846,2798,332,1540,2394,1967,2325,1874,1686,2279,1513,1911,1415,549,2948,2755,1445,1958,1976,1715,2162,1250,2778,2902,1079,2470,2587,778,290,2031,1481,2091,1988,1615,2334,1225,1154,1450,697,2262,2413,1419,550,450,2426,2019,1376,3,2322,1005,1921,2956,1517,1269,525,1727,1512,1334,1959,247,149,1830,2487,425,1131,2297,1961,119,2962,2372,1129,563,1842,787,2920,422,2211,965,682,1773,2017,136,75,799,256,1993,1250,2853,2950,2596,1902,1534,1731,1283,92,1198,399,245,1860,1298,759,2935,128,2430,2311,2136,2296,1120,1055,2364,2532,1151,565,1347,1935,1998,1346,2338,470,2509,2899,232,946,2183,2846,2736,800,868,342,477,685,1762,1245,361,2060,372,2023,1326,2413,744,88,2388,2377,450,1144,1420,225,1336,1513,2349,2855,518,794,1715,2744,357,2756,520,1209,2251,2579,2313,2665,2878,1750,2314,856,2699,2845,981,2095,674,2957,88,1026,2459,800,175,1702,1712,2880,1211,1595,638,413,1230,2162,2763,429,1626,1099,2432,310,802,707,2495,2107,113,1697,858,863,2549,994,851,2595,853,1668,2375,376,261,2366,483,1950,2810,1694,2435,1474,2867,423,134,296,2015,436,128,1034,452,1404,2405,1307,430,228,1322,1042,1100,211,1514,2014,1665,2325,1622,2087,2038,9,2928,2828,1488,701,1859,1421,1075,1005,776,1507,2576,1241,1040,1441,2267,2874,1066,134,1258,1586,1857,278,2479,1805,2277,786,1581,519,2524,2819,2461,134,1193,2918,1242,2228,1856,2186,368,950,2123,1192,2392,2699,2859,2392,550,2332,1429,1757,163,534,563,2463,2058,2908,1666,1894,159,1337,2005,2666,1300,2480,2720,1572,361,576,2270,1011,2048,2787,2178,675,515,2553,431,2686,2701,487,1248,397,344,1027,1700,1703,2478,2320,453,1931,1270,1619,944,71,2976,64,2678,966,2625,1010,1756,2569,1811,1628,2725,2778,1365,2,2387,1092,9,1362,1298,1,750,2452,1720,476,777,362,2766,1176,1784,2955,2573,2499,577,1294,1461,1115,2043,309,1759,1383,1632,1744,902,1802,555,2754,634,1103,2793,1584,1374,948,576,2421,1488,1342,2321,138,2126,1902,2153,474,404,1785,1919,1498,1920,2876,2756,1435,1130,1735,1133,776,903,2291,874,1711,1523,419,59,1153,934,1723,1431,2534,1356,2953,859,665,251,568,1893,2499,142,188,2103,1627,1123,88,212,376,52,2060,943,1680,433,1213,1902,1541,2540,1227,1160,2334,1815,1741,812,2257,2379,683,2298,1810,895,1036,371,661,1117,1460,1558,2396,2690,2224,314,714,1649,424,1732,2623,1778,2982,1048,125,1074,2621,528,710,1930,1275,322,2624,640,1243,1836,2567,341,2852,812,2266,1906,627,375,621,2173,2252,947,2576,1400,1677,2437,1992,2006,1271,719,1868,614,1229,168,2422,739,297,435,2256,2180,2968,2111,2143,933,156,2203,2645,535,691,710,901,592,1354,1115,1030,1575,1650,1378,499,2527,2130,1957,1592,2671,1493,1688,2181,2479,1212,207,2,568,936,181,1482,738,2120,651,962,1711,1774,582,2907,372,1735,1799,1423,759,2652,1180,1354,2303,1140,1807,2807,297,2358,1736,2121,2821,659,418,2213,1774,2481,933,2808,2417,2033,639,2541,2759,330,88,889,2854,399,796,2720,211,1382,1156,2234,2280,2885,786,2968,1228,2557,1666,476,2403,21,1197,2749,2339,972,2186,1168,1995,1892,226,2590,47,2408,1234,2008,1739,619,1889,1336,2345,294,1709,2736,2047,2094,2831,2422,1136,268,1418,16,1391,559,537,2845,1078,1587,2686,515,2731,2392,0,459,1786,97,2764,2783,916,359,330,2359,2506,1830,621,2920,2981,1128,1370,780,2820,2716,1970,2979,2954,2881,1128,570,2913,530,2746,104,1380,2107,458,123,2467,2669,2375,2463,2279,395,854,275,136,670,1581,2466,985,2880,1929,1883,61,1090,168,1956,1150,2188,350,1928,2306,1560,1134,1252,259,378,481,2655,2492,1871,2855,322,246,992,720,321,7,1883,2148,2649,2189,1429,1588,2331,1423,2816,2305,2017,960,2671,1567,2081,2222,186,2727,30,246,2021,2073,2504,962,1312,716,74,2067,2540,861,1999,2648,2085,2724,681,649,427,347,1295,1719,630,2759,2399,723,2776,263,348,571,2152,2175,420,2681,1708,73,101,1348,1938,1874,2944,818,941,1704,2673,1311,2438,311,2188,258,2463,2342,862,1702,349,1528,2134,1016,912,1944,85,1827,94,1286,1912,2845,597,1904,2115,761,1041,565,2101,455,2541,1723,2842,2162,2730,2365,1684,2527,2753,2058,2228,1744,137,126,2997,1388,2576,2750,1776,63,745,2057,2129,1622,1958,2325,2567,1971,15,1421,2417,153,1322,1320,107,2193,958,985,396,2666,1143,2201,1719,1494,116,282,1888,1875,400,1444,714,745,2581,2125,551,792,2767,729,2,723,1970,2917,59,2537,2137,2219,1755,1580,2553,1917,2270,1001,2347,957,482,2753,1276,2855,1519,2356,1204,529,1647,808,404,1021,1522,587,2565,2686,894,1608,2837,2022,1969,435,43,1076,1940,2987,416,1508,840,214,1718,1015,1633,2972,1019,1502,2493,1200,2436,650,2951,880,871,1330,705,305,854,902,2154,7,1250,2049,801,1141,528,1342,2515,1049,349,446,2300,511,2680,1739,1462,2263,1570,1497,234,2707,2308,2714,1145,350,252,1500,1381,1864,2872,1558,2594,1958,2244,2872,1042,1908,776,512,2265,308,2559,834,2894,2216,1766,1459,770,577,2661,2013,2114,2175,1305,1777,1623,584,1227,1848,107,2431,1360,2265,2536,2230,1317,277,2531,312,1283,2441,1343,2036,2413,2770,2715,2849,2757,556,1419,2725,415,920,1666,1645,1156,313,754,1242,1206,1376,2164,81,944,2511,2468,2583,622,2738,134,1259,438,2139,655,2750,2911,1366,641,161,2740,2246,2789,518,518,201,645,350,2794,908,1051,1364,2484,2116,1105,1822,638,555,1272,767,2968,1771,2590,1238,419,1273,107,2591,970,2917,958,1345,1420,1745,2958,2808,776,2495,1942,2921,1212,1704,2969,1533,1012,1046,906,431,513,2782,1405,1397,2194,1115,2526,2381,2070,2646,1193,667,688,2564,1622,2701,327,1050,2058,2863,398,1845,2129,960,182,969,68,235,638,140,2889,715,843,947,287,1647,2705,315,1645,911,1655,546,2677,2676,1132,1357,1779,2283,1177,2252,1500,2601,1155,2572,745,1337,1558,394,1073,1316,2497,1962,566,1223,1017,2449,539,2570,2726,2637,1354,1769,129,2245,972,494,2629,174,2479,1270,1824,2976,784,9,2445,158,2834,297,1629,269,2623,2277,523,926,1150,902,2498,1761,1833,2768,1566,705,1738,1947,1493,1768,670,178,132,1645,654,664,960,2904,837,1266,1632,2655,2374,226,2864,2406,2586,2455,1756,2668,2135,680,2776,1247,2166,1974,2824,556,1016,733,1488,761,492,761,939,1387,1876,461,2488,1663,140,2270,880,1429,1098,1448,720,2893,10,2654,2514,1232,1774,2446,2748,89,557,1107,578,343,1686,358,1253,227,1089,2511,2965,1155,1740,41,1979,1191,1429,1454,598,1114,2401,2357,2784,2748,2730,912,2003,2729,1354,2749,334,1939,1858,1601,301,246,2325,1711,2978,303,1182,1042,906,1130,213,205}

    {796,484,2410,2847,629,321,539,934,1529,1047,559,2121,2328,2925,1619,1735,1948,1746,76,1458,1434,2861,273,169,2046,1169,1158,2989,2500,379,1653,2241,1308,579,2144,385,1444,2620,1171,1384,1167,2919,2010,506,1798,1339,2274,943,671,2415,368,166,1248,601,1265,1620,2346,2611,2721,2798,1413,1379,754,2642,2621,924,2902,2251,1731,1597,456,1425,337,831,1464,613,2779,723,2896,1369,304,2292,1147,2175,389,266,2990,1053,1871,2355,2451,662,227,582,1188,2433,114,1620,308,2781,2622,2434,1880,1238,2845,1708,686,2119,754,1721,1755,2967,2389,2699,1302,1340,473,2551,1284,2452,2749,158,1851,1465,2316,356,194,167,2270,516,2688,2873,2729,101,2937,1371,2083,2654,627,2510,2833,2532,1440,2571,925,1828,638,2575,1159,446,1675,1906,2308,2840,277,297,1353,950,1275,1596,2793,1449,975,810,1042,1905,1683,837,2817,1509,779,2785,2253,2294,2881,2521,2650,2525,2817,2496,1027,2160,2415,2688,1747,532,1630,1734,1433,561,1939,1786,695,938,1409,323,689,539,2831,2698,314,819,1529,2943,2303,387,2911,1256,1208,2780,2043,1675,1176,2231,276,1099,2885,2772,1592,2632,2573,2668,903,371,653,1749,1355,2085,701,2807,600,2494,1018,448,1244,1544,1480,2982,152,2080,2280,1126,1554,1912,1567,2645,2621,212,2339,2749,409,75,1495,1798,1514,2102,402,2429,2532,1891,2051,2600,1364,417,753,2806,2612,458,196,1800,2373,690,459,2331,2768,2855,128,2808,1137,2465,56,2621,45,57,2526,1548,2366,1069,545,502,1967,934,918,325,670,1160,2159,2645,1589,696,558,2372,608,154,1496,2428,2671,306,575,2103,1393,2499,1826,1643,1242,2375,1840,2109,2643,1443,1862,1912,2839,547,1750,1096,1713,776,157,2787,1782,833,2189,1111,1353,1081,2132,1856,2789,2759,1094,798,1456,460,821,2170,1418,2168,1902,2823,1486,102,1550,1781,367,2348,2552,2965,2432,40,704,98,529,1244,1576,552,860,2312,2002,361,386,799,2419,763,2330,2106,2055,745,2137,610,1250,2786,1282,1033,69,1313,1008,4,2166,2306,324,983,1912,2025,1837,2400,2791,2225,1776,459,1832,502,505,2560,753,209,2354,417,1091,312,1620,1984,1610,1239,2197,106,1144,2385,454,2135,1149,184,791,758,2653,1024,1095,1427,1076,1907,1594,22,721,941,2730,318,1175,2849,511,1111,917,1932,2952,1527,213,2383,1774,1341,2236,2898,1371,895,6,1429,2589,520,2403,2629,2430,434,2616,1621,1185,2064,167,1242,559,976,302,1251,1662,681,2189,2771,2108,1864,2109,2631,2661,130,2017,2177,2189,424,2425,1879,420,227,2007,2844,602,2449,421,314,2427,470,2831,2147,140,1283,588,557,1673,82,391,1419,775,1698,1629,185,1437,721,900,335,2726,250,2212,2039,1097,2465,2261,2966,1307,649,2362,1539,823,2593,1434,52,1605,286,975,2465,1798,2395,15,579,2035,755,2473,1316,599,828,970,2658,2515,2772,2249,2974,473,2950,1275,2048,1854,1354,2649,2437,1588,2157,1392,2816,1953,1888,1490,2414,332,483,2256,826,1861,1712,1885,934,2428,212,798,877,2988,641,2971,113,629,776,1635,1025,1514,366,2909,1484,720,813,2166,2694,2803,958,601,2794,1071,1273,28,988,1428,2619,2028,2642,2928,2938,2772,2847,31,2361,2380,659,822,563,854,1341,462,390,1626,1438,1900,1160,915,1908,753,1021,1760,1099,688,2505,1466,2752,2292,2873,2513,1200,705,1101,2175,11,2112,1387,688,1973,1855,961,1521,481,906,139,1794,2640,2970,1804,2854,2954,2752,111,2073,1054,986,232,2912,336,343,124,962,1925,2502,1282,761,2628,484,2951,2606,2250,1629,1759,877,253,1031,2175,850,1262,1651,1083,2853,2697,2901,2670,475,368,428,2567,1635,265,482,122,2316,1504,703,303,1779,2102,2749,1986,487,1543,682,1918,1615,2086,255,1472,1613,809,1998,819,1348,335,1588,2597,2464,2187,1958,2135,1106,692,908,1005,2467,2719,1308,277,1460,1498,2212,730,491,1024,1671,167,419,2254,1505,132,2108,164,390,2304,200,2749,1750,954,1682,2366,2154,749,1577,212,414,848,32,213,369,1609,2234,359,1652,1936,1722,2439,79,966,406,1427,75,1758,0,302,2609,754,2827,1251,2893,2817,2233,2454,465,1923,825,1565,1552,2923,292,785,1021,1859,1234,28,1858,608,1646,886,1450,1111,69,1070,143,465,2407,1104,2762,2649,2823,2080,1720,2509,1905,1376,605,1545,1539,38,1382,460,891,2074,1073,250,1057,2688,2112,2230,6,2569,865,582,943,1671,1979,2072,188,1354,2688,1058,527,1941,858,2527,1839,1987,1792,2220,195,2539,2795,2922,881,1512,745,621,2830,2044,1390,860,2125,2749,1151,728,2104,2739,2684,401,2508,1654,372,1363,1764,2009,524,1393,2027,2743,2571,908,466,483,1586,2938,2125,286,2041,79,2853,2048,1471,2961,1080,570,2042,444,2551,2905,1472,198,566,1498,281,270,783,1212,2695,445,437,336,2831,708,2642,331,312,866,2190,2703,2497,299,2594,291,2046,1331,2200,762,359,2409,1770,2808,171,2045,94,2121,1571,1733,2465,1449,2965,668,1733,122,2113,2810,1244,1850,979,2673,2155,2725,1850,1175,1799,2897,1629,1513,706,2272,1065,937,626,1226,488,2760,1957,12,633,717,2039,1354,949,1922,679,353,206,2459,1932,668,1127,1680,2264,1429,41,781,222,2534,13,27,1264,2022,350,2843,1170,224,1865,663,2615,2276,2735,1072,1168,2228,2747,179,2478,2384,244,2271,2636,1681,1018,162,1998,2309,1379,2156,1933,869,610,2838,1520,44,2521,1570,1227,288,2118,2834,877,1318,100,1219,1368,1642,625,346,17,398,472,2006,2585,1649,2105,1330,2588,1700,2652,718,2020,107,2887,1514,2060,1992,2153,1998,1965,761,359,1397,761,2915,2692,1063,2451,1898,1100,1749,290,2869,279,1525,1023,392,1215,2686,2227,2774,726,2256,1183,2270,1790,1542,2737,2123,1986,916,2474,855,2126,962,2978,757,2792,711,1335,2866,1997,697,1061,1511,2868,246,447,2123,25,2606,2414,2082,709,877,870,678,2915,2996,2294,1429,1455,1376,1791,1452,246,1697,1058,2837,2619,1717,2515,2578,2775,1819,2807,2240,1436,1880,1628,1418,2608,1217,1461,2487,1110,2112,2392,1915,1366,1021,2667,1697,1201,1835,1948,984,1941,1630,481,1877,986,2723,925,457,2516,621,1951,2505,1624,1465,510,1046,1469,2036,693,1325,368,939,2335,945,980,2465,2457,2464,747,1988,821,1254,2105,282,834,1568,1279,916,2809,734,2990,2320,1226,827,53,1998,694,2556,172,2275,620,2458,1763,2348,1087,1610,869,1808,1172,1108,142,1570,1645,163,272,1051,2912,1945,2672,203,372,1735,1509,909,1069,1498,1059,2185,2618,1040,2860,1841,1291,1578,1659,962,2981,262,2336,2834,2685,473,2722,1075,408,2489,556,2499,1705,2693,1327,1660,313,1484,612,1265,1270,1277,2156,758,970,1318,1117,675,2385,1881,1163,202,316,106,2652,2915,2053,2759,1621,639,1060,295,811,2223,240,2986,236,1012,2968,2906,1380,714,2817,2872,2287,1998,773,2576,2638,781,2847,148,2248,2597,50,2799,215,2154,1001,1318,1285,1056,1723,1873,2151,2812,84,1809,1752,2182,852,402,150,1491,443,1008,2788,1371,2481,364,292,733,1664,1368,1576,2789,532,713,1671,2861,991,2623,1669,1186,1166,2523,680,952,2634,1636,1576,2368,1871,1674,1164,591,2424,454,6,19,1732,2437,2685,2862,793,1986,319,2019,1352,1153,343,2734,1457,643,2651,1220,1442,2873,626,2530,2710,1314,2359,102,2850,1422,1067,2790,2337,1655,8,1171,1187,308,1581,2374,1586,1418,1681,2133,462,1750,2983,330,2462,569,1485,1578,899,714,1897,2946,873,904,1156,1906,442,2555,2895,2890,2742,685,2321,1549,2000,2527,2976,1620,1327,983,2834,1512,2837,1721,2217,981,1879,774,1337,2248,2815,1873,593,320,2180,914,1240,170,1324,2552,1695,892,2215,2562,2288,496,281,542,2641,1640,230,2657,1933,1233,7,1128,1124,162,1490,2820,151,1823,2411,2831,508,2719,1556,1415,1536,2859,434,1473,2710,1113,667,2608,2120,1561,2255,1591,189,1542,1550,2780,1871,470,518,1685,967,468,2045,366,368,2911,2524,1939,2990,2375,1371,1853,2069,2385,2296,1045,9,1886,2879,1811,1882,1472,2699,1897,2790,497,1910,1035,1893,1546,2404,672,1756,216,7,2018,1173,2835,1385,2991,2623,2442,698,1207,2990,1056,533,2458,173,1281,1622,269,728,764,983,268,39,221,1906,190,1576,607,412,1086,1517,951,570,2516,155,1082,2199,1949,2062,2007,1739,1397,41,1800,1774,2545,2461,1141,1739,2266,1377,548,1476,470,1772,853,1966,1112,2763,370,1628,2207,1711,2274,545,905,1484,310,190,1107,2156,520,1472,1599,1027,604,838,1654,1195,2471,2017,1246,1572,2105,638,736,266,2210,732,1908,2697,598,2811,943,1534,2857,1958,2883,2163,175,261,897,2988,2350,1795,392,1757,1725,2453,439,867,322,1478,781,2521,1848,2664,2845,2312,1066,162,109,2470,679,477,1144,67,77,564,1641,756,2610,1332,2228,213,1014,1525,168,907,2630,2741,1194,1107,2394,2154,1472,225,2685,2833,1170,2726,312,2060,1062,2520,2693,622,2127,1558,2033,958,2351,821,47,1547,2749,1296,669,1631,2102,815,1916,844,589,363,2167,1617,2977,794,2406,2877,2429,1374,819,2613,209,585,583,2137,2875,368,343,202,2249,2884,1460,1351,645,545,2796,1135,1013,536,2149,2420,2619,2378,2295,1049,845,2360,497,2327,2604,179,360,186,621,388,1903,2238,1645,328,609,1392,1744,2863,1423,1414,102,75,2209,301,1622,498,926,2854,2428,481,2718,251,1700,1943,763,803,1373,1201,965,660,1588,484,2687,726,2977,293,1249,7,2662,2820,214,880,373,928,48,2055,1708,1149,2982,446,1751,1042,1666,1176,497,1177,1146,1173,1329,220,1948,2532,1390,1553,1908,2447,1718,2493,1423,2718,2813,737,892,798,775,724,2720,1389,2800,1235,162,786,618,2649,1662,390,1265,1130,1273,2279,2318,455,269,1216,1579,1100,2138,2278,2327,2483,1939,2491,2822,913,1231,1227,849,2808,1727,2889,369,1479,1299,2107,2290,1574,1484,2567,1125,2696,2213,2726,742,1501,2555,1146,1806,641,2090,356,2682,2440,2277,2924,2393,725,1360,2884,532,2712,369,2512,21,190,1245,1675,2202,902,1878,2861,409,1603,2847,2034,2051,857,1622,2703,1490,991,2511,1539,2819,2175,134,1549,2430,123,760,2230,347,681,1443,80,1585,896,1411,2983,20,461,1274,1182,1377,236,270,282,1532,1146,2743,2736,673,402,902,2064,1887,2575,2285,532,1312,1917,210,2964,2078,1027,2659,2717,593,502,1567,33,2556,2635,1797,1506,712,2375,347,2257,2088,1241,329,501,620,1958,235,165,1294,1586,2450,2156,2573,1672,866,1822,1419,2591,2774,446,2644,851,2444,1116,1561,1563,929,368,238,250,687,18,631,2356,1783,1085,1107,2242,563,1768,73,1629,2669,487,1740,823,912,1380,2745,1345,870,2955,16,1615,2688,2018,2270,1634,1728,426,2521,2772,516,2636,2430,1256,1985,2591,2251,490,2376,289,2315,106,2575,1472,2554,1155,2701,1021,1091,1256,1742,265,455,2781,1009,105,2861,817,1470,1765,1980,2058,2687,1100,2584,2709,2060,1122,2458,2865,35,350,1125,2098,1105,1319,1284,2285,1518,2110,1301,1964,1592,474,288,51,2204,233,2537,2693,589,2735,2047,1997,2652,2537,2131,940,1975,2320,834,2916,2292,2671,2056,1540,1717,1549,2594,2229,1581,2629,138,264,1821,36,2938,621,1244,992,354,2949,172,2526,1187,551,2045,1570,2569,366,16,1407,107,2362,1708,1810,1924,167,2919,2880,1202,1180,2960,872,1185,1902,144,2447,393,1785,1522,1068,2112,2732,96,1470,1821,2459,135,617,526,1558,2233,2621,2307,2843,522,685,15,2111,2676,517,910,2804,1119,660,1805,1079,1230,1085,2817,47,632,1216,129,1779,2508,2348,1961,2837,1545,494,2762,1298,421,74,1236,2984,766,1743,2743,2736,1456,1586,387,2974,647,2971,888,2060,2654,1769,2235,1341,2658,1175,1007,2069,1904,1894,2206,2256,2486,1045,1176,1918,2621,1927,1539,2898,1756,1899,2865,1371,1688,16,2046,2114,1328,2776,697,1128,2027,2077,1467,2280,1349,611,2304,254,933,525,2047,100,2761,2868,2900,2848,1076,1549,1889,2597,1040,2111,2416,2947,507,2999,2490,1284,1437,2552,509,292,150,2799,2580,99,1013,847,922,752,2252,1954,2573,2800,1304,156,447,976,1972,596,1412,765,2932,2575,2511,1280,1439,1062,2434,481,2122,26,2532,2022,2035,2837,1815,276,2360,483,282,1643,1516,1595,1490,2903,1576,138,1239,2895,2634,264,1986,1487,717,1644,1076,169,1743,9,2643,1037,246,2047,1386,2241,2942,1576,1826,2214,878,319,2605,1421,2174,265,1222,1015,631,1519,2624,229,1488,454,1621,609,265,2558,2965,90,2470,2130,2398,449,1183,1983,283,1383,1134,1582,577,2829,789,223,1983,352,2317,471,566,636,1611,2729,1354,1903,2864,1049,572,2272,637,2505,1075,1639,2241,1230,652,2039,1496,300,2342,355,1508,1179,531,326,1309,520,1189,1539,2700,989,1572,1293,562,1196,1612,659,1267,1402,2797,1140,1712,111,2552,1312,2858,208,2966,2006,2019,2677,750,150,659,2225,2184,917,1098,2377,2950,940,1593,974,1721,1635,511,1667,958,1954,2085,987,1744,1083,1496,613,1131,2204,262,289,503,1323,1590,1350,2981,2418,2053,2963,2653,191,2660,563,2171,370,1654,1619,509,2563,1775,2534,195,2064,2459,1066,2869,1033,1265,1290,2044,2831,452,841,2530,857,1455,771,1633,1663,2861,83,819,676,1820,1557,2377,2638,1231,2975,2644,1981,970,1376,2788,1834,1268,798,1366,2048,837,2878,644,2208,2099,2862,2165,1107,1369,1052,2577,2531,1943,2089,931,2392,887,2289,2687,1312,1905,582,846,2392,1367,1463,806,2646,651,2449,1944,1617,2500,94,1032,483,1303,2430,2544,1002,543,2750,953,893,66,2802,479,687,2805,1453,639,2840,2508,1026,2851,802,2374,2985,1756,1278,1109,2968,2559,448,2684,1310,1803,627,2535,2451,956,1458,1005,1756,112,2138,2433,464,2696,277,793,1455,2077,2507,696,2412,2675,1606,1562,1707,2824,2142,592,1822,2876,236,2308,907,2988,1723,2569,145,2701,1671,2329,2578,1871,2696,1892,1789,2193,1939,2161,1263,2566,2305,1257,964,2487,8,316,1888,1399,150,1367,957,1988,295,1416,2241,2392,2976,1105,318,1691,2314,1273,481,2141,596,916,1405,1863,2353,1411,526,2041,1731,413,2242,1668,1537,2688,2684,1298,1383,858,754,107,1849,776,2777,30,1140,213,1723,1467,2266,2294,2066,2454,2434,2693,2580,1181,679,1693,1504,123,2020,1176,52,2392,179,1774,2306,1813,2100,1731,2832,1652,52,508,2504,2648,2706,1979,2218,1644,2897,2737,2893,1190,2169,2511,1662,2503,2130,1112,434,429,842,2891,1978,2809,668,2448,167,2765,1915,74,1314,746,2175,2651,2121,824,594,2854,2293,835,2239,2206,990,1354,2296,2031,472,586,2542,2134,1091,2617,1011,54,1998,1294,384,1012,2180,2077,2912,213,2286,1045,2123,2859,1288,175,1958,91,2447,374,1174,2977,2476,2273,115,419,2026,1583,1224,753,2234,996,1756,591,2413,743,2137,1724,2919,1446,380,2244,535,2505,2854,2023,2832,1489,1905,1381,1540,2772,2522,2991,694,2411,731,1138,274,1016,889,1351,998,2319,1802,2661,1513,520,1905,340,1796,2433,596,246,796,2769,1538,1036,627,2294,2775,1395,267,249,1853,1855,2987,1269,89,1484,1584,468,1534,1118,1863,1687,191,836,800,774,2040,1062,2545,2547,514,410,1629,2130,118,2837,1991,2685,1200,180,2859,65,495,2031,301,2531,231,1057,383,866,1656,298,2528,1260,1515,2226,2162,679,2826,2323,943,1093,2915,2296,2679,2831,347,417,1480,1622,2785,2093,1968,1919,543,2819,1764,2054,1534,151,405,2582,2248,1729,2887,1749,1961,1284,301,2118,2362,2625,1151,1871,2298,809,1615,1621,1000,2782,1796,359,2429,2615,1998,769,2618,1336,11,2693,257,1376,1659,1418,891,328,2574,2300,21,2239,2096,1831,2607,2112,1213,616,987,1210,807,2746,2000,2891,2340,609,2195,379,832,2856,380,2868,943,2614,201,904,2854,1176,480,1960,2541,2075,1045,537,341,2754,2902}

    2896

    2151

    Returns: 526824443

  116. {834,2941,539,1193,2097,522,772,1688,415,562,1017,2957,187,548,439,1273,974,1461,1183,2492,2027,1844,498,1424,1729,1231,320,2590,390,2422,2920,2797,2285,1820,579,706,2980,1009,135,927,1363,2136,632,1988,2749,1748,475,1243,2360,421,2491,1934,904,1924,2428,98,2186,2541,1657,2730,2613,2319,696,2662,2985,2951,1893,2135,51,2464,1977,1187,2559,1343,1155,1354,2701,2783,2254,6,2750,376,13,1831,221,645,2519,1643,1582,1910,155,2149,357,790,200,970,1183,2102,2573,1696,530,832,787,1872,1188,2846,1678,2307,1425,2349,343,208,443,2019,1830,2869,229,1919,1385,2266,1779,211,359,1228,2496,245,2244,2832,1400,482,2783,1749,2668,527,2177,2622,2481,410,1496,2536,1026,896,1660,555,1382,2211,671,1165,1972,28,2800,119,2296,2484,2233,961,1867,2381,1876,143,578,574,2393,2339,2547,2434,2177,1661,2495,2900,82,2553,1674,2106,1129,55,336,174,21,2649,750,2636,949,1852,722,237,2921,1386,2749,875,2718,512,121,2903,131,2618,2855,1624,95,28,2406,1218,1587,2299,2560,1844,1909,1243,1165,2463,826,1584,1915,2894,1642,1181,1552,104,1457,2681,718,128,1953,2607,692,739,317,2200,1951,1162,2620,1234,1340,488,2174,2018,2600,453,2814,471,1439,2754,732,2158,2858,685,2280,1095,2745,1990,1610,1371,1619,1810,2303,806,2629,148,734,2506,1556,2738,2121,989,2168,60,903,2853,617,2715,2991,206,568,2478,470,1521,2833,2916,2963,862,1236,751,2837,934,2234,861,2761,619,2078,812,349,1591,1759,1267,1729,2130,1269,2007,1566,1293,1694,540,352,2799,991,912,1742,2205,49,1682,2307,1583,368,2408,1610,1939,2347,2860,2855,1534,1587,2153,2992,2310,126,2571,2388,2579,1452,566,2640,971,2231,896,1588,2718,751,1869,2742,1777,529,2221,536,553,447,2615,2638,1753,830,1574,725,793,768,1242,73,397,1997,531,1854,2258,2810,2196,519,1746,2157,2483,1598,1916,757,60,906,2117,2823,48,509,2163,1804,1726,1785,2781,1755,2806,909,842,1085,1894,2546,110,2979,2851,2252,424,1217,1743,177,1042,2379,595,1699,257,2114,1697,1767,748,327,291,1991,2753,1010,949,533,930,99,1132,1210,231,1417,2117,214,2045,1649,1111,1769,479,1025,825,46,168,89,2845,2989,931,2466,1222,625,2707,287,1967,417,1438,1284,1159,2031,2283,2552,2925,1173,807,1812,2276,313,1828,956,1395,538,599,2305,392,1840,1933,139,2667,94,750,1731,1527,849,1564,1794,823,151,2630,2343,1375,2769,2394,606,1561,345,1805,2617,617,2491,1607,2610,2923,739,640,1379,1593,1984,2554,2435,844,174,2006,444,1140,1415,2105,1756,1089,2301,389,928,2387,2592,2523,2267,840,985,1018,1118,988,239,1520,2809,1121,1760,2344,1690,183,2767,2660,835,550,286,2181,393,936,627,1509,184,30,2438,1645,154,1052,2301,2264,363,2513,2775,1778,1986,948,767,1063,1789,2867,1254,1693,2929,2766,106,2615,905,2402,1211,988,1654,1695,537,1770,1581,332,1733,280,2837,400,1691,2421,2476,2829,2143,1098,366,1971,2029,2396,1694,698,668,2389,29,2504,2831,271,638,835,2025,1138,1160,330,473,137,480,559,837,1883,1524,2451,2306,442,821,1101,780,676,408,2427,1100,384,321,2958,2404,1976,102,2679,614,1299,1014,1233,1220,2382,1471,29,2166,256,2415,1834,1421,2947,766,2429,2290,1267,2160,2477,897,203,2834,2505,1609,1650,680,1895,521,1474,952,0,1360,2576,1578,72,1326,2675,741,1647,1883,1161,84,2537,2097,1276,8,1605,1479,232,2586,1196,2637,2655,1653,1559,173,1757,1871,2628,2429,1613,427,755,1674,1463,1117,2883,978,1593,66,613,2273,1923,2790,377,1677,1661,2601,230,1110,2628,2482,794,1509,2127,153,1580,623,1959,1662,259,2537,2865,2694,1250,2197,284,1781,569,829,2971,2403,922,2385,252,1080,333,2818,282,914,1757,2515,371,1255,1918,1508,1918,1817,1377,508,1730,2343,2674,1663,597,1188,731,2413,207,1231,133,2762,1235,1710,391,2337,185,1397,440,2209,1160,2558,1383,2872,352,2004,1359,2048,2897,2016,1477,2056,19,305,2287,12,1455,2526,2733,2210,2453,1180,2040,2557,2226,2396,2027,2132,679,1535,2917,1333,1786,2524,301,544,2588,2884,2760,737,2192,1735,43,2644,1487,361,2164,925,324,2341,1467,1215,50,2509,2355,2260,303,1237,1716,1363,1767,2139,2574,2450,76,2974,1382,2813,761,117,1191,2051,2544,2625,2910,2896,387,1714,2236,399,270,2021,1489,2789,675,2782,1456,1603,2337,1726,113,2121,1448,73,2999,327,2905,275,1026,860,1416,1765,2531,208,2078,2459,2747,1034,687,2595,59,1625,2481,116,736,370,338,2309,1075,90,2397,2325,2959,2991,152,1897,386,1810,1053,2985,1387,2015,1241,2710,1353,2573,1118,2247,1892,1932,2090,464,186,373,322,1066,2470,559,2935,2740,491,2956,2378,1082,2596,2044,2710,2107,1966,2448,2879,726,358,1334,2252,813,611,2306,922,2977,799,515,1681,86,21,1662,1341,445,1718,1332,2563,1206,554,2261,946,2268,2010,1843,1783,2974,2197,335,2020,2561,923,652,2093,1419,233,2965,1356,2033,1233,2576,1017,137,1665,2441,833,1940,855,1709,1764,984,335,1335,163,144,1394,315,2784,594,1764,2394,647,1494,951,211,790,564,2243,2802,2664,608,776,2627,1773,2,534,20,68,627,2586,681,1072,1973,527,162,707,2265,1112,107,2684,514,1069,1219,2844,1589,1147,2391,2393,2981,198,1880,1885,1887,1035,542,2007,70,2954,1975,1201,2927,2589,600,895,1349,977,1207,2038,1198,910,57,1989,2108,377,1520,919,1434,955,2079,477,2372,1444,2439,2488,7,43,2784,805,698,1044,2049,2797,1199,1288,2844,1280,300,1817,1667,1604,1112,2951,88,640,61,894,63,1194,2427,1225,1201,918,2098,1344,2489,2584,842,783,59,2039,2449,2259,2472,2765,2585,305,1519,1554,2479,1060,1778,1566,628,181,948,1285,79,441,1703,2822,2717,1060,125,2609,2320,2043,2091,1235,2069,856,888,931,2147,172,382,868,2759,710,280,982,107,858,2024,1608,1884,780,1325,290,1551,2824,2466,1980,2125,175,511,2754,334,1300,928,832,273,2516,2676,179,831,2606,1230,762,2936,578,1417,2291,1141,1001,2070,2146,2088,939,2729,1592,1511,1580,2390,1907,2058,1257,2760,1942,719,781,412,1873,1395,1931,271,2056,1818,231,2512,1867,2868,946,2022,552,1535,2652,1224,2144,1684,2835,2423,2755,1507,2518,2059,2179,557,1523,906,1126,2193,1483,1252,2892,1602,1557,2517,1259,115,100,2207,1588,45,535,285,1506,2648,1279,2242,2970,2693,526,1645,2758,101,81,1740,3,120,128,234,2662,426,1043,4,2988,1622,1816,1251,982,1465,1669,2196,2997,753,912,323,1735,2352,523,469,257,2906,2514,26,308,805,1444,1926,412,1098,2955,815,877,2543,1310,466,1219,2911,279,1324,1010,303,2772,1935,1223,148,2057,1505,1625,372,2689,22,2523,911,1546,2926,921,1505,2456,1800,2907,2239,1986,471,432,718,968,414,644,1186,1091,435,1167,272,277,1801,853,1309,445,1143,1721,1021,240,1510,1500,962,1543,155,1298,242,2834,1877,1422,2971,1454,2281,2919,677,1899,481,1765,1913,1518,1380,2340,1702,1564,2886,1384,2279,1836,437,302,278,2922,2183,1853,91,786,1206,2204,230,603,2692,1142,1970,2494,1946,2599,2031,2890,254,2469,2087,219,2619,743,1800,2575,1775,140,1413,961,536,436,1692,972,1859,715,1304,248,48,2868,2357,1788,1591,1103,714,583,1207,703,408,2903,666,717,2504,1190,1525,382,2240,1915,713,727,1772,1301,1933,2046,1389,1900,1808,1150,1987,2100,2118,2354,1531,1665,458,1498,2882,2434,1277,1245,1963,2051,874,293,2073,2979,2594,439,2866,2323,1195,1171,2791,2836,2308,2860,1875,1913,2973,2539,1628,966,2816,2419,483,1352,446,1304,2705,1719,1503,1481,1420,2952,1166,1567,1775,2338,225,2371,631,976,1263,127,1099,163,1968,1668,2823,2198,430,2089,2173,1595,1816,268,735,2272,2817,2807,2666,1950,2731,2996,1012,1251,2218,2773,810,1336,1274,2685,2090,1495,994,165,1782,2898,1718,1221,1633,2702,1967,2627,1630,102,2313,1414,2776,664,2371,2786,999,763,993,1506,845,2521,2178,353,866,1168,2490,898,270,929,1964,1459,882,111,924,996,306,2787,1068,710,2960,286,1634,1191,1870,715,717,1654,1306,2468,11,124,2688,1895,1250,2967,1311,1858,2893,112,1084,467,1604,2138,375,2046,1543,2922,2895,1040,965,940,422,392,858,1863,2225,2994,1134,669,217,1866,479,2725,2819,296,2939,838,762,385,2269,2608,469,1308,1079,1677,1886,1131,1172,2687,176,539,1008,1526,593,1719,2896,2801,1461,2342,746,874,2942,655,2388,96,1472,773,760,2583,1811,1020,2695,1265,520,2260,998,269,2440,1133,495,867,492,1701,865,184,2207,1451,723,2383,422,2213,697,787,594,1597,2472,2945,1364,1528,91,2378,2326,2616,2751,516,870,2734,745,1482,2471,113,1278,2789,616,272,885,857,2029,565,2454,628,390,2859,2674,1736,2422,2184,2779,2399,2058,289,2372,2711,2642,1803,807,1448,2294,2068,1000,1808,518,1839,120,884,2139,360,310,1877,2175,1192,94,2234,2972,2545,204,1546,937,1502,2795,2420,2848,957,2461,253,1998,782,2707,1618,2476,2672,2810,2089,1154,2096,995,2368,76,1737,616,476,965,393,2930,1823,1703,2918,788,78,1122,1632,2236,1256,2902,1559,2515,2009,1631,2577,2524,803,1691,2246,2313,228,2795,789,1648,1592,1094,2635,2247,403,517,2191,1685,109,892,2154,546,848,2490,676,488,2641,37,2888,2176,962,521,150,288,1737,2460,246,251,2650,1829,933,2624,1015,2827,2631,1485,1157,916,1351,2511,1745,814,2613,2320,1905,476,686,1244,1704,2028,926,1099,1261,544,2166,204,2457,411,1055,636,2137,2777,1460,1291,1410,2129,2336,2572,2113,889,1565,2363,402,1242,2055,2362,2355,1358,1023,2108,1720,2938,2436,1740,266,1092,114,2198,2112,828,2530,1050,1203,1774,379,1144,2083,1689,486,670,423,2025,2980,404,315,1868,1748,2280,1185,490,2297,237,441,2187,824,2338,2828,2620,1722,2487,2332,905,1268,1843,44,876,1410,1617,852,143,431,1831,2607,2271,1000,1212,1655,1727,1331,1706,2621,728,2441,2743,2248,2924,339,2374,1370,1907,337,494,1005,1908,702,629,78,2694,1766,834,2045,2436,1537,524,2874,2724,1295,2732,2096,375,2608,758,12,2794,987,1146,1771,100,1989,1078,2839,2181,2109,2105,2473,1073,675,1515,1846,33,1678,1702,712,943,742,2411,2508,2734,1307,2392,2460,2719,738,1539,2003,2822,1946,2919,653,2772,415,614,218,2024,2984,1513,690,515,585,2229,2622,1750,769,395,1799,1733,1024,2779,575,365,170,1477,2889,1892,970,2284,215,189,1515,129,798,560,1519,1339,819,1635,199,119,2350,2008,2067,2215,2735,2447,2356,1679,567,1057,188,202,1440,235,2111,42,541,2172,1445,367,898,1297,1563,1313,2715,2253,2933,1553,2527,1904,836,532,1045,2074,636,2143,1641,2366,2381,1744,531,2446,1979,2852,1673,1289,2533,1151,2770,755,2438,2062,2682,89,2421,582,720,2286,1530,1596,1318,1960,1274,2410,2553,2041,885,492,1302,2272,1338,2274,1094,749,1849,2811,910,609,97,1579,2205,1296,2820,1460,2897,1127,1981,2638,1142,744,2302,738,1296,802,2165,2496,2651,2357,1868,2122,679,304,374,2861,1532,411,24,1486,1213,1768,1292,129,429,1943,79,157,510,2132,265,1335,1105,2171,2905,452,2249,1975,846,2167,2806,1003,1672,794,1353,1756,2369,302,2173,1840,1633,160,1064,791,2030,1156,1007,2593,1469,226,1638,36,1906,2716,1914,1949,320,2423,871,2228,1300,1068,839,2318,1036,9,2669,1028,1541,268,848,2074,181,1894,1711,2479,1902,2592,2565,2424,1297,1853,2066,850,683,1785,2206,331,485,989,255,1153,1214,2821,1373,1896,1999,1475,205,2099,2300,1911,1084,2111,1548,2880,1555,1438,1919,2969,83,1380,1348,1135,777,1695,2062,865,1329,1511,1083,368,409,2156,111,1357,1974,350,41,764,819,2908,1476,2746,2398,1284,1523,1222,2582,1443,1955,1090,1432,2673,2507,2268,1011,2885,324,1572,1680,1615,1106,1371,2794,1436,2403,950,2623,1239,1556,1001,387,1033,1897,1807,967,1501,1504,1348,516,1707,1637,1290,1484,454,1339,1890,1770,1878,2791,936,1423,2480,246,2577,169,1991,2640,2551,2298,1239,2598,741,1833,1343,623,2395,2262,228,65,1741,413,1283,1228,2084,2133,2856,468,1742,170,2162,33,1,1287,1798,339,2562,656,909,1943,897,2854,992,2002,1617,1114,2501,2064,565,2402,2010,1120,2373,1935,975,1712,2851,2717,1073,1164,1577,386,1156,847,2190,2487,981,938,804,2727,908,1046,2894,1576,653,612,1178,956,67,737,1802,1176,2960,2158,856,1366,862,584,1659,157,448,2741,2790,75,1492,2564,2116,158,144,2022,13,203,299,2000,2999,1728,2265,2034,2546,2506,1294,1210,2522,2456,1313,74,2637,1898,1805,164,34,1685,809,194,2251,2087,2614,2989,2924,1072,2164,1937,1489,844,1428,2670,505,2093,1846,1522,2500,2464,427,316,1476,1315,2721,1995,836,1450,2809,580,213,1784,1270,556,138,1504,109,364,2761,2798,1578,1900,2417,1083,1575,2444,534,2289,1276,583,2995,26,1752,70,1358,2878,1411,69,2621,2147,351,2801,659,218,2656,1680,2318,700,2281,765,984,2292,576,1376,1706,2910,1088,1514,2955,522,2675,2902,2725,483,1456,637,201,2940,2216,1639,183,30,2930,1019,2094,685,351,1490,1814,843,502,2928,2942,1420,1739,1628,2123,2619,1108,1820,1741,1302,2250,2953,1636,629,2088,2465,443,2344,1150,1441,2190,1780,177,508,1429,2873,409,233,373,262,820,122,2250,1744,1471,2952,2208,2284,1516,609,2468,2486,1327,2959,937,1003,626,2642,1400,2554,1806,598,1132,701,2499,2805,568,419,2983,1716,1062,2360,1458,360,1091,915,2052,1061,1532,2367,455,426,1487,2246,145,2538,2676,1164,1220,499,1875,2102,1761,2356,1027,904,631,452,2877,1970,1501,2820,630,772,1088,1130,680,2255,2527,2933,2812,117,1547,804,1261,2071,2332,1650,2192,1675,994,1076,2986,2222,957,1459,1113,2375,563,2892,2556,130,2559,364,622,2839,714,2966,244,2219,2591,46,1533,677,1603,2237,2503,2901,1484,891,2565,1262,1902,313,2998,2770,63,1361,920,2683,74,1725,990,851,533,2001,1727,1069,1289,15,1945,2401,398,2386,330,1226,1958,1956,2182,2329,791,2698,722,2345,2302,824,19,1683,428,1330,1992,657,678,1803,2321,619,2648,1152,2804,1291,1676,1305,1238,404,2548,646,489,20,1572,2723,1996,1815,2666,2925,2339,2595,1860,448,901,2982,1842,608,2245,2244,2054,586,2850,2447,125,926,31,2618,227,2957,1850,317,2400,2223,2118,859,2116,969,2727,474,2542,2383,159,156,2293,1162,1340,2331,1209,1161,2296,2416,606,779,1762,980,999,1793,2561,2915,2713,1111,1237,1202,652,2937,1577,11,1308,1906,1044,1536,881,1428,321,1699,2928,1861,711,2119,2899,917,425,31,979,1192,2697,1939,2876,1433,2914,2588,2848,2328,1272,1540,716,2297,1018,2407,558,2939,282,610,850,326,1917,93,1166,1538,487,2443,2566,2151,921,51,1909,1755,1253,2130,2169,2702,2294,876,1493,1427,2165,1411,585,236,1375,50,889,1195,1528,2129,383,673,2411,1373,1922,1248,2535,863,1944,2340,986,24,2775,1754,2053,598,1048,2906,2076,2602,964,660,776,2183,436,1974,44,1666,2788,2442,1629,2424,2026,633,8,53,1351,2461,273,1013,2069,381,2349,2057,1769,1137,2288,1499,2136,2255,1851,1037,1278,2517,1751,1354,977,1640,1611,35,1178,1788,1125,622,1859,2792,2273,1594,2687,2082,1607,1264,934,472,1332,359,2684,1158,491,840,86,1170,1128,1952,2462,950,2299,1503,2825,2322,2840,2316,185,2034,635,1104,156,56,2534,1392,1636,2038,1435,446,2,1940,577,788,2052,520,1776,2911,2773,193,366,108,2641,182,1962,2990,2445,2889,2110,2766,357,1977,2805,473,309,540,752,1419,135,2446,2654,1613,1865,673,2767,1247,1839,2690,2826,960,2363,1797,2914}

    {2253,2325,953,2075,1766,1154,1023,133,1508,648,587,1458,658,1822,2005,2803,570,498,2059,281,474,2605,1259,1787,663,1672,1116,2324,1236,2931,2685,2228,1455,18,406,678,2956,2188,1087,914,800,1225,2529,2348,1110,2323,713,388,397,2494,2370,1626,3,2259,2182,277,1971,2752,1835,1498,1408,2377,54,1440,23,1198,2514,1916,32,701,2080,2254,2793,2142,1053,648,2917,1745,1432,542,2893,1825,2730,1101,2656,2799,734,241,1949,1470,1995,1879,1656,2258,1333,1260,2154,151,2934,2532,328,662,831,930,1349,1669,2585,2238,1077,2966,1148,1443,235,1093,2110,2076,1108,2451,2334,395,1652,171,727,1374,2768,1472,711,2923,401,796,1560,1649,1787,429,666,1960,1686,2665,362,538,2001,2511,1497,1423,1530,955,325,878,1715,2918,1033,2417,2568,2705,1701,1959,1569,1838,1798,1760,2728,147,2653,1863,1947,1052,2847,2194,2239,1961,1639,451,297,2473,1407,1966,2277,232,2067,468,308,604,2786,1569,2712,69,2317,821,2153,141,2017,2023,167,478,2100,1387,1303,2459,2271,2321,935,2099,2736,1081,1416,1728,642,2626,2891,134,991,2035,423,49,1865,1016,2741,77,1076,1184,1964,1675,2651,841,9,1337,592,2420,2455,348,450,1882,2781,2217,1850,1872,1270,1809,1500,2134,276,1205,2877,130,1281,621,2365,27,2709,2104,869,1449,2912,1712,1751,641,2663,1446,827,547,646,997,2525,1042,2314,1365,329,996,2555,915,997,1618,1981,398,1135,2180,32,2156,1890,1028,592,2603,2657,1266,1807,2103,1364,2188,1570,1958,883,2867,83,1826,1089,1054,1845,2092,2832,932,1452,1658,2077,1085,699,115,1818,367,1659,166,1480,1404,1549,1627,605,1497,1182,2500,2368,136,1903,1119,1616,979,1205,2909,816,2528,2061,2509,1275,457,1983,1575,2230,1698,186,1901,2432,879,180,1372,1107,1186,2872,2304,647,1283,2659,2658,251,818,1200,1594,990,1386,210,2480,292,2050,2722,1245,2327,557,1925,1301,2050,724,1374,2333,993,1791,2946,2572,2990,1679,40,1730,2304,1493,2211,85,93,1848,1985,433,2452,1570,1190,2395,1979,2677,2066,2437,2413,1116,2796,2774,2033,2863,708,22,249,1955,1346,591,694,1394,2965,2161,2875,893,2179,1273,1790,1480,1011,1104,1631,649,1367,2291,2777,85,1529,1462,2873,760,2406,2792,1223,1517,265,808,496,1366,261,2978,825,736,1670,57,1494,1127,267,2176,1263,1483,2358,1598,1385,781,450,1426,1280,138,573,576,1445,730,1673,274,501,428,1824,297,2214,525,2329,2854,1688,1828,1009,1453,785,2599,2949,688,1806,1241,255,2785,2672,599,554,1651,1606,2602,2221,2195,1783,1442,2005,1252,2450,2405,374,252,68,2898,1290,1204,39,2335,75,1051,1930,1317,2203,2871,145,643,131,2263,1424,995,1362,817,2709,783,1189,1312,463,1070,1864,1209,1203,886,319,1321,1124,2426,1608,2026,756,2699,2414,2195,2263,1542,248,2474,1664,1584,1325,2264,2471,2804,1463,1629,2560,242,2949,2135,1196,2202,1956,1630,2128,1070,2474,2405,1130,2081,1571,1747,1144,2752,725,1265,1317,2895,663,761,1992,2531,500,644,1415,1710,590,2881,420,513,952,493,1651,42,511,1040,721,2723,1271,564,806,1870,610,1953,1376,2995,1708,196,254,2276,1194,1809,2452,1485,2148,2757,786,2055,854,2489,1377,2689,285,861,2645,1950,1126,784,1529,2030,1676,1847,1158,2635,2336,2916,1838,541,917,2389,1381,5,1065,1871,983,47,2764,2696,892,191,2973,1030,2209,2003,954,2788,2878,1925,1193,2830,2721,684,1590,1832,801,1724,2035,1077,2859,275,873,1350,552,1912,434,1963,2862,810,919,10,1174,2469,1381,1561,2802,323,589,1208,900,16,1342,513,95,2047,1849,2178,907,1833,2521,975,981,1436,1249,2409,1920,782,1655,168,495,1496,587,136,2404,238,67,1999,574,2765,2639,2157,1314,2891,2238,1466,1609,1759,1260,1962,1359,348,2964,2866,1465,1734,1739,1663,1182,1221,462,2617,1891,2686,2275,2369,220,590,1585,2346,314,2825,703,2425,1985,122,196,1282,1102,134,2220,1004,2126,178,551,2650,1253,1155,907,1204,1022,2539,172,1614,1059,2580,1177,1356,1397,815,1355,465,2697,857,1086,169,192,1067,852,457,2538,1796,1792,2235,0,2068,1646,2846,420,1141,1786,1246,276,1540,354,1855,2901,2703,1550,2947,1881,2771,2518,870,506,954,2726,141,1071,953,2850,81,1131,114,2683,732,2324,1122,1490,2793,2883,2032,391,160,1945,1507,793,764,620,650,1286,923,1315,1683,1952,2262,87,2742,1552,510,379,38,1468,2049,1606,2748,2528,306,692,2290,591,671,1576,1795,2453,1874,2975,1896,2913,571,556,263,2293,1811,444,746,2609,1622,1632,2122,2976,2435,887,1136,1174,1482,291,2943,569,1722,2976,2782,2580,1331,220,355,2041,693,2077,5,2747,742,2700,660,2013,2545,707,316,2667,1105,1007,1322,2982,1379,845,1328,2708,2364,2567,1211,1311,1537,626,2036,1133,2443,2938,1893,451,602,481,2145,2800,1447,545,2945,2382,1282,2401,328,1886,2562,1059,61,2992,2305,1149,972,1451,1047,799,2547,166,1179,2128,941,2908,226,1773,1390,2880,2570,1856,2485,191,1538,1623,53,973,2737,2904,1200,400,2763,1941,1326,1449,1062,1821,860,1275,2376,2900,1830,1692,497,2008,1418,38,871,2161,1738,1666,795,484,1969,1969,2529,1092,1887,449,2564,319,383,509,2245,833,2566,2014,963,1634,2433,602,1244,108,796,1619,132,7,1961,2086,1747,58,2155,768,1544,2606,1337,2387,188,1016,1611,1644,2975,2520,1319,1441,2543,2152,642,2587,2644,1697,465,1027,1847,2257,1269,1034,1035,911,1398,1078,2887,1469,2124,2431,2017,1240,2503,455,2593,1637,887,1181,2814,2482,1732,1120,295,2023,290,683,2241,34,2864,1822,2695,1938,1873,106,2831,1920,728,507,259,2367,1097,1829,1323,2508,770,670,2756,1772,2743,2533,2803,656,346,2333,2907,1525,2237,2584,1020,709,2312,2852,802,1812,2233,2131,2696,1312,1602,244,2377,1418,864,1791,900,908,1439,1031,97,618,600,449,2762,1431,2384,458,2587,1531,2216,1369,1361,2449,296,2639,1197,2570,2632,314,1597,747,1671,2984,1826,1554,2174,1930,1581,62,17,1338,1066,774,2968,689,212,2874,206,331,2612,2857,1345,650,1258,1544,1422,2853,1912,1777,1557,696,2478,992,1917,1437,1488,1032,36,546,2920,2653,2086,2133,1049,1583,1043,593,2646,693,2768,337,16,171,2347,199,1413,2170,1218,1928,2686,346,839,421,1823,201,2191,550,2611,2724,2175,2322,2884,216,1565,2958,307,1288,1102,1526,2649,2556,1255,2141,2072,402,1425,1256,1708,56,1074,2840,195,472,632,1336,1090,2629,1700,2736,672,1548,167,1468,2668,1711,584,2180,1334,1327,459,561,1277,385,123,2530,1113,530,2611,1322,1266,1187,2943,2095,90,2210,918,2467,2771,2462,1936,1750,771,2060,1901,1709,435,1409,1234,2677,2084,2144,853,462,2150,2926,47,528,456,1398,754,1684,2256,1421,2669,152,2289,2042,1861,2379,505,2632,396,2510,301,572,264,2807,250,879,563,258,2833,1240,2350,413,1998,1466,161,484,463,2536,978,651,487,2060,2994,2582,1987,1984,1464,1048,2159,194,2497,2507,2623,1721,494,209,263,1041,1151,2208,2061,1015,1682,2341,2964,2488,2354,1157,2875,1295,2277,165,336,2223,414,407,2094,2098,2021,1214,769,52,1217,2798,721,1305,1928,1316,1796,2282,1254,1794,1626,1860,800,518,1517,1447,2549,2104,2692,2312,2113,2380,601,405,54,380,1180,347,974,1430,595,489,814,795,942,899,2455,369,1700,943,2726,2828,1586,25,657,2408,219,396,1635,1294,1854,4,1856,438,2335,1031,1491,2935,180,1426,2502,754,2818,1924,2229,1978,2415,1965,2567,182,2199,1931,662,405,1435,371,2370,940,241,2315,2549,2412,1774,1549,817,1481,2660,2168,2821,2812,2830,1994,161,2044,2589,561,256,935,551,40,938,1216,260,2557,2963,2330,2977,740,867,2083,1109,1600,811,785,2391,2534,229,2614,1686,2540,2927,2440,1019,2214,1388,1167,757,293,1589,2418,2569,222,2458,903,72,2171,216,553,217,2292,691,775,580,1857,851,2738,2497,267,189,2581,843,1687,295,690,2815,933,2309,798,322,1281,2203,2430,2331,2899,2426,2967,2445,2311,105,2227,1367,2374,1880,2037,2719,2155,2597,2224,1761,225,2243,1429,2310,2983,2912,84,1558,2224,2270,747,2929,1717,731,2065,1724,1224,1292,2932,2170,2571,2493,300,1063,624,1147,1177,643,1039,1491,1114,64,733,362,763,98,2215,2842,1347,467,249,1568,828,2871,207,758,625,2836,661,2843,2085,2169,176,1835,932,1779,278,2081,1409,221,2748,2416,318,1320,192,2085,1527,2605,1874,2184,1002,869,1159,1442,378,2647,2493,1168,490,1687,497,2019,1821,2141,2167,2671,304,1323,1942,1262,1842,1936,2288,2583,1175,1032,1079,2598,873,2439,1982,2811,2112,1693,1408,1754,2978,1825,37,2716,1851,1473,2948,2986,1763,753,778,1215,1789,1899,1704,80,1657,2885,2283,1980,803,1140,287,55,1993,1601,139,1403,2704,2092,1642,1287,826,2568,1852,1462,2881,1738,2053,2428,607,14,2701,2988,1355,1345,1547,2042,913,345,389,149,2142,1723,849,895,1927,355,894,2746,1470,2380,239,365,2616,2998,325,719,394,2015,363,2193,2127,813,2012,2362,517,2287,634,2780,1615,893,2463,1898,1539,2864,1169,706,1579,1107,1802,523,654,2348,2103,1306,2286,1229,980,1656,1037,2483,486,859,1022,1795,1929,2633,2981,1884,837,1792,2465,2519,2815,582,740,1446,376,1171,1479,2366,1586,2072,1202,2643,1667,866,1045,1029,2525,2678,1172,635,697,1049,2375,283,1947,1148,1307,353,1978,2319,1378,712,639,2432,223,1762,179,1185,2665,809,2780,2160,146,1117,2970,2882,1257,2526,2140,2384,1690,127,281,939,1370,2624,1932,665,2334,1562,2152,2212,388,570,2345,525,2671,596,1965,729,2039,2327,1941,2673,2655,41,437,1478,1518,1837,2278,2658,2212,1227,454,66,240,2681,1855,82,1595,2558,2048,899,2361,2467,964,1138,547,2454,2499,2714,744,967,258,329,1175,1314,2397,2227,2120,18,502,1123,1864,1212,573,2159,514,2430,901,2201,1601,1430,2735,461,1109,1146,2550,822,475,2316,855,1427,1782,1119,92,615,2909,274,1082,1081,1664,890,2941,1392,105,2870,1467,942,2295,190,704,2886,247,1910,326,288,1891,1056,1008,1350,694,2510,2643,2414,2495,1258,2225,493,2731,1106,2054,2827,1929,1957,1012,1784,1715,2149,116,601,674,1230,638,2857,682,245,1815,197,1555,347,2647,645,2691,1238,581,2009,1170,464,704,1841,524,2856,215,890,209,1827,797,816,1123,668,2744,2505,2269,2704,2678,2477,162,1905,2720,1743,1143,1514,1732,1753,419,1404,875,1599,1836,1103,1100,951,716,1551,2194,1406,1038,456,1746,1696,342,1372,637,1563,1988,124,480,2512,35,2944,1560,2516,307,2713,1390,1763,1341,1067,1006,2107,1545,532,920,2954,2298,945,1057,2282,963,2691,927,2185,2101,222,1550,2204,886,2498,1813,2358,1993,401,416,1707,1681,1473,430,1758,1389,1173,589,1879,1705,1621,726,2544,1524,1075,1644,2594,1982,65,966,1858,1128,2222,1347,1934,2932,80,2535,312,1571,1819,1047,2353,766,1050,1169,1582,649,588,205,2591,2267,1646,549,1512,1329,2115,615,1006,6,499,1319,708,2888,1614,477,2829,2285,1948,1889,669,2993,1038,2563,1647,440,2869,1030,519,1272,2249,2230,2279,630,1771,2317,342,526,1179,543,1134,2548,2552,2484,925,2711,1624,425,460,548,447,605,2706,765,503,1249,947,1670,579,555,745,341,945,482,868,1124,1499,2275,778,197,294,1163,2826,2626,1758,1585,1041,52,1115,442,1834,96,25,847,1845,2457,1938,2934,1596,1486,1627,1324,99,2769,2251,1605,350,822,2550,572,1437,45,2400,1096,88,661,801,2346,2863,2444,2232,1095,2071,1911,2750,1058,1013,2185,2361,924,1648,438,959,1600,537,1227,149,2600,2604,1819,1368,1882,729,863,2082,1121,1368,672,2961,2625,2398,1923,2187,641,1433,743,756,691,1145,1246,2541,1541,2849,1797,687,1454,2328,1153,1299,190,2330,460,292,2603,2690,503,958,2540,1402,2300,1330,1623,1199,2018,2390,1208,210,2418,126,1005,2714,613,1512,1087,361,976,2522,2569,2663,1612,2410,2119,380,2037,2036,459,2458,575,2351,881,1848,1096,1058,1384,341,243,424,1536,121,596,2808,639,2581,633,266,959,1689,1046,104,2373,2937,1997,1990,2737,358,470,529,2433,2953,2004,1189,2079,2987,913,418,1264,2138,2997,153,2151,1021,1344,2000,1328,705,1285,289,872,1061,2532,1534,1391,340,2020,2682,749,1393,2865,2700,700,2470,2431,2948,2729,2032,2070,1346,2842,986,2145,2274,689,2987,1145,2425,2756,1799,2364,214,902,309,2326,338,1232,175,2679,1513,1396,261,2838,224,545,1927,829,512,2841,118,973,1714,343,2879,2969,2630,1558,2359,2163,461,2946,2137,147,1780,1827,2698,1431,2845,2575,1926,2931,1405,2201,2778,1885,381,2940,238,2764,2386,193,1641,2186,410,770,1412,1293,1862,1229,2838,2125,535,485,318,1393,682,187,562,2720,2308,1303,2146,2706,2278,792,159,659,2751,132,2437,723,2498,1457,1908,2412,929,735,234,775,2728,1406,1723,1129,17,779,983,667,2120,2817,789,748,709,1857,2101,2555,1948,2962,883,2261,2870,612,2475,2816,2311,767,586,1562,2513,674,2778,1450,2376,2218,202,262,154,2708,792,880,2502,2904,1878,1310,2740,1488,2654,784,506,432,2359,2847,1516,1115,2610,1226,2028,884,213,705,1492,1125,2693,478,2808,2757,1542,567,2241,333,311,453,1136,1736,2095,1781,2921,2013,2109,250,2824,818,1976,227,2248,1599,1643,774,773,224,1944,902,688,1388,944,103,1616,1574,434,200,1149,2016,1705,2123,1086,1922,23,2670,2913,1720,2993,759,1139,2124,2636,699,888,2063,269,1216,1197,2631,1713,2115,2755,872,2661,2091,820,64,566,407,1014,2114,1752,958,1590,651,2006,1065,634,1247,2011,1279,2645,1889,1036,1837,2303,549,2063,1954,2189,1522,1671,1412,2758,968,2887,1321,403,158,998,1921,588,92,1640,431,1553,1004,1357,1369,298,733,2106,944,2659,1957,752,1620,2813,1176,77,2604,1994,2232,2745,1316,1568,1024,1573,2200,1401,1502,406,2043,730,2972,2065,112,2996,1478,15,2080,560,146,2835,2962,581,394,1405,1163,101,654,2295,2231,279,1137,2351,142,356,811,1612,2944,1464,2206,1360,2680,1434,1074,1055,2601,1793,702,607,2732,2796,2680,2578,2385,620,1271,2551,2699,1824,299,27,1713,294,2819,1937,2657,830,2256,1342,198,2858,298,2664,2399,2257,62,2409,611,2199,417,777,2315,253,838,877,118,1407,2578,164,2002,2134,1352,71,1025,1653,1814,681,1080,195,2759,2753,312,2148,1749,808,2352,1378,2787,664,528,2712,1776,243,1717,2064,684,2763,797,1232,2365,2950,247,1097,1399,2744,1365,1071,864,283,504,1002,2407,173,1951,1401,2841,1725,311,841,496,14,827,1051,1362,310,2579,1298,223,2876,2202,724,1414,1983,150,2172,349,882,1533,720,621,2890,1268,2661,1573,2314,1248,2014,2040,1973,2612,2596,2968,1638,466,2542,1869,2915,665,1453,2722,284,1876,2688,140,2189,1621,2213,2392,1668,1921,378,1403,178,558,2634,823,2219,2140,941,759,1152,332,1790,1972,2475,1,399,2353,624,416,1213,597,2492,2776,354,2597,1545,916,2861,39,2242,2950,1954,2235,971,433,1029,344,1054,334,604,960,1399,1056,1652,655,771,1660,123,846,2862,2448,1801,2774,236,356,880,1888,1768,2240,340,2652,2703,891,577,344,2162,2520,1475,686,2501,2126,1521,695,2961,501,1804,2646,2485,2266,1914,10,264,58,1813,2131,1320,2442,2785,1996,260,1396,1734,1474,1139,2733,1903,2849,1904,103,1968,2226,1286,1064,2220,812,2843,2419,110,1184,372,2012,2634,695,1881,1832,2073,1620,1309,854,1402,2936,504,2590,370,987,2217,87,1862,369,2574,2739,1039,71,543,142,2011,1093,1888,1383,1567,507,878,1391,603,2739,985,2486,2075,418,2047,618,1510,947,2270,1866,1318,384,969,571,658,1841,500,1698,1731,2150,2633,2342,667,1658}

    212

    2516

    Returns: 3000

  117. {1966,2850,986,655,113,2090,2744,1418,2465,454,1139,2142,349,2114,2854,1198,2552,186,122,773,2399,2106,241,214,1770,1173,249,118,1050,2243,2838,1678,1021,1119,1181,1866,2434,713,2793,747,2605,2093,758,2653,1260,572,2267,391,2310,601,337,1429,427,870,2553,1439,979,2778,732,1374,2510,2504,2607,1169,1554,1815,2721,2460,1029,591,2966,855,1763,2604,1598,2368,719,213,549,123,1956,942,87,872,2229,1049,21,1980,2831,2405,486,163,2407,1457,1821,2938,2897,2295,266,1206,973,333,1229,168,902,1203,2681,45,567,675,883,774,976,1406,389,1440,2821,2498,1919,2762,1669,1911,2538,1417,2635,808,1953,1812,2283,1891,2947,1110,1074,2555,698,1491,2064,1721,2181,1445,1466,802,700,2796,2787,356,2059,2644,2900,380,1955,5,429,673,2533,902,329,1483,1855,1284,2782,2663,1698,1572,143,1355,716,843,277,786,107,2141,668,403,2960,957,1895,2179,2613,193,2806,1073,1767,1356,2040,2028,2359,1213,1398,630,1527,2935,2603,2085,40,2628,1136,845,2935,571,533,207,2076,2387,1819,1915,625,1650,1246,134,560,2812,2939,1093,1528,1266,697,964,2010,2337,2160,1996,2005,1795,1386,775,196,2410,2576,1463,889,598,2381,867,2019,185,2770,1700,297,2569,2804,766,2837,1896,2223,2284,1055,952,1491,1484,2176,1791,1921,1114,792,507,2355,1254,1641,717,2339,366,1329,2840,1411,2129,1319,394,1573,1087,2985,1075,1642,1812,821,1463,2994,2641,1962,277,1881,629,1285,2153,1540,1289,2834,2464,1415,2946,2240,1826,1977,2048,2000,557,1121,1419,1473,2802,2100,2992,644,1758,2300,1380,1761,26,859,1527,149,2707,1587,1973,2284,318,875,222,944,659,513,1363,55,1800,752,1208,857,2951,2667,1634,743,223,1094,461,2610,1904,1032,1880,332,1402,2666,265,2815,1428,2357,2353,1349,1237,1744,363,137,416,879,2148,909,786,1050,1753,344,2096,2419,635,1728,572,2014,2687,1664,1570,1784,1226,1082,2490,2724,1914,1662,2145,2767,305,2118,2736,2110,2840,2714,2024,1805,718,1957,495,1175,245,599,2750,1360,68,1031,2435,2460,2687,983,1249,161,2105,1294,2708,2033,2590,1929,1604,364,2373,1551,1209,953,1228,2019,1010,1636,1444,1230,1437,2347,2412,1273,285,972,699,981,2162,689,1471,1059,2916,1852,1135,2675,2762,2163,2275,1992,1862,2345,331,2087,498,1701,2351,2008,362,1545,2378,2263,2853,291,1299,963,1469,2077,2326,633,215,1176,109,2285,1914,911,2713,1330,75,891,881,420,2565,1645,1101,1808,1319,1743,2276,1927,2996,101,2877,1798,2468,280,2415,740,1889,500,173,670,1362,2823,1515,2898,2914,759,778,2422,1322,585,496,1847,2655,133,2843,414,365,297,358,1688,360,2706,434,1601,1631,493,2775,1207,1187,2760,214,1057,2979,279,2028,2528,2421,2674,1497,978,790,1723,1458,52,2103,997,833,1905,2454,760,673,54,1731,2156,2427,2061,368,2911,805,167,1868,1673,67,1899,2712,877,2338,380,2896,1886,188,505,2832,1830,1899,2196,937,2218,501,635,2099,478,1593,2875,147,1023,1860,1557,325,1294,1217,2001,2023,1062,1359,2203,738,633,2812,2909,2872,2053,1357,2632,2925,1136,1693,1308,1353,595,997,2286,2428,2910,1886,2511,2344,2120,653,2473,2518,518,1719,2471,1832,657,2305,1006,1523,1348,1920,2891,913,2678,149,231,1841,2665,2323,1204,2291,664,731,521,2703,536,1124,1605,2133,2264,465,278,1439,2280,1562,2838,2852,2675,168,333,1300,1394,1104,2826,1281,2021,383,356,1945,2093,1241,2874,1605,2870,1058,666,819,1216,330,2793,1760,848,284,2847,930,2217,1182,225,2268,179,61,1714,1827,11,1857,2057,2922,1112,1132,679,1,898,1158,1086,1364,1464,110,2571,462,2038,823,2735,2643,2756,2796,234,772,2424,1835,514,2844,2562,689,1826,2861,1077,307,1349,752,2465,2731,950,2900,2369,2380,1009,1682,446,1107,1675,783,1839,1592,745,56,2689,2042,2751,306,441,1331,2842,2134,1145,811,695,1318,1375,2253,2099,1333,2572,2249,2543,2858,2924,1202,216,615,2020,679,906,667,1863,2056,1137,2116,2,187,611,859,161,1084,1366,2879,1236,2453,570,2559,1659,1186,837,1968,1057,2467,2758,1314,98,1750,476,2702,1474,670,229,1286,121,2362,2034,2107,1113,2036,1949,1891,1043,2929,245,2042,2693,1296,2539,726,722,657,916,1549,566,556,2192,2233,2132,2721,2037,858,871,998,2506,2656,2885,1143,1880,2293,2884,1849,1965,868,1457,1558,2800,1882,293,2839,2275,1698,2402,2506,1239,2400,2984,891,2178,822,334,1232,326,2457,949,162,1020,1173,987,437,2327,295,47,0,2482,484,999,921,418,1165,135,319,595,10,25,1621,2624,42,155,2113,1330,227,907,534,2330,1315,854,2111,992,1159,2054,2031,788,1466,2692,2976,600,1235,2991,585,1876,534,2250,778,134,165,2570,524,94,2808,788,2209,1536,2972,424,1500,1036,1309,1639,2930,203,1151,1736,2199,1343,2516,1371,905,829,1714,1706,2813,219,2393,397,1778,870,2564,1643,294,417,1550,954,2609,2167,2930,81,1348,480,33,1844,1342,2782,1326,1026,385,687,2109,1209,710,1773,2672,2758,2650,1818,2578,2360,15,596,2315,2725,1054,2074,2515,1883,2224,1144,255,730,192,2374,2249,2187,2857,841,2863,2963,692,1431,1688,2277,392,603,1924,2492,2864,89,1498,1120,2350,282,1452,1089,118,2546,218,2979,1641,631,2704,2674,2234,2495,1748,2665,1945,1545,1787,2830,1938,1926,1446,1039,574,335,2160,428,1179,1325,1650,804,1582,969,143,506,1585,2313,718,2732,489,2213,2125,794,270,1702,2873,405,887,2834,2797,1052,196,1392,856,1595,2480,2451,1864,1928,2765,2290,542,803,1062,547,559,632,2583,1399,2044,1609,678,2992,2150,768,2690,127,2441,1245,727,9,251,2012,664,1201,2161,1765,1040,1152,1690,707,2662,944,1869,1339,583,2130,2919,2491,1644,1616,68,1976,1769,81,2779,2909,2938,1859,2893,355,1424,1234,108,2352,2009,1525,741,1517,95,2329,1704,32,1958,544,408,2581,1028,1056,2221,1010,2936,728,2478,2580,129,669,2056,2230,18,453,1640,1964,685,2194,41,2886,608,2452,1746,815,756,1932,397,889,510,1078,271,198,426,918,849,818,74,1101,2152,284,1514,1334,1773,145,1139,1712,770,2701,1352,1026,257,2212,439,945,2197,2931,2817,947,1884,1486,2694,1014,2689,949,346,703,43,2108,579,869,225,351,16,695,1237,2247,458,1635,2013,1252,2899,2475,1941,1626,174,1734,52,2253,2311,1408,827,2649,1887,1581,1520,2140,1127,2727,459,2865,2076,779,2828,2429,2068,2270,2940,1926,2073,2594,882,616,2787,1384,2133,1809,503,905,1933,2030,2576,428,833,1742,655,2280,2057,2257,2893,2645,873,1648,2722,926,819,348,2021,1873,70,241,2242,1033,615,229,2510,426,1196,178,2100,1667,258,477,467,931,375,2496,2768,1056,2629,387,804,2519,2220,916,2122,2288,1931,2397,2584,688,697,180,2545,1800,1068,452,2912,1546,2587,2952,1595,1427,1180,1435,601,1132,1991,240,1199,645,2423,1563,2807,1184,2631,1085,1265,86,549,2634,2016,776,373,1682,2301,393,1824,320,1307,418,1084,1180,2452,1740,238,915,2199,1201,756,20,339,1420,1987,1735,1321,2927,2524,1147,508,693,2804,1027,28,1118,1627,1935,208,2620,416,2362,1370,558,1195,409,1447,791,2282,1956,2375,2433,1333,2981,1000,814,1862,1149,441,2413,58,173,1172,156,273,765,295,533,2959,616,1572,879,1823,588,422,936,583,1013,2795,1304,717,1959,2269,388,1717,1023,2797,2868,1567,1752,84,1561,2785,60,1970,1609,1982,2719,2995,1240,42,127,131,1503,1105,71,1987,2788,2459,2810,1768,929,2833,2477,2601,1381,1932,1764,1613,2118,2708,1186,413,2266,1171,1345,2820,1585,2395,1228,1579,2288,169,810,2128,2760,1020,1221,228,261,2941,691,1347,2374,362,321,433,287,915,2997,483,27,2550,448,71,1382,1948,2487,2905,2034,1487,2139,1796,1407,1910,1829,931,395,2472,1300,217,2648,714,2501,643,846,1616,2949,87,232,1350,2829,529,671,1733,440,1647,2862,1189,1133,1853,706,897,2926,921,2682,2503,824,1310,1297,1843,1502,924,971,1614,1421,2467,1813,2516,2734,2329,2152,2344,1453,2500,945,1620,2660,2192,63,1250,2806,757,2646,1824,163,2515,1295,751,2016,1287,1971,511,281,824,2617,220,2281,1730,1351,2609,1856,2968,894,2851,1976,1089,1665,1316,2498,2424,2646,2596,126,283,2385,1703,1680,1848,638,602,48,1397,2098,2552,1361,882,2969,2000,608,1112,2627,370,1565,2695,852,546,2010,1096,1311,628,674,88,659,605,2053,2740,146,1850,1419,1269,1142,1429,311,2589,922,1242,1962,1405,2494,411,2063,2684,41,1039,2349,1853,2508,471,2121,2474,1428,1530,1478,720,2984,864,2387,1507,1935,2475,2372,2005,794,1517,2264,1404,326,5,1117,126,589,51,1670,1153,1916,341,103,2459,1275,1450,2913,1916,481,1574,739,2214,1865,1969,777,1219,927,2175,538,2097,1016,1776,2418,91,1465,838,977,282,2071,1751,2746,396,469,1253,55,2205,2631,1276,213,2492,2215,247,2530,2185,894,1162,2294,286,480,85,2577,2598,2321,4,895,1797,762,2155,1689,2398,36,1236,1709,1222,336,2944,2407,830,2112,1409,2224,1220,2779,820,106,2654,956,581,1379,1838,1943,2894,2180,878,2677,1145,1246,1996,1774,2691,900,1557,2173,1871,2358,2850,1262,1106,138,1092,2974,1868,2425,2527,2574,2022,150,2967,1192,2240,1292,1462,73,1584,1121,255,2755,2480,1986,2394,2869,2547,1290,2111,2396,2206,1114,377,2784,2147,561,1373,2927,638,366,2980,2558,1042,451,2749,399,680,2406,2136,2128,1893,319,1580,1707,353,94,2895,1695,2272,988,1422,1194,2190,2636,4,1,1267,2095,2246,640,2756,2170,1379,2361,1727,1404,300,384,1483,2942,1913,2499,2410,299,2937,1772,2533,400,677,1482,487,947,1603,2837,1928,2364,166,140,2613,2913,603,1653,553,573,1910,2908,2742,1861,2234,1070,991,2237,2737,269,2529,1299,36,1198,1672,2625,1468,404,821,553,2101,203,2146,817,1064,1166,1053,1668,1464,1811,844,1436,399,1259,2678,1188,1658,1787,2771,340,2307,1708,2476,1604,2305,498,2382,69,703,1343,2792,432,1518,1193,2089,611,1734,624,1037,2918,2002,1528,1337,2223,2337,1625,988,961,946,1904,1078,410,2090,906,1834,2319,813,2606,586,1920,1308,475,1744,1583,2871,1229,1683,787,2172,1051,1765,1666,1241,2292,2723,1556,2884,2157,2988,1981,2184,2478,2036,651,2361,2014,1125,2666,2975,1637,2889,1354,1296,1455,2542,2520,2270,2726,1559,2462,1903,2800,795,198,507,1737,2591,1410,243,20,1365,2166,450,2737,775,1479,1388,500,1785,1095,1794,2443,851,596,566,609,630,1825,513,934,2262,1017,2925,1730,2973,2220,1436,435,1804,2562,1693,861,2433,2502,702,1925,688,422,274,1720,1600,846,816,636,2752,2868,2119,985,1697,28,1912,1272,825,1726,385,2450,2672,244,206,1017,1385,2610,13,152,1729,1953,2383,1400,1746,65,1448,1060,640,29,551,2874,2895,747,969,1104,239,207,1944,761,509,1290,1257,649,2711,2608,541,281,2193,1516,1739,537,1700,2084,550,705,2328,1509,801,285,1790,1691,122,1371,2639,2129,2191,2623,2117,810,2964,2950,1335,996,2363,246,1111,2248,414,1338,2794,53,433,2712,1011,2296,813,1350,1103,863,1474,307,1729,1292,2618,1909,2989,335,653,1267,2032,211,2469,82,1166,1437,1475,834,625,1405,920,260,2335,2734,2390,2382,2597,158,1118,1179,1025,2438,711,2184,1624,2582,2330,1547,2354,1847,2292,424,884,971,2544,1019,353,1279,1783,2068,1093,381,2481,2346,78,345,332,2469,184,1065,2525,64,754,318,1535,2335,2295,2143,1202,1090,2560,2652,607,2394,2341,1638,244,1680,21,1775,1467,1324,2493,2832,872,232,2142,1819,1834,1922,2595,275,1566,2869,1733,858,1991,216,1072,827,895,108,580,2426,2541,2744,525,10,115,1225,1726,2683,1603,2235,1486,2046,499,2447,39,83,1992,1346,2545,1100,965,2580,1266,2291,2193,2169,1820,316,1280,313,2881,958,2324,1469,897,475,555,2649,1499,2104,2235,1123,2082,237,1288,2342,17,2633,698,1193,394,423,458,2774,2523,614,242,1501,875,965,1741,218,174,151,1959,390,99,1134,1060,2282,1447,34,342,1582,30,1645,2312,328,2379,1723,1960,1378,1803,909,1234,1248,2878,164,1748,2934,272,1174,2748,251,1214,1157,1743,1389,65,1129,2601,2954,1906,648,1232,685,726,1877,487,2127,2996,2575,392,903,2958,1856,2026,132,2629,2644,1989,2486,1375,390,904,2876,2870,1435,1035,2738,2535,2932,852,2574,707,743,2945,6,2887,1449,2271,1191,2588,874,1317,217,2947,2575,1083,569,2642,1337,1577,2314,2590,2570,2662,2411,402,1530,1303,2456,2531,170,1106,1547,66,914,886,2829,978,1081,1541,966,489,2616,1263,1098,1983,117,1488,1710,784,2308,2397,1401,153,2952,1274,831,848,2195,2466,2792,1259,1719,2867,2354,709,1512,1660,935,666,1997,1355,660,2595,1810,837,751,986,2396,943,490,604,2315,2404,2026,2903,2258,1273,121,423,2951,1589,2317,346,2244,2003,2696,873,933,2706,654,2741,172,447,2140,2419,2209,304,306,1368,263,388,856,1549,2799,431,322,1385,1994,2890,1654,1716,1416,982,472,299,766,2824,592,2846,1801,2070,2324,721,1305,2216,1175,2356,757,1163,1597,1673,661,1985,1119,2579,184,1900,1635,2830,1242,1472,261,2878,1492,2444,1245,1550,2803,2729,1524,2149,809,340,1567,556,1617,2521,2178,2255,324,2720,1537,1783,878,155,411,1984,2420,733,2526,2908,1580,40,1713,512,1706,840,120,1570,2888,2778,2822,982,1122,554,1577,1751,1644,2641,1534,636,2321,2733,1468,1843,2145,2083,1771,1388,1633,466,1648,1519,2692,991,1858,2371,959,2943,1044,1837,2219,1262,2699,1181,37,1654,1255,2769,763,2936,116,2174,140,803,552,2954,323,661,2863,1260,2717,2094,1402,992,1303,1460,2999,2289,1610,234,1810,900,1099,1516,1619,1164,378,1563,2886,898,522,2910,727,2202,178,686,1762,962,2921,1534,2753,2173,2611,511,450,1799,2022,634,425,1264,1763,1672,579,1704,701,2860,1529,2811,236,946,111,2626,1497,530,1382,1129,784,1301,368,1396,515,59,1974,2481,1268,587,1344,2243,2386,2988,496,1425,1620,868,1364,2431,2614,1966,1861,1387,325,2113,1470,1892,2997,2332,455,23,818,2009,254,2238,2486,208,2138,25,2987,777,502,1778,1513,2657,2599,1067,1973,2561,1749,1941,2059,1076,1579,3,1739,2985,2891,1244,2259,2933,2468,516,1126,1948,2711,2239,1178,925,1762,93,746,1699,1244,793,1772,2311,1500,1116,1283,464,2690,2359,1281,2318,2169,765,386,2990,552,575,1562,2851,1662,2194,1233,2037,1380,2345,1538,2861,290,237,2605,2414,590,2144,1671,2455,746,2163,1610,588,1041,1766,658,808,473,2215,1677,2882,2125,2197,445,1836,1154,1936,457,1666,2773,2686,941,2715,2873,1573,2645,66,386,1590,457,257,341,1261,1977,922,96,1629,298,2902,1007,1253,2544,1100,2887,170,1599,1511,1596,195,1507,2367,724,712,1505,2065,2579,606,1372,2389,2767,760,958,1840,1400,177,300,2231,1939,384,1521,1705,2865,46,331,1243,1717,1211,1360,445,348,925,519,104,1438,444,1159,1539,86,22,211,1408,2058,2917,2943,2753,1732,1481,1022,2302,1183,1685,2889,2973,2880,538,2612,1694,113,1341,357,1110,1788,517,2432,1320,1874,2065,943,1523,2070,467,1885,1646,989,1311,641,2024,171,955,2054,702,1961,1454,563,842,2304,447,2763,582,796,565,1587,2573,2569,2060,1282,2179,607,844,1430,1279,1109,1938,2846,694,2398,469,1561,1414,2783,2593,292,720,2497,2901,361,1426,617,454,1975,1687,22,2505,2012,212,1958,421,785,2803,2729,2960,8,2208,1207,2939,2500,2376,62,2353,734,2906,807,719,79,2261,2757,2458,37,1076,2518,2348,893,449,1873,2630,1347,313,2004,839,1395,1594,561,1711,2017,1252,1178,665,2333,1532,799,1552,2509,1042,1947,2279,2612,1721,677}

    {449,1433,771,2976,1458,1994,1581,2759,92,1256,2347,2831,1248,1652,1802,995,1154,1940,503,1449,2501,1560,2204,190,2688,1276,2355,49,2814,1694,1471,1615,829,138,260,2659,1796,793,1069,1822,1792,1051,2044,1646,2130,2944,2127,865,2464,1903,1881,2092,527,1480,2669,1372,656,1917,1774,528,623,328,327,2691,1984,919,2718,125,2251,1906,853,532,693,2550,704,2538,1946,314,2401,660,520,267,2733,2537,768,2356,2121,1513,1722,2980,1416,1786,548,324,1990,1877,2342,1441,2892,1037,2181,109,2444,1893,252,2657,1264,1964,2403,699,1172,2522,6,1272,159,1383,526,1450,56,2095,242,1894,1170,14,2164,2222,2132,1448,1816,523,1509,984,452,26,2050,2049,389,2931,2303,1832,210,235,708,2918,2697,1079,1888,1942,1321,2263,1593,1840,2572,2390,1852,2188,2417,407,1731,2257,2676,1224,267,1954,201,1755,886,337,9,855,2702,672,2153,1102,2784,2623,1649,1634,2499,2845,2239,1608,540,405,1140,1504,802,864,1793,2716,2614,2406,491,358,2461,463,1216,497,1073,2040,1875,1870,1046,2817,2752,97,2495,687,421,2171,2836,112,100,2008,812,1842,975,1833,191,221,798,1747,31,158,1950,1256,2258,609,11,223,1960,280,436,181,2287,734,1434,2316,2431,420,1504,92,1750,2652,2842,849,2463,2401,2157,1631,1760,1335,2225,2512,2490,462,80,135,809,797,501,2276,2174,1569,2659,439,98,2226,2685,1633,1493,1240,2430,914,1475,78,1155,845,2457,1618,1197,2094,1111,2103,1014,2038,2360,2584,1225,2845,2029,1263,2611,1456,2799,103,1607,1442,1658,713,29,546,667,1293,1007,2045,1569,2791,618,2549,0,711,175,2126,1897,1998,2434,1995,2088,1952,1123,370,2096,80,146,246,2485,2638,2770,1156,1780,2667,1034,219,2825,2852,1006,2136,1473,1588,2051,571,1367,231,1614,100,646,2707,2658,1921,64,275,528,928,1176,970,2122,674,2177,937,1725,2554,1063,1863,801,880,2226,960,2232,1288,2636,2514,2164,44,2189,1097,773,1102,2621,125,1759,2577,2304,1571,116,249,1047,1952,2252,2798,1825,263,1724,2632,1525,2483,712,465,2322,2668,2507,2585,2602,1432,2813,515,13,2599,488,2704,412,1846,1065,843,2982,33,1122,1088,2086,2470,1591,486,39,1406,226,1453,2247,1495,2067,2551,2308,312,2983,1555,1980,1927,1639,430,1514,2206,1117,847,2928,1876,654,2923,2437,483,990,1696,1512,1963,2730,1860,2786,1851,2694,1226,404,308,2974,1317,2072,1465,668,732,2101,2479,2440,2336,2326,2507,2776,2549,642,2695,268,1183,759,1496,2242,2620,1979,835,2228,2086,904,1807,1271,153,1238,2306,836,704,676,2860,578,2937,968,2511,2211,2476,564,2956,431,1327,1702,76,893,2052,576,296,2867,662,2953,289,665,876,1715,2428,338,230,735,1367,1391,2637,16,2957,409,715,1756,2364,617,1080,2352,841,2819,2435,2031,764,1346,1168,1049,2789,835,1908,204,288,180,832,1898,130,544,2926,678,160,565,315,415,606,995,1983,1882,417,2154,527,2395,154,1270,102,2982,160,1009,723,537,1578,2041,2587,1969,2680,1515,2633,2526,2325,212,2697,322,2588,494,1376,1227,2866,1939,2260,1692,2013,1546,614,2698,2272,1780,2066,2618,1745,1623,466,1490,976,1481,96,1576,2902,705,1401,2566,2923,1387,2628,644,2514,1312,2237,884,1747,2328,1554,2932,250,2746,2673,309,853,1898,429,652,2777,369,2277,627,2808,2763,2307,877,576,2945,2298,2489,2366,350,470,1979,1712,1177,2442,1713,2497,2032,2856,2912,2298,791,1777,2388,2970,2798,2730,675,593,1768,2892,1923,1709,755,590,2855,2274,932,783,2540,1999,1656,1454,1045,983,722,2505,2003,1019,1602,2541,2159,2701,1340,2159,1531,869,1781,2670,1208,1777,287,612,2269,437,1135,1339,2754,2104,176,1291,2949,2741,1707,568,2333,256,1001,2608,933,828,2213,2186,2801,1190,899,2212,2278,1519,957,2548,736,144,1944,1521,2156,254,2182,2366,2331,1490,1285,1215,1424,2598,1205,1426,823,495,2914,1606,2369,1293,1553,2977,2710,1284,2409,1250,834,2196,1892,955,936,1425,1165,1878,863,964,1420,842,471,652,1806,510,2126,1716,119,2509,1487,1839,58,2810,2519,806,2325,509,1461,2107,1874,1533,2377,401,2728,165,1169,2772,2814,1191,1341,862,19,2135,2484,1015,799,2303,2336,2423,770,1018,298,2563,2404,344,1298,2091,75,2375,2586,1199,2116,676,51,2531,1661,2775,647,649,1476,2436,463,1107,871,2921,1431,47,1611,792,584,2883,105,2668,901,2615,1674,2002,918,1850,1699,2521,2578,2108,117,99,2966,145,2091,2745,888,811,758,2543,1632,2871,190,2340,197,881,1323,1943,1911,2700,1767,2400,114,2461,741,613,2426,97,2064,1275,1845,1854,2664,610,1004,1912,1212,591,2555,2981,562,2449,2033,240,189,2376,1524,351,1040,2647,286,2487,888,2,589,1167,748,874,2928,612,2365,2700,115,1551,1115,1652,2296,530,2310,1328,769,107,885,2079,1677,2082,1637,221,2971,294,2917,111,38,382,2532,468,1972,63,2653,2907,2373,1988,2027,1312,2640,2367,1918,691,2877,2688,985,1967,497,1970,2955,1540,226,2969,2384,954,1990,1651,2991,940,1305,2622,1046,865,412,850,1249,141,481,350,1022,403,393,1206,79,1143,840,1462,1036,911,185,1320,2920,2768,1125,371,1798,1669,2771,2244,479,1031,952,1902,381,967,1270,1651,1160,1477,2049,2007,402,1900,2134,2025,1526,2149,2776,2391,1412,1622,781,518,1506,725,310,378,1030,2098,956,2245,2621,303,641,2650,1277,209,1802,199,2441,2225,1822,2393,646,2319,2833,1137,1219,908,825,1212,1749,202,2087,2248,1522,1924,2821,744,2617,1280,581,2473,1870,2285,913,2453,594,123,1306,128,1907,2512,2039,2168,1803,1936,2377,1205,1663,2637,2548,682,2513,289,1696,2751,2606,2822,345,1128,30,1695,696,2849,857,292,83,2915,2228,2386,2267,2402,2815,836,371,1038,1072,376,43,1564,1090,372,887,1522,1224,2302,782,1338,2560,2903,2047,2182,1792,2261,2764,2648,235,2542,456,2252,1922,1618,316,1613,323,736,749,1638,2965,735,643,2446,141,1887,1130,1718,2684,1393,2993,2334,2677,2219,892,2655,1322,334,224,451,999,1628,1974,2894,742,2791,2819,1452,357,2102,187,2600,137,543,2271,706,427,360,959,1152,2025,112,272,2676,912,2380,970,1820,2293,1485,2539,923,1925,2879,2358,2332,1075,310,1630,1831,2622,133,262,1590,2619,1421,1552,1502,880,1048,1619,623,2551,2322,2568,1759,482,1600,136,157,1756,2256,1389,442,383,2881,1511,2211,2416,339,774,317,761,2823,2735,2619,1725,960,2281,820,1627,560,1066,1048,573,618,1742,2950,2167,2172,374,2391,1130,1456,587,800,2201,2785,2343,961,1805,181,716,2525,2638,2221,186,2764,2114,748,24,2661,594,1422,482,866,376,2696,440,1586,1997,1625,1815,197,430,826,2919,1332,1568,2030,2408,93,731,12,2471,1837,860,1937,2117,729,166,584,1686,176,1617,1027,787,993,876,2266,1684,2802,2534,379,2809,443,1602,167,1884,2462,2731,2557,1231,2624,2564,236,2334,1982,580,95,1793,1757,1505,2882,2522,2968,1510,183,1287,917,2602,2794,3,2018,1859,1467,1080,1221,569,2723,1769,128,1383,1675,1503,2483,1568,2445,1194,1255,1096,2204,2138,1599,682,2020,1291,542,479,159,2553,494,672,1934,1784,919,60,2413,2151,32,1394,2381,1131,2922,1297,1715,1532,1213,1895,303,1327,1799,271,2563,753,2978,2299,2207,600,1376,1482,923,2671,338,2527,1231,1678,619,692,1655,2761,391,2844,940,2183,637,1885,2300,1578,2233,740,435,2200,1689,477,259,2722,680,1024,2883,2301,1414,1318,728,1304,2141,1188,767,1148,2761,53,1854,2916,182,266,564,2062,1589,2970,1324,1495,1278,2312,1002,1005,2474,1905,896,2963,2705,2780,17,1432,2593,2566,1195,1344,1818,1185,446,1738,2766,1403,1663,2425,1434,301,892,696,2088,1141,327,2340,2537,795,753,2177,1461,1091,1615,570,2888,2055,1427,2736,1055,807,1879,2150,831,2265,470,1902,690,432,651,1913,1210,1393,2859,559,1961,1443,577,1038,2245,1247,1993,745,1897,1044,1067,2105,2556,1407,1779,2990,539,1368,1218,1674,2556,2643,1901,2161,1630,890,1711,363,2855,2268,2368,77,400,2528,199,1788,2615,136,1144,951,2069,764,592,1459,2029,2790,194,2039,1282,114,1909,1083,1740,1539,2123,1933,1438,1878,627,476,1836,2669,2050,2854,1071,2905,1758,1167,191,890,77,1629,2416,1092,1302,415,520,2757,2185,1745,2897,1851,1918,493,224,347,2089,367,398,1197,504,15,1415,2115,2379,2097,2041,1776,517,1261,1543,2067,1667,1940,535,200,710,1390,701,453,2496,1034,2847,973,1701,1200,684,1875,204,1588,814,1775,2924,1358,2124,1016,2661,1553,1794,1544,1811,2027,2961,2078,1399,2106,2066,2971,1289,1930,2440,1691,2154,2915,2077,935,2864,2439,980,2828,1047,2320,567,2432,1033,474,1251,2073,2007,535,1392,610,619,101,2430,1676,238,2987,1741,686,1108,899,2241,18,1757,50,139,262,2755,1356,276,939,2769,2993,2535,1647,349,222,1334,2436,2454,2412,1565,1361,2967,2338,650,715,132,1947,201,723,805,233,1999,1848,283,1054,290,478,24,2961,23,2876,2727,264,2448,2158,1679,1657,1942,492,2530,910,2060,2816,273,2567,2392,1636,540,1612,2341,656,1409,59,1542,2934,2818,1596,2137,981,2651,2962,512,367,2451,1378,2856,1538,2839,1315,2470,259,1529,1369,2805,1801,2600,1576,193,2443,1988,2488,343,2047,2262,2795,1951,504,2616,2489,1548,1544,896,2693,2006,2201,27,1594,1626,205,472,1099,1363,2378,34,2318,2807,2670,1217,2238,2081,1472,1397,468,2254,839,354,2848,2227,2143,1764,1003,1131,1575,2998,88,1098,2488,2316,473,2477,105,1919,38,2466,248,413,2523,1708,2866,2786,1829,1821,369,1442,1052,2862,2314,1268,568,2151,2363,2647,1598,1138,1271,2061,1592,828,1359,1896,2210,1433,671,1374,1686,1737,2385,1417,2858,1823,2554,938,648,861,1233,2524,89,2720,269,932,2320,1901,152,1013,1791,1164,343,2904,2080,2180,626,425,2586,1967,1059,586,1846,789,2251,2811,2083,974,1158,2899,395,182,1369,192,1684,2290,738,816,1660,1814,522,2175,2011,1070,1894,2493,1489,460,2567,1328,1377,1761,2445,1218,621,1398,2835,210,2346,1681,1283,61,582,2849,2517,1531,1601,2809,2957,1872,1664,574,1365,270,903,1732,2198,950,464,2754,928,1352,1754,373,2582,228,994,2437,754,2202,2384,2825,206,1937,438,771,2299,942,750,2698,1499,2408,104,2417,2058,926,2289,2660,599,1243,2231,1806,1064,1087,387,1265,912,1085,1782,962,1789,2411,1804,563,1370,1508,2415,1108,2062,1564,1828,2236,631,70,2045,250,2848,2491,1779,1142,1390,1622,1849,73,2449,2896,2989,1623,662,2956,1133,968,2557,1079,2200,474,2484,1386,1975,2502,1814,1148,781,1817,2123,1489,1971,1493,2581,1423,1816,252,302,1479,2069,2965,1071,812,2994,1879,1239,202,908,1624,46,2759,854,1998,934,401,1345,1724,1883,48,1302,2964,1692,1238,1986,866,1174,1162,175,1021,767,1357,2699,2680,1190,1770,613,2742,953,2170,2705,531,398,183,2995,2218,2259,620,2309,2214,605,1307,156,1866,189,1227,1934,506,177,1908,1163,1498,2420,1950,1091,200,14,1657,2092,1196,2075,2517,1008,434,2592,637,2715,2853,2078,1004,2165,2485,1488,2766,2743,406,461,172,1727,1362,2713,1890,1035,2351,1835,2043,622,1411,1978,554,910,2940,1002,624,714,1203,2309,604,2818,621,1844,320,258,2137,1061,1683,545,860,2559,279,74,19,1325,1632,379,963,2709,2084,2540,558,1720,179,1220,1642,1147,278,2109,2165,2596,2079,1797,929,1930,2447,1559,1313,129,1254,1889,2920,443,2904,2229,1161,2827,838,1001,1005,984,312,1555,1781,1313,2146,990,1653,1150,516,822,2131,49,1460,578,2035,2148,1957,2456,124,2703,35,2718,419,1251,1754,2112,2780,1336,442,354,490,737,1126,2774,797,85,1542,1314,419,2273,2801,1396,998,2573,2743,951,2635,2671,1161,725,1536,1671,2634,2115,1753,2986,374,144,1377,724,359,551,575,2790,1410,1591,315,2494,885,2023,72,2607,1316,1508,82,2147,484,2836,2594,1041,2448,525,410,1441,749,1703,1855,2414,1187,2843,2841,2287,274,1867,2189,304,1548,2081,1413,2716,1015,700,1915,1946,2250,1440,996,1155,147,352,1103,2446,1981,1306,2536,1445,1655,2438,35,832,782,1679,2119,548,2110,1095,1235,230,2297,1029,2392,329,2529,288,2709,2589,1277,543,499,1608,2773,1842,1151,2739,2241,1478,1501,130,547,2547,2158,1081,2297,1485,2102,577,2405,2017,1687,1395,2953,1955,924,1088,45,1640,2724,459,1518,1012,1789,1149,1030,2958,1951,131,1094,1340,1510,2063,330,1607,709,148,2455,102,1907,593,110,1459,2313,1412,1795,862,151,296,2399,555,2975,729,1755,733,1949,798,1480,993,2183,2765,1003,1214,2124,2463,1113,1146,2568,253,1665,1827,2748,800,57,2933,2188,830,1150,2658,2686,977,2747,2739,2472,684,966,2006,1455,1323,1857,1817,491,1077,639,2504,1541,1989,779,2339,342,1871,2571,2286,2080,1012,1476,2738,169,1586,1659,1506,629,1446,1185,1661,90,1864,2777,2805,647,634,755,681,1972,930,308,2986,2279,2857,1024,1771,2929,737,1204,1257,162,901,769,2719,920,1028,2783,448,850,2331,2673,1838,1583,1115,2349,194,12,2429,1888,2458,2745,227,2685,2714,2627,2558,2388,1556,264,62,669,1192,291,1074,2348,2383,1828,1597,1127,776,1222,1274,1621,2323,2071,1310,2205,2890,2327,1295,1809,1354,1543,1025,2747,1766,1535,485,436,150,1782,2826,2911,762,1858,1722,941,164,2230,50,2585,2418,979,1571,336,1258,2283,1831,2642,2195,1413,2052,355,268,2135,938,1068,626,1865,1146,2978,1710,1269,1153,1867,1351,2962,2256,1358,2592,438,406,1451,2236,311,1184,557,265,2317,1082,2781,1656,2450,989,2350,67,382,2503,2640,2139,2176,375,2726,1309,1058,2664,321,974,2144,1373,1301,1575,1808,2835,1735,1670,171,2046,2015,1841,948,407,215,2820,253,2591,790,247,694,2679,205,2203,1993,361,681,76,1628,2217,2872,444,2265,2513,488,293,2370,31,650,2948,763,597,744,2421,750,2955,785,739,521,1140,1418,867,939,2222,1278,2372,2004,2998,1845,2018,2072,1558,1177,539,883,256,7,2948,2015,2439,1451,2273,2880,772,683,314,502,1066,69,967,1668,1643,460,2977,598,2788,154,1008,157,742,1965,1128,2772,2442,663,1170,2681,994,980,2561,815,1443,1223,2907,209,2210,1342,1430,683,1833,1470,514,1011,780,1718,1200,2171,658,1649,2941,2043,1171,124,730,541,622,1032,1954,1329,120,2959,72,1484,233,2055,1681,1134,1332,1168,220,119,2479,2371,2075,1584,1923,2717,1160,1366,359,1494,639,2683,721,2187,301,1353,1120,8,2901,2906,2536,1444,545,1215,2532,1496,84,1105,2422,2232,1391,364,1830,396,2131,2482,2725,2074,2294,1566,455,2679,2663,2750,7,1995,2051,1211,2656,352,2583,1612,1097,408,57,2011,708,1917,1790,2651,927,1574,1533,2781,632,917,188,645,1785,1043,1336,1000,305,2740,1685,2946,2389,1985,2827,2343,907,2255,1752,1520,2190,248,106,1189,2001,2162,1298,1223,54,2208,2999,2534,2365,531,642,2216,243,1813,1690,365,1286,1931,91,1738,492,44,519,1247,2409,2983,2274,2120,2403,2875,1157,2260,508,972,2603,1045,1138,1492,2972,597,948,1929,1182,2565,524,1069,1381,2824,372,2155,2207,2654,2085,2370,536,550,2520,1230,347,1890,1053,1606,1494,526,1116,2732,2885,1728,2710,1697,1109,2816,1676,847,817,2625,562,2048,851,1141,2841,485,2942,317,1477,456,1560,2859,2597,2035,2427,780,1258,2546,1210,1018,2198,2168,2728,1736,663,2898,195,505,2749,90,1423,529,1537,1872,139,2278,2191,2357,2682,523,796,2186,276,2789,532,2306,302,2166,142,1063,1384,826,239,789,2639,975,309,1124,1963,1156,806,1403,2626,1086,1786,2604,1978,2254,377,690,1869,1326,148,987,1807,1526,1061,2246,620,628,1968,602,1705,1611,2630,1331,2508}

    893

    1769

    Returns: 215976435

  118. {289,1494,2777,2439,794,2671,1261,1913,2929,330,2307,326,2180,171,49,1636,687,458,1056,2155,1140,1485,563,206,2905,1851,1172,116,1509,1915,1707,1522,197,602,2953,1506,274,1739,1948,1971,2904,2540,746,699,1639,269,1586,1832,207,1045,906,1472,1625,2809,1664,688,2613,444,2207,1887,2167,1519,2235,501,2100,959,1919,1431,2446,2950,1101,1361,2192,1378,1391,2795,1538,380,785,1935,2640,766,1019,409,2456,353,1422,2512,1363,1233,532,662,778,1909,1251,2222,1657,1410,2023,1627,2735,1290,828,236,781,292,1719,1808,405,172,2242,962,2717,1104,1361,2160,573,2489,2393,1797,1492,1580,1282,771,2121,2346,453,2641,254,262,1013,220,629,1536,347,5,2826,1757,338,1794,1945,757,1464,1888,2120,95,1342,479,1315,23,1244,2089,616,674,2057,1295,853,1858,165,1157,1846,2023,1154,712,624,1108,2305,1032,2594,991,763,1019,808,945,2544,726,1031,1028,879,2581,2737,2782,1420,1875,1940,1834,2075,1954,285,613,2841,1348,595,2727,1572,2232,1585,1999,2748,1288,2939,2860,2946,2377,1011,2394,773,387,273,2293,2180,2293,250,2834,519,2359,653,1828,1345,1032,1112,1607,515,191,2045,2665,1352,2734,1250,2260,2185,838,1556,842,1432,700,513,2479,958,738,2157,1814,364,1695,509,2718,1045,926,331,2245,1731,1759,1819,1447,1152,963,1384,183,1052,1213,357,459,2142,2666,1520,1143,2907,1418,110,1743,2071,2861,1428,1542,714,1436,2000,2217,1965,2923,2752,1854,526,1514,2439,372,2427,868,2983,863,254,38,2281,1658,1698,1565,1027,883,1895,1743,177,2873,1327,1315,618,1228,834,838,1535,1122,444,898,2766,1230,2926,2384,1865,256,2916,1337,1163,1674,1131,2256,2938,1579,985,1396,2318,316,144,288,63,2783,249,2612,2760,32,1377,1885,1705,1595,2128,209,2036,272,2981,2624,1676,2596,875,757,1793,227,2327,2542,1673,2857,1961,888,156,2454,599,229,1850,622,2202,1459,2460,182,2905,2025,610,192,1049,1515,1616,2500,541,2710,112,1231,2353,1837,2132,189,2811,1892,2638,2445,1288,690,1687,2504,185,870,1274,1651,2719,459,70,1521,216,2650,1037,2442,2786,1685,2921,902,1189,287,2383,555,577,2770,2263,1479,2759,169,106,560,1911,2619,1870,1347,2756,2917,1600,470,1779,356,615,2608,2875,1684,946,2268,153,1302,207,2331,1663,691,2201,2728,1036,2353,1040,1074,1023,1933,2240,1549,994,1368,471,284,375,2527,965,2809,390,546,1659,1126,151,2506,94,235,837,452,885,695,2704,770,1744,321,2202,2117,1771,804,1613,2188,2785,2868,2421,1834,309,2311,2701,966,2658,465,1255,2488,163,2025,783,1601,858,2029,702,1254,180,16,285,1008,2707,329,1234,1725,740,2787,2602,2584,2005,977,567,1256,1435,1847,815,754,259,2434,2485,598,2249,1224,84,2477,807,1372,41,2502,2515,2851,2134,1279,2982,670,975,49,2035,1848,1186,780,2320,1332,1299,1065,2535,1830,2145,312,2878,341,1470,2646,811,1995,1633,1680,2537,15,1557,518,1606,482,2825,1678,2752,2902,2191,1434,857,2105,2285,1726,2193,88,771,2022,1559,1806,375,2355,2644,1319,395,1815,2583,2696,497,435,1724,2806,2751,2458,1122,708,2491,1957,1164,231,1841,1756,1437,2639,260,291,2606,349,2804,189,148,2556,99,2741,1004,996,2428,1269,2961,2567,1531,1049,2605,149,1328,2656,2871,1937,1176,1587,263,918,498,2147,1268,155,1256,747,2440,1462,1675,622,2125,1309,2073,1010,950,128,246,1717,1842,1930,468,1687,1039,1608,1631,1010,383,1741,2804,2379,195,1419,2209,1307,2462,1963,1197,2182,1949,933,1608,1516,389,1825,1625,1857,1627,1006,896,1171,466,1782,1986,354,2597,1725,2895,1647,939,1915,521,1797,188,416,1767,2378,429,1129,1737,2568,301,1063,682,845,1955,1944,203,1744,2344,1663,2460,2102,1716,2372,1292,1755,2919,162,1329,944,1188,479,1433,432,2218,888,1408,842,1457,630,766,2536,959,2037,812,1570,1451,427,1681,2972,2091,320,184,1951,2654,310,2063,1771,1042,2011,2580,641,402,2406,2886,325,447,46,1146,1873,95,1406,2607,2471,463,1985,1165,1542,2101,2266,529,2879,54,553,2765,77,856,2943,742,2238,777,411,361,1107,942,1334,397,219,2036,1896,119,2407,1351,1022,2318,253,2863,358,2436,1234,83,2568,1036,2609,1791,2089,2099,2713,984,1630,1313,1475,608,264,1960,2978,187,2482,677,2231,231,1020,625,2838,1003,695,1163,151,852,1300,2352,35,1173,819,2910,1082,2097,2751,533,1751,1727,776,159,1128,1460,1833,2061,2970,1384,366,1777,1252,2292,1721,2648,2365,1012,51,1827,2853,1619,1587,1645,2423,1638,2787,2757,2308,1079,379,939,2536,1381,927,2722,163,950,1605,764,615,2404,1700,1712,2296,2661,2323,2148,832,2085,127,1415,1833,1421,141,627,1296,917,2108,2813,1706,1895,1088,1785,2263,2275,336,1346,175,896,2886,2417,2131,2258,0,1523,369,288,1007,1354,1773,999,342,2270,298,2718,455,2546,2829,1498,2519,806,2300,2823,1209,1607,2396,919,1897,382,1026,1824,1585,2659,1073,2535,523,1349,528,2317,200,2198,2900,810,2514,752,799,2824,2407,319,1106,1479,1368,2597,2012,1001,2031,1660,2205,1146,119,2409,2279,64,684,315,2118,2902,1622,2642,2438,1584,1128,2473,2707,1892,576,1283,745,2922,2553,2042,2465,2267,237,659,2559,953,2040,1966,1242,2429,305,1998,1843,2221,2928,2813,1116,1861,1416,20,334,845,1533,276,2071,98,2940,1736,2519,2990,2596,2936,1193,242,2321,2528,1520,1946,1125,531,631,2190,2692,2205,37,1367,1747,1508,2102,2097,2253,522,2797,1945,705,1438,621,626,1112,410,429,2553,2118,57,1241,2278,1488,1983,2443,304,2475,430,2664,2360,2604,1566,2042,1532,504,2994,2977,2610,1154,1545,2106,277,1676,2614,1526,583,1482,2173,1749,2776,580,921,253,1836,1706,556,811,223,795,2510,2676,2884,398,2958,534,1980,725,1826,977,2170,687,2552,362,2823,1042,2404,601,370,2563,1518,2160,1116,2579,723,1876,1556,1271,1382,1211,437,1266,1781,1266,229,1027,1364,1684,832,1876,1823,2325,2702,1325,139,473,2191,2574,2403,2360,2269,2673,1805,1884,2337,2483,14,2688,2644,1271,964,1262,1362,660,1246,772,2135,1279,2668,26,152,2986,2747,1867,1962,942,1337,202,730,779,383,2892,2914,2301,2093,2927,1734,2236,2888,430,274,1750,1550,617,332,2806,1992,1621,919,1195,1931,1092,2726,924,1675,2691,648,2189,245,1323,647,2156,1377,680,2122,741,1148,2342,1136,417,731,154,2285,721,386,2711,1539,848,719,1086,2788,2365,1078,434,1167,1216,2894,2632,1218,2209,1693,2767,1151,454,2380,56,2484,2979,1073,632,2816,2963,781,2811,769,1729,1553,1169,30,1534,1566,2181,1257,308,1,3,898,1790,2627,948,527,1694,476,985,2250,1792,1272,2448,2903,2810,1367,1889,2646,1101,2107,902,1276,2465,1443,1844,1596,828,2854,498,831,1936,2672,2895,2366,1609,1594,1458,1375,2494,284,2842,1119,765,291,2921,2882,2165,2126,1617,1056,2821,1081,353,2797,1331,1162,2271,2230,2509,2807,2475,1776,2024,403,912,109,6,646,2739,2930,145,1916,2625,1330,1232,2635,16,693,2133,2149,1230,2643,2898,1153,2294,1445,2866,2579,2669,2626,303,2687,1215,1218,428,802,1430,463,2987,2595,1400,1749,789,486,1859,2746,1723,27,2774,2211,1397,797,2104,682,317,2663,528,2684,2650,2686,1786,1839,659,1515,2708,2074,426,2865,303,2656,100,2546,793,2629,96,2770,1760,2513,2105,2085,1277,1935,952,1753,2196,1573,79,874,2588,2329,732,2897,90,2790,911,1973,2784,1772,2624,2405,356,2431,2066,2507,594,2544,437,2420,230,1942,1988,2817,124,2215,1144,904,2643,410,2499,570,2565,591,2426,130,1838,1800,1679,2669,2324,2492,228,765,39,835,1848,2129,2732,369,2907,60,1694,2026,203,1081,1729,997,1983,2351,2664,751,1365,723,2613,539,1104,2941,1401,1730,511,392,2745,2222,806,2477,1795,1522,2569,879,1076,131,760,436,1564,1801,624,1287,2891,2560,2163,142,2158,2387,2864,403,544,769,1110,35,1919,2274,2789,2775,22,1798,495,227,394,2435,10,1324,637,982,1339,2926,2601,1326,2451,1156,2229,294,2599,502,2217,1465,2781,2765,1507,330,1109,214,2210,157,1231,1593,297,2526,1709,452,1448,2433,1870,67,2468,2584,1280,2371,1819,1599,493,2176,1304,2370,393,1678,839,2299,2582,102,2819,903,980,1787,818,731,1202,2324,2999,1117,654,474,2869,1745,1502,2845,1502,19,2922,1141,1552,1235,2764,1840,668,1069,2853,2463,1041,740,2500,2259,877,2483,89,2472,2920,1273,2852,1455,267,1173,484,1439,907,1305,1320,1061,2675,1836,2273,2179,2389,2723,1504,2177,2509,2608,1737,961,2028,1916,1294,2021,404,2356,2583,2612,2541,734,114,2620,2794,748,2334,1005,1085,2706,1583,1947,2791,1155,1847,1646,2418,591,1298,1300,1273,1964,322,671,1742,2014,362,264,934,174,1975,2619,1291,1181,2297,2906,717,384,693,2575,2757,787,1748,1257,160,1779,1225,1142,11,895,2800,2362,2449,493,1702,2586,2701,521,1568,306,438,1059,1970,283,451,2628,2361,920,2848,2705,1284,2114,178,1134,643,1050,540,2123,1235,1002,2070,654,2227,2197,2524,560,2204,2212,2155,776,2897,2056,1374,165,2206,55,1961,2918,53,66,2874,915,1783,823,113,75,1581,2630,735,27,607,1900,1161,2551,170,1429,494,2929,2731,1440,1094,1906,1212,571,111,2294,1291,2429,2810,581,496,1058,2689,1214,1950,2749,851,408,2671,2957,246,2764,222,1098,2501,2653,826,1643,1698,2050,404,2138,1344,427,1285,1745,1134,2837,980,316,2364,1613,2178,2777,644,945,2492,2717,579,1322,1927,2639,642,1793,398,1064,335,2179,673,1893,169,1118,98,435,298,105,2256,2288,2872,1987,551,652,2430,2551,2242,2454,2171,941,957,1228,2387,281,359,1738,1872,1369,2932,2915,829,1513,947,821,1017,1498,2420,640,1183,1890,2484,1176,2064,1458,1149,572,1926,2947,2301,1486,2177,1510,1130,570,2858,193,53,1307,2835,2925,2527,668,814,2827,2845,2455,575,1704,2344,889,2531,42,804,969,1412,2617,2697,858,976,2350,2957,840,881,1637,1558,487,2184,1357,2566,1092,1517,1192,1754,2382,2721,24,2362,1879,661,1557,1263,1153,665,170,453,1314,721,2592,616,2032,239,2235,913,65,2538,1993,536,2322,857,1226,1564,96,1790,2997,1072,2145,1447,947,1814,199,694,1144,1891,1454,1139,1547,352,883,45,18,998,1194,1809,2065,1421,1210,2347,196,1326,532,1770,1941,433,59,2340,2141,2043,937,2960,1946,932,2870,2958,2017,2524,535,2772,2059,1720,1135,2367,2463,358,1126,1449,2642,539,2838,2788,2923,309,1528,2651,1719,704,787,217,1016,1656,1666,2497,1968,6,97,19,2773,195,2443,2304,1312,973,2323,2932,2590,1091,1308,522,2890,2913,1713,2281,368,276,1912,1098,2356,1083,1066,909,2331,664,1544,2988,2614,317,1123,1389,315,1341,1208,130,2822,2396,2150,2578,691,589,2833,1035,2533,2248,2945,1398,2898,1024,1082,1191,2793,1159,749,2949,431,339,821,2493,1575,816,2829,2255,2264,2585,817,2747,204,860,1994,266,152,726,865,116,248,75,2714,1239,468,997,2154,1812,1760,2495,884,1240,1711,983,101,1047,194,78,1534,2567,955,1054,861,2649,2792,1634,103,1704,364,692,1201,13,514,48,1375,62,1332,983,293,2249,1890,129,417,226,159,1560,1456,1691,86,2172,332,2146,1037,2699,2055,753,764,2950,168,1965,458,2968,441,2756,2862,844,2054,2985,2850,2110,2868,2153,2495,1305,1289,1252,2300,2171,571,669,81,87,652,1667,599,1831,2974,1982,1740,2064,1160,287,1048,2309,557,2043,2302,2336,2187,594,1641,2027,2763,1309,2940,2832,1011,143,558,2887,969,734,798,627,2780,2169,391,1216,1896,494,743,629,2529,117,2937,1666,1350,1820,1533,1102,2225,2063,2530,34,2402,1318,2880,2712,1864,1105,2812,432,972,1284,2032,1952,2162,2147,525,2046,21,2709,536,653,2674,1730,1841,1394,129,390,748,1652,1389,824,2855,300,1827,2683,1768,893,1489,340,279,825,1784,724,1734,2698,813,1971,466,78,2127,2338,796,1747,1174,672,1374,1929,2844,1866,1978,413,1981,2208,2390,2237,1654,1067,2045,1614,1716,2703,2505,2815,2630,2077,1572,1670,1635,820,1198,1540,1436,1603,2604,2889,2989,1071,1664,2174,304,1788,724,164,342,2980,1053,1990,519,2346,2223,1413,2376,1519,1295,107,2954,2736,1348,2166,1030,2695,1667,2654,791,1631,1392,1499,261,2934,1068,2980,1030,931,2284,345,1565,42,2027,2510,2953,1118,1041,2885,451,341,2021,450,640,2035,1551,2880,1987,69,618,2577,1903,1583,2893,1693,982,307,1338,146,2,1293,2107,1330,2018,2722,204,505,58,1025,2801,1109,1683,2508,461,2028,2771,232,2319,2049,1791,774,1249,1132,1506,1373,167,864,421,2060,1220,718,600,605,190,655,1335,1696,2380,2291,623,212,334,2425,706,457,1117,31,1255,347,1188,1781,240,2798,1130,1314,1805,2098,2912,1882,43,2818,2412,2247,747,2154,1634,531,1496,2406,426,928,590,2339,891,2075,2351,2681,1493,2062,2703,835,1281,33,109,1994,1786,1877,1735,2354,1335,338,801,1708,1268,1059,2091,1758,1594,715,1297,2772,613,574,798,1238,2554,777,2079,2196,1886,1917,2010,1063,550,1683,1904,2843,564,1478,350,442,1075,1578,489,1143,230,2873,1412,422,2470,1535,1259,377,328,209,600,688,2871,2997,2525,1646,2086,1402,2517,354,1395,2087,2616,180,1923,1184,745,1697,2051,176,2683,217,2334,2990,428,1431,1984,2226,1336,2,1089,2561,1180,1927,1632,1043,2796,1206,2444,2103,681,1776,2945,2879,1294,2746,271,2408,127,875,2368,2379,2855,867,2167,578,1765,2083,2020,74,545,981,1499,2942,1601,2518,510,199,2973,2001,2119,1322,2623,17,1298,2555,2670,2973,2993,2004,2877,114,2046,1898,1526,91,1574,25,692,680,603,1782,2007,1429,1446,2611,1074,218,1313,1497,425,2528,1554,1355,2090,2767,729,2447,554,2432,295,2275,93,1659,1071,609,1311,2825,2738,2744,2099,1129,83,1171,1972,2913,1653,2883,1652,1450,449,1151,2694,242,952,1276,2899,744,2109,2580,269,216,2400,104,2130,2464,923,656,1296,1541,2589,474,1299,710,2716,2106,244,2215,2539,901,1538,1655,2970,381,1409,2779,869,400,861,1215,2736,749,1207,2982,2173,2927,2442,1177,40,2791,2964,2621,325,2459,630,1046,1653,1921,2058,755,2491,2622,2278,1953,7,917,2437,1529,1286,920,910,2358,817,2505,238,1477,278,2749,1503,2992,1558,854,1559,2966,1811,2232,542,2279,530,535,1311,1204,2149,1460,2266,385,2977,2199,486,118,579,2038,2426,689,2730,2522,1541,2846,1474,1918,2947,1598,2582,1934,2166,1441,1501,300,1411,1060,445,698,1736,382,357,2554,1924,2734,881,2172,2850,1168,2565,2631,1894,2068,2116,658,1090,190,135,988,2272,1243,927,1990,405,166,2135,1480,2137,2885,1053,174,593,1853,2311,1360,2298,1907,2743,2971,2044,876,1221,2258,1084,2357,1979,2677,181,1416,2033,1405,1765,2864,1456,614,689,441,1750,223,1586,2692,2603,2269,2473,1880,2307,178,1435,822,243,1141,818,1292,756,2971,308,232,2095,1080,424,728,2807,1859,814,2742,1051,1303,388,1424,153,2912,1620,108,1247,756,2805,2599,597,1611,2848,355,1452,2116,590,277,63,2092,66,1050,1680,1956,2041,2800,147,1391,855,1852,1639,351,541,850,1769,2512,331,1748,1999,2750,2178,245,391,2782,1033,1561,469,1455,2288,1317,1888,990,1728,1312,2371,667,941,970,2768,2056,2937,1893,698,1592,2706,1211,2881,666,2550,2983,1575,306,1468,2952,1835,2080,2030,349,1354,320,1366,350,2679,877,1414,926,374,703,1333,1529,2416,2847,1839,2733,2427,1708,286,1349,808,2287,1445,125,2645,2798,2750,2956,2516,971,1628,1933,2224,45,1615,77,646,467,1110,1545,846,569,2450,440,1047,1159,286,1121,2729,2165,79,1511,312,2140,562,2636,1264,1405,2349,337,1596,101,448,1489,2996,1610,2430}

    {2712,1901,2686,72,2047,2615,2047,140,2768,2878,2126,2110,76,1034,2265,2754,2352,359,975,2863,1700,252,1712,2413,2376,2019,311,1000,619,2995,925,538,2446,1543,2555,887,1178,2152,138,136,1483,1227,709,482,1637,839,2830,1977,2083,2395,2397,1527,2140,1802,958,2441,2602,1588,2976,1058,355,1333,1185,2399,251,1879,2537,219,490,2197,2839,2373,1669,649,24,2893,992,1457,136,895,1548,2078,2313,588,807,2243,1939,2283,470,2900,260,436,259,1532,1977,1140,2847,792,820,2515,759,994,1182,2872,2896,621,1947,2822,1383,64,2268,2952,685,1244,1591,147,596,501,587,2954,979,876,1465,1331,2312,2466,1275,2276,903,1995,2297,2479,1597,2012,1340,2591,1398,1272,841,251,2394,1701,457,488,1617,1677,1785,2934,762,1430,836,1644,91,2412,1147,496,431,145,2113,623,1822,1158,2210,4,569,840,1450,956,2589,918,949,645,68,768,1863,2944,1344,1539,996,240,2143,2157,2090,1809,1642,660,1363,924,1114,2058,1804,2793,2368,2051,2620,2529,2542,2132,1434,1324,516,1954,1090,2175,641,563,635,2123,1318,2270,1100,1778,2682,323,1853,2785,2780,1219,803,239,786,2044,1399,1752,759,81,1861,2962,2037,407,2755,2832,595,1070,1826,1900,1674,2775,2317,1021,392,39,657,677,2655,2259,2837,1952,1259,1137,2464,2899,2540,76,1883,2685,344,2964,2434,852,2286,176,1068,2117,2295,1491,1972,878,2170,2501,886,1562,1406,2068,805,1576,2417,827,1440,374,447,1085,2918,2303,111,582,2566,1099,1735,1854,2690,923,2437,422,568,1057,1388,915,1561,784,2935,1051,514,1106,741,1175,2425,2327,2682,290,1807,944,2836,2931,2498,2143,1899,2199,1100,887,1762,137,1345,825,1514,905,2282,1577,2578,2817,346,2322,1308,2689,1054,115,1718,213,1720,1191,2109,648,1253,1632,2738,1449,584,1055,1589,989,1762,2967,882,1686,1811,252,299,137,1626,1554,2237,121,2341,351,516,2938,1024,1662,44,998,866,2481,2050,2357,2262,241,2496,813,1301,676,2503,2705,1067,1029,2778,758,477,1242,2452,751,1864,12,218,1355,2762,1641,1038,258,2381,1537,491,537,802,2228,1386,2511,2805,2276,2996,1123,1501,2792,2004,2316,2048,549,2760,1655,2271,2413,1014,708,123,670,2348,1660,1003,1692,1769,2561,656,106,792,172,2521,1179,1956,2124,2735,575,1668,2452,1868,1170,247,795,666,183,1723,581,2187,515,1481,527,1969,912,1630,2557,1982,1393,1306,626,1998,548,910,1124,47,2610,1342,1267,1365,132,311,2448,1593,461,2455,1950,1914,1386,256,1303,650,248,50,2779,1981,2965,92,2854,2504,951,1597,1644,2011,499,2570,1957,2302,963,2948,663,1065,318,1002,957,2283,543,2517,2219,2876,2920,2111,986,1953,1610,378,518,520,1194,1490,1825,1009,550,462,901,270,2349,1600,2974,2415,70,1746,1717,1766,1264,1643,420,1212,2575,1699,1444,2292,2364,68,1852,112,1338,278,2193,1162,1229,92,281,1000,738,922,1665,614,2711,1275,1156,1016,890,1177,211,2226,1316,93,1403,2550,2094,1157,2716,543,2003,2330,185,665,2366,337,728,585,634,782,1928,2375,971,344,268,2960,1181,1767,2079,473,972,1751,925,1210,122,628,671,702,2246,133,1009,121,2098,2635,1574,80,2731,1145,280,809,1196,1138,552,1590,188,1862,714,2067,2290,1689,1172,47,2261,1483,161,2247,1,2549,1022,561,2549,2882,596,1182,2309,1824,1548,1317,701,222,1849,1287,1726,2159,1605,1671,282,1796,134,263,916,118,1810,1388,1505,2744,394,778,2674,250,2343,2136,1504,505,1524,1739,1649,1359,871,2208,2685,736,2340,102,713,2478,2192,1629,1618,2949,2195,105,2019,662,2061,1138,1705,2201,651,1328,775,1701,2558,179,1902,1908,283,843,938,1799,956,545,2070,1446,1525,84,1789,1220,471,526,2261,2225,934,51,2659,1925,2120,675,914,2006,1360,273,343,824,837,442,1991,1679,2508,2849,1020,2076,2539,2082,733,2741,13,423,2761,2326,2449,2998,1550,1881,1035,2181,1353,1385,1340,1885,177,2636,1997,611,2725,801,1518,2081,2558,1530,2418,2151,768,345,1270,115,1214,2489,2141,669,363,2169,1857,205,566,2600,1512,2095,1376,2543,1813,198,2959,314,2303,2391,123,686,2175,2134,367,2993,2740,1357,1758,1511,1248,2783,965,294,2013,1202,1454,2969,2828,2690,846,1757,2333,2486,753,1691,1356,413,434,224,890,1021,1728,2431,1137,2009,2220,1871,1886,1249,1602,2254,2410,1989,1097,2252,770,899,376,1546,56,1432,2213,1316,783,884,1975,2633,1939,141,1199,1626,2830,1486,1568,789,1043,299,82,2329,791,2841,2348,583,1778,2456,1390,41,122,2573,719,1351,2220,1023,2254,408,1802,194,2814,2773,673,1387,365,1925,1245,213,155,1472,1711,261,1190,1224,874,880,1364,893,929,2687,1536,363,2653,1582,1524,2606,2835,713,1444,1546,1997,2931,1289,2975,885,396,365,1932,1959,2652,1183,1761,71,1792,868,2457,1817,1028,1062,2408,15,2935,1741,1703,2652,2017,2144,104,456,815,2057,1099,2112,324,1571,1038,962,478,1978,1537,1761,2161,445,126,871,559,82,2576,500,125,2306,2415,326,758,566,2590,348,819,1838,7,872,181,20,1569,1418,162,1855,26,2753,537,2326,233,2203,108,146,1638,1306,1417,601,1500,2647,2666,1087,2919,1795,1236,853,401,1251,1707,2634,1490,2981,1944,2008,2545,1451,378,1822,2153,1411,2999,2563,74,1062,2814,1470,485,2411,930,1523,173,1690,1830,1175,33,2534,1427,2984,1753,1160,489,28,992,2732,352,2375,142,850,2761,1874,1818,1563,371,584,2667,2994,2668,1239,25,2911,234,22,1789,2858,1801,1845,44,1277,1829,235,565,2883,2866,257,1590,1570,1796,1392,1018,1650,9,1812,707,2467,73,999,2695,1576,1190,1543,1107,1560,2214,1872,500,2016,1069,2114,31,1926,1334,2189,62,2198,10,1336,2086,1738,606,1165,2634,319,2299,940,1044,1875,928,2485,987,462,683,1017,2846,1754,2856,2572,1525,1358,611,2506,293,984,2740,960,1253,620,148,2818,406,948,722,943,2066,90,2681,2995,1097,1005,638,257,1208,1877,202,1818,513,2338,1121,2799,197,381,2034,2328,1968,2530,1088,2889,1243,2963,790,2696,225,439,502,1851,2699,720,2812,938,1670,2440,2700,865,1381,2758,2870,1943,1427,171,1001,2660,1397,2239,2444,2598,1974,2888,610,559,271,2072,2139,2214,625,602,373,2560,1658,1195,1031,1055,644,2763,2867,492,2395,215,2461,1491,1223,1672,1775,1960,589,2190,1467,2272,1301,1198,779,61,709,2769,2391,2074,1260,711,1880,438,1618,1200,3,32,2691,1213,1260,1966,2951,786,1616,2808,1948,679,275,866,2124,987,2315,2476,1495,2206,961,2369,1806,737,499,2998,166,2304,684,360,2015,1929,1471,2933,639,744,2194,1665,1979,636,40,2649,1395,1441,2632,1816,1115,1482,1320,241,2538,2282,485,859,859,1907,1724,1269,1873,685,2849,968,2490,1261,1148,2633,201,2321,1820,2896,836,1555,1420,2345,2386,117,208,1248,2358,2382,2315,211,221,678,329,233,1158,872,2562,1816,2204,210,561,1072,2018,2860,1076,2924,2548,967,1976,1774,1964,1091,2906,318,1788,1086,2511,727,577,2125,484,1899,247,321,2255,503,580,395,399,196,2803,1203,2916,2482,2227,2720,2585,1468,9,1951,503,420,970,2978,1828,2108,931,131,0,1390,2574,2526,1986,1509,1648,2662,2776,1662,1521,635,2280,746,2789,1614,1380,954,2466,1604,483,609,2728,2065,2534,2052,2002,508,1408,1161,1591,2216,1921,636,1780,2721,1624,619,2246,936,2861,157,268,1842,414,2481,675,2053,1938,2377,565,1905,1476,863,2252,2164,542,2233,2795,1567,2400,1407,1442,2833,767,2129,529,258,1343,717,649,1265,1356,379,1108,2392,2564,1369,1135,848,1425,935,2248,739,1636,2857,2989,238,573,1166,1233,297,2468,674,193,2401,2445,2901,2688,2001,2904,2015,340,914,2972,366,2424,1682,1580,2617,228,2183,878,2497,2244,296,2240,990,907,2203,380,834,1048,2541,191,1111,1359,1493,1201,2039,1370,1012,1869,1169,1609,1376,2605,57,73,718,1399,1371,2054,892,477,1387,2955,1677,1371,2385,1856,847,2314,727,2525,2409,2493,2104,1204,2385,1766,690,2335,2969,2069,2520,1967,2714,377,2316,2136,1589,2310,1462,243,1127,1562,2577,1145,370,2532,1120,964,2290,1651,1452,849,2820,2381,173,2769,1703,2476,1866,2130,2834,2865,2839,2801,2142,487,2909,2951,1448,220,60,1759,2710,2840,631,2784,460,140,2295,1867,1635,1282,533,762,1612,2601,2640,2600,1891,2230,215,593,65,164,2955,2754,1113,803,2518,849,1640,1500,1095,1722,585,2451,2403,2462,2655,1770,249,138,1250,1764,509,557,2040,1407,743,1469,1077,1415,1815,953,954,21,831,87,784,822,826,892,1917,1628,2207,134,1695,8,2523,1846,2305,2414,1060,606,415,412,993,2591,475,1362,830,30,937,1278,2345,870,2200,424,508,2513,2852,873,2645,2158,1897,2267,805,1039,1619,2041,2372,843,2514,1040,1661,1527,976,785,2928,538,314,2531,2414,226,2053,1552,2842,296,2499,2119,1883,1985,1236,1657,492,986,1180,716,1267,160,655,981,2236,2388,279,1186,2424,966,1015,440,2796,1958,419,2383,1125,1567,1869,1821,1962,2680,2543,99,1237,1193,1459,2657,2101,1426,2802,554,1372,2593,1385,905,1773,1127,1715,1803,158,448,401,1884,2273,1623,1463,2677,1187,1466,882,2637,150,1353,1934,2073,1310,2985,1167,1898,2661,555,2698,1422,548,205,2432,530,823,1480,472,1413,2188,2033,244,2343,2402,335,2447,154,949,755,2241,2399,2194,788,592,346,1187,110,2393,1656,1164,1280,1044,2361,1494,1461,1189,2216,1930,2373,1310,55,302,2726,1052,2195,706,2781,620,1856,1192,1922,497,1319,402,1474,85,549,921,2521,2082,754,1402,2257,2469,2049,1258,1855,2679,443,2000,2592,1710,120,2319,2991,2006,2422,2176,2320,922,1668,1696,1281,1080,816,360,1245,1323,2867,2308,2314,1733,1984,603,1603,1722,551,1654,5,1225,1903,1910,1874,2355,2569,2186,385,592,1901,2163,184,704,425,2523,556,1908,1823,1503,2627,1882,2092,2702,1563,270,1642,1531,1102,481,1938,1911,2450,343,2557,2992,1800,574,2253,1473,2820,2615,2638,2936,1103,1918,1464,52,1185,1553,2844,1093,443,761,368,547,2264,1075,1544,1686,2609,1913,1184,1878,2675,372,1179,1931,761,906,2826,275,2862,305,2961,2843,1352,1936,869,2851,310,1689,2629,2458,1004,1763,1136,2831,2581,2020,1433,1174,2758,1466,2944,1033,2112,900,1949,767,182,800,796,752,2723,396,793,1258,2419,2328,1894,2559,2588,2684,995,282,71,200,1733,2137,1410,1488,1007,1988,187,2908,1746,607,2164,1366,412,634,1710,34,2397,236,272,1046,2739,2096,139,2616,1912,1378,61,198,414,1346,2933,2138,483,2059,760,1941,2078,2094,1379,2459,456,2794,1290,2984,1731,336,2678,2742,2336,506,729,1438,657,1393,1223,1787,94,97,265,1904,900,1419,2547,1120,212,2516,1114,1379,2174,891,742,449,1111,772,460,2533,1115,2887,1094,722,2693,737,2908,597,36,144,517,2859,2013,12,1991,455,132,2766,103,2881,1798,2816,2298,1829,2211,540,1170,210,844,1865,1155,2697,1732,481,1262,1443,100,2007,2162,1530,1923,1763,433,2727,2363,1025,855,2081,113,645,605,37,2724,696,2494,2076,2243,2152,2388,2128,2621,1756,2433,2133,59,2877,2548,862,1920,389,633,1649,2378,504,899,2131,1808,2470,2471,1400,2048,376,524,2306,1889,841,2410,2917,2753,1006,124,2474,1661,862,2799,2991,1980,1821,598,2573,2002,1721,2374,1113,993,2039,1206,1414,2522,833,2694,2673,2618,301,1692,2461,255,2370,2975,1868,1512,1133,2743,1577,1119,1905,2651,2729,388,1645,2121,2824,908,1624,1551,552,480,1863,156,1149,2774,29,158,2941,1409,2435,1463,1887,2231,2224,1813,2676,1592,2239,1928,150,2821,2815,2986,1970,2480,1219,2859,2005,1937,736,2914,833,107,488,1803,54,2384,1196,547,1772,2478,313,1709,2836,1008,1150,2161,475,214,578,588,1752,1061,700,658,2026,1018,1878,989,1380,2828,2080,763,1484,960,735,2593,2088,454,1508,1083,50,58,1579,1350,480,886,512,567,1774,2487,1278,507,701,2115,1495,2603,725,421,1604,38,2486,664,225,2571,88,1606,1423,2808,2034,2700,2472,478,411,935,2480,1967,221,1621,703,2745,696,2748,897,262,2547,1373,506,1682,36,1517,667,1582,873,979,1066,1270,908,1428,1078,2014,788,2962,1217,2350,1423,812,1858,2840,2122,2030,1860,1404,2441,1293,1973,2251,1702,2909,43,1924,716,2398,126,604,373,1478,1209,1906,2939,710,1343,1849,2778,2244,267,1178,2498,2946,2156,794,333,69,1132,2389,1087,1485,208,1940,697,2545,2260,167,415,2031,943,2755,932,1394,323,72,1341,1688,520,265,525,1777,2572,988,720,161,1598,2474,1595,1229,1622,1247,1147,2856,686,955,799,1263,1615,52,2910,2488,1768,2786,880,2100,1442,1588,2965,1370,2262,523,348,2966,2827,558,2274,790,587,2759,911,946,2093,1996,995,2507,186,328,1226,1199,387,2347,2720,930,1510,632,2438,651,2003,1555,1681,2715,1473,1611,1584,2168,608,1629,576,1439,2552,85,1339,491,2287,224,1426,586,2052,2312,1647,678,1640,1955,2611,464,2571,1742,2401,179,2009,1969,1807,327,2730,2956,847,1124,2587,133,2423,1321,2658,679,1573,17,1620,2625,1862,2010,333,2062,2219,1453,681,2598,2022,2151,711,2891,1302,1496,546,2587,909,1152,1578,1714,201,2150,650,2874,439,465,2182,510,1026,1347,89,423,1688,2341,860,2725,2084,143,2113,2704,1650,384,1784,2469,929,28,2185,2987,1569,637,604,750,2663,2637,450,255,11,1794,775,206,2088,2436,1860,8,974,2405,2733,1727,1477,1837,733,1417,1297,2374,2503,1599,2310,782,936,1764,67,1217,1240,2737,1029,1084,418,175,2496,1205,1845,2277,2869,773,322,2667,1672,1648,2238,2457,1835,1286,23,406,894,1671,2280,2532,1221,2369,2069,2422,2771,2428,18,1843,48,1804,991,1304,1755,2241,2831,490,2709,1669,495,1238,2251,1492,1996,1513,2719,1783,1241,1914,2570,1254,2715,1780,1942,1699,864,1166,1528,1685,1832,780,446,324,1959,1697,1200,1168,1034,1015,2942,1713,2576,1487,2072,2333,2421,1237,1089,851,1547,128,2084,2265,386,1740,1817,2979,2359,829,2988,1095,2289,1232,2662,1274,1715,472,2693,2286,2234,2332,2077,464,313,2586,1992,1096,2467,476,2342,2943,1943,2144,2724,1321,694,2332,2903,1131,1079,2487,2354,2339,2363,2367,149,2562,361,1285,1633,638,2876,2490,968,2892,827,4,2628,544,2502,643,933,2229,2411,2212,2386,2631,2245,1581,512,2233,732,856,302,1974,135,1775,582,290,2626,1327,1222,2419,1142,2313,707,1403,1396,2223,2146,2228,1077,683,2111,1871,1732,1469,393,2337,534,2038,1922,2901,2060,29,2257,715,2096,2556,2641,1205,469,1057,1714,967,697,86,2594,2968,1070,14,1246,2959,2623,1989,307,1283,647,289,2055,1133,234,2234,409,2453,2967,2390,2678,1673,339,1139,1358,2884,1507,2930,1487,974,1958,810,1612,1453,1932,800,2127,1093,1516,2325,2289,1401,2924,904,327,2713,192,2221,1382,292,1881,1476,2250,867,2159,1203,2564,1810,663,524,1467,2607,809,120,913,628,1718,612,705,2680,46,467,1540,2708,2148,1902,2183,1096,2392,1013,1993,2660,407,1850,2670,1799,2819,2200,730,1831,1471,2802,642,517,2168,80,2976,894,1227,400,564,2277,562,418,750,2803,2762,1329,2213,1484,661,2657,2296,1150,367,1481,676,2139,266,2453,553,1265,1963,2890,2790,672,2103,1844,2284,854,572,897,699,774,1197,1690,2218,2291,1976,416,2416,1383,2595,2184,1909,1425,2648,1325,2115,1105,2087,419,397,712,568,1623,371,511,1207,2948,399,1064,2894,633,2398,2330,446,2520,916,280,2067,168,295,237,1404,1497,2335,1014,186,2911,2186,2665,2915,973,612,1920,978,797,2008,1549,586,639,1602,2672,2618,1222,2925,1505,1475,507,1910,2622,1571,1437,889,617,739,830,1461,951,2016,1424,2647,978,1103,2024,940,1840}

    2200

    365

    Returns: 346723725

  119. {978,479,376,1517,692,1361,1621,766,2125,1408,1705,158,2422,1458,1619,439,960,1430,2733,383,2230,1075,604,2455,2647,186,2547,2060,484,2388,679,2341,146,2893,2709,68,2390,1539,754,2879,1007,2039,902,2443,2754,270,2791,411,6,973,2064,25,570,969,1726,1289,549,2928,1868,1655,10,1152,2554,105,1652,1093,203,622,57,2779,109,2597,2810,1415,290,2230,1133,2355,536,5,1942,2164,1181,608,2410,106,384,2298,1368,43,539,406,222,1854,507,1599,806,1822,326,165,71,2617,2697,2991,1809,221,2488,1698,423,1075,1674,2525,811,819,2747,813,189,2429,2838,1210,1469,2969,783,2901,1318,2016,2061,862,2253,1366,661,100,2195,716,2653,308,2154,2548,2361,218,2542,1006,2875,1872,854,380,1266,398,2403,760,684,1240,2809,1790,2424,2211,124,1879,2878,522,1641,741,2033,741,125,759,362,2239,2970,2517,2947,696,2851,1089,2425,284,107,527,1480,1226,1311,667,452,2820,2994,2672,2264,2753,1053,1906,2707,1118,612,1570,1435,913,528,1261,2026,174,173,1153,1267,1542,2601,1136,2739,1752,323,2182,704,1320,2240,1678,653,1498,1416,727,2979,2944,1993,1242,1650,2862,1656,1430,1289,828,427,107,409,1455,890,1538,148,239,547,2752,1850,951,53,34,1869,374,15,1940,1860,2659,1772,2282,2391,712,1853,799,433,644,311,2184,1913,404,1945,2980,1451,2769,584,490,65,2954,1299,2453,1889,138,1800,329,2159,713,1642,496,2211,1048,51,468,2253,2027,1130,1483,2235,2331,2833,2773,1500,2858,1094,442,620,2931,2802,2424,1276,1204,817,388,404,1408,1079,2963,398,2899,513,1037,2007,2431,2324,48,2203,1558,2203,300,1267,1941,170,368,2429,2650,2109,2029,2400,2886,1579,547,893,340,989,1114,1069,887,2416,1339,1404,2564,2374,1566,2698,384,246,46,2610,277,2244,991,1335,2208,2479,1440,1562,2829,1307,1553,1599,412,553,104,1586,1516,843,2702,640,2724,2815,2984,1224,1677,1238,733,2595,602,1425,1176,1943,610,2077,322,190,2640,758,30,768,2335,2685,2366,2357,1169,2691,1517,2645,370,2532,2019,2912,2343,964,2807,2544,596,2704,1750,808,1958,1042,1337,1826,1404,797,268,1035,2184,580,780,2143,117,1458,1813,1864,1616,359,1190,1059,2459,2189,773,2563,1072,2872,1870,455,2160,47,387,2889,2489,2696,1827,977,666,647,1362,2738,1998,988,1150,93,567,1346,595,2423,1506,19,1476,2758,2148,789,910,249,688,997,950,2488,147,1271,2722,2166,2783,2569,859,1820,1030,1606,2991,769,1516,456,2711,2676,1206,1110,451,2975,2645,810,943,2427,328,2384,252,624,1441,1982,448,2241,921,1858,2607,925,2199,1635,1363,1375,2288,2148,454,2773,1513,2356,516,678,2780,1096,489,2226,1285,2410,976,754,2309,1225,524,1531,1703,2317,330,1154,2450,2178,1627,2078,1671,994,1616,1635,2529,836,1514,1254,2408,1479,2158,467,2212,1023,884,791,292,1521,141,1187,1583,418,1524,473,2765,179,1034,2129,233,2349,2095,2068,2433,2737,2552,1777,2307,2953,1358,483,2395,2687,2655,749,341,569,62,402,1962,1059,2086,348,1275,329,2319,2205,2474,1604,41,2452,506,493,2505,306,151,878,2764,2283,2220,2834,1964,84,2949,2528,163,228,1813,2050,2961,130,2043,28,2128,2946,2754,105,2405,1262,891,149,161,361,2032,2233,2778,652,1220,318,288,2381,2840,2496,2718,2076,2981,2001,18,1040,2365,2994,453,849,2859,1269,618,1177,2510,926,2566,68,552,2560,2260,1741,1499,1038,2000,2029,108,1522,1955,964,2985,279,2880,388,2309,2688,2467,493,2324,2207,2863,2554,216,1691,497,2137,2812,674,548,1412,1273,2813,974,2535,2806,1166,1823,1623,2256,1417,2545,212,2822,1476,643,2252,2857,1509,2289,825,1810,2112,191,1274,1310,1773,2004,1749,1058,592,1185,905,2845,510,1841,1799,623,1286,2523,95,1141,637,279,2072,713,178,2379,1490,936,238,1723,1661,1834,553,2561,677,370,1281,234,143,221,2577,2097,2124,2832,1354,1613,2293,1124,2444,2018,1414,2005,1085,2075,761,2866,2844,995,137,1701,511,1323,471,1302,1061,1275,1965,1573,124,2338,181,1427,1047,1550,2814,355,2551,2268,1838,845,85,2536,827,2167,543,740,1345,1397,463,44,79,501,900,1949,168,2920,1926,982,2004,1164,777,1770,1077,1663,1044,969,552,2308,1554,2350,429,2737,376,1703,2978,1563,2588,963,160,1377,2549,807,2837,665,2017,2386,2327,855,1064,1789,1097,2123,2652,197,687,2098,1457,2284,2959,1376,676,259,530,2960,2128,1200,1199,2580,768,2019,993,1131,1758,1947,2916,1422,2321,1212,456,2823,2056,1438,1116,575,1348,2999,104,1909,263,2876,1828,285,1537,1771,2430,1049,2419,2577,1524,220,1347,2903,2595,2484,2697,2114,406,39,2558,970,1224,2864,1100,31,571,2463,2768,1103,2259,2806,1936,1395,2189,217,1111,2162,2713,449,2552,1747,1448,1776,556,489,2406,871,902,2743,736,1799,2933,1411,2952,2188,1964,332,3,2691,157,1241,2890,469,21,2755,120,1856,2238,626,2466,686,2079,1873,2808,209,1090,1508,1925,1638,1418,2294,1067,1297,447,2371,2722,1360,1991,1239,1930,2944,2936,1449,775,2688,43,1580,432,1288,982,1664,2943,514,330,2472,1379,1538,2642,1070,2409,2732,1632,1195,2631,315,2578,1286,2104,873,1086,779,2739,503,770,500,1124,580,2206,2830,582,2868,1903,2920,2175,1711,868,2346,2390,1804,544,2653,2882,1418,2997,957,2913,2387,2310,2110,2756,230,2789,1716,1675,2538,1147,2094,2821,985,1857,1054,1885,54,41,576,2589,401,919,922,540,2756,2229,301,2675,2363,1292,1963,1423,2087,491,115,49,25,1135,168,1870,1527,2632,178,2383,232,1008,1575,335,273,1371,488,1207,1605,69,1818,451,1303,390,1965,1180,1921,566,1979,58,2635,6,1011,1002,714,1968,1391,2870,683,832,1694,747,2555,1294,2559,313,1540,1062,846,1886,2401,339,2083,984,32,1844,2548,2543,1183,1960,428,732,395,2217,2201,1875,2456,2333,1039,399,1141,2862,2249,446,1132,1410,81,757,2418,72,1203,481,1002,165,2460,2931,1898,2515,2927,1556,2473,2210,1626,1154,1134,1174,2640,257,1759,2971,2959,424,2735,1692,1137,2191,2136,1156,2836,2633,1390,1828,2643,1610,819,2803,2222,2471,1467,2080,1128,2679,2480,1116,1119,1837,1656,1946,195,24,32,1686,2434,2491,2614,1545,1423,1792,2996,466,219,1640,1486,1832,2842,1529,1175,633,2671,825,1385,385,2087,879,1631,1768,1099,2898,313,1564,2585,2953,170,2518,2226,414,1687,419,1864,336,675,2575,1995,764,794,478,346,2607,167,2026,2024,196,699,2222,1354,1710,1493,2262,1201,914,2749,2425,1733,1726,895,1790,1575,2147,286,587,1370,847,215,1364,921,1284,1956,2998,677,1231,34,139,1460,1006,457,260,242,42,1175,2995,2318,546,730,818,1621,253,1379,2760,1522,2835,689,1534,2449,77,2423,1247,647,487,2272,2270,1253,2448,2233,1673,2186,487,952,464,1559,1092,2036,1468,1602,2034,2205,2821,2250,1603,554,562,1001,295,2409,1718,778,350,2566,858,188,2447,2635,795,941,2276,1581,2217,2266,1249,2197,2468,1717,2290,2025,2170,2136,1268,1985,1443,1214,1548,674,783,2871,11,2124,1887,1916,2186,2406,2164,1797,1259,2021,1246,1647,569,2267,2750,1637,1450,2943,1439,2486,523,1411,1515,2174,2764,782,1080,240,2248,787,1523,1885,311,413,2121,471,1271,2923,1980,868,1239,1082,2048,2742,695,147,2134,2144,1708,1029,2975,1236,1624,702,691,2846,854,928,686,216,2741,947,2008,40,2871,1987,654,2358,1218,2888,1197,1878,1557,2890,1675,2678,185,1649,1464,2751,255,1572,205,211,2968,935,2322,2084,1823,2267,1994,1361,855,1263,1903,1727,1845,1728,2791,1779,2592,60,2398,1229,2932,2402,636,434,2255,1186,1932,1782,285,2661,826,628,584,1370,752,844,792,1866,613,59,1409,1424,289,594,2337,2758,1098,53,1359,1293,2239,1084,500,2882,181,79,2817,1292,663,2326,1983,202,2625,112,1512,1142,1333,2884,2458,258,1281,2415,2530,391,2557,2288,2116,944,1401,1436,1810,271,223,1218,2334,2394,2003,1168,2534,1781,698,1057,89,1232,2275,725,1700,652,949,2119,397,1261,700,1655,2648,364,1705,264,2483,782,2731,1140,2797,2464,852,1714,651,156,2609,903,1172,1636,2272,208,450,2035,1892,1046,2573,1604,1465,2022,2224,1863,910,745,2599,901,805,389,2620,1325,2434,2819,1783,2638,2728,2103,283,2052,1839,2209,87,1299,60,2027,2511,545,717,126,598,509,586,885,1168,2210,2683,944,213,2487,637,56,302,2867,1353,525,531,2880,1709,1326,1293,801,16,2524,1826,1397,2664,1855,120,152,1633,824,1222,29,2334,1795,767,1394,1983,740,2243,1194,1211,666,1170,2338,222,2095,630,1380,887,1557,1628,531,496,466,2440,1111,2836,2715,2752,1480,2285,154,52,1830,303,2977,1718,1865,365,1649,800,2284,1921,930,2223,1387,543,1112,1702,933,1891,1313,1270,1848,2820,837,2275,254,432,2729,900,2930,501,1157,2146,615,1934,2618,2516,1763,1285,454,7,2590,129,1912,2044,2613,658,669,2567,668,325,2242,2648,1958,2602,111,407,2711,1794,1032,1171,1028,1363,326,2168,629,1050,951,2430,2009,1130,1735,2280,853,2909,1540,1138,2518,1303,706,2906,236,996,1859,2767,1723,788,430,2466,1264,673,1068,1022,2690,2090,1000,687,711,463,2435,1372,194,352,2685,421,1614,1952,1297,1403,2315,2837,1080,128,347,157,86,2812,2968,2396,649,2908,1981,670,304,133,1040,2759,709,1988,2757,1073,33,1591,870,2988,1922,2104,1489,153,1347,972,172,2605,2785,679,2060,121,2328,87,226,2811,2180,2787,40,2305,460,2113,1117,2929,2363,1567,2700,695,932,2974,1839,1364,2353,1552,1461,2848,21,488,1798,1607,1859,1246,1936,321,1507,642,1812,2971,882,192,2303,1691,954,649,986,1573,1399,2033,2990,458,2512,1375,12,505,1714,2328,2295,1715,1461,645,2611,816,208,167,1967,1338,1308,1779,2192,1725,437,1143,2453,578,1120,2085,2006,2039,2332,2781,2686,1657,1263,1732,2256,1644,453,439,1931,1765,1518,1336,298,2115,753,2403,620,518,1607,1326,1874,250,2353,2237,2448,1243,954,978,275,441,2369,2521,2878,1930,2493,1898,931,2067,2185,2450,945,735,791,2362,71,2157,2966,2906,2861,1234,2014,648,2913,491,908,1051,484,2132,748,1442,2840,611,1000,1114,1875,142,662,1795,1772,1773,2662,2985,1932,715,2079,322,2289,1278,2310,2347,557,2673,955,2212,2748,2408,2023,240,1484,1533,1780,1576,821,1492,909,1663,1464,1064,2455,2021,317,2513,2048,2604,13,889,2978,460,2420,247,2661,2735,1163,2745,1890,2314,128,1304,2312,943,1027,917,2153,103,1313,1997,2692,238,1447,2495,858,2427,1126,1167,2373,2437,866,2489,1847,2579,1906,49,605,220,1902,280,1957,1924,2236,80,1805,1684,2281,2670,2720,2126,2015,2194,345,2146,2564,2818,2734,2938,2299,572,874,2131,2826,2694,1511,2921,2307,2215,1587,867,934,548,2563,1105,1406,50,1159,2398,122,2417,2826,1597,1825,2942,987,1681,1882,848,2952,2265,377,340,2986,287,2440,2584,1754,811,331,1617,845,2491,2163,2306,162,895,2380,757,2303,213,1245,1569,745,2075,956,1902,2150,2901,401,344,1939,2887,2287,443,1460,2115,2997,990,1424,863,2996,2987,1113,1437,506,1995,830,2904,1588,2372,2905,1321,1961,1801,1560,856,14,1645,1451,485,2621,307,1568,1556,2161,1684,2538,1664,455,1695,136,812,374,109,1437,714,1644,1128,403,2051,156,2638,75,2515,461,2373,525,1592,2574,1805,332,172,184,733,1304,2624,1284,517,1515,440,1036,1352,2834,2744,537,2493,2219,2173,371,1935,198,1748,1613,2460,430,717,659,2476,691,1754,1068,1236,2167,442,853,1775,1360,1359,835,2771,1215,1139,1331,1440,880,998,2857,2689,2565,2247,2354,945,140,739,909,310,273,2948,481,2567,1384,1362,2568,1212,595,1221,2546,2190,2061,2215,1919,202,960,2950,966,265,1173,2718,1491,1985,380,2716,1433,744,1622,1549,2853,1357,2277,338,1546,1509,520,2778,724,1472,302,2197,1496,2656,1118,2445,1041,1959,660,1149,2989,1585,1929,1927,1088,520,522,199,860,2396,559,1287,2472,266,2053,1818,413,2721,1414,424,2002,1683,1642,574,1893,130,834,1339,299,1251,2560,661,2865,2187,2326,1737,2562,2481,1888,2438,469,878,1915,574,2576,2342,2550,27,0,1662,1407,797,2707,2586,1584,1078,177,2570,2976,508,2835,2724,968,2907,1074,269,2141,2318,1593,2135,2193,929,1586,1314,750,2634,1490,2336,1021,1923,410,1502,561,1432,1978,462,319,2798,1920,1257,1651,138,1938,1421,2787,386,2030,1887,2517,2805,2553,2501,1177,2503,38,1449,1734,2501,159,1746,1980,2156,1756,54,657,2746,1587,195,1618,62,572,1294,1892,616,2964,1145,472,121,1679,1046,1091,938,2298,217,1544,2439,1206,1504,2080,1595,2392,2317,1318,1230,828,792,23,1570,1090,1007,2292,2049,1052,1685,91,533,1634,708,2555,1933,1013,2831,422,2108,119,1908,2992,911,1017,1696,256,1151,2152,1162,1150,1483,274,1087,450,320,2723,383,2940,1953,127,1063,226,1845,278,1132,1477,1910,2263,1560,2456,591,2749,1159,293,1058,934,2769,1650,225,2064,1876,1785,838,1957,758,2514,588,358,2116,936,24,521,255,2348,502,875,245,2733,1043,2818,1106,1192,2846,1729,1108,2786,2350,1056,1673,2795,1122,0,1974,1944,1328,1025,2723,2794,692,1280,1427,468,378,2847,1756,1988,116,365,1920,2127,131,193,1904,2603,766,2012,981,1024,1047,1189,1166,2111,112,2011,15,2761,2376,1195,151,634,2969,2665,1055,1342,1970,843,2804,2694,2777,2262,664,1535,1739,1653,923,892,980,1539,2507,1996,2539,1158,261,90,1736,1989,1407,2065,1503,877,738,2497,2362,979,911,2569,1145,2792,785,2949,1004,1077,2071,309,636,605,286,1759,2219,1955,2932,1481,1680,1202,1563,1915,1101,1248,856,324,1227,1596,2582,1654,681,523,2220,2336,2966,2646,631,510,308,8,498,2510,2059,2565,1136,564,1468,694,1472,2690,2619,1696,1328,1454,1220,2198,727,438,593,10,2291,1209,1462,2623,655,1700,956,1846,1395,866,2280,1355,1398,2999,2389,2120,1636,704,601,2370,730,1389,438,2469,765,1922,2699,1614,2183,1788,709,1063,55,1031,1973,1502,2020,2587,1243,299,2631,1127,2637,1811,1200,1697,2147,1746,2838,1279,2093,2940,2714,444,859,1565,1042,1485,1785,1341,2677,2918,1062,312,1894,2258,789,1856,820,2786,518,899,1792,1592,228,482,722,2287,95,550,603,1014,2588,1926,823,58,2703,1825,1127,1788,2285,1579,1273,257,2579,495,684,2876,1256,590,415,1935,176,2365,1975,1300,2343,2799,1067,2641,2312,946,169,1997,1781,28,1477,2766,1161,1425,180,2246,1760,2165,260,246,214,1235,2547,1606,1278,2649,598,1520,2264,1073,499,1255,2127,2096,1398,861,2689,2376,1536,163,1670,371,2500,2519,1725,529,2356,1167,816,2179,1822,912,1608,1102,2670,579,1100,160,334,1741,2313,1343,1194,2611,2924,1551,314,241,1233,1899,70,2604,646,2435,2873,2614,288,17,761,1796,149,603,2850,333,836,1841,1366,297,2879,452,2775,549,1060,1923,2349,2864,1498,2775,2716,2539,658,1446,987,1645,2254,2540,2831,2359,392,2600,2364,2937,1758,1719,1815,2571,2261,2805,596,2533,560,2138,832,1391,314,988,2206,2908,2269,2193,1702,345,1631,1335,144,2757,1143,786,2551,2808,1402,2581,2107,641,358,2629,2161,1012,2387,1583,1316,1665,801,2320,998,200,2194,849,1594,2647,2902,2,1638,906,65,315,1914,408,282,1594,12,1149,1486,1081,1565,1992,2181,1232,2800,2102,434,2492,1413,1193,787,2323,1933,2150,1344,373,2018,2367,2900,2108,2793,1770,137,2351,339,1976,655,1689,2370,746,710,478,2630,267,141,1032,728,2627,206,625,566,2047,1653,1054,2114,225,1824,2675,2178,809,2961,2188,1804,2615,1654,718,85,1918,875,2753,2302,2166,1374,2502,1438,230,600,1658,38,402,1396,918,1816,2561,1561}

    {1161,2086,2842,449,2981,312,1534,324,175,2001,2669,1987,1139,1750,1990,111,2185,812,2535,461,1329,458,2580,2642,2180,806,35,2257,2509,634,1608,2796,1429,2660,1937,2399,1310,2065,1334,1377,416,1724,1541,2600,775,974,11,602,918,1244,2360,972,2477,2875,2748,1744,869,1803,2232,1890,1164,2620,1884,1249,1801,102,1690,919,2046,860,810,2404,2658,153,1320,2915,100,150,629,1525,2681,2633,1123,2372,360,573,2644,2856,1372,829,1793,1482,426,236,1098,2243,767,1748,2584,1591,1851,492,2325,2258,1676,1981,420,839,2627,2942,2958,1223,1093,1580,1321,2333,1734,2868,1820,1918,123,2888,2572,2214,2854,1442,2461,1940,632,4,2,2717,1019,833,2495,1999,1651,1202,2169,403,447,1598,1561,2610,1217,445,1014,2892,534,2117,14,1546,2755,2917,350,2885,448,1231,1732,1388,2616,1612,2523,1716,594,841,818,211,803,206,512,2278,118,1019,2597,1234,2020,1504,2485,139,1857,1137,1495,1465,131,2673,1205,570,2480,2341,558,1378,7,1350,1989,877,1533,259,903,393,1602,2956,1648,1851,1306,47,2231,938,1814,1584,2388,2743,1817,1448,781,1072,92,483,2925,2977,2058,721,2006,353,2467,502,218,2296,1907,2881,2788,1791,2789,1819,1035,1883,1009,1895,239,879,2247,2045,2171,2508,781,942,873,1106,1406,244,2176,1506,1400,906,2616,1769,2540,2213,2983,2960,2537,2844,50,1749,2750,585,67,579,2066,248,2332,1868,158,391,2898,2416,1603,1905,89,465,1624,346,2825,1817,436,2909,1415,2145,1867,405,1369,1248,1681,2784,1744,2438,2982,697,272,834,2504,1837,2216,842,2069,2883,2433,233,1713,333,1753,1389,1061,5,369,772,1967,817,1765,198,2935,1693,1445,134,2983,2936,1301,2762,2012,707,544,1946,1751,2679,2824,2145,1844,2259,1928,417,1095,2173,1829,283,1622,1207,2407,1677,632,429,2160,533,2091,2497,2209,672,495,2492,1835,224,1846,2574,349,1470,2594,2218,2045,414,2843,1709,1962,1947,2804,1739,1836,1849,475,1640,1382,266,790,2339,1900,774,2790,2676,1505,2845,1186,1358,589,2345,125,2085,2713,2412,2963,171,2602,1840,560,529,976,862,1348,796,204,962,1428,2816,1742,1044,2674,1916,2993,2055,1260,2896,2066,1643,176,352,2321,619,2175,808,1876,2487,66,685,2589,2401,708,2092,591,820,2304,732,2744,1455,1034,1572,2776,813,541,748,2196,1743,1767,2795,1001,823,2499,148,1272,2624,2005,513,197,1083,554,682,1762,2143,1428,2245,511,327,1221,967,1011,756,1791,1314,72,320,2421,2819,1699,1683,2171,802,2463,2496,914,1187,2877,1510,2179,1488,907,2100,1627,1026,2196,1639,1242,2765,1659,1399,162,735,763,612,2863,1721,1192,2894,897,723,2770,2200,2998,2650,1689,1904,1960,1847,227,1949,2777,1724,1353,1778,928,1525,508,1216,896,2867,940,351,1562,1298,204,186,210,1463,1312,2594,2660,1371,366,2101,2457,912,323,2375,2378,2122,2473,526,444,1808,961,1491,1537,337,2728,890,610,1970,2907,1648,2562,1507,1993,2509,123,1055,1015,778,1193,2667,2886,2051,1245,975,1896,771,1530,1731,1165,573,616,2947,2658,2912,2073,2297,826,386,2238,2732,196,905,2155,1944,20,1025,2905,1215,588,144,840,2531,1972,2766,755,2608,793,650,1482,1443,2494,800,2772,1667,1666,1836,477,182,2158,45,1777,1776,281,829,1931,1300,235,133,317,675,1832,1831,2329,2137,2283,2810,865,1317,2342,922,2101,1305,2848,1420,2792,1757,1053,2397,2797,421,1526,1298,1162,33,1835,2447,971,2412,1497,1309,2469,2793,13,390,2941,2474,1605,2477,1678,1085,2464,234,1152,1523,1240,1740,2802,1966,1833,207,2405,1735,435,2368,2556,2016,2626,796,2415,490,2059,26,2316,2131,180,2331,98,1488,2674,2063,1632,1913,23,958,382,1078,1526,894,1941,2720,2072,869,2522,609,1615,2680,2074,1184,1081,88,201,1619,2731,2159,2730,2511,2914,1514,169,2172,1016,2622,835,1872,2700,1775,199,932,2152,2847,519,653,1396,1324,268,117,937,1367,1222,642,1417,307,1784,2941,427,1101,98,1356,625,1367,2687,724,750,1201,2727,1865,1291,2671,2512,1227,1250,568,2366,1094,1908,656,1641,2234,97,728,2428,282,2636,2702,2634,1,2705,2622,1911,1669,948,355,621,494,2225,2084,1954,2986,2089,2606,742,412,84,375,2237,2897,428,2248,1571,2726,2798,2426,1547,2252,1447,607,2414,1238,1807,1722,135,804,2598,183,433,2636,512,2657,292,1819,2057,937,1282,1381,1543,1393,1495,143,794,294,967,1577,2126,1503,1897,2141,1697,2628,2015,2649,756,316,2011,113,361,1669,1659,212,1555,2089,2591,624,1979,1802,1431,1542,1530,563,291,2972,2513,485,1497,215,838,1665,2695,2142,983,824,2861,164,861,1037,2654,2603,615,1951,1535,872,1380,2471,979,871,920,46,2040,1578,575,2933,2962,711,1121,2311,254,1942,2874,1209,477,538,2190,2047,2282,2708,132,354,2446,134,2393,1288,720,2043,2225,1172,48,232,751,827,91,113,2082,2352,56,1596,2884,1909,1290,705,2894,1727,992,110,1751,2537,1484,1786,37,2038,1559,1494,1393,970,1877,993,2484,2984,422,341,2470,1745,2526,841,1301,2741,1050,671,532,696,896,2107,1951,1501,891,1352,2770,889,680,1623,2250,2976,262,2681,857,2727,803,1113,1475,1309,2037,1003,2099,2827,1882,445,1715,2270,1466,638,2355,2057,702,2829,2664,336,2255,1012,271,1446,2279,2322,913,2946,773,237,1521,2118,2218,633,1319,809,1843,379,1462,154,367,2088,2945,1762,2097,1074,2306,2520,2041,1390,1939,1327,678,1306,1135,1990,1283,2783,2763,1692,2904,671,1671,2299,2612,2122,2452,2036,173,1277,2717,2715,1767,2300,779,1948,1889,2536,1686,1345,2000,1230,2529,1473,1208,2807,1211,420,1496,2106,2504,2613,2314,1237,1017,1688,2841,2234,258,1228,1996,2458,431,31,805,1474,1567,893,224,1676,2771,882,2696,2154,663,1977,2729,2801,765,631,394,1422,2502,1738,297,1459,354,1595,2377,959,1768,722,1066,470,2521,101,2008,2760,306,2546,814,1115,1156,1763,2038,1033,581,2759,746,1015,203,1968,1419,1854,1589,710,1233,785,30,1346,1489,965,88,2637,920,1160,2830,2575,2261,3,2374,51,1258,2596,63,1028,2266,2643,373,1405,726,897,564,2621,296,1096,2557,530,1097,1531,673,410,1543,75,690,2268,2763,2149,387,2037,646,1510,926,1065,1589,2955,142,2346,2486,2330,252,1473,2392,977,2034,1755,1241,1740,1122,1682,1140,2231,423,1344,850,941,1720,2768,699,108,2470,1138,2918,281,2719,184,2344,2451,90,37,2534,1712,2439,651,606,474,2892,1815,958,2446,1109,2508,1755,293,2591,1701,1356,1252,509,557,2790,309,1672,250,1033,1228,188,2870,190,2192,2023,777,1814,78,290,2468,2335,1793,397,1550,244,116,606,265,2499,182,1342,586,1666,1004,2586,2227,1880,2025,1685,175,1463,2988,2699,2980,607,627,2925,1365,707,965,1036,2666,1237,1711,815,2110,2100,1590,2444,2601,1797,1626,201,1079,739,2593,790,2062,2533,556,1719,2302,550,1051,1690,1322,2442,83,814,192,718,2292,2419,2229,2780,2641,929,1223,1410,1327,1520,1244,2014,1258,752,1401,1104,1518,2815,939,1961,1264,1553,227,1182,2895,2800,822,851,2134,848,1125,145,672,2813,1129,337,1005,1806,759,1330,1808,1738,2747,1331,1601,92,2709,2498,1501,2311,1008,2379,2506,349,1383,2801,1800,2695,1956,1170,2524,989,270,1021,1219,274,1802,2608,1478,1385,2951,1148,1169,1453,1953,899,1368,499,772,2598,734,613,2839,1365,1312,2482,2421,2418,2046,378,425,69,1349,669,379,1125,583,276,2475,2623,1945,2606,2979,426,327,2200,743,122,2738,347,2098,753,1387,300,2651,2490,2436,1376,2910,542,2475,276,1452,2305,880,185,253,2070,357,650,2139,593,2296,1436,1798,904,1020,1848,187,1155,2151,1764,2232,600,1307,1421,1403,179,985,372,1528,1963,898,2042,1862,1333,1070,318,1026,1291,1658,546,874,1519,935,1383,2736,305,2428,2587,916,716,1027,2207,1694,1117,2169,2369,284,1173,209,1766,2632,1330,645,1780,683,881,2576,476,659,1056,599,2295,542,1479,2040,1329,396,2889,1662,685,462,99,19,1420,725,2896,1929,2911,731,1088,833,81,2822,1674,1357,915,1105,1821,2102,676,328,1917,2191,1444,1071,2704,2951,187,1373,1842,2799,628,2919,2923,1829,264,1268,1620,76,1863,475,2437,241,2300,1229,2007,399,734,1369,1912,2841,2544,908,2852,2630,2850,1883,2461,2155,1259,2382,2684,762,2241,2347,1431,1107,1392,1274,2263,1071,335,1937,667,2708,2052,1205,2762,763,681,2725,1574,664,2395,784,2714,76,1713,1350,1338,2781,103,540,1843,2803,67,2541,1679,538,1334,473,901,539,2400,1729,1796,1045,2130,831,2811,2139,2530,237,2058,1907,1620,980,2133,1609,670,1188,2135,504,2995,382,207,1568,269,2919,2740,2078,1325,381,1441,2454,2183,2549,2090,2644,784,2869,2938,22,2639,2478,494,1065,1871,1189,2361,1615,1030,2736,2204,1774,155,2099,2516,608,2214,1095,2693,1083,2668,287,348,1031,1745,2872,2939,52,152,514,2659,2242,29,1400,1910,480,2706,2337,1084,2081,2251,1349,63,476,1456,1254,1869,77,2885,1112,2849,1487,1582,1831,66,393,2073,995,2385,2168,486,2682,1730,1827,2558,1179,298,353,1853,1332,1045,2881,2965,2286,2055,1322,942,1160,2950,2172,2297,1069,2617,577,1549,93,971,2133,1924,876,2142,2071,743,356,657,1852,1022,2924,394,2910,771,1787,2096,2195,1295,2371,2294,2117,369,1877,1005,2615,245,1881,749,1104,1466,1256,1129,118,2922,219,2056,2244,2381,2839,166,630,1315,1351,1618,2301,1155,235,1991,400,2745,1899,1351,2103,1984,2375,561,1276,2866,2132,1409,2327,1874,1290,102,536,1566,2794,844,1611,1544,2891,2877,2199,2223,2962,2380,262,2599,2202,338,2187,2945,1753,1157,516,1402,416,1901,132,597,2049,2865,924,2556,2359,2730,697,1630,1786,94,904,385,1925,1873,2445,1308,1733,129,680,331,1577,2930,719,2957,1858,2074,2507,1272,1736,1532,883,231,2719,1255,764,2582,1834,2541,2500,1552,389,1637,1439,1871,1850,617,1109,2140,515,2260,2954,587,1009,614,2916,1862,2993,2874,1699,2384,668,799,2441,1722,994,1581,2393,2301,2550,1760,1698,927,2054,2245,101,1481,1778,2970,2274,1840,1266,2682,2257,2112,1880,360,2926,2914,1253,1174,1317,409,36,1119,1809,1181,1147,2858,425,2592,2002,2481,1842,2313,1757,2163,1048,872,231,1252,2003,576,1302,2202,2568,1452,247,2340,532,617,2367,1717,2887,2364,1373,459,191,205,146,1891,2221,2937,2833,1499,1416,723,962,870,946,690,375,881,291,1806,1969,2422,2315,563,1975,2669,1426,1547,952,571,73,2316,627,1188,2281,973,1475,1905,2031,479,1849,1180,2383,1704,2149,2527,2605,1492,2774,863,2559,59,1886,1860,80,656,2823,999,2105,744,1412,1024,2817,1598,1182,243,1316,1099,689,1057,480,815,1305,1911,482,2053,2397,189,565,86,1855,2698,2578,760,2088,2686,127,362,1323,1600,18,720,256,2746,2402,171,2651,1617,2208,1984,2091,2855,1110,135,492,1554,1123,583,2120,2483,1,2935,1548,497,597,166,1184,357,1971,2454,1646,886,2712,1153,915,1710,1529,2325,1214,1706,1977,2413,2394,798,1761,1612,1165,643,1878,1728,1743,984,601,742,243,1471,1590,2113,2782,2153,2701,2683,2121,2044,1695,2992,2828,2893,372,45,2249,847,2028,392,1500,155,2451,997,96,981,1861,44,1038,1429,888,693,1469,1513,1527,16,440,565,2476,2069,2825,1668,535,2130,2612,2761,251,1532,2118,1340,2105,20,2903,407,2050,638,1198,1914,2182,545,2693,1176,719,1444,2859,396,1052,1952,2917,1769,1384,22,2776,582,788,2490,2926,804,2407,64,688,1191,94,2414,2654,2224,1824,1413,356,1134,1634,1682,2869,1974,1938,931,996,1277,1388,640,277,892,1660,1029,665,2655,641,2982,2358,578,2181,2956,1657,1260,1144,534,703,2465,1660,2457,1010,1888,1794,9,417,1087,507,2827,1086,1196,1884,2849,2677,301,2948,662,1576,963,2843,1901,2712,2082,776,2017,940,701,2279,1647,639,2990,1450,1720,2684,2320,2809,2357,927,1108,1208,949,2274,1392,2782,1183,1018,1315,888,2177,559,2593,2596,267,1752,114,1213,1060,242,1545,581,983,939,1954,1287,2271,924,521,1343,528,55,2590,61,126,303,991,1639,2304,1295,558,1721,415,1435,1747,319,474,515,1178,731,2531,1280,1688,1571,2330,1998,2528,2767,916,2751,174,2042,1341,2646,930,1893,200,715,1419,2441,2013,1142,1986,2482,1198,2227,1625,1894,1378,1091,2625,1199,604,2382,2667,78,1611,1879,2527,2125,400,2503,884,611,2254,2570,1803,830,1852,2170,2619,562,110,194,343,2119,2583,519,1585,999,1861,1833,953,214,295,70,467,2525,2176,2010,2323,2106,1783,2692,2785,2973,2378,885,2411,751,865,1041,2156,990,793,431,618,2851,74,2522,2459,2009,1270,351,1319,1283,857,2368,917,1456,1643,96,1900,2273,1730,2436,359,2013,551,1179,1625,1432,703,1103,700,2351,2246,2144,1121,1528,527,609,1324,2972,1536,26,831,535,2138,1708,2432,64,1426,2725,464,1881,2860,2391,864,1895,2081,368,682,1269,2271,1943,2987,898,585,381,2204,411,2666,344,2165,577,635,2899,177,2663,1043,2174,2609,1470,1089,2273,275,2585,2265,1467,2109,1766,2404,1670,2824,342,2832,73,959,1982,1927,599,1687,296,2485,1811,251,1478,1628,1787,1146,1197,2067,2413,1433,622,1471,2543,83,280,2652,2498,2895,2854,2129,2742,2354,310,1459,1830,2973,729,2663,2251,822,1340,2678,2657,798,802,1597,2911,2094,886,2774,395,568,164,2532,97,1196,2348,2542,780,639,2277,770,2927,321,1203,1210,82,1978,2308,1487,1629,119,1737,2955,644,193,363,1445,551,1190,2571,1959,1992,82,2340,294,2853,446,1972,1578,2662,2734,1707,1158,2385,2479,2928,1092,1630,1382,115,1337,1434,2710,1386,1812,2779,1668,1574,1971,443,1133,2399,867,316,39,1558,1251,968,738,839,2705,947,136,1821,1897,2123,408,1652,2506,470,2855,1262,842,660,2201,2618,2276,648,1131,2269,2236,1171,961,589,623,1707,2967,2431,2573,1023,1076,2478,1247,795,1296,2111,2360,1279,2041,2526,2054,2583,1680,1191,774,807,894,2965,364,1505,907,2505,837,363,852,2628,776,1381,2278,1355,1771,1928,145,592,1332,2329,762,1948,2958,2721,2022,953,517,2814,1712,1282,8,36,986,2897,2319,1039,619,1394,2293,1667,304,1582,1453,2726,1784,2639,1020,1633,2062,2514,9,504,1541,2967,343,435,1217,698,1919,2032,1076,1250,1018,2377,1226,2856,786,840,1405,701,140,1107,2701,42,27,61,1178,2068,2162,1867,498,2093,729,2389,876,1816,1706,2076,1013,2177,1512,950,1593,1493,769,1950,1003,2157,465,1485,883,736,289,2922,325,2900,2816,2520,567,1016,35,955,1742,2710,2035,2796,621,2957,342,1569,2443,334,1731,694,590,2420,1311,437,2860,1010,1151,2291,1774,2339,1629,705,1610,367,654,1126,2934,4,726,821,472,17,555,1434,1609,850,526,210,2581,2465,2915,1219,106,1049,721,2964,183,2411,1973,524,1082,925,1066,1235,1146,1917,1265,635,2028,2352,1782,2077,1148,2286,278,2883,2442,419,418,1265,1204,2417,2240,747,2462,2939,1646,248,1511,1555,1693,957,933,2828,2553,1661,1838,505,1120,1374,1296,1764,223,99,1163,159,2083,2740,2672,1950,1564,2572,1986,2235,366,114,2494,2974,2891,1144,2198,2030,249,1257,1976,2151,541,992,1336,1494,377,2626,459,2216,57,2706,2545,1704,229,712,1216,2213,1761,1508,1672,436,1994,1789,948,864,846,2031,161,2668,2010,2929,2221,1600,706,263,2934,2629,2873,1457,1386,1807,1966,261,975,2070,2462,2519,737,1866,2852,2784,1969,1934,1454,966,2680,1474,150,923,2989,503,1213,755,1519,1225,693,2921,1601,2228,405,1588,1102,2140,2228,1999,74,1115,626,2902,2024,2345,2426,2290,486,2449,614,457,2656,851,1551,305,2703,272,2665,2092,2063,229,555,2788,537,1185,1896,737,2344,441,2386}

    2772

    242

    Returns: 186651020

  120. {2153,1449,2910,805,1641,2024,2449,546,1001,2967,2734,343,1918,2919,314,766,649,315,353,1484,1082,2222,2238,2188,66,1757,384,1769,2793,1976,2130,1916,2117,1613,1315,2557,595,2690,2224,367,2695,807,2117,2479,1778,633,1735,2230,1536,6,2158,2235,1651,958,493,2723,127,757,2744,2988,897,30,2107,1435,429,558,2839,829,2064,2911,902,1958,2733,1605,951,1007,169,2431,2628,1804,824,435,960,2700,1636,653,909,185,458,1867,1190,266,830,1651,2137,481,1771,2860,1987,1107,1547,215,1188,1538,2740,860,2069,560,1726,2248,917,2128,2098,580,1007,937,952,1937,2756,124,449,510,1802,1341,118,2560,2354,236,651,244,2387,202,492,914,755,1777,2074,1291,2328,2677,1037,2659,2895,2025,2940,2678,2857,2345,698,1889,1095,2955,2699,325,54,2162,1049,2335,1268,1588,438,2058,1072,926,2244,927,2413,1893,663,505,2584,1243,508,617,290,1010,1463,769,2856,2673,2144,1732,941,1005,555,1218,221,60,2965,2316,287,1521,2003,614,1098,177,1334,2326,1575,2852,181,2889,200,2429,2452,2400,2901,2553,2870,652,235,1000,2805,2818,917,922,1249,1029,1973,1442,2327,2196,1092,387,2133,855,2127,1261,977,2927,1965,2334,1542,723,2121,1306,1378,1011,2328,2159,1419,1704,732,2658,431,257,828,2506,2768,2012,2964,1525,2967,239,2455,261,802,2814,105,2272,761,477,1119,1661,2741,1166,1195,2475,2217,1653,118,444,1695,2248,624,1863,586,2564,263,362,913,2146,1871,2110,804,2252,2607,1990,949,1879,2680,933,551,1289,2372,136,246,1784,39,1847,2562,1694,500,1407,1902,2761,1061,1441,935,2973,1285,907,2576,585,517,860,908,1236,1786,1725,2091,1263,469,1518,125,1214,1276,549,177,1400,1390,2533,1962,762,1948,2699,2597,2262,945,1727,2554,2548,2960,1263,904,656,952,760,360,701,435,13,35,1672,2167,2433,2430,223,507,2078,726,2075,414,1206,2113,425,1610,1521,2887,1593,226,2048,1581,373,639,656,154,57,392,1264,2216,1401,1081,806,2217,92,293,2891,1490,2410,916,654,1424,2913,184,1257,1561,2854,1550,990,2971,745,1551,2138,1047,2385,1199,431,696,2011,298,2472,1094,739,504,2567,1177,2626,2692,2220,405,2536,1080,1691,593,2195,2526,1848,635,302,2415,30,2499,1779,1217,2206,2949,1432,170,2005,2876,2649,1203,2619,479,1933,534,1729,1608,2319,297,2281,1550,1246,2418,128,1659,1163,873,2314,2625,171,2670,165,957,1139,612,1387,1804,2820,1677,344,887,2904,2373,1791,565,1075,1004,965,1615,2758,403,770,792,2437,2757,2551,2520,1313,2742,2073,1128,2534,405,2445,2590,941,1776,288,2309,1922,2612,490,1366,16,1706,1452,1586,618,2958,1274,2522,7,2094,2684,1719,2177,1795,1035,1246,190,885,281,1542,1467,1532,1952,2474,2858,2939,2280,1666,2570,1038,52,151,1807,2903,1835,984,548,5,326,314,1688,2209,2474,1580,541,1433,329,1520,426,907,2044,1255,1017,2470,975,1137,2814,1152,1789,1461,574,495,2495,1029,2039,821,1127,1887,259,2219,687,2052,1991,2982,2292,60,2587,486,294,594,753,2654,632,771,147,2582,1781,2382,1850,2007,1113,2260,325,756,2704,291,2549,979,168,2464,2759,158,1809,2458,2348,1362,485,212,1009,689,1598,2460,2395,848,1300,82,2731,2697,2696,642,1578,1810,78,1787,1365,1855,1929,1657,572,1210,1849,1942,694,2202,1024,276,600,2333,1221,2017,1702,2180,1869,1962,2941,2346,725,243,839,161,1048,609,1773,2152,2037,2581,320,2163,1909,1012,690,2389,1465,2910,730,785,1133,1515,277,1791,2723,1897,45,1399,432,621,2494,2739,681,648,2401,934,1102,1714,2484,2737,434,936,716,1002,2237,2271,872,507,2062,1842,1949,2426,2156,5,1472,379,842,1482,2973,2347,2912,2243,645,977,1359,242,2856,1960,512,2645,1491,71,2961,787,1202,567,2020,1619,2199,1667,786,2465,130,2869,494,1494,1734,1655,207,1558,2435,443,1914,144,2529,1214,958,39,2481,2862,1742,772,963,2127,2307,988,580,2374,841,2003,1486,2422,293,70,1954,1522,2441,685,1747,608,2344,2502,2859,2054,2332,1381,1685,1774,1335,1831,245,2542,569,705,1000,2103,2791,2511,2180,2860,840,784,978,2213,555,313,1302,2652,2366,1913,673,2336,509,2359,603,2086,2901,962,201,31,2991,557,1034,2912,1819,2528,2141,2142,1951,2785,1685,265,37,117,296,477,2932,2042,1198,2544,956,658,2015,51,2194,1370,588,883,2719,1875,2516,483,2022,2602,400,401,187,2312,1729,2131,2440,718,2983,1932,1700,1067,2568,928,64,2361,616,2168,1160,2145,2621,740,2281,195,1183,1981,2422,2249,1973,112,2313,512,2176,636,1671,2005,1906,183,935,614,2921,2465,9,778,1514,1762,2716,2925,238,1483,607,2357,1172,1882,1603,2599,1936,1660,1338,1721,684,1679,2596,1209,1876,1167,1474,2554,1737,638,769,2866,682,1934,2221,1602,2752,1140,73,2984,2384,2157,1231,1943,2935,2591,406,1999,639,591,340,2185,2080,1126,783,755,1935,66,2828,2269,2678,1901,770,2369,538,1195,2653,1921,871,2511,719,1569,556,996,1857,2236,34,1469,2843,253,1760,2593,1945,103,2613,2599,1767,2099,1284,2128,1496,1681,1528,1646,2977,731,1872,1517,1327,1002,786,462,84,1689,1991,1420,2558,2882,2874,737,2592,1899,1041,1290,1390,1980,1515,2747,330,2849,309,1042,1329,827,2689,911,2772,2687,2684,199,2952,12,147,1929,1169,201,1502,2136,813,1286,2809,2512,865,367,579,1367,2121,2002,445,660,1400,2492,645,2689,428,931,1797,962,1900,119,207,335,1090,710,1258,2,2178,1301,1954,1654,2368,747,2462,1093,407,2594,1087,401,2867,915,1244,1608,2473,327,2028,1260,2286,2069,294,717,2744,959,303,1858,2519,1531,1509,1634,2241,2842,2246,2750,451,2111,682,1996,1165,540,1372,2120,123,1759,2301,866,2183,550,2735,1294,1476,514,787,2676,2752,1979,425,1047,2936,1523,1567,100,61,2034,1240,2226,2313,402,2387,1664,654,1488,1442,1548,983,2892,379,35,1841,2505,1182,911,158,1983,749,2884,2875,1999,2476,579,1763,409,2076,2160,2008,113,1129,1848,1396,729,930,487,2223,843,2774,2595,17,692,31,1559,2541,1933,2947,2170,1770,2601,1690,2340,2547,2013,1205,2716,2375,2187,2419,2200,2018,274,2164,2324,2682,525,1607,707,2571,1830,2393,1628,2544,1484,511,2150,210,1470,1516,61,292,2414,2477,1310,131,2622,1923,672,2207,629,554,2040,2402,128,2254,2559,796,2625,2513,1193,2083,1741,2239,1224,1883,69,376,1378,2948,526,2525,1081,1606,1682,1185,2348,448,1076,2831,1547,1524,1248,99,1251,1106,1499,2177,1156,2578,986,1601,460,1208,2969,1710,506,1071,2890,1566,1262,2065,409,942,1993,1813,1838,2924,418,634,2304,1690,1877,2404,1322,2234,523,893,1322,2446,578,948,703,2214,2917,2250,592,2489,798,2574,2907,1432,256,1886,2753,2300,2605,2037,2181,2291,1775,1097,906,32,2737,116,1158,2675,1750,2639,854,2242,1911,2267,2535,1083,479,1,1675,1502,1368,2933,518,2275,792,2712,2145,59,1319,1763,1292,531,27,2570,23,586,683,535,1158,1131,1467,700,1998,2298,89,1492,2510,1904,1638,2943,86,1592,170,529,427,563,2035,1617,2905,969,1743,2451,363,850,197,1379,153,1945,929,2028,1699,377,2397,1890,899,598,1922,1411,2151,2896,1223,467,1908,2980,2062,636,695,1336,2156,2002,2083,532,2306,2108,2199,2207,826,413,1347,2835,2000,2417,2160,1436,1444,1439,547,1902,62,2136,1186,93,2729,2510,2477,1909,1587,1653,1291,1323,568,2899,444,1874,182,1245,417,708,36,2824,905,1448,119,1716,1326,2986,1339,605,1470,1877,1058,899,531,2377,2389,810,2885,2149,2056,1193,322,2282,1446,1519,312,1336,955,2208,331,838,1891,2974,1090,273,2371,2681,0,2342,141,753,1028,2965,608,2520,1196,1495,85,794,969,967,1776,1744,791,797,2364,2833,1036,2735,1751,2066,70,2523,1384,880,1559,1189,371,938,2044,2154,950,1412,2983,411,527,1661,2804,2589,929,356,1345,1415,2141,2192,1062,731,277,562,1650,212,728,2883,2326,1838,2311,393,1801,1655,338,2458,306,2258,380,324,819,174,1982,2528,2305,2897,540,1019,996,2027,411,2114,2471,490,2025,186,2909,1623,1526,225,1728,2261,1703,1709,105,603,2101,1642,548,2937,2725,2825,440,835,318,1775,2789,2088,96,2379,1468,369,2081,191,2673,2339,2899,1755,1433,953,2053,2650,2023,149,306,1633,754,2904,75,1213,1827,1985,2116,418,1493,2896,1836,99,1793,1490,838,2491,2420,1272,2093,1614,807,404,488,2852,262,205,998,2821,2466,140,1931,2807,582,748,189,1884,1530,544,1705,2320,2740,2165,2795,1203,2501,520,2428,357,1162,1222,434,1394,2926,1957,728,2279,486,2032,1780,1918,719,1857,334,1388,2663,2288,28,1526,459,846,2067,1365,2066,34,186,1974,1130,2386,2339,77,258,206,1856,2849,362,208,2543,2784,2355,934,2850,1870,920,1235,2096,2733,957,1181,1564,184,758,1439,1859,1356,485,2016,685,1221,1055,912,185,1698,1260,2398,1852,1476,1296,1050,463,776,2131,1422,568,1691,1555,19,1247,940,2137,1248,882,1220,2767,2381,680,2629,2027,1138,695,892,1545,735,961,1327,1270,1584,2631,1748,2540,1822,1937,2038,1668,394,1684,1597,67,2233,270,1252,53,1967,1136,1446,2359,1703,2015,537,1192,2228,2161,2795,41,1872,1888,1566,1238,1953,2501,1415,1130,1053,1557,2738,2997,1295,1806,1563,1551,2700,2541,2648,1594,2008,1580,133,1012,532,2765,2469,450,135,1149,499,1713,340,2527,281,1211,2440,1111,106,2903,1299,305,2539,2771,1357,191,1759,569,2088,1812,2702,946,2835,2233,104,391,2933,1947,866,1744,2966,780,2662,307,393,1354,44,1996,2559,1842,206,333,2998,194,2760,372,836,2365,2284,1074,2620,2276,1856,1565,2803,2504,1519,2402,2377,2893,2329,2197,10,228,2215,2589,2243,2875,589,2916,140,342,1585,2569,1148,451,1637,1289,2727,1460,2356,1385,7,1672,1312,256,1693,1779,2676,1823,2898,1293,478,2560,2698,2800,2196,1525,1458,1477,2376,2608,1576,308,561,1251,2641,868,714,1073,2400,736,2329,759,64,862,1168,453,53,2872,502,354,164,688,1497,2642,1859,1455,1615,947,2393,23,2572,760,2032,1577,1347,910,852,2287,2981,1833,1386,858,2748,1940,1788,1706,420,2164,1109,101,667,1633,2914,1948,1428,758,2662,2338,947,1089,556,2808,714,113,468,1781,1107,966,832,676,2471,1403,793,752,1645,2830,2171,829,423,436,1743,1686,2282,254,441,416,1232,287,1556,655,1063,515,468,1311,59,1160,664,2370,1825,1084,79,295,2613,1735,610,1483,318,2151,1959,1204,511,2642,1449,303,376,1149,148,2210,1369,1975,527,1184,1628,1151,2562,1458,1024,953,1033,1258,1631,2033,881,285,985,2054,2797,2333,167,2527,671,2218,2358,853,2500,1920,2296,2614,1509,2120,2863,521,1437,1028,662,1537,1845,1382,1618,2104,2208,26,2853,2975,159,1194,349,2871,973,2084,1218,2906,640,2289,2107,919,715,1275,2630,1911,274,2840,2273,2828,1625,2546,571,2931,1095,290,871,2159,2033,1693,1045,280,116,2264,544,1244,1715,1162,1715,1006,1881,751,889,2518,2637,954,943,2939,724,1668,49,2533,992,2524,968,637,1915,368,174,730,661,296,1489,1089,2363,643,1178,1276,1603,831,2900,268,1959,588,2212,2503,1860,1373,2766,1952,2816,2868,2693,1539,1513,2277,2097,1261,994,2864,2229,2405,2951,2866,1242,1205,2796,710,316,2269,1717,2335,234,900,1346,1793,2378,1802,2224,1750,2185,776,593,2006,976,2493,1178,1305,2223,54,2751,789,1733,467,2659,45,2705,2713,2390,2681,2051,2398,2220,2290,74,1398,2902,2229,932,1161,2502,519,1644,2019,1544,386,115,436,1985,1170,2163,18,143,1135,816,2040,192,1894,2255,690,2976,2403,2844,26,981,1241,2143,260,2218,1358,2677,818,744,2664,2644,1181,1069,2995,1020,1117,1632,1420,763,224,672,583,2808,1745,2403,2512,820,773,1406,2568,2255,2837,333,2624,2819,2786,285,1712,2627,607,771,1403,1745,25,178,2834,461,1044,577,2851,1968,166,1896,1435,1497,2332,1871,1527,733,1227,704,1159,1392,2617,397,1600,253,1147,251,1752,37,2459,2848,620,1549,2996,1409,1349,2953,780,999,2525,1694,1453,1398,2542,1368,573,2070,1626,591,784,2055,2675,552,2190,1046,2186,2878,1546,1819,2724,750,2016,2952,1410,571,430,2149,1014,737,2745,1697,803,867,374,801,1984,173,447,1164,2826,2981,2508,2476,452,1642,2604,651,1630,2962,863,1496,781,259,1837,1230,1928,227,484,2352,1582,845,1626,2090,564,1782,2909,1225,2155,283,825,2112,270,609,2427,625,864,2743,2790,1527,1157,2651,1041,461,2760,280,811,1150,2515,2317,2059,2537,2573,1120,2406,2198,2801,1018,1370,1267,1906,1061,2602,2344,230,2191,1134,1520,2284,551,2070,2407,951,2829,1234,1138,1127,1589,2240,510,2438,2500,1844,2944,208,2799,150,2588,2475,1905,2118,2877,1646,2658,68,2194,2009,75,2758,940,1941,2450,1964,1303,1070,2630,522,2222,2932,825,2286,808,321,286,2584,284,1595,1085,110,350,858,2583,2214,2146,1039,2956,1814,46,1994,1584,1711,73,1768,2893,236,2061,552,1464,2857,2810,1822,927,1307,1298,2450,2499,480,2657,2258,2791,200,272,1313,1495,659,533,4,217,736,346,1311,1340,398,1680,2257,2059,1673,877,945,713,459,676,2585,1732,2878,1538,1671,2741,2293,2982,2969,2974,1839,2767,1931,1764,1640,2534,2920,1016,496,2535,1533,2341,2485,742,2374,2508,606,421,2412,1037,2445,1043,2754,415,2436,2761,2181,2503,326,2135,2692,2957,1812,502,1540,1279,141,121,2215,744,2470,1627,1330,355,1280,2771,1978,2355,990,2172,370,2759,2067,2693,1475,278,2004,1720,472,271,2184,426,1461,1718,1346,398,2421,399,764,1494,539,740,21,2442,739,1760,892,1487,1076,2552,396,1303,844,2299,1570,666,2709,2124,1425,884,438,337,2923,2187,2730,628,1927,2390,334,2639,2669,729,1708,1535,450,1200,46,967,501,2911,471,611,2877,173,138,137,1561,2462,1219,1601,782,1567,1683,2606,386,388,2195,493,2239,773,2884,1240,2618,1746,2618,22,1324,706,997,1431,1590,2633,864,1427,2934,1018,812,152,1939,847,1600,2531,2820,2193,2300,1301,2726,901,2958,1624,703,2209,875,851,2817,429,2749,68,1826,2537,528,2414,2847,2797,1366,279,2447,1462,2598,1404,2614,2287,1017,1060,1849,2683,1971,176,1967,1026,1429,304,2920,2631,937,2817,2290,683,2674,2274,2950,2270,2416,312,587,611,2811,1523,1747,2122,2247,2576,2109,624,1578,1713,1824,886,2682,2055,422,2319,1676,1243,2697,727,1539,2986,965,2363,2783,2490,18,2936,2165,1852,2399,726,482,665,2612,50,264,2809,542,1513,11,522,301,891,1295,1590,1142,2071,2472,734,1654,2526,741,1864,2488,2685,2593,2894,1126,1961,1535,142,560,877,2572,1815,1503,2992,2792,2812,363,2864,601,2295,1069,243,1048,2732,697,2085,1581,1544,1731,1878,1534,1840,358,2397,213,433,2934,1424,1465,157,2253,709,865,1196,397,1052,1880,2707,181,1101,1956,914,622,2419,1340,182,1456,154,1858,1430,2483,251,203,4,515,211,1319,2621,1102,2908,893,1823,483,1862,880,1579,372,1899,634,2263,1087,2336,443,2646,2388,841,322,2798,168,1560,2323,2633,2236,680,973,1339,948,2097,2667,1645,1607,1072,1854,1598,178,1172,1790,1927,2773,1223,2321,2431,848,458,1808,1022,1995,931,1259,1828,1896,2579,2834,1318,1329,2232,2946,590,1411,224,2505,1820,1141,1265,2575,2013,2635,905,2449,1623,187,155,2391,482,529,2017,2650,2587,261,1834,1323,1297,2119,1050,1231,2522,2661,1077,2150,2043,696,2093,2975,315,790,1321,108,1570,2487,2855,1972,1227,629,1669,1110,1088,1574,211,2000,1733,1915,1572,2294,2305,1091,675,1096,2530,442,1035,188,543,2718,1413,767,994,2929,1516,2276,1657,2968,2382,2583,1259,19,385,989,2622,1353,1215,1177,1565,1541,1481,589}

    {1752,267,2100,668,2724,1292,516,2170,1471,1083,342,686,2891,1609,2090,504,470,1239,1782,2558,1890,205,1571,122,2941,1284,1358,796,1331,254,2296,2087,2648,2701,1350,82,627,2227,1375,1491,102,1431,2871,2341,1501,2657,2441,2126,1008,545,196,578,982,1989,1288,226,1950,2710,1851,1180,209,1112,489,406,238,2416,1531,1389,2672,88,47,319,837,2538,746,1692,2173,1330,2272,2381,1300,2029,2765,1454,998,619,1466,2022,1825,876,557,646,36,2132,6,1104,347,840,1678,1040,1417,2907,2928,40,961,2439,1487,2178,2776,1030,2519,2053,2125,2399,2103,2100,2285,2718,1134,1151,2166,218,265,2204,1220,1418,627,2018,2643,1635,347,1169,1873,299,619,2655,1605,2201,704,124,2754,1841,1255,1105,823,1429,2547,1777,97,1673,2277,2581,640,1814,2762,1499,1938,1320,717,2094,2148,2751,440,2810,1746,11,454,2930,2706,38,1679,1749,2747,2846,1388,343,1481,885,1098,331,1766,887,1317,2267,2815,1460,2942,576,697,2298,878,817,2210,2169,2014,857,1343,2238,1844,2556,879,506,2466,213,339,1910,691,1839,252,1281,202,2102,1466,1835,1308,1612,888,1212,2263,572,2303,688,1154,1125,2109,1387,1426,2731,160,288,377,923,1993,2780,249,670,1232,918,328,1354,2352,2095,392,2813,1137,1468,2922,1019,2687,2350,2230,2610,1452,2757,1032,308,176,2801,193,849,1553,2179,553,2110,2829,1784,785,1930,687,2089,1895,2989,705,881,1702,1885,107,699,1114,2610,2342,1790,1687,781,2380,2624,1182,2484,1711,891,985,836,1892,21,2769,232,1136,1230,2634,2908,2297,1104,1546,2769,95,1453,2711,1903,922,1549,2174,2031,390,1582,2308,1594,356,756,313,802,2725,1006,1445,831,465,2353,2461,2009,2567,2123,1975,2219,983,674,339,2496,1171,301,488,2461,1426,2098,1548,1380,382,2457,172,1832,2362,1907,1262,1764,1093,2124,2514,1283,227,995,1469,2859,1416,2615,175,516,1109,1510,2080,538,980,993,1762,1097,2530,2496,716,1016,2763,2193,2291,1179,883,2029,2750,1128,2447,204,1344,1430,1736,658,1846,509,2372,989,2396,2590,1131,1756,2260,1236,1412,2266,2770,791,1350,868,1988,1304,1298,2115,1395,462,1568,1325,1188,455,788,80,241,2325,237,495,2882,972,2888,1092,2042,2436,1808,1082,861,1360,1124,797,2839,2379,1682,2049,1778,2670,2755,345,1393,1119,498,446,779,1611,1271,1663,2378,108,2182,2111,2303,2763,1670,1463,701,1479,183,1554,2376,2870,2571,475,2644,1761,33,1960,114,2784,2453,638,1704,1056,1173,2129,300,1229,1916,2773,16,2392,1640,1057,920,2257,2247,197,575,1710,2251,1352,2424,775,2823,1067,2325,518,1765,136,1786,732,974,2902,559,216,839,754,713,567,2315,2586,1924,83,403,1085,2627,20,1617,2656,1595,2686,2561,57,2743,28,1941,720,1382,1610,1111,2304,1036,2615,2713,997,2439,975,1571,49,1726,832,763,383,98,599,2943,939,125,56,354,2312,1756,2789,2836,1917,348,1965,1893,1674,1676,2142,366,1677,2619,1853,762,2634,1994,2453,2106,1602,2023,1997,2433,279,1142,1077,1772,2038,56,2611,2172,2019,1233,471,2340,1964,2523,1795,1988,2555,2561,2430,491,134,827,601,1833,2050,2764,1480,537,554,2715,1078,2507,368,2598,1334,1817,632,81,1052,1191,27,1113,1740,528,738,2020,971,2649,2221,1287,2626,203,2788,1122,2605,1878,2074,2539,132,1210,2507,2706,2455,2635,2935,921,2794,1274,2201,2963,364,1013,2679,2498,67,971,602,1245,503,2890,1003,2672,220,573,90,2497,1562,387,385,9,993,2077,995,1225,448,896,273,473,1267,1863,1875,1375,2879,2036,428,2596,295,2711,2101,1059,1807,2057,2155,2755,231,1068,239,1233,921,412,2493,2994,938,2953,2360,2479,2322,2840,2838,282,2063,2035,2963,129,1201,90,1708,1866,2024,741,1625,214,2705,320,2192,575,14,2577,910,148,2197,437,1874,2265,1269,1268,1920,768,1100,2428,266,800,642,846,2226,79,2736,524,2064,217,494,2704,2060,134,1008,583,1917,1212,329,2270,234,1211,2545,278,2786,1946,2988,2748,198,657,1402,71,1051,2143,1785,667,2216,523,2318,146,2931,102,722,664,2409,944,2616,897,1474,1099,1371,150,620,2588,1957,2807,2883,2246,2463,1870,1478,40,1144,2566,1635,698,1397,2836,1866,1422,2317,1796,926,1060,2855,1591,2595,2262,981,2778,691,1033,2415,2437,2327,882,69,470,1977,628,2955,1629,1293,669,1664,2573,1197,2478,1314,817,1034,2822,2425,2140,1718,536,2311,465,708,2071,51,2515,1946,1680,2957,647,1905,2467,2646,1794,223,441,2778,2888,2351,307,0,2099,693,2122,2079,803,2996,1597,1078,1045,1983,2959,2460,1170,1250,2721,1811,2787,2730,2708,2749,2343,2874,1459,908,1171,2050,302,612,2653,1394,2369,1235,2254,822,2601,2283,1568,1574,2371,112,2383,1754,889,1925,724,220,2060,1224,2202,2417,1888,348,1148,2586,84,2026,2517,324,2531,1961,2485,835,1780,2106,616,1342,1717,766,235,1818,1348,2806,824,2057,1349,1986,1634,793,1976,851,1908,542,1485,2235,2351,2323,2524,1897,375,1328,2868,2905,2794,2265,1504,1204,2779,456,1963,2886,2237,649,2802,2338,2021,2802,1341,662,83,1981,681,1826,621,361,1522,225,122,120,1318,33,1475,48,834,884,630,2640,2148,1288,1120,2529,2667,2679,145,1604,1816,1753,284,2577,1765,1343,42,1337,1359,821,2638,396,2166,1926,1457,2647,1659,2034,623,474,1352,1307,795,2944,2640,659,2805,1620,2294,1254,1273,2206,2880,1022,96,613,1609,733,689,2183,373,2014,2949,1639,2095,2913,743,1512,1543,1219,933,2490,722,2463,2481,2781,1588,2392,2228,14,2632,2565,2636,2356,1,1207,1979,1723,1328,925,809,1423,2827,1163,149,1707,775,439,2102,2800,1683,297,1410,915,1737,1974,1309,2444,416,1025,768,1730,1175,561,2302,2497,800,823,546,2987,1106,1939,660,1419,2854,1736,275,1282,216,2373,460,2696,1121,819,1830,250,2425,2865,1372,1118,104,670,1935,1270,1055,1317,2629,1792,647,2582,1800,1414,146,675,2991,1125,2604,475,336,357,1229,596,2881,626,1508,463,1783,1696,2047,1407,2092,2442,117,2816,2545,1840,1966,1025,171,199,2045,878,1226,845,944,1971,2337,94,8,2552,833,2892,2708,1919,1907,1215,1374,1876,2734,1724,2205,1904,1315,1486,2322,2456,1643,2495,1898,1891,1383,2984,1834,652,2383,1794,1734,2231,1386,2299,230,1408,2766,63,2753,2985,1216,1532,772,275,2360,1116,437,2782,80,2134,1199,2956,1689,678,1391,859,2989,77,1766,757,2928,2565,2964,837,978,321,702,976,2468,1445,1049,2478,1473,1057,1043,2532,2330,2331,1338,249,1146,2879,1969,2394,536,1930,2405,94,1332,2278,936,1757,1150,2467,2443,2039,430,1944,1969,2594,1455,300,1187,76,2719,2105,959,2925,1332,1326,2245,566,826,2695,1801,2268,395,2409,371,378,986,764,2367,1222,120,1723,960,596,382,2592,2245,1560,1576,2154,872,245,1882,2072,180,1091,1482,1397,100,415,93,1280,694,1894,44,52,1887,1508,2418,1604,1716,1118,1237,2046,1901,2076,456,1707,777,65,131,565,1572,2292,1529,198,1675,813,508,375,478,2815,2278,345,1238,2320,1880,1179,2938,258,2253,2375,165,2666,454,1161,2189,2945,1479,1250,2712,2918,2938,834,2951,1088,1656,2420,699,854,2357,2793,157,164,2843,1071,2652,602,1853,2096,1616,2315,1886,1013,1023,566,1421,712,390,1845,2225,984,2585,2176,1869,894,869,618,1316,2746,229,1620,175,2350,849,2550,500,1868,765,562,2043,161,2061,2703,1932,966,1925,1155,2212,932,2231,2603,991,192,1417,152,2597,481,1121,1377,62,408,1530,1423,842,1277,2813,2664,1115,2091,1738,269,417,311,2438,1552,424,913,623,1096,1333,1865,272,1846,558,1363,2628,65,2691,2147,1892,1518,2364,1324,359,1021,2993,89,1253,1122,2081,423,1758,1533,193,1768,153,1209,1505,2603,1228,1637,534,464,1183,2115,352,1665,1803,2469,777,439,2538,42,595,351,2349,2227,2314,2244,1421,1670,2459,759,2318,247,2189,1450,794,2557,665,1868,2850,1847,1649,1374,1454,2898,2710,1507,1800,2722,2686,2232,1562,2452,2972,828,1321,2917,2780,590,1143,1393,1619,101,1062,15,98,1351,1379,1564,2138,949,2144,1638,970,919,291,1792,1772,2685,2432,1140,2651,2426,1108,1201,2084,2942,228,1987,1391,2990,2926,2970,268,525,2927,1543,633,414,765,2972,1678,1427,2401,332,513,2923,2540,2309,2026,974,2683,2916,449,1881,472,2671,2078,2954,1498,2865,2722,1573,679,1885,2861,55,585,1459,2702,2491,1695,2623,145,2295,1643,204,2489,918,491,1742,2482,1720,2410,1226,718,2842,1281,822,142,1395,1040,1788,2123,48,1613,598,1434,1796,743,1257,2079,282,497,2833,924,1748,2777,2175,1444,1105,1287,859,2171,2848,613,1995,2563,2776,901,1310,1503,856,323,1828,1065,1187,818,1611,1798,1692,2950,2717,999,189,1279,1599,210,107,2845,162,2353,413,1511,244,160,1404,289,1053,1585,1027,1943,2135,2514,1697,1739,1517,2203,499,2105,2579,1406,723,464,1889,749,127,2486,778,1529,2841,1827,615,2448,2665,1910,1110,232,2647,2929,2213,1377,264,833,2125,237,2775,2186,641,2480,930,1101,2413,1949,2521,943,29,2788,1079,559,159,1254,22,209,2691,1951,1409,2118,752,1312,2823,1843,15,381,521,2301,2694,898,1355,233,641,795,678,240,1190,391,2268,55,895,1873,453,1783,2308,1980,1265,1489,87,1123,727,1903,1054,1577,2358,1206,1592,610,956,474,2086,2930,964,605,2198,162,706,2487,1074,2443,421,1774,360,309,1811,2591,1636,505,2906,2307,1843,2954,950,1308,2574,1485,457,1039,1606,954,563,2411,248,1079,1818,1147,103,1064,808,2665,820,3,2274,2454,1124,2241,1001,2914,1767,2423,1725,1832,2980,2423,2516,1180,167,2978,2279,1705,1923,870,1583,1416,801,2482,700,501,497,144,1480,2211,12,188,2421,1821,2779,906,903,130,1117,2427,63,2978,2077,1247,1099,2853,2116,1505,1405,539,163,2368,1573,410,2770,2234,2970,2961,2021,2654,1392,863,2885,2184,215,1583,1785,2764,1108,2656,2521,2473,712,2728,1741,2259,2742,2252,2532,2806,1647,2188,252,332,1861,2556,2517,1587,2240,2915,1306,979,419,1829,1940,2992,2370,574,587,111,2030,1362,2948,72,2203,1500,2324,2661,1813,547,942,58,1569,1155,1501,250,2191,328,1360,1658,2821,788,2845,637,2781,2412,1153,352,1558,2167,804,366,1320,1612,1850,2362,679,2873,1351,498,2384,257,1064,1173,2047,972,1806,946,668,2404,1686,2104,365,661,1015,1956,2960,790,1997,350,389,2919,1761,517,1982,1992,1722,267,2976,1447,594,2787,2451,370,1264,2863,779,1621,2563,172,1621,2564,541,2668,412,2249,2266,2365,1815,1191,384,853,2600,2366,955,2068,1135,1473,2756,1355,2395,1309,1143,1770,1963,923,151,1282,2,1797,2310,1462,455,582,1038,2881,2600,570,843,879,1086,890,2900,1051,1824,85,2211,126,671,2729,857,1861,1537,2432,2153,1727,1003,1674,1660,1541,617,1239,1966,1266,2880,815,888,24,1652,2674,2709,2720,2862,115,121,1207,750,487,432,1408,353,378,2638,2256,1500,964,644,2509,2790,2345,2841,38,1353,1947,570,1316,255,1821,1512,1644,2134,895,2822,924,1345,1159,812,424,742,1942,1189,2921,304,407,2158,1511,233,597,2494,653,1924,2727,2010,394,2174,968,2147,2721,190,650,317,1504,806,1471,1579,584,2119,1414,1217,684,2962,987,262,783,221,2945,2671,2732,1591,1817,1524,2698,2543,1314,2546,1174,138,24,1132,81,1773,2434,2082,577,2824,1575,1493,852,222,137,1721,1860,2608,847,1103,720,2046,2551,657,2946,111,1867,2550,317,721,1701,2609,1722,725,1428,2804,2616,2997,2045,896,400,692,711,721,359,110,1383,29,2858,2041,625,2947,1014,597,1641,2293,1534,2065,1234,2275,1272,2152,1156,2310,991,1699,674,1438,738,2728,1701,240,1026,1950,513,2915,2012,1285,2498,1938,592,535,1031,156,2161,1376,1510,550,1593,1472,1145,2052,2204,408,1837,2825,1112,2999,1399,1413,644,247,2092,2897,1304,2346,745,2388,1913,748,74,1553,2056,2660,2488,1425,799,2959,1381,1438,388,631,2354,2200,1066,2623,1751,693,1984,666,1252,1799,2130,133,1514,156,195,1895,179,2205,2772,1004,1728,1883,374,1145,2334,711,904,869,2250,1662,92,867,1639,355,2133,1405,1599,319,2617,1989,876,2886,1302,2464,2288,1269,2273,1555,1333,2998,327,420,299,2385,72,2796,1450,2792,1831,746,2006,677,1631,1056,1629,473,1998,2666,1448,1283,2126,1596,1164,1662,10,2063,2182,289,1724,735,1557,358,2518,1114,2486,1192,2408,2406,1184,2483,1371,1376,1596,830,2112,1622,1540,673,1200,349,622,2190,155,600,1144,1953,2660,50,1451,276,2688,2448,2844,1545,1342,1684,2895,1552,2271,2548,1614,1753,380,1094,143,2129,1900,530,2394,442,564,2343,404,1242,1977,2977,1010,1556,761,2280,2720,774,489,2861,132,862,1237,520,1058,855,2085,1649,1648,1437,2030,283,1176,1740,2285,2922,1528,1926,1299,361,338,166,2968,1286,1912,2714,1361,246,2782,1015,2987,2297,1157,799,1687,351,1154,1080,1275,2812,2175,2937,466,2918,1176,2536,2745,2869,1348,2242,1616,1769,1506,1123,1730,1325,337,1363,2457,2048,1068,2082,1666,553,1153,2575,2620,2075,1357,1331,2424,2783,2838,1278,109,1249,856,427,928,1086,1070,1630,1389,91,1401,446,1836,2553,2051,248,2694,87,514,2049,815,2089,1367,635,1507,669,1436,2703,2826,2609,2302,292,1714,2251,1498,1011,1021,1084,709,2717,310,43,2641,1658,1335,1027,844,1277,341,2940,2349,78,1194,2775,1005,484,1810,1166,88,2680,2509,229,2636,646,1865,850,1738,2669,2979,1803,1669,86,987,1536,32,419,109,1075,2549,422,1046,2847,816,2632,2261,2256,1441,2139,1789,898,1457,1344,1447,2979,1023,2819,1273,1624,2637,2994,2411,939,963,1955,1020,1488,2073,2330,445,1175,2867,581,604,1663,992,2739,2746,1492,457,2738,1168,218,1749,2446,1073,870,2832,2480,2468,1758,1253,503,1356,2041,789,604,91,346,1919,242,874,1805,809,2966,1879,2876,2444,1970,2811,1032,2606,194,1754,2434,1739,2690,1992,2566,1174,2555,2873,2380,1042,1271,269,2971,1031,341,631,2140,1854,1456,3,1402,43,581,1805,298,1361,2872,2827,1228,1373,1216,1141,2701,1921,2715,286,2832,2162,2894,1385,2113,2259,1829,1305,2347,2830,2578,1139,909,255,1256,8,1066,545,1667,336,1063,1296,2492,1914,980,76,1294,2663,2429,715,2087,2607,861,1955,1451,13,2454,1241,1696,2004,1030,1443,2168,1968,798,2036,1464,702,2367,1290,139,2289,1198,410,310,2114,1202,2361,2924,2655,1443,2179,2785,2569,900,1648,476,1912,1820,2306,2798,447,1647,811,2132,650,782,526,2985,2169,1554,912,1478,1266,126,1712,1115,1622,271,1477,1589,1103,1862,2846,2999,180,747,381,1798,1297,1185,2407,2726,1618,260,1384,648,1700,2139,1851,2837,2736,2889,2762,1208,2513,873,810,1816,163,606,179,2386,890,344,774,734,576,323,452,1054,1972,2031,530,1197,2264,1958,1652,1369,1970,95,1787,2173,1681,677,25,2799,2768,1650,1129,925,2831,1627,916,383,492,2774,1364,2611,305,1986,97,814,219,1809,982,1884,389,135,231,222,214,2688,2777,17,2010,2803,1755,1944,369,519,2058,1771,129,875,1278,1990,402,20,364,2643,1152,1116,626,615,1719,2408,365,2668,1396,1065,2645,1167,1380,767,496,2068,114,1440,1799,1731,2316,2321,1928,476,1656,643,707,1100,1665,970,466,311,1936,1864,1132,2007,41,399,433,335,1213,1364,1337,139,219,2707,241,2283,316,2396,1934,1698,543,1009,903,2851,1059,1632,2995,2506,2331,2580,47,2001,196,584,805,1898,1044,894,2504,2435,1186,1563,599,1709,1506,1434,886,123,2993,106,655,2714,2108,58,1133,2818,902,1855,524,549,1256,2391,480,533,630,1688,2990,2337,469,1978,395,2001,2072,1146,874,751,988,814,1440,2225,2011,686,263,663,1586,330,2580,2157,1165,169,1418}

    2887

    1160

    Returns: 938462066

  121. {1811,2798,2673,2673,2556,2335,1921,2673,813,2673,1534,2673,2673,1113,2673,2673,2673,2673,2673,2673,45,2291,2673,2673,1847,1750,2673,2814,2752,2673,2673,2673,1098,2673,2099,2673,39,2673,1055,2673,2673,2366,2673,2673,2673,2673,2722,2884,2673,2673,951,2673,2673,2673,2673,465,672,1681,2673,141,2673,2673,2589,2440,1232,2673,2933,912,2673,2974,2673,2673,2673,2673,2673,2673,2673,2074,279,2673,2892,2673,2673,153,2689,2673,2673,37,686,486,2673,2673,2673,2673,2673,2326,142,2673,2673,2244,459,1239,2673,2673,304,2673,2673,1522,2673,2673,2673,2784,2673,2673,2673,271,2673,2673,2673,2673,2673,2673,2781,296,81,399,2673,2673,2673,2043,2052,2673,2673,477,781,2673,2673,2673,2673,1422,1837,209,2673,2673,1762,528,905,2673,2875,2673,1275,2673,2673,1296,597,860,1942,2673,2673,2035,2673,2673,2639,2880,2673,2673,1792,1459,753,375,2673,510,2673,2193,2108,2673,2673,2913,2673,705,915,2595,2673,2673,869,1249,617,2673,667,2673,2068,2673,2095,2673,2673,1042,2673,1294,1898,2673,2673,2673,2673,2673,2174,165,1777,2673,2673,2673,2673,2461,2138,1068,2673,2673,522,2137,2673,2673,873,1920,2579,2673,2673,2673,1791,2673,376,2845,2673,2966,2673,1448,2673,2673,2673,1717,2673,2673,1774,2390,883,2673,2792,2493,1670,448,2487,2673,2673,1525,2795,2673,2673,2673,2673,2673,2148,1269,889,2673,1743,2896,62,1860,2673,748,2818,981,2417,1304,253,328,877,1959,861,2673,785,2673,2673,1554,2673,1192,2574,2673,2673,2673,2673,74,2673,2673,2673,1403,2673,2673,2673,1356,2673,2673,1800,2673,413,1326,2590,2673,633,2673,577,2673,2673,1927,2673,2673,2764,2139,2673,2673,1430,2673,2886,2673,2673,350,2673,2029,2673,2673,2794,2673,2673,2673,2673,2673,922,2673,172,2673,2673,2745,2673,17,2673,2673,1246,2673,1316,2673,331,1194,1101,2673,2673,2673,2673,2673,2359,515,1669,1924,2673,1340,2673,1999,2673,2673,2613,2673,1865,2673,449,2673,2673,2673,2716,2885,1433,2730,2673,2673,2673,2673,2673,2673,2673,2673,2379,2564,1857,2673,2499,338,2673,2673,293,2673,2673,2673,673,2673,2673,2673,1939,2609,1628,1946,814,2673,2653,2340,310,2673,2629,2673,2673,2041,2673,311,2673,2673,2673,1848,2673,185,239,2673,2673,2773,2673,2673,2673,2673,2673,1514,2673,2673,2673,1527,2673,2673,2673,43,2673,2673,2673,2446,2358,2673,987,2673,1987,2601,1954,2330,322,2409,2673,2929,2673,2673,2762,1353,1216,2227,2673,1698,2673,2673,343,972,2673,1283,2673,2673,138,2673,2673,2673,2673,607,2766,2673,104,1576,2852,317,2673,2673,1917,2673,538,1616,2673,2673,2673,1694,2673,2673,2673,348,2588,2673,2673,2016,1127,2673,2673,2673,9,2673,2673,2734,2673,2673,1806,2673,2673,2673,1391,2237,2673,1666,1580,2673,2673,2524,2673,2030,2673,2673,1853,2673,2673,793,8,2673,1710,1434,2673,2673,1056,2673,2673,2673,2673,2673,1504,886,2673,2673,156,2673,2673,1206,2888,2382,2502,2673,2673,2567,1185,1218,1072,2673,2673,2672,2673,2673,1742,2673,566,2673,274,1931,2673,2673,2673,1000,2673,2599,2673,2673,603,202,492,761,2673,2673,751,2673,2673,2569,34,2673,1174,44,2673,718,569,2247,937,1271,2673,498,2673,2673,2673,568,2673,2673,2673,2673,2673,2071,177,2673,620,2673,690,2673,2673,1805,838,2673,2245,2673,2673,2607,2673,2673,2673,1084,1877,1344,2673,2542,2673,2673,2468,2098,2673,2673,2673,2673,2673,2673,2673,856,534,2780,2673,835,772,2673,2673,361,1573,2673,2673,2673,1043,2673,2673,2673,2673,2673,2673,2087,723,2673,2673,2673,2673,2673,1376,758,1520,2673,182,2785,2977,2673,1591,2934,1818,2673,1266,2673,1352,2673,2673,2673,982,2673,2673,2673,1299,2673,2673,2673,2673,2538,2673,783,2673,1829,736,1808,1507,1793,2673,2418,1060,2673,2673,2673,1867,2673,155,2673,2673,2266,739,2673,2673,1278,2876,1285,2673,2521,2673,2673,325,948,675,2673,642,2673,2673,609,2673,2673,369,830,2673,1177,837,2673,2695,2088,2869,1935,2673,2673,1114,2673,2805,2673,169,2673,76,1609,2673,1581,2673,121,2660,2673,2673,318,1933,2475,1644,2336,2883,2673,2673,1401,2673,99,2673,2673,703,2585,1913,2673,2673,485,2673,2673,2673,1018,1425,942,2673,90,2958,2673,2673,2673,2673,782,2047,1386,2673,258,1439,2673,2673,2144,2673,1160,2673,2673,1158,2673,2853,2673,1058,1703,1421,2673,2673,2673,2673,2673,2673,2673,1329,2214,2673,2673,2684,749,1132,316,2673,2673,2673,2280,2673,2673,2673,2723,2253,2110,2673,2673,1636,2673,2673,2199,358,1741,695,431,2673,2673,2594,2457,1062,1367,2837,2673,1683,2673,2673,2994,2338,710,2121,1222,2673,811,970,2673,2673,2673,895,875,2673,82,199,240,2673,2820,77,2673,416,2673,2673,2673,859,2004,1858,2057,771,1575,2673,191,998,1982,2673,2673,820,176,2406,2673,2727,2673,1119,2333,2673,1912,2673,2673,2673,2082,1596,2673,2673,2673,2673,249,464,2673,2673,2673,1702,2897,1571,2479,2614,2787,789,2464,1369,2673,257,2673,2673,2673,2673,2673,246,2376,2673,2673,2673,2908,2673,2673,1134,2673,224,2673,2416,2673,2673,806,926,1915,2673,788,1749,2673,119,2673,698,2673,2673,2673,2178,887,2673,2673,2673,356,2313,2673,997,798,678,2673,2673,2673,2911,2645,2673,2673,2673,2246,2673,2673,2673,549,2673,2673,1598,2673,649,1972,2673,2673,868,2673,729,2673,1844,2673,2673,2673,1682,2673,2673,1558,2602,2673,1852,2673,2673,679,790,2673,2673,2673,2673,2673,2673,2673,1675,2673,1925,2673,2364,2673,368,2673,2673,2673,2673,2838,2673,2467,2673,2944,2673,715,2673,1986,2673,2804,2775,2673,2673,2673,2673,2673,2673,2673,2048,2673,2673,2673,2673,1153,2673,2673,423,818,447,2673,2673,2673,362,677,2673,2673,1589,2673,2673,2757,241,2673,2673,2673,2622,1542,2673,2673,2673,2559,2673,2735,1334,2673,2673,2673,2673,2061,1230,2673,2673,2673,2729,1461,2673,2673,983,599,2673,2673,2673,2673,2434,2582,2673,2673,2673,1988,2673,2673,2673,896,397,1993,2673,2673,639,2970,624,969,2701,1834,2673,2673,973,1587,2673,2673,1016,2477,2673,1095,737,2673,2673,731,2924,2183,2673,2673,726,1345,2673,2673,2673,2673,2673,2673,2673,2181,2673,2150,2673,2673,1306,1050,1076,2673,426,1511,2673,2673,1300,1640,1057,2673,2673,2673,1601,2673,2673,2673,2967,2673,2673,2673,2572,2673,2673,2592,1994,2673,2673,2673,509,2673,2673,2673,2673,268,2673,1639,134,189,2673,2817,2673,1955,2673,910,961,2673,773,2673,2673,680,2673,1333,1346,2673,2673,2673,2673,1499,2673,2673,2673,2673,2673,1102,2673,488,2673,2673,2445,2673,2747,504,946,2673,1906,232,297,2703,2905,2673,1393,1528,2673,2673,2180,2673,1962,702,2673,2673,2673,1038,1903,971,2909,1189,1918,1190,294,2600,1440,123,2085,2673,2673,2673,67,2673,2412,2673,2673,693,2673,2673,2673,1331,2624,2673,2673,2000,2673,2673,2673,1282,2673,2673,2673,2673,1450,2673,2673,2673,700,2673,1821,1783,1274,1452,139,2673,4,2673,2673,2673,1802,2763,2283,2673,1245,993,552,2673,2673,2673,625,2673,2673,747,2673,2673,2673,1284,2673,2532,2673,1324,1747,2673,252,2923,2673,2673,2673,2673,774,776,461,2673,2673,452,2673,1614,2673,2673,2673,608,2673,2100,628,2673,2673,1034,215,2783,1061,2673,2673,2496,2673,573,2673,1486,2673,2673,2834,1878,269,2673,1965,2673,2673,2673,2673,1700,2673,1831,2673,2673,2673,892,1586,834,2673,1654,2226,1019,623,717,2683,1347,324,986,2051,292,2404,2529,2673,2673,2673,1799,1688,2673,907,1082,84,2673,2673,263,2673,2673,2830,2673,975,264,2673,2673,2673,1767,2659,2673,2673,2673,2673,661,2673,2673,2673,2094,28,2673,2673,2673,2397,656,2323,2673,2673,2980,676,992,2673,2673,2673,1168,932,1311,1351,2673,2673,2673,2673,484,1195,2673,2673,2581,2220,1846,2673,2584,2673,1953,1781,2673,1727,2673,1722,463,1888,1967,436,101,2673,2673,2673,2673,2673,2673,2673,2673,1048,621,2673,2673,2673,2673,2673,2673,411,1648,2673,29,2673,2673,2673,662,984,2296,2673,2673,2673,2673,2673,2673,1420,632,112,1817,2593,1510,259,2673,2673,1120,2673,2673,2115,2947,2673,2673,2673,355,1812,2463,1100,2673,2673,2294,2195,2748,2673,2673,2673,2019,2673,277,2673,2673,2891,2673,634,2673,2993,2530,2673,1364,778,1839,1769,2673,2673,2847,2673,823,344,849,1485,2673,2673,2673,2606,2673,2673,2616,637,1368,354,2673,2673,2673,2617,2673,2673,2373,2866,2673,2353,2673,2673,372,2968,2673,1211,2188,2673,2673,2673,2673,2541,2895,2673,2673,2673,2801,595,2039,49,2276,1574,2014,752,2673,2673,1083,2673,1252,1255,2673,2987,557,2231,2673,401,2898,2673,2673,2604,2673,2320,2673,2673,2673,2673,1964,804,2673,1429,2673,1732,500,2673,2673,238,979,2673,2673,2552,2673,2673,2673,2673,2673,2673,2673,1919,2673,2673,2673,1128,2673,1193,2673,2673,2673,974,132,2742,2673,1137,2673,2673,1208,2673,1320,508,2673,2673,1540,2673,97,880,2673,79,2673,2807,2713,2806,2714,2673,2427,2673,2673,2673,2208,2856,2673,2673,2673,2673,2673,2673,934,2673,1141,302,864,2673,2673,275,2658,2673,2800,2673,2877,2673,23,2673,2456,2673,2673,2673,146,2673,2555,1611,1355,2673,826,2673,2673,2257,2673,2673,583,668,592,2673,2535,550,2673,1825,2673,2673,2273,2673,2673,196,2673,1234,2021,2673,2673,2673,14,393,2673,106,2673,390,687,1005,2673,2673,1893,2673,1361,2673,2673,2673,2927,2673,2673,1897,2673,2673,2673,2673,797,524,2008,2753,2673,2627,908,2407,2985,2673,576,2673,2673,2673,2142,2673,2673,1996,1689,1830,1957,1922,2673,2673,2673,468,418,2673,2669,1503,2201,2673,1064,1734,2673,2089,2673,2673,2125,2673,2673,2673,2603,2419,1642,1891,2673,2673,290,2640,2184,1592,743,2673,2673,2673,2673,2673,2673,2673,904,2478,2591,2673,2673,2345,2976,2673,2673,2673,2673,1724,796,841,2673,2433,2145,1262,2864,1383,2673,2673,2126,2673,2673,1890,2673,2673,1258,2665,2673,2673,30,2673,2673,924,2673,1719,518,2673,2673,460,2488,1822,2673,815,2827,2673,2673,1465,543,2673,2673,2673,2673,1905,2229,1236,2673,651,1244,2673,2673,342,2312,759,6,2673,2369,2673,2673,2190,2673,1835,2673,181,844,2673,2673,2401,1938,1205,2737,1373,2673,1892,1788,958,1287,1117,2481,2673,2189,2133,2673,2453,1321,2673,689,2673,1672,2673,2673,2673,2673,2917,2673,1721,2452,2367,2673,1883,2673,2354,2673,2673,2673,2673,852,720,530,2674,2673,2673,334,2673,2809,2867,2673,1026,1716,2673,2277,2325,1384,2673,2005,2055,1186,2673,2486,2997,2673,2673,512,2228,2673,2673,2160,2673,1795,2673,1687,2657,1618,2673,2673,1446,1161,1337,2673,2673,2673,2673,1840,2776,2673,2673,1328,1908,2673,206,2219,2673,48,2673,2673,2673,2673,2022,1416,1235,802,2673,2015,572,2673,2673,2673,2673,2235,2673,2673,2673,519,2673,2673,2450,2673,2673,2198,2482,2673,2673,2673,2673,2673,2673,871,2673,1263,878,71,1736,2673,2024,2673,2673,2673,2673,2673,2568,195,1390,952,2673,2553,72,2352,2673,2673,2673,2673,2673,2673,2739,2673,2718,2222,1467,2673,133,2673,2673,1260,2673,2673,2673,2673,2673,1909,371,2673,2673,2673,2673,1662,2673,2673,2673,2673,2673,1451,2673,2673,1143,2469,727,1779,2673,2952,2673,1914,2673,2673,1253,2673,1641,2673,2673,2673,2772,2673,2673,2673,2673,2298,2673,272,2673,1336,1309,917,2203,439,2673,2673,2673,2673,2408,1543,284,2673,950,541,2673,2673,2151,2673,1449,2673,1318,1395,2673,2673,333,2673,2673,332,1054,2375,2673,2673,1804,2673,2610,2673,2673,1463,1483,1003,2673,2673,2673,2134,2167,2673,2719,144,2673,2673,1631,2988,2673,2673,2462,2673,1541,2673,2673,610,2673,2673,1215,606,83,1930,88,2982,2673,2673,2673,1164,2673,1099,2673,2673,305,2053,127,2673,2673,2673,2673,2673,2673,2673,2113,245,2673,2271,2673,225,2673,2673,2673,2681,1679,1943,2634,2673,2673,2673,2673,2673,2673,2673,821,2673,1655,2744,1797,2673,493,1435,2808,2831,894,453,2042,2673,1147,711,2093,2673,1478,2673,2470,2225,2550,2673,2945,2673,2673,1268,2673,2673,1674,2673,2673,2673,2673,2673,1607,2327,2673,2765,2490,1998,2539,2673,2673,2673,1782,1272,388,2673,2673,2451,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,2,364,2673,2673,2673,2673,2143,2673,953,2812,1843,2673,2615,1039,2673,2034,2673,650,2673,2664,2673,2673,229,2925,1974,2673,1151,124,2673,1761,2673,659,1312,2673,2673,2926,2673,2637,1872,2673,2673,36,2673,75,704,1139,262,2673,2767,2673,2673,2673,2386,2673,2819,2673,936,2673,2673,2673,2673,2673,2673,2673,1217,579,2673,80,2673,2240,2673,2673,2673,2303,2673,2673,219,2673,117,2673,2196,2673,2673,2673,2673,2975,2673,2661,152,100,870,2673,1533,1786,2919,2673,2673,2673,2673,571,2232,1824,120,655,2673,2862,1578,2673,1251,187,2673,2673,374,2986,1074,2673,2673,2673,2673,2673,2026,2673,1969,2673,2673,2673,159,840,681,2673,2673,2086,2673,222,2673,2673,2673,665,2673,2673,2673,158,2673,2505,657,2673,2503,547,1859,2844,2673,2673,2824,1963,2673,2673,995,10,2673,2673,2673,2673,2673,2673,1010,2065,50,2673,2673,2673,432,999,2566,2673,2036,2673,2549,2097,2673,1241,2673,2673,2673,2673,2673,130,2673,2754,2673,2673,1668,2673,2953,2673,2673,506,1476,647,2673,2848,1257,2673,2673,2673,2673,1632,2673,2673,2673,2963,2673,2673,1203,2755,2425,226,846,2673,147,2673,2738,2116,2673,2673,967,1664,2673,803,250,2090,2673,2673,2414,2673,2673,1052,2242,2673,2673,2673,1502,2673,2673,2673,833,2673,2803,2673,2859,1427,2673,2673,1196,596,2673,626,2673,2037,1180,167,2673,394,2768,2673,2673,2673,1092,2964,2673,1814,2012,2577,2673,1561,2673,2673,7,180,2673,2349,2673,2673,2673,2673,2673,2673,2706,2673,2673,2673,2673,2673,2673,767,2230,2673,2673,842,2673,2673,1706,1895,2811,349,2673,2673,2673,1199,2398,2673,379,2673,2673,564,1154,1977,2673,1457,563,2673,288,2673,1583,812,2092,988,897,1971,2673,1678,2816,2673,2673,2673,497,1220,2673,450,186,2673,2673,2080,2673,2673,1037,2673,273,2673,2673,203,562,2673,2673,2512,2673,2673,2673,217,2673,2673,544,2673,2673,2673,1945,2673,1555,2673,2673,2673,2673,2673,2673,2673,2673,1881,1633,613,2673,255,1758,2673,1553,1566,2673,1413,2673,2673,2673,2673,2673,2673,2498,2673,2673,1135,2673,1997,125,1815,1090,456,1389,299,2673,2673,1165,2673,2673,2673,467,2079,1887,2673,2673,1288,1221,2673,2238,2673,137,2673,551,2673,2673,2673,455,2673,574,479,2673,280,2673,1602,2673,2721,1770,1509,2662,2673,2996,1645,2673,2673,2221,2673,2673,1612,1739,2673,2733,2270,2673,2673,2673,2169,2673,2673,2474,2673,2673,1709,2673,105,2676,2673,2673,1929,535,514,913,2673,2256,1108,1785,2673,1643,2217,994,2673,2673,2673,2432,2673,2673,2915,1676,1932,2673,1254,742,213,2720,601,309,2673,0,590,2857,2826,1002,2673,2904,2728,2682,2673,494,2673,2673,1472,2673,2243,1173,2673,1233,2673,954,140,2673,1658,2673,2673,1505,2984,2673,2673,2673,2673,2673,2673,611,2673,2673,2673,2673,2673,799,2673,2673,24,85,1765,2631,730,2673,903,2124,2673,2673,2673,1572,2673,2673,548,1487,2854,2673,2673,2484,2673,2152,2673,2673,2526,2673,2046,2673,2673,2673,2560,33,1273,2673,208,2673,1224,906,2673,2673,2673,2673,2618,1649,270,586,2673,2673,2971,2673,2673,2101,1496,2104,1370,1276,32,2673,1763,1582,2663,2673,298,664,2673,2673,2009,2673,2673,539,42,2673,1975,1845,2673,1388,1123,2673,1259,1841,2673,960,2673,2673,2673,2673,794,40,2791,1281,1094,2673,2673,2673,2673,385,1480,2673,945,2017,2673,2673,2673,2673,2673,2673,2673,160,303,1937,2673,2673,237,2699,2673,2673,2673,683,2903,2673,2673,1651,575,2679,2673,1045,2673,713,2673,329,2076,2426,2673,825,2673,2673,2673,2673,458,832,2673,341,2673,286,2300,2673,63,2673,2673,2673,1225,2673,1899,2799,2506,2673,2673,920,735,1148,2673,283,605,2863,2673,2693}

    {2673,2673,1948,212,2673,2673,2673,47,2673,1375,2673,618,865,2673,540,314,738,1040,2547,829,2673,2673,1950,2842,2673,2673,2096,2673,2673,2132,1011,2821,2673,2611,2673,1248,2673,1112,2673,1752,827,2673,2444,2347,2207,839,2673,2673,2317,2293,2673,2431,1024,378,131,2673,2673,2673,2233,2673,1408,1270,2673,2673,2673,135,2673,2673,909,2673,964,2006,1360,1559,54,741,53,2673,2673,1303,2673,113,1546,2673,2673,2563,162,2673,2673,2673,654,1760,1557,1691,2813,2673,2673,1604,1605,2673,2673,2673,1392,2297,2673,2355,1372,2673,2435,366,2608,2673,1350,1156,2843,2673,1661,2527,2305,1647,2344,1667,2673,2673,2673,2673,805,1307,1862,2673,2673,2385,190,2673,2673,2998,2513,1008,2666,2673,2673,2673,1348,384,2673,2673,2673,451,2673,2202,2673,1713,2170,2673,2673,2673,2673,1209,1298,2673,1894,1685,2673,2673,2743,2677,2673,2673,2673,2673,2465,2673,1940,2673,2673,1250,2459,2673,1816,2673,2673,2673,2620,179,2673,2673,2673,1149,2673,2489,2673,629,2673,1623,38,2673,2272,2673,2673,161,2548,2882,874,489,2673,2673,2673,27,2063,2497,2156,2673,2673,2673,1861,1936,2673,2673,260,1744,2673,2673,2673,261,507,2329,2673,1850,2673,2673,1374,2673,2210,2673,963,2936,682,2673,1723,1184,2673,2673,2673,1517,2673,2673,2673,2673,2673,1394,2509,2673,2673,373,2442,991,2910,56,2673,2673,2673,1776,2673,2673,2673,2673,2381,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,593,2673,2873,1004,2673,1330,2673,2673,2209,1551,407,170,2673,734,2149,1695,2673,517,336,2410,2673,529,2941,2673,295,2673,2673,2673,1584,2673,2598,2673,94,2717,2673,1794,722,2673,2673,2215,69,2673,201,2673,1995,824,2673,615,2673,1159,1506,2673,2697,365,2890,770,836,2673,1315,2673,254,928,2673,1398,2673,795,2223,2673,2822,2673,2112,2673,2673,2673,291,2849,2914,976,1759,2673,2673,2673,2673,911,2673,234,2673,2480,643,2673,696,2673,103,2673,1512,2705,526,2673,2673,2673,2673,800,754,2680,884,2395,445,1753,2050,2673,2673,2673,89,2673,2673,525,520,2673,2670,851,1396,2673,1053,306,1665,2673,2673,2673,2673,2673,192,2673,2673,2673,2194,2673,1419,2501,2673,2483,2673,55,2868,1740,2673,2726,2673,2673,930,1357,2673,2756,1032,2250,867,709,2673,150,1836,1379,2673,641,2402,2173,2673,2906,2536,2443,2673,2673,2260,2673,1538,2673,2673,2673,2673,2673,2673,2990,2673,2255,243,2673,2673,2673,2673,2058,2673,2282,2746,2673,2673,108,2673,233,2889,2673,1006,1708,1044,2565,2673,2673,1293,2673,2673,2673,2673,1911,1033,2673,282,2673,2673,2633,2224,511,2673,2393,1106,2248,2673,2673,891,1167,2673,2673,1317,1597,2187,2673,2422,1613,2673,1488,2295,2673,925,2802,2403,2673,2673,1729,2673,2673,2269,2861,2673,962,2673,1952,706,2673,2656,857,2673,2673,1827,2673,2673,901,462,2673,57,1399,2102,1381,2704,2673,2673,2387,440,2673,2421,1726,2673,2673,2673,2673,2067,712,2673,2673,2673,2673,1771,2420,2673,2439,1261,2673,1302,2673,2573,2673,2673,2491,2389,691,2673,2788,2673,2205,2715,2673,2673,2673,2673,1029,2191,2673,1880,1900,2673,2673,1985,2673,2673,2902,2673,2673,2673,2673,2673,1378,2673,2667,2989,1536,2673,228,1069,1705,1803,1521,2673,2673,1365,2673,454,2673,2334,480,2673,2673,1122,2673,2782,944,2673,244,1590,110,2673,2673,2673,163,2673,1686,1871,2673,2673,95,1886,276,2213,819,1976,2077,2673,2673,2673,1001,2673,2673,546,885,2673,2673,1406,1500,2361,2673,616,2384,1650,235,1701,2153,2673,2673,1751,1737,1563,1342,1176,2673,2673,2673,801,2673,2673,2673,764,2673,2673,2673,2287,2673,2123,2673,1810,881,2111,2673,425,1882,1981,2673,1079,1725,1556,1021,2673,943,2673,1550,2673,2673,2673,2673,2673,2652,2673,2673,822,900,1124,2673,2709,2673,648,1059,2673,2673,2038,888,2673,2673,2673,73,2673,2972,265,2673,2673,2673,2267,2673,1181,2241,2673,1447,1130,2673,2673,1956,2673,2673,2020,2673,2673,2673,2673,780,2769,2673,1456,2673,2028,2673,2995,2673,2673,13,2673,619,2673,2673,1501,2106,2673,2673,2673,2673,2673,2673,1746,2438,2673,2686,2673,2979,2860,2673,2673,2673,1438,1041,2673,2870,1091,2707,2673,2673,2673,327,2673,2673,2083,15,143,370,2673,2673,2673,1466,2673,2673,1569,1341,2673,779,2673,745,523,2673,1652,2673,2301,2673,2673,2673,2836,2650,1086,2211,443,1697,2216,2673,2673,1479,2878,2673,2673,2673,2673,1354,337,1075,2673,2455,46,1568,2673,2673,2673,166,1305,2673,2129,1088,2673,2673,2673,2673,2673,2274,1071,2673,2673,2673,2673,2673,2411,2673,2239,2023,2673,2673,2673,2673,2673,640,2673,2673,164,2172,2696,2673,2673,1928,2673,2673,2673,495,2673,2673,660,2673,1210,115,1653,2673,2673,2673,2673,2673,2673,2537,2673,2673,2673,96,1970,2673,2673,2673,1656,2673,1671,2673,2673,1007,2673,21,1144,1757,2673,2673,850,154,1947,2362,2673,2673,918,2127,2710,2673,2673,2673,2673,2673,2673,2673,2673,2673,1118,2673,2741,2901,1049,1140,2332,2673,2673,1570,2576,2447,2673,503,151,2673,1968,2673,1966,2673,876,505,2673,2673,2673,1884,2673,2673,1696,2673,1820,2673,1866,1243,1047,2673,2673,1958,2310,565,2673,2673,2939,2673,2673,2673,2921,307,845,2673,2673,1400,1495,1213,2673,1385,200,12,2673,2626,1870,2673,2339,2673,2673,473,1078,2673,433,2673,2175,2673,2159,644,2372,2673,2612,86,2673,2673,763,2673,1539,531,2673,2673,1035,18,1567,395,585,1017,2907,2673,2770,2673,1637,2673,1142,2673,5,2750,415,221,2673,1223,2673,2290,2673,604,2673,1267,2673,2774,2673,2673,1657,2758,1552,2120,947,1754,2003,2673,1813,2514,116,1131,2673,1431,92,2673,2673,2673,2835,1138,2460,2673,2673,2796,1735,2673,383,1508,2673,2673,1308,2950,1470,2673,2673,1279,1188,360,2673,766,2673,2673,1204,674,899,2292,2673,2673,1787,435,346,2673,2673,1784,2694,2673,2673,1126,2690,1111,2105,2673,2673,1610,1707,1229,2673,1796,1280,66,2673,2673,2673,2551,319,2673,2673,2673,2673,2673,2673,602,1417,2673,2673,1107,916,2673,2673,2371,2673,2673,2596,1428,2673,2673,2673,1066,2520,2673,2673,457,2182,890,470,2424,2471,1247,2673,513,2673,398,2351,2673,2673,2673,118,2673,2673,2114,765,2673,2673,2673,197,2494,2236,2673,2002,807,1382,2673,2510,2871,2632,2673,236,227,2673,2673,1077,157,536,2673,2027,724,446,545,2673,537,2673,2673,2673,2234,2673,553,2673,2587,2673,2673,422,2673,339,347,2673,1432,2673,2673,542,2937,635,285,2673,1537,381,2289,1402,26,2673,600,2673,1764,927,2673,2117,2673,2673,2673,129,2673,2673,2673,2673,2673,923,2673,2673,1104,1157,2673,956,2673,2673,2360,1109,1680,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,1497,2646,2851,2673,1073,2673,2423,289,2673,102,2992,1415,2673,2673,2935,2688,2673,2698,2540,1301,2673,1634,321,1660,2449,2673,2628,762,1462,2673,216,2673,2673,2673,2673,2673,2543,2673,2476,733,2668,2673,2673,2673,2518,2673,2673,2673,2932,2136,2472,2673,1015,2458,2673,750,1523,1338,2673,145,2673,1437,2673,2673,2731,2673,2673,2586,847,2829,1484,2673,2673,2673,2825,64,2673,2454,2673,230,1085,483,2673,490,2673,2673,2044,2647,2673,2673,2673,2673,2687,2500,2673,122,2673,2428,2673,2692,521,2673,2673,2673,1819,2673,1564,313,2141,940,2673,1212,2673,777,2254,1693,2673,2673,2673,78,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,2673,2392,882,1600,2673,2673,2166,2673,2673,2673,2962,2671,2673,1426,862,2673,1474,2673,2673,1622,2091,2922,2673,2673,584,300,128,2525,2673,558,1418,1944,2673,2673,2378,414,2259,2673,2673,2673,1983,1979,2673,2673,2673,1989,768,1443,2673,2673,2673,2673,1286,1343,1775,126,2673,2673,692,2865,2673,2673,2673,808,2673,1833,2673,2673,2032,2673,2315,2673,2673,2673,2673,2673,2673,817,1070,1404,2946,481,2810,2893,2130,2673,2673,35,345,594,1423,1460,1256,2673,2673,1377,2673,2654,853,854,2673,2673,2673,114,2161,1809,1116,1766,2580,2673,2673,2673,2673,2673,2673,2673,1214,2185,2673,2940,1314,2673,2673,1515,242,2562,2673,2673,2673,2673,2515,1916,2673,2673,2673,2365,2285,2779,2673,1626,2673,1464,58,2673,831,2673,2630,2673,2673,363,2673,2673,2673,2673,1295,1494,2673,1028,2673,2673,2673,2673,2651,2960,1720,2673,1468,2018,2673,2673,2673,2673,1519,775,1608,2673,2377,2797,2673,2673,178,2673,2155,931,2673,2673,587,2673,2673,1615,1025,2429,2874,2673,2673,1412,1424,1471,2673,2673,2673,2673,2673,2673,2673,2673,1879,1530,2673,2268,2673,2673,1473,2673,2673,2673,1170,2673,2673,1630,308,2673,2343,2673,1854,1325,1387,2638,2673,2673,1291,2673,1009,2673,2673,996,555,2673,2673,1926,2841,2673,2118,380,2619,1187,2943,1200,403,2673,472,1851,1863,2673,2495,2673,2951,714,487,2673,2673,2673,1063,2673,2789,2430,2673,1166,2673,2673,1125,107,2673,1907,2673,2673,2109,2673,2307,2673,2673,2673,2673,1445,2673,1856,2708,1231,2673,2673,627,2823,444,2956,65,1313,2673,2887,2673,2673,2673,2163,1226,2673,2673,2081,2673,396,2673,2930,2673,567,2673,2302,1013,669,2673,2655,2673,2673,2673,20,2673,2900,2171,2673,1896,1535,2673,2673,2673,2833,2673,2673,1436,2673,2405,173,2673,1197,109,2673,2011,2673,2673,1150,658,188,2673,2673,1087,2673,1715,2673,2673,2673,631,2263,2673,1711,2673,2691,2119,2107,2673,478,1178,2673,1549,1169,935,685,2673,2673,2673,2673,2957,2673,2673,2673,2673,51,2673,2066,1990,1414,2673,645,1323,2673,2673,2673,2673,2673,2991,2031,2122,2673,2673,405,2673,2673,2673,666,2673,2673,2010,2673,2436,2251,2673,872,1714,588,2673,2673,2673,2673,357,2318,2673,2673,2673,2673,2673,184,335,707,2413,1885,1718,2103,2673,2673,2673,1182,2643,2673,2673,2200,1359,855,955,2673,2673,2673,1585,2673,2673,2673,2673,2673,2557,2642,2673,476,11,2673,630,2284,2673,2673,2069,1526,2673,2973,1020,2673,31,2673,2673,1516,2146,2673,2673,2673,560,2673,2673,2262,2186,2673,2673,2391,1096,1171,965,2673,2673,2673,427,2673,2673,256,2064,2673,2673,2673,2673,2304,2673,2685,359,2673,1560,2673,1441,2673,2673,2415,556,2673,2673,2673,2673,2673,863,2673,2673,2673,2673,2673,2673,68,2673,2673,2288,2673,2673,408,2673,2736,2673,1617,1322,2759,990,2673,2575,2673,2673,2673,2001,2673,701,2673,1842,1265,828,582,2673,2673,2673,2673,1984,1801,2673,959,2673,2673,614,2673,2673,2045,2673,2673,2673,2872,2673,2673,2673,2322,2673,2673,1051,2177,2673,2673,2700,769,2673,1366,2673,1731,2673,2673,2673,1349,2881,2673,2673,2673,387,2448,2368,1832,2673,2673,1941,466,2673,2673,2839,2673,2673,843,2673,2394,2324,1901,231,2673,2673,2673,2673,2075,2673,2673,1980,2959,1978,251,2673,248,2040,391,2673,1991,2400,2673,784,1227,2673,2673,2749,193,1923,1012,2517,1453,2673,1,2673,2673,2673,2673,570,2673,2135,301,474,41,580,2673,2673,2673,2673,1544,2673,2673,2673,1442,1081,1489,791,708,2383,2673,2544,2673,2673,2673,533,2673,207,220,2673,2128,2928,2319,1175,2399,2673,2673,638,210,70,1201,2673,1327,16,786,756,1529,2673,406,1565,2673,2673,2673,2673,2321,2673,921,2673,1297,966,2673,1289,2673,1548,2084,2916,2673,2286,2546,1875,728,2673,1807,2673,1606,2673,2673,2673,2673,2673,2961,2162,2732,697,2673,2673,2673,2621,2673,2673,2533,1191,2673,1902,2673,914,2673,2673,2252,933,2673,1577,168,2673,2673,2673,183,1397,2673,2363,2673,2955,218,2673,2673,2673,1202,2299,1481,2673,2673,968,2673,2673,598,1828,2673,2673,2786,382,2673,2761,2673,1531,402,2673,2725,2056,2673,2673,2673,2673,2673,2673,1067,663,353,2673,1699,2673,1625,2711,2673,2673,2673,1588,949,989,1410,2059,2531,980,2673,2673,1183,2673,2983,2673,1768,2949,2597,2673,2673,2673,2673,725,1238,1455,2760,223,792,2350,2673,437,2673,2673,2673,2192,2673,2673,2673,2673,2673,2673,2673,417,2673,2673,2673,25,2673,716,2673,2673,2673,1093,2673,2328,419,2673,267,1838,2673,1690,1339,499,2778,409,2673,2673,3,2673,2673,2673,2673,1498,438,2348,2673,2673,2673,2899,1491,2673,2523,281,1454,2508,2790,2492,2147,2346,1155,1772,2673,2673,591,1627,1904,1080,2673,1405,2673,2673,2673,2561,2673,2673,410,2673,1547,2673,2534,2673,2158,2981,2673,2673,2673,266,2673,2673,2644,2673,2920,2673,2673,326,1022,2673,694,2673,2673,879,198,2673,482,2673,2673,2673,2673,2712,2673,2519,421,1371,2673,2380,2673,1172,2673,2070,428,392,2528,2504,2965,2623,2673,2673,1545,2673,1826,2673,2179,1973,2060,2673,1065,1620,2673,247,2673,412,2673,1849,1910,2357,501,2673,1951,2673,2673,2673,2673,1629,2673,2673,2673,1030,1659,441,1362,2673,2673,2673,2673,2673,2793,2673,2673,1458,2673,2673,1673,1646,2673,2673,2673,1789,2828,2879,2702,1518,2673,2197,2673,352,589,471,2673,2673,2673,532,2131,2673,111,2673,2204,755,149,2673,2675,491,2724,2673,204,2673,2673,2942,2673,2673,2673,2673,2314,1733,2673,2673,2740,323,2673,2673,2007,1152,622,1133,502,2918,2673,2673,2673,1097,2316,2954,2673,2673,2673,684,2673,2466,2673,2673,1624,2673,2571,1277,1292,1110,732,2673,194,2673,858,2649,2673,22,2673,554,652,2673,2673,2673,2157,2673,2673,1162,2912,2554,1780,2673,1198,1704,919,2673,174,377,2673,2673,2673,2673,2673,2396,2673,320,2673,2673,2078,2437,2673,2673,1855,2673,2673,2673,2374,1290,2673,1873,1934,2673,2673,809,2485,1264,2673,2978,400,1738,2673,1207,2673,1823,2673,2673,386,1492,2673,2673,1961,2673,2154,2673,2673,2673,1136,2673,2673,2165,1228,2605,2673,2673,2072,2673,2673,2673,636,2673,939,2625,2673,2673,2678,2673,2249,87,2641,1513,941,2840,2673,2850,1869,98,1469,2281,2473,2673,2673,2073,2751,2673,1638,1745,2673,2673,2673,2673,902,93,688,2673,2673,1358,2673,1603,1773,2673,2673,2673,214,2673,2673,2507,2673,1129,2673,2673,2673,2673,2673,2673,653,2673,2673,1482,1475,1411,2673,2673,1949,2673,2673,1594,1635,2673,612,2062,2673,2635,2673,1014,1677,2673,2673,52,1692,2673,1579,1237,60,2673,2578,1115,2673,816,2212,2815,2673,2278,2673,1332,2522,1599,2206,1728,2636,434,2570,2673,2673,2673,1778,2673,2673,1444,2673,2673,1730,2673,1121,2311,1242,496,2308,1179,2673,2846,938,2673,1790,2673,2673,2673,2673,2673,2673,2673,19,898,2673,340,2999,420,2673,2673,2673,442,1146,2673,2673,389,2673,810,2673,1363,2673,278,2832,1595,2673,2025,2673,2673,351,2673,1023,2673,866,2673,2673,2673,2673,2164,2673,2673,1335,429,2673,578,1319,2673,2673,2013,2673,2673,985,957,646,2673,1036,699,2673,2054,1619,2673,211,2673,2673,1712,2341,2673,2673,2673,2673,404,2673,2673,2673,670,2673,2673,2673,1310,2511,893,2673,2168,2258,2673,2673,2673,2938,2673,2673,2673,2673,2673,2673,2777,2673,2673,2673,2673,2673,2370,2673,2673,2673,746,2673,1409,1163,2673,1490,2673,2673,2265,2673,1960,2673,2673,205,2673,1864,2583,2673,2673,2516,2342,1876,312,1240,2279,2673,581,2337,848,744,287,2673,148,740,2673,2673,2673,2673,2673,1477,2673,2673,1103,1532,978,2673,757,1089,2673,2673,2673,2049,2176,2673,2275,2673,1756,2388,2673,1992,2673,330,1407,1027,2673,2673,2673,559,2673,367,2673,2673,1663,2558,430,527,2673,2673,2673,2673,2331,1105,2673,671,469,2673,2673,2673,2673,2673,2673,1145,2673,2673,2673,2948,2673,2673,1874,516,2673,1868,719,2673,2673,1748,2673,2673,2140,2673,2673,2309,2673,2673,1798,2673,1562,171,2033,721,2673,2673,2673,2673,2673,59,2771,136,1380,2673,2673,2858,2673,2673,760,424,561,787,2969,2648,1755,2673,2673,2673,1046,977,2673,2673,2261,475,1621,2673,2673,2545,1493,2673,2673,2673,1684,2673,2894,2673,2306,2673,2673,2673,1524,2673,929,2218,1219,2855,2673,2673,1031,2673,2356,2673,2673,2931,2673,61,2264,315,2673,1889,2673,2673,2673,175,91,2673,2673,2673,2441,2673,2673,2673,1593,2673}

    2673

    2057

    Returns: 602981467

  122. {2071,2127,2199,2237,1869,2275,2715,939,2312,2928,2166,358,744,2083,1299,2949,2892,1476,227,2065,537,715,1645,1210,2725,1856,649,1002,1583,2649,313,2943,1028,448,660,282,2636,200,1438,2642,2579,2571,92,512,1315,2639,1000,2806,1503,1494,373,603,1172,1775,876,1566,1950,900,1574,2396,2679,2100,2733,476,617,1529,1087,2356,522,984,310,66,768,1726,2475,1089,2877,1792,442,1868,1183,2383,493,642,1211,1186,1321,1965,1957,2823,2080,1536,841,2065,442,2615,1077,1576,2499,2495,1349,322,119,2110,1553,319,1377,2477,2688,2264,846,992,2419,1848,1734,149,1459,787,183,54,1532,2309,2435,2444,2790,386,788,1924,997,285,2313,994,643,2723,2006,2393,2332,1659,945,957,329,2497,917,463,1640,1795,361,1710,1409,1559,2301,665,741,1912,863,2416,2933,2561,872,1670,1033,1725,763,2644,2161,176,490,2345,2000,1094,853,1642,2337,976,2778,2273,2813,2227,1874,2267,2915,1059,1222,836,1249,105,335,2694,2107,2965,141,1502,1980,1767,1966,138,1007,2816,2656,751,2103,214,1630,1762,820,2707,2709,2994,2157,2535,250,36,1810,657,316,27,2548,2628,608,1226,237,2605,576,2661,156,1816,545,930,2276,1491,2575,2569,2265,813,2353,1632,327,1402,191,2619,2596,69,694,2593,2348,2998,1239,776,525,1295,2507,562,1746,1191,2703,1611,504,2878,2146,293,686,187,2949,2475,1599,527,1090,2414,1638,71,230,312,2168,551,2865,383,1289,1554,226,2378,648,1665,1643,2077,1196,1444,1782,311,62,81,2058,1972,1250,1437,62,1375,1154,1214,112,2574,1621,2245,1829,2027,541,40,1715,104,2703,1901,2012,1604,2672,370,372,571,1612,2809,578,778,1903,1302,2087,2499,488,269,2206,2867,191,2359,440,1331,1435,1440,2574,1152,1708,1225,1386,1187,1809,890,2867,1570,1175,988,794,666,2117,835,1103,1990,751,1794,2441,2863,1790,1636,178,1864,2589,2639,2090,884,727,2266,2845,2043,1817,1598,2002,1206,1714,1658,2063,350,1107,2760,420,1304,2173,131,687,1698,234,1977,2514,792,39,871,2076,2776,2392,1025,2961,2250,1343,5,1831,337,800,1626,1660,2909,390,1680,1018,2945,472,350,2565,2969,1990,1287,273,2467,133,1057,343,927,1688,653,1363,2910,2289,909,2351,2691,1649,2326,589,314,124,1381,714,1720,725,661,955,842,2914,1596,163,245,901,2531,2984,2485,2296,2795,765,1472,2460,2184,532,558,1337,2800,2060,1544,1761,1486,1148,1328,1928,2716,2059,1789,567,914,1987,597,1547,1812,2970,2216,1116,2,622,2682,2893,2667,474,436,1468,2933,771,1361,2474,2188,1395,1273,254,2415,146,1859,2427,2832,2135,1416,833,468,1772,2113,2192,653,1814,2225,1138,1724,2939,602,1329,1677,930,2509,2434,1429,2815,23,2881,2452,610,1618,484,341,257,73,582,374,208,1424,280,1942,26,1839,801,1406,1076,1501,1522,986,2954,2132,1973,391,2130,1776,788,1853,2566,1887,320,1975,2445,2010,907,2121,2271,1100,2231,585,1873,1286,1526,2610,339,2108,1041,337,290,1257,2671,2078,2401,1245,1748,1826,1267,1759,1813,2369,41,320,1517,2261,876,868,954,2680,739,2023,1575,1118,2952,1555,1508,507,1350,552,981,655,1997,363,1354,913,1314,1119,2350,2109,2464,1589,1290,2129,2112,2957,595,117,99,1046,1031,2999,2039,2252,16,2452,2515,1462,2583,618,1542,1773,1630,1382,2839,2182,212,2195,1301,2585,2073,209,2385,1594,2440,2471,972,1783,302,154,394,2996,65,378,196,2965,1923,1497,2763,47,397,696,1685,834,93,574,1363,2563,1446,2974,1569,2552,2057,2118,61,2336,2936,335,1851,467,256,768,2099,1036,1090,2512,1205,2870,1383,2422,2536,2409,1497,1323,1081,1646,2940,2963,348,1400,1981,1372,980,2018,2316,120,37,882,2280,2805,716,295,2100,2820,1078,1994,195,496,165,2752,1193,2643,2129,784,46,2657,723,1425,908,770,1838,2343,1308,135,1421,114,408,2229,1956,2167,2450,242,2478,1407,2861,2995,968,1045,1595,1550,336,2955,941,851,2690,1408,2119,1056,2775,160,2993,2517,2277,256,2925,1463,2752,2787,1551,1185,2029,519,2673,2645,1440,429,1638,2097,37,701,591,687,1412,1963,2004,1169,1502,212,2174,967,988,1571,1433,544,978,1143,2648,801,2407,2962,1899,2021,1448,2135,2514,1667,606,2572,1704,1986,2547,2028,2263,1805,367,797,2054,2243,309,2250,2137,2668,2487,2649,2724,248,253,1238,2946,470,2826,633,121,2857,2575,1654,2520,923,328,160,2896,1831,858,2111,1150,2238,1924,1339,156,288,1565,268,61,2990,2145,672,1410,948,375,2887,2860,650,278,91,2827,869,2895,2650,2084,571,1024,1051,473,2800,129,1702,904,963,1395,194,1342,718,1650,1526,2972,823,164,2224,2686,2009,887,965,2138,2112,1588,279,194,2154,635,2036,42,1149,2860,446,198,2910,241,528,2161,868,975,830,706,2877,2358,2150,991,2306,631,1319,2854,806,1093,91,3,709,275,53,1161,578,2183,597,2274,1832,1708,575,399,2324,1679,1642,2505,2817,2084,2386,2549,2319,2278,76,2865,1043,1552,1322,2126,1069,2989,1629,2011,1964,615,2496,1187,462,387,1646,456,10,1062,1703,923,2421,1489,2824,1381,1469,483,453,2856,1013,557,217,2225,1179,1969,262,574,749,2402,601,1672,2025,618,1101,1393,2726,1135,271,2389,497,1430,1606,60,1910,2489,2440,2562,1579,1727,799,2942,281,2447,763,906,2981,1765,1530,952,1012,1131,2696,492,1183,1941,2918,457,2629,2096,1754,1739,1656,123,90,500,2655,881,1379,1247,155,1791,1824,2310,2818,1359,425,416,2217,2163,1252,2490,1168,18,2567,2424,1977,1457,2695,2001,77,2986,2769,829,2196,676,588,1132,2516,338,1398,2727,2771,1779,820,2666,1387,2412,1911,96,2240,2998,673,568,2953,1651,2108,1785,2066,1020,1373,1847,2071,1380,2361,870,1308,2792,1291,2747,1239,527,934,1097,76,2848,1088,1488,1466,120,650,2620,2824,479,1054,1160,2537,2346,2712,2040,295,999,669,2821,559,770,232,88,944,766,2028,2978,2838,150,347,1516,1593,2214,473,1663,556,414,863,1695,173,2982,226,1592,1798,2602,2239,1927,2767,1276,2139,2711,126,681,2015,2271,2654,209,1368,730,1325,304,584,2448,51,807,1888,555,2272,324,878,84,1430,1563,1971,1156,1039,1052,1153,2539,2067,231,682,1451,1828,721,715,112,1689,2413,2314,1796,1627,1989,382,2102,227,2376,128,1692,2335,683,272,795,1710,804,34,303,1750,1705,2641,228,72,1075,11,1104,2700,1293,180,1811,2723,883,2085,1839,1202,849,83,2617,1052,1629,591,1277,499,2160,2559,955,683,169,647,1485,603,1848,378,2880,2924,2372,480,564,1402,1481,489,1170,628,1219,397,1438,133,2616,2344,605,1328,1863,103,301,2699,170,2685,521,1190,1568,1479,1166,1690,848,411,622,2897,109,259,1964,895,1356,437,1447,64,2463,491,1101,2802,2147,1519,1192,233,1182,1511,812,2172,623,2556,1480,2794,1431,1627,142,1589,2862,2772,758,417,2183,1821,2862,369,1278,2921,1148,1414,753,2840,2597,1038,699,2573,526,2982,2646,1324,855,1846,2544,2501,179,1731,2825,743,355,99,2843,2089,424,2812,1603,2144,985,2092,2798,390,2821,1113,1422,1601,2345,2976,2582,792,1736,1957,738,893,2064,2300,39,2979,2529,1065,1651,1753,539,2912,395,2480,1584,2032,2977,169,2658,2636,479,461,303,2303,586,626,964,2321,969,1399,2653,899,2852,2033,1766,516,1193,1038,202,2626,2486,659,1952,2859,755,2783,1281,2834,1454,2492,1893,1876,1978,2335,972,2145,1560,1289,2634,1759,821,2687,108,1376,2707,1863,130,732,2466,2060,713,32,1813,1280,1561,1288,777,848,2175,2110,1736,1729,2282,843,266,1412,1805,469,1122,38,2850,1235,1439,1480,753,2791,1953,1354,147,1248,1824,1022,29,2792,850,1254,2042,2705,594,321,2056,2551,786,586,2293,2487,2006,2477,638,2826,1414,684,2295,615,2876,2777,1525,2020,1116,2263,1523,2796,1034,415,2709,1985,595,454,275,1790,1752,1675,1850,1919,1088,1940,2179,2997,736,374,1266,1428,2062,859,994,565,2665,1442,2307,2122,2656,2997,614,2419,2137,2680,679,2037,783,2578,1173,2606,2662,259,1377,1496,577,1825,89,1317,1935,2944,1468,204,2694,2229,1779,2354,3,53,2579,1400,1486,2406,2601,1622,1146,2764,2539,874,2153,1539,1154,931,2363,1576,153,1035,536,789,1223,999,678,1142,2266,2211,533,2118,1660,1186,810,899,2147,1287,691,1164,1240,2391,1080,2143,1755,1243,407,1803,2502,1864,594,697,153,1906,146,2632,2960,1709,738,2987,639,514,1474,596,189,2635,1649,1353,267,989,601,20,2389,1197,2571,1901,642,1673,1157,646,383,2429,87,247,294,1935,229,1452,1917,938,276,2150,900,1775,142,2722,2702,1828,2621,2816,2917,1199,1915,1263,2376,2929,1241,2331,385,583,1596,2178,1137,2697,1684,2473,732,1564,1504,2570,1938,859,2341,2963,1238,530,971,381,2022,307,892,634,280,211,572,2731,529,750,2696,1811,2505,1617,2425,2948,2341,401,485,898,2142,1243,2259,2712,656,2164,864,418,1475,1770,2209,1203,2711,1303,1123,1986,2124,59,1475,362,2851,680,1464,524,272,1283,2957,739,1153,2717,2247,1842,906,1208,974,190,2446,1545,2833,1923,2394,2398,2200,773,115,2264,522,1067,2822,2795,1540,2778,1922,1441,2633,1330,987,1309,2073,86,1720,398,1053,632,2034,654,286,2863,1487,786,1259,1833,1461,1754,638,1808,1260,808,2728,996,16,2907,2009,1449,2491,1678,2048,2984,357,838,148,1282,4,2460,2331,127,1766,2587,1757,1798,806,2230,424,1682,458,921,1692,2903,187,305,888,248,202,1917,447,931,2919,726,2471,1583,2534,1048,1338,916,2618,2621,2103,813,1459,1403,2699,865,2169,245,1472,484,728,2047,860,316,1432,991,2789,1413,296,1586,1516,1659,348,769,2560,1017,2193,1375,7,694,2080,1426,2019,1272,1771,1837,1506,2705,1142,2269,2591,382,78,705,22,2597,2156,950,2676,2681,48,1771,509,903,1269,2796,1591,935,2599,2310,867,602,695,1723,1272,1055,2386,1949,1728,2334,1512,1147,877,2169,2856,740,2409,2333,1371,1004,2035,2939,110,1117,2317,1519,1991,2904,2714,910,1749,555,685,2944,2244,2230,1838,1862,1634,2793,2798,918,2020,28,1384,1601,1493,2762,557,632,1881,0,2915,122,2761,553,935,1477,547,1995,974,886,2806,2075,1129,67,956,668,1912,1983,1769,12,1366,2980,1423,384,108,640,2126,164,2496,580,1384,592,1830,1374,2521,1099,2217,1622,1625,2242,956,1284,1102,2774,95,1956,495,702,1807,814,769,607,2861,2243,2370,1602,983,554,296,891,434,2450,1319,1898,297,1426,566,1782,2594,1244,2219,743,225,218,2259,677,558,575,2024,1797,2413,1945,1937,729,1560,1056,1955,249,2327,1024,1701,351,81,1341,1237,674,2203,1229,2892,185,1881,1057,1484,1556,1763,2351,1661,684,367,2363,861,840,2470,1434,167,736,630,1734,2486,2224,1801,1044,2220,466,711,1605,502,1467,1623,1202,1270,1318,552,2768,2141,1365,2093,2993,2737,1408,2905,1362,1861,1918,1897,2609,2558,837,481,206,966,1205,1188,2666,70,2237,1514,134,690,1825,2794,752,2987,1557,1731,811,926,2745,1876,1722,398,477,2876,2760,1483,2381,883,648,2157,1975,814,1522,1129,2116,1512,2373,318,389,1420,1022,1401,14,1894,2999,1737,78,1704,799,1092,1284,960,2391,1300,2743,2187,1669,1365,672,2660,590,523,827,2580,646,2136,1361,2403,1360,2209,330,1524,2350,790,1010,293,391,1827,1929,244,2425,660,728,2803,612,1992,1213,2164,1993,2988,538,1758,207,144,30,2404,1822,629,509,2035,2270,1614,1483,2267,211,944,607,629,1784,1460,2322,85,1151,1382,2577,773,1394,116,483,1821,918,2122,24,365,709,1905,604,2829,123,1013,2099,1962,800,216,358,55,1487,1605,38,549,79,14,947,138,1545,1496,611,1027,289,1776,860,364,1650,2070,2683,2973,353,708,1520,2864,1867,1501,2070,344,345,2408,705,817,2120,2786,2079,1253,1021,951,2750,2227,1793,84,45,2805,1235,277,2459,1717,363,1786,1758,12,2456,1302,2068,2474,1892,2844,2961,662,1091,1350,74,2406,2465,676,2307,1342,476,589,181,1133,2734,328,174,44,2457,1212,167,1564,1335,1932,1538,412,754,1115,2689,2516,2872,1189,1160,2289,1221,2036,418,894,1074,781,1246,2356,2891,2704,2746,1421,43,2255,2677,1898,1398,912,1132,2785,2977,118,1003,332,2393,1218,2952,2371,400,2423,315,32,550,1309,1077,73,475,371,1713,2966,1111,2330,289,65,1434,1509,2371,50,784,1756,2233,1478,2911,2241,735,724,2280,2234,518,2756,808,168,1663,1802,2321,2312,2016,2240,386,1570,1418,1312,1158,2590,720,1410,1953,1473,2551,1563,1220,1997,2628,905,2912,1112,1930,1201,506,402,1071,823,2701,1668,2162,2570,232,2520,1628,1781,186,2457,2072,627,983,1323,2463,1804,1513,2652,161,748,664,2835,1944,942,2223,1920,431,790,1405,1905,152,2522,2302,1290,881,2096,1125,1730,1479,2612,2001,2953,2931,2133,2400,2972,1093,2742,1801,2447,2123,399,2580,2045,1068,2173,2430,914,1890,1076,172,1293,2381,393,891,2714,1980,2501,2029,284,2374,2142,2433,239,1285,1954,2588,2226,1109,2374,1446,2304,2928,2738,675,2166,758,2394,1316,669,1803,322,1551,20,832,1246,2812,911,1161,781,1055,2388,1961,957,2362,730,250,236,1337,1325,685,1045,724,430,1666,82,1016,1262,2708,2189,1169,2889,2614,240,2325,1273,1232,1086,1664,2608,2423,2235,2030,2904,2387,2582,1500,1998,2165,2766,2932,2804,1743,450,1159,1914,1234,842,1163,1370,1833,2841,2233,1170,2653,420,580,339,462,2801,2494,343,1741,637,448,1592,2288,2754,1751,608,1742,1595,1573,1334,190,934,1189,2773,688,760,2420,977,1329,2128,2854,60,825,1567,1568,2678,1019,101,2885,2051,2420,2298,879,1698,2185,1277,895,2385,2101,2198,1317,307,2143,1921,928,1527,2342,2622,2202,2097,829,1073,228,326,2749,512,2234,958,2340,1464,1693,1182,422,2584,1080,1855,221,1951,538,2121,1456,1686,2770,1177,2991,2718,308,368,2337,302,1288,360,936,2875,1542,2554,2330,611,1707,125,1126,950,2038,478,1617,1167,283,2535,437,158,300,1495,659,1241,2930,1275,924,1095,388,282,203,1046,1449,1647,125,1049,1902,2123,976,313,2033,2755,759,198,873,1541,2908,2072,1048,2744,252,2449,2894,2577,2538,2158,1800,254,1580,2039,2819,1177,2410,1463,2684,2855,2732,544,2218,1357,2923,1490,1059,1112,394,90,1137,1936,2716,2014,2151,1764,644,776,2155,517,2012,2533,1786,1407,662,519,0,1106,714,2736,1498,1747,857,2362,503,2011,733,2053,281,2932,1305,1097,1793,2797,945,1532,411,1725,1303,331,866,288,1573,2179,80,1574,2983,1534,1706,2873,43,2866,46,428,663,1211,342,2247,2557,562,1575,2153,2529,1795,59,831,938,1294,2026,1537,2026,1385,404,1267,1846,1367,2472,966,741,1120,686,703,587,1436,1389,404,1745,1258,896,2941,1878,1096,1648,17,1882,521,937,44,1295,824,330,726,2171,2253,1883,943,875,2996,850,2948,2491,2481,314,2735,2956,2411,2623,10,1971,2313,98,1558,1184,2008,652,2,1655,970,828,2550,2844,145,2218,704,794,291,70,2190,1853,1083,975,2181,1578,772,2917,1347,811,689,826,1108,1465,96,1639,458,467,2493,2222,377,644,1050,1194,1561,2244,1470,1098,2276,412,2366,2228,2418,1711,2630,696,2735,2158,998,2768,2236,742,1858,1585,2959,2397,2165,2055,734,1360,480,1783,1306,2967,1276,2764,1884,2007,1015,1604,2689,97,1037,2061,396,515,2916,1429,2780,2005,490,2482,803,306,1830,2003,175,2541,2578,1691,2049,1885,1908,461,1581,1827,413,2975,2532,2935,549,1591,2807,1254,2784,15,2316,2130,403,1983,2611,2990,1306,537,2417,1987,2404,2398,759,2293,2348,2857,2913,2207,1215,2958,182,2454,897,1706,2909,858,915,2503,243,1587,2495,58,2888,140,2647,853,2556,1745,352,1278,2380,361,1929,1741,1491,1391,2775}

    {238,2581,836,268,2159,1835,2119,747,2156,2536,744,2518,1242,1443,2866,1845,2968,1679,920,2851,1872,89,365,2751,1902,1021,911,1774,540,2829,1549,2309,1115,376,2089,401,2927,2476,1258,535,818,1119,498,163,2980,1191,2527,56,154,2771,2922,2186,31,1939,2643,235,2207,1099,2759,1974,1326,423,2318,2462,2873,707,137,1849,693,528,2658,505,2228,1618,1860,1531,713,1248,2585,278,1969,1471,170,761,1667,63,554,2459,1355,1336,304,152,243,2901,1687,2906,1014,2672,1744,1763,593,1282,2738,1926,798,2872,1723,673,1643,2822,1781,2793,2743,2114,2759,1819,2978,1174,2532,2827,2294,980,15,1870,1420,333,1817,460,241,1226,2037,2675,2443,619,2985,1818,1231,2358,1230,596,785,2095,2626,1371,1393,2870,1140,862,33,1029,1836,2895,1047,1388,1896,1255,2531,2078,2721,1634,2212,2543,1333,2198,1606,1105,1834,151,1702,524,2378,1117,362,183,130,2692,640,2576,106,1042,795,2305,665,115,1155,2091,2545,491,625,1247,2883,1370,2190,354,2600,220,1121,1572,693,236,2756,2871,2766,186,372,1569,674,2043,1718,2956,35,432,1315,1073,2613,1123,2930,2511,2221,824,2109,1700,2311,616,2091,1335,1641,1716,2708,2213,249,122,2625,2960,1709,51,1388,805,1265,877,2886,2268,128,1085,936,2620,1958,1636,159,1416,400,581,723,159,2038,2067,1834,719,1156,1105,2232,1773,2938,162,1871,427,2377,2754,2446,2141,1413,815,1232,2914,166,1265,2500,1891,224,1462,1999,2964,946,1963,2524,95,1296,47,782,2333,149,1419,359,2498,1947,2344,1593,2673,1672,1415,904,949,1280,28,2302,2204,2692,2258,830,1196,961,265,718,647,1275,1195,1025,1961,292,262,1155,2832,2415,2846,1192,2814,2776,1107,857,2644,323,1514,2823,2878,6,1687,2951,772,2315,2837,1982,1461,1165,2338,1633,2014,380,2807,2730,2524,2454,1333,1313,2177,2081,1794,1970,422,66,2648,2549,203,1590,2559,1841,1910,782,2346,1842,1520,332,2750,1950,804,540,2134,579,443,2645,1879,2317,1860,1571,1346,1940,319,2416,1349,2030,783,1943,1959,1678,2891,299,2483,1921,2468,2916,441,1791,624,72,1549,2081,941,789,1645,114,762,961,2618,2498,1503,651,1140,688,2421,50,1198,553,1742,2565,251,1972,494,600,2671,1807,1695,1065,1259,1219,2810,716,855,1755,1061,2366,1136,2353,2184,604,1164,2607,1397,2287,1471,94,2964,1994,633,1307,92,341,2265,2801,1058,338,2429,2841,2481,1615,1608,2451,525,735,31,1341,1373,2664,621,1559,2392,1143,2886,1072,2438,2951,1666,1108,2526,854,1347,406,1968,666,663,1040,1662,2418,548,1760,109,1051,590,199,703,64,1988,919,2874,1599,1684,2906,722,545,2354,979,224,2991,2510,510,2255,2729,2830,2111,220,2027,1859,1799,819,178,2068,1467,1840,793,1352,2843,1233,2201,2162,2753,345,1508,2329,2962,576,1624,1973,1932,409,2286,1525,1353,2508,2448,531,1528,2834,119,2458,1730,1869,1224,2642,1716,1880,1458,1565,1345,929,1694,1721,1844,417,1531,1715,2624,1336,1198,2835,734,1271,2297,2869,1515,134,88,613,2635,963,2131,455,2523,1419,907,2799,1582,2610,1792,140,238,2349,765,1925,433,1628,1806,1637,2903,104,452,356,1450,2178,57,775,971,444,1925,2284,712,1339,2611,2079,1624,274,1174,235,1070,351,1106,2734,1993,2314,52,1418,196,1802,17,1364,2595,2034,2197,518,1422,2605,1404,670,1635,1841,1390,2631,2934,2176,774,185,2349,244,2469,2382,1696,426,2831,1447,1356,2943,2352,8,356,708,952,1897,1230,1597,352,1900,2719,667,260,2208,2542,1610,2934,1894,621,2210,2698,2591,2546,2815,1081,1473,856,1732,845,2291,1214,22,523,2047,315,1505,2279,909,807,2396,1726,1787,1127,80,1041,1580,237,1372,2238,1701,671,749,184,1305,261,2004,964,2751,2695,2513,787,2069,1747,285,445,255,334,1597,2630,2547,1635,1355,2992,2048,97,2685,1141,981,1607,1145,2598,668,1787,1269,2292,951,2483,349,1968,392,1686,1552,2087,1959,1572,969,2489,1442,2069,1069,1711,862,1245,1484,1837,1409,269,2395,381,347,1445,1159,1904,2920,52,1693,287,2094,762,628,2534,306,1331,1733,2828,1683,403,1587,1178,896,1190,2485,1916,2256,82,2210,2852,912,1536,2347,2214,1171,2449,852,2107,2484,1488,2679,825,298,5,2739,1200,1340,2211,2458,1546,1852,2593,1152,1879,764,375,246,1165,677,2116,561,2160,451,1212,2767,2950,2971,619,809,822,1173,1311,1291,2897,2989,286,2540,24,1244,725,55,1379,1133,457,1139,2369,1586,2479,2272,2170,2430,1862,802,2717,35,2967,1780,2513,1222,25,2995,2248,270,392,1297,2898,922,1843,1872,2357,2088,2303,2758,583,1217,1588,507,2249,1996,1523,1533,2788,240,1546,1195,928,2828,1141,21,451,1907,349,755,867,475,2167,29,2064,2288,1,2926,1179,1609,1681,929,2319,2095,882,1225,2241,472,2191,2180,546,2055,2831,893,1547,2553,2586,2426,737,937,1654,2306,1735,854,2662,171,2650,745,2678,2748,505,2284,2205,485,459,1399,2152,2512,1139,1149,42,1242,7,2171,847,1885,1507,2281,1899,2511,421,1500,368,2186,247,346,1760,1778,2879,1931,1889,493,1631,2773,1178,1233,2545,2896,1823,49,2966,2318,2405,2132,1865,85,2664,438,1380,2058,733,1535,2765,760,1095,2046,1026,967,780,1856,2747,1544,415,1915,902,2640,1556,2298,2200,205,1870,699,433,1770,1919,2510,919,2846,446,2500,2304,1432,1403,71,2208,2397,2092,143,2880,706,175,982,625,2465,2497,1304,2203,308,2274,1851,2427,654,504,678,1362,1417,1875,1665,86,532,1815,1019,188,2377,605,111,2008,116,2370,2445,2170,2295,2468,1180,1035,2432,2606,2596,958,1806,2299,264,2688,2433,2492,2922,884,1769,1204,655,1603,2105,2975,1614,1633,2051,2651,1321,1028,2098,1931,2811,1521,2436,291,2722,846,1854,2010,1043,2488,1261,1444,204,1668,2869,2301,1037,796,1322,1470,873,1784,2399,2698,1823,746,1476,2732,1785,2088,139,2646,447,2777,516,1895,543,19,2059,213,534,1453,761,2781,176,2212,2412,2652,2888,2868,1005,2262,1268,563,2061,1974,2456,1213,2813,2941,2324,2232,2603,2697,2799,2086,421,1000,2114,1320,1124,311,2189,2849,470,2172,2357,2627,1543,1621,1102,359,2581,987,2194,453,1955,1680,1814,1009,2476,2730,63,2654,118,2947,129,1492,1150,2515,1307,2375,1978,2940,645,689,1658,922,1922,1558,1966,2706,466,1089,1215,264,1327,791,2590,742,2677,1538,1697,2757,471,2908,1120,1366,1489,158,1749,379,1216,1619,1883,2617,1861,2983,2935,2382,1567,2441,2509,1147,439,342,1256,2533,201,1965,641,1674,450,2077,2256,57,1740,2947,746,274,2125,223,2311,2437,2216,2076,40,2836,1928,2954,106,756,2902,1852,1079,1320,2744,1318,2612,2479,2765,1676,2818,263,1960,946,2604,1498,2700,2592,2204,1889,1768,529,2555,2882,2044,354,1201,965,1913,301,2849,395,2920,979,150,844,487,1677,465,1456,2633,2634,599,2506,1157,664,700,201,2607,1394,1111,1866,193,388,750,2098,2889,1697,614,712,1184,1469,2327,1136,265,1032,2507,731,1528,2046,996,1820,1256,1261,1034,1401,547,2202,2890,2900,2283,2521,925,1188,1194,1653,1453,1145,573,207,2763,217,1236,1005,573,1221,564,2154,1699,2583,2927,1744,329,1208,1752,1344,405,561,2713,2833,1849,1600,1891,1652,598,396,1511,1689,939,2464,2134,2925,1789,1509,639,998,2858,2390,502,2329,2013,1433,636,2133,1548,1012,1441,2784,2185,875,2467,1880,172,157,495,234,2361,2246,192,1436,2988,827,1251,173,2439,1909,641,229,585,2453,2040,434,973,1451,1312,2986,1724,2875,2727,933,1616,2748,1297,2297,246,508,2802,1085,2320,721,1270,486,2506,2884,1130,2955,1600,2523,2588,2682,698,2809,1893,890,1598,1060,2193,1579,1540,2395,155,2473,2379,1936,2911,878,1504,494,1445,1047,520,13,2494,166,1926,500,2540,913,658,144,778,1510,1053,2455,2797,670,949,2050,2290,1625,75,136,2772,2855,438,1728,2905,2115,1011,513,2557,1351,1641,2713,657,430,1877,1553,2399,2899,2686,353,23,2737,2286,962,2444,2669,1873,1780,1847,1788,2338,2054,2684,1729,323,1664,1299,1738,803,215,253,2106,2148,1340,310,2022,499,2546,233,9,2619,1914,2493,1707,774,2294,2901,2859,843,213,459,1890,613,344,136,984,542,2894,1675,1405,2847,2883,1207,2657,1495,1002,2052,503,2882,1992,570,469,4,406,1144,1797,1443,13,1018,454,1281,496,2102,2182,30,498,953,852,752,321,1930,831,2407,1774,530,2563,1835,1121,2836,200,449,1114,2400,74,1984,1094,2340,870,2845,2803,1652,2339,19,1761,1539,101,1209,1610,993,127,6,1166,1344,1960,2663,110,623,1632,915,2339,2194,2453,816,2874,1130,290,2601,93,2616,2780,2603,2151,839,2367,2480,2667,1976,1292,2647,366,407,1735,1,1457,1944,1524,1084,327,1064,2665,2544,1135,471,812,2442,2837,992,2604,197,920,2742,1946,834,567,1875,1482,2308,2115,2668,1250,2149,2720,835,620,371,2451,2594,1631,566,2152,2003,1989,1722,1011,1999,2066,126,2728,1359,1982,1396,1378,1369,1114,1279,2222,1909,796,1918,2613,592,542,428,838,777,1260,2753,1820,2564,2439,2292,513,2431,1206,11,2779,671,2614,222,165,2842,1477,1008,1128,184,2063,690,1358,1826,135,1985,2839,2367,2016,2257,2858,1167,2981,1240,2814,887,1845,1392,2508,1671,2517,277,1040,1967,297,2090,889,845,2435,197,2710,1907,1699,841,501,2641,1748,2973,2148,2609,511,1216,1172,1127,1030,177,1058,435,1078,419,849,1714,219,271,270,1271,748,565,695,2958,2733,1900,1644,79,560,2624,2388,947,1772,1031,805,2573,2627,1865,2384,533,2192,1448,1557,1757,1424,2290,719,577,1368,1217,1683,218,2442,1204,179,2275,355,2674,439,1044,463,2525,1171,263,369,2410,2360,2595,1585,1072,506,145,729,925,2269,1836,880,2817,276,2136,1700,2864,2881,1903,1949,2411,440,932,492,107,2128,953,1721,598,1411,1068,1283,1415,161,1298,2808,2326,704,1505,2424,102,2587,2482,1954,1608,1840,517,2537,1351,2576,2736,1264,267,1739,1737,1082,257,1364,1854,599,634,195,139,2890,818,1594,2871,2199,2555,1998,1911,2005,2383,809,2041,2140,2249,2741,1481,2041,1942,1352,464,874,1454,2879,2296,2422,377,2044,2334,2929,1653,431,954,2245,1001,2025,828,550,587,569,334,340,2567,1427,1482,1014,2328,2599,402,1185,2758,2438,1938,2674,98,2372,1623,892,1369,1738,2761,1003,325,588,1007,2558,722,837,995,1713,1180,717,2268,1252,1435,720,2676,864,1882,2042,771,1082,2205,1357,1223,2082,2622,193,1455,2432,2018,33,2221,1751,2270,2131,1465,309,414,1892,1134,2519,1311,2437,2175,593,435,87,745,279,2239,2144,318,2196,1941,932,69,2402,785,536,2181,1607,1001,2519,2082,631,436,1316,2285,933,2550,1229,2663,982,429,510,1620,2541,105,2721,2548,336,2693,2693,215,1383,1521,2469,959,2923,1620,869,2502,298,747,1036,2163,252,100,2101,702,157,426,1778,2075,1644,1176,1857,189,548,2566,2790,2783,1886,675,817,132,1286,2323,2106,897,606,2847,2924,1343,2015,1264,2739,2149,1887,477,1934,441,2258,1527,387,2283,910,2937,515,456,1032,2368,924,1703,1796,940,501,1427,1098,2898,731,1550,1952,2235,2461,1884,2231,681,1490,692,1348,325,1867,1181,645,1948,2254,973,445,1640,2670,432,1006,94,2279,1662,1611,551,630,1799,1296,2291,223,1054,2219,1518,802,2364,107,962,2375,2600,1158,766,1582,2251,1962,103,2253,258,901,1404,384,908,121,2113,239,2300,2542,2787,600,2789,2850,1163,2127,1777,9,556,1162,1128,1417,680,2215,886,960,1945,1348,2146,2504,2631,1541,2842,287,2946,1577,798,2365,2431,413,885,27,2002,2530,916,832,180,366,1765,1656,1832,1988,990,2120,2094,2368,1209,572,465,1310,83,148,2553,181,1227,2638,1996,1100,754,2522,100,2124,2779,2762,1279,1060,927,514,2804,888,2050,2287,2718,1939,1818,1718,2455,2254,2902,1927,990,1268,993,2710,258,77,1584,1661,2781,2174,2251,1113,2390,1124,2278,2023,1203,2681,780,2970,2195,865,1777,1566,1626,1609,2242,284,113,617,1300,1886,266,1450,872,861,2017,488,1016,1227,2104,1857,1074,1671,1010,182,1843,376,273,1389,2085,141,214,700,1071,1236,2971,1087,2428,616,609,151,460,1746,810,300,560,627,2543,609,2868,231,1452,2125,68,997,1647,1727,124,2062,2853,624,1637,1612,579,312,2885,1548,54,410,921,1122,1816,2168,443,2191,1871,847,225,989,520,1829,1266,1534,1719,261,2702,563,977,815,2379,1218,2608,206,58,208,2436,2552,1537,905,2223,2729,1334,1690,2830,1712,2683,2675,2364,816,1767,2918,2651,2408,1507,1682,357,1086,2403,255,425,652,464,486,449,427,844,1655,959,1694,1228,1292,2187,2598,333,331,444,2770,1529,2825,1822,2887,2976,1428,871,2488,2893,2785,1251,1234,1533,1478,1262,1294,1455,1176,2629,667,2260,1110,210,1050,698,727,1006,2387,1674,1764,1358,757,2811,1499,2719,370,18,1327,283,2117,1103,2352,137,1788,2592,2074,1916,1613,2528,2950,2741,612,1868,1257,2931,2405,2139,1494,2428,637,1437,1197,2323,2252,1023,34,2261,2731,1332,2017,903,2659,1815,2853,117,2503,902,379,1981,568,819,2725,389,2325,1920,1378,67,2838,2031,1332,539,1423,1562,489,2589,2342,1134,2527,2466,1431,2907,1063,2788,2740,474,1688,1070,2655,2155,1812,1392,346,1396,826,1015,2757,626,1326,2568,2282,2637,481,534,511,1274,584,1976,2262,326,2138,199,1913,2968,643,2602,2177,2355,2380,2840,36,222,2992,2691,658,1819,1979,546,324,2959,1096,419,1717,21,2007,49,1866,188,737,2443,1804,711,2093,1733,1367,1067,1220,2782,174,2661,478,1385,409,1274,1181,2985,1951,978,1743,162,1144,219,2899,2746,2994,111,2140,1029,192,1298,2919,2355,2322,2434,2343,898,1809,2740,1138,1676,468,497,1493,1485,581,2913,1228,2053,2328,1110,251,610,2660,1466,177,764,48,216,1237,1376,1948,1033,2554,968,2220,2226,2188,821,943,2937,656,1877,2726,2248,2745,1691,1397,1991,41,2526,839,2201,1066,2215,317,452,1943,986,487,1888,1639,1151,1310,2969,1049,1255,168,2690,2365,2782,1079,2401,2900,707,1061,1850,856,2197,569,2052,482,822,2561,1581,879,2031,2791,840,2637,2786,2347,1590,1762,1535,2470,2373,1066,2848,1844,221,1874,1460,985,2670,1131,2074,1064,582,917,2490,2926,292,2525,1075,885,1958,1808,2568,691,2056,45,679,710,2462,508,317,1224,649,2562,2332,1083,385,1515,682,948,2000,1084,2820,1906,1062,2560,1146,423,2206,1285,1406,2755,1696,1946,1510,2538,2584,2819,171,2569,2669,26,1740,2320,2769,866,1039,1934,2305,779,1750,2384,2013,526,1009,1995,2808,2774,1685,1619,360,1008,1506,2236,1562,940,2019,1411,2704,260,710,1027,2625,1753,1126,559,1023,1555,1125,1705,1386,570,2159,416,635,1020,2572,2257,661,1673,2659,2032,1719,1513,793,1578,1970,2615,2315,1895,205,102,2979,942,2021,380,970,1855,2478,1091,299,1253,75,1984,1200,1474,2720,779,1263,1346,2632,1017,2049,2104,1613,833,1543,2687,2638,305,1499,2484,2724,2504,143,1933,1937,2528,2701,1554,2336,132,2417,1210,2246,2105,2564,2176,2936,1374,541,2586,717,1681,1979,2640,2260,740,1439,1199,1118,294,651,1162,1602,636,2461,410,697,1175,531,2213,1338,373,2938,1616,408,1207,1042,1756,1458,1947,1301,701,2530,2623,851,1063,1615,1712,340,393,1904,1518,767,1577,1387,2942,1908,1800,2281,692,25,2299,8,1314,2277,1249,894,767,2414,1810,147,1313,1657,620,1168,1109,1967,2024,1933,1530,1670,995,1390,889,1858,1004,2086,2749,2057,1517,1030,926,2974,2715,535,2945,1768,1878,1669,775,210,2810,1732,1492,230,2921,455,2285,2360,797,1648,2706,2518,482,2359,1345,113,1330,757,1896,543,242,2472,364,1425,756,1092,2083,1104,131,405,2273,880,2180,1391,1026,2426,56,1657,68,2884,2045,2308,791}

    1324

    1231

    Returns: 82850238

  123. {1870,1587,2542,24,1699,2539,1251,2415,1643,2560,618,1257,2289,134,2111,1945,2551,1587,1200,1217,2101,715,1549,1841,411,1457,1489,859,958,2283,546,686,1390,332,1119,1015,2114,128,185,1227,2266,2895,1877,2831,2969,1326,375,1500,421,2455,2630,1780,1580,451,754,480,2961,355,1916,359,1335,842,2025,349,2772,1807,92,1958,1389,413,2159,1433,1641,2833,225,1823,1323,323,969,2281,1599,1959,227,2584,439,2316,2158,2186,709,1498,1534,1799,1923,748,54,2494,2601,2576,978,2961,2106,362,479,903,1941,372,538,894,285,1242,1729,1682,205,2088,2466,659,2147,1351,541,972,1970,181,2849,698,1021,2696,1894,763,269,1254,2325,2392,2167,1811,1029,2902,2990,1870,1300,474,856,2724,872,761,609,2116,2363,1784,2954,538,1425,840,1351,1259,2946,369,337,2510,1471,720,612,464,2270,2491,424,482,1091,377,1796,647,319,150,1348,2673,1508,1621,2186,1684,779,2807,1260,948,2326,2589,542,1436,64,1799,1646,887,2119,78,699,1392,2326,410,2632,516,2125,146,1002,876,2757,1004,523,1153,281,56,1453,1916,1529,2021,1437,398,525,908,2082,2740,707,1080,614,2419,393,2881,1353,1368,2846,1487,870,1057,544,2694,276,666,2069,162,2246,2664,631,1144,1973,1451,1976,2416,1378,2315,1223,2220,2590,2766,1148,278,302,760,172,2751,1545,37,434,971,1448,728,2293,389,2779,2808,1346,2606,2789,2765,681,1668,2505,1152,130,2643,1790,403,2948,562,2875,2445,2667,1233,2034,1553,2945,2187,532,2639,1116,1259,590,118,2997,755,1748,778,820,2153,1737,1734,1136,947,2297,1663,1026,1071,2365,1379,2911,2761,1989,2952,155,1125,820,1725,879,894,366,478,334,130,2549,1441,1875,34,1523,1702,923,2815,1005,362,2926,2029,1528,2240,2741,2939,1057,233,2293,1498,16,1743,857,1487,1842,900,538,1401,1368,1805,1159,463,1358,1407,517,90,1179,2913,1646,1092,1480,2665,301,1588,1242,182,1576,2269,2550,2,315,61,1643,2908,254,2113,221,884,1737,943,1677,696,2824,1460,1334,2932,2525,2716,2308,2472,1252,897,1740,705,2566,554,2930,797,2721,2779,1251,2616,1922,979,1183,1464,594,1798,734,1901,1637,924,392,846,2307,2529,2610,1142,1161,484,534,2808,314,166,2225,2164,802,1003,1999,845,2725,2978,1366,1581,2745,467,1545,1563,1338,1456,1983,2000,832,498,2939,2383,122,1099,2871,1986,1506,1417,1137,2262,1871,1357,2859,2953,2692,465,30,308,458,2517,1001,2872,2526,969,2064,1355,686,518,2731,1545,1703,1337,2745,200,715,2758,1386,145,1915,1803,441,2357,164,2479,2335,2576,619,2266,1203,2150,2944,1801,2285,827,1690,1502,637,2497,2720,615,395,2878,536,295,534,1414,831,2893,2837,2561,1324,2751,770,2395,2100,2197,2163,2301,2689,2211,832,2367,48,327,607,1591,1121,2141,878,2177,2090,1958,2619,2856,248,1421,1490,2323,1470,1580,1326,2937,1762,640,2611,2039,38,569,877,2479,806,393,2386,586,608,792,2806,1062,2084,757,1427,2247,1783,2211,177,1127,1739,1678,281,1518,104,1133,1188,308,260,2118,2344,185,491,787,2382,1701,957,139,739,1543,364,958,746,103,356,2872,2832,377,884,182,2096,2325,2730,428,166,1820,2147,2048,2992,1716,2652,2303,2597,2745,2450,1435,862,2253,895,168,2404,2414,850,2072,1200,1837,1695,132,1893,2878,1550,104,136,2957,1430,1274,1892,2874,70,877,1604,93,549,2983,2000,766,915,1423,2658,1970,1796,2960,1699,2464,1814,2214,2767,1074,677,446,1871,2527,661,1979,2925,504,2183,1154,357,202,1478,22,2320,265,757,2291,2500,1516,1426,1354,2445,1976,1357,2009,1923,1560,1922,1309,1183,1119,2651,1264,645,1016,2478,16,958,1648,1966,2774,599,500,2673,752,1854,2339,1175,2784,396,219,1224,1856,1107,1641,851,1071,1397,1646,413,1190,2160,1464,1509,2637,1304,2646,1881,2862,2215,424,1589,2269,2248,1724,1194,2154,2466,920,2778,2145,2958,1585,432,1499,788,535,1352,1153,2197,1558,2880,614,1121,475,826,2290,1849,573,295,2195,962,1374,230,2212,2770,783,1643,2310,1550,152,895,305,2124,1440,1129,298,744,638,2457,2050,2254,765,1091,2399,1726,911,1682,1173,849,1750,229,2302,1503,2439,788,1225,2064,10,363,1115,455,1799,2887,1797,2335,2943,1301,642,2882,1102,305,2920,178,859,1885,2954,773,2074,650,1934,1556,2156,296,1168,415,1496,2267,1685,176,269,2127,1634,904,1333,1708,1115,2531,1075,2623,457,1307,190,74,388,556,981,330,1732,2144,381,2691,2588,429,1290,2507,2286,873,2030,472,2468,2487,1925,1555,329,1969,1004,226,1803,1672,762,73,1404,2413,649,1463,198,2425,140,1306,2405,2422,855,1258,335,1565,2020,1676,2432,338,1287,1405,1926,1373,1206,682,1419,2016,926,1586,918,93,819,1393,1182,1134,2038,15,2753,1199,833,1297,1004,2082,2953,233,1225,2683,2260,595,2903,1823,1112,2901,2087,1605,1037,1708,652,919,2577,1319,55,2712,889,899,1301,1549,2270,1669,668,1953,979,751,1352,2253,2816,131,2420,2715,505,2819,148,599,417,2609,2178,1196,1691,2461,487,853,293,2976,2862,690,1045,1694,2198,647,2883,1877,2593,781,2373,2372,1908,2049,445,2620,1472,243,1544,2039,2106,2765,2958,2032,2208,442,152,1829,229,1791,581,546,1967,1960,256,2907,2255,2075,2511,157,1074,982,380,2678,2941,1714,2712,282,2180,950,789,1918,1360,545,2550,1302,812,1174,1244,1690,2419,433,1990,2834,2865,1067,599,987,1523,1649,757,1139,1542,1679,2218,279,1078,641,2203,885,915,950,601,550,2314,144,2155,166,117,1309,1920,1832,1129,872,2610,1934,1719,576,1363,1361,2357,2512,2471,928,2512,1855,1511,611,1370,136,2698,2831,1344,1644,328,565,1736,480,28,199,512,2028,608,1217,2848,748,2097,2438,2174,437,2559,2775,1206,2057,646,455,1629,221,452,2201,2569,2197,1642,211,236,1683,2942,2369,1484,555,2206,597,160,1965,1982,1997,1674,2552,1955,97,949,2485,2521,1017,2572,2939,1582,1762,44,758,45,1681,2353,912,2941,559,1940,1885,2964,460,1531,2903,1638,1386,1456,1911,1864,2612,2140,9,1827,268,1846,2789,1243,2562,2271,2912,2621,2427,663,1085,1015,355,125,498,1207,1266,1319,1447,507,2210,943,1972,2421,856,955,724,2148,534,2427,940,229,1834,1798,892,1216,1091,912,620,2060,524,583,2816,1328,2411,1844,1306,419,1089,2358,736,2690,2300,2156,331,1497,2364,1352,2936,2057,348,1849,2434,951,1340,630,492,1054,1384,2247,2959,2287,7,238,1842,528,175,2133,1105,1424,2968,1799,2768,1723,1631,256,1940,610,1479,721,2043,2667,2394,1350,1903,2069,207,1653,1971,326,1186,1546,2492,665,2142,1830,1385,601,2787,1107,1709,1904,703,1935,1280,2597,792,706,371,1708,2915,2046,2816,2346,1143,1987,2870,1305,2631,1456,824,1148,2206,897,1253,1819,2298,1268,2452,2334,2526,1517,798,2523,1576,538,1836,1649,768,2313,1800,2194,796,79,884,507,798,868,1992,1084,2038,2378,716,1887,339,1374,2937,477,1711,2944,2133,2721,1387,471,526,1179,642,1040,2799,1852,2563,2786,1708,144,2169,2588,1666,1911,1030,731,999,1942,1082,1531,71,2556,2686,1477,1807,415,1380,388,2633,2998,2824,2493,11,1447,912,2859,1411,1601,796,2668,627,113,230,1056,2279,1908,1391,2487,1769,2891,2927,988,1135,1282,947,2551,2105,1904,1586,1798,1340,2965,201,491,2336,2280,1316,2059,268,1703,2366,2898,1787,1492,1032,1593,360,682,572,2511,2295,1836,2690,567,2670,2074,771,1635,2485,2856,2260,1139,2687,1811,1050,2905,2446,863,995,1622,2625,51,2616,2105,2513,2135,1465,75,1855,1295,346,1917,1947,600,1528,1383,2347,2648,928,1479,931,2113,628,1090,781,1162,1235,1178,2099,165,127,1387,2261,871,1693,1715,2023,1076,1042,1101,843,762,86,257,1464,910,2975,1105,2623,2481,831,2200,2199,1261,1382,202,973,101,705,643,674,2979,1402,552,2491,2155,1073,1100,2477,2910,2192,815,394,745,1378,1925,1666,2477,1446,753,709,2343,1710,1202,2544,2132,1949,1375,1532,1626,1060,536,1383,1823,1813,1102,812,2701,2483,1038,2424,1248,168,2407,2991,2430,2645,945,2273,2867,623,1491,2530,1077,2428,608,1382,2507,1348,2780,1801,733,1221,1363,1427,835,1948,1826,1068,1778,1082,1670,2179,1632,944,556,537,356,216,1894,2559,2553,2350,617,383,704,584,92,1361,2709,2722,1676,886,2354,1162,1610,2187,2737,2047,690,959,228,2053,286,2881,121,1345,1837,220,310,1117,260,171,585,1164,125,2250,99,1268,495,2230,1917,144,2436,2814,1270,1800,1121,185,815,1482,858,298,1056,1219,2442,551,2228,2519,2708,379,2132,2470,986,2344,2820,481,1728,2896,1088,2963,2897,1109,1917,2291,2981,1767,1356,2906,1170,1109,1232,806,1822,1829,2736,1600,2885,529,2602,1556,66,1157,1107,1968,1532,1783,1445,1008,1263,227,395,524,1504,2451,17,2922,2007,2191,3,339,2409,1991,1902,88,1074,1560,1781,2447,1092,418,779,431,160,1769,2881,2367,106,2716,1158,1354,598,307,2975,473,1910,861,1930,2359,2488,18,1085,814,151,2757,1627,317,357,2989,462,1909,588,1315,1825,718,772,303,563,263,563,2391,1199,2991,2077,1286,2559,2046,2897,605,1128,2476,214,761,1418,1149,1982,498,32,1792,2771,899,735,2644,2296,248,1562,612,1074,571,1208,2876,862,414,740,2293,1044,1040,2332,2224,2244,1239,1578,2834,1535,2273,495,1423,504,2460,2808,2078,1017,1577,10,1388,414,1012,1860,701,1579,167,624,1582,2724,1955,982,1998,2787,2528,1238,187,1752,1913,764,2268,436,2255,1293,482,980,2892,2248,640,33,387,204,954,1908,6,1583,489,2636,2920,1073,874,539,2068,2683,1199,602,1450,2590,1052,960,1905,910,2338,2846,2004,921,2053,645,1962,1570,2027,2852,1403,1863,1999,1362,1721,2806,1914,141,515,1956,266,396,138,302,933,1631,1271,1498,2955,217,53,222,1814,1898,1237,2662,63,1452,785,1118,907,1310,1033,1726,163,414,1851,513,808,882,351,2599,1580,463,747,548,1522,549,2290,2462,106,695,1736,2600,906,21,2452,935,801,62,346,61,2081,399,2768,44,1420,799,2227,2317,352,2819,391,1782,697,1369,2041,559,2723,2764,230,2874,1193,956,2813,430,2791,524,671,1884,2380,2784,2342,891,1445,128,1733,2734,13,1062,1341,2807,1988,165,1963,2831,842,324,357,1986,59,2781,2581,504,2395,2966,280,2801,1916,1000,1810,981,1043,936,58,657,2299,5,1460,1790,909,1786,228,173,2039,996,2967,2202,1185,1082,322,2555,2493,114,294,1339,1169,908,1147,1904,2819,2459,2548,958,105,819,1247,2158,1248,650,1700,2003,1505,1401,1814,29,1174,2013,2627,746,1291,884,742,1751,2362,878,2821,1919,51,1721,1117,2140,1951,1252,1081,2794,2690,2786,486,1197,1519,2251,250,2965,2046,2697,27,2247,447,2272,901,2292,1635,177,1753,212,1308,2150,671,1339,1103,2686,1102,1910,1587,2408,858,944,2820,2111,538,1230,2698,1231,1934,1702,182,711,1089,1058,2372,2282,1984,2309,2700,639,1928,702,604,112,2536,2767,2869,706,319,930,1657,2305,2566,2042,1757,46,246,2315,189,1213,1389,2479,456,2685,2839,2453,1919,2377,1570,1968,1692,1893,648,700,2706,1379,2502,2659,2090,1423,1406,133,788,1834,169,1396,2387,2186,309,572,1327,2920,600,2888,2316,2121,588,359,2190,2144,186,1824,1227,2930,1360,675,1047,2660,1113,1879,1701,156,2223,246,2973,270,2231,2376,379,470,1744,2305,2622,1527,2216,830,1201,636,1589,2541,888,2425,163,1478,378,2588,961,2624,1369,955,2126,1189,1348,132,2099,2117,2914,2650,1933,1574,1809,1688,1235,508,2544,1112,1131,1630,2188,2235,1279,2031,1984,797,793,2441,1265,1960,84,1430,2251,927,711,1916,2349,947,1779,1647,1704,759,1466,48,720,2252,1866,993,2795,1097,2617,889,2981,1381,196,1276,2635,2642,2006,541,1244,2764,1400,2217,1685,607,2822,2229,1445,2739,2579,674,1186,840,2035,777,368,1439,2997,655,1890,81,1089,2728,1852,2068,1849,2258,105,2910,1366,2471,925,1538,1820,2385,2337,1577,1494,2202,2111,622,473,1613,1807,2785,512,341,65,261,1326,2076,406,352,2206,214,1162,2563,2518,819,2426,2123,2243,543,699,2756,224,2868,515,2976,2162,2489,186,1652,258,1524,761,2856,603,778,1166,2496,2096,2373,1092,905,727,850,2025,2374,1785,899,1303,1507,2849,191,1725,2436,1206,390,1665,2675,2449,2487,2314,1054,816,2417,1221,391,1169,828,2727,1970,1572,2392,2748,699,2935,316,670,1069,1217,120,694,2762,490,2943,2018,133,964,824,1387,1844,2376,1308,2232,2055,2476,509,46,2311,1778,1645,2670,55,774,1013,1761,1453,2127,2611,1114,1843,896,1343,2184,2677,2866,217,2242,974,119,2113,1624,241,1001,1105,491,531,2318,2760,307,672,1633,1815,413,2165,1141,2954,2583,1298,6,541,51,1680,296,1024,310,2893,835,1251,967,2619,1344,2431,2289,244,2520,1117,1395,902,377,1699,1849,1205,2013,30,2872,1022,1547,1607,1917,1055,2717,340,2852,449,316,894,1732,2290,1400,1421,850,2654,1321,1126,2666,2004,170,1184,1183,468,2490,628,1554,204,1392,35,788,2749,2735,2087,678,2980,1495,1827,1770,1306,1325,1862,2663,2271,1889,2095,2228,595,2013,1865,2236,1064,1299,2187,1762,2322,800,1517,1706,2123,1165,904,666,2957,1950,40,667,1711,223,520,1283,904,941,1810,373,2856,2536,474,1558,2993,848,1063,804,2181,946,499,750,53,2104,744,1559,962,383,1791,875,530,1021,1017,2527,233,2506,338,1564,1437,430,788,2657,2055,2949,1949,1236,1794,116,57,1074,2796,218,1576,1689,2782,1377,2283,879,2019,2884,26,2659,2098,2381,1443,237,2755,1059,2151,317,225,284,1336,1503,1906,2693,2820,2613,2576,1106,1580,1195,2812,2510,2534,2348,1272,2343,292,598,2916,1569,993,818,156,448,2143,2785,1612,2513,457,612,273,201,732,1931,1,328,134,1608,560,2529,2210,2692,1622,2524,466,182,2929,1045,1260,2097,2485,1353,2088,1818,1800,866,2209,896,855,1617,1294,1878,1580,2967,2944,2170,2632,2174,1289,2659,929,1312,637,753,177,1046,1447,124,239,1883,1864,888,2922,2709,2349,1528,347,2824,2803,2841,755,249,717,80,1371,2236,2378,9,2021,474,794,2255,2640,1229,655,2567,316,2096,585,2162,1431,754,512,2827,2731,194,638,1009,558,2851,293,207,2817,1106,153,947,2571,434,2227,1485,1676,110,240,766,789,1067,2406,1542,2849,2515,1438,589,591,1742,1773,982,357,1262,1263,820,2866,886,1971,574,1084,2928,2510,2478,2913,1234,1735,2166,251,2992,367,2615,37,2308,71,1525,1673,1932,2431,1931,2485,2995,881,1102,2070,1209,2726,1707,1627,2680,688,629,2800,1507,1843,652,504,2207,1826,327,890,1747,1399,1056,1697,2289,1651,2680,187,2407,71,1706,2328,2253,1070,1695,2371,2562,452,1314,1653,1322,1643,392,2557,2614,1812,1950,1350,2216,1980,1316,1110,292,2274,2393,660,368,902,1779,916,2179,2966,1190,555,1773,2207,1540,2569,86,502,2990,246,284,1270,2861,2000,976,2464,32,463,2218,2524,790,1276,2056,1090,1421,1812,1292,952,2973,2168,2792,435,992,1233,386,1189,2853,83,1899,1882,1904,103,2482,1148,52,2577,108,1329,1027,517,291,341,797,949,1123,701,2591,2520,1973,794,625,2411,1535,2769,998,2718,681,2892,772,2245,2595,2589,1281,1524,2368,749,1697,2955,2410,665,672,1492,420,2805,2698,1848,690,2836,2508,615,735,780,2737,1854,1280,784,726,2026,332,1178,420,2024,2182,1422,1470,1562,2379,851,278,2478,1828,1873,991,1211,2241,1688,1063,96,2333,1065,679,2629,314,416,288,2048,461,1557,2334,2519,2278,1706,425,249,503,539,1275,2167,2240,2742,1060,359,2340,1438,525,839,2171,1157,1806,967,1523,890,1099,1440,1141,1571,1400,2293,1824,966,1793,805,1675,617,2743,385,144,1756,1723,1024,121,1108,1788}

    {2437,1259,261,898,1262,1149,484,88,2044,1606,1778,367,8,2005,2768,706,2124,1172,1040,803,2558,1995,782,2413,2200,1857,2121,454,976,747,2389,2501,2215,1595,242,1247,1264,2113,2462,759,2198,887,596,1532,2769,1687,1221,1316,1713,615,1088,2245,659,430,1721,2024,1101,2818,653,2110,2097,426,1801,1896,1753,2052,2873,271,2796,111,1521,1674,165,31,684,2776,1743,1653,2483,1579,1474,1761,1991,1450,2324,1090,267,1181,2545,2234,795,1374,42,1618,2792,697,2758,1650,1402,1985,1118,2663,1674,326,2604,354,2729,1685,375,2276,183,2289,1820,1482,1454,1952,2015,756,1513,1903,1980,2372,2261,856,932,1110,23,686,1561,1384,2352,2938,397,1755,1690,2013,2014,1165,2366,2230,868,1718,1102,1207,1983,2212,1049,2468,515,2175,663,336,1154,821,2141,2358,2410,2346,1976,1075,2130,2182,2754,2115,1506,2496,2175,2972,828,1171,213,2675,510,749,2464,1869,1627,2112,439,115,2120,210,1398,1028,89,22,406,2388,2178,1273,2198,2458,775,1729,514,2104,2678,2694,2169,2033,196,2918,2220,2394,1310,2149,1228,517,361,157,584,2744,197,1746,1030,903,1999,1833,2699,2809,2974,597,202,2189,9,1000,367,1037,1574,2506,1763,2413,618,2854,20,2535,992,2538,617,2750,1614,604,2723,1909,2847,998,1043,791,2336,1756,1146,86,990,1727,2434,1437,567,2628,713,2893,499,776,1174,2921,1592,1192,1996,1757,592,2623,553,119,2242,1627,1680,1725,1742,89,1620,1220,678,2256,1891,2009,2277,1942,2534,2173,2527,965,1787,1883,2954,2716,2761,2626,1945,1170,2830,1749,2522,440,795,2712,2366,311,2674,2035,2902,2397,1477,833,1999,1805,2012,2135,1619,1733,423,1296,1605,1381,930,1858,1769,1923,2042,115,989,2180,2773,1346,2478,803,2925,520,139,456,2828,264,1308,871,2682,65,2770,2298,2583,2867,2989,2004,1284,180,2226,120,3,2583,1655,2845,1023,1427,1094,1198,1821,348,2815,2748,1873,1010,2827,159,2474,7,208,1059,708,693,823,2694,1081,2498,2286,2618,2403,673,1584,2468,400,2430,2683,1213,1114,50,841,2833,873,1220,748,1145,174,257,2265,142,158,2936,2545,2736,365,1527,351,621,342,1372,1621,1889,735,877,1250,1830,1017,2957,2763,2018,849,2011,2930,318,2894,1455,1882,498,575,1430,1572,2955,189,650,2160,886,2375,881,1858,1317,2690,1703,2361,425,852,453,965,634,2487,1629,2206,2187,192,2356,1750,25,2250,1815,1161,431,2355,2966,398,69,1224,2099,2185,1359,669,2001,433,1968,498,2963,1104,540,667,1766,2355,781,1407,2929,841,2837,1318,2721,1410,2041,1040,646,1268,938,1576,777,721,1007,2046,931,2261,1514,1635,2212,1840,1948,776,1394,1938,1163,1687,2862,68,1995,1050,2869,266,561,794,2065,1293,203,1281,143,328,2325,1266,2541,2138,1330,1066,2706,975,2607,417,1111,1876,1705,2331,2573,2019,2045,1853,2040,87,2159,1623,2679,268,1071,399,1488,1305,1686,1856,1182,1442,2638,2966,113,1896,2436,994,2246,375,2324,2095,239,2692,1196,1011,1965,1025,2860,2064,2900,2465,892,224,1790,1128,529,2890,2175,75,2884,1380,1122,2504,2747,2666,1747,539,232,705,1288,1429,364,2489,1775,1179,2779,533,2059,2371,2102,1535,2096,2547,109,593,2039,2443,1210,2063,1640,47,1124,2223,1975,2073,2621,2196,137,2205,2764,2024,2951,2919,2156,1975,1678,929,215,2495,1364,2880,1895,2649,2273,651,2292,706,2554,1347,1165,1813,2091,1664,2409,2720,815,752,1269,2996,876,1500,2747,914,649,1907,1173,2079,518,717,1696,2799,1028,2281,2962,1186,16,2574,1051,2406,2157,1139,1186,2637,1608,2957,2861,1065,2840,2790,1758,1551,1409,507,2319,1337,1034,1904,9,676,669,1885,1435,1176,1522,1795,1929,314,2859,1003,1459,2578,2927,603,2911,1020,1509,2907,1969,79,811,729,941,2525,2917,2863,2435,551,201,78,1241,805,876,1234,2558,559,1416,240,284,401,2998,174,2754,2090,2684,519,1546,1241,696,334,398,1601,1707,1808,2491,1205,541,124,412,1428,973,2341,1063,1851,749,583,2664,2351,1654,2412,809,1974,2479,2083,2652,1583,2051,1753,2058,268,535,1204,542,1674,1360,694,1976,467,1166,2101,950,2463,2071,441,1679,2285,384,2486,571,2233,567,1659,1591,606,294,1187,2512,17,330,657,2802,881,1406,101,255,367,1125,1732,1859,1058,2316,2031,460,1897,127,2120,782,445,11,811,2977,730,1802,1996,1378,2730,2829,1237,74,1462,2076,2058,2371,2137,2780,1006,1959,1898,1026,423,1648,1268,616,709,2733,617,470,2995,1215,1,2440,2532,701,2822,1412,2196,1036,1928,1912,2222,369,1584,2083,1615,2281,1068,1730,1824,1282,1740,2422,2418,723,193,2991,1336,1036,810,2742,1881,1792,2722,1799,2895,2864,1061,2760,2166,1666,2266,1220,2962,2092,2939,652,2522,1130,2670,87,1756,854,2758,774,608,1541,1423,182,1575,145,2004,2983,2684,1199,1443,420,37,1886,573,433,337,1861,2359,2257,1253,2385,2979,1456,2281,2942,737,2516,1872,1241,1675,1927,885,658,2328,995,1254,587,1922,2752,2959,1774,1578,1440,1182,266,1453,1649,977,23,2251,476,602,762,2877,1892,189,2522,2812,786,1602,1246,2500,1831,2222,1425,1293,449,1244,2740,2424,2277,1944,1780,1585,658,19,992,909,1510,2103,2151,1660,915,2923,2567,2193,2327,2824,708,1378,2965,953,2514,2903,1536,1950,2933,2115,320,555,952,1296,1878,823,876,296,277,1475,2825,625,2516,216,1432,2322,2646,2448,2971,592,2041,822,506,1517,1393,297,799,585,869,1852,19,2985,1255,350,2661,1996,2101,1659,2353,1705,689,1098,195,2586,1619,435,2626,235,206,466,743,1589,28,1768,2301,1358,248,2938,834,1754,2145,1063,715,1278,2781,290,934,1492,82,738,707,2270,2903,1317,2703,957,1773,1435,112,593,1101,2759,266,2329,2269,566,2037,532,2640,2736,1120,1874,1929,100,2996,2807,2722,2604,1186,2057,1095,2810,894,2457,2125,2488,1847,2123,1408,1835,1994,2942,2946,2284,970,1844,1558,2210,2899,2924,2480,1624,685,2947,1211,226,2214,1658,476,710,969,292,1449,1937,43,515,459,787,2364,914,262,1167,1782,2022,832,2547,2165,1794,0,1920,548,4,762,2477,2540,1190,2230,2601,758,1293,2415,1042,1804,1533,2373,2777,2909,1891,2146,1019,1656,2361,430,2373,2602,1201,1053,1641,1478,1550,771,72,1448,1384,1317,2009,1203,1144,1466,2409,1023,1491,2813,1178,753,2052,464,991,926,1072,253,1170,1936,1467,952,2991,1880,2147,118,2880,1862,271,1096,1558,1762,2242,2920,2200,183,1785,1921,2858,2148,2423,2674,2815,439,758,2550,2901,2664,1938,1772,501,2184,1040,1020,1232,915,2345,1779,2996,2702,1787,2643,831,2022,1642,633,1844,472,1444,1530,1794,1930,271,2185,2385,2504,1695,1512,828,2823,2383,234,2843,1028,1611,313,1259,1458,1158,1266,1155,2249,2485,218,677,2839,470,1961,682,2284,2193,2773,836,1566,1494,514,1566,469,1311,1941,1317,2556,2295,1653,1033,2109,259,1028,343,564,442,544,229,2215,875,2804,1614,11,1712,2090,2190,1439,1278,557,2021,566,2998,48,251,2386,2895,982,1922,304,2970,2993,927,2140,51,2673,2707,2066,2676,2786,1663,2283,1700,2409,2461,472,2532,2956,699,1112,1493,1086,1604,508,2811,2992,1743,2484,997,2328,1589,1132,1805,2788,735,1303,1720,535,2431,2126,1760,2384,1130,225,1387,389,1461,923,867,877,915,1738,1539,613,1603,1473,827,301,608,483,154,2310,2342,2537,2095,1759,1838,2934,2967,1243,77,1978,1212,2312,1414,702,2129,552,2671,236,1320,1184,1150,2060,1547,921,1839,210,2523,1565,245,628,2323,1696,480,1855,199,2719,304,1816,568,2223,1952,1315,1554,2237,729,2004,988,1376,668,2868,789,1277,847,296,255,1358,920,1056,917,2300,2288,1039,1260,935,2969,999,1789,1662,874,261,450,159,1323,361,1765,2400,854,1031,2161,2661,2103,1014,694,2139,345,841,2081,2843,1901,2038,858,2232,948,2759,2433,2904,149,805,2825,2178,1222,1743,289,100,722,178,2790,2875,1389,1762,558,1803,222,607,1866,1412,1683,2522,2125,1898,2189,816,498,1639,1597,1614,504,1667,2938,2417,2614,1368,36,2915,2634,362,2842,1124,1775,1731,1910,1607,2266,1079,407,2931,2633,2107,1656,1389,366,2094,117,2171,494,2886,837,1948,1224,1054,1035,252,2857,2179,107,1888,1454,227,1957,12,1195,2304,529,1040,2353,188,2295,2025,2493,1304,1080,2817,2391,2664,2220,885,1111,2546,735,1552,1399,2845,1032,654,1907,613,2179,1410,2524,310,382,2436,543,2423,2884,60,422,710,1430,404,703,2714,2932,1216,141,1548,402,319,1590,1018,1228,1819,2312,2150,2390,14,817,485,2594,1632,1851,139,411,2570,2349,893,1104,426,2361,897,908,358,2324,488,2494,1534,2700,1943,2100,1486,731,829,1044,1750,597,554,2195,1588,1083,2975,793,1468,2976,2089,1161,1249,2658,50,2055,1894,1087,2439,683,1903,2029,882,1098,595,2118,409,2321,1904,205,1916,2555,661,135,2732,1874,1217,1883,1734,1442,1717,2920,405,2059,49,306,1403,2928,2499,1850,2007,1745,472,827,1214,1447,1878,1226,300,402,2537,354,1727,159,1285,2764,2941,858,2710,2963,2569,1395,2131,1746,1909,834,2684,1946,97,1871,1611,426,1628,2120,566,2377,1171,2553,1902,1526,2616,1871,2134,2572,974,2214,1641,1048,663,985,1181,813,1203,1515,2275,691,2541,2168,760,2022,2826,1489,1640,1322,1725,1115,1568,2177,2136,2128,710,351,2904,1308,421,1476,1804,570,708,2592,629,1624,1494,1918,1436,366,580,238,179,410,2055,2994,1777,1153,645,90,686,1163,274,2864,738,2360,1729,2982,604,2166,1030,1020,2869,899,1064,984,176,2746,2533,1963,2483,984,1771,729,1180,710,2199,289,1948,2006,2771,825,2795,1923,246,2940,2071,287,1967,1979,1498,1621,1296,2925,2213,641,1553,1265,765,2599,1609,2455,2321,561,1141,2606,2529,2663,2741,419,2402,2844,1425,39,190,2369,1948,1567,1477,2803,1701,626,2098,1446,1042,147,2656,1248,707,1446,1983,2274,1033,2682,1853,2049,848,664,2421,1248,1375,2582,102,2523,2061,2850,2432,2005,2067,1518,635,1543,52,2527,600,2321,2445,1683,1805,2564,209,1788,134,2018,2241,1684,1661,2560,2827,672,150,2979,1930,2123,2152,2205,314,15,1309,2681,2596,668,1434,734,1280,1773,2587,2605,2605,2169,1865,2885,1050,2304,1338,2274,2324,2105,1636,1318,300,1870,962,1524,392,481,95,2687,1457,1614,737,1598,2243,1166,2148,2903,1439,516,1267,2999,1784,1451,1204,1357,929,2417,2821,2809,500,344,1923,1271,100,937,725,2401,1723,2083,192,376,783,1045,2647,2945,1567,109,1317,575,72,454,252,182,1041,115,1639,1070,628,2049,1927,545,470,2108,1716,1319,2507,1392,593,30,796,2401,75,610,1623,1477,234,2283,2528,1969,2528,1430,2839,2984,2568,1348,1128,610,336,1794,649,679,2219,1592,701,2252,1881,659,673,24,880,933,2142,80,472,96,2075,1009,1538,2726,1582,2549,2352,511,1348,2756,488,2775,1138,1850,637,594,2133,2063,408,173,1601,550,1703,968,922,2154,2333,1717,666,423,514,2264,111,2992,547,741,98,1767,2048,1429,21,1169,2405,2456,2956,2794,522,1625,1089,2032,2791,1792,1741,54,781,2647,2798,956,1727,82,407,662,2482,1477,669,566,1848,2548,469,826,1662,2164,865,2695,579,1483,2017,427,767,673,1436,1182,449,2866,1728,1085,1722,2956,1090,578,131,1226,419,1410,1263,84,256,2280,2270,2640,443,2473,1699,2213,707,521,802,514,807,672,915,1711,688,1339,1481,2895,722,284,127,85,2223,2403,2721,1073,1163,45,36,1698,687,3,2974,319,2932,712,2621,622,511,1671,2445,259,1142,2938,2172,126,2879,413,1939,299,1766,1488,1140,2898,2995,2155,650,1872,1676,2259,2740,1261,1958,335,595,168,381,2080,786,174,2294,1596,2313,1275,795,387,1131,184,406,1123,1832,1794,934,341,1786,1099,407,1716,2028,407,1415,2612,1975,626,1,344,829,893,214,963,496,1764,2716,1463,2499,1927,1813,96,654,1212,2012,685,2636,1510,855,86,2165,820,379,680,129,191,2751,1332,1532,2259,66,238,1012,2655,1043,1484,582,1408,737,2711,2964,2185,29,1383,547,374,1036,608,585,1778,737,1138,2122,2511,888,184,1654,961,1417,2262,2109,1083,2762,1106,587,1349,2444,126,103,733,2370,487,2013,2855,1244,1537,933,2602,2271,491,2711,989,2565,447,742,812,1483,1787,2054,965,718,2554,2704,231,847,656,26,880,1977,2587,439,1166,282,544,67,2840,675,41,2503,1365,2521,1077,991,2238,751,1568,1856,1696,1620,453,1723,1868,2630,2204,326,2731,1663,2713,1863,1178,2239,735,513,238,570,1342,2847,1541,2186,1676,73,195,1799,1256,542,1640,1505,1570,878,2095,632,2050,2387,886,2996,577,2059,1426,295,883,1171,2358,1184,322,2363,1622,2891,2473,1587,2434,547,345,2539,544,707,2056,2575,1536,769,1404,1012,853,283,2259,1218,1749,2988,1417,1698,1776,2552,155,2149,2603,1982,76,1457,784,1615,2629,163,434,1786,2262,1208,187,1679,2769,935,2705,1246,2828,2790,495,2823,2601,2608,352,719,1616,1331,1783,2445,306,1300,2225,531,791,881,332,1964,2396,729,733,42,533,946,1024,136,85,984,2331,1161,2232,2650,1863,1819,1795,247,259,2990,2738,2904,1234,1130,2281,2078,671,422,1194,258,2967,2398,2295,823,84,2635,1677,844,2358,272,2961,1993,2036,256,1097,2383,2188,2726,1928,1657,809,450,2873,444,270,2665,2343,1739,2587,1760,2902,661,2174,2658,1301,1524,2846,2648,2592,373,1564,2810,1454,1855,1577,2733,2853,2950,1900,1511,1302,1731,1573,901,2410,1945,272,662,2939,1093,462,2739,695,2782,1963,2669,681,931,2897,2354,22,760,478,2593,290,942,1023,942,1905,319,508,1588,1413,2566,2008,2641,2458,2991,2987,2165,275,2212,2383,2062,2480,669,2900,2686,214,228,321,325,866,755,2753,31,2661,1762,1563,1599,459,1262,2654,1175,2027,916,644,2531,537,2431,1078,1896,2913,654,2425,1156,1594,1660,2087,1367,1845,2555,1721,2131,127,2085,224,1708,2098,697,2930,1695,3,2889,682,959,683,60,2014,493,2565,2547,2688,2684,280,1867,2391,1022,864,2180,828,1725,2528,1574,1501,2079,1191,1601,913,1983,2543,2154,648,1533,1437,1150,2528,1521,2034,105,242,281,287,191,2172,2468,1981,2598,116,732,171,563,275,2517,836,238,1397,319,2143,353,272,437,2176,2469,182,2429,780,1807,94,1744,2263,1547,1229,808,1228,939,2384,1815,1841,2485,2022,1110,2967,2599,2443,767,1283,2677,1008,1955,1966,2756,161,753,945,224,2783,2391,1826,2631,1370,162,2897,2580,2864,2575,712,2653,1031,1313,2886,241,2702,2838,1183,1535,354,438,1338,2010,2508,292,2585,2500,2961,1520,66,1817,410,516,1533,1225,1243,2171,409,2672,315,2471,1613,1296,689,1285,1177,1434,1926,1615,983,2693,1245,2454,83,2704,1127,2503,1151,677,192,682,1884,2467,2662,2093,692,520,1027,332,1474,1618,1606,1228,2793,1616,607,1311,1043,1474,1827,1954,1502,1972,2835,2408,485,1715,1557,2469,2877,57,932,648,370,1977,2804,581,1698,1540,237,2634,1547,2797,2586,123,2957,1827,1886,1449,2121,1992,452,651,2504,1593,2372,2306,2816,1006,457,425,2086,2931,1665,638,125,2475,1034,2550,2346,1728,78,2856,2205,2320,1099,518,1554,2167,239,513,1530,12,1469,241,2580,2117,58,838,318,224,1502,2512,1502,2688,814,2134,2625,1924,1182,959,1954,1122,2687,2051,692,30,442,106,312,523,1647,1586,1173,1688,1168,2138,1850,1702,2330,354,765,2080,149,2986,506,497,1160,605,2033,691,1453,2399,2033,435,1042,2659,2198,339,670,1145,91,1240,2315,2833,527,561,2002,2514,711,2194,1625,860,1477,2970,2320,1094,1490,2651,2853,490,2054,1694,1966,1375,1497,1495,577,2061,1738,2021,498,2509,2064,1356,1127,333,2338,258,714,2438,2751,2221,328,1114,1522,1858,957,2951,882,1716,2407,2301,1568,503,387,1728,1747}

    820

    1739

    Returns: 858745658

  124. {1825,1204,1802,1879,1918,2361,357,2884,2145,1491,2367,1520,628,2974,2289,544,534,490,2784,1754,2207,234,1510,887,2401,669,299,2820,2411,1594,187,1682,889,657,410,1923,1221,1039,31,1383,1501,523,1851,449,2336,1929,353,1410,2846,1957,2705,2558,726,2348,280,373,388,2776,893,1198,110,57,222,2549,898,332,684,2194,2569,1830,1534,2496,2499,835,2572,1305,2966,210,2331,1186,2229,1977,205,2356,2448,1800,308,287,2300,2900,2189,166,201,662,1715,841,2522,2049,1774,832,949,1837,1632,699,2457,1171,643,1660,2919,2537,2159,1716,1482,1261,1898,2991,1376,1385,2705,2940,1491,222,1337,2207,1736,1342,1829,2179,1045,1631,17,1966,1388,1177,1489,1454,2535,1855,1776,1721,595,1610,2195,1787,2705,1650,2984,1112,1319,2118,1143,8,2717,5,635,1850,1643,2691,1130,1709,542,1460,2438,2809,554,1789,2243,427,2363,2173,1894,276,282,1717,924,568,2325,2361,511,414,677,2107,1978,2880,2417,1725,1735,2211,1087,448,322,1288,2794,2494,1516,1347,2613,1556,417,394,163,1003,2492,1193,1556,2676,1697,412,0,828,2046,1443,396,1817,569,949,2257,2747,1249,1864,1375,816,2032,868,1784,1582,1045,1799,1854,1317,767,1916,1740,37,2567,2560,2823,1469,1860,2862,2345,2529,1677,895,1579,966,1849,1445,1910,2644,1959,996,2347,838,361,1730,654,2849,1049,1844,582,813,1811,1314,365,978,7,850,2298,2293,2337,2283,1911,2197,431,2677,2414,1040,172,1644,2582,1060,2435,1917,1174,1187,87,2750,723,710,1476,1418,2667,2416,1856,2436,1617,1230,194,1222,2379,670,34,193,1498,69,2943,2842,541,509,2501,820,1914,2119,1314,2395,2755,1674,2888,288,1459,442,188,2150,2322,1311,2725,1593,2851,589,1378,1377,2980,571,46,540,1230,2421,1396,18,2593,725,833,2503,1716,192,2831,1355,2383,1245,192,853,754,2657,2885,2189,1354,802,2839,1548,75,1604,1938,2660,376,2356,2588,591,2256,1135,2224,469,1231,983,813,2891,884,986,2176,231,2673,2876,2155,1228,1502,1063,1285,2727,361,2051,2145,2675,1900,1437,2821,2091,1133,946,1230,1032,974,2203,2511,2135,2376,1589,1199,1907,1398,123,115,2277,126,2552,2093,1155,507,2948,2126,1950,422,2578,1881,1299,1260,2203,1415,1104,485,1928,2294,967,2342,2990,2833,575,1476,3,331,15,844,1737,594,1584,1155,2147,2918,794,1386,985,948,2859,2217,2807,1717,879,1880,1956,1001,1631,1868,899,1602,620,1276,2479,2728,1315,186,411,63,328,1,2200,1297,1762,605,1326,2982,169,483,401,664,1795,567,935,1692,2970,1925,650,1268,1461,220,1386,1322,696,2956,705,21,2422,2248,868,1639,635,528,636,2391,433,103,2424,984,850,110,2297,1470,798,1743,2796,25,1586,987,2836,2603,875,331,2635,73,959,1665,196,442,1810,2004,2730,2108,776,460,1526,1276,2363,2958,1407,1750,2446,1847,905,1750,138,1717,556,2644,1212,2611,316,1582,1958,1068,2034,2500,530,752,1743,1256,2444,2751,2742,170,1211,2382,1726,1344,2079,2223,2803,459,754,2438,2306,1572,1101,2746,2659,1554,1105,507,30,2250,2328,1036,1213,2949,2516,636,1967,112,2358,2597,2824,926,1153,2925,312,2392,2126,828,938,856,2349,1587,1671,2740,846,2541,1128,650,2299,2271,32,1537,714,2054,2999,600,2310,2634,773,33,349,2990,2858,689,1606,1382,1129,2680,2767,2477,607,2094,385,670,2739,283,331,2302,659,2825,424,2552,1887,47,189,566,1826,967,353,2927,1122,939,1398,2311,1176,224,467,1797,391,493,287,1666,210,2334,903,2000,679,163,1772,498,1327,529,1610,674,739,388,195,1832,2826,2753,170,1914,655,2412,1697,184,1342,1494,948,5,2044,1409,788,2106,2478,1024,2872,1435,1795,1943,1471,307,666,1624,1739,1797,2887,1147,2272,70,293,2705,2592,2908,165,36,1076,1232,1286,2703,16,294,1200,2877,179,1267,2569,1987,1713,2949,354,2533,2110,500,2511,2836,671,2273,2073,375,2086,1975,569,1472,2601,2705,2618,1038,398,985,293,1504,492,1240,688,2739,2389,335,1960,2014,2057,2678,2524,1574,2981,931,1032,1739,2873,714,2801,953,1470,33,2896,2594,358,1845,2909,1536,1725,1605,795,737,1757,2835,2099,2013,5,1601,1910,1640,2001,1291,662,1397,155,2442,2048,1896,2659,1797,1292,2933,264,774,1261,975,2264,703,2632,1055,1580,1506,2308,2557,2203,685,1475,2540,1503,34,2176,2104,2674,1771,1470,1222,2290,609,966,1910,676,1405,2566,2247,1970,292,2263,1154,206,2858,1744,1971,2601,1530,2861,886,942,1169,2382,680,618,1701,2190,1669,147,2121,1662,1102,2997,1696,457,1595,1280,1326,1965,792,1481,1949,2828,208,845,623,1065,1082,2093,2827,891,2333,206,1735,418,731,1256,929,63,1271,694,2293,2590,103,763,2135,1597,1177,2879,2552,2142,2341,2187,74,2933,125,1377,2394,843,1102,1997,2947,2936,1939,44,1141,181,2793,2983,1229,1515,1458,2925,1069,2923,230,2088,1006,687,2563,1714,1105,2436,2275,2135,2695,2865,795,264,125,639,2615,302,1731,2140,2934,503,37,1588,1539,2927,312,1564,490,2896,2136,2315,1107,2929,2299,481,921,1403,1963,2074,2310,1735,464,1549,1714,1507,2703,1360,2185,502,1512,482,533,2783,2818,2393,2777,1770,1764,234,2787,2314,1447,2035,292,1126,1775,2613,1538,2827,1625,1741,1306,1422,2438,1809,937,2539,995,1215,1165,427,2230,476,1533,2717,1489,766,2409,2669,498,1312,1067,1021,2625,965,1447,206,2714,151,1100,903,1236,919,2934,2957,666,105,166,2058,119,303,677,1572,1389,2550,944,167,140,208,572,2480,1255,122,2844,580,1471,772,1332,1011,2227,2522,462,179,1922,1634,2653,584,758,156,1441,1759,717,1528,2487,2219,2049,2548,580,536,522,2686,937,2258,1484,2016,2916,2506,2246,564,2530,1087,88,2219,1688,728,1162,2894,272,582,330,940,2961,1541,767,832,108,228,16,2015,1623,569,2197,738,1013,1458,159,1195,2373,1487,496,2681,2814,173,2699,1793,1680,2257,1751,1590,1241,2964,1238,2848,247,2291,2721,1354,780,1767,1230,1885,450,1420,2941,2673,377,979,1600,1988,827,2029,2639,2765,1934,2950,749,1562,1639,269,959,2521,257,1092,1294,1134,1577,2899,1315,2614,1401,743,110,676,2817,1640,1776,64,1338,2719,2507,740,342,1216,1610,2449,2803,1055,2504,2634,2938,227,2121,1480,1173,234,213,2791,2551,1423,522,656,2466,2758,405,324,355,1505,2499,72,2637,2382,329,237,685,426,1127,2359,1432,1321,2294,2584,1699,1679,2932,2316,50,2073,1602,710,1918,524,554,2598,1862,2650,2297,910,893,1293,1145,1776,2568,1276,2045,1318,348,67,2219,1274,199,1443,2429,1555,2479,588,384,2696,2662,795,2482,1057,1997,279,2539,2520,1768,2293,1855,1590,1627,887,442,337,1095,2637,2519,118,433,1795,1790,2048,2413,126,1869,1269,2943,1556,557,1198,2374,1542,807,876,2647,85,1758,1609,1881,2231,2365,1379,631,1365,1544,1108,2352,2469,1309,2695,1983,176,2679,2496,2768,2686,1342,121,260,2580,2235,791,1209,1307,1373,2897,1397,2167,2186,2547,835,1460,1210,1921,958,546,2318,2102,2542,1553,1664,2032,495,2327,2136,446,273,861,2375,1358,1394,2535,1418,322,2461,2047,2573,2741,2650,1224,1393,2804,354,722,2696,137,2115,256,537,1335,383,2181,774,134,1376,629,2010,1264,172,313,1713,1867,258,60,761,303,1535,1872,1600,2050,2082,2529,2213,53,2663,1759,2875,1106,2055,95,411,2802,2356,2748,1199,2763,63,68,1452,94,1036,691,1645,2033,1079,2716,2028,2848,2702,2694,1802,2663,406,1006,409,2967,1178,877,2078,2045,1986,2929,1550,2820,2942,2646,269,2975,2584,1658,1479,1578,54,2978,1136,1662,701,2229,445,476,1303,747,2659,2486,901,2328,2075,1213,1215,1272,2419,933,2322,1006,588,578,1826,2933,2502,1705,1470,1055,729,1424,2034,1091,983,1158,2531,2797,143,2963,244,2632,397,1011,1783,614,2485,2103,317,2116,1710,624,540,2734,1915,41,1640,521,2206,2428,2327,2945,1797,2996,2893,772,445,1166,2906,2972,2059,2382,68,1219,2048,437,2641,99,209,1508,1278,712,1466,2103,2496,181,980,1088,1247,808,1402,2672,2697,1913,379,244,1055,288,1135,863,2818,1046,752,1209,1490,135,1183,2065,2773,289,2023,2452,2415,502,2733,936,1739,2109,2297,99,2079,1103,1012,1934,459,1827,2778,318,2088,2840,9,1230,2535,1416,654,1730,526,1835,1603,826,2830,1355,2746,1532,2786,646,161,1449,1250,567,263,1381,2985,1539,552,2553,943,2935,2426,2284,1078,2819,144,2853,1080,1853,2674,2293,815,940,990,1433,2110,2940,1672,1686,390,1242,526,183,1059,1175,538,1086,1896,813,1579,686,2504,2683,1125,2675,999,2414,549,1639,2673,2055,1294,2360,462,2877,2344,2898,554,1463,1197,1522,2970,2399,2923,1031,1861,2164,1503,141,2122,1764,2645,501,2319,2952,806,1218,2424,135,2570,916,102,2855,602,1992,1674,2264,169,239,2811,2688,76,2665,1096,2690,2090,6,2826,1539,1252,404,2692,1446,1481,631,836,1220,1714,855,1412,374,762,2818,1319,1726,1921,1585,1951,1795,2085,2512,2432,1833,2314,2980,2641,2357,1983,1362,554,217,1826,2207,2674,2693,289,1686,2240,1098,369,421,697,94,388,2103,145,2687,2016,2499,1704,495,1106,2129,352,250,2177,1062,1124,480,2684,100,1362,1248,2211,136,1083,459,2440,811,1809,2965,1155,413,705,182,337,1046,2055,2137,1210,1094,1836,2147,1156,120,1851,2226,88,853,1830,2343,2618,1752,336,339,418,1887,850,1719,1635,1281,2368,2503,1196,2476,2757,1781,1346,577,2217,2503,2376,2370,2797,1982,1300,2583,2601,2838,1112,2963,344,1103,1462,1196,1032,2844,675,249,1950,2581,160,1154,2615,2505,308,2287,323,2305,2280,2253,1753,2953,223,2458,2760,2862,2044,1417,1842,370,2509,2008,1474,2375,911,1392,802,1521,2312,617,2614,367,1236,689,371,318,1059,2712,2319,489,2668,2781,518,2427,1874,1575,1717,2766,2977,185,1530,756,830,1970,828,2010,2005,1713,473,996,1745,597,1651,315,2265,720,2202,1621,150,2164,1668,1062,1800,2615,2316,1117,2770,1680,2727,378,2450,921,2721,1660,2642,1009,1509,301,1304,2464,778,2432,1214,719,1608,1586,1272,1914,1666,1339,885,1084,1175,2429,311,388,2131,1737,1697,1791,1601,2139,2675,2624,2304,1100,1750,1418,145,2393,2852,860,770,1807,546,2087,2730,2813,218,65,285,1932,386,1739,2259,1651,613,2288,1685,304,2546,1572,81,1016,858,1356,2661,639,982,1536,2619,2759,1585,128,2745,573,1247,928,992,2541,1656,1125,2342,2646,280,939,2568,1935,1571,640,1069,1913,1834,252,2731,2706,723,2320,2222,1177,1190,1873,217,892,1120,362,357,862,11,2170,950,2254,2615,2318,2513,2110,1419,622,1166,2756,745,2506,2521,2912,2482,1474,777,2693,1694,1114,2901,2091,82,2371,2182,1098,770,949,1249,1035,30,826,47,813,2780,2224,2817,1705,979,1718,2593,1803,21,713,1972,1275,1608,2344,2817,349,1132,89,2377,1082,2040,2845,299,2413,2933,2892,359,2988,1748,766,1802,1347,2060,1636,1431,2992,694,1179,762,2319,1645,2889,2233,748,2966,1760,2813,1822,799,953,219,2054,2602,1464,1598,2556,2354,881,2443,2366,2211,1279,325,2889,430,756,1502,2527,295,2967,363,746,1955,770,1807,667,2214,1253,656,742,800,2787,1839,1864,1274,1640,427,1358,69,2655,2330,954,493,1733,2515,2454,2560,528,1866,720,1328,2282,554,2843,1123,222,2941,207,2131,486,2003,544,1926,2377,2493,241,1292,2423,1310,1032,2591,2407,2822,2091,1759,1378,582,1149,393,2789,2505,179,211,588,141,779,2241,939,825,2455,690,188,1281,2466,1719,2562,829,2285,2427,986,1454,539,387,406,1327,1504,0,513,145,1359,1690,2301,143,2261,843,917,1800,1517,1724,1705,402,2788,566,1925,193,2528,1393,154,176,1897,1331,96,822,519,1966,2034,2839,2692,1895,1439,722,1998,1342,2335,1298,702,2085,651,454,296,1566,438,1751,1139,2536,2173,1081,822,941,1305,1374,2476,2477,2083,118,1186,571,1321,2835,960,819,2453,1657,565,1558,1493,2643,1909,2690,2379,1936,1439,1354,2080,2381,1502,1185,2305,90,442,865,2138,2172,2670,782,402,2816,322,43,1909,1745,846,599,1608,2911,18,2688,894,2924,2714,802,2294,421,1786,222,424,2787,338,309,331,716,2009,1035,473,1047,669,1004,1088,1128,907,1454,904,2294,1261,1894,672,1524,941,686,2058,1926,874,2145,91,470,1561,1836,1990,1961,565,2526,1584,2082,566,2374,2073,1143,1006,989,636,1121,2874,369,990,2430,1844,1796,756,2523,890,1832,2440,2254,2728,2011,1381,616,63,1587,510,2013,839,326,1205,291,215,2831,37,1044,24,2821,2005,1607,2829,2022,2966,1270,2782,641,460,1482,2178,795,1115,2755,2128,442,490,760,2021,2730,2014,325,2459,1679,1257,165,1794,2921,2285,2573,2573,1308,1875,2038,2570,1370,2433,1884,2167,753,2031,2414,2336,1768,799,1117,2011,798,1781,860,2744,72,805,2621,2518,1376,1387,89,837,1214,944,108,994,2653,560,427,1736,22,905,2457,710,2219,1160,1757,1300,2641,2280,2597,1233,870,2284,1290,1807,463,1074,2070,2304,2588,177,408,705,611,2817,2296,1406,1026,424,2068,1617,303,624,781,1700,1196,1423,1198,247,99,2384,2128,2969,1956,1882,1945,604,677,656,1820,2334,1426,1990,639,107,788,1498,323,1227,2131,1071,676,2768,1396,2428,1336,364,911,408,1607,567,1464,2785,1871,749,301,1784,1238,2525,1086,586,2729,2934,447,1695,651,1094,274,2472,1813,671,92,190,422,2937,493,2002,2603,1722,1012,992,634,2723,705,1894,1554,169,1004,1973,774,347,2403,78,2294,2409,1044,1782,296,1339,2738,1116,79,1281,361,745,2967,2098,2700,426,1464,1508,2669,2047,2297,129,1613,1120,2703,2637,518,2308,271,2806,1034,2743,2832,2537,1398,500,1407,1331,1235,654,472,171,1920,2181,679,1358,787,101,1693,1294,1708,1003,953,2886,2209,1064,1225,1321,500,2724,2422,1627,2238,2326,2080,1848,2148,1800,1824,1970,41,625,2148,2657,2227,2029,2338,2623,2739,2799,2392,1175,1190,471,2731,2882,1035,865,2296,1072,372,1089,1917,1503,523,599,52,2203,97,638,909,2925,802,2699,15,940,580,2944,706,1371,1035,2274,2883,794,1101,795,1164,2020,2640,1050,2620,2413,2367,2188,1464,302,1211,596,2098,1270,2722,208,396,1274,1726,2223,1618,613,1954,75,2902,2264,924,174,239,959,2488,610,849,2626,596,2824,100,1091,2289,2040,1263,995,2999,1614,2993,27,394,1177,1210,992,2387,2435,1088,848,1869,910,326,2717,180,2122,587,2939,2565,1186,2121,2241,93,2635,622,1778,1027,23,2551,1702,2131,1000,2972,1351,2019,2854,957,2054,463,2890,564,1596,2793,1010,2092,239,1750,191,1588,2955,2114,1892,1686,2793,1995,1564,252,376,521,2365,1363,1966,1817,1441,69,2332,760,324,2068,897,2111,1119,246,2967,217,2235,2926,2241,644,1824,987,796,2297,914,2286,2511,2857,1161,785,1709,1270,1423,546,585,1555,1989,801,690,977,1485,312,1765,231,2395,1694,1981,106,572,2048,950,528,916,1656,390,399,530,2807,1557,2766,658,2633,76,2861,58,1908,51,2012,1934,1760,1751,1283,389,304,1223,2216,1024,563,205,1823,1120,1614,577,1792,937,1159,2973,1742,2248,183,1769,126,1623,1816,184,1933,2097,1251,1537,2410,1241,644,2132,1574,1980,71,1463,2412,2074,1643,81,1299,2657,1392,1278,1687,2245,2574,1374,746,2510,2177,1002,232,244,1144,1415,846,1759,45,2198,1282,2648,911,1501,2398,2516,2732,306,2946,2568,1629,1676,2935,2881,2628,1159,2420,2187,1712,194,2444,1998,2246,1744,2153,736,515,2462,928,1306,246,1332,2900,2112,1652,905,253,973,1152,1352,2485,1747,930,1374,556,760,1134,1437,2409,441,1156,578,576,2327,2453,880,1157,480,1455,435,1774,265,1836,2372,1505,28,2037,207,2114,418,2823,134,816,2612,12,323,70,1744,1442,243,1022,964,1330}

    {336,2577,2295,2325,376,1630,2532,1896,1946,830,1533,1970,2017,2275,2666,1203,838,304,509,212,440,1040,679,451,1965,809,2889,919,940,624,252,2042,2524,2906,577,251,662,1526,979,2445,444,2905,1053,2774,927,789,1583,1243,776,2152,2630,976,1353,391,915,998,1772,88,1036,763,2554,1498,1478,2009,2697,517,540,2325,197,1056,1928,2950,2387,1623,1836,1468,970,376,373,216,954,1738,1369,2551,1416,462,719,896,2835,2638,1223,1059,100,925,112,1852,421,2781,1775,2214,114,942,636,2900,1137,2877,807,2547,1312,1624,13,188,2533,2723,750,2920,2069,1492,574,715,1593,1201,864,2066,357,1408,1727,1603,2810,174,1266,272,645,2850,2446,392,2803,2029,2441,1797,2693,2809,272,59,1891,944,2590,1471,1672,2208,2198,530,930,455,982,2589,2238,2699,2564,2321,1983,416,1856,2626,1325,832,689,878,2715,850,2729,616,359,932,1801,2638,2081,1989,502,2496,1696,1101,868,1906,2103,425,1986,113,2600,1510,939,42,1930,2083,2051,1779,2405,1973,971,734,648,2272,2903,2271,2824,424,2111,2800,1710,930,617,1428,1383,581,1979,1581,436,2394,1476,2770,749,2697,1519,1993,219,2649,2327,2054,1795,582,1542,2531,2025,1265,1013,934,2547,2487,1298,60,989,2,1786,2908,2269,1161,312,1162,2793,769,437,1034,2034,2850,997,2133,811,1495,2180,1918,456,2404,1847,1912,10,2434,1997,1850,2317,1509,2147,433,2174,2177,624,1195,2466,867,1565,307,802,244,2019,1284,2237,2952,2733,1458,1032,268,860,1937,1015,2758,1931,2244,1179,24,2196,55,2326,2537,236,543,1232,1326,768,907,1838,2656,2766,1359,340,2230,2415,130,714,2121,1393,1621,2621,1185,2152,2091,1787,2656,1586,1508,74,903,2761,2412,2175,2439,1905,759,314,984,2161,1612,1505,1757,400,1812,514,1997,2823,2330,2067,2030,1976,508,1536,113,1517,2166,558,2278,571,1852,498,171,1802,618,1843,1001,1100,1974,851,1192,1782,512,579,2784,1499,2037,2845,554,1271,1567,2773,1771,2358,2990,2636,835,2111,1324,345,2529,2867,1592,1748,846,2546,711,368,1087,1239,2313,811,1563,1656,700,1545,428,642,1773,995,203,2943,1375,262,2012,1527,1948,1381,2091,47,2558,934,766,1955,918,2985,1760,633,1284,1896,408,1589,1667,1576,2226,2006,2049,872,2289,698,1858,2895,1816,249,2173,969,944,1277,782,854,278,1273,1119,2154,1349,2736,2519,928,1030,962,497,1017,862,2871,671,1755,2225,1107,70,1354,2045,2671,2704,2920,2546,1903,2817,1607,1620,2586,2837,165,1333,2202,1413,2643,1091,550,2930,402,394,2018,1923,2674,730,75,81,2177,1224,2220,1867,2064,2346,2959,1039,724,2924,1177,1903,2329,351,2627,1929,1804,803,1028,2960,134,1675,2342,1735,1313,616,808,2045,961,532,1575,718,175,2100,98,1966,2508,1130,1564,1242,771,2357,2560,1824,743,1017,1985,2279,1401,1934,668,2759,2644,989,1386,1244,217,1713,1661,553,2776,2631,463,1040,469,2062,1357,471,2639,1903,68,1391,2415,1337,538,385,2260,1362,1421,1736,1112,1294,2349,1682,375,286,2495,1485,2901,2071,782,1368,539,400,2505,2922,2006,509,2856,1825,1920,1440,1395,92,1262,372,605,2701,1773,1622,592,2989,4,355,1241,194,2460,2043,2724,56,1748,2675,1552,2167,350,1548,617,458,1399,2933,2691,1362,867,310,1380,896,2549,961,2662,2288,2227,562,2633,2390,1075,1470,469,1642,364,2597,2315,2917,2559,1707,1865,331,2376,873,1837,2861,2257,2365,1302,84,1316,2629,94,2447,991,2311,1199,58,2428,1019,107,683,294,1429,2274,1559,1320,1653,2780,157,1248,2995,2980,2231,939,1346,1656,1204,817,1402,266,744,1726,1371,317,1798,601,2260,781,1264,1990,919,1190,1113,260,1405,2110,1845,1685,2578,2406,1469,78,2079,2503,550,636,2360,284,2281,2117,1191,1400,588,1658,2207,1310,1237,279,1299,271,843,2748,2058,1579,876,1537,479,2605,542,1125,220,2756,988,1511,1859,2216,1124,1005,1828,2929,2508,1150,2252,2709,930,838,1584,559,204,2699,1849,839,2363,1720,1719,2367,2357,2688,505,2857,1479,479,261,2812,2821,626,1899,2077,1033,2394,1193,328,1883,649,310,1291,2004,2096,572,1266,2645,39,557,1135,75,2163,665,245,1997,80,1211,2408,1696,1841,2437,1920,2447,2400,1655,285,1295,443,1716,2156,1230,2252,2965,2375,300,1238,1569,2796,1417,549,1612,1234,126,492,1560,1863,1851,2745,640,1944,2618,499,2105,1881,1425,1426,642,1365,327,2629,634,1859,2307,2954,2331,1612,335,2775,238,1521,365,334,2946,2456,2212,2597,203,1671,62,1615,1120,2270,2929,842,2211,1129,1238,2610,1029,2433,109,1464,1058,2301,185,2396,2429,443,379,1792,2238,1678,213,1897,2895,726,1399,327,493,2756,168,352,2301,1130,2935,2395,2747,382,298,647,2140,267,1138,1373,401,2144,1023,2176,1043,1463,2168,1877,657,639,797,2616,2864,1090,964,2867,1557,2895,2162,1633,2516,1766,1766,325,648,396,868,174,2611,1688,2079,1958,975,769,1543,123,2772,1745,2274,216,807,1305,2252,2091,677,172,301,733,2027,2795,2440,1293,751,1387,1286,1974,253,2201,2344,1411,1410,1950,1637,2054,2257,1226,351,851,2451,537,1399,1881,2732,559,1359,1390,2447,1085,2690,1555,1529,275,483,2156,2018,1807,1223,952,1370,977,1679,944,273,2940,368,933,1580,2582,2968,1082,1373,2413,2340,2162,1003,2179,2915,1256,2056,2165,888,1451,375,1768,619,134,1575,346,1635,752,719,2186,1394,937,1719,1818,2110,2281,1509,1360,152,2886,2704,2533,319,835,964,2576,1100,1195,828,2790,2741,1035,2102,2986,1217,333,1052,865,1323,1646,294,439,506,346,2224,1923,1359,1743,2773,2543,2262,1283,2705,583,1070,2144,2751,770,2505,1753,1057,244,2462,752,1665,1230,2910,1457,2868,110,2879,1763,1359,1966,423,2156,2364,2931,727,2428,996,376,2132,1268,2353,916,1364,1704,346,2517,666,2637,560,2695,29,2456,2107,681,455,194,2360,1292,559,1147,1746,0,1902,429,1758,2834,1469,1246,1635,2346,145,235,218,949,722,1592,2979,901,1947,2898,1847,1384,34,890,2453,1879,1506,895,119,2298,869,1062,890,2890,1160,2685,1168,2841,585,957,2596,605,2275,1073,2982,36,1616,2183,2232,2072,2052,1964,1587,1627,10,2033,2591,1405,321,2609,1916,911,2705,1673,1345,34,799,2799,2290,1978,951,2749,1449,1869,2120,1576,994,1396,910,2185,2134,2028,2039,2210,2897,434,2327,1415,1557,2338,1776,507,1575,1532,161,696,366,860,834,2055,148,728,1805,259,897,403,1319,2595,2450,2360,803,1664,1425,1898,2664,2539,425,1313,1205,2473,2787,1704,298,1888,2877,950,49,465,805,2607,2007,1333,689,2688,527,1343,1522,1204,1420,2129,1847,1705,2587,2873,1948,2617,2729,971,2351,2731,1991,2319,2012,2733,900,2299,2142,2575,564,2061,801,1126,1619,719,1428,2157,1684,2880,2031,1668,2803,341,2446,1188,2349,1471,2427,1745,645,1036,1098,6,2540,2643,1783,193,2463,2715,618,229,2292,773,1876,884,2606,162,1249,2816,2288,2318,1835,19,1367,131,1109,1586,529,2467,2098,2114,2442,948,2764,1390,1593,708,1113,2334,395,2958,444,1578,1823,1698,200,1161,1194,1180,1649,355,2751,666,2402,2118,603,2302,1030,1230,377,814,1106,2442,1645,516,621,2404,1727,1663,2017,2520,2814,666,1992,158,909,578,1023,1460,1617,1539,2159,2030,1940,337,2756,1968,1948,1600,207,2805,1181,850,774,1924,2471,1919,2723,1244,173,2055,794,2282,1317,2976,2085,2534,2381,196,2632,838,2313,2044,2987,2766,2315,2203,1536,877,2497,279,678,1674,104,1975,963,1151,1729,1883,947,2242,706,202,47,1730,117,1962,1774,352,2864,1857,993,1465,1253,135,2204,257,46,297,407,2866,2424,489,1430,883,852,2383,2054,1418,1170,1911,2604,1496,1657,2364,2124,2863,623,1085,2580,90,1391,1510,571,303,2268,132,1323,2693,207,2260,2554,674,344,1334,484,719,2080,2311,972,174,283,1201,1649,1324,306,1454,1901,1533,1959,2027,556,2330,2174,1258,2710,1966,2889,2825,1142,2255,2474,581,568,739,1614,969,2807,352,1277,1147,1697,587,870,1872,776,2476,216,2236,472,2894,1225,391,2579,1614,1477,2387,624,2700,123,2096,2368,950,1821,2624,2087,548,1975,277,2598,547,2779,2852,233,1863,763,2026,2289,381,146,1301,1206,2690,2530,468,2491,48,1814,2740,902,660,1277,747,2937,338,1259,922,2722,2493,1046,2981,2604,2784,2880,2502,89,2074,1795,500,959,2276,590,1524,1919,1887,1999,221,1188,756,697,1554,2243,2825,2395,1287,2935,2290,2616,97,991,1341,2075,797,1438,310,2541,1654,592,1706,1734,298,418,2723,1202,2568,2959,1077,2005,2537,740,2837,280,1791,2682,1591,1479,786,1296,2853,95,235,2556,2825,859,440,256,1757,73,461,1710,593,1132,2545,1003,727,321,172,448,79,2358,2057,1713,1444,903,2219,59,1696,2866,687,210,252,612,1188,204,2841,2106,1901,1533,2400,2796,997,1489,387,2585,2383,1975,1128,41,1350,1362,2597,2997,1942,1497,933,1096,2248,968,1575,1570,797,1397,2386,2829,2373,2375,1048,2348,2514,2990,630,175,2815,2202,2087,1120,1539,88,1201,847,1284,2549,2708,116,468,2904,1914,926,477,2063,2217,916,1310,1749,1501,1670,823,2689,1140,861,2146,1069,2155,1163,1398,803,1160,2309,1072,654,989,2951,1358,111,1208,1568,2771,2174,1447,1094,2646,755,2718,1330,1934,478,2583,2047,815,2029,2800,1683,2903,112,2347,2845,517,276,757,240,1953,1855,1200,2493,475,1460,2960,1099,1166,2151,1340,784,866,1886,1997,2574,2126,1919,2442,2654,955,2234,1671,2080,2752,191,222,133,289,840,693,2076,1728,2133,758,2580,212,1954,341,2809,502,1578,2494,916,2929,986,2199,529,2857,2519,2841,907,531,14,1587,1944,294,2197,1929,812,1518,1467,2475,2126,2707,396,2356,315,956,1061,2594,1165,1601,2949,1994,1934,1425,2136,2740,2792,2367,1497,2808,1049,2548,504,2706,35,305,2076,804,2907,2926,470,2503,206,555,338,2211,357,2445,248,2101,471,1502,1020,635,2229,2237,2652,376,1541,1580,2447,632,1406,1131,1635,127,1766,2024,1626,2341,2453,1000,2063,2720,2592,2938,2169,942,1956,2032,1826,1523,1447,1112,1515,2383,1966,2846,2119,1118,671,1831,2324,2976,961,2484,184,420,1889,2036,1568,896,452,2439,1705,2538,2193,938,491,488,2053,1616,2080,240,726,2202,2185,1946,1969,2431,1016,1316,127,2608,1076,1009,1059,1035,1531,496,1996,1018,1085,1587,521,2399,314,1402,919,1573,1403,675,2053,786,1599,2360,1041,1577,2336,1898,1751,2462,2032,1496,1377,22,1207,2727,1381,2720,2145,2021,2782,1422,1850,551,519,1037,1574,2923,617,2214,2380,2574,1366,142,2362,1483,1746,2678,2581,1785,619,46,2076,2294,2092,1317,1547,2644,433,2267,1291,810,2084,1648,2694,1227,2846,920,18,2350,2378,303,2435,818,2456,1167,1711,2914,989,2222,2677,1830,1626,1723,2285,1794,2530,1266,419,429,1780,27,704,596,1066,1375,1416,1306,1860,2755,815,746,677,2961,466,2361,923,1277,2377,1006,2593,2604,198,1346,1525,1038,882,139,1770,621,709,1793,1278,26,794,2384,2013,1487,2040,1860,1995,2261,1573,1682,1575,2754,1472,2247,1876,2903,2485,1839,2626,1332,2243,2045,1373,913,2221,824,1534,994,1952,2215,1597,213,2689,2991,767,450,1014,2333,2978,2562,1602,139,1893,609,1224,1415,1251,682,2339,2425,1574,432,2650,2397,2691,1566,149,1420,264,2677,661,1729,522,1425,2887,1436,2344,2272,546,55,1014,1975,751,585,1935,721,2707,2483,2315,1324,1795,1372,2861,786,2571,1611,298,1225,28,1745,2937,1806,1213,2,2371,1623,633,1109,1982,2062,1094,606,2586,472,779,1691,126,608,1775,1902,460,567,314,2184,20,143,1847,221,2149,1533,2737,97,1313,2901,260,2735,605,109,801,616,86,159,1434,1543,2735,2171,2228,1628,2041,2568,1402,863,2164,423,2733,276,1631,2465,1254,397,212,1390,99,2141,1531,2612,2599,1705,1395,2490,1883,1756,1704,356,1985,871,494,908,2102,986,1332,2698,1121,487,2480,2660,1553,2418,2104,103,1131,1892,1327,2259,406,1757,1689,2552,583,2979,653,1316,772,984,1641,901,741,408,1932,1036,459,604,1427,2962,2081,2870,598,2726,2498,1857,2122,444,1738,2942,2858,2613,2654,2954,2412,1000,2186,615,212,2468,936,1893,279,2604,2095,92,635,2804,657,1578,1878,2612,134,162,626,970,453,225,2863,1511,1049,1846,1263,351,1042,246,776,2580,2430,285,535,1362,2695,945,1404,60,1103,1268,867,946,2249,2323,2388,2438,2192,1361,1722,2339,1385,377,1292,525,226,290,2711,1146,2687,570,912,1648,38,2031,2461,2524,1468,908,2143,1356,109,2506,2588,2028,147,813,1277,2458,26,2228,2636,2658,780,2127,495,1215,2798,1919,1289,21,367,2160,357,2174,1009,910,5,992,1963,645,1448,1309,1744,2314,89,984,569,2028,1930,2459,1555,2869,1732,2325,1086,1709,1791,2115,264,270,879,2699,2089,142,1199,1530,2643,2231,28,1184,2489,2947,2814,259,1149,824,545,2654,978,1529,351,1703,1361,2840,1450,1407,2540,2413,1155,2857,1089,2148,2902,2481,916,733,308,1861,402,1582,949,1234,2593,1189,1190,1103,648,2070,831,795,1963,2448,425,2326,1488,56,682,2288,591,206,2903,2218,2207,1095,1815,2762,765,1220,1097,707,1431,507,2555,2600,2333,1734,2088,2133,961,1890,2841,1007,2262,916,627,1465,1531,775,981,1,2504,564,2123,2860,115,1538,1691,1182,106,1057,1362,547,1023,1754,193,1033,1324,49,746,529,2730,2878,977,663,1636,895,2304,1566,2820,1927,1172,793,2698,2773,2125,1347,1965,2847,2960,1006,1837,2470,1284,1663,985,821,1951,94,1600,1688,1110,1923,2522,102,1886,1414,273,1840,589,531,2911,2642,1635,437,1990,783,361,1243,770,2167,1743,66,244,2787,1825,1219,2976,625,739,283,2251,1332,2369,2130,690,292,1646,47,2203,2133,173,1151,1348,1641,1620,815,2349,1872,2745,1054,2622,1430,2627,2266,389,21,1614,2383,1697,2215,2235,1473,184,1517,790,894,1927,1004,2597,77,2495,732,474,637,2950,82,2534,2476,1378,618,1764,2732,246,107,1643,2825,1453,2146,432,2153,2604,2177,139,2479,2303,361,1148,2155,2818,164,2025,483,1041,863,160,277,2784,1175,2758,1826,1612,2946,692,652,2817,1647,2713,1714,343,255,1521,2428,1904,2333,1819,1808,2544,1262,179,2164,1613,906,562,584,2705,1093,1453,2843,1015,88,606,1486,390,2801,2239,178,242,2946,1196,2128,2385,135,2576,1416,2651,1141,2618,2380,1558,132,970,2757,1329,1038,40,2297,2205,661,1859,2678,2530,1638,1288,947,1298,853,2724,1850,1985,1941,226,2708,2435,2465,713,83,17,1540,254,1822,1906,2519,2447,2994,2057,2442,1370,2832,1203,320,1390,343,192,1327,2697,695,2542,2234,1659,617,2841,2377,1973,1513,2836,1234,2359,360,799,2447,1517,88,685,171,1364,540,1950,2720,2734,1870,725,676,173,1049,68,1676,579,1500,1245,965,2500,2913,719,2644,2261,124,2260,997,2231,561,764,2504,1742,175,2239,1636,2540,562,415,2462,2452,1761,520,2561,380,2846,760,1406,1809,2569,756,1766,974,2966,2113,2718,1266,1869,2985,640,541,2522,1788,1777,197,1303,1384,2640,656,1346,735,1495,968,1489,1111,2158,226,1144,1649,1574,2606,2425,2881,2739,2107,1608,1032,4,1114,642,961,1035,1276,2867,2757,1009,1835,1483,2387,1984,1502,1782,281,415,4,1343,191,214,2,153,926,2011,755,1655,1681,1072,2408,1128,1058,1394,1515,1713,2534,1300,1008,2065,1051,770,598,259,449,1662,1418,857,1546,1489,1737,1918,402,2424,2486,50,2261,2480,1535,171,1902,2674,766,2486,2667,2998,1456,2754,2910,306,1551,1407,259,1094,2215,2524,1159,1487,2971,2191,364,1395,2355,2928,1555,2633,61,969,2580,1514,671,2638,2595,792,2043,185,1275,1434,2986,673,490,2301,1025,31,1944,716,756,334,1248,1737,2769,1515,2924,960,1734,1856,2619,2005}

    949

    2917

    Returns: 905418582

  125. {674,2784,985,263,970,2745,421,1697,2169,1084,2403,452,1781,2531,548,2352,1629,1695,2217,1834,750,189,2935,2905,2018,1518,2120,2148,2462,2433,2590,761,1243,1904,1854,2332,1210,690,472,442,717,2685,254,1484,2199,2059,1622,1487,2170,1770,912,1279,134,2189,2606,2110,2110,777,1723,666,2847,2721,755,871,451,781,2117,583,242,137,2995,2281,1116,2671,2455,2983,2030,2803,652,626,1857,2750,907,318,1845,526,1341,357,2603,2011,1579,533,1473,31,1956,474,332,2802,1583,402,2499,1397,116,1733,1917,104,1980,258,2726,1176,1122,2020,1446,2940,430,2355,1316,22,1699,2272,351,2770,2578,1189,857,2085,2207,62,1152,1841,1908,87,328,1745,632,816,1805,2980,494,423,1007,1865,1943,1751,1505,1213,561,718,2637,1711,1661,129,528,1912,367,1602,2958,2162,2306,1622,1089,562,1491,65,2998,2205,287,634,2077,2470,1059,2861,1,2305,2862,16,361,300,2994,2411,2928,83,803,1115,2918,2533,806,2099,1603,2568,2174,233,2348,1538,258,1076,2387,833,2584,154,33,60,2878,897,1561,307,2366,70,1714,933,1730,2455,1666,631,1578,2053,380,1633,2220,1096,1718,1593,916,1329,1504,108,1679,1806,2301,1573,1112,2765,1026,1700,452,2860,271,1878,51,2901,2276,2980,531,2440,1139,2683,503,1788,1152,1130,951,1661,1585,1958,2026,1373,2053,559,853,950,816,2685,2529,24,542,2508,824,687,830,2718,2087,950,106,188,1528,2290,1660,1138,2210,2527,849,571,619,2493,306,1663,366,1168,1234,641,1815,14,2783,390,2248,1224,676,2109,1877,60,1225,2255,2384,782,1588,1566,484,1425,651,2958,1698,2776,1138,815,755,1286,1502,2078,2854,1883,2236,2413,2153,2266,885,1594,1275,2495,1686,2515,274,718,1096,1572,2532,1923,1857,2086,2495,2038,1617,1897,1866,1963,2690,2874,1006,2988,1354,2373,728,137,2465,2738,1020,1340,1231,1912,811,2305,2512,2143,2968,2549,927,1551,2280,524,2227,50,1443,2152,2520,889,2062,2501,877,671,1227,2937,2721,1339,2235,1214,1201,2556,1001,2823,2069,2367,973,1016,556,1606,622,940,2561,2498,597,2056,1752,397,2254,1754,274,1557,2230,148,2927,1957,2308,784,861,2300,1628,994,1619,1997,96,2887,2946,2000,2823,1243,2188,1842,1603,2136,2020,1541,1186,1991,1859,1354,2352,1749,2004,2522,1078,1483,2654,2316,2466,1514,130,1428,1457,1297,2233,2680,1176,2457,1435,232,166,1680,2872,1131,309,927,1552,2473,1541,1260,1237,820,2322,2254,1937,1781,866,93,2706,2144,804,2141,2507,1570,1912,668,767,597,427,2866,2973,1606,2554,8,40,80,2937,1051,189,2403,2031,2955,976,1018,1156,2666,1706,1873,1412,808,829,1111,834,377,746,2889,949,1360,212,1459,787,2350,709,2286,1216,772,1839,2090,121,2442,2473,695,861,2144,2963,56,1369,1380,1107,11,2363,2608,1371,2850,2670,558,2517,2475,587,2919,2967,736,2287,1610,1097,740,2162,2351,587,1319,1098,2255,2977,2855,2507,139,1405,1948,1412,1354,85,1899,2964,770,1709,1719,2804,2250,2109,358,2104,2538,439,1433,198,2650,2856,1111,1753,1351,712,874,2731,129,2542,929,186,2850,1747,855,382,704,2701,885,2816,1413,1174,458,2284,2739,7,531,68,32,2035,1140,1801,53,2498,1928,941,1232,1373,2443,2368,2575,1573,1530,480,634,1004,1759,891,2578,1421,880,370,2876,569,1341,2,696,2931,2226,1985,2231,1815,2705,346,404,830,2736,134,1019,1073,1641,496,707,2948,267,2956,2418,1450,678,1026,2121,279,2751,338,1324,2308,2883,588,383,9,1507,2052,2091,2442,2955,1702,363,2706,381,2541,1965,2625,532,2205,1838,2797,938,2114,6,1524,2074,2179,2552,2364,1809,2711,2094,848,2054,1617,1134,1717,1551,1150,1885,843,2274,912,531,660,1529,1293,143,68,2870,424,1298,1702,735,2109,2177,2071,1756,626,1147,764,288,2619,484,1502,1756,681,968,1784,2246,2494,2744,1581,2810,2004,1898,1301,2495,2481,2292,1835,2271,2206,1780,2497,2288,391,1737,2364,1925,1069,771,2978,152,2369,359,1073,2064,1387,2914,506,1851,1604,1046,1637,1657,1273,1083,1016,112,1584,13,2302,521,441,1247,2191,2645,1549,293,653,2578,2445,2123,955,1030,488,2716,759,2526,909,930,1690,1140,1312,2991,2457,2834,2202,1830,2047,2035,1806,536,1840,1601,2410,1186,171,568,2690,543,1277,376,1832,206,625,1888,92,2119,2832,1296,1400,1820,7,1776,2500,95,403,2636,126,1126,78,2423,655,224,1428,371,2244,604,2577,1294,2145,64,1715,259,2033,2872,1692,1582,465,1700,2370,1140,766,2538,832,1745,14,880,278,2611,1549,2661,1186,1401,1733,2108,1446,1782,579,229,2108,1209,2330,2264,945,1683,1821,2379,2347,1744,1775,2764,2594,289,1790,1291,1816,594,1856,2829,1961,2820,2623,289,1079,677,2393,256,556,1125,1275,2246,2287,2479,798,2403,798,2816,205,2995,2819,739,42,1216,485,96,59,136,1524,529,509,2629,2437,1451,925,2748,2986,1260,1006,1085,162,1784,2029,2804,25,1782,1154,2064,1831,146,1480,123,1171,2321,466,2235,447,2285,1601,1737,1002,885,1084,1399,2241,2343,1666,1964,1970,2274,1364,468,1320,2880,813,2291,2964,2373,1208,2788,981,1347,597,2158,2985,778,2789,2238,292,1003,2142,2168,1699,438,897,2984,1073,1783,2154,2688,55,2802,550,2768,668,2560,2176,926,43,315,787,1548,1271,2723,2408,2816,2877,1267,2822,2196,261,323,1532,599,685,283,1674,2993,689,612,975,156,1094,456,420,2033,2793,2927,149,236,936,2337,2235,2252,1530,2901,293,403,415,270,2305,2958,1876,1884,1868,2348,336,230,1742,1431,2564,2447,2482,362,1953,2513,312,677,494,2182,2324,36,2995,947,895,1441,312,2151,326,2611,1280,2898,1903,2830,2786,1149,1437,2692,1946,1633,822,1507,1882,1218,2021,375,936,2897,810,944,1271,2179,2127,1632,1707,1855,369,727,1240,2567,939,1243,2233,1713,2288,2493,354,1522,873,698,2945,2230,111,2491,2826,1327,2817,1558,1970,1065,2835,1308,438,1560,2913,221,2107,643,973,1076,1400,1492,1607,8,901,598,2403,572,819,2536,476,2982,1286,2339,478,1727,1239,2198,184,1105,1439,2267,2099,2401,781,2786,102,2479,2736,1623,1612,2741,33,1406,179,2053,1185,2970,2030,1778,1169,1756,1266,870,2063,2216,2622,2911,1852,2505,2413,111,2095,1198,1265,2452,973,2853,2508,2980,1020,1117,1201,310,251,2470,324,1108,1673,876,1365,1405,2271,1739,447,696,1826,1977,1633,1935,2392,808,2652,1094,2147,2990,2246,2528,1945,1689,242,1361,2322,1154,1107,29,2948,890,2015,521,595,1121,366,2679,2316,197,1792,2804,161,2232,244,2493,1442,769,1011,2245,2910,898,2953,411,2575,2620,1804,1448,327,295,2392,1641,2096,2991,1084,2916,1290,1985,182,2724,907,2726,1845,1458,2957,1017,991,674,1795,1931,2419,1380,2840,2638,348,2959,2030,647,347,2545,684,217,1028,2135,2531,2144,89,113,1765,1260,629,65,448,1002,2801,2778,2193,668,2276,2493,2183,2611,1552,1807,1304,1966,343,1012,1180,2722,195,447,2212,2257,1782,2474,2892,2841,2543,1264,614,807,1676,1066,717,68,2327,2324,873,2596,291,1339,460,174,490,835,2885,2074,2587,986,173,2234,2702,1748,1099,1703,1306,2271,322,275,2060,1414,2239,306,469,2486,926,2339,2077,2767,79,1643,2609,484,1148,682,1033,1560,1390,337,1791,1664,623,52,36,99,2461,1326,2214,514,1071,107,33,2005,2280,1803,831,2119,1497,602,450,486,2732,1499,1195,117,1956,2948,2809,1864,2405,952,1315,2707,2887,465,582,2270,2520,231,180,353,2184,2726,1596,2679,1212,951,1492,80,1468,2198,1547,1152,346,1552,2242,1488,2730,1582,19,963,652,2389,1227,2099,1514,1519,886,1768,541,2130,2332,732,419,91,1490,1507,2790,2921,1955,52,36,2732,1712,2485,878,2861,742,518,1163,1407,1668,1572,1548,2779,388,2772,2632,2427,2836,1048,2269,1407,717,1835,1226,353,929,758,648,2784,139,1377,1209,2718,200,1794,813,1639,152,891,1407,843,2169,2340,2115,1214,2582,372,838,541,1961,524,757,1553,1395,97,1343,508,2434,656,611,844,257,2256,646,1440,1705,2556,857,1497,372,578,2262,1743,31,1581,688,1527,2910,2525,2028,2210,155,2771,2276,990,1755,2710,2374,197,2585,491,2327,2451,1120,443,1963,220,1157,2983,1629,2083,2918,571,2635,802,1838,449,712,2350,587,1580,1932,486,1601,1279,2332,2728,2003,1847,1560,1150,2431,2316,2790,1159,2224,2567,1357,2150,1322,507,1093,692,1587,75,451,2740,368,1213,1665,1372,111,545,153,1586,2816,796,1560,2418,2650,380,2589,2683,2551,2307,1325,1620,1599,446,19,1144,228,2129,2182,1984,2760,58,615,1758,1172,2712,372,2868,459,2792,175,2430,2639,2640,649,2295,1341,1843,1595,1516,1622,640,2475,1039,2380,2928,361,236,256,2371,251,787,2206,1858,1187,1807,2299,1474,2081,1576,1662,1704,2628,2988,1548,1116,358,176,1342,932,2655,14,1295,2379,639,1879,943,1331,538,1250,1472,2158,1981,1996,147,1897,1829,878,2735,129,869,241,176,1102,1231,2416,1864,517,1927,1625,524,927,2129,2031,251,2664,2272,218,1736,1398,2795,2841,1072,939,2720,159,1712,2887,235,2213,2150,1605,2472,2987,2149,1992,695,828,424,2628,573,639,2422,2676,1251,69,2189,422,2798,98,1808,76,1798,47,173,1628,84,105,1171,1308,914,885,1175,2488,2254,25,171,1607,2254,2806,1724,367,2427,2005,1886,2912,1399,1468,2241,1390,838,2181,1426,17,245,1905,2686,319,1221,889,1877,2167,2157,492,2144,2014,2998,735,2065,2345,2457,1821,1827,642,2987,412,2186,408,594,1748,462,2616,304,926,2863,1829,502,967,870,2819,1066,762,1484,1867,1139,2306,870,2361,1741,1061,842,2092,690,1140,724,1114,1786,2450,2161,1582,115,1321,889,957,601,2204,1703,2541,582,2016,1944,2140,1379,1536,1766,2338,715,2655,2175,1806,1509,2663,1758,1692,1869,349,145,1587,501,1827,2746,1576,723,2995,649,1461,1175,2649,14,147,1599,1959,1753,2673,2410,1227,1882,1024,2940,1797,927,2781,1646,775,1144,1131,1151,793,1373,531,1540,1452,2034,1177,344,1736,2999,470,2445,227,1893,2895,387,1033,228,1250,72,1014,1638,1112,646,541,1347,1516,1321,1683,2821,2357,1211,1361,458,2641,2340,1338,1546,2766,1386,2209,679,1542,564,2526,561,1454,1827,1334,62,2508,795,1145,968,887,2026,2764,1568,1669,1973,749,1436,454,749,2950,2817,613,364,1343,2486,2089,2938,18,609,2259,1022,1247,286,2335,2932,1620,2585,1096,668,599,2466,2921,2521,1986,2701,135,1891,2486,805,1707,1460,979,842,1652,380,2962,1631,469,2190,2396,1193,134,2061,2680,1087,2439,93,1290,2042,1276,2255,1540,909,2760,1475,2854,984,852,2123,1404,41,618,1035,2454,2104,2317,2693,1270,2844,2218,2949,1840,1817,1940,1386,538,31,2097,1858,515,2936,22,1867,1561,2323,2107,1838,2945,691,2967,313,1744,996,1952,1063,1645,1559,2076,2219,74,2560,1450,245,2533,655,2924,1735,252,2806,2227,2311,476,2031,539,1312,1042,2710,1667,2458,678,1459,119,1866,1053,1224,393,367,925,159,732,633,643,2408,1501,1427,1111,2614,2540,467,52,650,747,2184,2643,2922,1256,179,1872,617,1099,150,1726,1413,1349,1041,114,635,2699,1802,2442,1243,28,1722,800,2767,2695,511,2973,424,1635,545,1602,1376,2707,2355,1684,121,2231,932,1464,2653,345,381,2523,2313,334,540,1418,209,1263,1178,263,1696,1199,527,669,773,2188,304,726,1986,2543,2303,1782,130,2045,2725,1080,1860,2362,1745,2250,1392,558,609,2674,1739,2936,394,69,1368,1913,524,2996,1334,1708,848,2511,2392,1134,1284,821,190,2798,1682,358,46,2190,66,1290,1669,2370,2041,2698,1220,2095,2112,1585,1071,2945,2669,2669,1176,2162,1117,169,308,1317,565,241,1238,2135,2253,2083,520,1450,108,1005,2858,2479,34,2356,1947,791,1451,1522,801,355,2006,2494,1462,2636,2706,511,2367,2310,2840,1552,2210,2879,152,1427,1823,1672,584,1370,139,1036,2466,533,2474,1339,1151,2562,2222,150,1774,463,1877,630,1691,2213,1718,2048,490,2661,1858,1470,236,1967,1839,1733,2353,2600,2050,2586,44,1761,2776,2823,1370,462,1411,2238,2500,1013,1328,1217,560,2796,278,2957,120,973,1942,2358,1592,239,1120,1807,1822,2627,2660,1473,1515,2171,1067,499,977,1002,465,1290,1705,191,124,152,2759,2664,1007,1902,332,985,569,1812,1777,827,1242,2516,2125,1866,2111,203,1752,2784,520,2506,384,1069,28,2250,2590,809,971,322,1654,2531,2962,94,1507,961,712,19,336,1309,1025,675,1206,1949,1526,1156,265,1926,1252,2274,2488,1589,2960,1495,2929,2246,92,1144,1682,2002,457,1533,366,1681,1726,2944,2649,1739,2845,2011,865,1380,1345,2808,2320,1294,2896,333,2277,2544,1587,2460,2441,1970,2573,160,508,1259,374,2912,2888,526,390,2875,953,1465,652,2061,2478,125,825,2154,274,2766,1924,2114,2446,611,2477,2983,1791,2675,892,2195,1245,486,2941,2715,756,2390,635,2635,723,459,2203,602,1503,2902,1079,12,986,2098,2737,455,0,2200,2540,782,1488,624,751,2633,2855,440,2970,2772,900,1222,1108,1902,383,2122,2277,126,1919,780,2265,624,2593,1093,1165,2243,2987,1670,339,972,298,2469,2620,1861,1806,1262,1463,2138,1336,667,322,707,2133,518,451,1434,2754,1913,1398,647,1215,983,1128,954,844,2435,291,1823,1870,2817,579,1158,1393,1017,746,1489,2655,1574,1949,1976,420,279,2537,2461,2800,2002,2031,894,275,124,1909,1247,2852,1371,2358,288,1228,1534,2532,2279,323,1061,2385,678,2221,299,2727,1840,2641,1558,1915,2228,1069,346,2019,417,638,2644,8,1052,2493,2918,2571,729,1487,948,902,1037,814,1995,1866,2735,110,2275,698,173,372,925,2999,2378,2602,596,2891,1274,1691,2423,700,1823,55,1550,1899,392,2874,576,888,2870,969,1639,2651,597,573,41,451,964,1568,1988,41,1159,1249,1462,434,2255,985,1093,1034,26,2482,2182,272,2597,125,1737,2551,2154,473,702,551,2566,736,1235,830,1073,2241,1217,2949,1479,544,1686,1530,1718,224,1792,2975,2738,1060,830,2432,2484,2187,1684,731,1146,1405,2583,1370,996,1681,2394,2284,756,1389,2607,1989,214,1077,606,603,1549,2296,359,1543,541,145,2412,933,2521,1039,1922,1694,1070,1114,2935,701,195,854,1823,93,2598,1627,1337,2541,2881,2689,1949,2947,2595,142,2612,2868,1243,1907,24,515,1793,1713,2081,603,1931,2340,1320,515,477,2569,2014,2952,1758,2682,2160,924,1862,831,1091,1760,888,809,1616,1818,2507,895,1237,1848,599,27,469,1565,1043,335,2969,659,1607,2400,168,2264,1480,1454,291,1082,1651,232,287,611,1268,155,1155,2351,174,2586,753,750,2945,857,7,873,687,331,2621,1577,2385,118,86,827,1023,785,1105,1756,1356,581,2393,1524,1248,247,762,1597,21,861,2647,1956,795,885,267,2297,2831,862,1011,35,855,429,2504,1043,2954,916,2918,122,1263,2591,311,290,1714,424,488,18,1526,474,510,1316,414,1825,2314,1372,2649,1359,509,2615,540,1600,262,490,2886,1201,2507,2475,2417,1650,644,1493,379,231,2025,1408,490,585,1728,2592,2981,2886,1394,1662,1168,2010,641,227,2979,821,1690,988,912,2048,522,1679,2438,2727,1019,2211,284,2408,1604,2833,2178,323,1837,1584,808,1132,1521,23,346,2510,1182,1467,1658,1927,1490,644,1299,2562,2503,1372,1881,1328,1667,2508,263,2008,1984,2084,1347,1991,2128,1613,340,1917,2123,2824,634,2083,1150,1302,1736,247,1646,990,691,1267,199,2420,663,2729,2877,842,2773,1015,532,1305,1255,2839,1332,2891,1520,2603,1321,1976,1813,1978,1409,513,2774,1976,235,1212,1271,1266,917,1645,1554,2840,1110,1634,2283,810,711,2945,2592,1175,1447,321,1914,2772,1710,962,1220,1842,1413,145,958,1766,2396,737,2932,2766,543,1619,2604,1709,177,1196,1541,2011,1461,2451,2234,82,2594,2777,1203,2765,2674,1449}

    {583,2438,1225,2754,2952,1373,2623,1992,2333,2325,2502,2031,1474,382,617,1314,1127,520,875,435,702,2842,857,970,196,2250,1662,20,2208,1358,1143,2287,2148,973,1658,1935,563,662,495,2553,2813,1477,2238,2146,1229,2223,2864,2690,2928,2235,194,2811,1418,754,2335,368,1012,2687,2023,723,833,140,2430,710,2060,1939,904,2787,537,363,1424,412,1442,2373,586,1166,1464,1516,371,1075,1088,1607,870,1005,2894,699,2913,712,2378,2719,753,714,360,2629,1150,259,554,1913,943,1567,1109,2855,92,329,1630,2109,1800,1009,2324,1958,138,1508,1853,1895,2916,2787,2638,475,1340,1190,2542,2292,2833,1966,839,1471,415,1892,2143,593,1917,2536,631,2336,1013,1975,264,768,2322,2470,401,1167,441,1213,1353,1556,1994,1916,1024,2936,2684,823,594,1288,2979,1645,502,2855,1402,628,2700,1979,2899,881,17,1878,544,905,4,464,1279,2406,2455,253,187,2406,516,2227,2039,597,234,1801,2178,1617,344,2307,2917,1935,2848,932,1518,1780,1057,2574,632,2948,1590,1891,570,650,848,654,1192,2190,1730,493,2982,1960,2816,785,2057,2854,2909,46,125,1959,1258,2662,970,2306,2381,1170,192,2905,1870,1955,1887,1281,2710,311,0,1290,2389,2618,2904,2805,2890,992,2457,2349,2111,1491,623,2888,156,997,640,1314,2836,1248,2997,2464,920,1934,1669,1785,80,1457,1466,96,2113,2201,2208,1784,2281,1619,1442,1246,806,430,733,675,730,332,2431,1760,2938,129,1764,2665,1135,2087,2043,2883,2416,2884,885,778,2013,946,1293,2796,1546,590,153,1983,2480,1123,2383,2601,1627,354,2157,1317,1262,1312,177,1710,489,1736,1621,398,708,1003,1858,2755,960,1257,2676,1698,2137,439,1200,2820,2867,1263,1041,744,1478,1680,882,1764,563,1705,2146,2199,1138,1206,1671,2458,2415,571,343,2612,1020,260,2348,1441,9,1701,1739,871,310,1784,1494,2663,2975,1325,1755,2203,1047,418,1413,1590,789,2304,2544,187,2496,758,2296,2375,1913,1544,1113,466,444,1134,285,413,377,817,1393,2637,783,1484,96,1419,2079,860,850,2616,2757,177,866,1843,2685,1731,1283,571,1966,2942,2341,682,1179,2502,2328,927,356,2184,158,54,2537,509,1398,942,1029,371,998,1757,1698,1927,874,765,593,381,914,69,1341,1768,2862,557,60,537,2733,2185,1755,1531,2204,1428,1887,1770,1943,125,2304,1737,2858,634,2082,40,1649,2571,669,1139,2904,2687,1472,1787,1510,884,408,1598,995,1103,5,2177,1898,1445,2821,466,2927,71,721,1246,2384,1174,1958,881,2874,1656,1144,1608,948,735,2070,1313,1144,867,2749,1620,2837,1993,2714,2563,225,226,1478,1299,1974,1752,1498,401,1339,127,1659,2127,2404,2648,1699,1505,2448,779,2867,442,1640,2083,373,266,2670,520,774,861,2599,780,1420,1130,830,2155,2400,973,2215,185,2036,1239,1251,2855,1497,1538,2498,1344,1330,267,410,1912,1197,661,1091,836,170,1352,1525,710,2710,2913,1733,2179,1214,1571,469,2232,2191,1434,302,1890,1899,525,395,823,1316,2717,1434,2581,605,2532,2258,2249,1092,2990,19,2062,255,1045,581,722,2390,2007,731,1321,122,2761,2520,1285,1376,888,373,229,2192,1506,182,2567,2525,1920,2823,2572,2883,77,2138,819,357,820,933,2344,1798,2400,1117,907,601,2856,459,2668,583,2962,1381,1704,2293,109,399,2827,1033,1332,2970,1140,2829,1228,750,2126,292,279,2057,1709,1999,655,2684,2872,2371,153,1403,335,2524,2990,2255,1424,1021,1687,2842,2264,650,444,2797,2813,675,2780,2646,1576,1415,2149,672,1760,1719,1251,2062,2957,915,1324,243,2484,2285,910,495,1406,1691,1976,531,1950,1531,1991,1243,681,2870,1371,1846,18,1931,2460,1930,1182,2731,1851,2271,1512,2335,980,906,1208,1953,1194,1829,2092,2799,2823,1607,796,1012,931,1385,668,2538,711,647,2981,2550,2885,836,2004,637,812,159,1027,2333,1850,2575,889,778,2404,63,1215,2078,2113,2421,2467,1365,2646,1470,2761,911,172,1163,2821,1598,2178,1399,2397,1374,1645,163,2034,861,2372,1694,1825,0,1341,948,27,1676,546,2162,1654,1247,1466,435,1370,1351,2885,2463,1144,2413,1789,1642,223,2942,1917,2924,7,177,2110,2976,896,737,2560,1254,1472,1671,2131,2237,2784,1889,432,2208,2956,1241,1099,1404,1137,1192,923,291,15,1992,1563,1941,1312,2742,656,2961,2502,209,1305,2204,548,1558,2614,2520,881,2698,2375,1299,511,781,2900,1975,2649,1295,2608,942,535,1430,2170,336,1163,1766,1749,173,2699,2780,2588,25,1375,65,786,1191,1970,1237,1936,2972,2167,1247,1452,312,1513,1486,1367,2764,1130,483,1384,1064,443,2039,139,1457,282,179,2069,2865,2287,1280,1396,1963,1482,154,39,2322,1170,267,2212,510,2287,741,537,331,319,207,910,144,1875,435,2433,1000,2857,2358,473,1754,211,1489,449,350,138,2152,1789,1445,406,1951,1982,1049,504,1734,1183,1215,701,1676,2614,255,464,2584,2919,201,1334,1004,705,965,7,1680,459,1121,2578,84,1181,2379,2386,1749,265,1330,1129,2472,1471,2329,2444,30,2354,2068,1355,1081,210,2195,1739,2055,1282,373,2565,943,2888,2853,901,317,2834,896,415,1738,394,1133,2070,2376,2971,2533,2016,1467,2070,2017,2667,2930,2977,1259,2382,407,400,30,2495,982,3,2489,2556,237,1556,682,2908,1480,193,2520,2058,2893,181,1505,1906,1091,66,1201,1074,2966,1017,1990,2708,2989,786,792,2566,1375,405,706,1365,1801,487,2038,238,2508,2109,2262,485,1819,49,1283,2764,2075,2962,702,255,1038,557,167,1968,1416,1763,401,2859,97,1724,273,266,424,2093,2163,1805,2580,1967,2853,387,1327,273,562,2265,436,204,1910,2856,165,1660,2685,2251,2710,2079,505,2613,273,1925,2245,1828,40,121,2614,2150,1317,651,65,407,2092,2285,1253,530,1378,2264,1755,538,820,79,2864,524,942,2118,2522,2540,521,944,2072,408,1088,2080,14,1120,1910,2545,2260,669,982,1055,2690,1346,784,2900,1430,2490,2768,760,231,2965,2652,2796,1884,864,1042,2046,1679,2553,33,241,2656,781,851,1799,2046,974,1722,2904,676,2488,2359,394,1787,1169,776,1771,488,681,2189,2116,2291,1327,996,729,1653,2246,1125,1423,431,788,1413,2840,1821,356,1352,2861,248,2843,1713,1162,374,2618,1238,999,283,2646,472,2442,1865,1293,1879,2232,694,2786,1166,2241,2854,2812,1500,1790,2925,1362,1575,45,1008,2889,2915,1057,148,2780,2386,512,1692,2869,2481,1266,2485,2670,1333,512,1451,1382,1515,101,2324,991,2773,1481,1811,73,187,2202,2082,523,1307,1713,297,1821,664,2452,2981,1564,814,2388,2460,1520,99,2832,1413,2902,1354,2164,1931,222,2977,2835,722,1597,224,2278,890,569,2627,970,2506,2062,1986,328,1860,2342,2891,1599,2971,304,500,997,1255,14,2940,2315,1127,2756,158,1882,1182,231,1974,1630,1636,734,2672,2032,9,99,370,2775,2507,921,2374,1118,621,2496,313,1188,1700,450,928,1971,1059,2579,1196,2292,268,618,2455,2254,49,416,2611,867,2132,369,1380,1812,2464,1559,2194,597,983,2477,978,390,2495,2822,495,1549,303,2686,2039,2894,426,918,133,421,1615,1106,396,194,278,2527,481,2068,1315,2098,2279,1295,1727,484,1212,208,408,946,636,1936,2121,2939,1563,2932,2499,1171,1171,1035,1732,47,1950,178,60,1405,1953,781,1962,1493,2546,815,280,1772,2001,2186,1947,550,2807,118,809,2468,2242,2474,2845,131,1070,2736,262,37,2864,2500,1976,1485,1277,1973,394,89,1422,236,161,1590,2760,859,1161,2674,1581,531,250,2993,2658,1196,1972,580,748,2105,2123,122,2872,2431,1394,1417,2187,1609,344,65,332,176,616,2844,1763,1724,377,259,789,1262,2696,533,2189,1802,1900,1269,2849,2318,373,665,2001,2115,141,2295,980,2530,46,213,1526,63,2688,752,575,1029,2872,2229,2427,1360,179,591,2459,575,1406,844,2544,1430,2093,1124,1449,2951,800,1772,341,281,2083,1884,2551,2057,1773,82,2268,1062,422,163,2548,682,576,2070,2458,1268,1623,2842,2422,1118,1866,1278,2787,1217,113,2706,2766,1696,1287,1107,1252,837,755,1202,780,1411,514,81,1552,2040,353,1175,2374,35,2700,285,2391,2626,841,1921,994,2178,2428,1950,1563,845,1104,2629,304,1456,2246,65,589,1499,2959,2719,1921,1010,2102,739,1588,306,879,652,1410,1805,420,431,671,349,743,2180,1815,2011,1762,1184,1438,1407,2139,1056,361,2548,2747,2886,241,2806,863,2460,574,899,2218,1647,1536,344,881,1644,1484,658,853,708,1056,800,2885,1099,2892,2433,2282,876,1819,620,2269,2618,2828,2099,2298,2231,2860,1046,790,1068,2690,1394,103,1310,2272,1193,164,2736,1655,2708,1944,569,2052,1769,1690,94,2078,2471,283,485,1816,613,1938,17,1901,913,696,1152,1139,1660,233,612,2258,1929,2458,2968,691,1896,2144,958,909,846,2317,498,300,1299,2758,725,1537,2286,1376,90,986,2574,849,2401,2801,1352,1998,2871,713,1046,419,657,1705,1810,2782,344,2647,438,1207,1859,1121,1833,2818,180,2291,623,2061,194,2197,2621,2503,336,1155,1553,2270,2271,2160,2630,2617,1405,2009,162,1849,1709,1819,2776,66,2317,240,287,519,2223,2302,2044,1351,2820,842,1363,1962,2954,2219,826,1711,2558,2001,2946,2449,960,1453,2804,1293,437,53,2335,2709,1911,2691,794,95,2809,520,827,394,711,904,1366,2245,2034,341,1319,2240,2054,2257,461,1720,522,2435,908,2630,2781,1141,1729,2490,572,1788,2585,1739,959,1255,2744,1411,1666,79,2227,2132,1514,1603,691,1260,2993,980,1755,2261,2906,471,386,1824,309,956,693,95,1936,1203,1447,2475,390,2846,1923,92,1171,198,2811,2452,2902,1444,2964,236,1814,2240,2067,2659,1911,948,917,1663,316,2027,1769,1611,1678,1736,1861,2534,2578,1458,414,424,1789,937,641,716,755,1686,1786,2194,2315,1742,2378,2844,246,527,1046,735,2659,2794,641,2395,175,2852,1233,1125,566,2049,533,2295,1476,901,608,1974,2173,2119,2933,243,739,832,1050,2540,1160,2603,1760,1205,2264,218,2794,1834,1136,1534,2291,2980,2319,1927,1946,2434,2360,492,1518,539,1076,494,1242,58,1759,1546,1634,1328,2885,1455,2512,2336,1011,1292,2860,104,2398,347,20,1555,1751,409,1884,2506,2900,2338,26,46,2223,716,146,2273,1032,2907,395,650,1747,1070,611,567,2861,953,2302,2497,2049,616,1526,1277,947,1580,463,1626,1539,1675,23,318,538,2293,681,1507,802,2159,1392,895,2417,1220,1628,2678,766,179,108,2783,481,2425,1137,734,2073,386,1086,2023,1031,2926,2309,2399,768,2734,730,883,2817,2259,1800,2514,2011,179,301,80,1977,2817,797,1788,246,1057,1101,398,1323,1986,205,2541,2547,1335,128,2760,2287,475,1165,2590,2159,153,1524,2210,1637,932,2385,75,344,736,1772,818,1824,819,2079,2752,669,228,2204,1318,2476,1251,648,2082,1093,271,2713,1461,1999,2474,1200,2680,552,708,1567,154,1469,2832,875,1261,2214,863,2426,2880,473,2400,330,2791,2666,181,1423,2273,1199,100,1198,1618,1776,2764,117,793,2573,2743,1930,2095,847,842,528,2051,1925,2024,1960,1859,2571,73,669,328,2236,342,2697,890,1537,1882,1153,2695,2949,292,1534,1211,2465,2965,1117,2336,1659,1646,2344,1392,219,799,2650,822,2637,635,2271,314,2780,2763,1520,34,1657,989,2803,967,1486,792,2338,2404,2543,1327,2518,2852,2069,2782,2930,192,675,2619,683,753,2380,2221,2456,197,2220,1746,621,2473,1434,136,2280,1383,2022,1810,1479,774,482,1002,2402,1551,1515,1835,255,352,1661,660,2681,596,607,2202,2445,2557,1460,1275,2311,973,1702,1498,1684,409,1626,127,1352,230,15,1973,1795,1289,26,1693,1195,1480,488,681,471,2638,2729,2221,1686,2455,2242,1054,2326,2424,1185,122,1348,2553,1432,1991,1165,1105,1987,1756,2407,2509,2453,934,2133,950,795,1139,2376,821,2339,967,1519,1308,645,245,1418,2628,2566,1768,2776,600,1765,162,2005,245,311,2817,2106,2576,485,2815,1159,2029,2752,1759,1641,936,224,686,248,541,312,2438,2717,1280,1991,1845,2665,2559,1988,8,346,2196,290,1510,407,752,1803,2521,458,481,2825,10,1244,1725,2927,538,1863,2432,269,571,422,2279,204,2589,2340,2960,1967,468,1104,2628,1527,2100,548,534,2436,2792,2826,365,315,1403,935,702,2103,2677,2502,2409,1405,752,1803,1608,1594,320,758,1810,1685,1698,951,1118,556,2414,1996,2231,656,1277,809,48,1572,218,2769,2429,1769,1457,1648,497,2831,1901,294,2873,1125,488,175,1031,2249,2949,1082,189,2878,2630,202,521,455,378,2762,2334,117,456,389,1740,1749,216,1085,2219,2361,169,1880,1097,2357,1688,1900,198,2974,662,1870,2851,2376,373,499,814,2344,741,2294,2635,2342,2570,1342,56,2875,219,555,442,1826,109,199,2853,1971,819,1957,406,1205,1654,2704,2005,1781,251,993,549,1154,1173,814,1545,1484,372,2483,1862,1016,466,883,1272,2642,501,1706,2491,637,1591,157,98,1729,1231,1286,1546,116,1522,2676,235,2137,2585,2642,2574,2370,1923,2888,1511,928,600,720,2035,987,1291,2677,2482,2240,1420,2900,2921,2373,966,1386,2920,1391,2785,2166,79,1784,1381,1686,2023,2673,577,1956,680,305,919,2413,2204,2850,802,1219,644,548,2450,2711,41,2959,604,2240,1186,2413,1680,235,183,61,2012,1517,1311,582,2903,1168,1911,1353,1138,54,1369,2148,2274,2612,2018,2565,2307,260,739,2760,1745,2077,516,1311,2034,387,361,1856,2988,2272,2610,1040,1870,617,2998,745,39,1677,1750,1961,1338,182,2066,23,922,719,2455,2703,1968,747,849,266,1614,1263,949,1100,640,2269,1779,516,2537,2804,816,2451,2904,1767,2676,819,2227,588,1805,1299,1349,2688,27,2542,2555,2485,833,2001,569,1927,1680,941,2558,2434,616,2365,2144,882,2612,277,296,1388,2398,2225,1239,1032,1058,1737,2546,2218,1582,2622,2377,2154,2971,151,1844,2310,1011,1683,223,2101,2540,2257,1894,2838,419,2918,2943,2250,1119,1095,2119,2001,1424,2487,2368,2247,456,2535,2513,38,781,744,325,493,941,2172,1368,878,1613,738,1558,245,840,365,1716,2289,2196,412,2934,1303,1843,602,2752,2739,2382,1856,2442,1535,1686,2293,1590,1569,2238,1311,553,530,2426,1161,872,2257,795,863,264,2162,617,2766,2578,2007,2923,785,468,428,895,836,1223,2859,1113,2624,2921,2946,600,2498,276,1969,2111,1230,1929,2634,1986,58,2433,1578,2605,464,2370,2207,758,1105,1491,2045,1496,479,948,425,1300,511,1554,2278,1424,2165,858,1580,2047,108,1166,2611,2903,619,1277,2508,1703,868,1503,961,2406,1954,699,1460,321,621,1169,1684,2076,2905,2539,1933,2562,1090,2163,1917,88,2037,2538,1278,2657,2730,2551,439,1204,981,1236,433,2989,1427,1796,1823,1292,736,572,2719,2955,1322,1681,2075,1164,57,2992,1142,381,2631,1698,2202,9,2079,215,2049,2957,204,2802,2907,2088,2653,1182,1485,558,617,2694,2624,2701,2986,1802,792,2114,2005,2460,2013,2079,171,2374,1221,1692,145,381,385,2445,2344,1580,123,2550,1429,893,2331,2139,2135,611,785,547,2519,2563,386,1384,659,294,515,1919,2982,2750,670,925,717,617,1349,2837,450,2432,928,763,1225,1350,2392,1083,662,1161,738,290,2354,2753,1108,500,1829,267,1624,1375,706,703,1980,1918,1871,733,2156,1773,1329,2546,2208,1695,1984,1721,320,1523,1702,2808,315,363,903,2984,279,1299,627,2371,2000,635,1663,577,2124,2123,1874,1299,2075,2830,2699,673,2866,132,1044,923,651,1539,1836,349,735,2769,2431,127,2263,2880,1545,535,2814,186,610,392,561,1562,2134,1630,1638,2342,2331,592,91,988,724,645,1993,1520,2346,1347,687,406,408,1733,86,2492,2370,2017,8,1010,275,925,2798,856,1450,1606,507,1718,2254,979,571,898,2476,619,1586,2428,1844,445,1595,2681,1870,2607,1199,452,660,697,1636,2234,388,2466,2918,792,1950,249,2023,733,2195,2882,67,471,2096,274,453,2312,509,1242,873,224,758,1013,1751,1684}

    861

    1080

    Returns: 277270427

  126. {711,488,1013,2633,2091,2942,2891,656,715,680,2032,1247,2616,837,2428,1731,1482,2054,1365,768,288,2173,1915,411,2538,1526,2875,1114,747,1952,526,2463,1278,104,1962,1884,984,2467,2731,1339,1396,2325,526,2188,2288,1599,2722,450,1557,234,1052,1320,82,1210,665,915,676,806,921,2462,2804,2197,2362,221,820,2383,1888,2857,1515,2048,2807,916,2848,1072,208,2743,564,1348,1104,2449,1891,1135,1711,1328,892,813,329,382,2407,2201,297,182,1736,2535,337,1639,496,1406,936,1951,2323,2684,286,578,571,2450,2247,1609,227,1430,996,116,2103,1907,416,507,2554,78,2687,1265,1463,1102,0,2073,1732,2037,625,1422,2507,708,1872,636,1115,1967,1344,2678,1552,1220,140,2505,453,380,2879,2128,2683,2049,1243,1219,1585,967,2859,2387,2730,1075,1623,1084,2850,1022,1119,415,2883,1005,1570,1608,2975,13,1931,1675,275,740,909,1110,1071,831,674,1198,2609,2287,384,340,1864,213,601,2278,1969,864,1645,1449,1018,1829,249,557,2300,1877,1292,1879,579,559,2531,1751,960,2591,637,635,1509,705,2997,1912,1091,2931,2909,801,2027,467,1567,1442,2066,1906,1887,1116,1866,2447,1187,485,2778,839,1832,2809,2912,1482,1875,615,1006,865,841,942,2873,700,2230,416,2801,1585,2696,2955,0,1421,2517,451,2914,168,779,2688,1537,1672,667,708,2135,2663,84,972,1901,643,147,2085,328,2638,444,2455,2981,488,567,1474,991,1740,2196,2926,1652,165,2347,597,2789,2700,457,2890,2264,777,669,1666,2815,406,2699,646,1264,1311,2075,2309,1726,1312,1329,493,2758,1873,908,2268,1837,486,1245,1844,225,549,2047,1225,1779,629,1568,1190,961,1452,2714,2957,2576,1289,1765,2524,2162,1620,204,462,1569,472,322,633,1635,2432,2780,2128,1415,1110,61,1693,976,828,2904,242,1294,247,110,1902,2982,1845,2197,2229,720,1037,2145,2253,274,854,2559,122,2140,1108,2420,2567,46,911,2218,867,1792,734,2859,831,2477,1444,523,2374,971,2703,1544,1281,1830,2122,1398,1741,1984,2213,800,176,328,203,2715,2155,2070,1180,2529,94,2031,744,1958,64,1016,2956,480,2623,2392,2491,2268,333,132,21,1649,296,2214,2034,2872,1950,2230,1157,2477,985,1401,1789,2552,1887,539,1681,2693,2159,2763,2791,2009,847,602,1420,1781,2775,811,893,2215,799,2553,2635,1681,2045,2147,1219,862,2282,201,1379,2752,575,2520,2451,722,121,1647,158,1395,457,513,2637,1734,197,996,1250,2969,2333,1292,1564,908,605,2540,746,1121,1582,2521,2465,684,2265,544,1500,1189,1128,2021,1779,1683,456,2134,2572,2604,393,2538,654,1836,2000,2684,1599,1930,326,1892,348,186,1679,670,2906,943,2514,596,2010,1362,1603,408,1787,1392,2810,782,2654,2522,2421,702,2043,1823,950,1303,1168,2846,1931,2992,507,196,850,508,1695,614,1392,983,106,2913,873,72,2940,1700,1270,2429,2326,2739,2102,2626,1984,1937,380,2683,1988,189,541,867,185,970,2777,279,2946,10,522,2137,2131,358,829,1797,909,2044,2046,349,918,2774,19,350,1280,2437,2183,2175,2686,821,2037,1460,1053,1068,2860,2433,2839,151,1492,2205,2186,1632,2943,1588,1658,195,2036,1905,2174,1089,1463,1638,2800,1870,2685,786,2134,2426,372,2012,27,2675,1466,290,2849,483,2006,1009,2946,2463,1692,1711,1522,2841,1798,1163,2531,292,1100,593,2014,1118,1730,1495,2736,2976,1707,1322,995,1105,1155,1141,84,986,525,1066,2892,1234,668,2504,1387,2464,2011,1227,956,1271,2669,1486,2751,792,392,1400,2354,379,1672,2941,2295,1129,1115,1240,2750,830,2424,2318,1414,656,116,1591,1760,926,1654,167,2348,2799,814,896,1727,453,553,2813,2255,1602,1690,1955,894,735,2820,1128,1936,2059,1654,2844,2425,1001,832,1039,1127,269,1068,1275,917,1209,861,576,1768,599,736,2539,22,115,765,2782,1934,386,1000,336,310,1624,1202,740,2883,2953,2781,944,2687,2482,1963,63,1786,1537,703,1870,1408,330,2803,2842,1072,1733,1447,1790,1077,1767,2211,114,1061,237,979,1437,973,1137,2418,2801,2052,2977,2184,531,2688,789,690,1003,2532,2662,1193,512,872,479,1388,1642,2608,36,1899,1655,1843,1908,991,1698,676,663,22,1049,2810,2123,477,1713,26,505,1752,1258,2466,2475,2008,930,145,790,1551,190,359,2907,95,367,1540,598,57,687,2797,853,1782,573,2578,1340,1010,2550,365,2368,2816,769,2315,1701,1941,710,2735,1112,2458,609,1606,2004,88,2206,1377,679,2975,2237,588,2071,2365,1974,315,47,1316,2638,1061,60,1654,2103,2102,2446,2867,1081,689,304,1364,1042,1593,723,1864,1261,1594,2618,700,2788,201,2938,1821,2308,2980,2145,2951,2355,748,2380,2861,1942,1347,2898,2566,959,2294,2487,1545,808,752,1336,610,1276,2646,1873,1324,340,35,2086,2551,2745,1860,230,2131,2480,268,1664,1751,2716,2540,958,2189,968,1036,1805,1847,1769,2910,634,1271,2182,2800,1361,205,2417,997,2707,2343,2389,245,1720,2919,42,1904,28,557,1222,2321,158,1284,500,1588,1868,18,1554,1738,907,1709,1593,2332,2187,1086,1381,2537,510,2569,503,1394,1158,439,1311,1496,872,686,2600,860,1113,2286,2167,1199,1750,828,2492,537,274,1207,2457,1343,38,362,1263,2210,552,1370,1503,1831,1867,1484,2,816,113,3,1604,2160,1643,2516,255,451,105,1464,2802,302,445,805,693,764,2259,353,2204,2884,1577,2415,849,883,1247,164,2517,973,2568,1224,2044,1598,2678,126,1987,248,1925,1749,972,2761,97,1558,2900,1044,2978,2410,1748,2484,2239,622,1869,1736,1853,642,1900,1572,100,1398,2442,2223,167,2598,1874,926,2098,1334,2256,1335,2790,2526,726,504,1428,2636,283,855,1990,2702,1019,1975,2081,502,515,1806,2820,2619,640,2185,1391,1436,363,343,2503,934,959,749,426,2705,1565,11,2935,1353,1209,2396,2194,1734,1437,1296,1490,2909,2581,23,946,2832,682,2243,114,855,146,490,1592,963,1388,2590,1525,2140,798,1728,430,1492,1033,728,2217,2242,1240,1605,1013,319,2614,181,2031,629,787,2723,2362,1233,758,2411,2764,2898,2597,640,1684,1763,2664,49,1613,1023,2679,441,1425,2818,1919,1956,293,2805,1306,1964,854,2269,1171,369,1485,215,1237,1479,2013,361,1967,152,2025,2377,1563,1684,2397,1768,327,851,2079,210,1847,2878,1098,1122,2628,2564,1887,574,1742,2305,1586,750,2639,515,782,714,2423,2511,1135,2662,456,2825,13,2964,1059,2199,114,801,945,2948,2867,2067,666,742,2097,653,791,299,433,616,2504,2995,691,1838,1799,836,275,1154,2472,470,266,1067,1175,2075,28,2866,1812,608,184,60,2925,2345,2959,2616,612,2963,1832,1615,2392,1796,1969,2582,431,1179,2393,2012,1253,941,576,2176,1104,2111,2593,326,104,2682,732,777,258,2051,2195,556,840,2792,603,1161,83,1488,2889,1842,1388,1991,550,2708,1506,321,2277,34,1089,262,1927,827,425,2291,516,989,2901,2697,2331,2754,814,638,874,1268,411,2707,748,2104,211,2118,990,2270,2116,2141,383,910,1318,1794,1723,1811,1610,2401,2983,1307,1570,434,2813,408,127,1584,1355,1407,160,1278,1338,2061,770,1515,2083,1895,1123,1380,318,319,2665,2958,1384,1985,2087,642,1359,743,2574,128,870,641,1217,518,414,2478,1981,1134,1363,1982,2864,1691,99,2084,681,1434,454,1431,2889,1849,1710,2703,159,1293,1914,166,1322,2530,1451,2082,1316,626,2381,1623,1540,1883,1147,771,4,137,876,659,1856,1618,1518,1490,928,524,618,2962,462,1471,2123,830,2921,1992,621,1096,397,1426,1536,1527,1778,251,352,736,1620,2205,191,2494,1283,89,2404,804,1948,1561,1288,878,603,2970,2179,465,2296,2139,712,1142,1336,2077,2093,282,364,2279,2399,324,2212,272,899,2039,1587,1728,130,2500,987,772,655,1020,1762,157,2979,1630,665,257,2481,2356,487,1085,2887,964,2416,212,2027,760,428,1881,2420,2312,1462,1146,1888,1284,528,2279,435,616,1210,2864,1426,2352,2852,465,183,2290,1512,2402,2165,2709,351,733,678,486,252,2597,288,120,1006,2583,2718,2924,509,1249,2795,358,2749,2902,2488,323,1258,1639,1996,589,915,384,1216,2440,205,1671,2261,632,1878,538,839,1182,783,2223,123,2779,175,2555,1625,840,98,1621,1330,604,2417,143,418,2107,929,913,1134,684,1008,1763,83,554,845,447,1524,2624,284,759,2921,2291,2053,2157,110,2647,2857,2273,1744,1354,2061,1139,1506,237,887,2072,815,1094,2191,949,892,1777,792,1299,2944,1101,2416,2413,270,2444,2924,2515,1618,2187,203,1133,280,1254,311,148,1259,1415,1037,194,2661,2472,1660,2740,1524,1213,1491,174,1849,608,467,1218,1264,533,869,1648,2768,730,2645,2808,1055,303,2094,1137,1694,2402,2941,418,592,1476,2222,902,88,1703,2493,73,359,2130,1148,699,2977,127,1435,561,2249,1055,885,753,726,2266,2577,1201,1275,2570,1947,2250,91,155,1813,2757,1682,1328,821,1099,1092,1020,199,2728,606,2652,572,1143,17,510,1002,2121,2390,2418,2205,460,1220,2451,555,324,1913,751,2721,1499,422,1374,1424,396,333,287,2995,125,1798,884,1608,737,758,70,301,131,394,688,1813,2926,1467,1052,1729,953,2338,1571,1619,2680,921,172,54,1689,1239,350,89,132,859,2558,389,1523,2226,298,354,248,837,1427,2170,824,1172,1265,1542,1753,2139,2470,1769,2163,2571,1319,2481,2024,1001,1815,2005,2746,936,1560,1691,2903,2443,2771,2496,56,2987,971,1021,1827,2767,187,1690,2099,2296,2592,868,1850,974,1228,1232,117,1127,2042,788,1559,1977,735,1548,2241,1176,118,1097,984,421,1433,1483,1416,2127,1575,1538,1449,1406,258,1487,1208,2035,1935,1208,845,118,425,442,1280,2195,224,2228,1478,932,1855,2863,965,2524,2350,756,2586,1040,2761,1995,900,1327,1060,2723,714,289,1362,2328,2505,2077,1920,1663,1200,1471,946,985,2741,1946,224,382,2601,268,327,2842,1884,245,14,2986,294,1381,2692,2430,325,2329,1858,1352,131,2655,2491,2218,2045,887,1603,1123,944,1309,297,2117,833,2922,1477,2078,432,195,115,2747,1713,358,1949,2536,1957,484,427,2109,162,2557,2823,601,1201,320,1226,2570,1029,933,1371,273,2763,1170,1594,1716,1761,2696,1203,220,2938,1546,54,2950,2448,1976,773,1323,2579,2729,1106,1211,1192,1631,1555,419,1369,1150,1231,1042,442,2971,1677,2585,1028,692,1403,2276,990,2405,729,1416,2283,2210,2850,401,1546,2774,823,2285,688,2372,108,1865,1694,912,2660,276,2029,2627,2639,172,231,1923,931,343,1788,562,2773,67,2222,308,2486,1520,362,1186,2736,705,1378,1662,791,1109,1510,121,8,2789,245,2996,696,2042,192,1333,1795,177,720,2170,176,1834,390,1377,1521,2006,2599,518,1726,374,1777,621,66,1178,285,1027,2344,992,1422,2117,969,1513,487,2360,1269,1708,815,2816,2110,958,1498,2753,516,1640,877,135,757,1583,1131,871,2513,415,1827,895,2706,868,1495,2133,1718,1666,904,2142,242,545,1039,2853,2758,1885,1635,940,458,2201,2090,709,1058,2033,2528,2566,698,105,2337,2818,1566,620,649,1939,1525,2471,311,1576,16,441,259,1989,2232,334,1624,2762,2041,581,2236,2710,1879,2798,2536,743,2905,584,1752,1156,2690,318,1079,96,2754,306,152,2577,2176,1636,2397,882,615,598,1251,2643,2154,2542,438,1743,2368,2586,1078,2989,1122,2192,2298,955,2534,2824,1856,1918,330,2133,1746,154,2785,1004,2401,261,1412,314,563,2456,249,2845,2315,1563,444,344,530,2603,1944,2172,556,213,460,2514,805,1894,292,2237,82,490,1876,379,1514,1047,1590,807,1096,2673,884,2483,1380,1816,2601,542,1005,725,1579,1986,1710,475,2000,543,282,148,1175,2527,719,2889,1032,1277,1227,2036,1027,2743,2136,2682,2039,126,881,1897,2284,2750,1709,51,2887,643,1132,483,227,1457,1882,2225,1834,1758,492,2589,1983,1259,1229,1924,2856,691,2332,1640,2766,2984,2580,1436,2386,2695,119,1082,1099,2868,1759,2978,498,278,2604,299,2478,1489,1677,961,306,2437,2283,446,1628,2733,1392,2229,1810,1659,1379,1900,1704,1421,1844,309,2495,1717,1008,834,2030,1531,2893,2390,2829,2932,2665,1116,153,2976,2016,725,1589,1489,704,2726,2242,1087,1343,1971,2399,1885,1542,1568,2760,1200,2641,2997,2330,9,2217,2112,650,316,1026,2304,78,2617,1612,2825,188,296,1859,1212,856,387,64,2974,1971,2408,2584,2612,1441,1693,424,1857,1911,2960,357,951,844,1011,1153,2833,1499,2787,1367,2667,2405,1664,1357,1088,303,1342,1716,2370,2452,1086,852,2592,2251,1212,1494,1085,2959,800,2215,1409,2892,844,885,1196,2200,1376,2080,2010,2944,2936,38,1138,2564,1345,2278,2876,124,181,969,2988,2670,1384,942,1852,1774,1802,686,914,1916,447,321,250,1773,1909,2148,1656,2657,2301,1267,1962,783,233,2840,1185,1305,2733,2453,1529,1410,1412,222,217,216,1121,2261,789,2757,2663,1746,2839,219,271,762,2375,2819,1766,2216,2474,1260,1552,405,1501,1433,1291,677,2186,1755,1595,1146,2819,10,919,2415,1390,1682,2677,764,1208,1960,2563,2065,1207,1174,1408,966,694,2533,955,1025,2067,2129,2184,2076,2742,1557,863,2545,2317,2651,2064,47,2407,470,627,667,1509,1812,2327,1342,1268,563,469,481,938,2500,1364,2105,1429,1526,1963,1141,1147,138,2734,2709,715,2235,1861,2124,709,1161,482,702,2580,2548,2966,1462,2936,2961,24,1383,1938,2923,611,1597,1988,568,568,2269,2443,1410,2385,1315,2731,861,2880,1188,674,614,1765,637,2990,331,1036,1330,1190,1485,1587,2579,1776,847,278,1341,2490,2928,2568,133,2872,1297,1470,381,2511,583,1871,1555,751,35,1320,2740,2244,2240,1356,1108,1918,99,2939,373,1183,32,1890,2058,313,1908,1084,895,2379,40,2561,2324,548,44,1359,247,685,733,2240,619,2634,1325,1667,226,2486,1539,2286,1126,1541,1892,2912,1942,1502,2093,632,2965,377,1678,452,1669,2138,461,1488,2172,363,1389,1282,409,2231,236,907,1305,1607,2926,997,1676,2383,2992,901,356,2638,1604,2584,39,2954,2319,1150,1290,1926,2645,962,1670,713,1851,1660,2613,2361,194,2017,763,1310,368,1136,2359,1360,472,1405,2513,1304,2322,2306,1549,2543,50,400,72,1286,296,2672,476,2168,139,364,1473,641,2720,77,17,531,822,144,2852,76,2413,903,1771,2091,385,1429,2744,1465,391,1350,2868,2512,246,256,1438,366,421,2600,2836,32,1361,2251,2510,331,1404,2409,136,2773,1614,838,2676,2791,588,2360,1733,729,1848,2095,375,1164,2121,809,293,2169,1532,2879,2264,2919,337,417,1877,826,2038,2691,374,2854,1621,2403,2188,216,1775,2829,2440,1597,1893,179,1996,762,50,706,535,1644,2966,742,1802,1448,2460,2196,2714,2165,144,719,2298,1092,1808,1742,2470,2947,2588,1276,1171,2784,514,2358,2657,802,1965,1463,392,1033,2680,1389,2497,2551,1687,890,499,596,1831,2828,532,211,1045,1872,1776,673,2779,1578,1136,819,2214,468,965,2786,232,551,313,664,1102,1565,2022,1170,766,2808,2806,101,716,2724,2287,171,7,1335,2853,1866,2054,2599,277,1386,582,1350,413,1054,2631,1296,271,62,1419,795,552,2014,1002,2191,2394,2621,1635,916,1025,2796,316,404,147,2168,2351,1714,914,1580,466,2886,1205,669,378,927,2871,1120,1705,2821,650,1405,611,1351,646,1973,228,858,547,496,468,2444,590,2533,1879,2838,2725,2096,717,1622,1438,183,2972,234,2224,1953,1300,2485,1964,1204,2667,81,360,2089,2072,5,734,625,823,1665,1269,2837,929,631,1816,180,2246,2526,738,1706,2518,1012,2371,772,1545,2801,2476,1348,694,2198,919,1510,1177,2711,1111,2009,810,1567,2397,2441,48,2735,169,1294,2611,1223,870,2326,2542,2160,1698,1679,2020,1581,1256,2333,2653,2018,2151,1019,2973,1896,2388,235,2135,1923,1211,809,2855,1627,66,353,2830,154,2891,161,395,575,450,1241,1223,1234,2749,626,934,2373,2490,221,2340,2949,2410,140,264,651,45,85,2427,2193,2952,80}

    {1780,1248,1030,2469,1762,1152,983,615,2741,1044,157,879,1470,2759,1702,149,103,398,1865,1722,1402,1481,198,1651,1825,1519,1881,2862,1430,1544,631,2826,1283,2094,1444,2179,71,30,1393,1886,2557,1983,1785,513,1965,2227,18,1186,2910,2981,210,1814,732,1914,1936,1048,1366,2812,1772,1909,253,31,1262,2954,1579,1841,1046,1030,1880,2960,2831,1902,2833,1165,862,2614,2301,784,2710,1712,1056,1034,1903,2462,1445,2964,2658,952,1874,2368,2484,2348,2435,2676,2860,638,2811,718,1282,2192,204,2220,1394,2530,1990,1725,1837,986,1800,1187,2690,2950,2024,600,1601,25,1600,2827,2378,2727,727,112,1251,3,446,756,1346,2567,994,1112,2863,1886,2771,2202,774,1302,1612,728,2384,716,2114,1165,2677,2874,2756,482,1647,2263,797,2394,2962,2804,1703,659,1011,1066,233,1337,1441,40,2129,1232,1032,785,660,2669,930,2502,1978,2622,832,948,2349,2292,2991,2273,1697,2249,2216,1799,2877,1206,2840,2498,291,1516,2654,46,1164,2554,808,745,2501,1071,2144,1724,2999,1685,1235,253,2994,375,1658,692,372,2824,2901,2190,2613,2756,407,779,2421,2427,440,1374,569,1671,1319,343,1029,668,796,2916,2017,2980,2485,2769,1770,463,1368,404,2126,1448,2545,1014,988,2785,2149,868,2007,1992,574,2827,1998,1026,2228,2609,2625,2306,2064,1481,1222,2651,117,653,2365,166,2104,2647,1454,2300,112,1696,2150,2927,1457,474,578,2280,968,2967,2334,2423,1616,1162,1979,2499,169,1330,1236,954,2555,437,670,1493,2118,1754,635,312,92,263,1090,2182,150,1434,2234,1574,1114,2079,2060,371,776,1425,62,156,1182,1349,325,1290,305,1395,895,848,1530,935,1851,1753,827,2606,2847,2836,1274,239,951,927,352,890,1202,2302,1375,247,420,1153,761,846,270,476,338,1035,1803,1970,1238,595,2338,2920,2190,2068,1636,1966,267,1708,1353,28,677,1719,1601,558,2487,439,1825,8,1523,2608,1592,2083,923,2260,2792,2339,1095,2870,1082,1125,1075,776,2321,24,1080,2393,1000,2361,2985,1095,1582,1034,2299,2336,295,664,19,1997,1014,550,2582,630,652,2971,794,123,2274,1575,2957,2499,619,1242,2897,2293,2047,1922,724,835,2931,2784,1077,1149,1649,1729,2372,51,534,71,1917,2303,1973,2511,2084,770,1073,1218,2559,1718,829,384,2704,1321,2930,1367,2973,1103,2640,980,95,342,1332,1033,1651,2769,2157,260,1967,2391,260,86,695,2334,853,2164,849,1861,989,2766,21,2498,1950,871,1058,1315,246,1920,1939,2631,900,1158,1704,2573,1692,2846,2258,1935,2900,2313,2434,1676,264,2519,1674,2395,471,192,1088,530,2783,755,2501,2181,1989,561,2993,1004,624,660,2403,34,2435,55,2659,759,685,960,1781,1213,1929,1634,254,2384,2630,2516,1533,63,1056,1789,1302,2161,2108,1289,2782,1083,429,660,399,1859,1093,1366,37,2755,1155,1486,2074,1787,2353,1782,803,1943,373,630,1982,1167,1181,2046,585,1041,1619,799,135,1800,2778,2305,566,976,514,464,284,1688,2632,697,86,2906,1440,2510,912,1615,2917,197,2356,327,142,170,2323,184,2922,781,520,2074,2100,1895,370,617,1731,187,1669,1325,2055,518,647,229,1402,1715,1600,2914,1838,592,1423,2284,1809,76,701,2263,506,987,2354,1735,1443,2534,704,1192,2917,0,87,2226,2581,2297,628,594,477,521,1943,1163,773,474,93,1906,978,2212,1471,2601,1241,59,498,533,2106,1445,2138,455,525,2711,70,2048,107,1308,2062,2376,2234,1957,1298,920,2870,342,2712,189,2438,1318,2095,339,259,1845,1868,2560,1994,681,2358,2650,407,1846,1548,974,2317,307,1833,36,1054,2033,536,1645,1393,199,662,2377,1105,2426,2187,2207,781,2342,385,1312,1476,1010,2303,1556,2888,1516,2026,2620,6,624,2553,2858,273,964,215,1391,1883,202,11,1854,2252,438,1843,1308,858,2725,2073,23,2832,1035,2637,206,2737,1396,12,1303,2781,1641,2798,2686,2314,1595,2141,58,1193,2132,2025,2912,1,1101,2063,955,1405,2861,607,1498,1173,236,2155,155,1432,2127,922,494,1787,1955,2177,2893,2461,1261,377,2386,1534,2565,2382,1824,2529,1063,2794,952,1477,53,2809,1279,1586,1720,842,1199,1313,2556,2143,1185,633,2565,784,281,2090,2979,920,58,1578,302,1458,2865,44,2721,1829,2476,2644,59,2991,1550,1317,2002,1975,1273,1719,2199,1828,2433,491,2826,52,2525,87,2544,45,717,2623,2562,90,1930,2955,1157,1959,2986,1642,93,1215,2115,1249,326,1295,2116,1371,427,848,1411,1358,2174,1301,2245,605,1235,1934,285,2814,2375,1876,412,2871,2247,1017,1064,1626,1007,569,280,1609,334,1331,2589,2694,1721,865,41,879,125,91,251,2779,573,1606,2007,431,2894,1322,2154,1730,1538,2603,1850,1015,363,610,177,5,445,2479,1661,279,2615,2262,2672,2922,1764,1797,2369,1767,2049,2087,1438,1528,793,697,387,79,1646,2146,2794,388,2270,1016,475,317,834,1566,1100,1354,1952,527,2086,2208,925,1306,2610,2088,2834,2953,1683,2727,2070,2546,2574,263,754,2104,1848,970,2316,2220,2972,2352,1074,1053,9,2929,2100,905,2760,2041,2522,2378,753,1992,2265,817,755,2258,50,1507,1520,2337,2458,666,4,2777,463,2806,1255,869,528,2244,2934,847,527,2755,1657,2693,502,2881,2171,2815,2765,2497,12,939,2395,979,1326,886,2848,479,1668,2363,188,230,111,1551,2351,767,345,347,967,2329,825,1409,2515,1997,1344,1383,505,516,2322,2675,1722,1590,649,1087,902,739,1978,2371,1225,881,1051,1094,397,1757,2295,1581,272,266,1528,2671,1919,2151,2469,394,484,1823,1975,2325,1230,1807,2640,2489,559,1740,1815,2674,1159,1502,1057,1169,2523,378,860,2428,400,1107,901,1310,2927,1528,491,1372,2289,2207,906,1517,179,2181,37,1369,97,741,1804,1166,1940,469,2772,291,2331,1368,2112,2209,1076,2002,206,2713,1132,1107,2400,2163,1154,2866,2706,1688,2890,67,963,765,383,1659,1673,662,1047,2537,1852,613,1137,731,2704,650,139,1515,2817,1539,1119,1270,2019,1598,1661,2208,581,2724,2585,1785,2845,2617,1351,1917,1715,2754,2874,1165,409,1166,2,807,620,1444,2610,1584,786,1356,277,1334,1475,2947,2590,1732,1179,1946,2245,1641,1745,74,2628,2701,894,1805,2155,523,1149,2180,1562,365,52,1738,859,2227,2453,1637,2236,1791,2020,466,1943,2507,1661,1675,2729,207,760,2158,750,2162,2299,480,1610,2450,1091,1985,1898,12,1602,1195,2602,2432,2532,1781,1956,1747,2422,2119,1093,982,24,1312,554,2767,1450,2611,317,254,2419,1291,826,1882,2694,1139,25,1903,1176,1431,1074,269,30,2776,1855,590,1527,2050,478,2621,2120,2642,1783,1397,2541,606,2289,222,1347,2221,811,136,1400,1739,1370,2085,962,2246,863,2843,886,2412,80,402,1910,1525,2059,1060,2448,1511,546,701,2147,1517,341,2275,1836,639,323,1017,999,1332,2239,1300,2213,2958,2753,1194,1534,1417,553,2943,1924,1611,2506,1130,223,998,1474,2357,1214,874,2409,190,1038,1238,939,218,448,2382,134,356,2262,749,1536,1143,2641,1770,2319,1580,1253,2607,265,796,2460,822,1529,1111,2185,1814,1144,1591,815,381,122,2612,2469,355,1252,1197,517,1051,1871,361,1468,2364,294,2040,923,1842,267,85,1760,2011,883,276,501,1566,2203,2001,2666,2915,1022,768,612,1945,549,2854,2446,2456,651,571,1558,2146,778,678,1826,1382,1230,2702,390,1741,1124,745,2840,2308,1272,1857,393,644,74,766,954,1629,1577,2594,1833,2454,1801,1242,2442,2121,2445,851,107,591,788,846,1295,2314,2436,2656,2625,2695,1941,493,223,478,2896,2271,2078,2465,405,106,1287,1632,1120,1417,73,2253,871,2661,1360,2648,1106,1167,1807,1607,2346,2595,1387,2956,1915,1617,1216,2666,2466,1835,1707,876,193,1023,2324,2297,1401,2119,1281,1339,217,780,2747,1573,1648,711,2260,2799,752,1650,2348,2738,1764,1756,1564,2508,2309,428,2343,734,1204,2653,1700,1749,540,308,1759,1228,580,778,2876,565,235,1326,1743,2961,2788,2304,430,2282,2219,344,134,583,587,2984,2445,1828,2646,1338,1882,1961,551,2629,1667,495,897,351,1452,2307,1009,1976,1070,813,1533,754,1922,345,1419,1073,1197,818,1138,1757,2288,2847,1046,1966,2624,2918,2759,2988,2069,2489,174,2807,1080,1224,1650,141,1237,2488,2598,429,18,1826,762,1573,2541,546,2380,2272,1783,1821,2905,401,586,1840,1076,866,2720,2004,636,2313,2126,1125,2881,2366,2844,1933,55,2364,1243,1221,1775,1522,1007,2068,598,899,2715,2438,898,2508,2719,374,379,810,1399,1181,2019,1793,205,1896,208,2003,2851,600,2737,1556,2543,1699,906,1719,2974,2900,540,1543,1407,345,1226,2316,1459,1853,1427,133,458,492,922,2786,243,880,2945,129,1928,2573,2739,1646,904,153,1820,2940,1504,1589,2406,2232,1262,295,191,2387,1404,2710,841,1277,360,604,819,644,2101,2196,1543,31,2206,570,506,2998,1670,398,2395,2312,1323,1535,1678,1986,747,1968,2359,744,2110,426,1643,582,2422,1454,241,931,825,188,2023,1784,443,2267,2996,2937,609,2550,2366,335,1553,2169,2254,2345,1928,2572,1184,2429,2377,2948,508,440,587,163,2018,593,2099,1240,422,1314,1813,1507,857,564,882,1904,2385,161,806,2719,459,896,663,129,2575,1065,804,1304,769,1629,2152,657,1712,2149,2685,832,320,2302,2388,1070,2193,20,1889,265,2406,977,1168,1508,2587,1,1133,2925,1169,69,816,304,2275,94,42,2626,489,2671,423,2670,1418,56,2989,410,1921,2210,2183,2967,2951,241,623,2468,848,1571,2795,433,305,993,2254,1144,2276,710,1817,2464,2065,39,1191,1583,2595,2911,1766,1455,1937,1974,402,2260,2419,624,1355,739,473,944,589,1979,1236,1926,2152,1472,1098,1024,2942,1468,1028,2822,61,2908,866,2367,838,2668,2855,2495,957,2248,2367,522,196,1772,143,1899,2178,1475,2812,1550,2482,1547,599,15,1905,2822,1043,370,1473,1948,1822,627,77,2057,1065,1737,1446,1756,924,1771,2712,2635,1021,1776,1481,2092,940,1476,945,2398,2370,2547,2765,671,820,842,618,2015,1944,2768,1668,2797,957,150,454,1453,1327,2549,1656,1801,2633,436,2895,517,2525,1413,2658,300,256,2968,978,1784,1921,652,2055,494,220,1301,1862,2569,2235,346,2221,1352,2369,395,2793,1569,1979,497,695,1994,1503,2342,1024,2983,1938,1416,2607,2392,322,173,335,1455,309,2496,1288,910,1673,1050,503,2272,410,90,2783,2742,2618,2335,999,329,2587,1196,509,2030,2022,435,2430,2837,1297,943,2252,2605,1810,539,2120,560,1456,2548,2732,2153,852,1372,1307,1097,239,2374,757,193,2363,2166,793,1824,1118,1376,661,146,1215,761,1424,141,2455,307,915,219,1977,2008,2475,658,1949,654,423,1750,2930,1177,2383,1373,1180,2627,699,1653,113,1529,1863,2090,724,1453,2943,2111,137,1960,2101,1169,2167,1521,1611,2998,891,2730,864,2327,2937,130,1819,1745,544,2159,119,2494,1665,2449,225,403,628,1078,1706,2509,1459,2125,566,369,2762,2325,2080,281,2913,2886,1680,2434,2748,645,2982,1264,2796,1532,2512,2248,238,1274,7,953,124,1972,680,538,1894,1231,730,791,2124,1980,2904,500,65,1858,1560,1178,2021,2473,928,1079,2705,2083,497,392,168,532,1233,2552,1321,1863,2527,2865,2204,1890,1465,186,2166,2310,2673,2051,1932,836,975,2700,565,2994,1614,1000,244,580,1117,1159,607,399,98,464,173,2697,595,398,1083,1511,1203,2660,543,698,2122,2689,2292,1858,977,1223,1696,671,1487,2340,1345,2928,2890,1188,746,2577,299,1869,682,2003,2521,2130,1758,1695,1954,57,824,1109,2969,2113,2949,1174,2396,1625,727,2965,2034,1930,2156,1835,2752,1439,1195,1493,2899,917,2209,1959,2050,2560,1839,2877,880,2467,1993,511,524,2231,1840,2233,529,2156,489,2040,2071,873,202,2902,529,1140,2379,1657,2523,639,2028,1466,2089,689,1113,2124,1929,1901,1440,346,2328,2178,1267,436,2918,2823,2659,162,1031,434,794,775,228,2772,1432,1003,338,1999,111,537,2643,1229,1933,1633,366,1446,2257,2851,2552,1512,2894,314,797,1725,675,2311,1414,2100,2293,1820,2835,1244,2838,774,1891,947,452,250,2320,302,1472,1464,128,1028,149,16,43,2479,2734,2281,738,1778,2692,1806,2963,140,1501,1403,693,501,617,1298,96,2144,1418,1519,2716,1792,101,1456,1954,197,1363,459,7,43,2802,1970,406,2389,1461,1160,1317,998,2821,1152,1358,81,1266,994,548,2576,1717,1129,2843,2915,1680,897,1961,375,2656,145,888,2372,499,893,703,2642,2355,1878,1945,2381,2341,795,1385,200,878,1012,520,1972,286,1334,1314,1514,1126,92,2594,850,1374,982,2933,1145,1505,941,1198,1428,937,767,1494,2902,2257,1987,2336,2502,2681,185,2412,2622,151,1260,1143,30,2307,2775,1447,417,2738,2636,712,1480,1456,413,1245,2862,1385,232,2198,981,2404,579,948,2563,2544,376,1309,29,1340,2062,947,2349,2153,1244,723,2830,1662,1547,570,1927,545,2896,2701,238,707,790,1875,2929,657,1846,2115,657,2493,209,2058,1447,547,2347,645,53,1995,2136,2109,1279,200,2233,1689,1257,956,2092,924,341,421,2558,214,2999,2744,1173,1469,1413,2990,2770,1346,2255,1272,959,1329,1357,1893,2605,75,1399,707,2400,455,623,2414,668,2414,1596,1500,1630,1458,229,838,2274,2903,2668,567,1373,2699,424,2180,2718,1375,1285,2005,2916,2583,2952,787,763,2431,687,2016,2056,2655,889,2107,577,1189,349,1151,138,396,1124,857,1423,2013,2629,2281,1596,2593,103,1497,2271,981,2132,2439,75,2888,257,1162,142,794,49,2097,2649,2459,2835,559,414,2474,1337,521,648,1205,2026,2194,1043,843,109,1069,995,2644,2746,2290,2732,2452,1714,1739,371,1701,2650,2831,799,1981,209,673,925,1206,534,33,2717,992,2473,180,2602,6,2985,1663,2726,1040,1140,843,555,1744,1151,2318,1038,2575,1655,2056,2427,1687,2885,310,591,1791,690,2708,48,1273,1628,1803,2503,1157,1513,888,817,2650,404,1454,1255,255,2136,875,988,449,2717,2096,903,2108,495,1915,2391,432,1439,2280,1576,2439,1686,562,1819,1880,856,2043,2046,1048,2648,2330,2933,1980,1160,2908,1194,156,2431,1530,1333,355,240,1723,2125,1786,1817,178,178,2357,391,2935,1925,558,536,368,420,2164,2457,2373,2076,1018,802,2506,1776,1287,1378,1469,2492,504,2713,1795,2588,2945,1754,2158,1069,443,290,2911,2241,41,1968,2161,2770,2518,594,1702,2634,683,2038,1705,1031,2483,2143,780,1867,1562,2028,2277,1285,1755,1549,1809,586,658,1773,2698,2408,1497,1998,108,2063,2528,2987,2679,386,163,14,20,27,2793,1496,2562,2117,1365,993,1854,226,1780,1310,2630,2897,2780,2698,1248,933,2137,388,1254,1162,1505,403,1142,2834,541,29,2454,2081,1839,214,2841,2346,1873,748,2535,244,2856,648,2664,2968,68,1626,347,1561,485,1246,2615,812,1788,577,231,2873,730,2353,2596,1518,1266,1716,875,634,1580,2320,1172,2681,1685,1443,950,833,65,954,937,2632,2882,165,1686,1293,2519,1439,2689,1349,2150,2619,2758,1483,2189,100,496,1239,519,2311,175,252,2447,1721,1655,2740,1818,1951,2088,2398,1480,602,1254,1050,1286,1793,1993,1643,1889,2001,661,2219,2869,2875,1613,2066,2556,332,1191,1382,2561,1131,1256,2171,1461,2652,2970,2098,898,672,683,672,159,2869,2776,1761,298,1860,1479,412,1699,1769,1435,2211,1156,172,1103,1991,1559,1451,1531,102,2032,1235,721,722,2934,1862,114,2684,68,1261,553,512,1913,2880,2817,775,212,1230,315,1397,2266,718,932,1811,2805,1478,102,1257,2057,2923,1748,706,1674,69,2539,2424,2895,1145,1324,1727,2571,1554,1221,2341,357,1041,1411,300,1911,2674,1184,630,935,79,1818,1907,647,2238,1331,481,2609,289,2520,2635,1467,2350,2029,1553,2547,2606,164,1999,171,383,741,2200,160,1735,1796,803,2751,1698,780,1064,2053,1638,2899,1299,109,737,170,1263,1617,1790,1804,1794,2544,2596,2468,354,1450,471,1063,1062,2884,2790,2411,2114,2285,785,1912,585}

    2277

    1815

    Returns: 609605280

  127. {2425,2961,179,1301,631,2875,1621,2269,124,2851,440,2987,384,2390,1906,1878,499,2520,1961,2159,1525,795,2828,2657,1169,1806,892,2551,2248,533,1201,223,2131,2688,2705,1869,749,2442,1377,2037,2051,1122,2521,1560,878,2029,357,78,1775,2788,1548,1859,1065,1380,920,701,129,717,727,1264,27,2483,2521,1448,1631,2969,294,1904,162,2971,126,2291,2021,153,2450,2501,568,301,1606,499,2941,1611,1782,758,1097,2426,860,2791,12,574,2865,2030,1071,1899,1401,1210,2464,2431,971,2264,1851,1356,1801,2836,2132,388,879,1607,226,1397,1113,2171,1564,717,297,2558,1267,986,2290,197,2499,1937,2727,659,1796,2577,957,2174,1363,2904,2370,1675,125,2530,2332,627,885,1887,2578,412,1534,25,1235,624,2094,2381,2194,2789,2712,2124,1690,514,196,670,2595,320,1352,1493,1405,2428,1008,1237,1915,27,2841,2373,1349,1371,697,2807,2224,2680,2139,363,1000,2684,82,1461,2404,1332,544,1785,1364,1055,590,1325,1009,375,2694,1038,2916,1278,123,916,1213,336,1402,1135,196,1781,490,362,1504,2236,2880,714,2114,2802,1833,1262,519,1003,1411,2271,821,2242,2100,1156,813,2788,1608,1685,2178,2990,1907,2983,711,1226,1322,2375,1304,2080,573,1144,1938,2496,773,2773,2117,1826,214,1231,176,1901,1247,1111,83,753,1613,435,1524,2247,229,2449,1184,1066,1293,1543,2760,1851,1884,1831,2806,1764,2751,1995,815,2761,1789,2693,1230,2277,1443,172,2815,1276,2627,2175,2914,2403,2711,2981,1158,2189,1797,2884,2482,849,1139,2948,1627,1311,738,90,769,2082,958,2255,52,1556,2624,208,1289,423,1674,1827,55,2861,2075,406,365,1501,2439,2597,661,2647,92,1713,853,1559,2261,2274,1070,2063,1721,1251,910,1883,808,1969,930,1243,2759,1205,2384,907,1936,1318,1635,2411,1849,2024,894,2641,1467,35,2454,322,1740,2030,1566,1720,1670,1021,1998,1569,1738,580,2365,2890,2097,2460,596,776,481,2721,2268,2707,140,1056,493,675,525,2585,2269,1737,1129,1594,1531,2282,1465,1373,1857,2911,723,735,2590,731,972,407,2612,2056,2215,352,2678,219,638,1005,193,2233,682,610,188,2913,2510,1959,128,1873,2836,891,1345,2139,155,2548,1149,2701,1816,2719,1546,789,117,1029,2853,1101,2306,2219,2550,772,1118,889,248,2532,788,1800,2363,2940,1338,2487,558,2950,1436,2613,565,433,2601,840,1083,2574,929,848,2972,471,2161,1818,1123,1165,1415,1495,1094,855,1872,1406,289,771,2045,2011,1985,1268,698,2354,1953,985,1861,1458,1312,1030,692,1624,1948,1571,459,490,145,543,1652,1344,2579,1427,2902,127,1517,89,1708,911,2950,2190,345,721,2691,274,1047,2547,48,2733,76,2893,1225,1370,640,2128,1266,2548,1453,1655,2666,113,705,347,1797,822,319,2795,2446,1436,1418,949,555,2494,215,139,1973,807,615,1346,2035,1421,1259,2764,1162,2607,789,834,2295,1946,2492,2608,607,1596,12,1299,2302,2055,2496,657,648,1328,881,191,983,2619,1795,2274,1547,366,1889,619,1863,1858,2307,108,1310,2914,2796,2972,1976,1948,2915,45,1134,303,670,201,309,2268,1955,1149,1067,2997,2901,460,764,958,2956,78,2742,1610,284,2662,2487,1842,833,488,1653,1769,648,2495,357,1422,396,1331,2690,818,2490,1092,1916,633,92,1471,1747,127,749,510,1895,791,2560,1975,839,1307,604,2594,2459,927,1399,227,778,1316,2241,2706,189,2260,1949,1719,916,1739,1392,2644,1763,2877,1468,1987,1622,1718,1108,322,2716,1083,1488,1295,630,816,2887,1570,370,901,524,2977,2213,356,2891,2587,1660,1196,982,1789,236,342,2108,1719,253,2502,1639,2660,2385,560,1056,1515,1101,1665,53,642,2168,2137,2259,34,1244,1136,583,2602,184,1409,2310,2327,2668,1927,26,2058,729,2823,1489,2331,2724,359,267,1544,984,1536,676,2321,207,1749,2167,2787,2140,963,1837,968,875,2431,464,337,2254,2629,144,476,2410,2310,2230,1227,436,669,162,1286,2544,2803,806,2963,2402,2507,418,2559,54,277,2377,2112,268,641,934,1119,389,2693,1259,71,2324,1664,2148,175,2221,1815,2185,2412,816,2586,1216,1581,179,2281,1965,2951,394,1963,646,1555,539,1018,2832,2051,1280,2698,2645,1960,2783,1357,2158,1378,2515,2446,991,1466,737,487,2598,486,1079,2256,2711,812,754,1404,825,644,2254,651,1966,1620,1308,1323,1320,664,809,2654,2535,1288,539,1154,1089,2208,21,1284,1623,2540,948,1139,567,351,192,696,896,2340,1644,1234,2472,2766,2522,372,1016,429,858,2223,901,1252,2471,199,1848,995,2910,1163,2457,57,780,430,1080,587,512,2089,171,1878,1204,350,2089,1467,1429,0,1707,1032,1790,964,663,121,523,869,2852,415,1374,1366,1598,1027,2981,1103,2196,2112,2470,2912,922,2421,2313,1798,1335,1963,2260,2134,206,674,903,1854,2722,1624,2506,2266,722,1903,1251,262,1594,650,1098,2347,2212,2524,2619,2863,781,1593,1867,1380,1348,1298,2320,155,1046,2214,1703,1618,2903,1428,2960,2471,62,1736,109,2421,1322,621,1540,2455,2069,946,1076,743,2283,2552,980,794,99,1597,277,91,2535,2944,549,1258,1448,228,1096,450,2808,408,2818,2211,2068,13,1039,599,1739,1732,877,1487,1360,2727,2079,462,36,1102,2201,1811,2555,1127,2787,2912,1604,2847,122,223,1941,869,401,1412,2142,41,338,1001,1032,2035,1817,1698,569,2672,519,329,2229,387,2850,2933,1714,746,1904,2188,44,33,415,1193,1678,1070,2306,1016,1017,1620,140,1473,2330,2305,2178,2085,1294,551,1721,289,1028,1271,2990,2065,829,1603,2129,2547,803,2061,109,1667,2141,638,398,2545,2335,2005,715,585,292,1615,2849,731,1416,1871,1886,338,961,1931,1444,1622,2234,2052,1033,313,872,369,2225,2211,1192,2030,461,477,2170,1704,2162,2924,2928,552,2657,1872,2027,2309,47,1955,1658,2007,137,390,2834,754,374,1947,2549,656,726,1289,2865,2989,1453,1979,1318,1654,386,2364,436,1197,2351,2611,824,1506,72,1077,1755,218,2991,694,753,1631,685,2986,2022,1944,1282,1846,343,810,607,1424,2511,2048,817,2213,2549,1114,2009,1334,621,689,2066,2812,2039,1643,618,2637,2474,2401,643,1508,1143,2823,2994,278,1758,2092,2620,469,2533,2873,862,729,2067,2505,2798,1706,2763,2240,2098,70,1659,326,200,2065,1656,1862,1014,1493,1807,111,1394,1174,2617,1129,1494,1505,2031,1829,1775,2440,1558,2644,136,2228,1744,2362,987,616,2206,2125,225,2325,2655,299,2677,397,2203,756,2711,1991,2607,1880,863,2423,2226,2064,838,1502,1281,2290,1147,1087,1011,1457,404,264,1514,1319,2450,648,2311,2078,1434,662,1052,1939,2071,2536,252,134,1323,2586,2976,1571,1838,1681,2868,766,978,814,394,2336,857,1354,1076,237,1604,694,2875,247,2062,802,305,778,908,2638,1650,1351,2081,2047,1475,2252,1615,1905,368,1887,448,926,2744,2199,1553,941,138,430,83,30,802,1437,2897,1754,1734,2797,570,2529,49,2883,2368,728,2805,2493,1462,2143,431,1161,2756,1716,85,371,507,2758,2073,470,2622,351,1814,2266,593,2525,1426,2518,885,1383,1427,2183,398,1888,1368,2334,1208,16,1629,358,2207,716,660,2503,631,770,399,2205,2018,163,132,2508,1741,1728,41,2436,2609,2360,2848,994,2998,2610,748,2563,1733,1776,2554,1643,2749,2440,2822,2198,1071,297,2241,863,1130,2265,1990,1091,1926,2750,1841,424,933,739,1054,2765,1521,1695,2322,1279,777,202,536,2391,2050,1413,105,1988,680,676,2616,2979,1974,1418,2481,672,1547,2626,2323,2314,2040,2066,2606,2661,150,2400,2940,1204,2856,1367,745,1783,2871,566,2810,1751,1369,386,1810,1159,720,2899,2124,516,1136,2076,2356,2122,2106,1766,1574,1627,2942,1423,290,270,2465,402,1993,1314,775,2416,554,1249,2835,687,926,327,1270,1545,498,972,1225,2656,2725,195,1760,2511,2562,141,1420,496,91,218,800,2599,1288,906,516,2239,2005,475,1379,1715,1687,2953,2646,586,2804,1081,2704,1811,226,725,1913,2778,488,0,221,1283,2107,1316,940,2596,1763,291,723,2604,2842,2558,736,25,1912,1055,49,1109,830,1806,2298,992,514,13,818,2059,1515,1671,2024,2766,1306,59,1181,1328,316,684,2244,1559,2041,1925,854,1980,1389,1587,2808,2640,2992,480,1007,1611,912,1978,2592,2987,2878,2743,2232,75,107,286,21,215,2465,2248,641,1133,2198,1012,1683,888,2400,2993,1873,95,2136,445,397,2523,2836,2937,2946,1333,2534,258,210,2392,1524,2044,1913,1619,2770,706,2292,2965,2337,2878,1029,391,2422,371,842,1333,904,2004,159,1513,2458,248,1808,2614,2532,936,1362,562,417,1285,634,2216,1496,84,1494,2319,1645,2430,2082,2825,1583,584,994,1814,811,1531,1389,718,275,2874,610,167,1548,222,2031,736,2498,809,1319,1206,1081,2795,1253,845,1537,1242,661,1717,787,635,2512,665,114,2729,378,1026,1400,260,2575,273,579,1048,2447,1906,997,1581,1510,174,2562,1239,2709,2734,407,327,576,1740,2467,2606,867,1273,2107,1746,1902,2596,2414,933,1271,55,2247,1214,337,2041,1125,1713,2767,2510,2302,2881,2730,509,2461,2417,2119,2906,2624,2628,1638,2194,1034,2482,532,2761,2491,1497,2736,1803,1348,1486,1253,2801,843,2942,2361,688,361,2847,772,2923,1610,1736,1771,1169,1085,1192,1114,2658,606,1200,443,434,864,64,2296,2958,2931,1445,1586,950,1630,784,1500,1497,455,1337,256,2251,2095,1090,2797,709,2372,1650,402,1923,2288,2043,1483,1903,101,339,2524,1300,224,2799,2966,1916,704,522,602,1569,2601,37,1557,1344,432,2642,2168,2960,19,2684,2901,2056,166,454,2791,2876,1807,2566,305,1191,1479,2475,2396,2121,1,2415,1312,1005,288,294,2601,2685,2115,272,1260,2422,1867,1516,1964,60,1952,1746,1526,2169,2932,1724,1649,2141,98,1835,2469,2687,2196,966,2841,1250,444,2516,726,1602,22,312,1986,2197,2476,1598,592,2772,2283,1408,1019,427,1166,680,395,2448,2488,1799,293,2804,2837,2012,2618,47,266,2326,341,1033,1974,2832,58,2484,511,26,2666,2149,1648,2598,2844,169,2062,299,910,823,2546,185,1860,878,1768,382,23,1723,166,997,1939,882,1291,2263,1113,1585,1132,2384,1330,2123,234,1454,678,1839,2444,1045,2123,1697,94,2395,1094,1086,571,1207,75,2590,769,899,380,2955,1172,891,2179,681,1212,2554,2489,748,622,1035,167,2027,822,396,844,231,1098,225,1610,1701,2504,2217,2487,2295,2579,1241,2715,1375,2953,2920,2592,800,831,425,362,2931,1059,151,1265,2086,2589,747,995,1861,2976,2054,369,31,2608,566,1590,96,465,1266,1349,192,211,1405,1280,232,97,1380,1672,2829,630,2232,643,462,2153,2971,2317,190,1446,587,301,620,14,395,1729,2654,1886,2258,1088,2191,1710,2245,1046,2,2433,879,2809,416,759,2245,616,2385,2353,2771,1269,833,2383,2477,1858,1954,1840,1625,580,1793,1240,2273,1154,1047,302,893,2780,1804,1385,1204,2909,2616,695,1072,841,420,1973,571,2081,1427,861,2827,2713,945,2419,1921,2978,222,189,677,1877,349,542,955,1704,2255,2689,66,1244,1697,968,1018,117,257,2826,1828,2125,2472,372,984,161,1119,1591,2945,39,141,2572,2995,1589,1751,130,1780,2905,2731,275,2811,2106,433,2004,443,405,1327,2648,1710,235,23,1943,271,142,467,247,2052,334,1971,1006,1766,2626,1186,2880,1914,385,2792,2992,2138,688,795,2231,57,2743,2955,1923,257,2441,152,2692,988,1541,1693,2631,673,2700,2623,1176,2591,2779,1772,2077,1441,1291,637,2668,1992,1104,2910,986,614,2304,617,1450,2143,17,1756,623,2495,2250,1795,2022,1576,556,1045,2768,788,2338,1561,2361,209,1813,868,20,429,1151,419,2314,2438,291,1616,1998,228,2118,1134,965,2201,1875,552,2838,2086,884,2926,918,354,1075,703,2973,2188,553,532,2699,206,441,1216,159,937,1956,962,173,537,1265,1799,2045,353,224,2932,716,2372,193,1977,2744,2299,1202,2706,2127,2110,1274,873,1449,311,1496,1410,331,403,249,164,1561,2578,2778,452,2378,1026,895,160,826,2145,941,2873,2959,2888,1726,2453,2659,71,1632,2344,2498,1657,1158,2749,431,942,2728,658,548,744,2974,2046,1403,908,834,158,62,1674,649,1027,1024,378,41,2428,1411,2135,2883,515,1752,2653,198,2002,1608,2488,2682,771,1141,1828,2498,295,293,533,1423,2679,181,1669,1809,2173,1151,434,466,2671,2922,2705,1844,29,2431,2221,1003,2638,1365,1256,992,1201,1978,1986,1416,1825,1080,1199,900,900,1096,715,47,1171,2805,2110,2582,837,2049,2237,1805,2565,446,2643,1655,1699,1768,785,1240,2279,1601,333,478,1575,2053,1000,2985,1043,1929,1010,2209,2443,1431,2130,59,2132,2759,473,2142,2088,2101,2520,2632,1127,705,1694,84,2363,1153,825,752,2728,905,1587,1039,1896,280,647,2073,2948,1738,713,1367,2943,237,2636,1347,1109,1967,1385,1654,1041,2817,1636,7,330,949,1781,1661,1596,2447,230,282,1492,1871,668,1398,1890,1956,1957,411,2291,85,111,2312,963,1465,2378,40,158,2357,466,104,2879,2830,2967,1351,597,2529,793,10,1187,2329,178,2293,2737,2362,1660,2152,438,1899,2674,2933,2275,272,2378,2151,2645,632,693,1051,2219,2487,2999,903,655,2748,1292,95,1521,198,2180,149,2735,388,983,1223,2760,2469,1778,625,1034,875,794,1666,996,1719,637,1844,844,1287,942,1420,2146,2315,827,1082,24,1853,2943,1092,1476,2287,265,451,1917,750,2459,2898,2538,1229,400,2280,1228,1607,2393,1792,969,2308,931,19,2546,360,40,2561,79,957,2928,1015,1391,1706,2072,2366,1863,241,2964,2118,489,1536,2485,195,1460,116,2477,1302,629,2271,2968,1167,787,521,1509,2806,1095,2055,1370,835,1959,2884,2497,1086,2973,217,947,1470,2517,2122,700,1040,2015,1236,970,1743,494,1858,187,2958,1334,2895,9,193,2941,1685,2500,742,1753,2665,923,96,2567,180,393,1700,2001,855,2239,2676,1456,1017,2858,1408,335,2982,1246,981,2772,1727,1053,1241,2821,18,2483,1069,1911,2930,315,850,1112,204,819,2325,39,2965,2918,605,264,2864,114,1218,2935,832,1439,2829,2698,74,1254,1182,2112,2539,1556,1131,2790,2731,2390,2297,2700,418,956,1831,2376,2696,2153,2115,805,1549,2038,217,757,1518,1470,2982,785,1067,2419,150,913,1298,720,2193,2944,2636,1358,43,1031,2041,529,2195,470,1511,1388,473,675,1498,2360,326,1717,577,1499,17,732,1785,1946,390,482,2801,2244,575,2495,2453,876,2588,605,976,77,2199,1125,2240,2103,1265,2621,1757,1341,895,2990,1219,1231,2227,1303,1843,1659,868,2977,1560,1812,2559,1425,1856,2019,2839,1037,2978,405,1442,2975,2257,774,287,2968,1228,2069,2126,1481,2242,1688,2599,101,145,602,2522,2623,2844,2794,733,1743,120,2899,1022,2919,2583,707,2454,632,1893,2985,1845,906,1305,1748,819,852,1015,2449,458,611,42,165,2996,2479,1247,268,722,1686,290,1777,531,1208,2738,2653,2057,2346,1653,652,2126,763,1223,708,919,1170,734,126,2900,956,2020,1676,126,2530,2243,456,2652,2539,1940,693,1142,103,2083,447,273,1805,1221,925,1907,2009,589,1183,238,732,464,2165,1435,595,814,2665,2128,586,269,1950,1584,2633,1093,2566,973,2574,2785,2319,697,691,2860,1784,706,1511,2119,1830,220,1137,1484,2550,2840,2343,2879,410,2854,1702,1062,1964,703,2594,710,2133,966,2667,2684,2620,1354,1600,520,798,1640,2222,1836,123,1720,1157,921,1557,2337,1064,164,1840,619,944,1116,1922,475,642,1687,505,2299,2346,2877,284,2015,442,2755,191,1822,1500,2886,1257,2255,2231,2570,1407,653,1074,1678,805,2528,2491,2406,667,2000,2756,1728,316,534,877,2732,1529,495,235,2214,1487,1723,1446,1526,363,1343,1106,757,2347,730,1749,2339,477,768,160,202,2294,1030,1816,2173,2862,496,1159,870,714,2896,1245,2286,588,144,86,1261,845,2686,1300,502,1976,1898,1734,2708,1163,1391,773,2341,2202,1731,2386,2451,1874,1409,2639,1647,1984,1009,1939,227,2275,2818}

    {2833,115,1503,339,578,2388,1839,608,975,1480,1508,2463,1484,401,1936,500,2681,5,513,1949,865,1105,1867,1362,317,1991,2273,756,344,1352,420,1771,2458,2368,1078,1450,2674,285,213,1386,561,2705,734,2957,594,612,1866,2026,2436,2157,442,2929,2649,1472,2534,590,679,2514,1078,1564,1892,2394,131,1970,441,970,530,67,1932,2144,2192,513,2605,528,1867,2678,63,960,1377,1793,538,2680,2861,359,2797,1609,2258,746,653,2673,914,143,2677,2373,2171,1527,2411,1451,2147,283,628,1532,515,521,2297,1982,2927,479,883,828,1490,1572,2618,497,987,1037,1413,2172,2984,928,2207,373,161,2435,1577,1987,935,2185,1689,51,36,323,2064,419,2952,2697,263,42,2359,2305,379,873,1267,2840,2669,2611,884,213,1885,1343,1592,2103,348,169,1520,850,494,2886,2764,165,2316,1152,760,186,1100,613,1908,1203,2735,2997,659,234,382,1933,302,2405,1601,2946,1331,1429,2034,601,1211,495,58,1317,1355,2621,403,107,112,1361,2461,2321,2074,359,1682,2918,2350,1433,2541,1652,254,708,598,902,2732,100,2692,2161,2456,2527,2246,1306,899,2109,364,2273,1800,465,2794,1577,1224,182,1662,483,209,1274,2573,2187,391,2780,355,1615,965,1715,2229,565,2838,781,728,2154,870,1791,1926,1393,317,2538,2789,454,10,1553,2042,904,489,786,872,1199,1905,2796,926,649,871,928,128,1880,1954,1504,1371,1217,1928,43,1345,2523,1554,739,2670,440,406,2070,2135,2575,2218,2329,2159,738,696,346,263,385,1960,954,1167,1725,1447,517,1897,2398,541,249,2893,1218,1382,1217,702,1592,1268,1637,1642,684,350,1103,2277,2396,2850,534,1522,1189,1079,33,2988,229,2663,2919,662,2270,603,1140,2323,2745,303,1042,2747,1839,2327,245,1208,72,307,1821,1980,898,2087,2099,1551,2876,1020,255,683,2120,2822,1833,259,2091,1958,2397,1634,409,1979,236,1803,843,1796,658,2043,1591,1865,2860,2593,2961,1038,2467,2882,1912,367,1588,178,1952,1233,2437,119,1383,739,724,2710,1126,1924,2557,1381,1087,2843,1765,2565,2784,1382,212,2016,38,1124,67,2899,2758,2429,1095,1353,2629,520,1919,712,1150,689,1920,3,1401,288,560,1459,1614,2702,2830,1028,1452,752,422,2615,1293,1130,1810,1995,581,2716,231,2104,1735,267,2149,2489,2200,668,2401,2923,1714,527,1263,118,373,346,2285,982,1070,1538,426,2896,1073,733,456,2457,2816,2023,671,1864,88,241,1762,2216,437,2204,847,2827,1962,1837,1777,615,1832,2469,1021,2670,154,1156,421,460,2479,558,2560,98,1628,1834,1309,741,230,1195,268,1535,1275,1701,1843,151,1918,1481,574,2793,1773,593,1222,1853,2776,1160,331,364,1053,2604,796,387,2243,2647,2938,427,1868,820,1124,2046,1922,511,1507,2212,1412,918,1440,1682,194,81,222,2874,2680,1255,51,1649,639,2614,1121,2427,413,2839,765,469,1502,2096,266,1984,1804,115,577,1623,1744,1767,2037,2177,2499,1359,116,2257,1590,2332,741,157,2649,2902,7,2057,1915,2350,1910,2249,2113,1146,2172,1329,472,1050,2630,2564,1395,238,315,1740,2284,626,150,1750,306,840,300,678,2248,306,6,1694,979,1025,2083,1057,1802,2359,1629,2587,2526,506,1855,2456,1968,2739,2476,2864,569,2643,1283,1188,2445,2006,1173,233,2563,1696,70,721,2641,2641,177,559,1307,1776,1969,1603,1321,298,38,1390,801,1178,321,1677,201,1644,1539,589,611,892,2345,2937,449,2527,1934,2315,2138,1663,1850,1527,349,1043,308,2920,636,2717,183,1730,1179,308,2681,2318,2137,2186,849,627,2555,1688,2451,2628,547,2610,1394,2815,2651,392,1546,2597,551,2768,2924,1769,28,207,2515,2423,2389,2635,1488,2033,1155,851,286,584,1617,2540,742,1325,634,250,1340,290,336,2699,2236,2490,1444,1177,2300,1675,2105,1962,2162,2144,2867,1244,2737,1514,2897,2383,2288,216,1120,1498,219,2267,2921,887,686,585,252,777,936,2600,842,1339,2158,2825,56,1971,2673,329,2044,1195,2452,1068,1864,1390,250,2803,501,2279,1756,2405,2181,2247,2092,2392,1220,2655,2037,2669,2745,1580,1060,1128,2097,1434,543,2480,2845,1499,1077,2211,881,725,2679,917,2522,1376,579,2426,852,501,1646,300,1887,2659,1773,48,2907,1131,1757,1002,1284,1456,81,2352,770,439,2429,2702,486,245,2048,1387,1275,255,2226,1874,2846,2786,548,2435,2369,1133,1264,2468,119,2718,1882,1205,1513,953,2014,2418,2412,1340,1209,2736,886,525,256,1224,1566,2675,90,1085,1761,466,310,608,2208,93,1523,2434,203,1462,782,932,886,1824,2784,836,1013,2109,1181,2330,1270,2013,2720,1574,374,1073,690,2246,46,2293,924,1414,318,1684,384,815,578,1126,2807,1902,1232,2635,2542,820,2908,645,1640,1324,1425,797,1229,139,2907,1599,1909,1549,1558,1788,181,172,1422,1626,1304,56,2936,30,2725,309,727,1019,2328,911,2576,1507,2256,2869,831,1888,1145,2017,1528,2602,2399,131,1692,1900,2478,325,261,28,1868,423,673,2605,1272,1226,2175,1741,2533,797,2011,1278,2160,1943,102,2685,890,681,1468,2129,287,1485,2494,87,406,778,2358,1895,2003,2391,2714,254,2278,1490,929,2492,1882,1761,2900,2947,623,938,2480,1517,737,2096,2503,1256,527,8,614,333,2150,2424,943,160,780,2713,1950,2413,518,2921,2763,1832,847,102,132,1403,1542,2622,1656,990,2625,570,1695,2448,635,744,2253,1752,295,1022,1791,762,1830,601,276,458,1941,2445,2252,2938,2016,888,2304,1115,2984,1339,1985,2557,2441,1287,2813,1597,2230,862,2098,210,2145,2235,1170,1254,2530,203,1983,1605,1673,1632,2576,1301,77,2951,1665,1924,710,1730,2613,557,893,2386,897,1178,866,2652,945,730,1673,503,2382,2726,2914,1454,2075,1343,2603,1784,170,2382,113,1637,455,1143,932,776,2593,1552,981,2512,654,1554,361,1770,1898,147,1108,1282,931,524,2821,2001,2466,925,1190,135,1223,422,2514,318,1473,2701,1099,103,1754,2949,656,2935,2720,383,2755,60,1891,453,2034,2989,2707,973,792,563,2842,2991,848,1138,555,650,1238,2308,212,2959,1160,1901,1841,1889,2833,1533,1492,1330,1945,1397,2892,989,1140,296,1435,2573,2342,2063,449,2260,1892,1365,652,909,1329,2824,1848,690,1958,2531,468,874,2151,1568,1765,1008,536,438,1020,1439,657,400,2253,535,2416,2885,370,1788,628,922,1866,2380,2104,156,1200,432,1942,1968,2771,2209,1320,1539,2345,743,124,22,1057,598,2130,66,563,274,2835,204,564,1876,2238,1804,971,461,20,535,2155,2470,1669,508,975,2364,2040,282,947,1820,1112,1476,1525,2631,2870,2186,1647,2953,1503,871,13,2936,1242,897,2660,417,129,1164,810,647,1896,2150,2328,559,1764,1153,1014,1036,1062,2155,1117,366,2356,1538,1836,609,2939,2084,1689,1691,2021,1933,1011,2718,1004,1031,2357,2289,205,1997,1742,2542,1530,2580,2824,1478,2513,2754,1668,2007,310,2003,954,159,1049,1909,1555,1613,106,1982,1792,1525,313,439,1677,2176,1341,311,865,1443,1786,1617,53,1202,1972,795,2377,2485,1140,1762,938,1069,1751,767,2465,2584,1235,1100,522,2301,484,478,2731,1865,998,2567,208,1257,538,1272,2690,1219,2379,1372,811,2682,476,2917,2402,1154,81,955,1295,2233,242,507,1919,1552,1479,106,2289,506,2543,1402,1894,1932,1190,2032,1940,1518,2730,448,2580,1782,826,2762,1891,73,1929,1668,1279,2819,2612,125,1819,976,1965,2775,636,1191,199,2387,1250,2113,2429,493,915,451,2703,720,790,2072,2217,2782,1691,755,1255,2349,1534,1296,2161,999,1641,778,1584,1718,1464,222,2340,2036,492,2250,1911,2338,645,1842,1838,1794,1491,1072,163,2932,2887,938,889,1648,1612,1855,2572,1589,1944,1185,692,1693,2335,1337,1150,2298,1007,1230,952,1332,343,1277,2192,1745,2164,1214,1591,2545,847,1455,1148,1829,967,526,2060,1166,504,65,29,1705,2407,2834,2099,1311,812,168,784,1860,572,553,1252,719,1248,1215,447,1636,2862,247,948,1211,1972,2063,1732,2403,2464,2710,2661,2963,253,157,2855,1545,1738,324,1523,1172,2324,912,2202,2859,1116,803,1375,393,2039,1091,2049,2570,1356,2855,2438,2006,2182,36,1060,2787,1897,2531,1430,64,2518,2379,1935,667,2723,1612,1664,2500,392,1755,143,2032,2204,450,1573,1303,1474,2646,2287,1747,1294,836,1879,244,232,100,2509,2970,829,1174,1737,1578,2576,1707,2176,2148,2375,1698,695,546,1006,2270,2068,2376,1562,682,586,1951,1921,1716,2146,80,2750,11,240,792,1573,2722,2077,1373,2127,2355,1961,474,2414,1994,2187,1475,1463,760,1220,846,80,2726,314,1177,1516,1802,2506,821,1651,1993,2316,1215,564,2018,242,541,2276,664,940,1934,2820,935,594,472,2284,32,2197,2395,2746,446,2374,1491,1437,304,15,147,2717,2462,639,1672,1920,1135,2146,837,768,15,1145,325,1407,279,1036,2366,1440,2633,562,2114,2696,2054,2906,1269,2286,1463,162,2157,1246,2623,2102,261,216,1432,1588,24,644,1852,707,1852,2814,2261,1313,221,1583,1372,2802,1823,1778,971,1679,1567,2091,61,567,1957,2642,2238,2264,2067,529,2053,2059,1148,622,1824,2455,2117,1438,2846,259,1061,2013,549,2407,2061,794,713,665,133,1419,1184,1189,14,2336,2410,2911,2814,782,1816,2398,1359,2008,1735,550,1521,572,2849,2729,2193,2516,2979,766,959,1741,1724,597,188,1466,2261,2662,474,2909,2703,619,2536,923,498,1647,1477,78,2517,1110,2269,453,320,613,1041,2582,2954,2012,1658,146,2432,1818,2076,174,2651,2845,281,381,1512,1309,2280,2276,1686,2781,121,187,2905,2463,1834,2028,1342,1399,2167,48,2858,1326,1870,592,1236,1482,2116,1817,2774,1239,1787,1975,9,1213,2014,5,379,1856,1063,2369,1482,660,2184,1458,1742,1455,1417,2929,1068,1815,2574,2178,332,1753,2000,1520,2466,824,2183,2519,1222,556,1826,513,2853,1850,2409,702,2934,2949,1692,1690,1347,1729,1090,491,745,2757,2344,866,2738,666,615,1146,505,2070,510,2424,1705,1626,557,262,2541,404,883,214,2415,471,88,2569,671,2095,2339,793,898,194,802,428,1602,1084,2689,2079,946,2418,2046,1676,2093,2774,581,1302,545,528,1989,2164,2694,2272,751,1759,2508,3,1064,1317,1194,989,1646,525,1930,2265,481,1760,2282,2658,1478,554,433,2857,380,927,1570,867,724,2792,2742,2223,517,849,969,1339,345,1065,1522,1297,1050,153,68,2556,2800,761,2634,1206,1212,340,679,1024,2442,670,2225,1203,1786,719,2303,561,1928,1204,1505,1315,1082,1245,2767,54,2916,2190,2719,1726,1483,806,2967,967,655,2583,2497,544,512,1870,2237,2507,1141,1900,1770,1509,654,2630,1677,1335,69,1565,2385,1952,368,2342,2008,2166,341,6,2444,1580,1812,1822,2017,1798,1290,2752,582,2879,2085,699,1384,672,974,625,2537,879,348,1927,2980,2964,1709,2798,1877,1578,2102,1297,924,1363,2033,2872,843,599,411,1281,774,1121,1118,977,1326,76,576,1670,2885,2486,2420,2776,93,146,1563,666,211,2915,2573,1702,1638,152,1510,2739,1369,2430,2793,457,1107,1198,2634,2724,148,2650,1234,2553,171,137,502,943,1197,2697,677,1210,1862,1582,2903,1885,859,1162,2036,1074,1849,1233,523,565,799,1469,1914,1395,2404,2121,2374,1977,909,69,87,8,184,1457,2639,1722,724,1392,1357,1582,2292,401,765,1630,2786,2947,2708,1419,1445,1321,2502,751,1342,2965,1187,1642,1428,526,974,999,2712,1476,2785,1542,903,2029,1562,1595,1415,2025,1847,575,1533,2757,2331,1176,86,2409,2734,1990,2399,1374,2556,939,1400,1238,1529,2389,1847,1120,2228,1908,1748,251,907,1779,258,323,1173,1012,964,2317,2443,1209,452,2296,1183,2322,2954,1745,990,2980,2388,2781,1040,874,1501,1616,2537,244,1939,269,50,2569,2184,1396,860,2711,251,1966,1528,2181,1645,1808,1930,1893,1519,183,2894,914,1879,667,530,1811,112,148,1890,1567,2272,1579,130,2741,693,1733,2042,2934,416,1290,2591,1820,265,612,2468,1249,2505,1375,1364,1387,1750,2131,104,2848,2751,1999,185,2552,2813,355,324,2154,1430,2333,1313,2234,573,762,97,508,1308,568,1023,1801,45,452,74,1551,285,2460,1572,2087,988,2889,1186,2589,952,2408,917,414,260,998,457,779,2939,1639,1075,2866,951,618,1215,168,1945,1557,99,2603,2528,1780,136,2215,1106,2381,1029,246,2656,1981,82,73,1084,740,2975,2195,759,846,1876,2870,2775,1725,792,358,1953,220,835,1061,700,1709,2486,1700,468,2662,2353,2753,2475,704,937,2020,485,445,1774,2820,2831,1193,1179,414,2852,1925,1568,2637,61,2952,1058,1464,1164,1426,2025,2868,606,278,328,950,1310,1606,2433,2615,799,2904,694,435,2349,1680,1485,2432,2174,580,328,2191,2816,412,2169,2683,2627,2799,2501,876,1099,347,1671,1923,173,1859,2179,1066,2434,1857,352,880,591,2101,2189,1188,2672,1585,830,2408,377,186,110,408,944,905,1772,624,1530,939,410,46,1081,1388,2671,2478,271,2686,1935,2844,2060,2854,1115,674,176,2881,279,1175,63,2812,2050,2320,1997,239,500,718,2493,1355,2028,122,1128,1338,94,861,2664,2782,2753,1727,1663,880,2695,961,798,2747,856,626,857,796,2111,2163,2452,2,1182,1684,588,1662,1372,2733,497,1586,2303,1049,687,1396,2525,980,2210,2595,228,2090,35,2437,1854,2895,2956,1667,437,296,2312,823,1994,864,2220,491,1243,2915,154,714,2166,1432,483,1699,2551,545,1544,413,1461,2300,1065,2962,2473,2826,2313,2401,1261,2892,790,426,620,669,2224,2218,1134,663,2023,1004,2019,791,270,2105,2714,4,1227,2650,444,1543,2108,1827,321,2957,2999,2932,342,1486,2691,2790,2152,1285,1894,2309,34,546,993,919,1884,1722,1013,1471,1625,921,2723,2206,2365,1683,740,2333,1168,853,582,381,856,1088,1992,356,1180,1477,817,319,1286,1731,1633,2074,1361,1664,1680,509,185,1441,841,2648,2632,2769,1336,851,2617,1277,1059,604,2220,540,698,887,1384,2863,1917,2182,1035,1595,1314,2292,686,1967,518,1569,538,828,1107,170,383,1801,2891,2779,1563,2084,1232,2777,2908,1051,1044,1315,2770,1512,1414,504,1460,1089,2817,1881,281,651,2956,1058,1809,1157,424,1381,2966,2890,365,2581,2970,50,1519,2762,2179,2134,2036,2543,755,1575,1618,65,1168,2715,479,2074,1438,243,808,2811,1421,2136,1393,1123,2740,1812,1821,1988,1194,2170,1787,1171,1712,2577,1876,896,307,747,452,1366,531,314,832,1352,2866,330,807,2156,37,307,467,979,1237,1142,2843,629,882,200,2371,2348,2519,1942,2962,2986,2664,600,2917,399,2473,1305,2740,1565,2796,376,764,2094,1260,859,1449,304,1054,953,804,2100,2080,854,540,1711,2584,960,79,1783,1774,149,2133,600,1207,1931,2925,1155,2010,2334,1532,120,750,2367,135,1273,2752,2124,2281,2504,801,894,2326,18,640,1424,804,711,2526,1970,340,276,1132,993,2473,2205,1614,105,2160,1368,138,2038,1111,2688,838,233,2180,2777,2817,2380,1433,1071,1947,2561,409,2203,2568,2262,1137,638,1138,2857,246,1996,1474,2974,2859,779,1324,915,1790,421,2585,1048,2355,1398,78,31,335,609,1358,1353,1336,1379,1104,1297,1628,180,1605,1002,2553,783,1480,1147,646,1044,1096,1102,2926,2481,2983,920,1779,214,2462,2869,175,2235,761,2406,1292,2111,951,2568,156,2337,930,617,1576,2394,1869,1918,985,1711,16,2851,1951,404,2571,1052,2427,757,2676,2047,1535,14,389,2090,2925,2765,2177,425,1759,2783,1376,52,1442,2474,959,1152,144,2348,2888,1661,2058,596,2741,2263,2945,2581,177,11,1593,2318,685,2800,503,2687,2417,583,2831,1708,978,1981,701,1989,4,1406,44,595,1937,2969,2425,2341,1651,463,1,2307,2695,1327,2701,1093,1537,2913,1550,2259,463,1384,487,2998,633,1165,2769,1350,32,292,591,108,1447,603,1938,1495,2439,1845,375,1712,1703,1133,813,2484,1681,1042,934,484,786,2625,775,542,2995,1962,996,2264,550,197,735,1506,2927,292,1010,377,2683,1819,467,353,1609,2387,2116}

    1826

    2502

    Returns: 796179237

  128. {2221,1814,812,2221,2637,2221,2221,1271,281,2221,281,281,2410,281,281,670,976,2221,281,281,2423,281,2221,2221,1490,281,2674,281,2663,281,2221,942,2221,765,1998,281,2221,2587,401,2564,1831,112,2503,281,196,281,281,281,626,2221,2221,96,2327,2166,281,281,130,281,992,2221,281,281,2101,281,886,2221,281,1182,281,281,2473,281,964,2221,2221,1617,1447,281,1275,1759,281,1334,2699,2221,1155,281,1104,2639,723,2221,2221,455,281,2221,2480,2273,2307,1825,2023,2221,724,2221,2559,2221,281,1199,281,309,2333,2231,2221,281,2734,2221,2221,103,2221,2377,2221,281,50,2022,281,2643,2221,281,281,1822,1716,2221,2221,1914,281,281,2863,2872,2221,2817,2012,2221,281,281,1261,2125,2221,1037,281,281,281,281,105,1086,2557,2221,2221,281,2221,417,2303,1248,279,1986,871,939,2393,2128,2221,281,1304,2538,726,1381,281,281,281,281,2221,1141,281,1800,2221,2520,2286,281,1834,2221,2804,2221,281,359,497,281,281,2485,2915,2221,1847,2912,2221,281,2221,1494,546,1415,2221,2221,2281,1184,2221,619,2331,1176,281,281,281,1511,2221,1874,2441,616,281,281,1705,1607,281,281,2221,1446,281,2770,2620,2221,973,1508,2221,281,281,1495,821,84,281,2221,2221,2570,2221,281,1354,281,281,281,262,371,596,281,607,229,2221,281,717,2221,1191,2221,2221,2221,2221,715,1952,2221,2042,1336,570,1391,2221,177,2221,2474,281,2221,281,281,2221,2624,281,1520,849,281,281,2385,2771,517,2221,281,2881,2967,2034,1420,281,1365,159,2831,281,281,2696,2168,2221,737,1610,1274,1486,2959,2221,2221,2475,1012,2221,2221,2560,281,959,2221,2688,281,33,1817,1896,2221,2451,2221,2221,2724,59,281,287,281,281,2190,1870,2694,2739,281,2062,1748,2221,2221,281,281,2221,2221,2221,2221,516,185,122,483,465,2632,281,281,2221,1890,281,2221,1806,2221,2726,281,2221,281,1878,2155,1997,1722,1720,281,2221,1402,1837,43,2221,281,1115,1548,2221,2913,2606,2221,325,2221,1144,428,2569,292,2221,1726,2608,1403,2221,281,549,281,281,2123,1205,2302,2221,281,366,2692,281,281,3,281,2582,2221,2221,45,1933,378,2853,281,281,1679,2221,1030,986,1586,597,2592,2221,281,2221,2221,1641,2221,2221,2274,281,687,2311,1618,2221,2221,2216,2221,2221,281,2221,2221,2221,281,281,1633,2992,1469,1942,2221,2221,281,58,1426,2221,755,2645,1762,814,2221,281,2221,1382,281,281,2221,2221,2221,2115,587,2900,2030,1558,2221,1442,666,281,2221,2862,2515,2221,2221,2221,1360,2221,993,2982,2221,281,281,281,2221,2924,2310,2175,281,2221,586,1004,2221,1263,281,2883,2221,281,2221,443,281,2221,281,2221,281,2800,2221,2221,676,281,162,2205,2221,281,2221,281,1710,1131,2427,281,2221,1750,281,281,2221,2922,1854,2185,797,2171,281,2221,281,2221,1401,2221,281,281,2239,281,1844,2349,928,2221,2221,281,281,1757,181,2673,2442,2300,656,2613,1611,1910,1624,2221,1180,1299,1723,2221,1922,7,1103,2221,281,1915,2378,2221,281,1437,2221,2173,729,2965,2221,2221,44,281,385,2221,817,281,1232,281,281,2068,295,1049,2943,1470,2713,2221,2221,2742,2221,2489,933,2082,281,625,1246,1976,1958,1270,281,2221,2221,281,1460,281,324,2181,2821,2221,337,2236,950,281,281,281,2537,1728,281,2221,2221,447,702,308,357,491,281,1043,2221,281,1124,2296,281,281,2221,2534,281,1221,175,98,281,2221,780,2221,1098,194,2601,1867,1964,1774,2221,281,1324,281,87,391,1154,2221,2221,2337,2221,1573,2221,2458,129,910,2591,2575,281,2221,1429,794,2221,332,2221,276,2221,281,132,281,365,281,2829,2221,1350,281,2827,1338,281,281,1376,2709,1348,281,281,2221,281,2221,2217,870,281,791,281,927,2783,2221,1404,1022,2901,2221,2017,281,281,1397,281,281,1627,2221,2221,2221,1444,857,1712,281,281,2144,730,675,2802,1902,2622,2507,281,420,479,2221,834,2221,281,2221,281,281,281,281,281,1982,693,2221,2221,387,2988,281,281,2598,915,771,2493,709,2221,2462,2221,2736,281,2777,2221,2221,2491,837,281,997,281,2221,2221,314,281,2221,1116,1916,2221,1697,2833,753,2221,1186,281,722,1551,2221,452,2585,281,1454,1898,1780,2221,2221,2221,281,281,550,2221,281,281,2667,293,281,475,2221,281,55,281,2221,2219,2873,2221,665,281,126,1092,641,697,281,281,375,1342,2652,1717,1816,1661,281,2221,2221,281,281,2955,2974,1542,2221,1185,2700,2133,215,542,2221,281,281,281,1450,2933,2782,2136,281,281,2260,425,281,1945,2221,2221,377,281,1094,1924,1584,2662,454,186,678,2221,281,2221,2221,2221,281,2221,281,2221,411,362,2221,707,1463,661,2221,2221,2744,2605,281,1734,2221,281,136,1325,281,683,281,1815,2604,2221,471,878,2879,741,440,281,2630,1623,2221,281,2221,281,2221,2221,1260,2221,2221,281,1829,2221,281,2221,1242,2218,2,2304,2221,1510,2353,2221,281,281,2221,1231,2975,2221,281,2047,281,281,2421,2051,2221,1684,2766,2221,845,2221,281,1879,36,281,412,2221,2795,281,281,948,734,281,2145,213,2221,2615,2221,281,2221,2221,2221,2221,68,1789,1301,2811,2221,2221,1818,2221,1507,2221,1577,554,2221,1809,281,1741,1836,861,2583,281,763,2221,664,281,531,947,833,2508,2221,2314,1256,1293,281,2221,281,2221,2221,281,281,2856,2221,221,2338,281,1074,281,281,281,281,339,281,2167,281,2712,2221,2221,2221,281,281,2221,2221,281,281,281,281,414,281,2221,1072,2221,2221,281,1254,757,1515,2422,2931,281,1708,650,281,2221,1644,1592,258,2221,940,2460,2221,2221,281,520,2221,855,568,2221,281,2221,281,281,296,281,281,1782,2221,2002,281,281,530,281,1648,281,281,487,911,2786,281,1197,2316,281,2221,281,2221,2221,2523,2221,751,281,1977,2221,2221,2887,1777,456,281,2396,2412,281,2221,907,2221,2052,281,2221,1331,281,1556,2221,1457,2221,281,281,1089,281,2939,1506,281,281,1389,2221,281,2761,2631,636,2444,281,1245,2179,2221,584,2221,2237,2518,15,1257,281,1663,2176,2221,1943,2221,281,2221,511,1766,2278,1975,2903,281,2221,281,281,975,390,2351,1011,1895,2221,2461,2221,1251,281,472,2392,2221,438,2221,2152,2221,281,281,1704,2459,281,2221,281,1135,2497,281,2221,2221,913,281,2221,2221,281,281,1452,281,779,1390,2221,820,2334,983,281,2650,281,281,1414,2602,281,1244,2221,281,512,2065,2716,345,466,451,1476,2221,2221,434,281,792,1966,1524,281,281,2110,281,1802,2221,2221,2093,281,281,2806,759,1243,2498,1291,326,216,778,75,281,643,2221,1585,2221,921,2221,281,2221,2221,2221,281,2291,2221,2221,363,2221,2083,205,281,281,281,2191,2221,281,281,281,2221,281,1164,301,988,281,2277,1534,2221,281,1643,2251,2221,2221,281,1282,1778,685,2221,525,281,2221,281,2043,2594,2221,2189,281,281,2221,2221,2221,2221,281,281,281,281,773,2221,297,281,2221,281,1128,281,758,2888,2221,2854,281,2221,1604,2221,281,381,281,2009,2398,281,311,281,2221,2221,2029,316,2040,2953,281,2221,866,2221,2221,2221,2221,281,2206,1514,2544,640,971,281,376,2221,2151,281,281,2340,2707,2221,2269,2221,2360,281,281,671,2626,828,2773,442,281,1625,1970,2221,2221,281,2221,1183,2221,1892,612,281,2947,2221,2221,2221,2221,281,281,281,1493,2221,281,2221,1687,1113,281,281,281,2221,818,2318,1587,281,2199,281,534,2991,2221,2221,2221,2221,1489,281,1571,1891,2737,1250,1441,281,2221,2221,1887,2221,232,1468,2221,984,1913,649,264,2221,281,429,1127,1247,776,281,281,1017,2453,809,281,2221,529,2263,281,281,2221,2221,2221,967,281,836,2221,281,2221,281,884,2995,2221,2221,1882,2221,1001,281,541,1374,1598,953,281,281,281,2994,281,281,2221,2221,2088,1813,82,2869,1283,2445,10,2221,1423,1165,281,367,1578,600,1868,281,2550,1620,321,2221,2221,2207,281,2221,1177,1931,2748,281,2731,2221,79,281,1265,2221,2033,854,2221,101,281,819,2386,2076,2221,281,2221,645,2962,1286,2221,12,281,1105,1368,161,1533,2221,1662,2482,2221,2266,2543,173,2221,281,580,281,633,281,2138,581,1853,281,1673,2851,1760,281,30,281,2221,281,2221,2921,281,2221,2221,2004,281,281,2221,2221,2848,1858,281,281,485,2245,2221,2589,281,281,281,2710,1877,281,1295,1289,2706,328,281,1688,281,2221,281,494,2295,2221,899,2221,281,281,281,210,2014,1288,2221,281,1537,1830,281,34,1255,2837,182,567,1322,599,1474,1198,1811,2221,558,1590,2221,2359,89,281,1988,2035,2221,2221,2358,1222,2221,11,2513,2866,2221,281,1605,1467,1085,281,2365,996,2306,281,281,97,2221,1451,2221,1189,2182,2221,281,2221,199,1602,2221,2221,281,2079,2551,2221,1963,113,2198,19,2141,1686,450,315,499,373,281,281,281,281,2221,2221,1729,281,281,281,2221,1967,1707,2810,281,2911,211,2792,1303,2221,281,2479,2844,628,588,490,281,931,281,0,896,281,2221,830,1278,281,2820,1973,2221,2221,2221,2221,281,52,281,1066,856,4,2221,281,1033,2000,281,2689,2221,1918,740,281,2609,281,1761,2555,2221,732,2321,919,2221,1443,281,281,281,281,2221,2221,2954,198,117,2221,281,1046,624,2221,281,1649,281,1211,2221,1223,2221,508,355,2221,2221,281,2832,281,281,2221,2221,2221,2222,281,2221,453,281,27,2221,281,2221,962,281,1735,281,281,2675,1503,2221,1572,2221,281,2221,155,281,2865,281,281,281,2221,1471,281,281,682,2941,2648,2535,1313,281,2242,281,281,1654,2170,1330,2221,281,281,2221,2221,281,852,2578,281,261,281,551,281,281,281,281,2221,2221,2221,2221,2221,2987,1228,281,2221,1285,281,2221,2221,2577,281,281,2505,281,2221,2221,281,281,1691,281,281,281,2130,2221,2221,980,2221,1549,1207,281,669,592,2221,2139,2221,699,1974,2238,281,2595,281,2221,281,2221,903,1359,2221,1685,553,2221,201,2221,281,2235,1201,1827,281,281,2221,1676,2221,2366,2221,1656,1971,2221,2221,2944,70,777,281,281,2213,1108,2221,1055,281,2221,281,90,2221,2221,524,281,2484,1543,281,774,2593,281,2221,281,1364,2161,281,1472,2221,2665,2221,1521,281,853,1088,2221,2257,2221,772,1225,2221,2942,489,2221,281,2221,2221,281,2053,583,281,1379,2221,2221,1786,501,1175,116,2221,154,281,2226,133,281,1091,801,281,281,2221,2221,368,2372,2221,281,1121,281,2382,281,1387,2221,2221,2221,2024,281,540,1229,1904,2504,1591,2874,2455,408,2221,575,281,306,2153,2221,2221,127,788,2636,1292,1323,281,281,2651,281,2948,281,2221,684,143,2221,2919,281,281,436,2202,281,167,1290,2122,2221,2221,2221,281,281,176,281,281,281,2221,510,2227,2162,2221,1671,281,2221,1090,281,2221,2221,2711,281,2646,2221,1117,2221,281,2221,1675,2418,2330,281,281,2596,419,2483,281,281,688,281,2221,2221,281,319,2221,2221,2221,1142,1934,119,681,2221,2221,1409,2765,1329,1019,1052,2221,2723,917,2221,281,281,2221,2221,2129,1651,174,2221,1133,2221,2221,281,2347,2846,2221,2221,963,1419,281,2221,900,2221,2143,2221,303,2221,2221,281,281,347,1041,281,1906,2221,2221,2221,281,620,2105,281,281,2221,281,281,281,2885,281,1160,281,281,1835,2221,2221,1078,281,2221,1632,247,2221,192,2968,829,1277,2221,223,2376,2221,2221,1865,2628,1593,281,281,1456,2221,281,1715,2221,2221,2221,281,281,1860,281,2221,281,281,281,1413,822,1505,268,1690,2383,1008,1851,2221,2234,281,2542,2221,281,2221,281,41,2221,281,2221,281,2221,2221,1513,1989,2221,2020,281,2221,2221,1400,281,275,281,2221,2221,469,936,2221,480,1430,281,1193,2778,281,281,2221,2828,894,2221,2590,1328,1226,1057,2532,281,327,1000,2221,281,2221,281,1972,2221,281,281,1388,2149,170,2221,816,766,2402,281,672,281,2221,1309,961,281,1527,281,800,2248,905,848,2221,281,2221,1102,281,1398,2221,2221,544,1497,2221,2345,2221,1218,2221,281,2221,2221,28,1864,2221,2193,128,281,2221,2221,146,281,2695,464,1028,2677,1579,2221,281,281,2984,398,2221,281,2221,94,2746,1307,1636,1637,281,2221,272,1213,1746,281,2221,2221,2221,1220,482,901,281,281,2221,1751,1237,2046,2682,409,2511,2704,2221,281,2221,281,2305,1272,2647,281,396,956,883,2221,270,2221,2932,2221,1202,281,2379,2221,2221,2221,2529,281,457,970,281,2387,2221,2255,2221,2221,2221,2221,2188,2221,2081,2221,858,281,281,2085,156,2785,281,1614,2221,281,2858,281,317,281,281,557,718,281,2433,281,1784,1797,2221,305,705,1528,2221,2221,877,2221,281,2221,2221,2481,281,1951,281,847,281,72,2221,281,1380,468,859,2221,281,2221,974,2221,2875,2373,281,281,2121,605,281,2221,281,153,2221,1273,281,2221,2897,281,2839,2221,477,2494,281,589,2221,2221,1163,2221,1788,281,281,2221,437,2727,86,281,281,281,2221,1845,2221,48,761,1706,2221,281,968,2256,281,281,281,2221,239,1993,2221,281,2221,2221,2780,281,1581,1749,2221,281,40,281,1346,2061,2221,648,281,2221,1634,2221,281,2221,281,1498,1238,807,2005,281,281,2221,341,1965,281,2221,281,2221,2221,2752,281,2221,281,2016,2172,2221,281,2221,2221,2108,281,565,2221,1658,168,2730,985,982,680,2221,2221,2221,667,1421,281,2221,840,281,2221,2221,2221,1026,1517,832,2120,811,2221,1018,2997,2298,2221,1821,1769,579,1449,1027,2221,240,2571,281,1039,630,2221,1062,1031,714,281,2221,2972,2221,637,1955,2221,509,2221,2221,197,2424,2813,281,2221,2183,1427,2070,281,2209,2015,281,1206,2776,2221,2221,2390,2270,2221,2221,281,712,281,281,825,281,629,281,1871,2229,281,2294,1659,1580,2221,281,281,281,868,2221,1099,2825,281,2876,1949,536,2221,929,2221,2221,2940,281,1194,281,2221,2221,1667,1394,2980,2212,281,2221,1519,1369,2148,281,2221,1559,281,281,2893,1545,653,2416,281,204,2703,2221,2970,2221,131,134,1600,1178,2553,1195,1475,1434,2221,281,214,2880,2221,281,1968,281,281,281,1101,1935,91,281,2855,2221,370,1487,281,1919,281,2221,2221,2147,2221,281,527,2221,281,281,2221,2755,2725,1518,281,1756,998,2221,2635,677,2221,1335,281,2221,526,2414,281,2221,2221,281,281,1483,2221,1937,281,2221,2221,281,578,2221,65,2221,2221,2221,934,281,1166,585,1070,281,2221,547,2788,460,2221,46,1897,281,256,444,2738,281,2221,2221,1927,2221,281,2221,2221,281,2221,281,281,2221,1677,2221,2457,467,2221,2221,1810,2388,2339,710,2221,2054,281,322,1875,2221,463,1833,2063,2221,281,1893,281,1647,1848,2519,281,1532,2221,2221,2221,2448,2718,2221,2221,1464,2221,2930,2221,281,893,281,1694,208,2715,2221,2221,2221,1378,281,1979,2221,2221,2221,228,608,281,535,658,2389,593,2221,2109,2221,2539,2221,674,281,876,869,2089,2221,149,2221,2221,281,1812,1136,2221,1479,1068,281,281,1992,445,281,783,977,1502,281,2611,281,281,281,1785,784,1347,2221,2501,2621,2221,1753,281,2815,2221,1700,1439,281,281,2244,2276,26,1570,1069,281,873,2071,1523,281,2064,1377,281,281,281,1740,281,2221,1453,2909,1300,965,281,281,1111,92,281,2572,835,281,2221,2221,281,2809,2221,522,2221,2154,2221,1252,2472,2221,618,2336,148,2018,2221,966,2221,281,1208,2221,1745,37,2221,1370,281,2221,2221,2221,2221,281,2753,281,2666,2568,1269,281,231,2057,2221,2221,281,1823,2500,2221,281,2649,281,2686,281,2429,410,2221,281,2221,1861,1249,1540,1888,369,1485,2221,1903,2323,2221,1230,2221,2221,904,1843,2221,1122,824,281,281,281,281,281,1125,1038}

    {1355,2221,2221,2860,2221,1960,343,281,2510,1824,340,2224,2221,1737,1392,2221,2221,2920,431,2896,281,389,93,335,2221,2976,2221,394,2221,1799,1406,281,163,281,281,2653,29,2221,2221,2221,2221,281,2221,2452,2221,22,77,2576,281,1172,1564,2221,281,281,2524,2446,2221,799,281,2264,880,1126,2221,227,2221,1058,1119,2221,1040,1448,281,2530,281,432,1536,281,2221,20,281,2221,1985,2221,281,1020,281,361,281,281,2221,1157,574,2221,139,2867,281,2221,281,281,2221,1925,281,2986,2221,2857,2344,2221,523,2221,2221,281,2625,1693,281,85,1657,281,769,2221,2055,2629,281,2221,2774,281,395,1678,2299,281,281,2113,1832,2221,2552,2223,2221,281,1431,281,281,2812,386,1635,2221,2221,1953,2221,1653,2971,2977,1869,2221,281,281,2757,805,2950,2080,281,281,281,281,2221,281,2221,2221,281,2013,104,2221,281,281,2221,1539,404,2117,2252,1546,2221,246,2221,639,281,2221,623,2221,224,2221,2150,2588,2221,281,267,1433,281,281,2026,2221,281,1060,839,1051,281,281,281,1258,2927,281,2221,2638,2221,2221,2221,2584,2208,2814,281,782,281,2221,2221,2313,1235,281,2221,1909,2823,2426,2221,2367,2221,2221,518,281,281,1790,1217,73,2221,2221,281,1065,736,2878,2221,1696,2516,281,1646,1768,2394,2221,281,281,9,2221,281,1170,2058,281,243,2221,241,846,1216,2796,2221,2221,493,281,281,2221,2221,61,2221,1794,2221,1798,1134,2531,165,421,281,1692,2221,2221,673,2574,281,281,281,2430,123,281,281,2221,281,2871,281,2221,281,2099,1073,2221,281,548,2221,2221,2221,2221,2221,1639,2087,281,2221,2400,979,2221,1561,2221,622,281,573,2221,281,281,1120,281,274,808,281,2221,31,2221,798,2672,281,2221,2221,281,2180,281,281,2146,1526,2259,1358,2436,2275,2003,1233,281,281,281,281,281,2221,1095,1881,1588,2221,115,63,281,2413,281,999,2721,749,281,281,281,2221,281,1353,402,281,281,281,537,2086,281,281,1553,281,281,543,2221,334,281,2221,281,281,2566,2221,2221,281,2708,2028,2221,2288,1032,2221,281,2221,2818,2397,281,2221,2509,2021,2221,476,281,2905,2135,281,2221,281,281,2996,1962,2221,742,2221,2221,281,281,2221,1826,2521,972,2010,281,1987,1866,281,2779,2221,281,281,1984,235,2221,1345,727,1695,841,2506,1944,2477,254,2221,2221,281,2221,2567,2037,356,2221,2221,484,281,2221,281,281,1996,2320,263,2221,2098,582,2917,1703,572,2221,281,281,281,281,1003,2221,281,330,2384,281,2221,2680,1416,1509,2221,2762,281,2221,2343,2791,399,486,505,281,281,281,1596,1259,2221,2221,1036,281,95,2221,2435,1428,433,281,902,2617,969,353,786,2221,2751,407,281,354,281,2221,787,2841,2849,538,2221,2221,2221,617,1880,2221,51,552,481,281,2221,2221,281,2221,137,496,1563,2254,2221,171,1146,539,281,2124,2221,281,281,862,416,2329,2754,281,281,2221,2221,281,281,2221,2221,2221,2221,621,2221,281,2221,2142,2221,2221,2221,1957,1645,281,281,1872,785,2221,2165,281,281,2221,1594,2201,2221,1929,281,1204,281,2907,281,2220,1310,2221,2221,2221,2221,2221,2221,1210,286,2221,668,2221,281,281,435,2221,2221,281,2221,281,1776,1961,2196,1219,2221,1050,281,2221,281,945,2221,281,281,2134,754,338,2221,281,66,1200,500,281,281,2221,281,2221,1911,2221,2891,2324,281,2221,924,952,2075,281,320,281,281,281,610,282,281,2957,2221,281,2221,281,2221,281,562,329,2221,172,2221,281,281,2478,1807,281,2127,2221,1606,2221,2221,2221,2221,281,2232,2404,2221,281,502,281,561,2221,513,614,281,2540,2221,2790,2221,2361,2221,2184,2221,2221,6,2740,2221,2221,2221,951,2840,1484,2554,16,281,281,2979,281,25,281,2221,298,281,281,2221,957,2221,1689,2246,2221,2449,991,281,1808,2547,918,2221,281,2221,912,2656,2221,2221,2221,281,281,281,281,990,281,281,1190,281,1560,2395,2341,1016,1411,810,88,1143,2221,2221,1779,793,281,2221,2799,1408,2221,2221,281,2221,2221,2522,2221,713,281,1574,2221,937,1140,2221,2221,2249,281,424,1901,978,281,2793,1436,2221,2221,2241,281,2221,2221,2660,281,2210,281,281,2681,2221,2221,2899,2221,281,281,344,1664,532,2705,2425,281,462,125,1855,281,2221,1701,2221,2233,2447,2221,1356,2923,281,281,2834,281,604,281,2221,2221,281,642,121,2221,281,2221,281,2221,2221,206,2514,397,99,545,2221,2221,281,1306,281,2221,281,281,2221,1682,739,1828,1770,281,2221,281,2221,2671,2104,2221,2221,1550,2221,1148,2678,281,2691,281,281,2221,281,281,2221,281,2938,289,1357,1009,2607,958,212,2759,949,281,2221,2019,2221,281,2221,602,2728,2221,281,2641,2221,2985,1492,281,281,627,281,2350,2221,2221,38,2221,2221,2221,2221,281,1385,281,2221,577,2895,2619,299,291,2456,281,2902,1554,249,281,2599,2698,1296,2221,2221,281,281,655,281,2221,2049,1629,2038,1739,2221,2221,987,762,2221,1473,2749,2221,281,1597,281,281,1873,281,2937,1795,281,2221,2886,2221,1599,281,2417,2990,2221,2221,1718,281,281,1978,281,5,2676,1849,701,2067,2406,281,2221,2221,2221,2439,2282,2221,2952,2221,1544,2221,2221,1349,281,864,2221,281,2221,281,1758,2221,1565,281,2078,281,2221,281,2221,1077,281,281,281,380,114,200,2843,1227,1752,748,2221,1719,2221,281,2163,2221,1477,2380,1900,446,281,226,281,2546,281,219,2368,2285,23,789,1631,2488,1375,711,1316,2177,281,696,1076,2221,875,1002,1224,2221,281,281,281,2221,1145,2221,281,244,843,281,281,2221,569,2221,281,427,2119,2160,281,1907,2221,2221,1418,180,2370,1010,746,2221,1034,2693,281,2789,281,909,1609,281,1093,281,760,2898,281,281,281,2371,2221,2221,943,2627,1297,307,1179,281,1589,2221,738,2221,1732,659,2221,281,2221,2634,281,2221,1399,1499,281,1930,281,609,1371,2221,2784,281,2541,281,891,2114,2192,281,1522,281,281,1775,2328,2221,1583,503,2221,281,281,281,1783,281,2221,2174,281,2890,281,281,2221,2221,2702,2221,2221,2870,281,1541,2292,138,2221,2221,2221,2221,281,304,2112,590,1721,2221,2221,2221,281,281,2958,281,694,281,202,281,2221,1159,2221,2756,281,1424,1438,504,281,2221,2882,71,184,281,281,660,1932,230,281,2732,863,2357,1425,865,2221,920,2221,281,2805,281,2221,281,1908,281,2203,2580,2221,2221,1725,281,2211,2056,281,281,281,2221,2221,281,281,2466,285,281,2290,2221,281,2221,42,265,2221,102,2221,24,1084,281,2364,300,2221,281,281,2221,281,2221,2221,2221,2221,2794,281,1161,2221,2918,2221,2526,492,2775,35,252,887,2221,2405,2486,2221,1298,281,281,145,2084,2946,2221,2354,81,872,382,2356,1615,281,2221,281,1733,281,2221,1946,2981,281,2221,981,2044,217,2221,2221,281,1852,281,1333,2956,1319,2221,2221,14,281,2352,1840,634,2271,1240,2889,1422,1048,2131,2861,281,1137,2221,1531,2496,1630,2221,1025,2221,281,690,281,1990,280,281,2697,2640,281,242,2221,2221,49,2221,908,644,2525,2221,2221,2221,2221,743,158,2221,392,2262,2633,473,1410,281,2221,281,281,281,1461,2221,1660,2221,2642,1940,2221,281,69,2221,1363,2221,768,2077,2221,2221,281,2221,281,2644,281,2221,897,236,796,1727,281,2935,281,2221,2717,2221,890,2322,1169,1035,388,1287,922,2221,806,1969,635,281,281,277,2342,166,2097,281,281,281,1567,2221,255,281,2221,2118,844,1538,1959,281,349,2221,281,281,281,281,1130,1652,1466,281,1793,2221,281,2469,2221,2221,281,2221,2186,110,2221,2221,281,2221,288,144,2221,281,2221,1744,1995,2221,281,2714,1950,2993,1773,67,281,2007,2221,995,351,2454,1941,281,281,719,559,2221,2787,2221,1736,2221,281,2221,2221,2916,1153,1884,2221,160,2225,237,1516,281,281,2221,281,2221,2221,281,2928,2221,281,881,281,281,281,281,1621,2221,2221,2221,731,21,2221,2822,994,281,2221,281,1308,281,352,2221,2835,281,53,281,281,2945,281,2325,281,2221,281,1395,556,2140,2221,281,2221,2072,2221,1340,2221,281,2221,281,1939,2221,281,767,2221,281,281,2966,815,2221,147,2221,187,281,281,281,495,2221,281,281,2471,2221,1417,290,1024,2558,281,1327,2743,2103,281,1626,2561,1582,1612,2221,281,2032,1044,2221,2221,238,281,1362,1743,2767,2221,2221,2240,2221,2221,281,281,284,2221,1215,1267,2096,2221,281,2158,281,695,2289,234,1839,281,2221,2221,169,2998,281,2221,318,2221,2221,281,2221,281,281,281,2221,281,281,647,281,281,1650,281,281,1071,2221,281,1407,474,2221,281,64,2221,281,281,207,1803,281,281,281,2722,2221,281,2221,2355,2487,281,842,281,1114,2221,2221,2597,1393,62,281,2221,2562,882,679,2221,2221,662,281,281,281,281,2221,2221,281,281,2221,281,1107,2169,8,2904,1994,1075,2221,916,2914,519,867,2221,2221,281,2654,281,281,281,2221,488,333,2221,281,281,2221,281,108,281,403,281,2221,803,1384,2221,2221,1129,2221,281,2685,2137,1928,2308,1796,281,906,281,2221,281,430,1568,2221,2221,1566,281,700,281,2221,932,2221,218,2221,2221,383,2221,2221,281,348,2221,1042,1214,1234,2408,689,1132,2221,2221,281,631,13,281,281,1480,2664,2221,2253,2221,2768,2221,2363,281,2221,2059,1638,461,281,1569,2100,2348,889,752,2221,1112,2614,281,1670,2221,80,2381,2492,2221,2528,2221,294,1458,2221,2221,1921,281,1491,781,1669,2221,1314,2221,2679,851,2669,118,281,478,2527,281,281,2221,2221,2221,1203,2221,1938,2221,2221,2221,2221,756,2760,1947,1192,1007,2655,2221,2221,2200,281,2027,281,415,2265,1923,2006,1366,2431,1262,1883,938,281,2221,439,1763,281,2464,2178,2830,281,564,1013,281,1948,698,260,459,2195,281,1496,2463,1529,281,2470,1601,281,790,2221,281,2978,2221,281,2407,2221,448,2221,281,2221,1,2221,2747,1742,2215,2495,281,281,2600,2221,281,1432,2221,2011,2317,281,281,281,831,2391,2964,281,1504,281,2279,2221,2221,2763,1668,2221,281,281,804,651,2221,2221,2434,2221,1920,1674,1714,281,312,2502,281,2808,281,2221,1619,281,2221,336,2884,1110,281,2221,1842,2221,1885,281,1337,2221,251,2221,2221,704,2221,2610,281,281,1595,281,2221,2409,2556,1138,2132,266,2221,281,898,281,2668,1087,2221,281,2221,281,1459,281,2228,281,281,2499,2221,281,1158,813,2929,2476,2221,2221,1171,1603,281,76,2221,1367,2221,686,271,2050,281,273,281,2221,281,2221,281,2221,2221,281,141,281,925,281,2221,2864,566,281,2221,2221,281,281,1014,1731,281,1151,2221,2548,2859,281,2221,1863,281,193,2362,2221,281,310,2221,2221,281,2415,183,1181,140,1730,281,1983,1405,2156,2465,281,281,281,2533,281,1147,1339,281,1396,595,2670,2221,1530,281,1850,2221,426,449,2720,281,281,281,1241,2468,281,2221,281,2838,1665,281,2684,2659,2420,2729,281,1239,2612,2250,281,2221,281,2221,1683,895,2221,281,2221,2221,2221,1991,281,281,1081,1435,2008,135,2658,281,2221,2221,775,281,1305,926,1082,281,281,1341,2073,2221,281,2973,1555,2221,2374,2221,1412,2221,2769,1209,83,248,281,2221,1613,2221,413,1465,1681,2989,281,281,1747,692,764,406,364,1500,281,2443,281,2906,1699,281,860,1917,281,2826,1576,281,2221,606,281,2221,2221,281,2297,281,2221,591,2936,2221,2221,2221,1905,1857,2221,1281,1302,281,2764,1372,2450,2983,1006,281,2781,747,1764,179,1139,2221,2221,281,281,281,2221,2221,281,2999,281,1501,281,613,514,1886,1047,281,2438,1819,1015,744,2803,225,2221,2221,1512,281,2074,107,2107,281,2801,281,1109,1616,1455,2221,2221,350,2221,2221,1312,281,281,1724,109,1655,2221,281,2852,2221,2221,281,2221,2221,1174,2221,281,2309,32,955,528,2221,1264,2437,2735,281,2221,281,521,281,281,2221,2745,281,691,2440,2221,2221,2432,2221,888,281,2221,2221,281,1067,498,506,281,2961,2221,1361,195,2221,281,708,2221,2187,281,706,2031,1642,2892,281,281,152,281,2221,944,1352,555,2221,2411,2221,281,281,2221,2221,1547,1318,2258,281,281,2750,1954,222,2221,281,281,2221,281,603,638,281,2221,2221,124,2045,1772,2824,281,281,2221,2319,2428,1280,281,2221,281,281,281,281,2221,1173,2657,1023,1889,2221,281,2221,151,2221,2221,281,283,281,663,281,142,2221,1713,2221,74,2842,2267,2221,253,281,281,1754,281,209,281,892,302,1820,188,281,1787,281,1005,2221,2194,954,2221,2221,2221,259,2221,2758,571,2221,1343,281,405,827,281,2221,2816,281,1167,281,2221,1482,2221,2221,281,941,2090,281,2545,2159,1294,1188,2221,1481,2221,2565,2221,393,2221,1552,2536,281,2221,2221,2549,2603,2293,2221,331,281,2221,1317,735,2221,281,358,2095,2949,281,2894,281,1150,2719,281,2969,281,1440,281,2221,1608,2221,2326,2283,281,2687,281,1196,2069,1212,2221,281,281,18,563,1792,2733,2221,2934,281,2221,281,2230,2111,2221,281,1064,533,1981,720,281,2221,2164,1056,2419,2960,2221,2036,2221,2221,2346,2375,2221,2401,2221,281,2106,2221,1083,716,281,2807,257,2060,1912,2221,2221,2221,2221,379,178,2925,2221,2221,745,78,703,458,1666,281,2284,1315,2041,281,2221,1383,1856,725,935,281,1640,281,2116,2221,2221,281,2221,281,2221,960,1029,2247,2221,2221,1187,1236,2221,423,2280,360,2315,2221,281,281,281,2221,802,281,2221,281,1445,281,2221,281,281,2221,2092,281,2221,1100,281,281,507,2221,281,2221,2797,515,2221,189,2221,281,120,281,1344,203,2221,2221,2221,1781,2243,2221,2221,2221,1862,2221,2221,56,2221,281,2772,57,281,2221,1478,1557,2683,2221,190,2661,281,2690,2221,323,281,2221,470,281,281,2221,1926,2272,422,372,2221,191,2221,2221,1628,281,281,281,2126,2221,150,400,281,47,281,1738,728,2616,281,2221,281,2221,313,2066,2221,281,2221,1162,2868,281,2618,1859,2221,2221,281,281,2908,2221,281,657,2221,2517,2221,281,281,2221,281,281,281,2221,1118,2025,281,2221,1096,2001,281,1386,1672,1876,2221,281,2221,2490,2221,1045,2221,281,2268,281,1980,879,733,281,39,106,281,1765,1332,1680,2951,2221,2221,281,1320,2221,281,1702,281,281,750,281,2094,560,281,281,1021,2214,615,269,2335,2221,418,281,2701,989,632,1152,281,346,2221,1063,2579,1054,281,2963,2221,2221,281,823,1801,2221,2221,2221,2563,2221,2221,1767,2221,2221,2221,850,374,1253,2221,1698,1284,1488,2845,1053,1894,923,1080,1168,281,2573,281,281,930,1755,2221,2221,281,281,826,2221,1326,2221,281,1061,2221,2221,2221,2910,1805,2221,1525,281,281,281,576,281,721,2819,1846,281,2221,1899,2850,2221,1279,281,652,2399,281,795,2221,2221,281,1709,874,2623,2221,384,281,1106,1999,342,2221,2221,654,281,2221,281,2221,1575,281,2102,2221,1321,2221,1956,281,281,2221,1804,281,2332,1097,1771,281,281,2741,2221,281,2091,1841,2221,281,1276,281,281,281,1311,2221,1373,54,17,2221,281,2221,594,281,2221,914,281,278,281,2847,281,2221,646,2197,281,2221,281,281,281,233,281,2221,2221,2287,2221,2221,2877,100,2581,2221,2798,1156,281,2221,2221,281,2039,2261,281,2221,2467,281,281,164,1059,441,2369,281,245,281,2586,2221,2926,2221,2221,111,2221,281,281,281,2836,2221,838,1838,281,2403,281,2221,1123,281,1535,885,250,2157,2048,2204,2221,1936,2221,281,281,1079,2221,281,598,2301,220,281,2221,60,770,281,1462,281,1149,2221,281,1622,2312,1791,2221,2221,2221,2221,281,281,1711,281,281,946,281,601,1266,2221,281,611,281,281,1351,157,2512,1268,1562,2221,2221}

    2221

    281

    Returns: 475110144


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: