View on GitHub

Interface Master

Programming Tutorials for Software Engineers

Comparision of Sorting Algorithms

This table summarizes the performance of different algorithms as measured by executing them on a NodeJS server. These results are in no way exhaustive as only one type of data was tested, however they do provide a glimpse at how each algorithm performs.

All tests were ran on the same list of 10000 integers. First on a list of randomly sorted data, then worst case where all the items are sorted but in reverse order, then the best case where all the items are sorted in the correct order. The values shown are - time the script took to run in milliseconds, the number of comparisons the algorithm performed, and the number of swaps it performed.

Algorithm Time (ms) Comparisons Swaps
Bubble (random) 300 100k 25k
Bubble (reversed) 193 100k 50k
Bubble (sorted) 1 10k 0
       
Selection (random) 144 50k 10k
Selection (reversed) 149 50k 7k
Selection (sorted) 142 50k 0
       
Insertion (random) 59 25k 25k
Insertion (reversed) 84 50k 50k
Insertion (sorted) 1 10k 0
       
Quick (random) 26 191k 116k
Quick (reversed) 15 166k 99k
Quick (sorted) 8 161k 0
       
Merge (random) 13   121k
Merge (reversed) 9   69k
Merge (sorted) 9   75k

Observations

From the above data we can see how each algorithm performs at sorting 10k integers in a NodeJS server. Of course the performance will be different depending on the server hardware, and different still when executed in a browser, and different still when executed in different languages, but it should provide a general idea of how the performance of each algorithm compares against the others.

As noted at the beginning of this module - the Bubble Sort is a terrible algorithm, but it’s extremely simple, fast to write and implement, consumes hardly any additional memory, and might be okay as a quick and dirty solution for prototyping or quickly sorting small datasets.

The Selection Sort and Insertion Sort algorithms are very similar to the Bubble Sort in that they consume very little additional memory, and are fairly slow to execute, however they both reduce the number of operations as compared to the Bubble Sort, which means faster execution times, and less energy consumption. These are important factors to remember, especially when running our code in cloud resources that bill by the amount of compute resources used.

Truly understanding why the Insertion Sort is so much more performant than the Bubble Sort or Selection Sort is a key takeaway from this module. The code didn’t change significantly (as it does with Quick Sort or Merge Sort), but the approach to eliminating unnecessary comparisons and swaps is what makes this algorithm so much better in practice, even though in theory the Big O for Insertion Sort is the same as for the Bubble Sort.

When we begin looking at Quick Sort and Merge Sort we begin to see a whole different pattern emerge. This pattern consumes additional memory in order to temporarily place unsorted items somewhere. With previous algorithms you can imagine having to sort a deck of cards while holding them in your hands. You can see how swapping two cards doesn’t require significant additional resources - perhaps palming the card being moved, or temporarily placing it at the front of the stack. These approaches are excellent when we don’t have additional memory to work with, and need to be able to sort our data in place.

With Quick Sort and Merge Sort you can imagine having a large desk in front of you where you can place cards as you go through the unsorted pile. You can begin sorting them as you go, and then merging the sorted piles as you complete the process. This approach allows you to perform the sorting much faster, but does require that you have access to additional storage space (desk, or disk, or RAM).

There are other algorithms that build upon these basic ones by adding small improvements to the seeking and swapping logic - such as finding sequences of sorted elements that can be skipped when swapping unsorted items, or eliminating the need to swap items if they are known to be in the right order.

There are also completely different algorithms that use unique approaches to break the data into segments, or combine several basic algorithms to utilize the strength of each - for example breaking the data into buckets (similar to Quick Sort or Merge Sort), and then using an Insertion Sort to sort the buckets themselves, and then using a Merge Sort to combine them.

I encourage you to expore all the different algorithms and evaluate their strenghts and weaknesses - whether it’s code size, memory consumption, or compute use. By reading about the approach and recreating it in your preferred language you will gain a better appreciation for algorithms, and hopefully think about this tutorial next time you execute data.sort().

Data

This is the random list of 10k integers that was used for testing the algorithms to produce the results in the table above:

[212,69,940,36,196,966,878,94,121,113,62,755,930,817,900,463,645,805,946,334,655,212,676,793,738,554,430,406,623,866,359,856,612,707,565,419,557,653,914,942,874,310,109,643,38,171,251,745,197,741,535,708,79,181,480,33,920,144,103,943,533,426,641,800,156,417,930,982,635,776,6,220,555,404,434,356,328,400,831,679,472,679,106,205,161,165,506,395,958,150,211,372,807,982,666,350,541,872,991,723,666,548,101,623,605,96,890,575,906,68,752,371,476,748,290,605,416,619,996,705,190,358,145,296,498,600,541,92,957,90,603,334,132,274,26,873,40,578,168,508,754,810,547,635,119,701,510,558,373,478,438,723,376,728,190,914,78,363,45,593,393,436,170,873,762,532,945,554,166,756,959,226,446,703,971,808,124,609,953,644,333,287,702,876,554,767,444,888,708,661,370,460,655,532,916,743,818,607,82,348,217,115,568,160,243,571,494,430,335,323,66,923,526,792,574,617,906,45,110,506,596,479,936,952,839,166,827,44,974,645,80,888,629,175,777,645,941,746,369,44,653,897,811,677,819,433,8,651,245,465,338,795,171,185,353,865,1,20,97,243,673,256,254,235,524,823,64,256,401,724,545,27,992,510,340,992,204,407,446,914,448,172,56,651,878,479,128,509,983,317,410,319,782,243,966,723,796,401,252,370,890,187,10,359,547,572,652,39,19,409,4,645,901,887,372,390,11,321,580,225,281,779,183,352,203,213,716,645,120,774,694,671,655,832,148,293,100,534,603,981,200,988,897,219,11,21,871,93,907,619,769,980,505,864,336,221,351,427,706,568,738,191,464,123,773,322,319,533,785,497,418,551,307,879,641,873,420,570,375,669,607,160,852,724,400,55,316,968,613,371,299,359,103,757,506,511,922,229,444,346,289,595,670,425,495,280,879,966,391,739,222,791,498,839,248,253,601,872,499,655,65,576,701,532,117,358,980,890,953,432,382,499,351,868,654,805,857,447,369,32,825,145,821,21,272,891,744,230,964,708,732,604,323,720,441,313,664,240,802,815,32,986,365,980,529,914,136,592,474,650,101,841,723,617,223,363,377,817,705,930,649,119,683,337,691,315,712,310,460,723,927,168,694,743,155,446,426,925,0,334,314,208,92,157,245,609,835,664,195,894,118,762,187,712,765,987,69,495,643,700,973,538,907,21,334,5,53,481,482,953,484,640,994,459,803,477,559,188,728,851,813,214,596,129,877,614,536,449,118,777,793,449,462,232,858,296,350,97,931,77,937,861,834,709,278,158,33,438,700,629,84,758,375,543,741,544,336,959,928,223,452,36,419,906,596,668,723,344,784,402,836,949,714,768,707,84,954,654,710,719,406,623,417,469,313,511,646,598,630,357,550,868,357,873,700,172,870,574,428,872,656,891,427,149,645,613,227,594,801,626,206,450,838,326,177,671,3,576,969,83,529,674,728,180,46,647,78,99,391,501,829,713,344,735,612,736,516,419,895,829,834,519,617,42,140,478,360,999,809,434,553,899,116,863,275,24,542,533,321,512,927,735,723,657,395,831,258,784,443,513,363,805,316,465,823,935,895,542,670,896,449,65,743,705,507,791,612,300,101,208,980,206,269,793,990,580,754,296,453,909,641,393,966,629,854,211,139,451,717,587,775,529,326,735,577,60,203,419,435,729,48,88,53,718,441,385,898,158,533,647,351,263,632,536,875,54,107,402,952,108,681,829,959,826,617,579,771,251,292,747,932,871,273,9,170,64,585,994,673,647,386,648,538,791,409,448,823,747,294,676,406,622,453,205,146,209,579,646,766,110,315,288,637,881,522,703,752,223,685,298,484,811,680,305,808,166,142,108,962,254,689,53,379,533,767,749,321,830,360,959,202,35,940,521,291,742,105,149,157,362,600,315,421,763,162,36,353,13,191,594,625,479,680,126,941,514,690,923,571,704,919,147,569,489,331,259,941,424,683,87,879,715,154,885,963,820,48,311,800,650,739,384,659,7,568,903,906,250,187,155,702,46,304,728,82,330,454,780,284,801,36,922,23,780,17,302,244,262,409,718,488,636,781,723,619,161,709,986,790,9,661,887,613,689,337,528,483,669,940,919,131,467,616,511,161,395,135,599,312,231,438,405,984,228,790,445,36,547,155,820,633,991,780,488,538,700,68,207,649,326,907,371,759,847,760,167,347,605,194,97,637,422,198,987,700,139,968,618,386,926,643,578,355,546,730,117,157,266,34,268,397,518,263,957,510,780,480,824,742,243,473,444,572,923,999,238,477,231,699,483,138,229,75,868,554,259,984,282,550,836,94,107,761,635,161,321,598,990,890,266,13,8,23,767,177,322,62,647,727,169,712,646,56,654,64,851,489,874,925,725,374,273,632,322,987,354,932,517,454,151,383,530,618,955,355,46,698,87,12,325,431,370,367,229,193,229,552,756,489,454,925,276,254,856,726,441,58,866,782,726,555,652,717,158,636,420,582,630,324,772,567,605,798,876,795,534,993,180,947,292,261,739,846,290,47,412,63,109,918,749,246,400,877,84,747,973,571,529,622,528,738,257,299,378,864,750,793,461,158,149,621,856,798,395,314,336,513,697,324,766,124,59,577,13,388,437,767,741,330,685,618,286,385,717,718,882,61,689,208,506,428,756,772,295,590,462,82,827,190,921,835,262,608,55,39,44,735,524,243,306,842,21,631,381,207,940,828,319,17,773,967,431,193,485,851,436,385,736,47,323,662,432,272,267,719,355,164,743,437,106,951,163,674,260,383,906,569,845,412,855,581,177,83,348,152,601,428,727,813,374,962,989,708,336,195,123,187,960,113,738,43,676,120,386,285,665,17,328,613,628,635,828,859,380,436,167,202,662,245,62,926,392,856,804,547,645,857,674,884,762,503,348,272,39,789,409,990,402,39,745,391,710,616,415,14,682,835,391,354,807,316,217,768,244,222,358,841,795,307,476,820,394,133,235,709,610,684,365,52,428,112,313,317,161,351,165,921,889,524,816,24,36,566,59,445,704,6,469,282,547,61,94,628,699,486,94,670,176,848,325,965,888,784,665,746,504,649,362,519,706,335,455,447,871,652,499,689,434,3,595,769,663,746,932,406,923,975,727,952,709,707,232,80,650,854,68,731,39,401,101,598,469,652,564,663,872,510,331,277,366,26,503,734,506,824,878,251,767,486,861,609,433,564,521,770,294,303,908,885,737,558,661,979,26,115,948,516,520,588,493,454,626,141,43,929,358,859,435,152,509,46,424,624,103,168,115,25,573,740,666,588,341,783,491,792,519,145,983,251,489,621,255,810,286,563,432,512,793,96,242,9,712,659,285,289,965,681,395,688,587,812,84,451,952,731,122,377,742,82,217,580,279,113,117,766,114,655,503,292,440,346,866,704,895,478,794,771,209,314,533,999,750,10,966,738,499,779,123,681,355,775,160,527,503,411,352,774,928,429,222,698,305,775,51,711,45,363,494,947,159,138,178,403,68,389,37,510,365,201,663,601,239,834,759,857,730,30,141,420,697,310,562,137,460,479,348,902,537,681,499,6,756,908,53,883,587,45,745,755,466,218,760,324,810,376,395,263,862,676,439,874,348,196,100,616,958,627,325,876,754,129,656,562,689,250,841,228,646,45,12,841,205,885,921,846,598,214,393,708,189,63,708,946,208,463,661,26,64,964,7,125,822,390,917,99,224,569,502,725,376,710,369,140,803,81,686,18,33,579,821,409,963,492,85,601,557,742,827,330,99,578,414,840,392,260,402,814,699,5,296,47,843,236,530,529,835,613,573,584,718,113,720,972,385,920,254,120,413,536,420,131,967,756,294,562,644,588,107,697,695,693,41,743,230,529,648,92,495,485,486,2,334,185,219,164,399,779,998,641,663,497,298,284,550,186,514,78,562,113,36,599,650,957,158,25,272,133,884,358,118,70,499,782,732,277,509,875,496,625,371,179,437,695,311,437,299,36,258,190,518,74,322,109,790,594,757,585,997,472,517,528,534,179,936,467,855,61,425,781,340,957,116,961,289,636,601,557,843,101,620,69,231,240,972,12,490,630,971,909,210,28,558,16,534,474,603,286,965,676,905,20,372,691,174,293,591,432,320,122,664,255,45,614,467,336,241,374,768,178,240,836,573,305,32,514,718,73,788,986,958,654,138,726,957,741,376,430,787,709,909,441,246,497,134,814,319,609,921,187,295,278,82,215,837,763,980,451,476,522,497,615,73,216,32,424,380,573,430,331,122,244,885,355,897,669,988,364,220,307,870,672,935,265,843,108,458,403,152,819,781,478,630,476,260,799,583,165,58,154,619,912,231,196,361,80,447,700,199,789,291,327,95,450,249,619,58,986,589,494,642,750,416,543,340,467,35,28,283,411,396,918,209,281,152,358,870,594,563,106,580,981,861,932,471,791,8,825,160,152,556,283,898,148,483,769,24,584,149,473,502,480,10,952,323,413,535,36,939,438,296,476,754,25,610,853,465,296,141,837,582,124,996,904,759,872,520,906,305,487,761,990,627,105,949,867,635,442,57,733,444,363,474,65,268,838,482,814,921,825,896,47,856,768,606,782,294,730,499,501,657,878,567,179,300,153,294,666,944,750,127,224,576,11,710,306,47,797,719,225,746,420,60,694,109,933,596,514,401,614,290,589,327,908,807,52,568,413,272,767,846,808,242,780,405,962,554,954,613,294,133,793,939,353,856,825,245,35,62,430,588,786,289,832,865,355,525,699,136,713,216,867,776,560,888,115,267,662,816,72,187,653,676,710,920,734,233,789,404,927,40,789,117,943,430,230,677,41,395,890,817,267,399,786,194,284,839,579,996,429,562,274,206,781,472,412,884,179,900,775,175,143,375,53,53,272,531,412,706,342,249,489,295,105,121,165,281,448,865,867,557,940,669,640,137,359,456,684,131,247,229,28,508,427,283,200,127,451,256,474,187,95,460,449,918,188,561,913,816,825,155,37,4,895,791,33,878,193,980,774,910,536,694,586,670,921,70,16,290,885,128,557,977,778,355,400,277,416,205,984,81,149,369,662,741,186,557,285,552,770,720,658,452,629,611,519,87,694,914,516,487,490,258,90,917,804,262,403,734,325,998,243,437,763,386,531,858,889,997,586,14,89,300,993,393,681,216,750,552,462,656,529,519,405,783,837,188,912,294,749,972,52,947,551,90,392,994,65,543,637,355,681,350,136,1,796,799,541,353,442,200,229,3,62,558,228,851,297,823,155,37,223,524,289,699,66,217,701,681,567,411,293,731,650,339,641,842,225,201,808,683,455,223,10,663,704,949,776,180,652,659,360,137,31,95,711,943,929,939,528,656,815,832,838,738,765,933,472,475,770,151,4,663,750,708,402,94,205,235,566,679,109,979,967,85,478,962,679,574,593,527,768,962,945,896,854,721,779,827,861,168,779,745,112,754,701,133,400,501,439,742,146,316,526,642,567,883,976,721,919,20,880,284,649,734,619,95,669,726,38,702,238,806,807,829,946,312,579,203,728,84,891,298,773,877,789,763,214,731,135,741,126,652,734,339,84,151,456,807,804,527,879,603,725,693,99,693,817,268,377,131,418,516,571,868,366,832,223,414,395,285,205,943,382,24,252,926,689,213,914,702,247,645,197,155,90,604,776,26,396,916,226,364,327,957,963,496,367,145,291,257,750,312,286,360,736,570,608,452,144,956,969,289,902,133,756,563,420,925,384,417,277,722,258,998,100,994,692,667,514,190,788,168,517,445,302,684,333,322,340,740,984,375,914,453,194,787,350,540,819,692,517,762,736,524,727,576,809,648,422,138,461,187,792,178,194,626,220,302,923,362,36,692,494,915,20,696,576,353,583,795,430,264,205,660,520,813,548,558,832,984,975,441,926,388,624,566,455,235,866,848,759,320,457,825,843,311,594,835,415,327,824,478,287,717,348,339,88,160,250,252,330,272,183,251,780,450,392,305,1,914,183,147,423,345,543,515,323,31,654,404,453,53,892,38,385,579,881,84,265,459,201,912,606,779,868,98,405,17,509,304,849,619,448,425,213,327,646,415,631,772,943,9,453,837,850,455,21,206,499,108,144,74,492,500,951,54,891,699,630,556,236,240,65,387,562,3,288,239,464,819,553,860,924,288,918,589,916,326,245,930,515,121,336,909,211,392,221,751,887,659,892,169,950,473,36,958,88,76,746,314,16,987,605,309,895,262,941,198,263,228,173,923,644,705,474,265,754,840,951,599,32,883,489,409,328,70,401,99,167,131,121,7,267,956,182,762,523,455,96,139,455,661,371,157,45,844,463,343,439,576,147,964,825,21,805,949,582,658,399,617,173,390,100,19,625,210,603,230,728,164,261,922,514,142,964,139,449,461,966,347,681,409,83,372,169,788,83,59,557,831,2,992,330,46,35,451,146,237,731,71,900,72,523,990,704,462,181,877,542,814,330,611,849,144,634,767,55,277,73,259,780,309,736,930,187,938,441,545,450,309,666,959,20,663,793,109,73,218,867,361,679,441,508,203,167,495,586,14,894,746,842,238,216,552,764,560,178,82,369,310,610,390,598,459,946,387,142,990,103,8,5,90,409,569,618,77,899,785,159,339,24,926,808,953,325,404,956,146,78,85,260,702,510,505,198,234,64,190,33,904,596,837,970,961,817,795,36,983,381,455,51,236,193,737,511,317,209,362,235,175,342,13,419,122,17,854,523,433,201,655,869,363,78,529,686,921,250,801,91,947,780,23,695,358,906,637,19,769,400,716,279,331,143,446,197,138,871,567,84,143,15,27,562,716,986,437,359,890,930,46,925,544,945,374,844,282,284,438,225,731,506,750,527,61,391,44,522,540,486,382,273,626,901,8,517,841,755,821,75,601,72,303,153,682,676,324,501,294,814,646,52,48,111,117,364,830,835,766,966,384,526,788,985,410,96,712,30,239,999,196,100,201,824,49,757,804,633,48,268,58,336,175,42,792,126,236,347,413,688,664,409,402,625,768,545,64,718,206,365,370,45,982,460,211,241,107,213,926,781,987,458,210,35,642,301,861,720,514,813,828,677,771,56,396,582,290,69,797,135,352,476,597,515,478,291,880,325,782,324,60,749,250,826,229,841,952,266,248,460,890,272,21,454,17,948,941,589,844,44,734,754,39,580,633,683,984,255,379,141,690,910,973,340,988,389,277,760,56,272,873,287,171,859,34,389,248,806,323,966,557,483,487,269,908,283,341,86,622,576,471,365,534,10,918,7,536,11,460,137,561,118,134,966,254,599,645,184,841,213,23,340,425,634,44,570,846,505,342,500,936,583,938,608,305,700,988,908,286,911,885,193,562,595,920,425,800,391,636,801,502,876,41,533,18,256,725,739,70,658,333,183,577,227,533,680,210,26,945,945,498,613,768,733,863,180,115,67,251,697,572,249,970,542,42,593,121,62,788,935,508,466,101,333,852,464,668,146,775,102,21,489,327,258,518,972,921,496,216,752,56,616,630,471,668,202,66,787,35,193,642,305,394,892,697,307,636,921,69,55,435,569,755,466,379,369,329,234,182,846,47,523,686,196,939,890,112,674,796,177,957,320,681,404,248,123,153,949,300,181,211,633,58,243,926,931,552,480,796,402,143,987,562,343,999,32,427,448,387,973,430,779,957,627,150,2,188,228,817,470,851,866,383,410,521,575,995,371,288,21,898,634,74,403,530,640,127,786,953,678,941,155,77,463,449,290,815,177,419,296,637,442,893,220,65,595,495,673,682,451,249,491,116,495,453,128,453,296,164,882,219,980,848,419,413,485,94,525,720,184,738,75,746,306,950,747,256,638,589,50,367,133,398,335,523,517,538,846,934,211,944,6,705,507,722,278,282,121,828,363,987,892,160,92,635,455,472,261,213,106,763,982,952,842,463,139,38,422,776,287,889,152,75,461,906,702,140,265,302,856,435,531,340,860,503,235,887,686,796,914,79,949,196,96,839,616,881,66,310,555,33,624,878,409,382,963,690,486,761,690,37,365,385,991,818,193,424,27,393,628,467,164,14,900,658,431,217,765,506,437,559,406,722,82,91,864,508,286,476,366,496,551,322,296,123,812,748,886,87,784,936,770,852,411,263,729,207,143,319,249,212,430,213,975,887,370,57,456,706,556,558,64,122,538,420,831,393,821,611,249,274,981,278,878,718,737,457,393,734,940,772,701,894,832,806,665,687,206,593,925,915,68,631,406,820,717,838,461,473,468,917,660,178,713,26,217,203,821,309,769,331,392,525,963,777,493,132,528,85,584,397,576,163,392,178,957,913,662,227,554,531,515,434,233,682,231,201,606,775,767,652,219,288,498,655,152,440,216,4,280,755,282,101,693,433,697,945,226,241,887,128,865,915,140,837,142,438,186,889,738,938,370,853,520,70,363,302,720,964,368,367,467,568,216,395,162,847,752,982,505,864,138,508,735,544,431,649,429,911,708,824,262,793,487,484,733,969,563,523,665,466,45,692,908,873,184,564,167,475,587,199,641,981,814,664,523,784,288,770,537,623,307,492,818,233,581,280,902,99,284,478,643,433,547,399,156,510,116,456,45,820,186,28,278,231,144,819,871,49,967,494,855,518,217,309,902,574,251,953,116,181,870,267,237,358,919,127,898,364,602,688,220,648,216,159,129,467,525,86,674,449,568,613,733,845,471,816,294,875,252,474,399,500,619,333,953,29,442,628,363,255,643,697,967,110,989,624,736,502,973,961,756,78,906,91,783,265,42,695,799,328,262,481,138,420,673,925,174,334,802,489,567,721,29,157,702,275,261,641,251,980,84,317,715,596,846,668,418,54,153,820,59,686,46,474,421,702,115,421,137,738,542,960,716,457,731,576,548,232,763,69,498,491,950,758,600,638,485,182,884,312,778,36,745,932,448,40,690,984,555,295,330,165,933,630,411,833,73,480,889,44,443,785,482,663,155,792,269,18,428,140,884,431,124,730,764,214,464,505,362,365,217,976,124,619,242,792,479,532,93,96,874,600,614,600,765,922,893,177,896,222,178,531,578,127,430,605,367,791,39,953,908,941,830,109,929,490,35,745,71,44,315,844,653,373,653,458,514,581,361,221,441,0,847,721,762,575,482,657,557,414,853,54,829,242,223,568,344,112,634,567,677,695,8,961,978,963,280,103,373,582,720,588,244,61,116,9,53,278,377,748,292,278,284,158,598,294,870,80,545,116,205,968,652,803,929,273,922,308,990,350,623,153,463,614,49,916,835,654,26,100,156,564,226,151,149,959,403,632,432,336,869,243,172,835,989,141,508,285,842,810,817,506,215,515,863,980,24,120,131,652,195,341,605,104,169,717,347,439,696,178,791,399,622,869,475,494,810,456,687,33,772,253,134,20,151,201,684,426,505,119,152,572,500,382,607,509,422,591,904,649,536,32,73,543,245,498,483,233,328,521,681,671,882,279,149,115,964,907,100,778,223,320,107,377,910,620,983,526,627,645,308,338,764,441,625,558,572,728,375,361,71,660,710,920,804,840,886,689,793,310,9,465,411,802,594,105,332,997,732,104,655,796,949,335,487,606,205,944,913,613,38,272,225,66,441,29,693,888,778,894,332,386,67,952,715,311,554,331,504,494,150,173,439,571,32,130,147,953,89,961,626,91,675,111,965,27,800,383,547,359,395,394,850,684,699,499,413,215,860,849,848,642,137,296,192,338,460,226,689,295,153,850,425,61,804,594,617,789,978,828,513,137,762,738,535,4,506,69,952,807,848,330,891,658,86,25,836,879,459,839,282,148,361,762,37,947,308,523,706,269,445,873,490,989,522,465,64,959,665,992,706,26,534,493,776,463,592,914,37,60,333,599,12,87,246,136,264,518,652,38,474,534,493,288,405,767,354,381,71,217,201,677,807,222,917,467,615,35,16,325,94,892,3,428,102,436,415,204,980,464,559,804,974,819,94,627,363,535,964,319,219,150,749,741,182,851,418,928,345,72,322,475,377,853,650,938,23,305,202,942,277,156,709,289,548,785,788,799,576,431,203,270,914,749,205,701,30,451,935,371,453,984,705,742,14,209,80,534,869,586,734,14,859,864,300,430,190,599,506,150,236,303,915,430,318,44,55,259,848,925,353,573,693,503,541,363,322,441,564,184,422,471,769,708,204,937,324,148,452,38,429,449,628,397,889,376,416,838,561,157,892,74,702,427,401,161,355,558,679,597,705,785,689,800,956,687,356,764,458,266,277,604,598,708,914,727,680,132,463,36,889,961,508,304,980,130,208,786,489,772,953,649,417,911,48,600,179,991,549,31,105,758,19,159,984,953,571,686,914,593,918,949,918,336,350,19,599,427,83,81,772,623,320,514,334,477,332,60,275,764,701,163,714,253,593,429,758,972,647,375,587,389,551,976,360,467,408,146,602,551,56,223,597,649,315,253,399,87,861,706,381,669,437,52,933,306,705,752,765,478,801,672,153,287,713,10,657,948,14,231,342,849,436,427,552,50,13,926,869,257,565,935,527,369,847,187,527,273,153,81,603,310,345,432,657,690,361,364,668,833,380,994,564,269,542,138,618,967,201,365,933,682,448,563,563,96,314,944,246,618,865,468,352,91,258,780,574,521,987,960,460,839,549,670,920,183,299,138,377,273,614,309,886,739,126,701,709,476,789,828,561,183,590,484,443,828,79,887,795,636,435,853,446,157,43,947,378,745,69,89,641,716,791,685,455,347,554,174,95,202,618,553,170,727,166,205,154,675,228,842,104,810,187,802,50,785,779,954,879,610,298,553,123,528,155,706,247,369,557,731,753,468,545,451,89,392,744,427,489,252,185,492,770,555,386,550,763,726,928,664,182,886,776,425,805,435,1,808,413,104,568,18,196,344,716,232,225,635,641,906,647,647,626,247,922,683,274,50,404,108,768,796,653,345,279,235,909,728,124,67,926,462,157,225,695,303,411,155,110,980,921,76,514,758,320,861,830,278,97,550,986,898,126,201,900,435,691,545,682,53,117,805,58,222,152,935,895,209,150,898,335,269,359,707,588,780,557,657,653,263,696,431,198,177,558,334,798,521,948,540,812,610,544,303,353,466,744,65,750,693,729,607,85,169,745,704,778,711,562,370,93,272,497,663,969,979,125,369,950,805,612,624,522,707,240,799,697,577,219,422,464,29,969,503,806,826,911,921,725,700,623,369,192,943,589,33,819,691,871,580,132,230,577,565,368,608,176,894,488,228,311,443,459,179,410,19,156,492,963,229,463,651,581,779,651,935,115,922,921,505,287,730,257,376,842,447,326,222,280,830,559,278,974,748,438,421,948,645,27,699,158,930,270,941,748,387,610,443,417,563,470,61,658,754,706,53,845,911,393,573,144,459,611,970,583,450,635,171,688,146,798,176,664,589,254,244,773,658,403,689,442,736,685,845,46,561,426,499,811,107,848,72,357,664,739,554,366,366,440,346,236,572,455,646,389,296,773,765,911,809,424,482,356,834,979,224,369,179,191,130,894,22,183,527,486,552,664,385,539,587,558,290,878,270,198,174,347,31,758,150,236,403,230,18,975,648,625,600,878,76,52,186,574,109,185,908,39,540,718,883,970,143,239,726,903,201,160,325,511,883,686,6,385,149,491,445,911,50,951,118,680,822,733,375,219,871,465,753,713,563,817,969,560,915,747,298,484,868,643,580,364,805,745,710,774,358,609,36,982,787,528,986,98,464,69,843,189,732,566,591,336,811,498,810,758,216,792,366,95,981,739,505,423,968,391,343,250,584,829,189,805,317,488,321,27,936,49,320,954,907,526,911,470,379,873,746,800,43,144,758,7,142,510,824,113,346,85,523,359,249,60,108,130,453,591,264,510,75,489,467,859,177,709,220,617,958,986,515,799,759,788,827,327,719,854,914,500,157,69,841,556,373,253,389,623,575,9,984,909,667,926,432,798,935,981,202,742,919,920,467,551,931,400,56,776,518,169,810,717,244,137,802,579,5,512,856,842,822,68,272,779,273,670,587,430,799,149,278,958,285,254,301,310,579,322,884,839,171,107,79,230,101,26,722,887,680,580,881,335,797,154,380,123,274,91,235,448,291,56,622,516,701,541,62,725,678,709,754,466,520,986,485,917,408,702,942,581,610,262,224,371,849,735,502,483,852,727,774,922,9,251,17,424,161,813,136,131,188,716,413,787,326,981,371,695,769,130,613,646,825,439,738,301,495,432,952,568,268,809,45,5,16,59,202,967,321,842,416,678,214,813,29,248,595,98,418,964,414,986,416,657,744,101,758,372,838,733,812,893,933,623,743,670,345,700,817,711,101,86,497,397,366,416,326,80,106,795,249,556,343,772,366,424,269,999,34,906,391,853,960,590,577,521,753,414,746,470,223,678,914,743,877,482,118,573,268,941,254,892,799,18,620,264,875,843,682,54,824,207,841,989,597,485,594,604,324,585,664,942,834,859,761,507,933,342,24,867,833,422,9,440,610,433,575,424,80,467,771,511,849,592,358,424,95,994,50,543,562,694,559,971,367,469,861,320,671,829,800,65,567,30,265,373,208,485,377,230,147,721,503,86,94,184,491,781,859,789,173,895,212,311,960,905,539,678,764,382,363,304,248,508,250,281,590,380,772,672,213,765,606,658,337,513,513,383,17,795,747,892,848,269,654,233,694,200,738,881,792,702,360,949,728,899,208,688,756,882,748,368,853,775,470,44,225,473,601,925,627,848,328,865,754,900,581,802,408,385,971,238,554,785,626,751,652,877,904,643,87,102,314,391,820,295,680,829,251,872,830,936,804,92,864,510,444,322,891,750,494,161,69,611,3,649,436,919,80,218,24,444,575,987,117,555,15,317,181,890,181,265,780,155,565,741,773,663,935,473,67,958,956,192,201,480,282,591,338,773,508,372,383,81,971,888,548,797,959,793,59,113,146,740,963,737,381,552,785,681,884,209,140,293,994,143,477,479,747,859,163,524,807,849,631,846,238,318,814,589,152,709,439,237,315,365,0,68,562,824,599,129,604,848,140,234,609,653,519,322,192,236,848,383,683,723,407,884,467,426,341,211,74,231,424,118,836,510,356,503,708,607,202,428,82,796,518,237,144,742,181,585,934,451,849,269,500,76,586,669,807,632,99,431,659,740,464,192,595,303,228,916,60,613,216,363,675,187,141,835,731,947,754,884,243,477,153,36,409,56,818,459,991,522,853,234,371,602,439,447,103,150,667,407,34,229,172,763,412,679,761,302,448,727,252,555,211,940,142,90,292,207,338,310,815,120,973,874,952,781,135,619,261,831,884,958,392,183,733,109,584,339,773,993,16,351,694,543,700,862,704,756,799,522,38,205,122,371,949,50,337,853,0,481,705,88,249,225,915,729,698,611,766,83,265,623,881,327,756,870,633,941,512,316,937,484,893,107,456,636,113,524,746,72,425,66,464,620,815,271,866,914,988,610,849,625,994,796,622,582,364,874,110,445,675,350,53,903,407,505,757,310,494,71,856,342,992,939,610,307,576,311,309,140,360,571,848,90,657,632,884,779,683,967,922,422,268,203,540,229,8,310,148,985,382,126,612,430,181,172,613,340,156,828,946,796,436,610,771,339,47,572,17,985,791,913,282,947,78,732,494,175,333,868,681,62,301,637,795,152,398,295,123,842,76,972,58,681,41,881,187,138,511,228,372,320,644,101,806,579,844,688,54,287,704,133,830,874,893,50,470,301,172,665,697,459,347,915,224,322,767,274,260,140,344,678,319,790,196,388,498,471,149,930,122,331,177,483,676,393,643,910,570,493,750,411,811,965,450,901,644,423,67,38,469,855,883,413,923,203,669,518,671,752,185,940,210,280,692,408,254,373,401,96,851,66,175,464,303,949,473,392,0,938,81,807,132,794,790,850,227,640,997,30,984,869,521,194,302,256,925,338,131,291,835,965,499,692,419,535,986,998,569,679,52,958,223,257,970,783,944,850,430,763,160,943,687,177,30,689,920,754,277,393,542,543,415,829,402,290,444,809,734,772,452,24,211,273,137,474,553,598,537,625,341,474,41,805,360,425,849,273,621,205,133,257,700,15,885,151,16,172,664,976,419,638,658,349,647,686,290,650,297,745,290,634,513,307,754,866,161,37,63,257,957,940,755,979,653,136,872,710,685,28,794,322,798,751,335,713,376,761,686,166,606,144,487,974,911,195,259,691,30,653,271,835,192,283,479,648,337,288,490,918,517,487,868,65,694,499,740,391,694,645,351,46,971,188,935,539,412,217,689,905,102,174,499,50,225,199,391,459,448,894,359,589,848,587,287,87,179,32,192,566,85,73,180,646,675,818,179,430,672,654,639,635,240,785,606,626,126,395,729,34,614,664,37,970,206,996,770,419,98,386,746,641,763,734,983,146,843,391,652,405,5,799,553,953,128,482,944,436,113,653,673,622,500,230,556,773,405,586,674,226,248,719,998,207,42,233,57,583,951,834,593,740,423,137,344,662,888,385,525,71,402,288,383,371,930,577,184,866,314,153,357,185,148,685,56,931,134,648,759,519,317,934,615,703,528,538,373,147,385,677,756,221,386,342,431,179,919,963,18,247,425,412,312,192,242,560,543,582,869,77,65,311,559,341,438,177,211,310,925,987,852,514,50,389,989,484,769,122,378,599,463,821,160,877,46,159,586,446,341,703,158,472,240,990,401,562,79,750,496,960,933,183,189,821,410,543,510,319,292,276,30,545,923,943,36,34,97,797,782,973,850,522,942,445,142,107,385,998,415,733,236,329,714,599,607,976,526,862,270,97,697,73,879,346,57,207,180,642,423,323,55,409,712,991,893,490,678,963,159,266,829,595,49,16,799,418,6,480,594,704,427,555,399,413,793,942,897,710,467,470,602,722,238,958,856,257,648,689,783,737,456,531,238,430,191,395,845,497,81,304,266,250,949,404,137,762,699,433,556,159,371,433,884,700,517,296,216,327,401,520,22,388,504,172,105,952,891,455,220,346,220,410,141,540,29,717,308,307,817,2,276,992,406,206,432,679,224,322,603,741,70,286,948,662,873,245,724,292,698,504,722,333,636,687,721,838,104,462,70,775,60,557,35,687,931,319,475,970,60,824,272,526,518,323,70,682,894,816,995,639,958,820,931,115,68,414,549,155,261,471,914,314,994,716,393,385,338,992,17,746,819,984,643,479,462,76,541,160,661,777,419,897,653,572,182,295,204,275,863,608,174,214,889,242,872,634,120,849,290,869,148,570,613,645,391,867,647,592,242,30,633,867,974,415,101,902,615,200,72,242,914,984,823,950,675,220,818,933,275,165,780,650,94,851,686,711,575,861,944,945,46,955,897,626,689,893,999,390,963,153,871,249,967,530,277,901,2,192,56,449,401,882,983,52,605,746,480,532,9,487,638,802,626,799,52,431,456,142,446,596,339,657,157,691,333,221,791,425,3,211,670,509,608,72,978,378,408,994,3,196,270,552,919,197,582,167,628,786,168,610,876,68,777,302,110,535,359,189,267,562,632,594,946,205,737,158,506,830,386,979,818,40,894,92,481,469,320,751,854,788,841,591,190,948,885,962,312,610,202,257,791,772,902,854,441,96,451,754,654,34,547,393,152,58,916,209,365,729,229,388,559,715,884,287,185,678,519,575,522,163,589,317,617,410,495,598,850,174,127,780,669,464,590,740,275,395,328,15,840,425,980,605,100,415,597,848,109,297,273,757,942,801,409,496,39,911,371,214,918,663,206,875,164,305,579,291,412,18,600,996,915,519,280,434,516,991,123,368,555,830,550,786,349,182,675,592,793,697,821,331,68,754,271,32,463,472,860,399,569,8,168,332,642,356,642,811,778,784,201,480,943,389,694,647,651,891,178,506,995,227,615,798,403,572,465,901,730,390,224,753,308,329,939,680,235,812,962,181,948,902,553,987,331,1,291,187,129,937,515,582,564,315,93,425,812,546,394,582,267,525,222,522,81,486,527,896,167,888,949,983,117,613,630,381,690,108,233,431,318,861,260,635,181,146,30,612,1,220,518,395,556,123,968,621,486,436,12,903,141,177,175,686,187,271,110,217,697,360,682,932,12,228,214,93,861,563,710,435,792,832,291,877,185,256,733,384,573,853,785,906,249,828,736,654,278,689,798,907,646,412,505,197,628,255,271,29,99,109,834,879,937,657,209,535,613,333,363,758,811,623,145,278,444,446,976,599,135,681,539,794,172,800,552,38,28,253,662,615,474,557,879,123,851,26,564,871,148,709,163,282,167,813,522,755,678,85,7,536,902,647,47,452,682,585,561,945,525,408,625,378,401,521,968,801,745,803,255,754,119,198,786,26,534,111,93,562,932,137,938,151,96,354,140,843,956,106,761,820,583,38,562,872,120,398,917,24,580,109,596,981,394,459,793,81,814,342,673,937,763,609,946,608,741,971,193,375,482,159,562,395,888,303,71,947,725,455,257,402,454,688,759,130,508,375,963,800,284,283,126,536,442,24,22,26,45,773,403,113,828,160,966,30,689,557,511,258,937,608,123,467,232,956,988,988,388,983,99,201,242,626,385,305,458,827,141,212,737,940,939,804,221,635,942,670,526,593,664,670,677,870,468,253,84,14,679,670,73,46,444,547,221,756,876,258,201,752,618,778,218,849,708,915,599,469,15,858,211,395,346,143,987,572,172,367,267,264,643,462,153,882,457,57,278,314,897,437,805,788,215,251,199,193,518,142,495,721,639,857,719,561,160,870,364,268,257,361,32,492,256,84,432,279,334,300,908,871,695,527,607,226,217,572,690,208,185,78,603,328,68,353,960,853,469,201,365,476,94,70,839,986,264,94,59,86,725,930,671,62,119,545,529,841,134,559,357,335,729,123,184,871,110,67,283,899,678,428,188,134,357,731,221,565,677,705,152,870,410,613,262,49,586,821,933,839,698,417,515,302,880,345,557,415,772,313,520,114,71,445,551,677,711,119,629,971,770,526,603,34,581,60,732,964,253,243,440,952,820,579,214,500,190,908,289,98,404,481,656,753,348,250,69,24,319,501,90,85,443,865,226,811,747,232,282,686,829,708,71,289,171,735,513,287,765,373,589,148,509,440,396,11,486,2,941,711,786,164,877,758,861,710,456,271,527,675,333,989,842,364,222,954,511,425,333,778,577,756,930,166,618,663,211,142,115,706,286,643,624,338,583,846,372,426,789,827,717,783,241,333,503,185,969,578,880,238,228,494,519,317,636,468,363,464,680,571,101,59,897,155,556,672,859,972,877,182,178,466,214,442,718,781,434,753,936,189,308,821,973,141,863,353,972,130,184,831,575,321,813,71,325,546,419,200,638,682,285,154,465,173,110,135,15,583,307,323,773,587,934,506,244,485,196,843,615,811,436,614,284,970,400,517,115,279,434,241,556,811,714,497,722,989,344,857,357,895,39,944,945,38,174,266,133,612,413,601,464,756,23,86,162,454,561,549,154,184,751,404,573,580,13,225,341,24,879,149,989,681,962,279,877,835,355,265,997,72,295,990,884,22,917,938,143,439,848,946,811,547,556,141,718,772,72,205,686,799,953,141,459,304,230,196,212,910,348,248,378,848,140,324,0,125,512,174,708,847,955,758,666,352,487,865,18,825,400,302,284,66,756,147,998,72,853,964,0,865,856,250,153,469,811,84,169,629,836,100,204,302,287,702,950,715,279,832,574,205,321,455,559,153,616,205,904,430,838,789,861,776,994,693,430,718,670,528,230,229,731,709,542,525,647,692,748,641,662,788,843,601,421,417,493,317,640,845,853,258,742,375,979,708,1,34,447,308,195,264,438,122,273,425,789,118,481,924,19,337,708,951,153,31,111,653,354,661,516,394,811,228,530,451,971,502,333,812,506,429,687,428,271,664,364,239,732,241,710,944,979,490,813,821,989,438,692,617,82,979,601,655,491,887,907,488,871,933,331,489,650,60,524,306,632,771,63,578,149,304,311,770,31,290,498,460,842,950,749,125,52,499,494,116,5,41,364,449,71,241,167,320,586,668,79,16,656,310,903,603,258,364,39,710,0,982,739,279,483,5,92,494,808,579,671,833,235,956,718,101,475,696,244,27,883,747,332,724,491,981,570,902,452,989,307,841,859,952,993,241,526,487,613,571,485,720,425,152,948,536,886,315,929,31,272,444,800,549,88,563,990,406,992,560,669,116,366,806,770,225,922,390,708,999,70,526,201,857,49,526,250,25,455,90,35,514,926,700,568,359,937,470,739,596,118,807,322,922,109,726,969,296,862,549,509,380,503,713,57,138,222,720,106,22,464,58,882,534,396,892,771,11,547,570,407,576,18,978,671,807,982,622,300,405,792,375,257,981,885,417,572,981,875,24,830,895,107,363,623,840,225,202,381,109,797,668,553,7,700,980,216,305,356,323,476,704,935,389,203,139,651,127,335,402,274,484,826,232,314,311,821,619,184,868,73,330,918,247,291,679,823,867,64,136,62,15,494,354,73,811,250,994,38,653,904,359,49,912,485,412,940,221,156,167,360,513,513,630,734,708,238,659,185,451,725,277,594,5,477,132,101,603,498,802,316,38,752,624,885,474,349,18,650,663,121,225,390,912,159,36,744,666,725,889,667,600,3,680,285,127,552,729,391,34,881,27,431,241,244,378,785,26,334,400,836,498,193,428,174,993,572,733,423,212,789,402,604,347,105,443,197,979,581,662,929,145,938,83,833,504,539,255,888,488,294,21,173,134,697,734,3,149,911,197,255,970,292,531,400,363,850,790,471,372,240,786,492,443,648,978,134,614,290,47,235,576,287,898,868,640,392,486,12,705,834,400,930,24,802,371,708,253,741,687,274,749,762,558,506,425,35,405,29,294,956,379,785,897,914,674,974,683,27,91,615,881,930,197,699,470,776,303,195,878,173,249,412,361,876,932,397,293,562,321,442,645,463,772,382,875,172,901,703,622,586,717,926,810,260,952,166,660,483,649,897,311,944,172,951,237,239,753,705,74,775,28,863,190,3,773,504,911,94,737,913,659,755,740,588,520,590,729,834,487,182,190,165,398,696,465,177,554,674,200,578,511,760,958,265,432,409,404,918,950,111,614,194,57,860,367,734,723,810,443,22,947,642,304,336,152,503,790,500,498,345,625,68,806,396,35,383,318,665,697,91,835,499,715,401,199,19,891,604,60,909,110,309,51,24,578,319,374,595,313,564,552,471,614,775,416,71,35,581,55,951,563,650,51,502,915,405,541,491,656,79,144,115,788,215,512,513,140,684,821,382,740,595,339,507,535,546,283,742,917,159,350,431,195,34,572,134,329,978,234,793,350,806,761,819,913,606,926,596,452,143,873,868,783,568,790,202,199,54,804,829,902,297,460,958,77,92,258,503,76,673,777,366,853,826,248,249,651,826,478,389,516,105,0,459,926,709,569,517,240,923,887,91,292,41,217,6,833,569,600,219,179,922,353,771,702,62,792,176,671,267,326,954,747,219,482,262,32,484,334,732,932,166,161,189,296,630,728,486,804,201,529,582,616,624,334,75,706,421,925,175,32,926,876,340,434,665,490,918,257,733,189,79,645,611,812,496,642,44,710,841,912,368,721,383,983,838,825,543,340,603,10,769,744,932,886,615,114,971,449,818,719,612,353,396,299,981,601,334,524,864,759,826,691,274,635,554,436,904,731,57,660,164,501,518,541,516,72,389,390,5,505,238,636,595,67,174,418,759,876,988,37,170,592,210,615,808,367,539,427,689,969,695,453,284,440,410,548,394,734,732,732,610,733,195,845,884,424,118,426,543,703,304,285,236,929,596,837,569,711,156,260,620,240,590,731,317,424,522,778,916,823,283,122,978,732,806,369,136,932,463,17,820,754,699,63,154,519,383,859,400,466,922,378,825,75,220,757,599,985,9,880,281,999,157,581,921,919,66,481,526,63,868,651,188,225,575,223,10,910,462,837,714,825,465,951,543,599,439,663,695,68,966,219,571,189,806,947,823,798,170,905,272,789,663,385,283,193,642,660,719,814,382,715,999,345,296,696,766,530,598,113,292,867,304,206,429,317,361,971,330,610,342,405,430,446,522,13,951,187,699,495,117,69,969,171,155,53,772,171,0,80,416,289,981,224,677,29,279,487,972,560,693,523,400,347,582,302,614,830,59,58,398,20,425,297,370,899,229,254,974,203,615,347,554,395,359,713,0,346,518,307,457,267,808,713,480,866,477,883,739,227,900,97,872,736,344,416,813,128,757,603,940,739,995,589,156,759,687,895,550,834,683,268,971,101,295,638,821,491,985,541,260,755,364,886,946,586,693,274,653,611,712,73,233,181,957,884,453,92,187,815,469,947,729,162,578,79,63,699,644,454,632,740,924,745,729,842,584,459,883,616,586,130,875,999,304,609,357,230,159,41,639,830,20,589,317,264,577,602,988,627,384,500,867,996,503,438,997,677,328,605,946,272,333,862,240,756,134,64,99,692,318,544,985,727,52,54,701,176,255,995,516,693,31,660,694,498,53,969,473,11,655,707,981,508,147,750,61,112,764,665,604,728,66,811,818,274,915,469,438,5,170,848,341,237,957,163,691,368,893,577,956,835,315,176,539,353,66,116,305,366,722,141,519,159,552,976,283,937,182,837,396,789,783,478,258,791,51,365,305,975,448,689,875,111,662,589,637,48,601,92,888,925,735,871,664,635,605,644,20,410,549,445,767,665,272,78,268,844,257,171,311,909,372,181,653,63,700,607,484,731,171,630,499,976,671,190,336,205,800,81,845,226,138,822,955,894,501,788,329,125,30,56,759,253,337,621,776,562,496,40,387,937,231,196,844,718,290,595,452,106,66,929,260,974,861,466,13,115,494,289,987,905,225,239,397,963,601,916,616,516,220,566,926,569,370,713,66,885,479,20,571,98,51,163,502,18,555,476,159,761,561,204,194,269,323,723,621,98,227,233,381,764,416,739,57,773,932,586,586,42,621,131,969,159,8,790,546,246,250,914,81,747,905,545,63,837,700,886,936,285,584,337,84,986,811,722,302,956,744,756,853,935,183,586,868,625,680,711,435,91,476,503,879,31,579,869,377,906,592,784,514,499,419,932,721,895,648,614,480,78,661,8,117,845,890,765,437,872,765,963,22,794,126,49,910,322,811,378,48,343,321,618,148,98,687,325,741,394,982,407,803,437,458,982,415,974,193,351,680,851,816,287,53,651,544,582,789,295,367,718,79,936,561,66,113,516,866,272,14,772,60,358,185,784,400,857,163,144,31,943,892,433,805,678,426,221,324,532,340,785,70,916,418,104,991,167,206,156,475,970,992,285,59,3,684,513,306,59,210,107,75,824,505,863,716,89,526,52,784,731,800,474,675,881,959,745,224,210,244,2,435,302,171,368,511,243,698,128,918,343,925,708,430,55,199,29,682,360,934,45,228,859,176,228,609,831,452,825,145,469,165,221,310,974,805,29,183,272,412,264,291,347,375,486,356,273,89,30,593,510,317,186,543,301,317,727,553,717,534,435,411,764,990,556,100,244,616,983,338,805,530,614,536,894,777,702,491,987,733,244,187,534,640,597,15,216,385,217,67,21,39,952,229,17,542,974,969,28,848,399,611,300,492,56,345,484,859,168,453,224,725,664,686,817,201,111,61,76,21,371,823,688,890,386,484,764,672,748,106,243,688,345,832,970,227,390,157,283,728,215,94,514,434,115,7,891,707,421,516,327,376,431,153,848,121,639,371,95,231,625,999,881,402,309,150,593,31,980,940,480,607,241,61,560,109,99,634,641,719,919,501,247,585,541,929,731,57,517,378,493,264,242,987,764,477,259,96,693,775,592,591,266,378,289,35,651,486,108,809,483,148,822,80,974,103,753,115,805,530,780,94,575,829,285,720,157,643,723,751,565,302,832,953,296,613,366,408,554,392,828,754,385,893,881,247,776,866,175,708,486,741,109,287,739,728,682,235,893,415,83,487,393,651,820,524,595,960,6,419,816,300,796,835,53,526,974,65,448,288,526,33,960,714,583,864,841,781,783,910,689,649,400,990,690,980,752,719,427,896,68,87,290,658,557,112,227,944,219,69,199,862,697,722,660,392,706,155,341,190,225,982,607,684,98,333,912,850,72,209,547,975,514,909,991,649,774,286,137,375,186,827,166,389,567,535,350,237,644,721,482,502,239,201,675,730,490,695,4,917,962,166,68,563,63,932,978,300,391,401,536,426,762,187,234,877,658,210,996,574,614,653,952,945,327,654,823,426,40,77,594,249,225,378,475,16,200,992,595,40,456,283,415,642,933,333,901,646,130,902,287,258,671,193,606,614,150,622,65,967,733,44,990,1,973,95,519,146,482,840,409,830,293,533,241,265,506,216,747,554,864,773,64,843,344,813,822,790,912,0,9,991,186,852,526,230,938,204,922,226,403,329,676,304,132,753,369,866,182,47,630,900,194,323,69,630,656,719,511,818,738,644,907,524,868,689,418,46,215,828,587,212,169,319,154,581,162,571,447,875,741,778,216,419,57,258,778,409,313,926,325,563,430,258,612,205,279,425,877,995,646,581,649,536,626,921,766,769,689,41,190,278,101,152,25,973,573,289,857,526,787,574,474,985,682,209,119,203,267,764,2,86,725,310,610,945,995,720,298,840]

reversed:

[999,999,999,999,999,999,999,999,999,999,999,999,998,998,998,998,998,998,998,997,997,997,997,997,997,996,996,996,996,996,996,996,995,995,995,995,995,995,995,994,994,994,994,994,994,994,994,994,994,994,994,993,993,993,993,993,992,992,992,992,992,992,992,992,992,992,991,991,991,991,991,991,991,991,991,991,990,990,990,990,990,990,990,990,990,990,990,990,990,989,989,989,989,989,989,989,989,989,989,989,988,988,988,988,988,988,988,988,988,987,987,987,987,987,987,987,987,987,987,987,987,987,987,987,986,986,986,986,986,986,986,986,986,986,986,986,986,985,985,985,985,985,985,985,984,984,984,984,984,984,984,984,984,984,984,984,984,983,983,983,983,983,983,983,983,983,983,982,982,982,982,982,982,982,982,982,982,982,981,981,981,981,981,981,981,981,981,981,981,981,981,981,980,980,980,980,980,980,980,980,980,980,980,980,980,980,980,980,979,979,979,979,979,979,979,979,979,979,978,978,978,978,978,978,978,978,977,976,976,976,976,976,976,976,976,975,975,975,975,975,975,974,974,974,974,974,974,974,974,974,974,974,974,974,973,973,973,973,973,973,973,973,973,973,972,972,972,972,972,972,972,972,972,971,971,971,971,971,971,971,971,971,971,971,971,970,970,970,970,970,970,970,970,970,970,970,969,969,969,969,969,969,969,969,969,969,969,969,969,968,968,968,968,968,968,967,967,967,967,967,967,967,967,967,967,966,966,966,966,966,966,966,966,966,966,966,965,965,965,965,965,965,964,964,964,964,964,964,964,964,964,964,963,963,963,963,963,963,963,963,963,963,963,963,963,963,962,962,962,962,962,962,962,962,962,961,961,961,961,961,961,960,960,960,960,960,960,960,960,960,959,959,959,959,959,959,959,959,959,958,958,958,958,958,958,958,958,958,958,958,958,958,957,957,957,957,957,957,957,957,957,957,957,957,956,956,956,956,956,956,956,956,956,956,956,955,955,955,955,954,954,954,954,954,954,953,953,953,953,953,953,953,953,953,953,953,953,953,953,952,952,952,952,952,952,952,952,952,952,952,952,952,952,952,952,952,951,951,951,951,951,951,951,951,951,951,950,950,950,950,950,950,950,950,949,949,949,949,949,949,949,949,949,949,949,949,949,948,948,948,948,948,948,948,948,948,947,947,947,947,947,947,947,947,947,947,947,947,946,946,946,946,946,946,946,946,946,946,945,945,945,945,945,945,945,945,945,945,945,944,944,944,944,944,944,944,944,944,944,944,943,943,943,943,943,943,943,943,943,943,942,942,942,942,942,942,942,942,941,941,941,941,941,941,941,941,941,941,941,940,940,940,940,940,940,940,940,940,940,940,940,940,939,939,939,939,939,939,939,938,938,938,938,938,938,938,938,938,937,937,937,937,937,937,937,937,937,937,936,936,936,936,936,936,936,936,936,935,935,935,935,935,935,935,935,935,935,935,935,934,934,934,934,934,933,933,933,933,933,933,933,933,933,933,933,933,932,932,932,932,932,932,932,932,932,932,932,932,932,932,931,931,931,931,931,931,930,930,930,930,930,930,930,930,930,930,930,930,930,929,929,929,929,929,929,929,929,929,928,928,928,928,927,927,927,926,926,926,926,926,926,926,926,926,926,926,926,926,926,926,926,926,925,925,925,925,925,925,925,925,925,925,925,925,925,925,924,924,924,923,923,923,923,923,923,923,923,923,922,922,922,922,922,922,922,922,922,922,922,922,922,922,921,921,921,921,921,921,921,921,921,921,921,921,921,921,920,920,920,920,920,920,920,920,919,919,919,919,919,919,919,919,919,919,918,918,918,918,918,918,918,918,918,918,918,918,918,917,917,917,917,917,917,917,917,917,916,916,916,916,916,916,916,916,916,915,915,915,915,915,915,915,915,915,915,915,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,913,913,913,913,913,913,912,912,912,912,912,912,912,912,911,911,911,911,911,911,911,911,911,911,911,911,910,910,910,910,910,910,910,910,909,909,909,909,909,909,909,909,909,908,908,908,908,908,908,908,908,908,908,907,907,907,907,907,907,907,907,906,906,906,906,906,906,906,906,906,906,906,906,906,905,905,905,905,905,905,904,904,904,904,904,904,904,903,903,903,903,903,902,902,902,902,902,902,902,902,902,902,902,901,901,901,901,901,901,901,900,900,900,900,900,900,900,900,899,899,899,899,899,898,898,898,898,898,898,898,897,897,897,897,897,897,897,897,897,897,896,896,896,896,896,896,895,895,895,895,895,895,895,895,895,895,895,894,894,894,894,894,894,894,894,894,894,894,893,893,893,893,893,893,893,893,893,893,892,892,892,892,892,892,892,892,892,892,891,891,891,891,891,891,891,891,891,891,890,890,890,890,890,890,890,890,890,890,890,889,889,889,889,889,889,889,889,889,888,888,888,888,888,888,888,888,888,888,888,887,887,887,887,887,887,887,887,887,887,886,886,886,886,886,886,886,886,885,885,885,885,885,885,885,885,885,885,885,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,883,883,883,883,883,883,883,883,883,882,882,882,882,882,882,882,881,881,881,881,881,881,881,881,881,881,881,881,880,880,880,880,880,879,879,879,879,879,879,879,879,879,879,879,878,878,878,878,878,878,878,878,878,878,877,877,877,877,877,877,877,877,877,877,877,877,877,876,876,876,876,876,876,876,876,876,875,875,875,875,875,875,875,875,875,875,874,874,874,874,874,874,874,873,873,873,873,873,873,873,873,873,873,872,872,872,872,872,872,872,872,872,872,872,871,871,871,871,871,871,871,871,871,871,871,871,871,870,870,870,870,870,870,870,870,870,869,869,869,869,869,869,869,869,869,868,868,868,868,868,868,868,868,868,868,868,868,868,868,867,867,867,867,867,867,867,867,867,867,866,866,866,866,866,866,866,866,866,866,866,866,865,865,865,865,865,865,865,865,865,864,864,864,864,864,864,864,864,864,863,863,863,863,863,863,863,862,862,862,862,862,862,861,861,861,861,861,861,861,861,861,861,861,861,861,861,860,860,860,860,860,859,859,859,859,859,859,859,859,859,859,859,859,859,858,858,858,857,857,857,857,857,857,857,857,856,856,856,856,856,856,856,856,856,856,856,855,855,855,855,854,854,854,854,854,854,854,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,852,852,852,852,852,852,851,851,851,851,851,851,851,851,851,851,850,850,850,850,850,850,850,850,850,849,849,849,849,849,849,849,849,849,849,849,849,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,847,847,847,847,847,846,846,846,846,846,846,846,846,846,845,845,845,845,845,845,845,845,845,844,844,844,844,844,844,844,843,843,843,843,843,843,843,843,843,843,843,842,842,842,842,842,842,842,842,842,842,842,842,842,841,841,841,841,841,841,841,841,841,841,841,841,841,841,840,840,840,840,840,840,840,839,839,839,839,839,839,839,839,839,838,838,838,838,838,838,838,838,838,837,837,837,837,837,837,837,837,837,837,836,836,836,836,836,836,836,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,834,834,834,834,834,834,834,834,834,834,833,833,833,833,833,833,832,832,832,832,832,832,832,832,832,832,831,831,831,831,831,831,831,830,830,830,830,830,830,830,830,830,830,830,830,830,829,829,829,829,829,829,829,829,829,829,829,829,829,828,828,828,828,828,828,828,828,828,828,828,828,827,827,827,827,827,827,827,827,826,826,826,826,826,826,826,825,825,825,825,825,825,825,825,825,825,825,825,825,824,824,824,824,824,824,824,824,824,824,823,823,823,823,823,823,823,823,823,823,822,822,822,822,822,822,821,821,821,821,821,821,821,821,821,821,821,821,821,821,820,820,820,820,820,820,820,820,820,820,820,820,819,819,819,819,819,819,819,819,819,818,818,818,818,818,818,818,818,818,818,817,817,817,817,817,817,817,817,817,817,817,816,816,816,816,816,816,816,815,815,815,815,815,815,814,814,814,814,814,814,814,814,814,813,813,813,813,813,813,813,813,813,813,813,812,812,812,812,812,812,812,812,811,811,811,811,811,811,811,811,811,811,811,811,811,811,811,811,811,810,810,810,810,810,810,810,810,810,810,809,809,809,809,809,809,808,808,808,808,808,808,808,808,808,807,807,807,807,807,807,807,807,807,807,807,807,806,806,806,806,806,806,806,806,806,806,805,805,805,805,805,805,805,805,805,805,805,805,805,805,805,804,804,804,804,804,804,804,804,804,804,804,803,803,803,803,803,802,802,802,802,802,802,802,802,802,801,801,801,801,801,801,801,800,800,800,800,800,800,800,800,800,800,800,800,799,799,799,799,799,799,799,799,799,799,799,799,799,798,798,798,798,798,798,798,798,798,797,797,797,797,797,797,796,796,796,796,796,796,796,796,796,796,796,795,795,795,795,795,795,795,795,795,794,794,794,794,794,793,793,793,793,793,793,793,793,793,793,793,793,793,793,792,792,792,792,792,792,792,792,792,792,792,791,791,791,791,791,791,791,791,791,791,791,791,790,790,790,790,790,790,790,790,790,790,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,788,788,788,788,788,788,788,788,788,788,788,788,787,787,787,787,787,787,786,786,786,786,786,786,786,786,786,785,785,785,785,785,785,785,785,785,785,785,785,785,784,784,784,784,784,784,784,784,784,783,783,783,783,783,783,783,783,783,782,782,782,782,782,782,781,781,781,781,781,781,781,781,781,780,780,780,780,780,780,780,780,780,780,780,780,780,780,779,779,779,779,779,779,779,779,779,779,779,778,778,778,778,778,778,778,778,778,778,778,777,777,777,777,777,777,777,776,776,776,776,776,776,776,776,776,776,776,776,775,775,775,775,775,775,775,775,775,775,775,774,774,774,774,774,774,773,773,773,773,773,773,773,773,773,773,773,773,773,773,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,771,771,771,771,771,771,771,771,770,770,770,770,770,770,770,770,770,770,769,769,769,769,769,769,769,769,769,769,768,768,768,768,768,768,768,768,767,767,767,767,767,767,767,767,767,767,767,766,766,766,766,766,766,766,765,765,765,765,765,765,765,765,765,765,764,764,764,764,764,764,764,764,764,764,764,764,763,763,763,763,763,763,763,763,763,763,763,762,762,762,762,762,762,762,762,762,762,762,761,761,761,761,761,761,761,761,761,760,760,760,760,759,759,759,759,759,759,759,759,759,759,759,758,758,758,758,758,758,758,758,758,758,758,758,757,757,757,757,757,757,757,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,755,755,755,755,755,755,755,755,755,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,753,753,753,753,753,753,753,753,753,752,752,752,752,752,752,752,752,752,751,751,751,751,751,751,750,750,750,750,750,750,750,750,750,750,750,750,750,749,749,749,749,749,749,749,749,748,748,748,748,748,748,748,748,747,747,747,747,747,747,747,747,747,747,747,747,746,746,746,746,746,746,746,746,746,746,746,746,746,745,745,745,745,745,745,745,745,745,745,745,745,745,744,744,744,744,744,744,744,743,743,743,743,743,743,743,742,742,742,742,742,742,742,742,742,742,741,741,741,741,741,741,741,741,741,741,741,741,741,741,740,740,740,740,740,740,740,740,740,740,739,739,739,739,739,739,739,739,739,739,739,739,739,738,738,738,738,738,738,738,738,738,738,738,738,738,737,737,737,737,737,737,737,737,736,736,736,736,736,736,736,736,736,735,735,735,735,735,735,735,735,734,734,734,734,734,734,734,734,734,734,734,734,734,734,733,733,733,733,733,733,733,733,733,733,733,733,733,733,732,732,732,732,732,732,732,732,732,732,732,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,730,730,730,730,730,730,730,729,729,729,729,729,729,729,729,729,729,729,728,728,728,728,728,728,728,728,728,728,728,728,728,727,727,727,727,727,727,727,727,727,727,726,726,726,726,726,726,726,725,725,725,725,725,725,725,725,725,725,725,725,724,724,724,724,723,723,723,723,723,723,723,723,723,723,723,723,722,722,722,722,722,722,722,722,722,722,721,721,721,721,721,721,721,721,721,721,720,720,720,720,720,720,720,720,720,720,720,719,719,719,719,719,719,719,719,719,719,719,718,718,718,718,718,718,718,718,718,718,718,718,718,718,717,717,717,717,717,717,717,717,717,717,717,716,716,716,716,716,716,716,716,716,715,715,715,715,715,715,715,714,714,714,714,714,714,713,713,713,713,713,713,713,713,713,713,712,712,712,712,712,712,712,711,711,711,711,711,711,711,711,711,710,710,710,710,710,710,710,710,710,710,710,710,710,710,709,709,709,709,709,709,709,709,709,709,709,709,709,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,707,707,707,707,707,707,707,706,706,706,706,706,706,706,706,706,706,706,706,705,705,705,705,705,705,705,705,705,705,705,705,704,704,704,704,704,704,704,704,704,704,703,703,703,703,703,703,702,702,702,702,702,702,702,702,702,702,702,702,702,702,701,701,701,701,701,701,701,701,701,701,700,700,700,700,700,700,700,700,700,700,700,700,700,700,700,700,699,699,699,699,699,699,699,699,699,699,699,699,699,698,698,698,698,698,698,697,697,697,697,697,697,697,697,697,697,697,697,697,697,697,696,696,696,696,696,696,695,695,695,695,695,695,695,695,695,695,695,694,694,694,694,694,694,694,694,694,694,694,694,693,693,693,693,693,693,693,693,693,693,693,693,692,692,692,692,692,692,692,692,692,691,691,691,691,691,691,691,691,690,690,690,690,690,690,690,690,690,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,688,688,688,688,688,688,688,688,688,687,687,687,687,687,687,687,687,687,687,686,686,686,686,686,686,686,686,686,686,686,686,686,686,685,685,685,685,685,685,684,684,684,684,684,684,684,684,683,683,683,683,683,683,683,683,683,682,682,682,682,682,682,682,682,682,682,682,682,682,682,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,680,680,680,680,680,680,680,680,680,680,680,680,679,679,679,679,679,679,679,679,679,679,679,678,678,678,678,678,678,678,678,678,678,678,677,677,677,677,677,677,677,677,677,677,677,676,676,676,676,676,676,676,676,676,675,675,675,675,675,675,675,675,675,675,674,674,674,674,674,674,674,674,673,673,673,673,673,673,673,672,672,672,672,672,672,671,671,671,671,671,671,671,671,671,671,671,670,670,670,670,670,670,670,670,670,670,670,670,669,669,669,669,669,669,669,669,669,669,668,668,668,668,668,668,668,667,667,667,667,666,666,666,666,666,666,666,665,665,665,665,665,665,665,665,665,665,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,663,663,663,663,663,663,663,663,663,663,663,663,663,663,663,662,662,662,662,662,662,662,662,662,662,662,661,661,661,661,661,661,661,661,660,660,660,660,660,660,660,660,659,659,659,659,659,659,659,658,658,658,658,658,658,658,658,658,658,658,657,657,657,657,657,657,657,657,657,657,656,656,656,656,656,656,656,656,655,655,655,655,655,655,655,655,655,655,654,654,654,654,654,654,654,654,654,654,654,653,653,653,653,653,653,653,653,653,653,653,653,653,653,653,653,653,652,652,652,652,652,652,652,652,652,652,652,652,651,651,651,651,651,651,651,651,651,651,651,650,650,650,650,650,650,650,650,650,650,650,649,649,649,649,649,649,649,649,649,649,649,649,649,648,648,648,648,648,648,648,648,648,648,647,647,647,647,647,647,647,647,647,647,647,647,646,646,646,646,646,646,646,646,646,646,646,646,645,645,645,645,645,645,645,645,645,645,645,645,645,645,645,644,644,644,644,644,644,644,644,644,643,643,643,643,643,643,643,643,643,643,643,643,642,642,642,642,642,642,642,642,642,642,642,642,641,641,641,641,641,641,641,641,641,641,641,641,640,640,640,640,640,640,640,639,639,639,639,639,638,638,638,638,638,638,637,637,637,637,637,637,637,636,636,636,636,636,636,636,636,636,636,635,635,635,635,635,635,635,635,635,635,635,635,635,634,634,634,634,634,634,634,633,633,633,633,633,633,632,632,632,632,632,632,632,632,631,631,631,631,630,630,630,630,630,630,630,630,630,630,630,630,630,629,629,629,629,629,629,628,628,628,628,628,628,628,627,627,627,627,627,627,627,626,626,626,626,626,626,626,626,626,626,626,626,625,625,625,625,625,625,625,625,625,625,625,625,624,624,624,624,624,624,624,624,623,623,623,623,623,623,623,623,623,623,623,623,622,622,622,622,622,622,622,622,622,622,621,621,621,621,621,621,621,620,620,620,620,620,619,619,619,619,619,619,619,619,619,619,619,618,618,618,618,618,618,618,618,618,618,617,617,617,617,617,617,617,617,617,616,616,616,616,616,616,616,616,616,616,615,615,615,615,615,615,615,615,615,615,615,614,614,614,614,614,614,614,614,614,614,614,614,614,614,614,614,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,612,612,612,612,612,612,612,612,612,611,611,611,611,611,611,611,611,611,610,610,610,610,610,610,610,610,610,610,610,610,610,610,610,610,609,609,609,609,609,609,609,609,609,608,608,608,608,608,608,608,608,607,607,607,607,607,607,607,607,607,607,606,606,606,606,606,606,606,606,606,605,605,605,605,605,605,605,605,605,605,605,604,604,604,604,604,604,604,604,603,603,603,603,603,603,603,603,603,603,603,603,603,602,602,602,602,602,601,601,601,601,601,601,601,601,601,601,601,601,601,600,600,600,600,600,600,600,600,600,600,599,599,599,599,599,599,599,599,599,599,599,599,599,599,598,598,598,598,598,598,598,598,598,598,597,597,597,597,597,597,596,596,596,596,596,596,596,596,596,596,596,595,595,595,595,595,595,595,595,595,595,595,595,595,594,594,594,594,594,594,594,594,594,594,594,594,593,593,593,593,593,593,593,593,593,593,592,592,592,592,592,592,592,592,591,591,591,591,591,591,591,590,590,590,590,590,590,590,589,589,589,589,589,589,589,589,589,589,589,589,589,589,588,588,588,588,588,588,588,587,587,587,587,587,587,587,587,587,587,586,586,586,586,586,586,586,586,586,586,586,586,586,586,586,585,585,585,585,585,585,584,584,584,584,584,584,584,583,583,583,583,583,583,583,583,583,582,582,582,582,582,582,582,582,582,582,582,582,582,581,581,581,581,581,581,581,581,581,581,581,581,580,580,580,580,580,580,580,580,580,580,579,579,579,579,579,579,579,579,579,579,579,579,579,578,578,578,578,578,578,578,578,578,577,577,577,577,577,577,577,577,577,577,576,576,576,576,576,576,576,576,576,576,576,576,576,575,575,575,575,575,575,575,575,575,575,575,574,574,574,574,574,574,574,574,574,573,573,573,573,573,573,573,573,573,573,572,572,572,572,572,572,572,572,572,572,572,572,572,572,571,571,571,571,571,571,571,571,571,571,571,571,570,570,570,570,570,570,570,569,569,569,569,569,569,569,569,569,569,569,568,568,568,568,568,568,568,568,568,568,568,567,567,567,567,567,567,567,567,567,566,566,566,566,566,566,565,565,565,565,565,565,564,564,564,564,564,564,564,564,564,563,563,563,563,563,563,563,563,563,563,563,563,563,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,561,561,561,561,561,561,561,561,561,561,560,560,560,560,560,560,560,559,559,559,559,559,559,559,559,559,558,558,558,558,558,558,558,558,558,558,558,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,556,556,556,556,556,556,556,556,556,556,556,556,555,555,555,555,555,555,555,555,555,555,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,553,553,553,553,553,553,553,553,553,552,552,552,552,552,552,552,552,552,552,552,552,552,551,551,551,551,551,551,551,550,550,550,550,550,550,550,549,549,549,549,549,549,549,548,548,548,548,548,548,547,547,547,547,547,547,547,547,547,547,547,547,546,546,546,546,546,545,545,545,545,545,545,545,545,545,544,544,544,544,544,544,543,543,543,543,543,543,543,543,543,543,543,543,543,543,542,542,542,542,542,542,542,542,542,541,541,541,541,541,541,541,541,541,541,540,540,540,540,540,540,539,539,539,539,539,539,539,538,538,538,538,538,538,537,537,537,536,536,536,536,536,536,536,536,536,536,536,536,535,535,535,535,535,535,535,535,535,534,534,534,534,534,534,534,534,534,534,534,534,533,533,533,533,533,533,533,533,533,532,532,532,532,532,532,531,531,531,531,531,531,531,530,530,530,530,530,530,530,530,529,529,529,529,529,529,529,529,529,529,528,528,528,528,528,528,528,528,528,527,527,527,527,527,527,527,527,527,527,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,525,525,525,525,525,525,525,525,524,524,524,524,524,524,524,524,524,524,524,523,523,523,523,523,523,523,523,523,523,522,522,522,522,522,522,522,522,522,522,522,522,522,521,521,521,521,521,521,521,521,521,520,520,520,520,520,520,520,520,519,519,519,519,519,519,519,519,519,519,519,519,519,518,518,518,518,518,518,518,518,518,518,518,518,518,517,517,517,517,517,517,517,517,517,517,517,516,516,516,516,516,516,516,516,516,516,516,516,516,515,515,515,515,515,515,515,515,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,513,513,513,513,513,513,513,513,513,513,513,512,512,512,512,512,512,511,511,511,511,511,511,511,511,511,511,511,511,510,510,510,510,510,510,510,510,510,510,510,510,510,509,509,509,509,509,509,509,509,508,508,508,508,508,508,508,508,508,508,508,508,507,507,507,507,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,505,505,505,505,505,505,505,505,505,505,505,505,504,504,504,504,504,504,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,502,502,502,502,502,502,502,502,502,501,501,501,501,501,501,501,501,500,500,500,500,500,500,500,500,500,500,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,498,498,498,498,498,498,498,498,498,498,498,498,498,497,497,497,497,497,497,497,497,496,496,496,496,496,496,496,496,495,495,495,495,495,495,495,495,495,495,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,493,493,493,493,493,493,493,492,492,492,492,492,492,492,492,491,491,491,491,491,491,491,491,491,491,490,490,490,490,490,490,490,490,490,489,489,489,489,489,489,489,489,489,489,489,489,488,488,488,488,488,488,487,487,487,487,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,486,486,486,486,486,485,485,485,485,485,485,485,485,485,485,484,484,484,484,484,484,484,484,484,484,484,484,483,483,483,483,483,483,483,483,483,483,482,482,482,482,482,482,482,482,482,482,482,481,481,481,481,481,481,481,480,480,480,480,480,480,480,480,480,480,480,480,479,479,479,479,479,479,479,479,479,478,478,478,478,478,478,478,478,478,478,478,477,477,477,477,477,477,477,477,476,476,476,476,476,476,476,476,476,476,476,476,475,475,475,475,475,475,475,475,474,474,474,474,474,474,474,474,474,474,474,474,474,474,473,473,473,473,473,473,473,473,472,472,472,472,472,472,472,471,471,471,471,471,471,471,471,471,470,470,470,470,470,470,470,470,470,469,469,469,469,469,469,469,469,469,469,469,469,468,468,468,468,468,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,466,466,466,466,466,466,466,466,466,465,465,465,465,465,465,465,465,465,465,464,464,464,464,464,464,464,464,464,464,464,464,464,464,463,463,463,463,463,463,463,463,463,463,463,463,463,462,462,462,462,462,462,462,462,462,461,461,461,461,461,460,460,460,460,460,460,460,460,460,460,460,459,459,459,459,459,459,459,459,459,459,459,459,459,458,458,458,458,458,458,457,457,457,457,457,456,456,456,456,456,456,456,456,456,456,455,455,455,455,455,455,455,455,455,455,455,455,455,455,454,454,454,454,454,454,454,454,453,453,453,453,453,453,453,453,453,453,453,453,452,452,452,452,452,452,452,452,452,452,451,451,451,451,451,451,451,451,451,451,451,451,450,450,450,450,450,450,449,449,449,449,449,449,449,449,449,449,449,448,448,448,448,448,448,448,448,448,448,448,448,447,447,447,447,447,447,447,446,446,446,446,446,446,446,446,446,445,445,445,445,445,445,445,445,445,444,444,444,444,444,444,444,444,444,444,443,443,443,443,443,443,443,443,443,442,442,442,442,442,442,442,442,441,441,441,441,441,441,441,441,441,441,441,441,440,440,440,440,440,440,440,439,439,439,439,439,439,439,439,439,439,438,438,438,438,438,438,438,438,438,438,438,438,437,437,437,437,437,437,437,437,437,437,437,436,436,436,436,436,436,436,436,436,436,436,435,435,435,435,435,435,435,435,435,435,435,434,434,434,434,434,434,434,434,434,433,433,433,433,433,433,433,433,433,432,432,432,432,432,432,432,432,432,432,432,431,431,431,431,431,431,431,431,431,431,431,431,431,431,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,429,429,429,429,429,429,429,428,428,428,428,428,428,428,428,428,428,427,427,427,427,427,427,427,427,427,427,427,426,426,426,426,426,426,426,426,426,426,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,424,424,424,424,424,424,424,424,424,424,424,424,423,423,423,423,423,423,422,422,422,422,422,422,422,422,421,421,421,421,421,421,421,420,420,420,420,420,420,420,420,419,419,419,419,419,419,419,419,419,419,419,419,419,419,419,418,418,418,418,418,418,418,418,418,417,417,417,417,417,417,417,417,416,416,416,416,416,416,416,416,416,416,416,415,415,415,415,415,415,415,415,415,415,415,415,414,414,414,414,414,414,413,413,413,413,413,413,413,413,413,413,413,412,412,412,412,412,412,412,412,412,412,412,412,411,411,411,411,411,411,411,411,411,410,410,410,410,410,410,410,410,410,410,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,408,408,408,408,408,408,408,407,407,407,407,407,407,406,406,406,406,406,406,406,406,405,405,405,405,405,405,405,405,405,405,405,404,404,404,404,404,404,404,404,404,404,403,403,403,403,403,403,403,403,403,403,402,402,402,402,402,402,402,402,402,402,402,402,402,401,401,401,401,401,401,401,401,401,401,401,401,401,400,400,400,400,400,400,400,400,400,400,400,400,400,400,400,400,399,399,399,399,399,399,399,399,399,399,398,398,398,398,398,397,397,397,397,397,397,396,396,396,396,396,396,396,396,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,394,394,394,394,394,394,394,394,393,393,393,393,393,393,393,393,393,393,393,393,393,392,392,392,392,392,392,392,392,392,392,392,392,392,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,390,390,390,390,390,390,390,390,390,390,389,389,389,389,389,389,389,389,389,389,389,389,388,388,388,388,388,388,387,387,387,387,387,386,386,386,386,386,386,386,386,386,386,385,385,385,385,385,385,385,385,385,385,385,385,385,385,385,385,385,384,384,384,384,384,383,383,383,383,383,383,383,383,383,383,383,382,382,382,382,382,382,382,382,382,382,381,381,381,381,381,381,381,381,380,380,380,380,380,380,379,379,379,379,379,378,378,378,378,378,378,378,378,378,378,378,378,377,377,377,377,377,377,377,377,377,376,376,376,376,376,376,376,376,375,375,375,375,375,375,375,375,375,375,375,375,375,374,374,374,374,374,373,373,373,373,373,373,373,373,372,372,372,372,372,372,372,372,372,372,371,371,371,371,371,371,371,371,371,371,371,371,371,371,371,371,371,370,370,370,370,370,370,370,370,370,369,369,369,369,369,369,369,369,369,369,369,369,369,368,368,368,368,368,368,368,367,367,367,367,367,367,367,367,367,367,366,366,366,366,366,366,366,366,366,366,366,366,365,365,365,365,365,365,365,365,365,365,365,365,364,364,364,364,364,364,364,364,364,364,364,364,364,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,362,362,362,362,362,361,361,361,361,361,361,361,361,361,360,360,360,360,360,360,360,360,360,360,360,359,359,359,359,359,359,359,359,359,359,359,359,359,358,358,358,358,358,358,358,358,358,358,358,357,357,357,357,357,357,357,357,356,356,356,356,356,356,356,355,355,355,355,355,355,355,355,355,355,354,354,354,354,354,354,353,353,353,353,353,353,353,353,353,353,353,353,352,352,352,352,352,351,351,351,351,351,351,351,350,350,350,350,350,350,350,350,350,350,349,349,349,348,348,348,348,348,348,348,348,347,347,347,347,347,347,347,347,347,347,347,346,346,346,346,346,346,346,346,345,345,345,345,345,345,345,345,345,345,344,344,344,344,344,344,344,344,344,343,343,343,343,343,343,342,342,342,342,342,342,342,342,342,341,341,341,341,341,341,341,341,341,341,340,340,340,340,340,340,340,340,340,340,340,339,339,339,339,339,339,339,339,338,338,338,338,338,338,338,338,338,337,337,337,337,337,337,337,337,336,336,336,336,336,336,336,336,336,336,336,336,335,335,335,335,335,335,335,335,335,334,334,334,334,334,334,334,334,334,334,334,334,334,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,332,332,332,332,332,331,331,331,331,331,331,331,331,331,331,330,330,330,330,330,330,330,330,330,330,329,329,329,329,329,329,328,328,328,328,328,328,328,328,328,327,327,327,327,327,327,327,327,327,327,327,326,326,326,326,326,326,326,326,325,325,325,325,325,325,325,325,325,325,325,324,324,324,324,324,324,324,324,324,323,323,323,323,323,323,323,323,323,323,323,323,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,321,321,321,321,321,321,321,321,321,321,320,320,320,320,320,320,320,320,320,320,320,319,319,319,319,319,319,319,319,319,319,319,319,318,318,318,318,318,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,316,316,316,316,316,316,315,315,315,315,315,315,315,315,315,314,314,314,314,314,314,314,314,314,314,313,313,313,313,313,313,312,312,312,312,312,312,311,311,311,311,311,311,311,311,311,311,311,311,310,310,310,310,310,310,310,310,310,310,310,310,310,310,310,309,309,309,309,309,309,309,309,309,308,308,308,308,308,308,308,307,307,307,307,307,307,307,307,307,307,307,306,306,306,306,306,306,305,305,305,305,305,305,305,305,305,305,305,305,305,304,304,304,304,304,304,304,304,304,304,304,304,303,303,303,303,303,303,303,303,303,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,301,301,301,301,301,301,300,300,300,300,300,300,300,300,300,300,299,299,299,299,299,298,298,298,298,298,298,297,297,297,297,297,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,295,295,295,295,295,295,295,295,295,295,295,294,294,294,294,294,294,294,294,294,294,294,294,293,293,293,293,293,293,292,292,292,292,292,292,292,292,292,292,291,291,291,291,291,291,291,291,291,291,291,290,290,290,290,290,290,290,290,290,290,290,290,290,290,290,289,289,289,289,289,289,289,289,289,289,289,289,289,288,288,288,288,288,288,288,288,288,288,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,286,286,286,286,286,286,286,286,286,285,285,285,285,285,285,285,285,285,285,285,285,284,284,284,284,284,284,284,284,284,284,284,283,283,283,283,283,283,283,283,283,283,283,283,283,282,282,282,282,282,282,282,282,282,282,281,281,281,281,281,280,280,280,280,280,280,280,279,279,279,279,279,279,279,279,279,279,279,278,278,278,278,278,278,278,278,278,278,278,278,278,278,277,277,277,277,277,277,277,277,277,277,277,276,276,276,275,275,275,275,275,275,274,274,274,274,274,274,274,274,274,274,274,273,273,273,273,273,273,273,273,273,273,273,273,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,271,271,271,271,271,271,271,270,270,270,270,270,269,269,269,269,269,269,269,269,269,269,268,268,268,268,268,268,268,268,268,268,267,267,267,267,267,267,267,267,267,267,267,266,266,266,266,266,266,266,266,265,265,265,265,265,265,265,265,265,265,265,264,264,264,264,264,264,264,264,264,264,263,263,263,263,263,263,262,262,262,262,262,262,262,262,262,261,261,261,261,261,261,260,260,260,260,260,260,260,260,260,260,259,259,259,259,259,259,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,257,257,257,257,257,257,257,257,257,257,257,257,257,257,256,256,256,256,256,256,256,256,255,255,255,255,255,255,255,255,255,254,254,254,254,254,254,254,254,254,254,253,253,253,253,253,253,253,253,253,253,252,252,252,252,252,252,251,251,251,251,251,251,251,251,251,251,251,250,250,250,250,250,250,250,250,250,250,250,250,250,249,249,249,249,249,249,249,249,249,249,249,249,249,249,248,248,248,248,248,248,248,248,248,247,247,247,247,247,247,247,247,246,246,246,246,246,245,245,245,245,245,245,245,244,244,244,244,244,244,244,244,244,244,244,244,243,243,243,243,243,243,243,243,243,243,243,243,242,242,242,242,242,242,242,242,242,242,241,241,241,241,241,241,241,241,241,241,241,240,240,240,240,240,240,240,240,240,240,240,239,239,239,239,239,239,239,239,238,238,238,238,238,238,238,238,238,238,237,237,237,237,237,237,237,236,236,236,236,236,236,236,236,236,236,235,235,235,235,235,235,235,235,235,235,235,235,234,234,234,234,234,234,233,233,233,233,233,233,233,233,233,232,232,232,232,232,232,232,231,231,231,231,231,231,231,231,231,231,230,230,230,230,230,230,230,230,230,230,230,230,230,229,229,229,229,229,229,229,229,229,229,229,229,229,229,228,228,228,228,228,228,228,228,228,228,228,228,228,228,227,227,227,227,227,227,227,227,227,226,226,226,226,226,226,226,226,226,226,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,224,224,224,224,224,224,224,224,224,224,223,223,223,223,223,223,223,223,223,223,223,223,222,222,222,222,222,222,222,222,222,222,221,221,221,221,221,221,221,221,221,221,221,220,220,220,220,220,220,220,220,220,220,220,220,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,217,217,217,217,217,217,217,217,217,217,217,217,217,217,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,215,215,215,215,215,215,215,214,214,214,214,214,214,214,214,214,214,213,213,213,213,213,213,213,213,212,212,212,212,212,212,212,212,211,211,211,211,211,211,211,211,211,211,211,211,211,210,210,210,210,210,210,210,210,210,209,209,209,209,209,209,209,209,209,209,209,208,208,208,208,208,208,208,208,207,207,207,207,207,207,207,206,206,206,206,206,206,206,206,206,206,206,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,204,204,204,204,204,204,204,203,203,203,203,203,203,203,203,203,203,203,202,202,202,202,202,202,202,202,202,202,202,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,200,200,200,200,200,200,200,200,199,199,199,199,199,199,199,199,198,198,198,198,198,198,197,197,197,197,197,197,197,197,196,196,196,196,196,196,196,196,196,196,196,196,195,195,195,195,195,195,195,195,194,194,194,194,194,194,194,194,193,193,193,193,193,193,193,193,193,193,193,193,193,192,192,192,192,192,192,192,192,192,191,191,191,191,190,190,190,190,190,190,190,190,190,190,190,190,190,190,189,189,189,189,189,189,189,189,189,188,188,188,188,188,188,188,188,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,186,186,186,186,186,186,186,186,185,185,185,185,185,185,185,185,185,185,185,185,184,184,184,184,184,184,184,184,184,184,183,183,183,183,183,183,183,183,183,183,183,182,182,182,182,182,182,182,182,182,182,182,181,181,181,181,181,181,181,181,181,181,181,181,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,178,178,178,178,178,178,178,178,178,178,177,177,177,177,177,177,177,177,177,177,177,177,177,176,176,176,176,176,176,176,175,175,175,175,175,175,175,175,175,174,174,174,174,174,174,174,174,174,174,174,173,173,173,173,173,173,173,172,172,172,172,172,172,172,172,172,172,172,172,171,171,171,171,171,171,171,171,171,171,171,170,170,170,170,170,170,169,169,169,169,169,169,169,169,168,168,168,168,168,168,168,168,167,167,167,167,167,167,167,167,167,167,167,166,166,166,166,166,166,166,166,166,166,165,165,165,165,165,165,165,165,164,164,164,164,164,164,164,164,163,163,163,163,163,163,163,163,163,162,162,162,162,162,161,161,161,161,161,161,161,161,161,161,160,160,160,160,160,160,160,160,160,160,160,160,159,159,159,159,159,159,159,159,159,159,159,159,159,159,158,158,158,158,158,158,158,158,158,157,157,157,157,157,157,157,157,157,157,157,157,157,156,156,156,156,156,156,156,156,156,156,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,154,154,154,154,154,154,154,154,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,151,151,151,151,151,151,151,150,150,150,150,150,150,150,150,150,150,149,149,149,149,149,149,149,149,149,149,149,149,149,148,148,148,148,148,148,148,148,148,148,148,147,147,147,147,147,147,147,147,146,146,146,146,146,146,146,146,146,146,146,145,145,145,145,145,145,145,144,144,144,144,144,144,144,144,144,144,144,143,143,143,143,143,143,143,143,143,143,142,142,142,142,142,142,142,142,142,142,141,141,141,141,141,141,141,141,141,141,141,141,141,140,140,140,140,140,140,140,140,140,140,140,140,139,139,139,139,139,139,138,138,138,138,138,138,138,138,138,138,138,138,137,137,137,137,137,137,137,137,137,137,137,137,137,136,136,136,136,136,136,136,136,135,135,135,135,135,135,134,134,134,134,134,134,134,134,134,134,133,133,133,133,133,133,133,133,133,132,132,132,132,132,132,132,131,131,131,131,131,131,131,131,131,130,130,130,130,130,130,130,130,130,129,129,129,129,129,128,128,128,128,128,128,128,127,127,127,127,127,127,127,127,126,126,126,126,126,126,126,126,126,125,125,125,125,125,124,124,124,124,124,124,123,123,123,123,123,123,123,123,123,123,123,123,123,122,122,122,122,122,122,122,122,122,122,121,121,121,121,121,121,121,121,120,120,120,120,120,120,120,119,119,119,119,119,119,119,118,118,118,118,118,118,118,118,118,118,117,117,117,117,117,117,117,117,117,117,116,116,116,116,116,116,116,116,116,116,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,114,114,114,113,113,113,113,113,113,113,113,113,113,113,113,112,112,112,112,112,112,111,111,111,111,111,111,111,110,110,110,110,110,110,110,110,110,110,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,108,108,108,108,108,108,108,108,107,107,107,107,107,107,107,107,107,107,107,106,106,106,106,106,106,106,106,106,105,105,105,105,105,105,105,105,104,104,104,104,104,104,103,103,103,103,103,103,103,102,102,102,102,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,100,100,100,100,100,100,100,100,100,100,99,99,99,99,99,99,99,99,99,99,99,98,98,98,98,98,98,98,98,98,97,97,97,97,97,97,97,96,96,96,96,96,96,96,96,96,96,96,95,95,95,95,95,95,95,95,95,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,93,93,93,93,93,93,92,92,92,92,92,92,92,92,92,92,91,91,91,91,91,91,91,91,91,91,90,90,90,90,90,90,90,90,90,89,89,89,89,89,89,88,88,88,88,88,87,87,87,87,87,87,87,87,87,86,86,86,86,86,86,86,86,85,85,85,85,85,85,85,85,85,84,84,84,84,84,84,84,84,84,84,84,84,84,83,83,83,83,83,83,83,83,82,82,82,82,82,82,82,82,82,81,81,81,81,81,81,81,81,81,81,81,80,80,80,80,80,80,80,80,80,80,79,79,79,79,79,79,79,79,79,79,78,78,78,78,78,78,78,78,78,78,77,77,77,77,77,77,76,76,76,76,76,76,76,76,75,75,75,75,75,75,75,75,74,74,74,74,74,74,73,73,73,73,73,73,73,73,73,73,73,73,72,72,72,72,72,72,72,72,72,72,72,72,72,71,71,71,71,71,71,71,71,71,71,71,71,70,70,70,70,70,70,70,70,70,70,70,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,67,67,67,67,67,67,67,67,66,66,66,66,66,66,66,66,66,66,66,66,66,66,65,65,65,65,65,65,65,65,65,65,65,65,64,64,64,64,64,64,64,64,64,64,64,63,63,63,63,63,63,63,63,63,63,62,62,62,62,62,62,62,62,62,62,62,61,61,61,61,61,61,61,61,61,61,60,60,60,60,60,60,60,60,60,60,60,60,60,59,59,59,59,59,59,59,59,59,59,59,58,58,58,58,58,58,58,58,58,58,57,57,57,57,57,57,57,57,57,57,57,56,56,56,56,56,56,56,56,56,56,56,56,56,55,55,55,55,55,55,55,55,54,54,54,54,54,54,54,54,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,52,52,52,52,52,52,52,52,52,52,52,52,51,51,51,51,51,51,50,50,50,50,50,50,50,50,50,50,49,49,49,49,49,49,49,49,49,48,48,48,48,48,48,48,47,47,47,47,47,47,47,47,47,47,46,46,46,46,46,46,46,46,46,46,46,46,46,45,45,45,45,45,45,45,45,45,45,45,45,45,44,44,44,44,44,44,44,44,44,44,44,44,43,43,43,43,42,42,42,42,42,42,41,41,41,41,41,41,41,41,41,40,40,40,40,40,40,40,39,39,39,39,39,39,39,39,39,39,39,39,38,38,38,38,38,38,38,38,38,38,38,38,38,38,37,37,37,37,37,37,37,37,37,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,35,35,35,35,35,35,35,35,35,35,35,35,35,35,34,34,34,34,34,34,34,34,34,34,34,33,33,33,33,33,33,33,33,33,32,32,32,32,32,32,32,32,32,32,32,32,32,31,31,31,31,31,31,31,31,31,31,31,30,30,30,30,30,30,30,30,30,30,30,30,30,29,29,29,29,29,29,29,29,29,29,29,28,28,28,28,28,28,28,28,27,27,27,27,27,27,27,27,27,26,26,26,26,26,26,26,26,26,26,26,26,26,26,25,25,25,25,25,25,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,23,23,23,23,23,22,22,22,22,22,22,22,21,21,21,21,21,21,21,21,21,21,21,21,20,20,20,20,20,20,20,20,20,20,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,11,11,11,11,11,11,11,10,10,10,10,10,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,8,8,7,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0]

sorted:

[0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,31,31,31,32,32,32,32,32,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,34,34,34,34,34,34,34,34,34,34,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,37,37,37,37,37,37,37,37,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,39,39,39,39,39,39,39,39,39,39,39,39,40,40,40,40,40,40,40,41,41,41,41,41,41,41,41,41,42,42,42,42,42,42,43,43,43,43,44,44,44,44,44,44,44,44,44,44,44,44,45,45,45,45,45,45,45,45,45,45,45,45,45,46,46,46,46,46,46,46,46,46,46,46,46,46,47,47,47,47,47,47,47,47,47,47,48,48,48,48,48,48,48,49,49,49,49,49,49,49,49,49,50,50,50,50,50,50,50,50,50,50,51,51,51,51,51,51,52,52,52,52,52,52,52,52,52,52,52,52,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,54,54,54,54,54,54,54,54,55,55,55,55,55,55,55,55,56,56,56,56,56,56,56,56,56,56,56,56,56,57,57,57,57,57,57,57,57,57,57,57,58,58,58,58,58,58,58,58,58,58,59,59,59,59,59,59,59,59,59,59,59,60,60,60,60,60,60,60,60,60,60,60,60,60,61,61,61,61,61,61,61,61,61,61,62,62,62,62,62,62,62,62,62,62,62,63,63,63,63,63,63,63,63,63,63,64,64,64,64,64,64,64,64,64,64,64,65,65,65,65,65,65,65,65,65,65,65,65,66,66,66,66,66,66,66,66,66,66,66,66,66,66,67,67,67,67,67,67,67,67,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,70,70,70,70,70,70,70,70,70,70,70,71,71,71,71,71,71,71,71,71,71,71,71,72,72,72,72,72,72,72,72,72,72,72,72,72,73,73,73,73,73,73,73,73,73,73,73,73,74,74,74,74,74,74,75,75,75,75,75,75,75,75,76,76,76,76,76,76,76,76,77,77,77,77,77,77,78,78,78,78,78,78,78,78,78,78,79,79,79,79,79,79,79,79,79,79,80,80,80,80,80,80,80,80,80,80,81,81,81,81,81,81,81,81,81,81,81,82,82,82,82,82,82,82,82,82,83,83,83,83,83,83,83,83,84,84,84,84,84,84,84,84,84,84,84,84,84,85,85,85,85,85,85,85,85,85,86,86,86,86,86,86,86,86,87,87,87,87,87,87,87,87,87,88,88,88,88,88,89,89,89,89,89,89,90,90,90,90,90,90,90,90,90,91,91,91,91,91,91,91,91,91,91,92,92,92,92,92,92,92,92,92,92,93,93,93,93,93,93,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,95,95,95,95,95,95,95,95,95,96,96,96,96,96,96,96,96,96,96,96,97,97,97,97,97,97,97,98,98,98,98,98,98,98,98,98,99,99,99,99,99,99,99,99,99,99,99,100,100,100,100,100,100,100,100,100,100,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,102,102,102,102,103,103,103,103,103,103,103,104,104,104,104,104,104,105,105,105,105,105,105,105,105,106,106,106,106,106,106,106,106,106,107,107,107,107,107,107,107,107,107,107,107,108,108,108,108,108,108,108,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,110,110,110,110,110,110,110,110,110,110,111,111,111,111,111,111,111,112,112,112,112,112,112,113,113,113,113,113,113,113,113,113,113,113,113,114,114,114,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,116,116,116,116,116,116,116,116,116,116,117,117,117,117,117,117,117,117,117,117,118,118,118,118,118,118,118,118,118,118,119,119,119,119,119,119,119,120,120,120,120,120,120,120,121,121,121,121,121,121,121,121,122,122,122,122,122,122,122,122,122,122,123,123,123,123,123,123,123,123,123,123,123,123,123,124,124,124,124,124,124,125,125,125,125,125,126,126,126,126,126,126,126,126,126,127,127,127,127,127,127,127,127,128,128,128,128,128,128,128,129,129,129,129,129,130,130,130,130,130,130,130,130,130,131,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,133,133,133,133,133,133,133,133,133,134,134,134,134,134,134,134,134,134,134,135,135,135,135,135,135,136,136,136,136,136,136,136,136,137,137,137,137,137,137,137,137,137,137,137,137,137,138,138,138,138,138,138,138,138,138,138,138,138,139,139,139,139,139,139,140,140,140,140,140,140,140,140,140,140,140,140,141,141,141,141,141,141,141,141,141,141,141,141,141,142,142,142,142,142,142,142,142,142,142,143,143,143,143,143,143,143,143,143,143,144,144,144,144,144,144,144,144,144,144,144,145,145,145,145,145,145,145,146,146,146,146,146,146,146,146,146,146,146,147,147,147,147,147,147,147,147,148,148,148,148,148,148,148,148,148,148,148,149,149,149,149,149,149,149,149,149,149,149,149,149,150,150,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,154,154,154,154,154,154,154,154,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,156,156,156,156,156,156,156,156,156,156,157,157,157,157,157,157,157,157,157,157,157,157,157,158,158,158,158,158,158,158,158,158,159,159,159,159,159,159,159,159,159,159,159,159,159,159,160,160,160,160,160,160,160,160,160,160,160,160,161,161,161,161,161,161,161,161,161,161,162,162,162,162,162,163,163,163,163,163,163,163,163,163,164,164,164,164,164,164,164,164,165,165,165,165,165,165,165,165,166,166,166,166,166,166,166,166,166,166,167,167,167,167,167,167,167,167,167,167,167,168,168,168,168,168,168,168,168,169,169,169,169,169,169,169,169,170,170,170,170,170,170,171,171,171,171,171,171,171,171,171,171,171,172,172,172,172,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,174,174,174,175,175,175,175,175,175,175,175,175,176,176,176,176,176,176,176,177,177,177,177,177,177,177,177,177,177,177,177,177,178,178,178,178,178,178,178,178,178,178,179,179,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,181,181,181,181,181,181,181,181,181,181,181,181,182,182,182,182,182,182,182,182,182,182,182,183,183,183,183,183,183,183,183,183,183,183,184,184,184,184,184,184,184,184,184,184,185,185,185,185,185,185,185,185,185,185,185,185,186,186,186,186,186,186,186,186,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,188,188,188,188,188,188,188,188,189,189,189,189,189,189,189,189,189,190,190,190,190,190,190,190,190,190,190,190,190,190,190,191,191,191,191,192,192,192,192,192,192,192,192,192,193,193,193,193,193,193,193,193,193,193,193,193,193,194,194,194,194,194,194,194,194,195,195,195,195,195,195,195,195,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,198,198,198,198,198,198,199,199,199,199,199,199,199,199,200,200,200,200,200,200,200,200,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,202,202,202,202,202,202,202,202,202,202,202,203,203,203,203,203,203,203,203,203,203,203,204,204,204,204,204,204,204,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,206,206,206,206,206,206,206,206,206,206,206,207,207,207,207,207,207,207,208,208,208,208,208,208,208,208,209,209,209,209,209,209,209,209,209,209,209,210,210,210,210,210,210,210,210,210,211,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,213,213,213,213,213,213,213,213,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,217,217,217,217,217,217,217,217,217,217,217,217,217,217,218,218,218,218,219,219,219,219,219,219,219,219,219,219,219,220,220,220,220,220,220,220,220,220,220,220,220,221,221,221,221,221,221,221,221,221,221,221,222,222,222,222,222,222,222,222,222,222,223,223,223,223,223,223,223,223,223,223,223,223,224,224,224,224,224,224,224,224,224,224,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,226,226,226,226,226,226,226,226,226,226,227,227,227,227,227,227,227,227,227,228,228,228,228,228,228,228,228,228,228,228,228,228,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,230,230,230,230,230,230,230,230,230,230,230,230,231,231,231,231,231,231,231,231,231,231,232,232,232,232,232,232,232,233,233,233,233,233,233,233,233,233,234,234,234,234,234,234,235,235,235,235,235,235,235,235,235,235,235,235,236,236,236,236,236,236,236,236,236,236,237,237,237,237,237,237,237,238,238,238,238,238,238,238,238,238,238,239,239,239,239,239,239,239,239,240,240,240,240,240,240,240,240,240,240,240,241,241,241,241,241,241,241,241,241,241,241,242,242,242,242,242,242,242,242,242,242,243,243,243,243,243,243,243,243,243,243,243,243,244,244,244,244,244,244,244,244,244,244,244,244,245,245,245,245,245,245,245,246,246,246,246,246,247,247,247,247,247,247,247,247,248,248,248,248,248,248,248,248,248,249,249,249,249,249,249,249,249,249,249,249,249,249,249,250,250,250,250,250,250,250,250,250,250,250,250,250,251,251,251,251,251,251,251,251,251,251,251,252,252,252,252,252,252,253,253,253,253,253,253,253,253,253,253,254,254,254,254,254,254,254,254,254,254,255,255,255,255,255,255,255,255,255,256,256,256,256,256,256,256,256,257,257,257,257,257,257,257,257,257,257,257,257,257,257,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,259,259,259,259,259,259,260,260,260,260,260,260,260,260,260,260,261,261,261,261,261,261,262,262,262,262,262,262,262,262,262,263,263,263,263,263,263,264,264,264,264,264,264,264,264,264,264,265,265,265,265,265,265,265,265,265,265,265,266,266,266,266,266,266,266,266,267,267,267,267,267,267,267,267,267,267,267,268,268,268,268,268,268,268,268,268,268,269,269,269,269,269,269,269,269,269,269,270,270,270,270,270,271,271,271,271,271,271,271,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,273,273,273,273,273,273,273,273,273,273,273,273,274,274,274,274,274,274,274,274,274,274,274,275,275,275,275,275,275,276,276,276,277,277,277,277,277,277,277,277,277,277,277,278,278,278,278,278,278,278,278,278,278,278,278,278,278,279,279,279,279,279,279,279,279,279,279,279,280,280,280,280,280,280,280,281,281,281,281,281,282,282,282,282,282,282,282,282,282,282,283,283,283,283,283,283,283,283,283,283,283,283,283,284,284,284,284,284,284,284,284,284,284,284,285,285,285,285,285,285,285,285,285,285,285,285,286,286,286,286,286,286,286,286,286,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,288,288,288,288,288,288,288,288,288,288,289,289,289,289,289,289,289,289,289,289,289,289,289,290,290,290,290,290,290,290,290,290,290,290,290,290,290,290,291,291,291,291,291,291,291,291,291,291,291,292,292,292,292,292,292,292,292,292,292,293,293,293,293,293,293,294,294,294,294,294,294,294,294,294,294,294,294,295,295,295,295,295,295,295,295,295,295,295,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,297,297,297,297,297,298,298,298,298,298,298,299,299,299,299,299,300,300,300,300,300,300,300,300,300,300,301,301,301,301,301,301,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,303,303,303,303,303,303,303,303,303,304,304,304,304,304,304,304,304,304,304,304,304,305,305,305,305,305,305,305,305,305,305,305,305,305,306,306,306,306,306,306,307,307,307,307,307,307,307,307,307,307,307,308,308,308,308,308,308,308,309,309,309,309,309,309,309,309,309,310,310,310,310,310,310,310,310,310,310,310,310,310,310,310,311,311,311,311,311,311,311,311,311,311,311,311,312,312,312,312,312,312,313,313,313,313,313,313,314,314,314,314,314,314,314,314,314,314,315,315,315,315,315,315,315,315,315,316,316,316,316,316,316,317,317,317,317,317,317,317,317,317,317,317,317,317,317,317,318,318,318,318,318,319,319,319,319,319,319,319,319,319,319,319,319,320,320,320,320,320,320,320,320,320,320,320,321,321,321,321,321,321,321,321,321,321,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,323,323,323,323,323,323,323,323,323,323,323,323,324,324,324,324,324,324,324,324,324,325,325,325,325,325,325,325,325,325,325,325,326,326,326,326,326,326,326,326,327,327,327,327,327,327,327,327,327,327,327,328,328,328,328,328,328,328,328,328,329,329,329,329,329,329,330,330,330,330,330,330,330,330,330,330,331,331,331,331,331,331,331,331,331,331,332,332,332,332,332,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,334,334,334,334,334,334,334,334,334,334,334,334,334,335,335,335,335,335,335,335,335,335,336,336,336,336,336,336,336,336,336,336,336,336,337,337,337,337,337,337,337,337,338,338,338,338,338,338,338,338,338,339,339,339,339,339,339,339,339,340,340,340,340,340,340,340,340,340,340,340,341,341,341,341,341,341,341,341,341,341,342,342,342,342,342,342,342,342,342,343,343,343,343,343,343,344,344,344,344,344,344,344,344,344,345,345,345,345,345,345,345,345,345,345,346,346,346,346,346,346,346,346,347,347,347,347,347,347,347,347,347,347,347,348,348,348,348,348,348,348,348,349,349,349,350,350,350,350,350,350,350,350,350,350,351,351,351,351,351,351,351,352,352,352,352,352,353,353,353,353,353,353,353,353,353,353,353,353,354,354,354,354,354,354,355,355,355,355,355,355,355,355,355,355,356,356,356,356,356,356,356,357,357,357,357,357,357,357,357,358,358,358,358,358,358,358,358,358,358,358,359,359,359,359,359,359,359,359,359,359,359,359,359,360,360,360,360,360,360,360,360,360,360,360,361,361,361,361,361,361,361,361,361,362,362,362,362,362,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,364,364,364,364,364,364,364,364,364,364,364,364,364,365,365,365,365,365,365,365,365,365,365,365,365,366,366,366,366,366,366,366,366,366,366,366,366,367,367,367,367,367,367,367,367,367,367,368,368,368,368,368,368,368,369,369,369,369,369,369,369,369,369,369,369,369,369,370,370,370,370,370,370,370,370,370,371,371,371,371,371,371,371,371,371,371,371,371,371,371,371,371,371,372,372,372,372,372,372,372,372,372,372,373,373,373,373,373,373,373,373,374,374,374,374,374,375,375,375,375,375,375,375,375,375,375,375,375,375,376,376,376,376,376,376,376,376,377,377,377,377,377,377,377,377,377,378,378,378,378,378,378,378,378,378,378,378,378,379,379,379,379,379,380,380,380,380,380,380,381,381,381,381,381,381,381,381,382,382,382,382,382,382,382,382,382,382,383,383,383,383,383,383,383,383,383,383,383,384,384,384,384,384,385,385,385,385,385,385,385,385,385,385,385,385,385,385,385,385,385,386,386,386,386,386,386,386,386,386,386,387,387,387,387,387,388,388,388,388,388,388,389,389,389,389,389,389,389,389,389,389,389,389,390,390,390,390,390,390,390,390,390,390,391,391,391,391,391,391,391,391,391,391,391,391,391,391,391,392,392,392,392,392,392,392,392,392,392,392,392,392,393,393,393,393,393,393,393,393,393,393,393,393,393,394,394,394,394,394,394,394,394,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,396,396,396,396,396,396,396,396,397,397,397,397,397,397,398,398,398,398,398,399,399,399,399,399,399,399,399,399,399,400,400,400,400,400,400,400,400,400,400,400,400,400,400,400,400,401,401,401,401,401,401,401,401,401,401,401,401,401,402,402,402,402,402,402,402,402,402,402,402,402,402,403,403,403,403,403,403,403,403,403,403,404,404,404,404,404,404,404,404,404,404,405,405,405,405,405,405,405,405,405,405,405,406,406,406,406,406,406,406,406,407,407,407,407,407,407,408,408,408,408,408,408,408,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,410,410,410,410,410,410,410,410,410,410,411,411,411,411,411,411,411,411,411,412,412,412,412,412,412,412,412,412,412,412,412,413,413,413,413,413,413,413,413,413,413,413,414,414,414,414,414,414,415,415,415,415,415,415,415,415,415,415,415,415,416,416,416,416,416,416,416,416,416,416,416,417,417,417,417,417,417,417,417,418,418,418,418,418,418,418,418,418,419,419,419,419,419,419,419,419,419,419,419,419,419,419,419,420,420,420,420,420,420,420,420,421,421,421,421,421,421,421,422,422,422,422,422,422,422,422,423,423,423,423,423,423,424,424,424,424,424,424,424,424,424,424,424,424,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,426,426,426,426,426,426,426,426,426,426,427,427,427,427,427,427,427,427,427,427,427,428,428,428,428,428,428,428,428,428,428,429,429,429,429,429,429,429,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,430,431,431,431,431,431,431,431,431,431,431,431,431,431,431,432,432,432,432,432,432,432,432,432,432,432,433,433,433,433,433,433,433,433,433,434,434,434,434,434,434,434,434,434,435,435,435,435,435,435,435,435,435,435,435,436,436,436,436,436,436,436,436,436,436,436,437,437,437,437,437,437,437,437,437,437,437,438,438,438,438,438,438,438,438,438,438,438,438,439,439,439,439,439,439,439,439,439,439,440,440,440,440,440,440,440,441,441,441,441,441,441,441,441,441,441,441,441,442,442,442,442,442,442,442,442,443,443,443,443,443,443,443,443,443,444,444,444,444,444,444,444,444,444,444,445,445,445,445,445,445,445,445,445,446,446,446,446,446,446,446,446,446,447,447,447,447,447,447,447,448,448,448,448,448,448,448,448,448,448,448,448,449,449,449,449,449,449,449,449,449,449,449,450,450,450,450,450,450,451,451,451,451,451,451,451,451,451,451,451,451,452,452,452,452,452,452,452,452,452,452,453,453,453,453,453,453,453,453,453,453,453,453,454,454,454,454,454,454,454,454,455,455,455,455,455,455,455,455,455,455,455,455,455,455,456,456,456,456,456,456,456,456,456,456,457,457,457,457,457,458,458,458,458,458,458,459,459,459,459,459,459,459,459,459,459,459,459,459,460,460,460,460,460,460,460,460,460,460,460,461,461,461,461,461,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,463,463,463,463,464,464,464,464,464,464,464,464,464,464,464,464,464,464,465,465,465,465,465,465,465,465,465,465,466,466,466,466,466,466,466,466,466,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,468,468,468,468,468,469,469,469,469,469,469,469,469,469,469,469,469,470,470,470,470,470,470,470,470,470,471,471,471,471,471,471,471,471,471,472,472,472,472,472,472,472,473,473,473,473,473,473,473,473,474,474,474,474,474,474,474,474,474,474,474,474,474,474,475,475,475,475,475,475,475,475,476,476,476,476,476,476,476,476,476,476,476,476,477,477,477,477,477,477,477,477,478,478,478,478,478,478,478,478,478,478,478,479,479,479,479,479,479,479,479,479,480,480,480,480,480,480,480,480,480,480,480,480,481,481,481,481,481,481,481,482,482,482,482,482,482,482,482,482,482,482,483,483,483,483,483,483,483,483,483,483,484,484,484,484,484,484,484,484,484,484,484,484,485,485,485,485,485,485,485,485,485,485,486,486,486,486,486,486,486,486,486,486,486,486,486,486,487,487,487,487,487,487,487,487,487,487,487,487,487,488,488,488,488,488,488,489,489,489,489,489,489,489,489,489,489,489,489,490,490,490,490,490,490,490,490,490,491,491,491,491,491,491,491,491,491,491,492,492,492,492,492,492,492,492,493,493,493,493,493,493,493,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,495,495,495,495,495,495,495,495,495,495,496,496,496,496,496,496,496,496,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,498,498,498,498,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,500,500,500,500,500,500,500,500,500,500,501,501,501,501,501,501,501,501,502,502,502,502,502,502,502,502,502,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,504,504,504,504,504,504,505,505,505,505,505,505,505,505,505,505,505,505,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,507,507,507,507,508,508,508,508,508,508,508,508,508,508,508,508,509,509,509,509,509,509,509,509,510,510,510,510,510,510,510,510,510,510,510,510,510,511,511,511,511,511,511,511,511,511,511,511,511,512,512,512,512,512,512,513,513,513,513,513,513,513,513,513,513,513,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,515,515,515,515,515,515,515,515,516,516,516,516,516,516,516,516,516,516,516,516,516,517,517,517,517,517,517,517,517,517,517,517,518,518,518,518,518,518,518,518,518,518,518,518,518,519,519,519,519,519,519,519,519,519,519,519,519,519,520,520,520,520,520,520,520,520,521,521,521,521,521,521,521,521,521,522,522,522,522,522,522,522,522,522,522,522,522,522,523,523,523,523,523,523,523,523,523,523,524,524,524,524,524,524,524,524,524,524,524,525,525,525,525,525,525,525,525,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,527,527,527,527,527,527,527,527,527,527,528,528,528,528,528,528,528,528,528,529,529,529,529,529,529,529,529,529,529,530,530,530,530,530,530,530,530,531,531,531,531,531,531,531,532,532,532,532,532,532,533,533,533,533,533,533,533,533,533,534,534,534,534,534,534,534,534,534,534,534,534,535,535,535,535,535,535,535,535,535,536,536,536,536,536,536,536,536,536,536,536,536,537,537,537,538,538,538,538,538,538,539,539,539,539,539,539,539,540,540,540,540,540,540,541,541,541,541,541,541,541,541,541,541,542,542,542,542,542,542,542,542,542,543,543,543,543,543,543,543,543,543,543,543,543,543,543,544,544,544,544,544,544,545,545,545,545,545,545,545,545,545,546,546,546,546,546,547,547,547,547,547,547,547,547,547,547,547,547,548,548,548,548,548,548,549,549,549,549,549,549,549,550,550,550,550,550,550,550,551,551,551,551,551,551,551,552,552,552,552,552,552,552,552,552,552,552,552,552,553,553,553,553,553,553,553,553,553,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,555,555,555,555,555,555,555,555,555,555,556,556,556,556,556,556,556,556,556,556,556,556,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,558,558,558,558,558,558,558,558,558,558,558,559,559,559,559,559,559,559,559,559,560,560,560,560,560,560,560,561,561,561,561,561,561,561,561,561,561,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,563,563,563,563,563,563,563,563,563,563,563,563,563,564,564,564,564,564,564,564,564,564,565,565,565,565,565,565,566,566,566,566,566,566,567,567,567,567,567,567,567,567,567,568,568,568,568,568,568,568,568,568,568,568,569,569,569,569,569,569,569,569,569,569,569,570,570,570,570,570,570,570,571,571,571,571,571,571,571,571,571,571,571,571,572,572,572,572,572,572,572,572,572,572,572,572,572,572,573,573,573,573,573,573,573,573,573,573,574,574,574,574,574,574,574,574,574,575,575,575,575,575,575,575,575,575,575,575,576,576,576,576,576,576,576,576,576,576,576,576,576,577,577,577,577,577,577,577,577,577,577,578,578,578,578,578,578,578,578,578,579,579,579,579,579,579,579,579,579,579,579,579,579,580,580,580,580,580,580,580,580,580,580,581,581,581,581,581,581,581,581,581,581,581,581,582,582,582,582,582,582,582,582,582,582,582,582,582,583,583,583,583,583,583,583,583,583,584,584,584,584,584,584,584,585,585,585,585,585,585,586,586,586,586,586,586,586,586,586,586,586,586,586,586,586,587,587,587,587,587,587,587,587,587,587,588,588,588,588,588,588,588,589,589,589,589,589,589,589,589,589,589,589,589,589,589,590,590,590,590,590,590,590,591,591,591,591,591,591,591,592,592,592,592,592,592,592,592,593,593,593,593,593,593,593,593,593,593,594,594,594,594,594,594,594,594,594,594,594,594,595,595,595,595,595,595,595,595,595,595,595,595,595,596,596,596,596,596,596,596,596,596,596,596,597,597,597,597,597,597,598,598,598,598,598,598,598,598,598,598,599,599,599,599,599,599,599,599,599,599,599,599,599,599,600,600,600,600,600,600,600,600,600,600,601,601,601,601,601,601,601,601,601,601,601,601,601,602,602,602,602,602,603,603,603,603,603,603,603,603,603,603,603,603,603,604,604,604,604,604,604,604,604,605,605,605,605,605,605,605,605,605,605,605,606,606,606,606,606,606,606,606,606,607,607,607,607,607,607,607,607,607,607,608,608,608,608,608,608,608,608,609,609,609,609,609,609,609,609,609,610,610,610,610,610,610,610,610,610,610,610,610,610,610,610,610,611,611,611,611,611,611,611,611,611,612,612,612,612,612,612,612,612,612,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,613,614,614,614,614,614,614,614,614,614,614,614,614,614,614,614,614,615,615,615,615,615,615,615,615,615,615,615,616,616,616,616,616,616,616,616,616,616,617,617,617,617,617,617,617,617,617,618,618,618,618,618,618,618,618,618,618,619,619,619,619,619,619,619,619,619,619,619,620,620,620,620,620,621,621,621,621,621,621,621,622,622,622,622,622,622,622,622,622,622,623,623,623,623,623,623,623,623,623,623,623,623,624,624,624,624,624,624,624,624,625,625,625,625,625,625,625,625,625,625,625,625,626,626,626,626,626,626,626,626,626,626,626,626,627,627,627,627,627,627,627,628,628,628,628,628,628,628,629,629,629,629,629,629,630,630,630,630,630,630,630,630,630,630,630,630,630,631,631,631,631,632,632,632,632,632,632,632,632,633,633,633,633,633,633,634,634,634,634,634,634,634,635,635,635,635,635,635,635,635,635,635,635,635,635,636,636,636,636,636,636,636,636,636,636,637,637,637,637,637,637,637,638,638,638,638,638,638,639,639,639,639,639,640,640,640,640,640,640,640,641,641,641,641,641,641,641,641,641,641,641,641,642,642,642,642,642,642,642,642,642,642,642,642,643,643,643,643,643,643,643,643,643,643,643,643,644,644,644,644,644,644,644,644,644,645,645,645,645,645,645,645,645,645,645,645,645,645,645,645,646,646,646,646,646,646,646,646,646,646,646,646,647,647,647,647,647,647,647,647,647,647,647,647,648,648,648,648,648,648,648,648,648,648,649,649,649,649,649,649,649,649,649,649,649,649,649,650,650,650,650,650,650,650,650,650,650,650,651,651,651,651,651,651,651,651,651,651,651,652,652,652,652,652,652,652,652,652,652,652,652,653,653,653,653,653,653,653,653,653,653,653,653,653,653,653,653,653,654,654,654,654,654,654,654,654,654,654,654,655,655,655,655,655,655,655,655,655,655,656,656,656,656,656,656,656,656,657,657,657,657,657,657,657,657,657,657,658,658,658,658,658,658,658,658,658,658,658,659,659,659,659,659,659,659,660,660,660,660,660,660,660,660,661,661,661,661,661,661,661,661,662,662,662,662,662,662,662,662,662,662,662,663,663,663,663,663,663,663,663,663,663,663,663,663,663,663,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,665,665,665,665,665,665,665,665,665,665,666,666,666,666,666,666,666,667,667,667,667,668,668,668,668,668,668,668,669,669,669,669,669,669,669,669,669,669,670,670,670,670,670,670,670,670,670,670,670,670,671,671,671,671,671,671,671,671,671,671,671,672,672,672,672,672,672,673,673,673,673,673,673,673,674,674,674,674,674,674,674,674,675,675,675,675,675,675,675,675,675,675,676,676,676,676,676,676,676,676,676,677,677,677,677,677,677,677,677,677,677,677,678,678,678,678,678,678,678,678,678,678,678,679,679,679,679,679,679,679,679,679,679,679,680,680,680,680,680,680,680,680,680,680,680,680,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,682,682,682,682,682,682,682,682,682,682,682,682,682,682,683,683,683,683,683,683,683,683,683,684,684,684,684,684,684,684,684,685,685,685,685,685,685,686,686,686,686,686,686,686,686,686,686,686,686,686,686,687,687,687,687,687,687,687,687,687,687,688,688,688,688,688,688,688,688,688,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,690,690,690,690,690,690,690,690,690,691,691,691,691,691,691,691,691,692,692,692,692,692,692,692,692,692,693,693,693,693,693,693,693,693,693,693,693,693,694,694,694,694,694,694,694,694,694,694,694,694,695,695,695,695,695,695,695,695,695,695,695,696,696,696,696,696,696,697,697,697,697,697,697,697,697,697,697,697,697,697,697,697,698,698,698,698,698,698,699,699,699,699,699,699,699,699,699,699,699,699,699,700,700,700,700,700,700,700,700,700,700,700,700,700,700,700,700,701,701,701,701,701,701,701,701,701,701,702,702,702,702,702,702,702,702,702,702,702,702,702,702,703,703,703,703,703,703,704,704,704,704,704,704,704,704,704,704,705,705,705,705,705,705,705,705,705,705,705,705,706,706,706,706,706,706,706,706,706,706,706,706,707,707,707,707,707,707,707,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,708,709,709,709,709,709,709,709,709,709,709,709,709,709,710,710,710,710,710,710,710,710,710,710,710,710,710,710,711,711,711,711,711,711,711,711,711,712,712,712,712,712,712,712,713,713,713,713,713,713,713,713,713,713,714,714,714,714,714,714,715,715,715,715,715,715,715,716,716,716,716,716,716,716,716,716,717,717,717,717,717,717,717,717,717,717,717,718,718,718,718,718,718,718,718,718,718,718,718,718,718,719,719,719,719,719,719,719,719,719,719,719,720,720,720,720,720,720,720,720,720,720,720,721,721,721,721,721,721,721,721,721,721,722,722,722,722,722,722,722,722,722,722,723,723,723,723,723,723,723,723,723,723,723,723,724,724,724,724,725,725,725,725,725,725,725,725,725,725,725,725,726,726,726,726,726,726,726,727,727,727,727,727,727,727,727,727,727,728,728,728,728,728,728,728,728,728,728,728,728,728,729,729,729,729,729,729,729,729,729,729,729,730,730,730,730,730,730,730,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,732,732,732,732,732,732,732,732,732,732,732,733,733,733,733,733,733,733,733,733,733,733,733,733,733,734,734,734,734,734,734,734,734,734,734,734,734,734,734,735,735,735,735,735,735,735,735,736,736,736,736,736,736,736,736,736,737,737,737,737,737,737,737,737,738,738,738,738,738,738,738,738,738,738,738,738,738,739,739,739,739,739,739,739,739,739,739,739,739,739,740,740,740,740,740,740,740,740,740,740,741,741,741,741,741,741,741,741,741,741,741,741,741,741,742,742,742,742,742,742,742,742,742,742,743,743,743,743,743,743,743,744,744,744,744,744,744,744,745,745,745,745,745,745,745,745,745,745,745,745,745,746,746,746,746,746,746,746,746,746,746,746,746,746,747,747,747,747,747,747,747,747,747,747,747,747,748,748,748,748,748,748,748,748,749,749,749,749,749,749,749,749,750,750,750,750,750,750,750,750,750,750,750,750,750,751,751,751,751,751,751,752,752,752,752,752,752,752,752,752,753,753,753,753,753,753,753,753,753,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,755,755,755,755,755,755,755,755,755,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,757,757,757,757,757,757,757,758,758,758,758,758,758,758,758,758,758,758,758,759,759,759,759,759,759,759,759,759,759,759,760,760,760,760,761,761,761,761,761,761,761,761,761,762,762,762,762,762,762,762,762,762,762,762,763,763,763,763,763,763,763,763,763,763,763,764,764,764,764,764,764,764,764,764,764,764,764,765,765,765,765,765,765,765,765,765,765,766,766,766,766,766,766,766,767,767,767,767,767,767,767,767,767,767,767,768,768,768,768,768,768,768,768,769,769,769,769,769,769,769,769,769,769,770,770,770,770,770,770,770,770,770,770,771,771,771,771,771,771,771,771,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,773,773,773,773,773,773,773,773,773,773,773,773,773,773,774,774,774,774,774,774,775,775,775,775,775,775,775,775,775,775,775,776,776,776,776,776,776,776,776,776,776,776,776,777,777,777,777,777,777,777,778,778,778,778,778,778,778,778,778,778,778,779,779,779,779,779,779,779,779,779,779,779,780,780,780,780,780,780,780,780,780,780,780,780,780,780,781,781,781,781,781,781,781,781,781,782,782,782,782,782,782,783,783,783,783,783,783,783,783,783,784,784,784,784,784,784,784,784,784,785,785,785,785,785,785,785,785,785,785,785,785,785,786,786,786,786,786,786,786,786,786,787,787,787,787,787,787,788,788,788,788,788,788,788,788,788,788,788,788,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,790,790,790,790,790,790,790,790,790,790,791,791,791,791,791,791,791,791,791,791,791,791,792,792,792,792,792,792,792,792,792,792,792,793,793,793,793,793,793,793,793,793,793,793,793,793,793,794,794,794,794,794,795,795,795,795,795,795,795,795,795,796,796,796,796,796,796,796,796,796,796,796,797,797,797,797,797,797,798,798,798,798,798,798,798,798,798,799,799,799,799,799,799,799,799,799,799,799,799,799,800,800,800,800,800,800,800,800,800,800,800,800,801,801,801,801,801,801,801,802,802,802,802,802,802,802,802,802,803,803,803,803,803,804,804,804,804,804,804,804,804,804,804,804,805,805,805,805,805,805,805,805,805,805,805,805,805,805,805,806,806,806,806,806,806,806,806,806,806,807,807,807,807,807,807,807,807,807,807,807,807,808,808,808,808,808,808,808,808,808,809,809,809,809,809,809,810,810,810,810,810,810,810,810,810,810,811,811,811,811,811,811,811,811,811,811,811,811,811,811,811,811,811,812,812,812,812,812,812,812,812,813,813,813,813,813,813,813,813,813,813,813,814,814,814,814,814,814,814,814,814,815,815,815,815,815,815,816,816,816,816,816,816,816,817,817,817,817,817,817,817,817,817,817,817,818,818,818,818,818,818,818,818,818,818,819,819,819,819,819,819,819,819,819,820,820,820,820,820,820,820,820,820,820,820,820,821,821,821,821,821,821,821,821,821,821,821,821,821,821,822,822,822,822,822,822,823,823,823,823,823,823,823,823,823,823,824,824,824,824,824,824,824,824,824,824,825,825,825,825,825,825,825,825,825,825,825,825,825,826,826,826,826,826,826,826,827,827,827,827,827,827,827,827,828,828,828,828,828,828,828,828,828,828,828,828,829,829,829,829,829,829,829,829,829,829,829,829,829,830,830,830,830,830,830,830,830,830,830,830,830,830,831,831,831,831,831,831,831,832,832,832,832,832,832,832,832,832,832,833,833,833,833,833,833,834,834,834,834,834,834,834,834,834,834,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,836,836,836,836,836,836,836,837,837,837,837,837,837,837,837,837,837,838,838,838,838,838,838,838,838,838,839,839,839,839,839,839,839,839,839,840,840,840,840,840,840,840,841,841,841,841,841,841,841,841,841,841,841,841,841,841,842,842,842,842,842,842,842,842,842,842,842,842,842,843,843,843,843,843,843,843,843,843,843,843,844,844,844,844,844,844,844,845,845,845,845,845,845,845,845,845,846,846,846,846,846,846,846,846,846,847,847,847,847,847,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,849,849,849,849,849,849,849,849,849,849,849,849,850,850,850,850,850,850,850,850,850,851,851,851,851,851,851,851,851,851,851,852,852,852,852,852,852,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,854,854,854,854,854,854,854,855,855,855,855,856,856,856,856,856,856,856,856,856,856,856,857,857,857,857,857,857,857,857,858,858,858,859,859,859,859,859,859,859,859,859,859,859,859,859,860,860,860,860,860,861,861,861,861,861,861,861,861,861,861,861,861,861,861,862,862,862,862,862,862,863,863,863,863,863,863,863,864,864,864,864,864,864,864,864,864,865,865,865,865,865,865,865,865,865,866,866,866,866,866,866,866,866,866,866,866,866,867,867,867,867,867,867,867,867,867,867,868,868,868,868,868,868,868,868,868,868,868,868,868,868,869,869,869,869,869,869,869,869,869,870,870,870,870,870,870,870,870,870,871,871,871,871,871,871,871,871,871,871,871,871,871,872,872,872,872,872,872,872,872,872,872,872,873,873,873,873,873,873,873,873,873,873,874,874,874,874,874,874,874,875,875,875,875,875,875,875,875,875,875,876,876,876,876,876,876,876,876,876,877,877,877,877,877,877,877,877,877,877,877,877,877,878,878,878,878,878,878,878,878,878,878,879,879,879,879,879,879,879,879,879,879,879,880,880,880,880,880,881,881,881,881,881,881,881,881,881,881,881,881,882,882,882,882,882,882,882,883,883,883,883,883,883,883,883,883,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,885,885,885,885,885,885,885,885,885,885,885,886,886,886,886,886,886,886,886,887,887,887,887,887,887,887,887,887,887,888,888,888,888,888,888,888,888,888,888,888,889,889,889,889,889,889,889,889,889,890,890,890,890,890,890,890,890,890,890,890,891,891,891,891,891,891,891,891,891,891,892,892,892,892,892,892,892,892,892,892,893,893,893,893,893,893,893,893,893,893,894,894,894,894,894,894,894,894,894,894,894,895,895,895,895,895,895,895,895,895,895,895,896,896,896,896,896,896,897,897,897,897,897,897,897,897,897,897,898,898,898,898,898,898,898,899,899,899,899,899,900,900,900,900,900,900,900,900,901,901,901,901,901,901,901,902,902,902,902,902,902,902,902,902,902,902,903,903,903,903,903,904,904,904,904,904,904,904,905,905,905,905,905,905,906,906,906,906,906,906,906,906,906,906,906,906,906,907,907,907,907,907,907,907,907,908,908,908,908,908,908,908,908,908,908,909,909,909,909,909,909,909,909,909,910,910,910,910,910,910,910,910,911,911,911,911,911,911,911,911,911,911,911,911,912,912,912,912,912,912,912,912,913,913,913,913,913,913,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,915,915,915,915,915,915,915,915,915,915,915,916,916,916,916,916,916,916,916,916,917,917,917,917,917,917,917,917,917,918,918,918,918,918,918,918,918,918,918,918,918,918,919,919,919,919,919,919,919,919,919,919,920,920,920,920,920,920,920,920,921,921,921,921,921,921,921,921,921,921,921,921,921,921,922,922,922,922,922,922,922,922,922,922,922,922,922,922,923,923,923,923,923,923,923,923,923,924,924,924,925,925,925,925,925,925,925,925,925,925,925,925,925,925,926,926,926,926,926,926,926,926,926,926,926,926,926,926,926,926,926,927,927,927,928,928,928,928,929,929,929,929,929,929,929,929,929,930,930,930,930,930,930,930,930,930,930,930,930,930,931,931,931,931,931,931,932,932,932,932,932,932,932,932,932,932,932,932,932,932,933,933,933,933,933,933,933,933,933,933,933,933,934,934,934,934,934,935,935,935,935,935,935,935,935,935,935,935,935,936,936,936,936,936,936,936,936,936,937,937,937,937,937,937,937,937,937,937,938,938,938,938,938,938,938,938,938,939,939,939,939,939,939,939,940,940,940,940,940,940,940,940,940,940,940,940,940,941,941,941,941,941,941,941,941,941,941,941,942,942,942,942,942,942,942,942,943,943,943,943,943,943,943,943,943,943,944,944,944,944,944,944,944,944,944,944,944,945,945,945,945,945,945,945,945,945,945,945,946,946,946,946,946,946,946,946,946,946,947,947,947,947,947,947,947,947,947,947,947,947,948,948,948,948,948,948,948,948,948,949,949,949,949,949,949,949,949,949,949,949,949,949,950,950,950,950,950,950,950,950,951,951,951,951,951,951,951,951,951,951,952,952,952,952,952,952,952,952,952,952,952,952,952,952,952,952,952,953,953,953,953,953,953,953,953,953,953,953,953,953,953,954,954,954,954,954,954,955,955,955,955,956,956,956,956,956,956,956,956,956,956,956,957,957,957,957,957,957,957,957,957,957,957,957,958,958,958,958,958,958,958,958,958,958,958,958,958,959,959,959,959,959,959,959,959,959,960,960,960,960,960,960,960,960,960,961,961,961,961,961,961,962,962,962,962,962,962,962,962,962,963,963,963,963,963,963,963,963,963,963,963,963,963,963,964,964,964,964,964,964,964,964,964,964,965,965,965,965,965,965,966,966,966,966,966,966,966,966,966,966,966,967,967,967,967,967,967,967,967,967,967,968,968,968,968,968,968,969,969,969,969,969,969,969,969,969,969,969,969,969,970,970,970,970,970,970,970,970,970,970,970,971,971,971,971,971,971,971,971,971,971,971,971,972,972,972,972,972,972,972,972,972,973,973,973,973,973,973,973,973,973,973,974,974,974,974,974,974,974,974,974,974,974,974,974,975,975,975,975,975,975,976,976,976,976,976,976,976,976,977,978,978,978,978,978,978,978,978,979,979,979,979,979,979,979,979,979,979,980,980,980,980,980,980,980,980,980,980,980,980,980,980,980,980,981,981,981,981,981,981,981,981,981,981,981,981,981,981,982,982,982,982,982,982,982,982,982,982,982,983,983,983,983,983,983,983,983,983,983,984,984,984,984,984,984,984,984,984,984,984,984,984,985,985,985,985,985,985,985,986,986,986,986,986,986,986,986,986,986,986,986,986,987,987,987,987,987,987,987,987,987,987,987,987,987,987,987,988,988,988,988,988,988,988,988,988,989,989,989,989,989,989,989,989,989,989,989,990,990,990,990,990,990,990,990,990,990,990,990,990,991,991,991,991,991,991,991,991,991,991,992,992,992,992,992,992,992,992,992,992,993,993,993,993,993,994,994,994,994,994,994,994,994,994,994,994,994,995,995,995,995,995,995,995,996,996,996,996,996,996,996,997,997,997,997,997,997,998,998,998,998,998,998,998,999,999,999,999,999,999,999,999,999,999,999,999]