diff --git a/libavcodec/h264enc.c b/libavcodec/h264enc.c
index a4cf974..dd6e310 100644
--- a/libavcodec/h264enc.c
+++ b/libavcodec/h264enc.c
@@ -1658,6 +1658,24 @@ static void ff_h264_find_motion_vector_a
 	curx = x;
 	cury = y;
 	
+	{
+		int scanx = x;
+		int scany = y;
+		int xvec = -pred_mvx; // it's actually this difference which will be encoded!
+		int yvec = -pred_mvy;		
+		int sae = t->dspcontext.pix_abs[0][0](0,targetmb->Y[0], 
+			refframe->reconstructed_picture.data[0]	+ scany * refframe->reconstructed_picture.linesize[0] + scanx,
+			refframe->reconstructed_picture.linesize[0], 16);
+		sae += t->dspcontext.pix_abs[1][0](0,targetmb->U[0], 
+			refframe->reconstructed_picture.data[1]	+ (scany/2) * refframe->reconstructed_picture.linesize[1] + scanx/2,
+			refframe->reconstructed_picture.linesize[1], 8);
+		sae += t->dspcontext.pix_abs[1][0](0,targetmb->V[0], 
+			refframe->reconstructed_picture.data[2]	+ (scany/2) * refframe->reconstructed_picture.linesize[2] + scanx/2,
+			refframe->reconstructed_picture.linesize[2], 8);
+			
+		minbitsize = (mv_len_table[xvec+MVTABLE_OFFSET] + mv_len_table[yvec+MVTABLE_OFFSET] + sae_codeblocksize_relation[QP][sae_mapping[sae>>4]]);
+	}
+	
 	while (!done && numsteps < MAXSEARCHSTEPS)
 	{
 		int startx = curx - SEARCHWIDTH;
@@ -1699,7 +1717,7 @@ static void ff_h264_find_motion_vector_a
 						refframe->reconstructed_picture.data[2]	+ (scany/2) * refframe->reconstructed_picture.linesize[2] + scanx/2,
 						refframe->reconstructed_picture.linesize[2], 8);
 					
-					bitsize = (mv_len_table[xvec+MVTABLE_OFFSET] + mv_len_table[yvec+MVTABLE_OFFSET] + sae);
+					bitsize = (mv_len_table[xvec+MVTABLE_OFFSET] + mv_len_table[yvec+MVTABLE_OFFSET] + sae_codeblocksize_relation[QP][sae_mapping[sae>>4]]);
 			
 					if (bitsize < minbitsize)
 					{
diff --git a/libavcodec/h264encdata.h b/libavcodec/h264encdata.h
index cb20f7d..8267ebd 100644
--- a/libavcodec/h264encdata.h
+++ b/libavcodec/h264encdata.h
@@ -94,3 +94,581 @@ static const char mv_len_table[MVTABLE_O
 	19,19,19,19,21
 };
 
+static const int sae_mapping[SAE_ENCODED_SIZE_SIZE] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,2047,};
+
+static const int sae_codeblocksize_relation[52][2048] =
+{
+	{
+		55,113,155,202,247,289,333,374,413,452,489,523,555,584,612,637,660,681,701,719,735,751,765,779,792,804,816,827,838,849,859,868,878,888,897,907,916,925,934,943,952,961,970,978,986,994,1002,1009,1017,1024,1031,1038,1045,1051,1058,1064,1070,1076,1082,1088,1094,1100,1105,1110,1116,1121,1126,1131,1136,1141,1145,1150,1155,1159,1164,1168,1172,1177,1181,1185,1190,1194,1198,1202,1206,1210,1215,1219,1223,1226,1230,1234,1238,1241,1245,1248,1252,1255,1259,1262,1266,1269,1272,1276,1279,1282,1286,1289,1292,1295,1298,1301,1305,1308,1311,1314,1317,1320,1323,1326,1328,1331,1334,1337,1340,1342,1345,1348,1350,1353,1356,1358,1361,1364,1366,1369,1371,1374,1376,1379,1381,1384,1386,1388,1391,1393,1396,1398,1400,1403,1405,1407,1409,1412,1414,1416,1418,1421,1423,1425,1427,1429,1431,1433,1435,1437,1439,1442,1444,1446,1448,1450,1452,1454,1455,1457,1459,1461,1463,1465,1467,1468,1470,1472,1473,1475,1477,1479,1481,1483,1485,1487,1489,1491,1493,1494,1496,1498,1499,1501,1503,1505,1506,1508,1510,1512,1513,1515,1517,1519,1521,1522,1524,1525,1527,1529,1530,1532,1533,1535,1537,1538,1540,1541,1543,1545,1546,1548,1549,1551,1552,1554,1555,1557,1558,1559,1561,1562,1564,1565,1566,1568,1569,1571,1572,1573,1575,1576,1578,1580,1581,1583,1584,1586,
+		1587,1589,1590,1592,1593,1594,1595,1597,1598,1599,1600,1602,1603,1604,1606,1607,1609,1610,1611,1613,1614,1615,1617,1618,1619,1621,1622,1623,1624,1626,1627,1628,1629,1631,1632,1633,1634,1635,1636,1637,1638,1640,1640,1641,1642,1643,1645,1646,1647,1648,1649,1650,1651,1652,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1685,1686,1687,1688,1689,1690,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1704,1705,1706,1707,1707,1708,1709,1709,1710,1711,1712,1713,1714,1714,1715,1716,1717,1718,1718,1719,1720,1720,1721,1722,1723,1724,1724,1725,1726,1727,1728,1728,1729,1730,1731,1732,1732,1733,1734,1735,1735,1736,1737,1737,1738,1739,1740,1740,1741,1741,1742,1743,1743,1744,1745,1745,1746,1746,1747,1748,1748,1749,1749,1750,1751,1751,1752,1753,1753,1754,1755,1755,1756,1757,1757,1758,1759,1760,1760,1761,1761,1762,1762,1763,1764,1764,1765,1765,1766,1767,1768,1768,1769,1769,1769,1770,1770,1771,1771,1771,1771,1772,1772,1772,1773,1774,1774,1775,1775,1776,1776,1777,1777,1778,1779,1779,1780,1780,1781,1781,1782,1782,1783,1784,1784,1785,1785,1786,1786,1786,1787,1788,1788,1789,1789,1789,1789,1790,1791,1791,1792,1792,1792,1793,1793,1793,1794,1794,
+		1795,1795,1795,1796,1796,1796,1797,1797,1797,1798,1798,1798,1799,1799,1800,1800,1801,1801,1802,1802,1803,1804,1804,1804,1805,1806,1806,1806,1807,1807,1808,1808,1809,1809,1810,1810,1811,1811,1811,1812,1812,1812,1813,1813,1813,1814,1814,1814,1815,1815,1816,1817,1817,1817,1817,1817,1818,1818,1818,1818,1818,1818,1818,1818,1819,1820,1820,1820,1820,1821,1821,1822,1823,1823,1823,1824,1824,1824,1825,1825,1826,1826,1826,1826,1826,1826,1826,1826,1826,1826,1827,1827,1827,1827,1827,1827,1828,1828,1828,1828,1828,1829,1829,1829,1829,1829,1830,1830,1831,1831,1831,1831,1832,1833,1833,1833,1834,1835,1835,1835,1835,1835,1836,1836,1836,1836,1836,1836,1836,1837,1837,1837,1838,1838,1838,1838,1839,1839,1839,1839,1839,1839,1840,1840,1840,1840,1841,1841,1841,1841,1841,1841,1841,1841,1841,1841,1842,1842,1843,1843,1843,1843,1844,1844,1845,1845,1845,1845,1845,1845,1845,1845,1845,1846,1846,1847,1848,1848,1848,1848,1848,1848,1849,1849,1849,1849,1849,1849,1849,1849,1850,1850,1850,1850,1850,1850,1850,1851,1852,1853,1853,1853,1854,1854,1854,1855,1855,1855,1855,1856,1856,1856,1857,1857,1857,1857,1857,1857,1857,1857,1857,1857,1857,1858,1858,1858,1858,1858,1859,1859,1859,1860,1860,1860,1860,1860,1860,1860,1860,1861,1861,1861,1861,1862,1862,1862,1864,1864,1865,1865,1865,1865,1865,1865,1865,
+		1865,1865,1865,1865,1865,1865,1865,1865,1866,1866,1867,1867,1867,1867,1867,1867,1867,1867,1867,1867,1867,1867,1868,1868,1868,1869,1869,1869,1870,1870,1870,1871,1871,1871,1871,1871,1871,1871,1871,1871,1871,1871,1871,1872,1872,1872,1873,1874,1874,1875,1875,1876,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1878,1878,1878,1879,1881,1881,1881,1881,1882,1882,1883,1883,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1884,1885,1885,1886,1886,1887,1887,1888,1889,1889,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1890,1891,1892,1892,1892,1892,1893,1893,1893,1893,1893,1893,1893,1893,1893,1893,1893,1893,1893,1893,1893,1894,1894,1894,1895,1895,1896,1897,1897,1898,1898,1898,1899,1899,1899,1899,1899,1899,1899,1899,1899,1899,1900,1900,1900,1900,1900,1900,1901,1901,1901,1901,1901,1901,1901,1901,1901,1901,1901,1901,1901,1902,1903,1904,1904,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1905,1906,1907,1908,1908,1909,1909,1910,1911,1911,1911,1911,1911,1911,1911,1911,1911,1911,1912,1912,1912,1913,1914,1914,1914,1915,1915,1916,1916,1916,1916,1917,1918,1918,1918,1919,1920,1920,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1922,1922,1922,1923,1924,1924,1924,
+		1924,1924,1925,1925,1925,1925,1925,1925,1926,1926,1926,1926,1926,1926,1927,1928,1928,1929,1929,1929,1929,1929,1929,1930,1930,1930,1930,1931,1932,1932,1932,1932,1933,1934,1934,1934,1934,1934,1934,1934,1935,1936,1936,1936,1936,1936,1936,1937,1937,1937,1937,1937,1937,1937,1938,1938,1938,1938,1938,1938,1939,1939,1939,1940,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1942,1942,1943,1943,1944,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1946,1947,1947,1947,1947,1947,1947,1947,1947,1947,1947,1947,1947,1947,1949,1949,1949,1949,1949,1949,1949,1949,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1951,1951,1951,1951,1951,1952,1952,1952,1952,1952,1952,1952,1952,1953,1953,1953,1953,1953,1953,1954,1955,1955,1955,1955,1955,1956,1956,1956,1957,1957,1957,1957,1957,1957,1957,1957,1957,1957,1957,1957,1957,1957,1957,1957,1959,1960,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1961,1962,1962,1962,1962,1962,1962,1963,1963,1964,1964,1964,1964,1965,1966,1966,1967,1967,1967,1968,1969,1970,1970,1970,1970,1970,1971,1972,1973,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1974,1975,
+		1975,1975,1976,1977,1977,1977,1977,1978,1978,1978,1978,1978,1978,1978,1978,1978,1978,1978,1978,1979,1980,1981,1981,1982,1982,1982,1982,1982,1982,1982,1982,1982,1982,1982,1982,1982,1982,1982,1982,1983,1984,1985,1986,1986,1988,1988,1990,1990,1990,1990,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1991,1992,1992,1992,1992,1993,1993,1994,1994,1994,1994,1994,1994,1994,1994,1994,1994,1994,1994,1994,1994,1994,1994,1995,1996,1998,1998,1998,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2001,2001,2002,2002,2002,2002,2002,2002,2004,2004,2004,2004,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2007,2008,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,
+		2010,2010,2010,2010,2010,2010,2010,2010,2010,2010,2011,2012,2012,2012,2012,2013,2013,2013,2013,2013,2013,2013,2013,2013,2013,2013,2013,2013,2014,2014,2014,2014,2015,2017,2018,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2019,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,
+		2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,2021,
+		2021,2021,2021,2021,2021,2021,2021,2021,2021
+	},
+	{
+		55,113,156,202,246,288,331,371,409,447,483,516,547,575,602,626,648,669,687,704,720,735,749,762,774,786,797,808,818,828,837,846,856,865,874,884,893,902,910,919,928,936,945,953,961,969,977,985,992,999,1006,1013,1020,1027,1034,1040,1046,1052,1059,1064,1070,1076,1081,1087,1092,1097,1102,1107,1112,1117,1121,1126,1131,1135,1140,1144,1148,1152,1157,1161,1165,1169,1173,1177,1181,1185,1189,1193,1197,1200,1204,1208,1211,1215,1219,1222,1226,1229,1232,1236,1239,1242,1246,1249,1252,1255,1258,1262,1265,1268,1271,1274,1277,1280,1283,1286,1289,1292,1295,1298,1300,1303,1306,1309,1311,1314,1317,1319,1322,1325,1327,1330,1333,1335,1338,1340,1343,1345,1348,1350,1352,1355,1357,1359,1362,1364,1366,1369,1371,1373,1376,1378,1380,1382,1384,1386,1389,1391,1393,1395,1397,1399,1401,1403,1405,1407,1409,1411,1413,1415,1417,1419,1421,1423,1425,1427,1429,1431,1433,1434,1436,1438,1439,1441,1443,1444,1446,1448,1450,1452,1454,1456,1457,1459,1461,1463,1465,1466,1468,1469,1471,1473,1475,1476,1478,1480,1482,1484,1485,1487,1489,1490,1492,1494,1495,1497,1498,1500,1501,1503,1505,1506,1508,1509,1511,1512,1514,1515,1517,1518,1520,1521,1523,1524,1526,1527,1528,1530,1531,1533,1534,1535,1537,1538,1540,1541,1542,1544,1545,1547,1548,1550,1551,1552,
+		1554,1555,1557,1558,1559,1561,1562,1563,1565,1566,1567,1568,1570,1571,1572,1574,1575,1576,1578,1579,1580,1582,1583,1584,1586,1587,1588,1589,1590,1592,1593,1594,1595,1596,1597,1598,1599,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1629,1630,1631,1631,1632,1633,1634,1636,1637,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1649,1650,1651,1652,1653,1654,1654,1655,1656,1657,1658,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1669,1670,1671,1672,1673,1673,1674,1675,1675,1676,1677,1678,1679,1680,1681,1681,1682,1683,1683,1684,1685,1685,1686,1687,1688,1688,1689,1690,1691,1692,1692,1693,1694,1695,1695,1696,1697,1698,1698,1699,1700,1700,1701,1702,1703,1704,1704,1705,1705,1706,1707,1707,1708,1709,1709,1709,1710,1710,1711,1712,1713,1713,1714,1714,1715,1715,1716,1717,1717,1718,1719,1719,1720,1720,1721,1722,1723,1724,1724,1725,1725,1726,1726,1727,1728,1728,1729,1729,1730,1731,1731,1732,1733,1733,1733,1733,1734,1734,1734,1735,1735,1735,1736,1736,1737,1737,1738,1739,1739,1740,1740,1741,1741,1742,1742,1743,1743,1744,1745,1745,1745,1746,1747,1747,1748,1748,1749,1749,1749,1750,1750,1751,1752,1752,1752,1752,1753,1754,1754,1754,1755,1755,1755,1755,1756,1757,1757,
+		1757,1757,1758,1759,1759,1760,1760,1760,1760,1761,1761,1761,1762,1762,1762,1763,1763,1764,1765,1765,1765,1766,1767,1767,1768,1768,1769,1769,1770,1770,1771,1771,1771,1772,1772,1773,1773,1773,1774,1774,1774,1775,1775,1775,1776,1776,1776,1777,1777,1778,1778,1779,1779,1780,1780,1780,1780,1780,1781,1781,1781,1781,1781,1781,1782,1782,1782,1782,1783,1783,1784,1785,1785,1785,1785,1786,1786,1786,1787,1787,1788,1788,1788,1788,1788,1788,1788,1788,1789,1789,1789,1789,1789,1789,1790,1790,1790,1790,1790,1791,1791,1791,1791,1791,1791,1792,1792,1793,1793,1793,1793,1793,1794,1795,1796,1796,1796,1797,1797,1797,1798,1798,1798,1798,1798,1798,1798,1798,1799,1799,1799,1799,1800,1800,1800,1800,1801,1801,1801,1801,1801,1802,1802,1802,1802,1802,1803,1803,1803,1803,1804,1804,1804,1804,1804,1804,1804,1804,1805,1805,1805,1805,1806,1806,1806,1807,1807,1807,1807,1807,1807,1807,1807,1808,1809,1810,1810,1810,1810,1810,1810,1810,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1812,1812,1812,1812,1812,1814,1814,1815,1815,1815,1816,1816,1816,1817,1817,1817,1817,1818,1818,1818,1818,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1820,1820,1820,1820,1820,1820,1821,1821,1822,1822,1822,1822,1822,1822,1822,1822,1823,1823,1823,1823,1824,1824,1824,1825,1826,1827,1827,1827,1827,1827,1827,1827,
+		1827,1827,1827,1827,1827,1827,1827,1827,1828,1828,1828,1828,1828,1828,1829,1829,1829,1829,1829,1829,1829,1829,1830,1830,1830,1831,1831,1831,1832,1832,1832,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1834,1834,1834,1835,1836,1836,1836,1837,1838,1838,1839,1839,1839,1839,1839,1839,1839,1839,1839,1839,1839,1839,1840,1840,1841,1843,1843,1843,1843,1844,1844,1845,1845,1845,1846,1846,1846,1846,1846,1846,1846,1846,1846,1846,1846,1846,1846,1846,1846,1846,1847,1847,1848,1848,1849,1849,1849,1851,1851,1851,1851,1851,1851,1851,1851,1851,1851,1851,1851,1852,1852,1852,1852,1853,1853,1853,1854,1854,1854,1854,1854,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1856,1856,1857,1858,1858,1858,1860,1860,1860,1860,1860,1860,1860,1860,1860,1860,1860,1860,1860,1861,1861,1862,1862,1862,1862,1862,1862,1862,1862,1862,1862,1862,1862,1862,1862,1862,1862,1863,1863,1864,1865,1865,1866,1866,1866,1866,1866,1866,1866,1866,1866,1866,1866,1866,1866,1866,1866,1867,1867,1867,1868,1869,1870,1870,1870,1871,1871,1872,1872,1872,1872,1872,1872,1872,1872,1872,1873,1873,1873,1874,1875,1876,1876,1876,1876,1877,1877,1877,1877,1878,1879,1879,1879,1880,1881,1882,1882,1883,1883,1883,1883,1883,1883,1883,1883,1883,1883,1883,1883,1883,1884,1884,1884,1884,1885,1885,1885,
+		1885,1885,1885,1885,1885,1885,1885,1887,1887,1887,1887,1887,1887,1888,1888,1889,1889,1889,1889,1889,1889,1889,1890,1890,1891,1891,1891,1892,1893,1893,1893,1894,1894,1894,1894,1894,1895,1895,1895,1895,1896,1896,1897,1897,1897,1897,1898,1898,1898,1898,1898,1898,1898,1898,1898,1898,1898,1899,1899,1899,1899,1900,1900,1901,1901,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1903,1904,1905,1906,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1907,1908,1908,1908,1908,1908,1908,1909,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1910,1911,1912,1912,1912,1912,1912,1912,1912,1912,1912,1913,1913,1913,1914,1914,1914,1914,1914,1914,1914,1914,1915,1915,1915,1915,1915,1916,1916,1916,1918,1918,1918,1918,1918,1918,1918,1918,1918,1918,1918,1918,1918,1918,1918,1918,1919,1920,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1921,1922,1922,1922,1922,1922,1922,1922,1923,1923,1925,1925,1925,1925,1925,1925,1926,1927,1927,1928,1928,1929,1930,1930,1930,1930,1930,1931,1933,1933,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1934,1935,
+		1935,1936,1937,1937,1937,1937,1937,1938,1938,1938,1938,1938,1938,1938,1938,1938,1938,1938,1938,1939,1940,1940,1940,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1941,1942,1943,1944,1944,1945,1945,1948,1949,1949,1949,1949,1949,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1950,1951,1953,1953,1953,1953,1953,1953,1953,1954,1954,1954,1954,1954,1954,1954,1954,1954,1954,1954,1954,1954,1954,1954,1955,1956,1958,1958,1958,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1959,1960,1961,1961,1962,1962,1962,1962,1962,1962,1963,1964,1964,1964,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1967,1969,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,
+		1970,1970,1970,1970,1970,1970,1970,1970,1970,1970,1971,1973,1973,1973,1973,1973,1973,1973,1973,1973,1973,1973,1973,1973,1973,1973,1973,1974,1974,1974,1974,1974,1975,1976,1977,1978,1978,1978,1978,1978,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1979,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1980,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,
+		1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,1981,
+		1981,1981,1981,1981,1981,1981,1981,1981,1981
+	},
+	{
+		39,92,134,173,210,245,282,317,349,379,409,437,464,488,511,532,552,570,587,602,617,630,643,655,666,677,687,697,707,716,725,733,741,750,758,766,775,783,791,799,806,814,822,829,837,844,851,858,865,872,879,886,893,899,906,913,919,925,932,938,944,950,956,961,967,972,977,983,988,993,998,1003,1007,1012,1016,1021,1025,1030,1034,1038,1043,1047,1051,1055,1059,1063,1067,1071,1074,1078,1082,1085,1089,1093,1096,1100,1103,1106,1110,1113,1116,1120,1123,1126,1129,1133,1136,1139,1142,1145,1148,1151,1155,1158,1161,1164,1167,1170,1172,1175,1178,1181,1184,1186,1189,1192,1195,1197,1200,1203,1205,1208,1211,1213,1216,1218,1221,1223,1226,1228,1231,1233,1235,1238,1240,1242,1245,1247,1249,1252,1254,1256,1258,1261,1263,1265,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1313,1315,1317,1319,1320,1322,1324,1326,1328,1329,1331,1333,1335,1337,1339,1341,1342,1344,1346,1347,1349,1351,1353,1354,1356,1358,1360,1361,1363,1365,1367,1368,1370,1371,1373,1375,1376,1378,1380,1381,1383,1384,1386,1388,1389,1391,1392,1394,1395,1397,1398,1400,1401,1403,1404,1406,1407,1408,1410,1411,1413,1414,1416,1417,1418,1420,1421,1423,1424,1426,1427,1428,1430,1431,1433,
+		1434,1436,1437,1439,1440,1441,1443,1444,1445,1447,1448,1449,1450,1452,1453,1455,1456,1457,1459,1460,1461,1463,1464,1465,1467,1468,1469,1470,1471,1473,1474,1475,1476,1477,1478,1479,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1492,1493,1494,1495,1496,1497,1498,1499,1500,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1532,1533,1534,1535,1536,1537,1538,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1551,1552,1553,1553,1554,1555,1555,1556,1557,1558,1559,1560,1561,1561,1562,1563,1564,1564,1565,1566,1566,1567,1568,1569,1569,1570,1571,1572,1572,1573,1574,1575,1576,1576,1577,1578,1579,1579,1580,1581,1581,1582,1582,1583,1585,1585,1586,1586,1587,1588,1588,1589,1590,1591,1591,1591,1592,1592,1593,1594,1594,1595,1595,1596,1596,1597,1598,1599,1599,1600,1601,1601,1602,1603,1604,1604,1605,1606,1606,1607,1607,1608,1609,1609,1610,1610,1611,1612,1613,1613,1614,1614,1615,1615,1615,1616,1616,1617,1617,1617,1617,1618,1618,1619,1619,1620,1620,1621,1621,1622,1622,1623,1624,1624,1624,1625,1626,1626,1627,1627,1628,1628,1629,1630,1630,1631,1631,1631,1632,1632,1633,1634,1634,1635,1635,1635,1635,1636,1637,1637,1637,1638,1638,1638,1638,1639,1640,
+		1640,1640,1640,1641,1641,1642,1642,1643,1643,1643,1643,1644,1645,1645,1645,1646,1646,1647,1647,1648,1648,1649,1650,1650,1650,1651,1651,1652,1652,1652,1653,1654,1654,1654,1655,1655,1656,1656,1656,1657,1657,1657,1658,1658,1659,1659,1659,1660,1660,1661,1661,1662,1662,1662,1663,1663,1663,1663,1663,1663,1663,1663,1663,1664,1664,1665,1665,1665,1665,1666,1667,1667,1668,1668,1669,1669,1669,1669,1670,1670,1671,1671,1671,1671,1671,1671,1671,1671,1672,1672,1672,1672,1672,1672,1673,1673,1673,1673,1673,1673,1674,1674,1674,1674,1674,1674,1675,1676,1676,1676,1677,1677,1677,1678,1678,1679,1679,1679,1680,1680,1680,1680,1681,1681,1681,1681,1681,1681,1682,1682,1682,1682,1683,1683,1683,1683,1684,1684,1684,1684,1684,1685,1685,1685,1685,1685,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1687,1687,1688,1688,1688,1688,1689,1689,1689,1690,1690,1690,1690,1690,1690,1690,1690,1691,1692,1693,1693,1693,1693,1693,1693,1693,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1696,1697,1697,1698,1698,1698,1699,1699,1700,1700,1700,1700,1700,1700,1701,1701,1701,1702,1702,1702,1702,1702,1702,1702,1702,1702,1702,1703,1703,1703,1703,1703,1704,1704,1705,1705,1705,1705,1705,1705,1705,1705,1706,1706,1706,1706,1706,1707,1707,1708,1708,1709,1709,1710,1710,1710,1710,1710,1710,
+		1710,1710,1710,1710,1710,1710,1710,1710,1710,1711,1712,1712,1712,1712,1712,1712,1712,1712,1712,1712,1712,1712,1712,1713,1714,1714,1714,1714,1715,1715,1716,1716,1716,1716,1716,1716,1716,1716,1716,1716,1716,1716,1717,1717,1717,1717,1718,1719,1719,1719,1720,1721,1721,1722,1722,1722,1722,1722,1722,1722,1722,1722,1722,1722,1722,1722,1723,1724,1725,1726,1726,1726,1726,1726,1727,1728,1728,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1730,1730,1731,1731,1732,1732,1733,1734,1734,1734,1734,1734,1734,1734,1734,1734,1734,1734,1734,1734,1734,1735,1735,1736,1736,1736,1737,1737,1737,1738,1738,1738,1738,1738,1738,1738,1738,1738,1738,1738,1738,1738,1738,1738,1738,1739,1739,1740,1741,1741,1741,1742,1743,1743,1743,1743,1743,1743,1743,1743,1743,1744,1744,1744,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1745,1746,1746,1746,1747,1748,1749,1749,1749,1749,1750,1750,1750,1750,1750,1750,1750,1750,1750,1750,1750,1750,1750,1750,1751,1752,1753,1753,1753,1753,1754,1754,1754,1755,1755,1755,1755,1755,1755,1755,1755,1756,1756,1756,1756,1758,1758,1758,1759,1759,1759,1760,1760,1760,1761,1762,1762,1762,1763,1764,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1767,1767,1767,1767,1768,1768,1768,
+		1768,1768,1769,1769,1769,1769,1769,1769,1769,1769,1769,1769,1770,1770,1771,1772,1772,1772,1772,1772,1772,1772,1773,1773,1773,1773,1774,1775,1775,1776,1776,1776,1777,1778,1778,1778,1778,1778,1778,1778,1778,1779,1779,1780,1780,1780,1780,1781,1781,1781,1781,1781,1781,1781,1781,1782,1782,1782,1782,1782,1783,1783,1784,1784,1784,1784,1785,1785,1785,1785,1785,1785,1785,1785,1785,1785,1785,1786,1787,1788,1789,1789,1789,1789,1789,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1790,1791,1791,1791,1791,1791,1791,1792,1792,1793,1793,1793,1793,1793,1793,1793,1794,1794,1794,1794,1794,1794,1794,1794,1794,1794,1794,1794,1794,1794,1795,1795,1795,1795,1795,1796,1796,1796,1796,1796,1796,1796,1797,1797,1797,1797,1797,1797,1797,1797,1798,1798,1798,1798,1799,1799,1799,1799,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1802,1803,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1804,1805,1805,1805,1805,1805,1805,1805,1805,1805,1805,1805,1805,1806,1806,1807,1807,1807,1807,1809,1809,1809,1809,1810,1810,1811,1812,1813,1813,1813,1813,1814,1815,1816,1816,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,1817,
+		1818,1818,1819,1820,1820,1820,1820,1820,1820,1820,1820,1820,1820,1820,1820,1820,1820,1820,1820,1822,1823,1823,1823,1824,1824,1825,1825,1825,1825,1825,1825,1825,1825,1825,1825,1825,1825,1825,1825,1825,1826,1827,1829,1829,1830,1830,1832,1832,1832,1832,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1833,1835,1835,1835,1836,1836,1836,1836,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1837,1838,1841,1841,1841,1841,1841,1841,1841,1841,1841,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1842,1843,1843,1844,1844,1844,1844,1844,1844,1846,1846,1846,1847,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1848,1849,1850,1851,1851,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,
+		1852,1852,1852,1852,1852,1852,1852,1852,1852,1852,1853,1854,1854,1854,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1855,1856,1856,1856,1856,1857,1858,1859,1860,1860,1860,1860,1860,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1861,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,
+		1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,1863,
+		1863,1863,1863,1863,1863,1863,1863,1863,1863
+	},
+	{
+		39,94,138,177,213,248,285,320,351,381,411,438,464,488,510,531,550,568,585,600,614,627,639,650,661,672,682,691,700,709,717,725,733,741,749,757,765,773,780,788,795,802,810,817,824,831,838,845,852,858,865,872,878,885,891,898,904,910,916,922,928,934,940,946,951,957,962,967,973,978,983,987,992,997,1002,1006,1011,1015,1019,1023,1028,1032,1036,1040,1044,1048,1051,1055,1059,1063,1066,1070,1073,1077,1080,1084,1087,1090,1094,1097,1100,1103,1106,1109,1112,1116,1118,1121,1125,1128,1131,1134,1136,1139,1142,1145,1148,1151,1154,1156,1159,1162,1165,1167,1170,1172,1175,1178,1180,1183,1185,1188,1190,1193,1196,1198,1200,1203,1205,1208,1210,1212,1214,1217,1219,1221,1223,1226,1228,1230,1232,1235,1237,1239,1241,1243,1245,1247,1249,1251,1253,1255,1258,1260,1261,1264,1266,1268,1270,1272,1273,1275,1277,1279,1281,1283,1285,1286,1288,1290,1291,1293,1295,1296,1298,1300,1302,1303,1305,1307,1309,1311,1312,1314,1316,1318,1320,1321,1323,1324,1326,1328,1330,1331,1333,1335,1336,1338,1340,1341,1343,1344,1346,1348,1349,1351,1352,1354,1355,1357,1358,1360,1361,1363,1364,1366,1368,1369,1370,1372,1373,1375,1376,1378,1379,1380,1382,1383,1385,1386,1387,1389,1390,1391,1393,1394,1396,1397,1398,1400,1401,1403,1404,1405,
+		1407,1408,1410,1411,1412,1413,1415,1416,1417,1419,1420,1421,1422,1423,1425,1426,1428,1429,1430,1431,1433,1434,1435,1436,1438,1439,1440,1441,1443,1444,1445,1446,1447,1448,1449,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1482,1483,1484,1485,1487,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1496,1497,1498,1499,1500,1501,1502,1503,1503,1504,1505,1506,1507,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1516,1518,1518,1519,1520,1520,1521,1522,1522,1523,1524,1524,1525,1526,1527,1528,1529,1529,1530,1531,1532,1532,1533,1534,1534,1535,1536,1536,1537,1538,1539,1539,1541,1541,1542,1543,1543,1544,1545,1546,1546,1547,1548,1548,1549,1550,1550,1551,1552,1553,1553,1554,1554,1555,1555,1556,1557,1557,1558,1558,1559,1559,1560,1561,1562,1562,1563,1563,1564,1564,1565,1566,1566,1567,1567,1568,1569,1569,1570,1571,1572,1572,1573,1573,1574,1574,1575,1576,1576,1577,1577,1578,1579,1579,1580,1581,1581,1581,1582,1582,1583,1583,1583,1583,1584,1584,1584,1585,1585,1586,1586,1587,1588,1588,1588,1589,1590,1590,1590,1591,1592,1592,1593,1593,1594,1594,1595,1596,1596,1597,1597,1597,1598,1598,1599,1599,1600,1600,1600,1601,1601,1602,1603,1603,1603,1603,1604,1604,1604,1605,1605,
+		1605,1605,1606,1606,1607,1607,1608,1608,1608,1608,1609,1609,1610,1611,1611,1611,1612,1612,1613,1613,1614,1614,1615,1615,1616,1616,1617,1617,1617,1618,1618,1619,1619,1620,1620,1620,1621,1621,1622,1622,1622,1623,1623,1623,1624,1624,1624,1625,1625,1625,1626,1627,1627,1627,1627,1628,1628,1628,1628,1628,1628,1628,1628,1629,1630,1630,1630,1631,1631,1631,1632,1632,1633,1633,1633,1633,1634,1634,1634,1635,1635,1636,1636,1636,1636,1636,1636,1636,1636,1637,1637,1637,1637,1637,1638,1638,1638,1638,1638,1639,1639,1639,1639,1639,1639,1639,1640,1640,1641,1641,1641,1641,1642,1642,1643,1644,1644,1644,1644,1645,1645,1645,1645,1645,1645,1645,1646,1646,1646,1647,1647,1647,1647,1648,1648,1648,1649,1649,1649,1649,1649,1649,1649,1650,1650,1650,1650,1650,1650,1651,1651,1651,1651,1651,1651,1651,1652,1652,1653,1653,1653,1653,1653,1653,1654,1654,1655,1655,1655,1655,1655,1655,1655,1655,1656,1657,1657,1657,1657,1657,1657,1657,1658,1658,1658,1658,1658,1658,1658,1658,1659,1659,1659,1659,1659,1660,1660,1661,1661,1662,1662,1662,1663,1663,1663,1664,1664,1665,1665,1665,1665,1665,1665,1666,1666,1666,1666,1666,1666,1666,1666,1666,1666,1667,1667,1667,1667,1667,1668,1668,1668,1669,1669,1669,1669,1669,1669,1669,1670,1670,1670,1670,1670,1671,1671,1671,1672,1673,1674,1674,1674,1674,1674,1674,1674,
+		1674,1674,1674,1674,1674,1674,1674,1674,1675,1675,1675,1675,1675,1675,1675,1676,1676,1676,1676,1676,1676,1676,1676,1676,1677,1678,1678,1678,1679,1679,1679,1680,1680,1680,1680,1680,1680,1680,1680,1680,1680,1680,1680,1680,1680,1681,1682,1682,1683,1683,1684,1685,1685,1685,1685,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1688,1689,1689,1690,1690,1690,1690,1690,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1693,1693,1694,1694,1695,1695,1696,1696,1697,1697,1697,1697,1697,1697,1697,1697,1697,1697,1697,1698,1698,1698,1698,1698,1699,1699,1699,1700,1700,1700,1700,1700,1700,1700,1700,1700,1701,1701,1701,1701,1701,1701,1701,1701,1701,1702,1703,1703,1704,1704,1704,1705,1705,1705,1705,1705,1705,1705,1705,1705,1706,1706,1706,1706,1707,1707,1707,1707,1707,1707,1708,1708,1708,1708,1708,1708,1708,1708,1708,1708,1708,1708,1708,1709,1710,1710,1711,1711,1711,1711,1711,1711,1712,1712,1712,1712,1712,1712,1712,1712,1712,1712,1712,1712,1713,1714,1714,1714,1715,1715,1716,1717,1717,1718,1718,1718,1718,1718,1718,1718,1718,1718,1718,1719,1719,1720,1720,1721,1722,1722,1722,1722,1722,1722,1723,1724,1724,1724,1726,1726,1726,1727,1727,1727,1727,1727,1727,1727,1727,1727,1727,1727,1727,1727,1727,1728,1728,1728,1728,1729,1729,1730,
+		1730,1730,1730,1730,1730,1730,1730,1731,1731,1731,1731,1731,1731,1732,1733,1733,1733,1734,1734,1734,1734,1734,1734,1735,1735,1735,1736,1736,1736,1737,1737,1737,1739,1739,1739,1739,1739,1739,1739,1740,1740,1740,1741,1741,1741,1741,1741,1742,1742,1742,1742,1742,1742,1742,1742,1742,1742,1743,1743,1743,1744,1744,1744,1745,1745,1745,1745,1746,1746,1746,1746,1746,1746,1746,1746,1746,1747,1748,1748,1749,1750,1750,1750,1750,1750,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1751,1752,1752,1752,1752,1752,1752,1752,1752,1753,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1754,1755,1755,1755,1755,1755,1755,1756,1756,1756,1756,1756,1756,1756,1757,1757,1758,1758,1758,1758,1758,1758,1758,1759,1759,1759,1759,1759,1760,1760,1761,1761,1761,1762,1762,1762,1762,1762,1762,1762,1762,1762,1762,1762,1762,1762,1762,1764,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1765,1766,1766,1766,1766,1766,1766,1766,1766,1767,1768,1768,1768,1768,1768,1769,1769,1769,1770,1770,1771,1771,1772,1772,1773,1773,1774,1774,1775,1776,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,1777,
+		1778,1778,1779,1779,1779,1779,1779,1780,1780,1780,1780,1780,1780,1780,1780,1780,1780,1780,1781,1781,1782,1782,1783,1784,1784,1784,1784,1784,1784,1784,1784,1784,1784,1784,1784,1784,1784,1784,1784,1785,1786,1787,1787,1788,1790,1790,1791,1791,1791,1791,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1792,1793,1794,1794,1794,1794,1794,1794,1795,1796,1796,1796,1796,1796,1796,1796,1796,1796,1796,1796,1796,1796,1796,1796,1797,1798,1800,1800,1800,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1801,1802,1802,1802,1803,1803,1804,1804,1804,1804,1804,1805,1805,1805,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1806,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1807,1809,1810,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,
+		1811,1811,1811,1811,1811,1811,1811,1811,1811,1811,1812,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1814,1815,1815,1815,1816,1817,1817,1818,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819,1820,1820,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,
+		1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,1821,
+		1821,1821,1821,1821,1821,1821,1821,1821,1821
+	},
+	{
+		27,60,103,137,171,203,236,269,299,326,353,379,403,425,446,466,484,501,516,531,544,556,568,578,589,598,608,616,625,633,641,648,656,663,671,678,685,692,700,707,714,721,728,734,741,747,754,760,766,773,779,785,791,797,803,809,815,821,827,832,838,844,849,855,860,866,871,877,882,887,892,897,902,907,912,917,922,926,931,936,940,944,949,953,957,962,966,970,974,977,981,985,989,992,996,1000,1003,1006,1010,1013,1016,1020,1023,1026,1029,1032,1035,1038,1041,1044,1047,1050,1053,1056,1059,1062,1065,1068,1071,1073,1076,1079,1082,1084,1087,1090,1092,1095,1097,1100,1102,1105,1107,1110,1112,1115,1117,1120,1122,1125,1127,1129,1132,1134,1136,1139,1141,1143,1145,1148,1150,1152,1154,1156,1158,1160,1163,1165,1167,1169,1171,1173,1175,1177,1179,1181,1183,1185,1187,1189,1191,1193,1195,1197,1199,1200,1202,1204,1206,1208,1209,1211,1213,1214,1216,1218,1220,1222,1223,1225,1227,1229,1231,1232,1234,1236,1238,1239,1241,1242,1244,1246,1247,1249,1251,1253,1254,1256,1258,1259,1261,1262,1264,1265,1267,1269,1270,1272,1273,1275,1276,1278,1280,1281,1283,1284,1286,1287,1289,1290,1291,1293,1294,1296,1297,1298,1300,1301,1303,1304,1305,1307,1308,1310,1311,1312,1314,1315,1317,1318,1319,1321,1322,1324,
+		1325,1327,1328,1329,1330,1332,1333,1334,1336,1337,1338,1339,1340,1342,1343,1345,1346,1347,1348,1350,1351,1352,1353,1355,1356,1357,1358,1360,1361,1362,1363,1364,1366,1367,1368,1369,1370,1371,1372,1373,1374,1376,1376,1377,1378,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1409,1410,1412,1412,1413,1414,1415,1416,1417,1418,1419,1420,1420,1421,1422,1423,1424,1424,1425,1426,1427,1428,1428,1430,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1439,1440,1441,1441,1442,1443,1443,1444,1445,1446,1447,1447,1448,1449,1449,1451,1451,1452,1453,1453,1454,1455,1455,1456,1457,1458,1458,1459,1460,1461,1461,1462,1463,1464,1464,1465,1465,1466,1467,1468,1468,1469,1470,1471,1472,1472,1473,1474,1474,1474,1475,1476,1476,1477,1477,1478,1478,1479,1479,1480,1481,1481,1482,1482,1483,1484,1484,1485,1486,1486,1487,1488,1488,1489,1490,1490,1491,1491,1492,1493,1493,1494,1494,1495,1496,1496,1497,1498,1498,1499,1500,1500,1500,1501,1501,1501,1502,1502,1502,1503,1503,1503,1504,1504,1505,1505,1506,1506,1507,1507,1508,1508,1509,1509,1510,1511,1511,1511,1512,1513,1513,1514,1514,1515,1515,1516,1516,1516,1517,1518,1518,1519,1519,1519,1519,1520,1521,1521,1522,1522,1522,1522,1523,1523,1524,1524,
+		1524,1524,1525,1525,1526,1527,1527,1527,1528,1528,1528,1528,1529,1529,1530,1530,1530,1531,1532,1532,1532,1533,1534,1534,1534,1535,1535,1536,1536,1536,1537,1538,1538,1538,1539,1539,1540,1540,1541,1541,1541,1542,1542,1543,1543,1543,1543,1544,1544,1545,1545,1546,1546,1546,1546,1547,1547,1547,1547,1547,1547,1547,1548,1548,1548,1549,1549,1549,1549,1550,1551,1552,1552,1552,1553,1553,1553,1554,1554,1554,1555,1555,1555,1555,1555,1555,1555,1555,1555,1555,1556,1556,1556,1556,1557,1557,1557,1557,1557,1558,1558,1558,1558,1558,1558,1558,1559,1560,1560,1560,1560,1560,1561,1562,1562,1563,1563,1563,1563,1564,1564,1564,1565,1565,1565,1565,1565,1565,1566,1566,1566,1566,1567,1567,1567,1567,1568,1568,1568,1568,1568,1569,1569,1569,1569,1569,1569,1569,1570,1570,1570,1570,1570,1570,1570,1571,1571,1572,1572,1572,1572,1572,1573,1573,1573,1574,1574,1574,1574,1574,1574,1574,1574,1575,1575,1576,1576,1576,1577,1577,1577,1577,1578,1578,1578,1578,1578,1578,1578,1578,1578,1579,1579,1579,1579,1579,1579,1580,1581,1581,1581,1581,1582,1583,1583,1583,1583,1584,1584,1584,1584,1584,1585,1585,1585,1585,1585,1585,1585,1585,1585,1586,1586,1586,1586,1586,1587,1587,1587,1588,1588,1588,1588,1588,1588,1588,1588,1588,1589,1589,1589,1589,1589,1590,1590,1591,1592,1592,1593,1593,1593,1593,1593,1593,1593,
+		1593,1593,1593,1593,1593,1593,1593,1594,1594,1594,1595,1595,1595,1595,1595,1595,1595,1596,1596,1596,1596,1596,1596,1597,1597,1597,1597,1598,1598,1598,1599,1599,1599,1599,1599,1599,1599,1599,1599,1599,1599,1600,1600,1600,1600,1601,1601,1602,1602,1603,1603,1604,1604,1604,1604,1604,1604,1604,1604,1604,1605,1605,1605,1605,1605,1605,1606,1607,1608,1608,1609,1609,1609,1609,1610,1610,1610,1611,1611,1611,1611,1611,1611,1611,1611,1611,1611,1611,1611,1611,1611,1611,1612,1612,1612,1613,1614,1614,1614,1615,1615,1616,1616,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1618,1618,1618,1618,1619,1619,1619,1619,1619,1619,1619,1619,1619,1619,1620,1620,1620,1620,1620,1620,1620,1620,1621,1621,1623,1623,1623,1623,1624,1624,1624,1625,1625,1625,1625,1625,1625,1625,1625,1625,1625,1626,1626,1626,1626,1626,1626,1627,1627,1627,1627,1627,1627,1627,1627,1627,1627,1627,1627,1628,1628,1629,1630,1630,1630,1630,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1632,1633,1633,1634,1634,1634,1635,1636,1636,1636,1636,1636,1636,1636,1636,1636,1636,1637,1638,1638,1639,1639,1640,1640,1641,1641,1641,1641,1641,1641,1643,1643,1643,1643,1644,1644,1645,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1646,1648,1648,1648,1648,
+		1648,1649,1649,1649,1649,1649,1650,1650,1650,1650,1650,1650,1651,1651,1652,1653,1653,1653,1653,1653,1653,1653,1653,1653,1653,1653,1655,1655,1656,1656,1656,1657,1657,1658,1658,1658,1658,1658,1658,1658,1658,1659,1659,1660,1660,1660,1660,1661,1661,1661,1661,1661,1661,1661,1661,1661,1661,1662,1662,1662,1662,1663,1664,1664,1664,1664,1665,1665,1665,1665,1665,1665,1666,1666,1666,1666,1666,1666,1667,1668,1669,1669,1669,1669,1669,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1671,1671,1671,1671,1672,1672,1672,1672,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1674,1674,1674,1674,1674,1674,1675,1675,1675,1675,1675,1675,1676,1676,1676,1677,1677,1677,1677,1677,1677,1677,1677,1677,1677,1678,1678,1679,1680,1680,1680,1680,1680,1680,1681,1681,1681,1681,1681,1681,1681,1681,1681,1681,1681,1681,1682,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1684,1685,1685,1685,1685,1685,1685,1685,1685,1685,1685,1685,1685,1685,1686,1686,1686,1687,1687,1687,1688,1688,1688,1688,1688,1690,1690,1691,1691,1691,1692,1692,1693,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1696,
+		1696,1697,1697,1697,1698,1698,1699,1699,1699,1699,1699,1699,1699,1699,1699,1699,1699,1699,1699,1699,1701,1701,1701,1702,1703,1703,1703,1703,1703,1703,1703,1703,1703,1703,1703,1703,1703,1703,1703,1704,1705,1705,1706,1707,1708,1709,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1710,1711,1711,1711,1713,1713,1713,1713,1713,1714,1714,1714,1714,1714,1714,1714,1714,1714,1714,1714,1714,1714,1714,1714,1714,1715,1715,1717,1718,1718,1718,1718,1718,1718,1718,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1719,1720,1720,1721,1721,1721,1721,1721,1721,1721,1723,1723,1723,1724,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1725,1727,1728,1728,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,
+		1729,1729,1729,1729,1729,1729,1729,1729,1729,1729,1730,1731,1731,1731,1731,1732,1732,1732,1732,1732,1732,1732,1732,1732,1732,1732,1732,1732,1732,1733,1733,1734,1735,1735,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1737,1738,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1740,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,
+		1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,1741,
+		1741,1741,1741,1741,1741,1741,1741,1741,1741
+	},
+	{
+		27,61,108,143,177,208,241,274,303,329,355,379,402,423,443,461,479,494,509,523,535,546,557,567,577,586,595,603,610,618,625,632,639,646,653,660,666,673,679,686,693,699,706,712,718,724,730,736,742,748,754,759,765,771,776,782,787,792,798,803,809,814,819,824,830,835,840,845,850,855,860,865,870,875,880,884,889,894,899,903,908,912,917,921,926,930,934,938,942,946,950,954,958,962,965,969,973,976,980,983,986,989,993,996,999,1002,1005,1008,1011,1014,1017,1020,1023,1026,1029,1032,1035,1037,1040,1043,1045,1048,1051,1053,1056,1059,1061,1064,1066,1068,1071,1073,1076,1078,1080,1083,1085,1087,1089,1092,1094,1096,1098,1100,1103,1105,1107,1109,1112,1114,1116,1118,1120,1123,1125,1127,1129,1131,1133,1135,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1155,1157,1159,1161,1163,1165,1167,1168,1170,1172,1174,1175,1177,1178,1180,1181,1183,1184,1186,1188,1190,1191,1193,1195,1197,1199,1200,1202,1203,1205,1207,1208,1210,1211,1213,1215,1216,1218,1219,1221,1223,1224,1226,1227,1229,1230,1232,1233,1235,1236,1238,1239,1241,1242,1244,1245,1247,1248,1249,1251,1252,1254,1255,1256,1258,1259,1260,1261,1263,1264,1266,1267,1268,1270,1271,1272,1274,1275,1277,1278,1279,1281,1282,1283,
+		1285,1286,1287,1288,1290,1291,1292,1293,1295,1296,1297,1298,1299,1301,1302,1303,1305,1306,1307,1308,1310,1311,1312,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1331,1332,1332,1333,1334,1336,1337,1338,1339,1340,1342,1342,1343,1344,1345,1346,1348,1349,1349,1350,1351,1352,1353,1354,1356,1356,1357,1358,1359,1360,1361,1362,1363,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1375,1376,1377,1378,1378,1379,1380,1381,1381,1382,1383,1384,1385,1386,1387,1387,1388,1389,1390,1391,1392,1392,1393,1394,1395,1395,1396,1397,1397,1398,1399,1400,1400,1401,1402,1403,1403,1404,1405,1406,1407,1407,1408,1409,1409,1410,1410,1411,1412,1413,1414,1414,1415,1416,1416,1417,1418,1419,1419,1420,1420,1421,1422,1422,1423,1424,1424,1425,1426,1426,1427,1428,1428,1429,1429,1430,1430,1431,1432,1432,1433,1433,1434,1434,1435,1435,1436,1436,1437,1438,1438,1439,1440,1441,1441,1442,1443,1443,1444,1445,1445,1445,1446,1447,1447,1448,1449,1449,1450,1450,1451,1452,1452,1453,1453,1453,1453,1454,1454,1455,1456,1456,1456,1456,1456,1457,1458,1458,1458,1459,1459,1460,1460,1461,1461,1462,1463,1463,1464,1464,1465,1465,1466,1466,1467,1467,1468,1469,1469,1470,1470,1470,1470,1470,1471,1471,1472,1472,1472,1473,1473,1474,1475,1475,1476,1476,1476,1476,1477,1478,
+		1478,1478,1479,1479,1480,1480,1481,1481,1481,1481,1481,1482,1482,1483,1483,1484,1484,1484,1484,1485,1485,1486,1486,1487,1487,1487,1487,1488,1488,1489,1489,1490,1490,1491,1491,1492,1492,1493,1493,1493,1494,1494,1495,1495,1495,1495,1495,1496,1496,1496,1497,1497,1497,1497,1498,1498,1499,1499,1499,1499,1499,1499,1500,1500,1501,1501,1501,1501,1502,1502,1503,1503,1503,1503,1504,1504,1504,1505,1505,1505,1505,1506,1506,1506,1507,1507,1507,1507,1508,1508,1508,1508,1508,1509,1509,1509,1509,1510,1510,1510,1510,1510,1511,1511,1511,1512,1512,1512,1512,1512,1512,1513,1513,1514,1514,1515,1515,1515,1516,1516,1517,1517,1517,1517,1517,1517,1517,1517,1517,1518,1518,1518,1518,1518,1518,1518,1519,1519,1519,1520,1520,1520,1520,1520,1521,1521,1521,1521,1522,1522,1522,1522,1522,1523,1523,1523,1524,1524,1524,1524,1524,1525,1525,1525,1525,1525,1526,1526,1526,1526,1526,1526,1526,1527,1527,1528,1528,1528,1528,1529,1529,1530,1530,1530,1530,1531,1531,1531,1531,1531,1531,1531,1531,1531,1531,1532,1532,1532,1533,1533,1533,1533,1534,1534,1534,1534,1534,1534,1534,1534,1535,1535,1536,1536,1536,1537,1537,1537,1537,1538,1538,1538,1539,1539,1539,1539,1539,1539,1539,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1541,1541,1542,1543,1543,1543,1544,1544,1545,1545,1545,1545,1545,1545,1545,
+		1545,1545,1545,1545,1545,1545,1545,1546,1546,1546,1546,1546,1546,1546,1547,1547,1547,1547,1547,1547,1547,1547,1547,1547,1547,1548,1548,1549,1549,1550,1551,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1553,1553,1553,1553,1554,1555,1555,1555,1555,1555,1556,1556,1556,1557,1557,1557,1557,1557,1557,1557,1558,1558,1558,1558,1559,1560,1560,1560,1560,1560,1561,1561,1562,1562,1563,1563,1563,1563,1563,1563,1563,1563,1563,1563,1563,1563,1563,1564,1564,1564,1564,1565,1566,1567,1567,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1569,1569,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1570,1571,1571,1572,1572,1572,1572,1572,1572,1573,1573,1574,1574,1574,1574,1574,1574,1575,1575,1575,1575,1575,1575,1575,1575,1575,1576,1576,1576,1576,1576,1576,1576,1577,1577,1577,1577,1577,1577,1578,1579,1579,1579,1579,1580,1580,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1582,1582,1583,1584,1585,1585,1585,1586,1586,1586,1587,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1589,1590,1590,1591,1591,1591,1591,1591,1592,1592,1592,1592,1592,1592,1592,1592,1594,1594,1594,1594,1594,1594,1595,1595,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1597,1597,1597,1597,
+		1598,1598,1598,1598,1598,1598,1600,1600,1600,1600,1600,1601,1601,1602,1603,1604,1604,1604,1604,1605,1605,1605,1605,1606,1606,1606,1606,1607,1607,1607,1608,1608,1608,1608,1608,1608,1608,1608,1608,1608,1608,1608,1608,1608,1608,1609,1610,1611,1611,1611,1611,1611,1611,1612,1612,1612,1612,1612,1612,1612,1613,1613,1613,1613,1613,1613,1613,1614,1614,1614,1614,1614,1615,1615,1616,1616,1616,1616,1616,1617,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1618,1619,1619,1619,1619,1619,1619,1620,1620,1620,1620,1620,1620,1620,1620,1620,1621,1621,1621,1621,1621,1621,1621,1621,1621,1621,1621,1621,1621,1622,1622,1622,1622,1622,1622,1622,1622,1622,1622,1622,1622,1622,1623,1623,1624,1625,1625,1626,1626,1626,1626,1626,1626,1626,1626,1626,1626,1626,1626,1626,1626,1626,1627,1627,1628,1629,1630,1630,1630,1630,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1631,1632,1632,1632,1632,1632,1632,1632,1632,1632,1632,1632,1632,1633,1633,1633,1633,1633,1633,1633,1633,1633,1633,1633,1633,1633,1634,1635,1636,1636,1636,1636,1636,1636,1636,1636,1636,1636,1637,1637,1638,1640,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1641,1642,1642,1642,1643,1643,
+		1643,1643,1644,1644,1644,1644,1644,1645,1645,1646,1646,1646,1646,1646,1646,1647,1647,1647,1647,1648,1649,1649,1649,1650,1650,1651,1651,1651,1651,1651,1651,1651,1651,1651,1651,1651,1651,1651,1651,1651,1652,1652,1653,1653,1654,1654,1655,1655,1656,1656,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1657,1658,1658,1658,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1659,1660,1660,1660,1660,1660,1660,1660,1661,1662,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1663,1664,1664,1664,1664,1664,1666,1667,1667,1667,1667,1667,1667,1668,1668,1668,1669,1669,1669,1669,1669,1670,1670,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1672,1672,1673,1673,1673,1675,1676,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,
+		1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1678,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1679,1680,1680,1681,1681,1681,1681,1681,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1682,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1683,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1684,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,
+		1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,1686,
+		1686,1686,1686,1686,1686,1686,1686,1686,1686
+	},
+	{
+		23,38,69,103,132,161,188,216,244,271,295,317,339,359,378,396,412,428,442,455,467,478,488,498,507,516,524,532,539,546,553,560,567,574,580,587,593,600,606,612,619,625,631,637,643,649,655,661,666,672,677,683,688,693,699,704,709,714,719,724,729,734,739,743,748,753,757,762,767,771,776,780,785,790,794,798,803,807,812,816,821,825,829,834,838,842,847,851,855,859,863,867,871,875,879,883,887,890,894,898,901,905,908,911,915,918,921,924,927,931,934,937,940,943,946,949,952,955,957,960,963,966,968,971,974,976,979,981,984,986,989,991,994,996,998,1001,1003,1005,1008,1010,1012,1015,1017,1019,1021,1023,1025,1028,1030,1032,1034,1036,1039,1041,1043,1045,1047,1049,1051,1053,1055,1057,1059,1061,1063,1064,1066,1068,1070,1072,1074,1076,1078,1080,1081,1083,1085,1087,1088,1090,1092,1094,1095,1096,1098,1100,1102,1103,1105,1107,1108,1110,1112,1114,1115,1117,1119,1120,1122,1123,1125,1127,1129,1130,1132,1133,1135,1137,1138,1140,1142,1143,1144,1146,1148,1149,1151,1152,1153,1155,1156,1158,1159,1161,1162,1164,1165,1166,1168,1169,1171,1172,1174,1175,1176,1177,1179,1180,1182,1183,1184,1186,1187,1188,1190,1191,1193,1194,1195,1197,1198,1199,1201,1202,
+		1203,1204,1206,1207,1208,1209,1211,1212,1213,1215,1216,1217,1218,1219,1221,1222,1223,1225,1226,1227,1228,1229,1231,1232,1233,1234,1235,1236,1237,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1289,1290,1291,1292,1293,1294,1294,1295,1296,1297,1298,1299,1299,1300,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1310,1311,1312,1313,1313,1314,1315,1315,1316,1316,1317,1318,1319,1320,1321,1322,1322,1323,1324,1324,1325,1326,1327,1327,1328,1328,1329,1330,1331,1331,1332,1333,1334,1334,1335,1336,1336,1337,1338,1339,1339,1340,1341,1341,1342,1342,1343,1344,1344,1345,1346,1346,1347,1347,1348,1348,1349,1350,1350,1351,1351,1352,1352,1353,1353,1354,1355,1355,1356,1356,1357,1358,1359,1359,1360,1361,1361,1362,1363,1363,1363,1364,1365,1365,1366,1367,1367,1368,1368,1369,1370,1370,1371,1371,1372,1372,1372,1372,1373,1374,1374,1374,1375,1375,1375,1376,1376,1377,1377,1377,1377,1378,1379,1379,1380,1381,1381,1382,1382,1383,1383,1384,1384,1385,1385,1386,1387,1387,1388,1388,1388,1389,1389,1389,1390,1390,1390,1391,1391,1391,1392,1392,1393,1393,1394,1394,1395,1395,1396,1396,
+		1397,1397,1397,1398,1398,1399,1400,1400,1400,1400,1400,1401,1401,1402,1402,1402,1402,1403,1403,1403,1404,1405,1405,1406,1406,1406,1407,1407,1408,1408,1408,1409,1409,1409,1410,1410,1411,1411,1411,1412,1413,1413,1413,1413,1413,1414,1414,1415,1415,1415,1415,1416,1416,1416,1416,1417,1417,1417,1417,1417,1418,1418,1418,1418,1419,1419,1419,1420,1420,1421,1421,1422,1422,1422,1422,1423,1423,1423,1423,1424,1424,1425,1425,1425,1425,1426,1426,1426,1426,1427,1427,1427,1427,1427,1427,1427,1428,1428,1429,1429,1429,1429,1430,1430,1430,1430,1431,1431,1431,1431,1431,1431,1432,1432,1433,1433,1433,1434,1434,1435,1435,1436,1436,1436,1436,1436,1436,1436,1436,1436,1436,1436,1437,1437,1437,1437,1438,1438,1438,1438,1439,1439,1439,1440,1440,1440,1440,1440,1440,1441,1441,1441,1441,1441,1441,1442,1442,1442,1443,1443,1443,1443,1443,1443,1444,1444,1444,1444,1444,1445,1445,1445,1445,1446,1446,1446,1446,1447,1447,1447,1448,1448,1448,1449,1449,1449,1449,1450,1450,1450,1450,1450,1450,1450,1451,1451,1451,1451,1452,1452,1452,1452,1452,1452,1453,1453,1453,1453,1453,1453,1454,1454,1455,1455,1455,1455,1456,1456,1456,1457,1457,1457,1457,1457,1458,1458,1458,1458,1458,1458,1458,1458,1458,1458,1458,1458,1458,1459,1459,1459,1460,1460,1461,1461,1462,1462,1462,1463,1463,1463,1463,1463,1463,1463,1463,
+		1463,1463,1463,1463,1463,1464,1464,1464,1464,1464,1464,1464,1465,1465,1465,1465,1465,1465,1465,1465,1465,1465,1465,1466,1466,1466,1467,1468,1468,1469,1470,1470,1470,1470,1470,1470,1470,1470,1470,1470,1470,1470,1470,1471,1471,1471,1472,1472,1472,1473,1473,1473,1473,1473,1474,1474,1474,1474,1475,1476,1476,1476,1476,1476,1476,1476,1476,1476,1476,1477,1477,1477,1477,1478,1478,1478,1479,1479,1480,1481,1481,1481,1481,1482,1482,1482,1482,1482,1482,1482,1482,1482,1482,1482,1482,1482,1483,1484,1484,1485,1486,1486,1487,1487,1487,1487,1487,1487,1487,1487,1487,1487,1487,1487,1487,1487,1488,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1489,1490,1490,1490,1491,1491,1491,1491,1492,1492,1492,1492,1493,1493,1493,1493,1493,1493,1493,1494,1494,1494,1494,1494,1494,1495,1495,1495,1495,1496,1496,1496,1496,1496,1496,1496,1496,1497,1497,1497,1497,1498,1498,1498,1498,1499,1499,1499,1499,1499,1499,1499,1499,1499,1499,1499,1499,1500,1500,1500,1501,1501,1502,1502,1503,1503,1503,1504,1504,1505,1506,1506,1506,1506,1506,1506,1506,1506,1506,1506,1506,1507,1507,1508,1508,1508,1508,1509,1509,1509,1510,1510,1510,1510,1510,1510,1510,1510,1510,1512,1513,1513,1513,1513,1513,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1515,1515,1516,1516,
+		1516,1516,1516,1516,1516,1517,1517,1518,1518,1518,1518,1518,1519,1520,1522,1522,1523,1523,1523,1523,1523,1523,1524,1524,1524,1524,1524,1524,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1527,1527,1528,1529,1529,1529,1529,1529,1529,1529,1529,1529,1529,1529,1529,1530,1530,1531,1531,1531,1531,1531,1532,1532,1532,1532,1532,1532,1532,1533,1534,1534,1534,1534,1534,1535,1535,1535,1535,1535,1535,1535,1535,1535,1535,1536,1536,1536,1536,1536,1536,1536,1536,1537,1537,1537,1537,1537,1537,1537,1537,1537,1537,1538,1538,1538,1538,1538,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1539,1540,1540,1540,1540,1540,1540,1540,1541,1542,1543,1543,1543,1543,1544,1544,1544,1544,1544,1544,1544,1544,1544,1544,1544,1544,1544,1545,1545,1546,1547,1548,1548,1548,1548,1548,1548,1548,1548,1548,1548,1549,1549,1549,1549,1549,1549,1549,1549,1549,1549,1549,1549,1549,1549,1549,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1551,1551,1552,1553,1553,1553,1553,1553,1553,1553,1553,1553,1554,1555,1555,1556,1557,1557,1558,1558,1558,1558,1558,1558,1558,1558,1558,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1559,1560,1560,1560,
+		1561,1561,1562,1562,1562,1562,1562,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1566,1566,1566,1567,1567,1567,1567,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1568,1569,1569,1570,1570,1570,1571,1571,1572,1573,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1574,1575,1575,1575,1575,1575,1575,1575,1575,1575,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1577,1579,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1581,1582,1584,1584,1585,1585,1585,1585,1585,1585,1585,1586,1586,1586,1586,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1587,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1588,1589,1589,1590,1591,1591,1591,1593,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,1594,
+		1594,1594,1594,1594,1594,1594,1594,1595,1595,1595,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1596,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1598,1599,1599,1599,1599,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,
+		1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,1601,
+		1601,1601,1601,1601,1601,1601,1601,1601,1601
+	},
+	{
+		22,37,66,100,130,157,184,212,240,266,290,312,333,353,371,389,405,420,433,446,457,468,478,487,496,504,512,519,526,533,540,546,552,559,565,571,577,583,589,595,601,607,613,618,624,630,635,641,646,651,657,662,667,672,677,682,687,692,697,702,706,711,716,720,725,729,733,738,742,747,751,755,759,764,768,772,776,780,784,789,793,797,801,805,809,813,817,821,826,830,834,837,841,845,849,853,857,861,865,868,872,876,879,883,886,890,893,897,900,903,906,910,913,916,919,922,925,928,931,934,937,939,942,945,947,950,953,955,958,960,963,965,968,970,973,975,977,980,982,984,986,989,991,993,995,997,1000,1002,1004,1006,1009,1011,1013,1015,1017,1019,1021,1023,1025,1027,1029,1030,1032,1034,1036,1038,1040,1042,1044,1046,1047,1049,1051,1053,1055,1056,1058,1060,1062,1063,1065,1067,1068,1070,1071,1073,1075,1076,1078,1080,1081,1083,1085,1087,1088,1090,1092,1093,1095,1096,1098,1100,1101,1103,1104,1106,1107,1109,1110,1112,1114,1115,1117,1118,1119,1121,1122,1124,1125,1127,1128,1130,1131,1133,1134,1136,1137,1138,1140,1141,1143,1144,1145,1147,1148,1149,1150,1152,1153,1154,1156,1157,1158,1160,1161,1163,1164,1165,1167,1168,1169,1170,1172,1173,
+		1174,1176,1177,1178,1179,1180,1182,1183,1184,1185,1187,1188,1189,1190,1191,1193,1194,1195,1196,1198,1199,1200,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1247,1248,1249,1250,1251,1252,1253,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1263,1264,1265,1266,1267,1267,1268,1269,1269,1270,1271,1272,1272,1274,1274,1275,1276,1277,1278,1279,1280,1280,1281,1282,1283,1283,1284,1285,1285,1286,1286,1287,1288,1289,1290,1290,1291,1292,1293,1293,1294,1295,1295,1296,1297,1297,1298,1299,1300,1300,1301,1302,1303,1303,1304,1305,1306,1306,1307,1307,1308,1309,1309,1310,1311,1312,1312,1313,1314,1314,1315,1315,1316,1316,1317,1317,1318,1319,1319,1320,1320,1321,1321,1322,1322,1323,1323,1324,1324,1325,1326,1326,1327,1328,1329,1329,1330,1331,1331,1332,1332,1333,1333,1334,1334,1335,1336,1337,1337,1337,1338,1339,1339,1340,1340,1340,1341,1341,1342,1342,1343,1343,1343,1344,1344,1344,1345,1345,1345,1346,1346,1347,1347,1348,1349,1349,1350,1350,1350,1351,1352,1352,1353,1353,1354,1354,1355,1356,1356,1357,1357,1357,1357,1358,1358,1358,1359,1359,1359,1360,1360,1361,1361,1362,1362,1362,1363,1363,1364,1364,
+		1365,1365,1366,1366,1367,1367,1368,1368,1368,1368,1368,1369,1369,1369,1370,1371,1371,1371,1371,1372,1372,1373,1373,1374,1374,1374,1375,1375,1375,1376,1376,1377,1377,1378,1378,1379,1379,1379,1380,1380,1381,1381,1381,1382,1382,1382,1382,1383,1383,1383,1383,1384,1384,1384,1385,1385,1385,1385,1385,1386,1386,1386,1387,1387,1387,1387,1387,1388,1389,1389,1389,1390,1390,1390,1390,1391,1391,1392,1392,1392,1392,1393,1393,1393,1394,1394,1394,1394,1394,1394,1395,1395,1395,1395,1396,1396,1396,1396,1397,1397,1397,1397,1398,1398,1398,1398,1399,1399,1399,1399,1399,1400,1400,1400,1401,1401,1401,1402,1403,1403,1403,1403,1403,1403,1404,1404,1404,1404,1404,1404,1404,1405,1405,1405,1405,1405,1406,1406,1406,1406,1406,1407,1407,1407,1408,1408,1408,1408,1408,1409,1409,1409,1409,1409,1410,1410,1411,1411,1411,1411,1411,1411,1411,1412,1412,1412,1412,1412,1412,1412,1412,1413,1413,1413,1414,1414,1415,1415,1415,1415,1416,1417,1417,1417,1417,1417,1417,1417,1417,1417,1418,1418,1418,1418,1418,1419,1419,1420,1420,1420,1420,1420,1420,1421,1421,1421,1421,1421,1421,1421,1421,1422,1423,1423,1423,1423,1423,1424,1424,1424,1424,1425,1425,1425,1425,1425,1425,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1427,1427,1427,1428,1428,1429,1429,1430,1430,1430,1431,1431,1431,1431,1431,1431,1431,1431,
+		1431,1431,1432,1432,1432,1432,1432,1432,1432,1432,1432,1432,1433,1433,1433,1433,1433,1433,1433,1433,1433,1433,1433,1433,1434,1434,1435,1435,1436,1437,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1439,1439,1439,1440,1440,1440,1440,1440,1441,1441,1441,1441,1442,1442,1442,1443,1443,1443,1443,1443,1443,1444,1444,1444,1444,1445,1445,1445,1446,1446,1446,1446,1447,1447,1447,1448,1448,1449,1449,1449,1449,1449,1449,1449,1449,1449,1449,1449,1449,1449,1450,1450,1450,1450,1452,1452,1453,1454,1454,1454,1454,1454,1454,1454,1454,1454,1454,1454,1454,1454,1454,1454,1455,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1457,1457,1457,1457,1457,1457,1458,1458,1458,1459,1459,1460,1460,1460,1460,1461,1461,1461,1461,1461,1461,1461,1461,1461,1462,1462,1462,1462,1462,1462,1463,1463,1463,1463,1463,1463,1463,1463,1463,1464,1464,1464,1465,1465,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1467,1467,1467,1467,1468,1468,1469,1470,1470,1470,1471,1471,1471,1472,1473,1473,1473,1473,1473,1473,1474,1474,1474,1474,1474,1474,1474,1475,1475,1475,1476,1476,1476,1476,1477,1477,1477,1477,1477,1477,1477,1477,1478,1479,1479,1479,1479,1479,1480,1480,1481,1481,1481,1481,1481,1481,1481,1481,1482,1482,1482,1482,1482,1483,1483,
+		1483,1483,1483,1483,1483,1484,1484,1485,1485,1486,1486,1486,1487,1487,1488,1489,1489,1489,1489,1489,1489,1489,1490,1490,1491,1491,1491,1491,1492,1492,1492,1492,1492,1492,1492,1492,1492,1492,1492,1492,1492,1492,1492,1492,1493,1494,1495,1495,1495,1495,1495,1496,1496,1496,1496,1496,1496,1496,1496,1497,1497,1498,1498,1498,1498,1498,1498,1498,1498,1498,1498,1499,1499,1500,1501,1501,1501,1501,1501,1501,1501,1502,1502,1502,1502,1502,1502,1502,1502,1502,1502,1502,1502,1502,1502,1502,1503,1503,1503,1503,1503,1503,1503,1504,1504,1504,1504,1504,1504,1504,1504,1505,1505,1505,1505,1505,1505,1505,1505,1505,1505,1505,1505,1505,1505,1506,1506,1506,1506,1506,1506,1506,1506,1507,1507,1507,1507,1507,1507,1507,1507,1508,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1510,1511,1511,1512,1513,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1515,1515,1515,1515,1515,1515,1515,1515,1515,1515,1515,1515,1515,1516,1516,1516,1516,1516,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1518,1519,1519,1519,1519,1519,1519,1519,1520,1520,1520,1521,1521,1522,1523,1524,1524,1524,1524,1524,1524,1524,1524,1524,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1525,1526,1526,1526,
+		1527,1527,1527,1527,1527,1528,1528,1529,1529,1529,1529,1529,1529,1529,1529,1531,1531,1531,1531,1532,1532,1533,1533,1533,1534,1534,1534,1534,1534,1534,1534,1534,1534,1534,1534,1534,1534,1534,1534,1534,1535,1535,1535,1536,1537,1537,1537,1537,1538,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1540,1541,1541,1541,1541,1541,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1542,1544,1544,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1545,1546,1546,1546,1546,1547,1549,1549,1549,1549,1550,1550,1550,1550,1550,1550,1550,1550,1551,1552,1552,1552,1552,1552,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1554,1554,1554,1555,1556,1556,1558,1559,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,
+		1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1560,1561,1561,1563,1563,1563,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1564,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1565,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,
+		1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,1566,
+		1566,1566,1566,1566,1566,1566,1566,1566,1566
+	},
+	{
+		20,27,42,62,87,111,132,154,178,202,225,248,269,288,307,324,340,356,369,382,394,404,414,423,432,440,447,454,461,467,474,480,486,492,498,503,509,515,521,526,532,537,543,548,554,559,564,569,574,579,584,589,594,599,604,608,613,618,622,627,631,636,640,644,649,653,657,662,666,670,674,678,682,686,690,693,697,701,705,709,712,716,720,723,727,731,734,738,741,745,749,752,756,759,763,766,770,773,777,780,784,787,791,794,797,801,804,807,811,814,817,821,824,827,830,834,837,840,843,846,850,853,856,859,862,865,867,870,873,876,879,881,884,886,889,892,894,897,899,901,904,906,909,911,913,916,918,920,922,925,927,929,932,934,936,938,940,942,944,946,948,950,952,954,956,958,960,961,963,965,967,969,971,973,975,976,978,980,982,984,985,987,988,990,991,993,995,996,998,1000,1001,1003,1005,1006,1008,1010,1012,1013,1015,1016,1018,1020,1021,1023,1024,1026,1028,1029,1031,1032,1034,1035,1037,1038,1040,1041,1043,1044,1046,1047,1048,1050,1051,1053,1054,1056,1057,1059,1060,1061,1063,1064,1065,1067,1068,1069,1071,1072,1074,1075,1076,1078,1079,1080,1082,1083,1084,1086,1087,1088,1089,1091,1092,1093,
+		1095,1096,1097,1098,1100,1101,1102,1103,1104,1106,1107,1108,1109,1111,1112,1113,1114,1115,1117,1118,1119,1121,1122,1123,1124,1125,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1161,1163,1163,1164,1166,1166,1167,1168,1169,1170,1171,1172,1173,1173,1174,1175,1176,1177,1178,1179,1180,1181,1181,1182,1183,1184,1185,1186,1186,1187,1188,1189,1190,1190,1191,1192,1193,1193,1194,1195,1196,1197,1198,1199,1200,1200,1201,1202,1202,1203,1204,1205,1205,1206,1207,1207,1208,1209,1210,1211,1211,1212,1212,1213,1214,1215,1216,1216,1217,1218,1218,1219,1220,1221,1221,1222,1223,1223,1224,1225,1225,1226,1227,1228,1228,1229,1230,1230,1231,1232,1232,1233,1234,1234,1235,1235,1236,1237,1237,1237,1238,1239,1240,1240,1240,1241,1242,1242,1243,1243,1244,1244,1245,1245,1246,1247,1247,1248,1249,1249,1250,1251,1252,1252,1253,1253,1254,1254,1255,1255,1256,1257,1258,1258,1258,1259,1260,1261,1261,1261,1262,1262,1262,1263,1264,1264,1264,1264,1265,1265,1265,1266,1266,1266,1267,1267,1268,1268,1269,1270,1270,1271,1271,1272,1272,1273,1274,1274,1275,1275,1276,1277,1277,1278,1278,1278,1279,1279,1279,1279,1280,1280,1280,1281,1281,1282,1282,1283,1283,1284,1284,1285,1285,1286,1286,
+		1286,1287,1287,1288,1288,1289,1289,1289,1290,1290,1290,1290,1291,1291,1292,1292,1292,1292,1293,1293,1293,1294,1295,1295,1296,1296,1296,1297,1297,1298,1298,1299,1299,1300,1300,1300,1301,1301,1301,1302,1303,1303,1303,1303,1303,1303,1303,1304,1304,1305,1305,1305,1305,1306,1306,1307,1307,1307,1307,1307,1307,1308,1308,1309,1309,1309,1310,1310,1310,1311,1311,1312,1312,1312,1312,1313,1313,1313,1313,1314,1314,1314,1315,1315,1315,1315,1315,1316,1316,1316,1317,1317,1317,1317,1318,1318,1318,1318,1318,1319,1319,1319,1319,1320,1320,1320,1320,1320,1321,1321,1321,1322,1322,1322,1323,1323,1323,1324,1324,1325,1325,1325,1325,1325,1325,1325,1326,1326,1326,1327,1327,1327,1327,1327,1327,1327,1328,1328,1328,1328,1328,1329,1329,1329,1329,1330,1330,1330,1330,1330,1331,1331,1331,1332,1332,1332,1333,1333,1333,1333,1333,1333,1333,1333,1333,1334,1334,1334,1334,1335,1335,1335,1335,1335,1336,1336,1336,1337,1337,1337,1338,1338,1338,1339,1339,1339,1339,1339,1339,1340,1340,1340,1340,1340,1341,1341,1341,1342,1342,1342,1342,1342,1342,1342,1342,1342,1342,1342,1343,1343,1344,1344,1345,1345,1345,1345,1345,1346,1347,1347,1347,1347,1347,1347,1347,1347,1347,1348,1348,1348,1348,1348,1348,1348,1348,1348,1349,1349,1349,1349,1350,1350,1351,1351,1352,1352,1353,1353,1353,1353,1353,1353,1353,1353,1353,
+		1353,1353,1353,1353,1353,1354,1354,1354,1354,1354,1354,1354,1355,1355,1355,1355,1355,1355,1355,1355,1355,1355,1356,1356,1356,1356,1357,1358,1359,1359,1359,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1361,1361,1362,1362,1362,1362,1363,1363,1363,1363,1364,1364,1364,1364,1365,1365,1365,1365,1365,1366,1366,1366,1366,1366,1366,1367,1367,1367,1367,1368,1368,1368,1368,1369,1370,1370,1370,1370,1371,1371,1371,1371,1371,1371,1371,1371,1371,1371,1371,1372,1372,1372,1372,1373,1374,1374,1375,1375,1376,1376,1376,1376,1376,1376,1376,1376,1376,1376,1376,1376,1376,1376,1376,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1379,1379,1379,1379,1379,1380,1380,1380,1380,1381,1381,1381,1382,1383,1383,1383,1383,1383,1383,1383,1383,1384,1384,1384,1384,1384,1384,1384,1384,1385,1385,1385,1385,1385,1385,1385,1385,1385,1385,1386,1387,1387,1387,1388,1388,1388,1388,1388,1388,1388,1388,1388,1388,1388,1388,1388,1388,1388,1389,1389,1390,1390,1390,1391,1392,1392,1392,1392,1393,1393,1394,1394,1395,1395,1395,1395,1395,1395,1395,1395,1395,1395,1395,1395,1396,1397,1397,1397,1398,1398,1399,1399,1399,1399,1399,1399,1399,1399,1399,1400,1401,1401,1401,1401,1401,1402,1402,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1404,1405,1405,
+		1405,1405,1405,1405,1405,1405,1406,1406,1407,1407,1407,1407,1408,1409,1410,1411,1411,1411,1411,1411,1411,1411,1411,1412,1412,1412,1412,1412,1413,1413,1414,1414,1414,1414,1414,1414,1414,1414,1414,1414,1414,1414,1414,1414,1415,1415,1416,1417,1417,1417,1417,1417,1417,1417,1417,1417,1417,1417,1417,1418,1418,1419,1419,1420,1420,1420,1420,1420,1420,1420,1420,1421,1421,1421,1421,1422,1422,1422,1422,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1424,1424,1424,1425,1425,1425,1425,1425,1425,1425,1425,1425,1425,1425,1425,1425,1425,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1428,1428,1428,1429,1430,1431,1431,1431,1431,1431,1431,1431,1431,1431,1431,1431,1431,1431,1431,1431,1432,1432,1432,1433,1433,1434,1435,1435,1435,1435,1435,1435,1435,1435,1435,1435,1435,1435,1435,1435,1435,1435,1436,1436,1436,1436,1436,1436,1436,1436,1436,1436,1437,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1438,1439,1440,1440,1441,1441,1441,1441,1441,1441,1441,1441,1441,1441,1441,1442,1442,1443,1444,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1445,1446,1446,1446,1446,1447,1447,
+		1447,1447,1448,1448,1448,1448,1449,1450,1450,1450,1450,1450,1450,1450,1450,1451,1451,1451,1451,1453,1453,1453,1454,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1455,1456,1456,1457,1457,1457,1457,1459,1459,1459,1459,1459,1459,1459,1459,1459,1459,1459,1459,1459,1459,1459,1459,1460,1460,1460,1460,1460,1460,1460,1460,1460,1462,1462,1462,1462,1462,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1463,1464,1464,1465,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1466,1467,1467,1467,1469,1469,1469,1469,1470,1470,1470,1470,1470,1470,1470,1470,1471,1471,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1472,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1473,1474,1474,1475,1475,1475,1477,1477,1477,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,1478,
+		1478,1478,1478,1478,1478,1478,1479,1479,1479,1479,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1480,1481,1481,1481,1481,1481,1482,1482,1482,1482,1482,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1483,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1484,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,
+		1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,1485,
+		1485,1485,1485,1485,1485,1485,1485,1485,1485
+	},
+	{
+		19,25,36,52,71,92,110,129,150,171,192,213,234,253,272,289,305,320,334,347,359,370,379,388,397,405,412,419,425,432,438,444,450,456,461,467,472,478,483,489,494,500,505,510,515,520,525,530,535,540,545,550,554,559,564,568,573,578,582,586,591,595,600,604,608,612,617,621,625,629,633,637,641,644,648,652,656,659,663,667,670,674,677,681,684,688,691,695,698,701,705,708,711,715,718,721,725,728,731,734,737,741,744,747,750,753,757,760,763,766,769,772,775,779,782,785,788,791,794,797,800,803,806,809,812,815,818,821,824,827,829,832,835,838,840,843,846,848,851,853,856,858,861,863,866,868,870,873,875,877,880,882,884,887,889,891,893,895,897,899,901,903,905,907,909,911,913,915,917,919,921,922,924,926,928,930,932,933,935,937,939,940,942,943,945,947,948,950,952,953,955,957,958,960,962,963,965,967,968,970,971,973,975,976,978,979,981,982,984,985,987,988,990,991,993,994,995,997,998,1000,1001,1003,1004,1005,1007,1008,1010,1011,1012,1014,1015,1016,1018,1019,1020,1021,1023,1024,1026,1027,1028,1030,1031,1032,1034,1035,1036,1038,1039,1040,1041,1043,1044,1045,
+		1046,1048,1049,1050,1051,1053,1054,1055,1056,1057,1058,1060,1061,1062,1063,1065,1066,1067,1068,1069,1071,1072,1073,1074,1075,1076,1077,1078,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1093,1094,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1117,1118,1119,1120,1121,1122,1123,1124,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1133,1134,1135,1136,1136,1137,1138,1139,1140,1140,1141,1142,1142,1143,1144,1145,1146,1147,1148,1148,1149,1150,1151,1152,1152,1153,1154,1154,1155,1155,1156,1157,1158,1159,1159,1160,1161,1161,1162,1163,1164,1165,1165,1166,1166,1167,1168,1168,1169,1170,1171,1171,1172,1173,1173,1174,1175,1176,1176,1177,1178,1178,1179,1179,1180,1181,1181,1182,1183,1183,1184,1185,1185,1186,1186,1187,1187,1188,1188,1189,1189,1190,1191,1191,1192,1192,1193,1193,1194,1194,1195,1195,1196,1197,1198,1198,1199,1200,1201,1201,1202,1202,1203,1203,1204,1204,1205,1206,1206,1206,1207,1208,1208,1209,1209,1210,1210,1210,1211,1211,1212,1212,1212,1213,1213,1213,1214,1215,1215,1215,1216,1216,1217,1217,1218,1218,1219,1220,1220,1220,1221,1221,1222,1223,1223,1223,1224,1225,1226,1226,1226,1227,1227,1227,1227,1228,1228,1228,1229,1229,1229,1230,1231,1231,1231,1232,1232,1233,1233,1234,1234,
+		1234,1235,1235,1236,1236,1237,1237,1238,1238,1238,1238,1239,1239,1239,1240,1240,1241,1241,1241,1242,1242,1243,1243,1243,1244,1244,1244,1245,1245,1246,1246,1246,1247,1247,1248,1249,1249,1249,1249,1250,1251,1251,1251,1251,1251,1252,1252,1252,1253,1253,1253,1253,1253,1254,1254,1255,1255,1255,1255,1255,1256,1256,1256,1257,1257,1257,1258,1258,1258,1259,1259,1260,1260,1260,1260,1261,1261,1261,1262,1262,1262,1262,1262,1263,1263,1263,1263,1264,1264,1264,1265,1265,1265,1265,1266,1266,1266,1266,1266,1267,1267,1267,1267,1268,1268,1268,1268,1269,1269,1269,1269,1269,1270,1270,1271,1271,1271,1272,1272,1273,1273,1273,1273,1273,1273,1273,1274,1274,1274,1274,1274,1274,1275,1275,1275,1275,1275,1276,1276,1276,1276,1277,1277,1277,1277,1278,1278,1278,1278,1278,1279,1279,1279,1279,1279,1280,1280,1280,1280,1280,1280,1281,1281,1281,1282,1282,1282,1282,1282,1282,1283,1283,1283,1283,1283,1284,1284,1284,1285,1285,1286,1286,1286,1287,1287,1287,1288,1288,1288,1288,1288,1288,1288,1288,1289,1289,1289,1289,1289,1290,1290,1290,1290,1290,1291,1291,1291,1291,1291,1291,1291,1292,1292,1292,1293,1293,1293,1293,1293,1294,1294,1294,1294,1295,1295,1295,1295,1295,1295,1295,1296,1296,1296,1296,1296,1296,1296,1296,1297,1297,1297,1298,1299,1299,1299,1299,1300,1301,1301,1301,1301,1301,1301,1301,1301,
+		1301,1301,1301,1301,1301,1301,1301,1302,1302,1302,1302,1302,1302,1302,1302,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1304,1304,1305,1306,1306,1307,1307,1307,1307,1307,1307,1307,1307,1307,1307,1307,1308,1308,1308,1308,1308,1309,1309,1309,1309,1309,1309,1309,1310,1311,1311,1311,1311,1312,1312,1312,1312,1313,1313,1313,1313,1313,1313,1313,1314,1314,1314,1314,1315,1315,1315,1316,1316,1317,1317,1317,1317,1318,1318,1318,1318,1318,1318,1318,1318,1318,1318,1319,1319,1319,1319,1320,1320,1321,1322,1322,1322,1323,1323,1323,1323,1323,1323,1323,1323,1323,1323,1323,1323,1323,1323,1324,1324,1324,1324,1324,1324,1324,1324,1324,1324,1324,1324,1324,1325,1325,1325,1326,1326,1326,1326,1327,1327,1327,1327,1327,1328,1328,1328,1328,1329,1329,1329,1329,1329,1329,1329,1329,1330,1330,1330,1330,1330,1330,1330,1330,1331,1331,1332,1332,1332,1332,1332,1332,1332,1332,1333,1333,1333,1333,1334,1334,1334,1335,1335,1335,1335,1335,1335,1335,1335,1335,1335,1335,1335,1335,1336,1336,1336,1336,1337,1338,1338,1338,1339,1339,1340,1340,1341,1341,1341,1341,1341,1341,1341,1341,1341,1341,1341,1341,1342,1343,1343,1343,1343,1344,1344,1344,1345,1345,1345,1345,1345,1345,1345,1345,1345,1346,1346,1347,1347,1347,1348,1348,1348,1349,1349,1349,1349,1349,1349,1349,1349,1349,1349,1349,1349,1350,1350,1350,
+		1351,1351,1351,1351,1351,1351,1352,1353,1353,1353,1353,1354,1354,1356,1356,1356,1357,1357,1357,1357,1357,1357,1358,1358,1358,1359,1359,1359,1359,1359,1359,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1360,1361,1361,1363,1363,1363,1363,1363,1363,1363,1363,1363,1363,1363,1363,1363,1363,1364,1365,1365,1365,1365,1365,1365,1366,1366,1366,1366,1366,1367,1367,1367,1368,1368,1368,1368,1368,1368,1368,1369,1369,1369,1369,1369,1369,1369,1369,1369,1369,1369,1369,1370,1370,1370,1370,1370,1370,1370,1370,1370,1371,1371,1371,1371,1371,1371,1371,1371,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1372,1373,1373,1373,1373,1373,1373,1373,1373,1373,1373,1374,1374,1374,1375,1376,1376,1377,1377,1377,1377,1377,1377,1377,1377,1377,1377,1377,1377,1377,1377,1378,1378,1378,1380,1380,1380,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1381,1382,1382,1382,1382,1382,1382,1383,1383,1383,1383,1383,1383,1383,1383,1383,1383,1383,1383,1385,1385,1386,1386,1386,1386,1386,1386,1386,1386,1386,1386,1386,1386,1388,1389,1390,1390,1390,1390,1390,1390,1390,1390,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1391,1392,1392,1392,1392,
+		1392,1392,1393,1394,1394,1394,1394,1395,1395,1395,1395,1395,1395,1395,1395,1396,1396,1396,1396,1397,1398,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1399,1400,1400,1401,1402,1402,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1404,1404,1404,1404,1404,1404,1405,1405,1405,1406,1406,1406,1406,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1408,1408,1409,1409,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1410,1412,1412,1413,1413,1413,1414,1414,1414,1414,1415,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1416,1418,1418,1418,1418,1419,1420,1420,1421,1422,1422,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,1423,
+		1423,1423,1423,1423,1423,1423,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1424,1425,1425,1425,1425,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1426,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1427,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1428,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,
+		1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,1429,
+		1429,1429,1429,1429,1429,1429,1429,1429,1429
+	},
+	{
+		17,20,25,34,44,58,71,85,100,117,134,152,171,189,207,225,241,256,270,283,295,306,317,326,334,342,350,357,363,369,375,381,387,392,398,403,409,414,419,424,430,435,440,445,450,455,459,464,469,474,478,483,487,492,496,501,505,509,514,518,522,526,530,535,539,543,547,551,555,559,563,566,570,574,578,582,585,589,593,596,600,603,607,610,614,617,621,624,627,631,634,637,640,643,646,649,653,656,659,662,665,668,671,674,677,679,682,685,688,691,694,696,699,702,705,708,711,713,716,719,722,725,727,730,733,735,738,741,744,746,749,752,754,757,760,762,765,768,770,773,775,778,781,783,786,788,791,793,796,798,801,803,806,808,811,813,815,818,820,822,824,826,829,831,833,835,837,839,841,843,845,847,849,851,853,855,857,859,861,862,864,866,868,869,871,873,875,876,878,880,882,883,885,887,889,890,892,894,895,897,898,900,902,903,905,906,908,910,911,913,914,916,917,919,920,922,923,925,926,927,929,930,932,933,934,936,937,939,940,942,943,944,946,947,948,950,951,952,954,955,956,958,959,960,962,963,965,966,967,968,970,971,972,973,
+		975,976,977,978,979,981,982,983,984,985,987,988,989,990,992,993,994,995,996,998,999,1000,1001,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1043,1044,1045,1046,1047,1048,1049,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1060,1061,1062,1063,1064,1065,1065,1066,1067,1068,1068,1069,1070,1070,1071,1072,1073,1074,1075,1076,1077,1078,1078,1079,1080,1081,1081,1082,1083,1083,1084,1085,1086,1086,1087,1088,1089,1089,1090,1091,1092,1092,1093,1094,1095,1095,1096,1096,1097,1098,1099,1099,1100,1101,1101,1102,1103,1103,1104,1105,1105,1106,1107,1107,1108,1109,1109,1110,1111,1111,1112,1113,1113,1114,1115,1115,1116,1116,1117,1117,1118,1118,1119,1119,1120,1120,1121,1121,1122,1123,1123,1124,1124,1125,1126,1127,1127,1128,1128,1129,1130,1131,1131,1132,1132,1133,1133,1134,1135,1135,1136,1136,1137,1138,1138,1139,1139,1139,1140,1140,1141,1141,1142,1142,1142,1143,1143,1143,1144,1144,1145,1145,1145,1146,1146,1147,1147,1148,1149,1149,1150,1150,1151,1151,1152,1152,1153,1153,1154,1155,1155,1156,1156,1156,1157,1157,1157,1157,1158,1158,1159,1159,1160,1160,1160,1161,1162,1162,1163,1163,1163,1164,1164,
+		1164,1165,1165,1166,1166,1167,1167,1168,1168,1168,1168,1168,1169,1169,1170,1170,1171,1171,1171,1171,1172,1173,1173,1173,1174,1174,1174,1175,1175,1176,1176,1177,1177,1177,1178,1179,1179,1179,1180,1180,1181,1181,1181,1181,1182,1182,1182,1182,1183,1183,1183,1183,1183,1184,1184,1185,1185,1185,1185,1186,1186,1186,1187,1187,1187,1187,1188,1188,1189,1189,1189,1190,1190,1190,1191,1191,1191,1192,1192,1192,1192,1193,1193,1193,1194,1194,1194,1194,1194,1195,1195,1195,1195,1196,1196,1196,1197,1197,1197,1197,1197,1198,1198,1199,1199,1199,1199,1199,1200,1200,1200,1200,1200,1201,1201,1202,1202,1202,1203,1203,1203,1204,1204,1204,1204,1204,1204,1204,1204,1205,1205,1205,1205,1206,1206,1206,1207,1207,1207,1207,1207,1207,1208,1208,1208,1208,1208,1209,1209,1210,1210,1210,1210,1210,1211,1211,1211,1212,1212,1212,1212,1212,1212,1212,1212,1213,1213,1213,1213,1213,1213,1214,1214,1214,1215,1215,1215,1215,1216,1216,1217,1217,1218,1218,1218,1218,1218,1218,1218,1218,1218,1219,1219,1219,1219,1220,1220,1220,1220,1220,1220,1221,1221,1221,1221,1221,1221,1222,1222,1222,1222,1223,1223,1223,1224,1224,1224,1225,1225,1225,1225,1226,1226,1226,1226,1226,1226,1226,1227,1227,1227,1227,1227,1227,1227,1227,1227,1228,1228,1228,1228,1229,1229,1230,1231,1231,1231,1231,1231,1231,1231,1231,1231,1231,1231,
+		1231,1232,1232,1232,1232,1232,1232,1233,1233,1233,1233,1233,1233,1233,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1235,1236,1236,1237,1237,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1239,1239,1239,1240,1240,1240,1240,1241,1241,1241,1241,1241,1241,1241,1241,1242,1242,1243,1243,1243,1243,1243,1243,1244,1244,1244,1244,1244,1245,1245,1245,1245,1245,1246,1246,1246,1247,1247,1248,1248,1248,1249,1249,1249,1249,1249,1249,1249,1249,1249,1249,1249,1249,1249,1250,1250,1251,1251,1252,1252,1253,1253,1253,1253,1253,1253,1253,1253,1253,1253,1253,1253,1254,1254,1254,1254,1254,1255,1255,1255,1255,1255,1255,1255,1255,1255,1255,1255,1255,1255,1256,1256,1256,1256,1256,1257,1257,1258,1258,1258,1258,1259,1259,1259,1259,1260,1260,1260,1260,1261,1261,1261,1261,1261,1261,1261,1261,1261,1261,1261,1262,1262,1262,1262,1262,1262,1263,1263,1263,1263,1263,1263,1263,1264,1264,1265,1265,1265,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1267,1267,1268,1269,1269,1270,1270,1270,1270,1271,1271,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1272,1273,1274,1274,1274,1274,1275,1275,1275,1275,1276,1276,1276,1276,1276,1276,1276,1277,1277,1278,1278,1278,1279,1279,1279,1279,1279,1279,1279,1279,1279,1280,1280,1280,1280,1280,1280,1280,1281,1282,
+		1282,1282,1282,1282,1282,1282,1283,1283,1284,1284,1284,1284,1285,1286,1286,1287,1287,1287,1287,1287,1288,1288,1288,1289,1289,1289,1289,1289,1289,1290,1290,1290,1290,1290,1290,1290,1290,1290,1290,1290,1290,1290,1290,1291,1291,1292,1292,1294,1294,1294,1294,1294,1294,1294,1294,1294,1294,1294,1294,1295,1295,1295,1295,1295,1296,1296,1296,1296,1296,1296,1296,1297,1297,1298,1298,1298,1298,1298,1299,1299,1299,1299,1299,1299,1299,1299,1299,1299,1299,1299,1299,1299,1299,1299,1300,1301,1301,1301,1301,1301,1301,1301,1301,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1302,1303,1303,1304,1304,1304,1304,1304,1304,1304,1304,1304,1304,1305,1305,1306,1307,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1308,1309,1310,1311,1311,1311,1311,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1312,1313,1313,1313,1313,1313,1313,1313,1313,1313,1313,1313,1313,1313,1313,1314,1314,1314,1314,1314,1314,1315,1315,1316,1316,1316,1316,1316,1316,1317,1317,1317,1318,1318,1319,1319,1321,1321,1321,1321,1321,1321,1321,1321,1321,1321,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1322,1323,
+		1323,1323,1324,1324,1324,1324,1326,1326,1326,1326,1326,1326,1326,1326,1326,1326,1326,1326,1326,1327,1327,1328,1329,1329,1329,1329,1329,1330,1330,1330,1330,1330,1330,1330,1330,1330,1330,1330,1330,1330,1330,1331,1331,1332,1332,1332,1332,1333,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1334,1335,1335,1335,1335,1335,1335,1336,1336,1336,1336,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1337,1339,1339,1339,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1340,1341,1342,1342,1343,1343,1344,1344,1344,1344,1344,1346,1346,1346,1346,1346,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1347,1348,1349,1349,1349,1349,1349,1350,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,1352,
+		1352,1352,1352,1352,1352,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1354,1355,1355,1355,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1356,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,
+		1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,1358,
+		1358,1358,1358,1358,1358,1358,1358,1358,1358
+	},
+	{
+		16,19,24,31,39,49,59,70,83,97,111,127,143,159,176,193,209,224,238,251,264,275,285,295,303,311,319,325,332,338,344,350,355,360,365,371,376,381,386,391,395,400,405,410,415,419,424,428,433,437,441,446,450,454,458,463,467,471,475,479,483,487,491,494,498,502,506,510,514,517,521,525,528,532,536,539,543,547,550,554,557,561,564,567,571,574,577,581,584,587,591,594,597,600,603,606,609,612,615,618,621,623,626,629,632,635,637,640,643,646,648,651,654,656,659,662,664,667,669,672,675,677,680,682,685,687,690,692,694,697,699,702,704,707,709,712,714,716,719,721,724,726,729,731,734,736,738,741,743,746,748,750,753,755,757,760,762,764,767,769,771,773,776,778,780,782,784,787,789,791,793,795,797,799,801,803,806,808,809,811,813,815,817,819,821,823,825,826,828,830,832,834,835,837,839,841,842,844,846,848,849,851,853,854,856,857,859,860,862,864,865,867,868,870,871,873,874,876,877,879,880,881,883,884,886,887,889,890,892,893,894,896,897,898,899,901,902,903,905,906,907,909,910,911,913,914,915,917,918,919,920,922,923,924,
+		925,927,928,929,930,931,933,934,935,936,937,939,940,941,942,943,944,946,947,948,949,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,978,978,979,981,982,983,984,985,986,986,987,988,989,990,991,992,993,994,995,996,996,997,998,999,1000,1001,1002,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1012,1013,1014,1015,1016,1016,1017,1018,1019,1019,1020,1021,1022,1022,1023,1024,1025,1026,1027,1027,1028,1029,1030,1030,1031,1032,1032,1033,1034,1034,1035,1036,1037,1037,1038,1039,1040,1041,1041,1042,1042,1043,1044,1044,1045,1046,1046,1047,1048,1048,1049,1050,1051,1051,1052,1053,1053,1054,1055,1055,1056,1056,1057,1058,1059,1059,1060,1061,1061,1062,1062,1063,1064,1064,1065,1065,1066,1066,1067,1067,1068,1068,1069,1069,1070,1071,1071,1072,1072,1073,1073,1074,1075,1076,1076,1077,1078,1078,1079,1080,1080,1081,1081,1081,1082,1083,1083,1084,1084,1085,1085,1086,1087,1087,1088,1088,1088,1089,1089,1090,1090,1091,1091,1091,1092,1092,1092,1093,1093,1093,1094,1094,1095,1095,1096,1097,1097,1098,1098,1099,1099,1100,1100,1101,1101,1102,1103,1103,1104,1104,1104,1104,1105,1105,1105,1106,1106,1107,1107,1107,1108,1108,1109,1110,1110,1110,1111,1111,1112,1112,
+		1112,1113,1113,1114,1114,1115,1115,1115,1116,1116,1116,1116,1117,1117,1118,1118,1118,1118,1119,1119,1120,1120,1121,1121,1121,1122,1122,1123,1123,1124,1124,1124,1125,1125,1126,1126,1127,1127,1127,1128,1128,1129,1129,1129,1129,1129,1129,1130,1130,1131,1131,1131,1131,1132,1132,1133,1133,1133,1133,1134,1134,1134,1134,1134,1135,1135,1135,1136,1136,1137,1137,1137,1138,1138,1138,1139,1139,1139,1140,1140,1140,1141,1141,1141,1141,1142,1142,1142,1142,1142,1143,1143,1143,1143,1144,1144,1144,1144,1144,1145,1145,1145,1146,1146,1146,1147,1147,1147,1147,1148,1148,1148,1148,1149,1149,1149,1149,1150,1150,1151,1151,1151,1152,1152,1152,1152,1152,1152,1152,1152,1153,1153,1153,1153,1154,1154,1154,1154,1154,1155,1155,1155,1155,1156,1156,1156,1156,1157,1157,1157,1158,1158,1158,1158,1158,1158,1159,1159,1159,1159,1159,1159,1160,1160,1161,1161,1161,1161,1161,1161,1161,1162,1162,1162,1162,1163,1163,1163,1164,1164,1164,1165,1165,1165,1166,1166,1166,1166,1166,1166,1166,1166,1166,1166,1167,1167,1168,1168,1168,1168,1168,1168,1169,1169,1169,1169,1169,1169,1169,1170,1170,1171,1171,1171,1171,1172,1172,1172,1173,1173,1173,1173,1174,1174,1174,1174,1174,1174,1174,1174,1175,1175,1175,1175,1175,1175,1175,1175,1175,1176,1176,1176,1177,1177,1178,1179,1179,1179,1180,1180,1180,1180,1180,1180,1180,
+		1180,1180,1180,1180,1180,1180,1180,1180,1180,1180,1180,1180,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1182,1182,1183,1183,1184,1184,1185,1185,1186,1186,1186,1186,1186,1186,1186,1186,1186,1186,1187,1187,1187,1187,1187,1187,1188,1188,1188,1188,1189,1189,1189,1189,1189,1190,1190,1190,1191,1191,1191,1191,1191,1191,1192,1192,1192,1193,1193,1193,1193,1193,1193,1193,1194,1194,1195,1195,1195,1195,1195,1196,1196,1197,1197,1197,1197,1197,1197,1197,1197,1197,1197,1197,1197,1198,1198,1199,1199,1200,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1202,1202,1202,1202,1202,1202,1202,1202,1202,1202,1202,1202,1202,1202,1203,1203,1203,1203,1203,1203,1204,1204,1205,1205,1205,1205,1205,1205,1206,1206,1207,1207,1207,1207,1207,1207,1208,1208,1208,1208,1208,1208,1208,1208,1209,1209,1209,1209,1209,1209,1209,1209,1210,1210,1210,1210,1210,1211,1211,1211,1212,1212,1212,1212,1212,1212,1213,1213,1213,1213,1213,1213,1213,1213,1213,1213,1213,1213,1213,1214,1215,1215,1216,1216,1216,1216,1217,1217,1218,1218,1218,1218,1218,1218,1218,1219,1219,1219,1219,1219,1219,1220,1220,1221,1221,1221,1221,1221,1221,1222,1222,1223,1223,1223,1223,1223,1223,1223,1224,1224,1224,1225,1225,1225,1225,1225,1226,1226,1226,1226,1226,1226,1226,1226,1226,1226,1227,1227,1228,1229,
+		1229,1229,1229,1229,1229,1229,1230,1230,1230,1230,1230,1230,1231,1232,1233,1233,1233,1233,1233,1233,1233,1233,1234,1235,1235,1235,1235,1235,1235,1236,1236,1236,1236,1236,1236,1236,1236,1236,1236,1236,1236,1236,1236,1236,1237,1238,1238,1239,1239,1239,1239,1240,1240,1240,1240,1240,1240,1240,1240,1241,1241,1241,1241,1241,1241,1241,1241,1241,1242,1242,1242,1242,1242,1242,1243,1243,1244,1244,1244,1244,1245,1245,1245,1245,1245,1245,1245,1245,1245,1245,1245,1245,1245,1245,1245,1245,1246,1246,1246,1246,1246,1246,1246,1246,1247,1247,1247,1247,1247,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1249,1249,1249,1249,1249,1249,1249,1250,1250,1250,1250,1250,1250,1250,1250,1251,1252,1252,1252,1252,1252,1252,1252,1253,1253,1253,1253,1253,1253,1253,1253,1253,1253,1253,1254,1255,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1258,1258,1258,1258,1258,1258,1258,1258,1258,1258,1258,1258,1258,1258,1258,1259,1259,1259,1259,1259,1259,1259,1259,1259,1259,1259,1260,1260,1261,1261,1261,1261,1261,1261,1261,1261,1262,1262,1263,1263,1264,1265,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1266,1267,1268,
+		1268,1268,1268,1268,1269,1269,1270,1270,1270,1270,1270,1270,1270,1270,1271,1271,1271,1271,1272,1273,1273,1273,1273,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1274,1275,1276,1276,1277,1277,1277,1277,1278,1278,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1279,1280,1280,1280,1281,1281,1281,1281,1281,1281,1281,1281,1281,1281,1281,1281,1281,1282,1282,1282,1282,1282,1282,1282,1282,1282,1282,1282,1282,1282,1282,1283,1283,1283,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1284,1285,1286,1287,1287,1287,1288,1289,1289,1289,1289,1289,1289,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1291,1292,1292,1293,1294,1294,1294,1294,1295,1296,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,1297,
+		1297,1297,1297,1297,1297,1297,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1298,1299,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1301,1302,1302,1302,1302,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,
+		1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,1303,
+		1303,1303,1303,1303,1303,1303,1303,1303,1303
+	},
+	{
+		17,18,21,25,31,36,43,50,60,70,82,94,108,122,137,152,168,183,197,210,223,234,245,255,264,272,280,287,293,299,305,311,316,322,327,332,337,342,347,351,356,361,365,370,374,379,383,387,392,396,400,404,408,412,416,420,424,428,432,436,440,444,447,451,455,458,462,466,469,473,476,480,483,487,490,494,497,501,504,507,511,514,518,521,524,527,531,534,537,540,544,547,550,553,556,559,562,565,568,571,574,577,580,583,586,588,591,594,596,599,602,605,607,610,612,615,617,620,623,625,627,630,632,635,637,639,642,644,646,649,651,653,655,658,660,662,664,667,669,671,673,675,678,680,682,684,687,689,691,693,695,698,700,702,704,706,708,711,713,715,717,719,721,723,725,727,729,732,734,736,738,740,742,744,746,748,750,753,755,757,759,761,763,765,767,768,770,772,774,776,778,780,782,784,786,788,790,791,793,795,797,798,800,802,804,805,807,809,810,812,814,816,817,819,820,822,823,825,826,828,829,831,832,834,835,837,838,840,841,843,844,846,847,848,849,851,852,853,855,856,858,859,860,862,863,864,866,867,868,870,871,872,873,874,
+		876,877,878,879,881,882,883,884,885,887,888,889,890,891,892,893,895,896,897,899,900,901,902,903,904,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,940,941,942,943,944,945,946,947,947,948,949,950,951,952,953,954,954,955,956,957,958,959,960,961,962,962,963,964,965,965,966,967,968,968,969,970,971,971,972,973,974,975,975,976,977,978,979,979,980,981,981,982,983,984,984,985,985,986,987,988,989,989,990,991,992,992,993,994,994,995,995,996,997,998,998,999,1000,1001,1001,1002,1003,1003,1004,1005,1005,1006,1006,1007,1008,1008,1009,1010,1010,1011,1011,1012,1013,1013,1014,1014,1015,1015,1016,1016,1017,1017,1018,1019,1019,1020,1020,1021,1021,1022,1022,1023,1024,1025,1025,1026,1026,1027,1028,1028,1029,1030,1030,1030,1031,1032,1032,1033,1033,1034,1034,1035,1036,1036,1037,1037,1037,1038,1038,1039,1039,1040,1040,1040,1041,1041,1042,1042,1042,1043,1043,1044,1044,1045,1045,1046,1046,1047,1047,1048,1048,1049,1049,1050,1050,1051,1051,1052,1053,1053,1053,1054,1054,1054,1055,1055,1055,1056,1056,1056,1057,1057,1058,1058,1059,1059,1060,1060,1061,1061,1061,
+		1062,1062,1063,1063,1063,1064,1064,1064,1065,1065,1065,1066,1066,1067,1067,1067,1068,1068,1069,1069,1069,1070,1070,1071,1071,1071,1072,1072,1072,1073,1074,1074,1074,1075,1075,1076,1076,1076,1077,1077,1077,1078,1078,1078,1078,1079,1079,1079,1080,1080,1081,1081,1081,1081,1082,1082,1082,1083,1083,1083,1083,1084,1084,1084,1084,1085,1085,1085,1086,1087,1087,1087,1087,1087,1088,1088,1089,1089,1089,1089,1090,1090,1090,1090,1091,1091,1091,1091,1092,1092,1092,1092,1093,1093,1093,1094,1094,1094,1094,1094,1095,1095,1095,1095,1096,1096,1096,1096,1096,1097,1097,1097,1097,1098,1098,1099,1099,1100,1100,1101,1101,1101,1101,1101,1101,1101,1101,1101,1101,1101,1102,1102,1103,1103,1103,1103,1104,1104,1104,1104,1105,1105,1105,1105,1105,1105,1106,1106,1107,1107,1107,1107,1107,1108,1108,1108,1109,1109,1109,1109,1109,1109,1110,1110,1110,1110,1110,1111,1111,1111,1111,1111,1111,1112,1112,1112,1113,1113,1113,1113,1114,1114,1115,1115,1115,1115,1116,1116,1116,1116,1116,1117,1117,1117,1117,1117,1117,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1119,1119,1120,1120,1121,1121,1121,1121,1122,1122,1122,1122,1123,1123,1123,1123,1123,1123,1123,1123,1123,1124,1124,1124,1124,1124,1124,1124,1124,1125,1125,1125,1125,1126,1126,1127,1127,1128,1128,1128,1128,1128,1129,1129,1129,1129,1129,
+		1129,1129,1129,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1131,1131,1131,1131,1131,1131,1131,1131,1131,1131,1132,1132,1133,1133,1134,1134,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1136,1136,1136,1136,1136,1137,1138,1138,1138,1138,1138,1138,1138,1138,1139,1139,1139,1139,1140,1140,1140,1140,1140,1141,1141,1141,1141,1141,1142,1142,1142,1142,1143,1143,1143,1143,1144,1144,1144,1144,1145,1145,1145,1145,1145,1146,1146,1146,1146,1146,1146,1146,1146,1146,1146,1147,1147,1148,1148,1149,1149,1149,1149,1150,1150,1150,1150,1150,1150,1150,1150,1150,1150,1150,1150,1151,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1153,1153,1153,1153,1154,1154,1154,1154,1154,1155,1155,1155,1155,1156,1156,1156,1156,1156,1157,1157,1157,1157,1157,1157,1157,1157,1158,1158,1158,1158,1158,1159,1159,1159,1159,1159,1159,1159,1159,1159,1160,1160,1160,1160,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1162,1162,1163,1163,1163,1163,1164,1165,1166,1166,1166,1166,1166,1166,1167,1168,1168,1168,1168,1168,1168,1168,1168,1168,1168,1168,1168,1168,1169,1169,1169,1170,1170,1170,1171,1171,1171,1171,1171,1171,1171,1171,1171,1172,1172,1173,1173,1173,1173,1174,1174,1174,1174,1175,1175,1175,1175,1175,1175,1175,1175,1175,1175,1176,1176,1176,
+		1177,1177,1177,1177,1177,1177,1178,1178,1178,1178,1179,1179,1180,1181,1181,1182,1182,1182,1182,1182,1182,1182,1182,1183,1183,1183,1183,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1185,1185,1186,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1188,1188,1188,1188,1189,1189,1189,1189,1189,1189,1189,1189,1190,1191,1191,1191,1191,1191,1192,1192,1192,1192,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1194,1194,1194,1194,1194,1194,1194,1194,1194,1194,1194,1195,1195,1195,1195,1195,1195,1195,1195,1195,1196,1196,1196,1196,1196,1196,1196,1196,1196,1196,1196,1196,1196,1196,1196,1197,1197,1197,1197,1197,1197,1197,1198,1198,1198,1198,1198,1198,1198,1199,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1201,1202,1202,1202,1203,1203,1204,1204,1204,1204,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1205,1206,1206,1206,1206,1206,1206,1206,1206,1206,1206,1206,1206,1207,1207,1207,1207,1208,1208,1208,1208,1208,1208,1208,1208,1208,1209,1209,1209,1209,1210,1211,1211,1212,1213,1213,1213,1213,1213,1213,1213,1213,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1214,1215,1215,
+		1215,1215,1216,1216,1216,1217,1217,1218,1218,1218,1218,1218,1218,1218,1218,1218,1218,1218,1219,1219,1220,1220,1220,1221,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1222,1223,1223,1224,1224,1224,1224,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1225,1226,1226,1226,1226,1226,1226,1226,1227,1227,1227,1227,1227,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1228,1229,1229,1229,1229,1229,1229,1229,1230,1230,1230,1230,1230,1230,1230,1230,1230,1230,1230,1230,1230,1230,1230,1230,1231,1231,1231,1231,1232,1232,1232,1233,1235,1235,1235,1235,1235,1235,1236,1236,1236,1236,1236,1236,1236,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1237,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1238,1239,1239,1239,1239,1240,1240,1240,1242,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,1243,
+		1243,1243,1243,1243,1243,1243,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1244,1245,1245,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1247,1247,1247,1247,1247,1247,1247,1247,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1249,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,
+		1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,1250,
+		1250,1250,1250,1250,1250,1250,1250,1250,1250
+	},
+	{
+		16,18,20,22,26,30,34,39,45,52,61,70,81,93,105,118,131,145,159,172,185,196,207,217,226,235,242,250,256,263,269,274,280,285,290,295,300,305,309,314,318,323,327,332,336,340,345,349,353,357,361,365,369,373,377,381,385,388,392,396,399,403,407,410,414,417,421,424,428,431,435,438,441,445,448,451,455,458,461,464,468,471,474,477,480,484,487,490,493,496,499,502,505,508,511,514,517,520,524,526,529,532,535,538,541,544,546,549,552,555,557,560,563,565,568,571,573,576,578,581,583,586,588,590,593,595,597,599,602,604,606,609,611,613,615,617,620,622,624,626,628,630,632,634,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,694,696,698,700,702,704,706,708,710,712,713,715,717,719,721,723,725,727,729,731,732,734,736,738,740,742,744,746,748,750,752,753,755,757,759,760,762,764,766,767,769,771,772,774,776,777,779,781,782,784,785,787,789,790,792,793,795,796,798,799,801,802,804,805,807,808,809,811,812,814,815,816,818,819,821,822,823,824,826,827,828,
+		830,831,832,834,835,836,838,839,840,841,842,843,844,846,847,848,849,851,852,853,854,856,857,858,859,860,861,862,863,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,901,902,903,904,905,905,906,907,908,909,910,911,912,913,913,914,915,916,917,918,919,919,920,921,922,922,923,924,924,925,926,927,928,929,930,930,931,932,933,934,934,935,936,936,937,938,938,939,940,941,941,942,943,944,944,945,946,946,947,948,948,949,950,950,951,952,952,953,954,954,955,956,957,957,958,958,959,960,960,961,962,963,963,964,964,965,966,967,967,968,968,969,969,970,970,971,972,972,973,973,974,974,975,975,976,977,977,978,978,979,980,980,981,982,982,983,983,984,985,985,986,986,987,987,988,989,989,990,990,991,992,992,993,993,993,994,994,995,995,996,996,996,997,997,997,998,998,999,999,1000,1000,1001,1001,1002,1002,1003,1003,1004,1004,1005,1005,1006,1007,1007,1008,1008,1009,1009,1009,1010,1010,1010,1011,1011,1011,1012,1012,1012,1013,1014,1014,1014,1015,1015,1016,1016,1017,1017,1017,
+		1018,1018,1019,1019,1019,1020,1020,1021,1021,1021,1022,1022,1022,1023,1024,1024,1024,1024,1024,1025,1025,1026,1027,1027,1027,1028,1028,1029,1029,1030,1030,1030,1031,1031,1031,1032,1032,1032,1033,1033,1034,1034,1034,1035,1035,1035,1035,1036,1036,1036,1036,1036,1037,1037,1038,1038,1038,1038,1039,1039,1039,1040,1040,1041,1041,1041,1042,1042,1042,1043,1043,1043,1044,1044,1044,1044,1045,1045,1046,1046,1046,1046,1046,1046,1047,1047,1047,1048,1048,1048,1048,1049,1049,1049,1050,1050,1050,1050,1050,1051,1051,1051,1051,1052,1052,1052,1052,1053,1053,1053,1053,1054,1054,1054,1055,1055,1055,1056,1056,1057,1057,1057,1057,1057,1057,1057,1058,1058,1058,1058,1058,1059,1059,1059,1059,1060,1060,1060,1061,1061,1061,1061,1061,1062,1062,1062,1063,1063,1063,1063,1063,1064,1064,1064,1064,1064,1065,1065,1065,1065,1065,1066,1066,1066,1066,1067,1067,1067,1067,1067,1068,1068,1068,1068,1068,1069,1069,1069,1070,1070,1071,1071,1071,1071,1072,1072,1072,1072,1072,1073,1073,1073,1073,1073,1073,1074,1074,1074,1074,1074,1074,1075,1075,1075,1075,1075,1075,1075,1075,1076,1077,1077,1077,1077,1077,1078,1078,1079,1079,1079,1079,1079,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1081,1081,1081,1082,1082,1082,1083,1083,1084,1085,1085,1085,1085,1085,1085,1085,1085,1085,1085,1085,
+		1085,1086,1086,1086,1086,1086,1086,1086,1086,1087,1087,1087,1087,1087,1088,1088,1088,1088,1088,1088,1088,1088,1088,1089,1089,1089,1090,1091,1091,1091,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1093,1093,1093,1093,1094,1094,1094,1094,1095,1095,1095,1095,1095,1095,1096,1096,1096,1096,1096,1097,1097,1097,1097,1097,1098,1098,1098,1098,1098,1099,1099,1099,1099,1100,1100,1100,1100,1101,1101,1102,1102,1102,1102,1102,1103,1103,1103,1103,1103,1103,1103,1103,1103,1103,1103,1103,1103,1105,1105,1106,1106,1106,1107,1107,1107,1107,1107,1107,1107,1107,1107,1107,1108,1108,1108,1108,1108,1109,1109,1109,1109,1109,1109,1109,1109,1109,1109,1109,1109,1109,1109,1109,1110,1110,1110,1110,1111,1111,1111,1111,1112,1112,1112,1112,1113,1113,1113,1113,1113,1113,1114,1114,1114,1114,1114,1114,1114,1114,1114,1115,1116,1116,1116,1116,1116,1116,1116,1116,1116,1116,1116,1116,1116,1116,1117,1118,1118,1118,1118,1118,1118,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1120,1120,1120,1121,1121,1122,1122,1123,1123,1123,1123,1123,1124,1124,1124,1124,1124,1124,1124,1125,1125,1125,1125,1125,1125,1126,1126,1126,1126,1126,1127,1127,1127,1128,1128,1128,1128,1128,1128,1128,1129,1129,1129,1129,1129,1130,1131,1131,1131,1131,1131,1131,1131,1131,1131,1132,1132,1132,1132,1132,1132,1133,1133,1133,
+		1134,1134,1134,1134,1134,1134,1135,1135,1135,1135,1136,1136,1137,1137,1138,1138,1138,1139,1139,1139,1139,1139,1139,1139,1139,1140,1140,1140,1140,1141,1141,1141,1141,1141,1141,1141,1141,1141,1141,1141,1141,1141,1141,1142,1143,1143,1143,1143,1144,1144,1144,1144,1144,1144,1144,1144,1144,1145,1145,1145,1145,1145,1146,1146,1146,1146,1147,1147,1147,1147,1147,1147,1147,1147,1148,1148,1148,1148,1149,1149,1149,1149,1149,1149,1149,1149,1149,1149,1149,1149,1149,1149,1150,1150,1150,1150,1151,1151,1151,1151,1151,1151,1151,1151,1151,1151,1151,1151,1151,1151,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1153,1153,1153,1153,1153,1153,1153,1153,1153,1153,1154,1154,1154,1154,1154,1154,1155,1156,1156,1157,1157,1157,1157,1157,1157,1157,1157,1157,1157,1157,1157,1157,1158,1158,1158,1159,1159,1159,1160,1160,1160,1160,1160,1160,1160,1160,1160,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1161,1162,1162,1162,1162,1162,1163,1163,1163,1163,1163,1163,1163,1163,1163,1163,1163,1163,1163,1164,1165,1165,1165,1165,1165,1165,1165,1165,1165,1166,1166,1167,1168,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1169,1170,1171,1171,1171,1171,1171,1171,1171,1171,
+		1171,1171,1171,1171,1171,1172,1173,1173,1173,1173,1173,1173,1173,1174,1174,1174,1174,1174,1174,1175,1176,1176,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1177,1178,1178,1179,1180,1180,1180,1180,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1181,1182,1182,1182,1182,1182,1182,1182,1182,1183,1183,1183,1183,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1184,1185,1185,1185,1186,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1187,1188,1188,1188,1188,1188,1189,1189,1189,1190,1190,1190,1190,1191,1191,1191,1191,1191,1191,1192,1192,1192,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1193,1195,1195,1195,1195,1196,1197,1197,1197,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,1198,
+		1198,1198,1198,1198,1198,1199,1199,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1201,1202,1202,1202,1203,1203,1203,1203,1203,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,
+		1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,1204,
+		1204,1204,1204,1204,1204,1204,1204,1204,1204
+	},
+	{
+		16,16,17,19,21,25,27,30,33,37,42,47,54,62,71,81,90,101,113,125,136,148,158,168,178,186,194,202,209,215,221,227,232,237,242,247,252,257,262,266,270,275,279,283,287,291,295,299,303,307,311,314,318,322,325,329,333,336,339,343,346,350,353,356,360,363,366,369,373,376,379,382,385,388,391,394,397,401,404,407,410,413,416,418,421,424,427,430,433,436,439,442,444,447,450,453,456,459,461,464,467,469,472,475,478,480,483,486,488,491,493,496,499,501,504,506,509,512,514,517,519,522,524,527,529,531,534,536,538,541,543,545,548,550,552,554,556,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,600,602,604,606,608,609,611,613,615,617,618,620,622,624,625,627,629,631,633,634,636,638,639,641,643,644,646,647,649,651,652,654,656,657,659,661,662,664,666,667,669,671,673,674,676,678,679,681,683,685,686,688,690,691,693,695,696,698,699,701,703,704,706,708,709,711,713,714,716,718,719,721,723,724,726,727,729,730,732,734,735,737,738,740,742,743,745,746,748,749,751,752,754,755,757,758,
+		760,761,763,764,765,767,768,770,771,772,773,775,776,778,779,780,782,783,784,786,787,788,790,791,792,793,795,796,797,798,799,800,801,802,804,805,806,807,808,809,810,811,812,814,815,816,817,818,819,820,821,822,823,825,826,827,828,829,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,844,845,846,847,848,849,850,851,852,853,853,854,855,856,857,857,858,859,860,860,861,862,863,864,865,865,866,867,868,869,869,870,871,872,872,873,874,874,875,876,877,877,878,879,880,880,881,882,882,883,884,885,886,886,887,887,888,889,890,890,891,892,892,893,894,894,895,896,896,897,897,898,899,899,900,901,901,902,903,904,904,905,905,906,906,907,908,908,909,909,910,910,911,911,912,912,913,914,914,915,915,916,917,918,918,919,919,920,921,921,922,922,923,923,924,924,925,925,926,927,927,928,928,929,929,930,930,931,931,932,932,933,933,933,933,934,934,935,935,936,936,936,937,938,938,939,940,940,941,941,942,942,943,943,944,944,945,946,946,946,947,947,947,948,948,948,949,949,950,950,951,951,952,952,953,953,954,954,955,955,955,
+		956,956,957,957,957,958,958,959,959,959,959,960,960,961,961,962,962,962,962,963,963,964,964,965,965,966,966,966,967,967,968,968,968,969,970,970,970,971,971,972,972,972,972,973,973,973,974,974,974,974,974,975,975,976,976,976,976,977,977,977,978,978,978,979,979,979,980,980,981,981,981,982,982,982,982,982,983,983,984,984,984,985,985,985,985,986,987,987,987,987,987,987,987,988,988,988,989,989,989,989,989,990,990,990,991,991,992,992,992,992,992,992,993,993,994,994,994,995,995,996,996,996,996,996,996,996,997,997,997,997,997,997,998,998,998,999,999,999,1000,1000,1000,1000,1001,1001,1001,1001,1002,1002,1002,1003,1003,1003,1003,1003,1003,1004,1004,1004,1004,1004,1004,1005,1005,1005,1006,1006,1006,1006,1006,1006,1007,1007,1007,1007,1007,1008,1008,1008,1009,1009,1009,1010,1010,1011,1011,1011,1011,1011,1011,1012,1012,1012,1012,1012,1012,1012,1013,1013,1013,1013,1013,1014,1014,1014,1014,1014,1014,1014,1015,1015,1016,1016,1016,1017,1017,1017,1018,1018,1018,1018,1018,1018,1019,1019,1019,1019,1019,1019,1019,1019,1020,1020,1020,1020,1020,1020,1020,1021,1021,1021,1022,1022,1023,1023,1023,1024,1024,1024,1024,1025,1025,1025,1025,1025,1025,
+		1025,1025,1025,1025,1026,1026,1026,1026,1026,1026,1026,1026,1026,1027,1027,1027,1027,1027,1027,1027,1027,1028,1028,1028,1028,1029,1029,1029,1030,1031,1031,1031,1031,1031,1031,1031,1031,1031,1031,1032,1032,1032,1032,1032,1033,1033,1033,1034,1034,1034,1034,1034,1035,1035,1035,1036,1036,1036,1036,1036,1037,1037,1037,1037,1037,1037,1037,1037,1038,1038,1038,1038,1038,1039,1039,1040,1040,1040,1041,1041,1041,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1043,1043,1043,1044,1044,1045,1045,1045,1045,1045,1045,1045,1046,1046,1046,1046,1046,1046,1046,1046,1046,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1048,1048,1048,1048,1048,1048,1048,1049,1049,1049,1050,1050,1050,1050,1050,1051,1051,1052,1052,1052,1052,1052,1053,1053,1053,1053,1053,1053,1053,1053,1054,1054,1054,1054,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1056,1056,1057,1057,1057,1057,1057,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1059,1060,1061,1061,1062,1062,1062,1062,1062,1063,1063,1063,1063,1063,1063,1063,1063,1064,1064,1064,1064,1064,1064,1064,1064,1065,1065,1065,1066,1066,1066,1066,1067,1067,1067,1067,1067,1067,1068,1068,1068,1069,1069,1069,1070,1070,1070,1070,1070,1070,1070,1070,1070,1070,1071,1071,1071,1071,1071,1071,1072,1072,
+		1072,1072,1073,1073,1073,1073,1074,1074,1074,1075,1075,1075,1076,1076,1077,1077,1078,1078,1078,1078,1078,1078,1078,1078,1078,1078,1078,1079,1079,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1080,1081,1081,1081,1082,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1084,1084,1084,1084,1084,1085,1085,1085,1086,1086,1086,1086,1086,1086,1086,1086,1087,1088,1088,1088,1088,1088,1088,1088,1088,1088,1088,1088,1088,1088,1088,1088,1089,1089,1089,1089,1089,1089,1089,1089,1090,1090,1090,1090,1090,1090,1090,1090,1091,1091,1091,1091,1091,1091,1091,1091,1091,1091,1091,1091,1091,1091,1091,1091,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1093,1094,1095,1095,1096,1096,1096,1096,1096,1096,1096,1096,1096,1096,1096,1096,1096,1096,1096,1097,1097,1098,1098,1098,1098,1098,1098,1099,1099,1099,1099,1099,1099,1099,1099,1099,1099,1099,1099,1099,1099,1099,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101,1101,1101,1101,1101,1101,1101,1102,1102,1103,1103,1103,1103,1103,1103,1103,1103,1103,1104,1104,1104,1105,1106,1106,1107,1107,1107,1107,1107,1107,1107,1107,1107,1107,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1108,1109,1109,
+		1109,1110,1110,1110,1110,1110,1111,1112,1112,1112,1112,1112,1112,1112,1112,1113,1113,1113,1113,1113,1114,1114,1114,1114,1114,1114,1114,1115,1115,1115,1115,1115,1115,1115,1115,1115,1115,1115,1115,1115,1115,1116,1117,1117,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1119,1120,1120,1120,1120,1121,1121,1121,1121,1121,1121,1121,1121,1121,1121,1121,1121,1121,1121,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1123,1124,1125,1125,1125,1125,1125,1126,1127,1128,1128,1128,1128,1128,1128,1128,1128,1128,1128,1128,1129,1129,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1130,1131,1131,1132,1132,1132,1132,1133,1134,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,1135,
+		1135,1135,1135,1135,1135,1135,1136,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1137,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1138,1139,1139,1139,1139,1139,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,
+		1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,1140,
+		1140,1140,1140,1140,1140,1140,1140,1140,1140
+	},
+	{
+		16,16,16,18,20,22,24,27,29,32,35,38,42,47,53,59,67,74,82,92,101,112,122,132,141,150,159,166,174,180,187,193,198,204,209,214,219,223,228,232,237,241,245,249,254,258,261,265,269,273,277,280,284,288,291,295,298,301,305,308,311,315,318,321,324,327,330,334,337,340,343,346,349,352,355,358,361,364,367,369,372,375,378,381,384,387,389,392,395,398,401,403,406,409,411,414,417,419,422,425,427,430,433,435,438,441,443,446,448,451,453,456,458,461,463,466,468,471,473,476,478,481,483,485,488,490,493,495,497,500,502,504,506,509,511,513,515,517,519,522,524,526,528,530,532,534,536,538,540,542,544,546,548,550,552,554,556,558,559,561,563,565,567,569,570,572,574,576,577,579,581,582,584,586,587,589,591,592,594,596,597,599,601,602,604,605,607,608,610,611,613,615,616,618,619,621,623,624,626,627,629,630,632,634,635,637,638,640,641,643,644,646,648,649,651,652,654,655,657,658,660,661,663,664,666,668,669,671,672,674,675,677,678,680,681,683,684,686,687,689,691,692,694,695,697,698,700,701,703,704,706,707,709,710,
+		712,713,715,716,718,719,721,722,723,725,726,728,729,730,732,733,735,736,738,739,740,742,743,744,746,747,748,749,751,752,753,754,755,757,758,759,760,761,763,764,765,766,767,768,769,771,772,773,774,775,776,777,778,779,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,798,799,800,801,802,803,804,805,806,807,808,809,810,811,811,812,813,814,814,815,816,816,817,818,819,820,821,822,822,823,824,825,826,826,827,828,829,829,830,831,832,832,833,834,834,835,836,837,837,838,839,840,840,841,842,842,843,844,844,845,846,846,847,848,849,849,850,851,852,852,853,854,854,855,855,856,857,857,858,858,859,860,860,861,861,862,863,863,864,864,865,866,866,867,867,868,868,869,869,870,870,871,871,872,873,873,874,875,876,876,877,878,878,879,879,880,880,881,881,882,882,883,883,884,884,885,885,886,886,887,887,888,889,889,889,890,890,890,891,891,892,892,892,893,893,894,894,895,895,896,896,897,897,898,899,899,899,900,901,901,902,902,903,903,903,904,904,905,905,905,906,906,907,907,908,908,908,909,909,910,910,911,911,
+		911,912,912,913,913,913,914,914,915,915,915,916,916,916,917,917,917,918,918,918,919,919,920,920,921,921,922,922,923,923,923,924,924,925,925,925,926,926,926,927,927,928,928,928,929,929,929,929,930,930,930,931,931,931,932,932,932,932,933,933,933,934,934,934,935,935,935,936,936,937,937,937,938,938,938,938,939,939,939,940,940,940,941,941,941,941,942,942,942,943,943,943,944,944,944,944,945,945,945,945,945,945,946,946,947,947,947,947,947,948,948,948,949,949,949,950,950,950,951,951,951,952,952,952,952,952,952,953,953,953,954,954,954,954,954,954,955,955,955,955,955,956,956,957,957,957,957,958,958,958,958,958,959,959,959,960,960,960,960,960,960,961,961,961,961,961,961,962,962,962,963,963,963,963,964,964,964,964,965,965,966,966,966,966,966,966,966,967,967,967,967,968,968,968,968,969,969,969,969,969,969,970,970,970,970,970,970,970,971,971,971,972,972,973,973,973,973,973,974,974,974,974,974,974,974,974,974,974,975,975,975,975,975,975,976,976,976,977,977,978,978,978,978,979,979,980,980,980,980,980,980,980,980,980,980,
+		980,980,981,981,981,981,981,981,981,982,982,982,982,982,983,983,983,983,983,983,983,983,983,984,984,984,985,985,986,986,986,986,987,987,987,987,987,987,987,987,987,988,988,988,988,989,989,989,990,990,990,990,990,990,990,991,991,991,991,991,992,992,992,992,993,993,993,993,993,993,994,994,994,994,994,994,995,995,996,996,997,997,997,997,997,997,997,997,997,997,997,997,997,997,998,998,999,999,1000,1000,1001,1001,1001,1001,1001,1001,1001,1001,1001,1001,1001,1001,1001,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1003,1003,1003,1003,1004,1004,1004,1004,1005,1005,1005,1005,1005,1005,1005,1006,1007,1007,1007,1007,1007,1008,1008,1008,1008,1008,1008,1008,1008,1008,1008,1008,1009,1009,1009,1009,1009,1010,1010,1010,1010,1010,1010,1010,1010,1011,1011,1011,1011,1012,1012,1012,1012,1012,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1014,1014,1014,1014,1015,1016,1016,1016,1017,1017,1017,1017,1018,1018,1018,1018,1018,1018,1018,1018,1018,1019,1019,1019,1019,1019,1020,1020,1020,1021,1021,1021,1021,1021,1021,1021,1022,1022,1022,1022,1022,1022,1023,1023,1024,1024,1024,1024,1024,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1027,1027,
+		1027,1027,1027,1027,1027,1028,1029,1029,1029,1029,1029,1030,1030,1031,1031,1031,1031,1031,1031,1031,1032,1032,1032,1033,1033,1033,1033,1033,1034,1034,1034,1034,1034,1034,1034,1034,1034,1034,1034,1034,1034,1034,1034,1034,1035,1036,1036,1036,1036,1037,1037,1037,1037,1037,1037,1037,1037,1038,1038,1038,1038,1038,1038,1038,1039,1039,1039,1039,1039,1039,1039,1040,1041,1041,1041,1041,1041,1041,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1042,1043,1043,1043,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1044,1045,1045,1045,1046,1046,1046,1046,1046,1047,1047,1047,1047,1047,1047,1047,1047,1048,1048,1049,1049,1049,1049,1049,1049,1049,1049,1049,1049,1049,1049,1049,1049,1049,1050,1051,1052,1052,1052,1052,1052,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1054,1054,1054,1054,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1056,1056,1057,1057,1057,1057,1057,1057,1057,1058,1058,1058,1058,1058,1059,1060,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1061,1062,
+		1062,1062,1063,1064,1064,1064,1065,1065,1065,1065,1065,1065,1065,1065,1065,1066,1066,1066,1066,1066,1067,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1068,1069,1069,1070,1070,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1071,1072,1072,1072,1072,1072,1072,1072,1073,1073,1073,1073,1073,1073,1074,1074,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1075,1076,1076,1076,1076,1076,1076,1076,1077,1077,1077,1077,1077,1077,1077,1078,1078,1078,1078,1078,1079,1079,1080,1080,1080,1080,1080,1081,1081,1081,1081,1081,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1082,1083,1084,1084,1084,1084,1084,1084,1084,1084,1084,1084,1084,1084,1085,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,1086,
+		1086,1086,1086,1087,1087,1088,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1089,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1090,1091,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,
+		1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,1092,
+		1092,1092,1092,1092,1092,1092,1092,1092,1092
+	},
+	{
+		16,16,16,17,18,20,21,24,26,29,31,33,36,39,43,48,53,60,66,73,81,89,98,108,117,126,134,142,150,157,163,169,175,181,186,191,195,200,205,209,213,217,222,226,230,233,237,241,244,248,252,255,259,262,265,269,272,275,278,281,285,288,291,294,297,300,303,306,308,311,314,317,320,323,326,328,331,334,336,339,342,345,347,350,353,355,358,360,363,366,368,371,373,376,378,381,384,386,389,391,393,396,398,401,403,406,408,410,413,415,417,420,422,424,427,429,431,434,436,438,441,443,445,448,450,452,454,456,459,461,463,465,467,469,472,474,476,478,480,482,484,487,489,491,493,495,497,499,501,503,505,507,509,511,513,515,517,519,521,522,524,526,528,530,532,533,535,537,539,540,542,544,546,547,549,551,552,554,556,557,559,560,562,564,565,567,568,570,571,573,575,576,578,579,581,582,584,585,586,588,589,591,592,594,595,597,598,600,601,603,604,605,607,608,610,611,612,614,615,616,618,619,621,622,623,625,626,628,629,630,632,633,635,636,637,639,640,641,643,644,645,647,648,650,651,652,654,655,657,658,659,661,662,663,
+		665,666,667,669,670,671,673,674,675,677,678,679,681,682,684,685,686,688,689,691,692,693,695,696,698,699,700,702,703,704,705,707,708,709,711,712,713,714,716,717,718,719,721,722,723,725,726,727,729,730,731,732,733,735,736,737,738,739,740,742,743,744,745,746,747,748,749,750,751,753,754,755,755,756,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,774,775,776,777,778,779,780,781,781,782,783,784,785,786,787,788,788,789,790,791,792,792,793,794,795,795,796,797,798,799,799,800,801,802,802,803,804,805,805,806,807,807,808,809,810,810,811,812,813,813,814,815,815,816,817,817,818,818,819,820,820,821,822,822,823,824,824,825,825,826,827,827,828,828,829,829,830,831,831,832,832,833,833,834,835,835,836,837,837,838,839,839,840,840,841,842,842,843,843,844,844,845,845,846,847,847,848,848,849,849,850,850,851,851,852,852,852,853,853,854,854,854,855,855,856,856,857,857,858,858,859,859,860,861,861,861,862,863,863,864,864,865,865,866,866,866,867,867,867,868,868,869,869,870,870,871,871,872,872,873,873,873,874,874,
+		874,875,875,875,876,876,877,877,877,878,878,879,879,879,880,881,881,881,881,882,882,883,883,884,884,884,885,885,886,886,887,887,887,888,888,889,889,889,890,890,891,891,891,892,892,892,892,893,893,893,894,894,894,895,895,895,896,896,896,897,897,897,898,898,898,898,899,899,900,900,900,901,901,901,901,902,902,903,903,903,904,904,904,904,905,905,905,906,906,906,907,907,907,907,908,908,908,908,908,909,909,909,910,910,910,911,911,911,911,911,912,912,912,913,913,914,914,914,915,915,915,916,916,916,916,916,916,917,917,917,917,917,918,918,918,918,919,919,919,919,920,920,920,921,921,921,921,922,922,922,922,922,922,923,923,924,924,924,924,925,925,925,925,926,926,926,926,926,926,926,927,927,927,928,928,928,928,929,929,929,930,930,931,931,931,931,931,932,932,932,932,932,932,932,933,933,933,934,934,934,934,934,934,934,935,935,935,935,935,936,936,936,937,937,937,937,938,938,938,938,939,939,939,939,939,939,939,940,940,940,940,940,940,940,940,941,941,941,941,942,942,943,943,943,944,944,945,945,945,945,945,945,945,945,945,
+		945,945,945,945,945,946,946,946,946,947,947,947,947,947,947,948,948,948,948,948,948,948,948,948,948,949,950,950,951,951,951,951,952,952,952,952,952,952,952,952,953,953,953,953,953,954,954,954,954,954,954,954,955,955,955,955,955,956,956,956,956,957,957,957,957,958,958,958,958,958,958,959,959,959,959,959,959,960,960,961,961,962,962,962,962,962,962,962,962,962,962,962,962,962,963,963,964,964,964,965,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,968,968,968,968,968,968,969,969,970,970,970,970,970,970,971,971,971,971,971,971,971,972,972,972,972,972,972,973,973,973,973,973,973,973,973,974,974,974,974,975,975,975,975,975,976,976,976,976,976,976,976,977,977,977,977,977,977,977,977,977,977,978,978,978,978,978,978,978,979,979,980,980,981,981,981,981,982,982,982,982,982,982,982,982,982,982,983,983,983,983,983,983,984,985,985,985,985,985,985,985,986,986,986,986,986,986,987,987,987,987,988,988,988,989,989,989,989,989,989,989,990,990,990,990,990,990,991,991,992,992,
+		992,992,992,992,992,992,993,993,993,993,993,993,994,995,995,996,996,996,996,996,996,996,996,996,996,997,997,997,998,998,998,998,998,998,998,998,998,998,998,998,998,998,998,999,1000,1000,1000,1000,1000,1001,1001,1001,1001,1001,1001,1001,1001,1001,1001,1001,1001,1002,1002,1002,1003,1003,1003,1003,1003,1003,1004,1004,1004,1004,1005,1005,1005,1005,1005,1005,1006,1006,1006,1006,1006,1006,1006,1006,1006,1006,1006,1006,1006,1006,1006,1007,1007,1007,1007,1007,1007,1007,1007,1007,1008,1008,1008,1008,1008,1008,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1009,1010,1010,1010,1010,1010,1010,1011,1011,1011,1011,1011,1011,1012,1012,1012,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1013,1014,1014,1014,1015,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1016,1017,1017,1017,1017,1017,1017,1017,1017,1017,1018,1018,1018,1018,1018,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1020,1020,1020,1020,1020,1020,1020,1020,1021,1021,1021,1022,1022,1022,1023,1023,1024,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1025,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,1026,
+		1026,1026,1027,1027,1027,1027,1027,1029,1029,1029,1029,1029,1029,1029,1029,1029,1029,1029,1029,1029,1030,1031,1031,1031,1031,1031,1031,1031,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1033,1034,1034,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1035,1036,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1039,1039,1039,1039,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1040,1041,1041,1041,1041,1043,1043,1043,1043,1043,1044,1044,1044,1044,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1045,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1046,1048,1048,1048,1048,1048,1048,1048,1049,1049,1049,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,1050,
+		1050,1050,1050,1050,1050,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1052,1052,1052,1052,1052,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1053,1054,1054,1054,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,
+		1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,1055,
+		1055,1055,1055,1055,1055,1055,1055,1055,1055
+	},
+	{
+		16,16,16,16,17,19,20,21,23,25,28,31,33,35,37,40,42,46,50,54,59,64,70,76,84,91,99,106,114,121,128,134,140,146,152,157,162,166,171,175,180,184,188,192,196,200,203,207,211,214,217,221,224,228,231,234,237,240,243,246,249,252,255,258,261,264,267,269,272,275,277,280,283,285,288,291,293,296,298,301,303,306,308,311,313,316,318,321,323,326,328,331,333,335,338,340,342,345,347,349,352,354,356,358,361,363,365,367,370,372,374,376,379,381,383,385,387,389,392,394,396,398,400,402,404,406,408,411,413,415,417,419,421,423,425,427,429,431,433,435,437,439,441,443,445,447,449,451,453,455,457,458,460,462,464,466,468,470,472,473,475,477,479,481,483,484,486,488,490,492,493,495,497,499,500,502,504,505,507,509,510,512,514,515,517,519,520,522,523,525,526,528,529,531,532,534,535,537,538,540,541,543,544,546,547,549,550,551,553,554,555,557,558,560,561,562,564,565,566,568,569,570,572,573,574,576,577,578,580,581,582,583,585,586,587,588,590,591,592,593,595,596,597,599,600,601,603,604,605,606,607,609,610,611,
+		612,614,615,616,617,618,620,621,622,623,624,626,627,628,629,631,632,633,634,636,637,638,639,641,642,643,644,645,646,648,649,650,651,652,653,654,655,657,658,659,660,661,662,664,665,666,668,669,670,671,672,674,675,676,677,678,680,681,682,683,684,686,687,688,689,690,691,692,694,695,696,697,698,699,700,701,703,704,705,706,707,708,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,735,736,737,738,739,740,741,741,742,743,744,745,746,747,748,749,749,750,751,752,753,754,754,755,756,757,758,759,759,760,761,762,762,763,764,764,765,766,767,767,768,769,770,770,771,772,773,773,774,774,775,776,776,777,778,778,779,779,780,781,781,782,782,783,783,784,785,785,786,787,787,788,789,789,790,791,791,792,792,793,794,794,795,795,796,796,797,798,798,799,799,800,800,801,801,802,802,803,803,804,804,805,805,806,806,806,807,807,808,808,809,809,810,811,811,811,812,813,813,814,814,815,815,816,816,817,817,818,818,818,819,819,819,820,820,821,821,822,822,823,823,824,824,825,825,825,826,
+		826,827,827,827,828,828,829,829,829,830,830,831,831,831,832,832,832,833,833,834,834,834,835,835,836,836,837,837,838,838,838,839,839,840,840,840,841,841,842,842,842,842,843,843,844,844,844,844,845,845,845,846,846,846,847,847,847,848,848,848,849,849,849,850,850,850,851,851,851,852,852,852,853,853,853,854,854,854,855,855,855,856,856,856,857,857,857,857,858,858,858,858,859,859,860,860,860,860,860,861,861,861,862,862,862,862,862,863,863,863,864,864,864,864,865,865,866,866,867,867,867,867,868,868,868,868,868,869,869,869,869,869,869,870,870,870,871,871,871,871,871,872,872,872,873,873,873,873,874,874,874,875,875,875,875,876,876,876,876,876,877,877,877,877,878,878,878,879,879,879,879,879,879,880,880,880,881,881,881,881,882,882,882,883,883,883,883,883,883,884,884,884,884,885,885,885,886,886,886,886,886,886,886,886,886,886,887,887,887,888,888,888,889,889,889,890,890,890,890,891,891,891,891,891,891,891,891,892,892,892,892,892,893,893,893,893,894,894,894,894,894,895,896,896,896,896,897,897,897,897,897,897,897,897,897,
+		898,898,898,898,898,898,898,898,899,899,899,899,899,900,900,900,900,900,900,900,900,900,900,901,901,901,902,902,903,903,903,903,904,904,904,904,904,904,904,904,905,905,906,906,906,906,907,907,907,907,907,907,907,907,907,908,908,908,908,909,909,909,909,910,910,910,910,910,910,910,910,911,911,911,911,911,912,912,912,912,913,913,913,914,914,914,914,914,914,914,914,914,915,915,915,915,916,916,916,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,919,920,920,920,921,921,921,921,921,921,922,922,922,922,922,922,923,923,923,924,924,924,924,924,924,924,925,925,925,925,925,925,925,925,926,926,926,926,927,927,927,927,927,927,927,927,927,927,928,928,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,930,930,931,931,932,933,933,933,933,933,933,933,933,934,934,934,934,934,934,934,935,935,935,935,935,936,936,936,936,936,937,937,937,937,937,937,937,937,938,938,938,938,939,939,939,939,939,939,939,940,940,940,940,940,940,941,941,941,941,941,941,942,942,942,
+		942,942,942,942,943,943,944,944,944,944,944,945,945,946,946,947,947,947,947,947,947,947,947,947,948,948,948,948,948,948,949,949,949,949,949,949,949,949,949,949,949,949,949,949,950,950,951,951,952,952,952,952,952,952,952,952,952,952,953,953,953,953,953,953,953,953,954,954,954,954,954,954,954,955,955,955,955,956,956,956,956,956,956,956,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,958,958,958,958,958,958,958,958,959,960,960,960,960,960,960,960,960,960,960,960,960,960,960,960,960,960,960,960,961,961,961,961,961,961,961,961,961,961,961,961,961,961,962,963,963,963,963,963,963,963,964,964,964,964,964,964,964,965,965,966,966,966,966,967,967,967,967,967,967,967,967,967,967,967,967,967,967,967,968,968,968,968,968,968,968,968,968,968,968,968,969,969,969,969,969,969,969,969,969,969,969,969,969,969,969,970,970,970,971,971,971,971,971,971,972,973,973,973,973,973,974,974,974,974,974,974,974,974,974,975,975,975,975,975,975,975,975,975,975,975,975,975,975,975,975,975,975,975,976,976,976,976,976,976,976,
+		976,977,977,977,977,977,978,978,978,978,978,978,978,978,979,979,979,979,980,980,981,981,981,981,981,981,981,981,981,981,981,981,981,981,981,981,981,981,981,981,981,983,983,984,984,984,984,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,985,986,986,986,986,986,986,986,987,987,987,987,987,987,987,987,987,987,987,987,987,987,987,987,987,988,988,988,988,988,988,989,989,989,989,989,989,989,989,989,989,989,989,989,989,989,989,990,990,991,991,991,991,991,992,992,992,992,992,992,993,993,993,994,994,994,994,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,995,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,996,997,997,997,997,997,997,997,998,998,998,998,998,998,999,999,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,
+		1000,1000,1000,1000,1000,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1003,1003,1003,1003,1003,1003,1003,1003,1003,1003,1003,1003,1004,1004,1004,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,
+		1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,1005,
+		1005,1005,1005,1005,1005,1005,1005,1005,1005
+	},
+	{
+		17,17,17,17,17,17,18,19,20,22,23,25,28,30,33,35,37,39,41,44,47,50,54,58,63,68,74,80,87,94,100,107,113,119,125,130,135,140,145,149,153,158,162,166,170,173,177,181,184,188,191,195,198,201,204,207,210,213,216,219,222,225,228,231,233,236,239,241,244,247,249,252,254,257,259,262,264,267,269,271,274,276,279,281,283,286,288,290,292,295,297,299,302,304,306,308,311,313,315,317,319,322,324,326,328,330,332,334,336,339,341,343,345,347,349,351,353,355,357,359,362,364,366,368,370,372,374,375,377,379,381,383,385,387,389,391,393,394,396,398,400,402,404,406,407,409,411,413,415,417,418,420,422,424,426,427,429,431,433,435,436,438,440,442,443,445,447,449,450,452,454,455,457,459,460,462,464,465,467,469,470,472,474,476,477,479,480,482,484,485,487,488,490,491,493,494,496,497,499,501,502,504,505,506,508,510,511,513,514,516,517,518,520,521,523,524,525,527,528,529,530,532,533,535,536,537,538,540,541,542,543,545,546,547,548,550,551,552,553,555,556,557,558,559,561,562,563,564,565,566,568,569,570,571,
+		572,573,575,576,577,578,579,580,582,583,584,585,586,587,588,589,591,592,593,594,595,597,598,599,600,601,602,603,604,605,606,607,608,609,611,611,612,614,615,616,617,618,619,620,621,622,623,624,625,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,707,708,709,710,711,712,713,714,715,716,717,717,718,719,720,721,722,722,723,724,725,726,726,727,728,729,730,730,731,732,733,733,734,735,736,736,737,738,739,739,740,741,741,742,743,743,744,745,746,746,747,748,748,749,750,751,751,752,752,753,754,754,755,756,756,757,757,758,759,759,760,760,761,761,762,763,763,764,764,765,765,766,766,766,767,767,768,768,769,770,770,771,771,772,772,773,774,774,775,775,776,776,777,777,778,778,779,779,779,780,780,781,781,782,782,783,783,783,784,784,785,786,786,787,787,788,788,
+		788,789,789,790,790,790,790,791,791,792,792,793,793,794,794,795,795,795,796,796,797,797,797,798,798,799,799,800,800,800,801,801,802,802,803,803,803,804,804,805,805,805,806,806,806,806,807,807,807,808,808,809,809,809,810,810,810,810,811,811,811,812,812,812,813,813,813,814,814,815,815,816,816,816,816,817,817,817,818,818,818,818,819,819,819,820,820,820,821,821,821,822,822,822,822,823,823,823,823,824,824,824,824,824,825,825,825,826,826,827,827,827,828,828,828,828,829,829,830,830,830,830,831,831,831,831,832,832,832,832,832,832,833,833,833,833,834,834,834,834,834,835,835,836,836,836,837,837,837,838,838,838,838,838,839,839,839,839,839,839,840,840,840,840,840,841,841,842,842,842,842,843,843,843,843,844,844,844,844,845,845,845,845,845,846,846,846,846,847,847,847,848,848,848,848,848,848,849,849,849,849,849,849,850,850,850,850,850,851,851,851,852,852,852,853,853,853,853,854,854,854,854,854,854,854,855,855,855,855,855,855,855,856,856,856,856,857,857,857,858,858,858,859,859,859,859,860,860,860,860,860,860,860,860,860,
+		860,861,861,861,861,861,861,862,862,862,862,863,863,863,863,863,863,863,863,863,864,864,864,864,865,865,866,866,866,867,867,867,867,867,867,867,867,867,868,868,868,868,868,869,869,870,870,870,870,870,870,870,870,871,871,871,871,871,872,872,872,872,873,873,873,873,874,874,874,874,874,874,874,874,875,875,875,876,876,876,876,877,877,877,877,877,877,877,877,877,878,878,878,878,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,882,883,883,883,883,884,884,884,884,884,884,884,884,884,885,885,885,885,886,886,886,887,887,888,888,888,888,888,888,888,888,888,888,889,889,889,889,889,889,890,890,890,890,890,890,890,890,891,891,891,891,891,891,892,892,892,892,892,892,892,892,893,893,893,893,893,893,893,893,893,894,894,894,895,895,895,895,896,896,896,897,897,897,897,897,897,897,897,897,898,898,898,898,898,899,899,899,899,899,900,900,900,900,900,900,900,900,900,901,901,901,901,901,902,902,902,903,903,903,903,903,903,903,904,904,904,904,904,904,905,905,905,905,
+		905,905,905,906,906,906,907,907,907,907,907,908,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,911,912,912,913,913,913,913,913,914,914,914,914,914,914,914,914,914,914,915,915,915,915,915,915,916,916,916,916,916,916,916,916,917,917,917,917,918,918,918,918,918,918,918,918,919,919,919,919,919,919,919,919,919,919,919,919,919,919,920,920,920,920,920,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,922,922,922,922,922,922,923,923,923,923,923,923,923,923,924,924,924,924,924,925,925,925,925,925,925,925,925,926,926,926,926,926,926,926,926,927,927,927,927,927,928,928,928,928,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,929,930,930,930,930,930,930,930,931,931,931,931,931,931,931,932,932,932,932,932,932,933,933,933,933,933,933,933,934,935,935,935,935,936,936,936,936,936,936,936,936,936,936,936,936,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,
+		938,938,938,939,939,940,940,940,940,940,940,940,940,940,940,940,940,941,941,942,942,943,943,943,943,943,943,943,943,943,943,943,943,943,943,943,943,943,943,943,944,944,944,945,945,945,945,945,945,945,945,945,945,945,945,945,946,946,946,946,946,946,946,946,946,946,946,946,946,946,947,947,947,947,947,947,947,947,947,947,948,948,948,948,948,948,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,949,950,950,950,950,950,950,950,951,951,951,952,952,952,952,952,952,952,952,953,953,954,954,954,954,954,954,954,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,955,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,956,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,957,958,958,958,958,958,958,960,960,960,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,961,
+		961,961,961,961,961,962,962,962,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,963,964,964,964,964,964,964,964,964,964,964,964,964,964,964,964,964,964,964,964,965,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,
+		966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,966,
+		966,966,966,966,966,966,966,966,966
+	},
+	{
+		10,12,13,14,15,16,17,18,19,21,22,23,25,27,30,32,34,35,37,39,41,43,46,49,52,55,59,64,69,74,80,86,92,98,104,110,115,120,124,129,133,137,141,145,149,153,157,160,164,167,171,174,177,180,183,186,190,193,195,198,201,204,207,210,212,215,218,220,223,225,228,230,233,235,237,240,242,244,247,249,251,254,256,258,260,263,265,267,269,271,273,276,278,280,282,284,286,288,290,293,295,297,299,301,303,305,307,309,311,313,315,317,319,321,323,325,327,329,331,332,334,336,338,340,342,344,346,348,350,351,353,355,357,359,361,362,364,366,368,369,371,373,375,376,378,380,382,383,385,387,389,390,392,394,395,397,399,401,402,404,406,407,409,411,412,414,415,417,419,420,422,424,425,427,429,430,432,433,435,437,438,440,441,443,444,446,447,449,450,452,454,455,457,458,460,461,463,464,466,467,469,470,472,473,475,476,478,479,481,482,484,485,487,488,490,491,492,494,495,497,498,499,501,502,503,505,506,507,509,510,511,512,514,515,516,518,519,520,521,523,524,525,526,528,529,530,531,532,534,535,536,537,538,539,
+		540,542,543,544,545,546,547,548,549,550,552,553,554,555,556,557,558,559,560,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,628,629,630,631,632,633,634,635,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,672,673,674,675,676,677,678,679,680,681,682,683,684,684,685,686,687,688,689,690,691,692,692,693,694,695,696,697,698,698,699,700,700,701,702,703,704,705,705,706,707,708,709,710,710,711,712,713,714,714,715,716,717,717,718,719,720,720,721,721,722,723,724,724,725,726,726,727,728,728,729,730,730,731,731,732,732,733,733,734,735,736,736,737,737,738,739,739,740,741,741,741,742,742,743,744,745,745,746,746,746,747,748,748,749,749,749,750,750,751,752,752,753,753,754,754,755,755,756,756,757,
+		757,758,758,758,759,759,760,760,761,761,761,762,762,763,763,764,764,765,765,765,766,766,767,767,768,768,769,769,770,770,771,771,771,772,772,773,773,774,774,774,775,775,776,776,776,777,777,777,777,778,778,779,779,779,779,780,780,781,781,781,782,782,782,783,783,783,784,784,785,785,785,786,786,786,787,787,787,788,788,789,789,789,789,790,790,791,791,791,791,791,792,792,792,793,793,793,793,794,794,794,795,795,795,796,796,796,796,797,797,797,798,798,798,799,799,800,800,800,800,801,801,801,801,802,802,802,802,802,803,803,803,803,804,804,804,804,805,805,805,806,806,806,806,807,807,807,808,808,808,808,809,809,809,809,809,810,810,810,810,811,811,811,811,811,812,812,812,812,813,813,813,814,814,814,814,815,815,815,816,816,816,816,816,817,817,817,817,818,818,818,818,818,819,819,819,819,820,820,820,820,820,821,821,821,821,821,821,821,822,822,822,823,823,823,824,824,824,825,825,825,825,826,826,826,826,826,826,826,826,826,826,826,826,827,827,827,828,828,828,829,829,829,830,830,830,830,831,831,831,831,832,832,832,832,832,
+		832,833,833,833,833,833,833,833,833,834,834,834,834,834,834,834,834,835,835,835,835,835,835,836,836,837,837,837,838,838,838,839,839,839,839,839,839,839,839,839,839,840,840,840,840,840,841,841,841,841,841,842,842,842,842,842,843,843,843,843,843,843,844,844,844,844,845,845,845,845,845,846,846,846,846,846,847,847,847,847,848,848,848,848,848,848,848,849,849,849,849,849,849,850,850,851,851,851,851,851,852,852,852,852,852,853,853,853,853,853,853,853,853,853,854,854,854,854,854,854,854,854,854,854,854,854,854,855,855,856,856,856,856,856,856,856,857,857,857,857,857,857,858,858,858,858,858,859,859,859,859,860,860,860,860,861,861,861,861,861,861,861,862,862,862,862,862,862,862,862,862,862,862,863,863,863,864,864,864,864,864,864,864,864,864,864,864,864,865,865,865,865,866,866,866,866,867,867,867,867,867,867,868,868,868,868,868,868,869,869,869,869,870,870,870,870,870,871,871,871,871,871,871,871,871,871,871,871,872,872,872,872,872,873,873,873,874,874,874,874,874,875,875,875,875,875,875,876,876,876,876,877,877,877,877,
+		877,877,877,877,877,877,878,878,879,879,879,880,880,880,880,880,881,881,881,881,881,881,881,881,882,882,882,882,882,882,883,883,883,883,883,883,883,883,883,883,883,883,883,883,884,884,885,885,885,885,885,885,885,885,885,885,886,886,886,886,886,886,887,887,887,887,888,888,888,888,888,888,888,888,889,889,889,889,889,889,890,890,890,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,893,893,893,893,893,893,893,893,893,893,893,893,893,893,893,893,893,894,894,894,894,894,894,894,894,894,894,894,894,894,895,895,895,895,896,896,897,897,897,897,897,897,897,897,897,897,897,897,898,898,899,899,899,899,899,899,900,900,900,900,900,900,900,901,901,901,901,901,901,901,901,901,901,901,901,901,901,901,901,901,901,902,902,902,902,902,902,902,902,902,902,902,902,902,902,903,903,903,903,903,903,904,904,904,904,904,905,905,906,906,906,906,906,906,906,906,906,907,907,907,907,907,907,908,908,908,908,908,908,908,908,908,908,908,908,908,908,908,908,908,909,909,909,909,909,909,909,
+		909,909,909,910,910,910,911,911,911,911,911,911,911,911,911,912,912,912,912,913,913,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,914,915,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,917,917,917,917,917,917,917,917,918,918,918,918,919,919,919,919,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,920,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,921,922,922,922,922,922,923,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,926,926,926,926,926,926,926,926,926,926,927,927,927,927,927,927,927,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,928,929,929,929,929,930,930,930,931,931,931,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,
+		932,932,932,932,932,932,933,933,933,933,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,934,935,935,935,935,935,935,935,935,935,935,935,935,935,935,935,935,936,936,936,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,937,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,
+		938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,938,
+		938,938,938,938,938,938,938,938,938
+	},
+	{
+		18,18,18,18,18,18,18,18,18,18,18,18,19,20,22,24,26,28,30,32,34,35,37,39,41,43,45,47,50,53,57,61,65,70,75,80,85,90,95,99,104,108,112,116,120,123,127,130,134,137,140,144,147,150,153,156,159,162,165,168,170,173,176,178,181,184,186,189,191,193,196,198,200,203,205,207,209,212,214,216,218,220,222,224,227,229,231,233,235,237,239,241,243,245,247,249,251,252,254,256,258,260,262,264,266,268,269,271,273,275,277,278,280,282,284,286,287,289,291,293,294,296,298,300,301,303,305,307,308,310,312,313,315,317,318,320,322,323,325,327,328,330,332,333,335,336,338,340,341,343,344,346,347,349,350,352,354,355,357,358,360,361,363,364,366,367,369,370,372,373,375,376,378,379,381,382,384,385,386,388,389,391,392,394,395,396,398,399,401,402,404,405,406,408,409,411,412,413,415,416,418,419,420,422,423,425,426,427,429,430,431,433,434,435,437,438,440,441,442,444,445,447,448,449,450,452,453,454,456,457,458,460,461,462,464,465,466,468,469,470,471,473,474,475,477,478,479,480,482,483,484,485,487,488,
+		489,490,491,493,494,495,496,497,498,500,501,502,503,504,505,506,508,509,510,511,512,513,514,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,552,553,554,555,556,557,558,559,559,560,561,562,563,564,565,565,566,567,568,569,570,570,571,572,573,573,574,575,576,577,578,578,579,580,581,582,582,583,584,585,586,587,587,588,589,590,591,591,592,593,594,594,595,596,596,597,598,599,600,600,601,602,603,603,604,605,606,606,607,608,609,610,610,611,612,613,614,615,615,616,617,617,618,619,619,620,621,621,622,623,624,625,625,626,627,628,629,629,630,631,632,632,633,634,634,635,636,637,638,638,639,640,641,641,642,643,644,645,646,647,647,648,649,650,651,651,652,653,654,655,656,656,657,658,659,659,660,661,662,663,663,664,665,666,666,667,668,669,669,670,671,671,672,673,674,674,675,676,677,678,678,679,680,681,682,682,683,684,685,685,686,687,688,688,689,690,690,691,692,692,693,694,694,695,696,696,697,698,699,699,700,701,701,702,
+		703,703,704,704,705,706,706,707,707,708,709,709,710,710,711,711,712,713,713,714,714,715,715,716,717,717,718,718,719,719,720,721,721,722,722,723,723,724,724,725,725,726,726,727,727,728,728,729,729,729,730,730,731,731,732,732,732,733,733,734,734,735,735,735,736,736,737,737,738,738,738,739,739,740,740,741,741,742,742,742,743,743,743,744,744,744,745,745,746,746,746,747,747,747,748,748,748,748,749,749,749,750,750,750,751,751,752,752,752,753,753,753,754,754,754,755,755,755,756,756,757,757,757,757,758,758,758,758,759,759,759,759,760,760,760,760,761,761,761,762,762,763,763,763,764,764,764,765,765,765,765,765,766,766,766,766,766,767,767,767,767,767,768,768,768,769,769,769,769,770,770,770,771,771,771,771,771,772,772,772,773,773,773,773,774,774,774,775,775,775,775,776,776,776,776,777,777,777,777,777,777,778,778,778,778,778,779,779,779,779,780,780,780,781,781,781,782,782,782,782,782,783,783,783,783,783,784,784,784,784,784,784,784,785,785,785,785,785,786,786,787,787,788,788,788,788,788,788,789,789,789,789,789,789,789,
+		789,790,790,790,790,790,791,791,791,791,791,792,792,792,792,792,792,792,793,793,793,793,793,793,794,794,795,795,796,796,796,796,796,796,796,796,796,796,797,797,797,797,797,798,798,799,799,799,799,799,800,800,800,800,800,800,800,800,800,800,801,801,801,801,801,802,802,802,803,803,803,803,804,804,804,805,805,805,805,805,805,806,806,806,806,806,806,806,806,806,806,806,807,807,807,808,808,808,809,809,810,810,810,810,810,810,810,810,811,811,811,811,811,811,811,811,811,811,811,811,812,812,812,812,812,813,813,813,813,813,814,814,814,814,814,814,814,815,815,815,815,815,816,816,816,817,817,817,817,817,817,818,818,818,818,818,818,818,818,818,818,819,819,819,819,820,820,820,820,820,820,820,821,821,821,821,822,822,822,822,822,822,822,822,822,822,823,823,823,823,823,823,824,824,824,825,825,825,825,826,826,826,826,826,826,826,826,827,827,827,827,828,828,828,829,829,829,829,829,829,829,829,829,829,829,829,829,830,830,830,830,831,831,831,831,832,832,832,832,832,832,832,832,833,833,833,833,834,834,834,834,834,834,835,835,
+		835,835,835,835,835,835,836,836,837,837,837,837,837,838,838,838,838,839,839,839,839,839,840,840,840,840,840,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,842,842,843,843,843,843,843,843,843,843,843,843,843,844,844,844,844,844,844,845,845,845,846,846,846,846,846,846,847,847,847,847,847,847,847,847,848,848,848,848,848,848,848,848,848,848,848,848,848,848,848,849,849,849,849,849,850,850,850,850,850,850,850,850,850,850,850,850,850,850,850,850,850,850,850,850,850,851,851,851,851,851,852,852,852,852,852,853,853,853,853,853,853,853,853,853,853,853,854,854,854,854,854,855,855,855,855,855,855,855,855,855,856,856,856,856,856,857,857,857,857,857,857,857,857,857,858,858,858,858,858,858,858,858,858,858,858,858,858,859,859,859,859,859,859,859,859,859,859,859,859,860,860,860,860,860,860,860,860,861,861,861,861,861,862,862,862,862,862,863,863,863,863,863,863,863,864,864,864,864,864,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,865,866,866,866,866,866,866,866,866,
+		866,867,867,867,868,868,869,869,869,869,869,869,869,869,870,870,870,870,870,870,871,871,871,871,871,871,871,871,871,871,871,871,871,871,871,871,871,871,872,872,872,873,873,873,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,874,875,875,875,875,875,876,876,876,876,876,876,876,876,876,876,876,876,876,876,876,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,879,879,880,880,881,881,881,881,881,881,881,881,882,882,882,882,882,883,883,883,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,884,885,885,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,886,887,887,887,887,887,887,887,887,888,888,888,888,888,888,888,888,888,889,889,889,889,889,889,889,889,889,889,889,889,889,
+		889,889,890,890,890,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,891,892,892,892,892,892,892,892,892,892,892,892,892,892,892,893,893,893,893,893,893,893,893,893,893,893,893,893,893,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,894,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,
+		895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,895,
+		895,895,895,895,895,895,895,895,895
+	},
+	{
+		0,8,10,11,11,12,14,14,14,15,16,17,17,18,19,21,22,24,25,27,29,31,33,34,36,37,39,40,41,43,45,47,49,52,56,60,64,68,73,77,82,87,91,95,99,103,107,110,114,117,120,124,127,130,133,136,139,142,145,148,150,153,156,158,161,164,166,169,171,173,176,178,180,183,185,187,190,192,194,196,198,200,202,204,207,209,211,213,214,216,218,220,222,224,226,228,230,231,233,235,237,239,240,242,244,246,247,249,251,253,254,256,258,260,261,263,265,266,268,270,271,273,275,276,278,280,281,283,285,286,288,289,291,293,294,296,297,299,300,302,304,305,307,308,310,311,313,314,316,317,319,320,322,323,325,326,328,329,331,332,333,335,336,338,339,341,342,344,345,347,348,349,351,352,354,355,356,358,359,361,362,363,365,366,367,369,370,371,373,374,375,377,378,379,381,382,383,385,386,387,389,390,391,393,394,395,397,398,399,401,402,403,405,406,407,408,410,411,412,414,415,416,418,419,420,421,423,424,425,426,428,429,430,431,433,434,435,436,438,439,440,442,443,444,445,447,448,449,450,452,453,454,455,456,
+		458,459,460,461,462,464,465,466,467,468,470,471,472,473,474,475,476,478,479,480,481,482,483,484,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,519,520,521,522,523,524,525,526,526,527,528,529,530,531,531,532,533,534,535,536,537,538,538,539,540,541,542,543,543,544,545,546,546,547,548,549,549,550,551,552,552,553,554,555,556,556,557,558,559,559,560,561,561,562,563,563,564,565,565,566,567,568,568,569,570,571,571,572,573,574,574,575,576,577,577,578,579,580,580,581,581,582,583,584,584,585,586,586,587,588,588,589,590,591,591,592,593,593,594,595,595,596,596,597,598,599,599,600,601,601,602,603,603,604,605,605,606,607,607,608,609,609,610,611,612,612,613,614,614,615,616,617,617,618,619,619,620,621,621,622,623,624,624,625,626,627,627,628,628,629,630,630,631,632,632,633,634,634,635,636,637,637,638,639,640,641,641,642,643,644,644,645,646,647,647,648,649,650,650,651,652,652,653,654,654,655,656,656,657,658,659,659,660,661,662,662,663,
+		664,665,665,666,667,667,668,669,669,670,671,671,672,673,673,674,675,675,676,677,677,678,678,679,680,681,681,682,683,683,684,685,686,686,687,687,688,689,689,690,690,691,691,692,692,693,693,694,694,695,695,696,696,697,697,698,698,699,699,700,701,701,701,702,702,703,703,704,705,705,706,706,706,707,708,708,709,709,709,710,710,711,711,712,712,712,713,713,714,714,715,715,715,716,716,716,717,717,718,718,718,719,719,719,720,720,721,721,722,722,722,723,723,724,724,724,725,725,725,726,726,726,727,727,727,728,728,728,729,729,729,730,730,730,731,731,731,731,732,732,732,733,733,733,734,734,734,735,735,735,736,736,736,737,737,737,738,738,738,738,738,739,739,739,740,740,740,740,741,741,741,742,742,742,742,743,743,743,743,744,744,744,744,745,745,745,745,746,746,746,746,747,747,747,747,748,748,748,749,749,749,749,749,749,750,750,750,750,750,751,751,751,752,752,753,753,753,754,754,754,754,754,754,754,754,754,754,755,755,755,755,755,756,756,756,757,757,757,757,758,758,759,759,759,759,759,760,760,760,760,760,760,760,760,761,
+		761,761,761,761,762,762,762,762,763,763,763,763,763,763,763,763,764,764,764,764,764,765,765,765,765,766,766,766,767,767,767,767,767,767,768,768,768,768,768,768,769,769,769,769,769,769,770,770,770,770,771,771,771,771,771,771,771,772,772,772,772,772,772,773,773,773,774,774,774,774,775,775,775,775,775,775,776,776,776,776,777,777,777,777,777,778,778,778,778,778,778,778,778,778,779,779,779,780,780,780,780,781,781,781,781,781,781,781,781,781,781,781,782,782,782,782,783,783,783,783,783,783,783,783,783,783,783,783,784,784,784,784,785,785,785,786,786,786,786,786,787,787,787,787,787,787,788,788,788,788,788,788,788,788,788,789,789,789,789,789,789,790,790,790,790,790,790,790,791,791,791,791,791,792,792,792,792,792,793,793,793,793,793,793,793,793,793,793,794,794,794,794,795,795,795,795,795,796,796,796,796,797,797,797,797,797,797,797,797,797,797,798,798,798,799,799,799,799,799,800,800,800,800,800,800,800,800,800,800,800,800,801,801,801,801,802,802,802,803,803,803,803,803,803,803,803,803,803,804,804,804,804,805,805,806,
+		806,806,806,806,806,806,806,807,807,807,807,807,807,808,808,808,808,809,809,809,809,809,809,810,810,810,810,810,810,810,810,810,810,810,810,810,810,811,811,811,811,811,812,812,812,812,812,813,813,813,813,813,814,814,814,814,814,814,814,814,815,815,815,815,815,815,815,815,815,816,816,816,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,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,820,820,820,820,821,821,821,821,821,821,821,822,822,822,822,822,822,822,822,822,822,822,823,823,823,824,824,824,824,824,824,824,824,824,824,824,824,824,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,828,828,828,829,829,829,829,829,829,829,829,829,829,830,830,830,830,830,830,830,830,830,830,831,831,831,831,832,832,832,832,833,833,833,833,833,833,833,833,833,833,833,834,834,834,834,834,834,834,834,834,834,834,834,834,834,834,834,834,834,835,835,835,835,835,835,835,835,835,835,835,835,
+		836,836,837,837,838,838,838,838,838,838,838,838,838,838,838,838,838,839,839,839,840,840,840,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,841,842,842,842,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,843,844,844,845,845,845,845,845,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,847,847,847,847,847,847,847,847,848,848,848,848,848,848,848,849,849,849,849,849,849,849,849,849,849,849,850,850,850,850,850,851,851,852,852,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,853,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,854,855,855,855,855,855,855,855,856,856,856,856,856,856,857,857,857,857,857,857,857,858,858,859,859,859,859,859,859,859,859,859,859,859,859,859,859,859,859,859,
+		859,859,859,859,859,859,859,859,859,859,859,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,860,861,861,861,861,861,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,862,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,
+		863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,
+		863,863,863,863,863,863,863,863,863
+	},
+	{
+		0,8,10,11,11,12,13,13,14,14,15,15,16,16,17,18,19,20,21,22,24,25,27,28,30,31,33,34,35,36,37,38,39,41,42,44,47,50,53,56,60,64,68,73,77,81,85,89,92,96,99,102,105,108,111,114,117,120,122,125,128,130,133,136,138,141,143,146,148,150,153,155,157,160,162,164,166,168,170,173,175,177,179,181,183,185,187,189,191,192,194,196,198,200,202,204,205,207,209,211,212,214,216,217,219,221,222,224,225,227,229,230,232,234,235,237,238,240,242,243,245,246,248,249,251,252,254,255,257,258,260,261,263,264,266,267,269,270,272,273,275,276,278,279,280,282,283,284,286,287,289,290,291,293,294,296,297,298,300,301,302,304,305,306,308,309,310,312,313,314,316,317,318,320,321,322,324,325,326,327,329,330,331,333,334,335,336,337,339,340,341,342,344,345,346,347,349,350,351,352,354,355,356,357,359,360,361,362,364,365,366,367,368,370,371,372,373,374,375,377,378,379,380,381,383,384,385,386,387,388,390,391,392,393,394,395,397,398,399,400,401,403,404,405,406,407,408,409,411,412,413,414,415,416,
+		417,419,420,421,422,423,424,425,426,427,429,430,431,432,433,434,435,437,438,439,440,441,442,443,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,485,486,487,488,489,490,491,492,493,493,494,495,496,497,498,499,500,501,501,502,503,504,505,505,506,507,508,509,510,510,511,512,513,514,515,515,516,517,518,519,519,520,521,522,522,523,524,524,525,526,526,527,528,528,529,530,531,531,532,532,533,534,535,535,536,537,537,538,539,540,540,541,542,542,543,544,544,545,545,546,547,547,548,548,549,550,550,551,552,552,553,554,554,555,556,556,557,557,558,558,559,560,560,561,561,562,562,563,564,564,565,565,566,567,567,568,569,569,570,571,571,572,572,573,573,574,575,575,576,576,577,578,578,579,579,580,581,581,582,582,583,583,584,584,585,585,586,586,587,587,588,589,589,590,590,591,592,592,593,593,594,594,595,596,596,597,598,598,599,599,600,600,601,601,602,603,603,604,604,605,605,606,607,607,608,609,609,610,610,611,612,
+		612,613,613,614,614,615,616,616,617,617,618,618,619,620,620,621,621,622,623,623,624,625,625,626,627,627,628,629,629,630,630,631,632,633,633,634,634,635,636,637,637,638,638,639,640,640,641,642,642,643,643,644,645,645,646,646,647,648,648,649,650,650,651,651,652,653,654,654,655,656,656,657,657,658,658,659,660,660,661,662,662,663,663,664,665,665,666,666,667,668,668,669,669,670,670,671,672,672,672,673,674,674,675,675,676,676,677,677,678,678,679,679,680,681,681,682,682,683,684,684,685,685,686,686,686,687,687,688,688,688,689,690,690,691,691,691,692,692,693,693,694,694,694,695,695,696,696,696,697,697,698,698,699,699,699,700,700,701,701,701,701,702,702,703,703,703,704,704,704,705,705,706,706,706,707,707,707,708,708,708,709,709,710,710,710,711,711,711,711,712,712,712,713,713,713,714,714,714,715,715,715,715,716,716,716,716,716,717,717,717,718,718,719,719,719,720,720,720,720,721,721,721,721,721,722,722,722,722,722,723,723,723,723,724,724,724,724,725,725,725,726,726,726,727,727,727,728,728,728,728,728,729,729,729,729,
+		729,729,730,730,730,730,730,731,731,731,731,732,732,732,732,732,732,733,733,733,734,734,734,734,735,735,735,736,736,736,736,736,736,736,737,737,737,737,737,737,737,738,738,738,738,738,739,739,739,739,740,740,740,740,741,741,741,741,741,742,742,742,742,742,742,743,743,743,743,744,744,744,744,744,744,745,745,745,746,746,746,746,746,746,746,746,747,747,747,747,747,747,747,748,748,748,749,749,749,749,749,750,750,750,750,750,750,750,751,751,751,751,751,751,751,752,752,752,752,752,752,752,752,752,753,753,753,753,754,754,754,754,754,755,755,755,755,755,756,756,756,756,756,756,757,757,757,757,757,757,757,757,758,758,758,758,759,759,759,759,759,760,760,760,760,760,760,760,760,761,761,761,761,761,762,762,762,762,762,762,762,762,763,763,763,763,763,763,763,764,764,764,764,764,765,765,765,765,765,766,766,766,766,766,766,766,766,767,767,767,767,767,768,768,768,768,768,768,768,768,769,769,769,769,769,769,770,770,770,770,771,771,771,771,771,771,771,771,772,772,772,772,772,773,773,773,773,773,774,774,774,774,774,774,774,
+		774,775,775,775,775,775,776,776,776,777,777,777,777,777,777,778,778,778,778,778,778,778,778,779,779,779,779,779,779,779,780,780,780,780,780,780,780,780,780,780,780,780,780,781,781,781,781,781,782,782,782,782,782,782,782,782,782,783,783,783,783,783,783,783,784,784,784,785,785,785,785,785,786,786,786,786,786,786,786,787,787,787,787,787,787,787,787,787,787,787,787,787,787,787,788,788,788,788,788,789,789,789,789,789,789,789,789,789,789,789,789,789,790,790,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,793,793,793,793,794,794,794,794,794,794,794,794,794,794,794,795,795,795,795,796,796,796,796,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,798,798,798,798,798,799,799,799,799,799,799,799,799,799,799,799,799,799,799,800,800,800,800,800,800,800,800,801,801,801,801,801,802,802,802,802,803,803,803,803,803,803,803,803,803,803,804,804,804,804,804,804,804,804,804,804,804,804,804,804,804,804,805,805,805,805,805,805,805,805,805,805,
+		805,806,806,806,806,807,808,808,808,808,808,808,808,808,808,808,808,808,809,809,809,809,809,809,809,809,809,809,809,809,809,809,809,809,810,810,810,810,810,811,811,811,812,812,812,812,812,812,812,812,812,812,812,812,812,812,813,813,813,813,813,813,813,813,813,813,813,813,813,813,813,813,813,814,814,814,814,814,815,815,815,815,815,816,816,816,816,816,816,816,816,816,816,816,816,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,817,818,818,818,818,819,819,820,820,820,820,820,820,820,820,821,821,821,821,821,821,821,821,821,821,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,822,823,823,823,823,823,823,823,823,823,823,823,823,823,823,823,823,823,823,823,823,823,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,824,825,825,825,825,825,825,826,826,826,826,826,826,826,826,826,826,827,827,827,827,827,827,827,827,827,827,827,827,827,827,827,827,827,827,827,827,
+		828,828,828,828,828,828,828,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,829,830,830,830,830,830,830,830,830,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,831,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,832,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,
+		833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,833,
+		833,833,833,833,833,833,833,833,833
+	},
+	{
+		0,9,10,11,11,12,13,13,13,14,14,14,15,15,16,16,17,18,19,20,21,22,23,25,26,27,29,30,31,32,33,34,35,36,37,37,38,39,40,42,44,46,49,51,55,58,62,66,70,73,77,80,84,87,90,93,96,99,101,104,107,109,112,114,117,119,122,124,126,129,131,133,136,138,140,142,144,146,148,151,153,155,157,159,161,162,164,166,168,170,172,174,175,177,179,181,182,184,186,188,189,191,193,194,196,197,199,200,202,204,205,207,208,210,211,213,214,216,217,219,220,222,223,225,226,227,229,230,232,233,234,236,237,239,240,241,243,244,245,247,248,249,251,252,253,255,256,257,259,260,261,262,264,265,266,268,269,270,272,273,274,275,276,278,279,280,281,283,284,285,286,288,289,290,291,292,294,295,296,297,298,300,301,302,303,304,305,307,308,309,310,311,312,314,315,316,317,318,319,320,322,323,324,325,326,327,329,330,331,332,333,334,335,337,338,339,340,341,342,343,344,345,346,347,349,350,351,352,353,354,355,356,357,358,360,361,362,363,364,365,366,367,368,369,370,371,373,374,375,376,377,378,379,380,
+		381,382,383,384,385,386,387,388,389,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,444,445,446,447,448,449,450,451,452,453,454,454,455,456,457,458,459,460,461,462,463,464,465,466,467,467,468,469,470,471,472,472,473,474,475,476,477,477,478,479,480,481,482,482,483,484,485,486,487,487,488,489,489,490,491,492,492,493,494,495,496,496,497,498,498,499,500,501,501,502,503,503,504,505,505,506,507,507,508,509,509,510,511,511,512,512,513,514,514,515,516,516,517,518,518,519,520,520,521,521,522,522,523,523,524,524,525,526,526,527,528,528,529,529,530,531,531,532,532,533,533,534,534,535,536,536,537,537,538,538,539,539,540,540,541,542,542,543,543,544,544,545,545,546,546,547,547,548,548,549,549,550,550,551,551,552,552,553,553,554,554,555,556,556,556,557,557,558,559,559,559,560,560,561,561,562,562,563,563,564,564,565,565,566,566,567,567,568,568,569,569,570,
+		570,570,571,571,572,573,573,574,574,575,575,576,576,576,577,577,578,578,579,579,580,580,581,581,582,583,583,584,584,585,585,586,586,587,587,588,588,589,589,590,590,591,591,591,592,592,593,593,594,594,595,595,596,596,597,597,598,598,599,599,600,600,601,601,602,602,603,603,604,604,605,606,606,607,607,608,608,609,610,610,611,611,612,612,613,613,614,614,615,615,615,616,617,617,618,618,619,619,620,620,621,622,622,623,623,624,625,625,626,626,627,628,628,629,629,630,630,631,632,632,633,633,634,634,635,636,636,637,637,638,638,639,639,640,640,641,642,642,643,644,644,645,645,646,646,647,648,648,649,649,650,651,651,652,652,653,653,654,654,655,655,656,656,657,657,658,658,659,660,660,661,661,662,662,663,663,664,665,665,665,666,666,667,667,668,668,669,669,669,670,670,671,671,672,672,673,673,673,674,674,675,675,675,676,676,677,677,677,678,678,679,679,680,680,681,681,682,682,682,683,683,683,684,684,684,685,685,685,685,686,686,686,686,687,687,687,688,688,689,689,690,690,690,691,692,692,692,693,693,693,693,694,694,694,694,
+		694,695,695,695,695,696,696,696,697,697,697,697,698,698,698,698,699,699,699,699,700,700,700,701,701,701,702,702,702,703,703,703,703,703,703,703,704,704,704,704,704,705,705,705,706,706,706,706,706,707,707,708,708,708,708,708,709,709,709,710,710,710,710,710,710,711,711,711,711,711,712,712,712,712,712,713,713,713,713,713,714,714,714,714,715,715,715,715,715,715,715,716,716,716,716,716,717,717,717,718,718,718,719,719,719,719,719,720,720,720,720,720,720,720,720,720,720,720,720,721,721,721,721,721,721,722,722,722,723,723,723,723,724,724,724,724,724,724,724,724,725,725,725,725,726,726,726,726,726,727,727,727,727,727,727,727,728,728,728,728,728,728,729,729,729,729,729,729,729,729,730,730,730,730,730,730,731,731,731,731,731,731,731,732,732,732,732,732,733,733,733,733,733,733,734,734,734,734,734,734,735,735,735,735,735,735,736,736,736,736,736,736,737,737,737,737,737,737,737,738,738,738,738,738,738,739,739,739,739,739,739,739,740,740,740,740,740,741,741,741,741,741,741,741,741,742,742,742,742,742,742,743,743,743,743,
+		743,744,744,744,744,744,744,745,745,745,745,745,745,746,746,746,746,746,747,747,747,747,747,747,747,748,748,748,748,748,748,748,748,748,749,749,749,749,749,749,749,749,749,749,749,749,750,750,750,750,750,750,751,751,751,751,751,751,752,752,752,752,752,752,752,753,753,753,753,753,753,753,753,753,754,754,754,754,754,754,754,755,755,755,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,757,757,757,757,757,757,757,757,757,757,757,757,757,757,757,758,758,758,758,758,758,758,758,758,759,759,759,759,759,759,759,760,760,760,760,760,760,760,761,761,761,761,761,762,762,762,762,762,762,762,762,762,763,763,763,763,763,763,763,763,763,763,763,763,764,764,764,764,764,764,764,764,765,765,765,765,765,765,766,766,766,766,766,766,766,766,766,766,766,766,766,766,767,767,767,767,767,767,767,767,767,767,767,767,767,768,768,769,769,769,769,769,769,769,769,769,769,770,770,770,770,770,770,771,771,771,771,771,771,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,772,773,773,773,773,773,
+		773,773,773,774,774,774,774,774,775,775,775,775,776,776,776,776,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,777,778,778,779,780,780,780,780,780,780,780,780,780,780,780,780,780,780,780,780,780,780,780,780,781,781,781,781,781,781,781,781,781,781,781,781,781,782,782,782,782,783,783,783,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,784,785,785,785,785,785,785,785,785,785,785,785,786,786,786,786,787,787,787,787,788,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,789,789,789,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,791,791,791,791,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,793,793,793,793,793,793,793,794,794,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,795,
+		795,795,796,796,796,796,796,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,797,798,798,798,798,798,799,799,799,799,799,799,799,799,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,800,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,
+		801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,801,
+		801,801,801,801,801,801,801,801,801
+	},
+	{
+		0,9,10,11,11,11,13,13,13,13,13,13,14,14,14,15,15,16,17,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,35,36,36,37,38,39,40,41,43,45,48,50,53,56,60,63,66,70,73,76,79,82,85,87,90,92,95,97,100,102,104,107,109,111,113,115,117,119,122,124,126,128,130,132,134,136,138,140,142,144,145,147,149,151,153,155,156,158,160,161,163,165,167,168,170,171,173,175,176,178,179,181,182,184,185,187,188,190,191,193,194,195,197,198,200,201,202,204,205,206,208,209,210,212,213,214,216,217,218,220,221,222,223,225,226,227,229,230,231,232,234,235,236,237,239,240,241,242,243,245,246,247,248,249,250,252,253,254,255,256,257,259,260,261,262,263,264,265,267,268,269,270,271,272,273,275,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,
+		350,351,352,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,383,384,385,386,387,388,389,390,391,392,393,394,394,395,396,397,398,399,400,401,402,403,404,405,405,406,407,408,409,410,411,412,413,414,414,415,416,417,418,419,420,420,421,422,423,424,425,425,426,427,428,429,430,431,432,432,433,434,435,436,437,438,439,439,440,441,442,443,444,445,446,446,447,448,449,450,451,451,452,453,454,454,455,456,457,458,458,459,460,461,461,462,463,464,465,465,466,467,467,468,469,470,471,471,472,473,474,474,475,476,476,477,478,479,479,480,481,481,482,483,483,484,485,485,486,487,487,488,489,489,490,491,491,492,492,493,494,494,495,495,496,497,497,498,499,499,500,501,501,502,502,503,503,504,504,505,506,506,507,507,508,508,509,510,510,511,511,512,512,513,513,514,514,515,515,516,516,517,517,518,518,519,519,519,520,520,521,521,522,523,523,524,524,525,525,526,526,527,527,528,528,529,529,529,530,530,531,531,532,532,533,533,534,534,535,535,535,536,536,537,
+		537,538,538,538,539,539,540,540,540,541,541,542,542,542,543,543,544,544,545,545,546,546,547,547,547,548,548,549,549,550,550,551,551,552,552,553,553,554,554,554,555,555,556,556,556,557,557,557,558,558,558,559,559,560,560,561,561,561,562,562,563,563,564,564,565,565,565,566,566,567,567,568,568,569,569,569,570,570,571,571,571,572,572,573,573,573,574,574,574,575,575,576,576,577,577,577,578,578,578,579,579,580,580,581,581,581,582,582,583,583,584,584,585,585,586,586,587,587,588,588,588,589,589,590,590,591,591,592,592,592,593,593,593,594,595,595,596,596,596,597,597,598,598,599,599,600,600,601,601,602,602,603,603,604,604,605,605,606,606,607,607,608,608,609,609,610,610,611,611,611,612,613,613,614,614,615,615,616,616,617,618,618,619,619,620,620,621,621,622,622,623,623,624,624,625,625,626,627,627,628,628,629,629,630,630,631,631,632,632,633,633,634,634,635,636,636,637,637,638,638,639,640,640,641,641,641,642,642,643,643,644,644,645,646,646,646,647,647,648,649,649,650,650,651,651,652,652,652,653,653,654,654,655,655,656,
+		656,656,657,657,658,658,659,659,660,660,660,660,661,661,662,662,663,663,663,664,664,665,665,666,666,667,667,667,668,668,668,668,669,669,669,669,670,670,670,671,671,672,672,672,673,673,674,674,674,675,675,675,675,675,675,676,676,677,677,677,677,678,678,679,679,679,679,679,680,680,681,681,681,681,682,682,682,683,683,683,683,683,684,684,684,684,685,685,685,686,686,686,687,687,687,687,687,688,688,688,688,689,689,689,689,690,690,690,690,690,690,691,691,691,691,691,691,692,692,692,692,692,693,693,693,693,694,694,694,694,694,695,695,695,695,695,696,696,696,696,697,697,697,698,698,698,698,698,698,699,699,699,699,699,700,700,700,700,700,700,700,701,701,701,701,701,701,702,702,702,702,702,703,703,703,703,703,704,704,704,704,704,704,704,705,705,705,705,705,705,705,706,706,706,707,707,707,707,707,707,707,708,708,708,708,708,709,709,709,709,709,710,710,710,710,710,710,710,710,711,711,711,711,711,711,711,711,712,712,712,712,712,713,713,713,713,713,713,713,714,714,714,714,714,715,715,715,715,715,716,716,716,716,716,716,
+		717,717,717,717,717,718,718,718,718,718,718,718,719,719,719,719,719,719,719,720,720,720,720,720,721,721,721,721,721,721,721,721,721,721,721,721,721,722,722,722,722,722,722,722,723,723,723,723,723,723,724,724,724,724,724,724,724,725,725,725,725,725,725,725,725,725,726,726,726,726,727,727,727,727,728,728,728,728,728,728,728,728,728,728,728,728,728,728,728,728,728,728,728,729,729,729,729,729,729,729,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,731,731,731,731,731,731,731,732,732,732,732,732,732,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,736,736,736,736,736,737,737,737,737,737,737,737,737,737,737,737,737,737,738,738,738,738,738,738,738,738,738,739,739,739,739,740,740,740,740,740,740,740,740,740,740,740,740,740,740,740,740,740,740,740,741,741,741,741,741,741,741,742,742,742,742,742,742,742,742,743,743,743,743,743,743,743,744,744,744,744,744,744,744,744,744,744,744,744,744,744,744,745,745,745,745,745,745,745,745,745,745,745,746,
+		746,746,746,747,747,747,747,747,747,747,747,747,748,748,748,748,748,748,749,749,749,749,749,749,749,749,749,750,750,750,750,750,750,750,750,750,750,750,750,750,750,750,750,750,751,751,751,751,751,752,752,752,752,752,752,752,752,752,752,752,752,752,753,753,753,753,753,753,753,753,753,753,753,753,754,754,754,754,754,754,754,754,754,755,755,755,755,755,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,757,757,757,757,757,757,757,757,757,758,758,758,758,759,759,759,759,759,760,760,760,760,760,760,760,760,760,760,760,760,760,760,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,761,762,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,764,765,765,765,766,766,766,766,766,766,766,766,766,766,766,766,766,766,766,766,766,766,766,766,766,767,767,767,767,767,767,767,767,767,767,767,767,767,
+		768,768,768,768,768,768,768,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,769,770,770,770,770,770,770,770,770,770,770,770,770,770,770,771,771,771,771,771,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,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,773,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,
+		774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,774,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,775,
+		775,775,775,775,775,775,775,775,775
+	},
+	{
+		0,9,10,11,11,11,13,13,13,13,13,13,13,13,14,14,14,15,15,16,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,32,33,34,34,35,35,36,36,37,38,39,40,42,43,46,48,51,53,56,59,62,65,68,71,74,77,80,82,84,87,89,91,94,96,98,100,102,104,106,109,110,112,114,116,118,120,122,124,126,127,129,131,133,135,137,138,140,142,143,145,147,148,150,152,153,155,157,158,160,161,163,164,166,167,169,170,172,173,174,176,177,179,180,181,183,184,185,187,188,189,191,192,193,195,196,197,198,200,201,202,203,205,206,207,208,210,211,212,213,214,215,217,218,219,220,221,222,223,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,319,320,321,322,323,324,
+		325,326,327,328,329,330,331,332,333,333,334,335,336,337,338,339,340,341,342,343,343,344,345,346,347,348,349,350,351,352,352,353,354,355,356,357,358,359,360,360,361,362,363,364,365,366,366,367,368,369,370,371,372,373,373,374,375,376,377,378,379,379,380,381,382,383,384,384,385,386,387,388,388,389,390,391,392,393,394,394,395,396,397,398,398,399,400,401,402,402,403,404,405,406,406,407,408,409,410,410,411,412,413,414,414,415,416,417,418,418,419,420,421,422,422,423,424,425,425,426,427,428,428,429,430,431,432,432,433,434,435,435,436,437,438,439,439,440,441,442,442,443,444,444,445,446,447,447,448,449,450,450,451,452,453,453,454,455,456,456,457,458,458,459,460,460,461,462,462,463,464,464,465,466,466,467,468,469,469,470,471,471,472,473,473,474,475,475,476,476,477,478,478,479,479,480,481,481,482,482,483,484,484,485,485,486,487,487,488,488,489,489,490,490,491,491,492,492,493,493,494,494,495,495,496,496,497,498,498,499,499,500,500,501,501,502,502,503,503,504,504,505,505,506,506,507,507,507,508,508,509,509,510,510,510,
+		511,511,512,512,513,513,514,514,515,515,515,516,516,517,517,518,518,518,519,519,520,520,521,521,522,522,522,523,523,524,524,525,525,525,526,526,527,527,528,528,528,529,529,529,530,530,531,531,531,532,532,532,533,533,534,534,534,535,535,535,536,536,536,537,537,537,538,538,539,539,540,540,540,541,541,542,542,542,543,543,543,544,544,544,545,545,545,546,546,546,547,547,548,548,548,549,549,549,550,550,551,551,551,551,552,552,552,553,553,554,554,554,555,555,556,556,556,557,557,557,557,558,558,559,559,559,560,560,561,561,561,562,562,562,563,563,563,564,564,564,565,565,566,566,567,567,567,568,568,568,569,569,569,570,570,571,571,571,572,572,572,572,573,573,574,574,574,575,575,576,576,576,577,577,578,578,578,579,579,580,580,580,581,581,582,582,583,583,583,584,584,584,585,585,586,586,586,587,587,588,588,589,589,590,590,590,591,591,592,592,593,593,594,594,595,595,596,596,597,597,597,598,598,598,599,599,599,600,600,601,601,602,602,603,604,604,605,605,606,606,607,607,608,608,609,609,610,610,611,611,612,613,613,614,614,
+		615,615,615,616,616,617,617,618,619,619,620,620,621,621,622,622,623,623,623,624,624,625,625,626,626,627,628,628,629,629,630,630,631,631,631,632,632,633,633,634,634,635,635,636,636,637,637,638,638,639,639,640,640,640,641,641,642,642,642,643,643,644,644,645,645,646,646,647,647,648,648,649,649,650,650,650,651,651,651,652,652,652,653,653,653,654,654,654,655,655,656,656,656,657,657,658,658,658,659,659,659,660,660,660,661,661,661,661,662,662,663,663,663,663,664,664,664,664,665,665,665,665,666,666,667,667,667,667,667,668,668,668,669,669,669,669,670,670,670,671,671,671,671,672,672,672,673,673,673,673,674,674,674,675,675,675,675,676,676,676,676,676,677,677,677,677,677,678,678,678,678,679,679,679,679,679,679,680,680,680,680,680,681,681,681,681,682,682,682,683,683,683,683,683,683,684,684,684,684,685,685,685,685,685,685,686,686,686,686,686,686,687,687,687,687,687,688,688,688,688,689,689,689,689,689,689,689,690,690,690,690,690,691,691,691,691,692,692,692,692,692,692,693,693,693,693,693,693,694,694,694,694,694,694,695,
+		695,695,695,695,695,696,696,696,696,696,696,697,697,697,697,697,698,698,698,698,698,698,698,698,698,699,699,699,699,699,699,700,700,700,700,700,700,700,701,701,701,701,701,701,702,702,702,702,702,702,702,703,703,703,703,703,703,703,703,703,703,703,703,703,703,704,704,704,704,705,705,705,706,706,706,706,706,706,707,707,707,707,707,707,707,707,707,707,707,707,707,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,711,711,711,711,711,711,711,712,712,712,712,712,712,712,712,712,712,712,713,713,714,714,714,714,714,714,714,714,715,715,715,715,715,715,715,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,717,717,717,717,717,717,717,717,717,717,717,717,718,718,718,718,718,718,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,720,720,720,721,721,721,721,721,721,721,721,721,721,722,722,722,722,722,722,722,723,723,723,723,723,723,723,723,723,723,723,723,723,723,723,723,724,724,724,724,724,724,724,724,724,725,725,725,725,
+		725,725,725,726,726,726,726,726,726,726,727,727,727,727,727,727,727,728,728,728,728,728,728,728,728,728,728,728,729,729,729,729,729,729,729,729,729,729,729,729,729,729,729,730,730,730,730,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,731,732,732,732,732,732,733,733,733,733,733,733,733,734,734,734,734,734,734,734,734,734,734,734,734,734,734,734,734,734,734,734,734,734,735,735,735,735,736,736,736,736,736,736,736,736,736,736,736,737,737,737,737,738,738,738,738,738,738,739,739,739,739,739,739,739,739,739,739,739,739,739,739,739,739,740,740,740,740,740,740,740,740,740,740,740,740,740,740,740,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,741,742,742,742,742,742,742,742,742,742,742,742,742,742,742,742,743,743,743,743,743,743,743,743,743,743,743,743,743,743,743,743,743,743,744,744,744,745,745,745,745,745,745,745,745,745,745,745,745,745,745,745,745,746,746,746,746,747,747,747,747,747,747,747,747,747,747,747,747,747,747,
+		747,747,747,747,747,747,747,747,747,747,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,748,749,749,749,750,750,750,750,750,750,750,750,750,751,751,751,751,751,751,751,751,751,751,751,751,751,751,751,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,752,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,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,754,
+		754,754,754,754,754,754,754,754,754,754,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,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,755,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,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,756,
+		756,756,756,756,756,756,756,756,756
+	},
+	{
+		0,4,7,9,10,11,12,13,13,13,14,14,14,14,14,14,14,14,14,14,14,15,15,16,16,17,17,18,19,19,20,21,22,23,24,25,25,26,27,28,29,29,30,31,31,32,32,33,33,34,34,35,35,36,37,38,40,41,43,45,48,50,53,55,58,61,63,66,68,71,73,75,77,79,82,83,85,87,89,91,93,95,96,98,100,101,103,105,107,108,110,111,113,115,116,118,120,121,123,124,126,128,129,131,132,134,135,137,138,140,141,143,144,145,147,148,150,151,152,154,155,156,158,159,160,162,163,164,165,167,168,169,170,172,173,174,175,176,178,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,195,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,229,230,231,232,233,234,235,236,237,238,239,240,240,241,242,243,244,245,246,247,248,249,249,250,251,252,253,254,255,256,257,257,258,259,260,261,262,263,264,265,265,266,267,268,269,270,271,271,272,273,274,275,276,277,278,278,279,280,281,282,283,284,284,285,286,287,
+		288,289,289,290,291,292,293,294,295,295,296,297,298,299,300,300,301,302,303,304,305,305,306,307,308,309,309,310,311,312,313,314,314,315,316,317,317,318,319,320,321,321,322,323,324,325,325,326,327,328,328,329,330,331,332,332,333,334,335,335,336,337,338,338,339,340,341,341,342,343,344,344,345,346,347,347,348,349,350,350,351,352,353,353,354,355,356,356,357,358,358,359,360,360,361,362,363,363,364,365,366,366,367,368,368,369,370,370,371,372,373,373,374,375,375,376,377,377,378,379,379,380,381,381,382,383,384,384,385,386,386,387,388,388,389,390,390,391,392,393,393,394,395,395,396,397,397,398,398,399,400,400,401,402,402,403,404,404,405,406,406,407,408,408,409,410,410,411,412,412,413,414,414,415,416,416,417,418,418,419,420,420,421,422,423,423,424,425,425,426,426,427,427,428,429,429,430,430,431,432,432,433,434,434,435,436,436,437,437,438,439,439,440,441,441,442,443,443,444,445,445,446,447,447,448,448,449,450,450,451,451,452,452,453,454,454,455,456,456,457,457,458,459,459,460,460,461,461,462,462,463,463,464,465,465,
+		466,466,467,467,468,468,469,469,470,471,471,472,472,473,473,474,474,475,475,476,476,477,477,478,478,479,479,480,481,481,481,482,482,483,483,484,484,485,485,485,486,486,487,487,488,488,488,489,489,490,490,491,491,491,492,492,492,493,493,494,494,495,495,496,496,496,497,497,497,498,498,498,499,499,500,500,500,501,501,502,502,503,503,503,504,504,504,504,505,505,506,506,506,507,507,508,508,508,509,509,509,510,510,510,511,511,511,511,512,512,512,512,513,513,513,514,514,515,515,515,516,516,516,517,517,517,517,518,518,518,519,519,519,520,520,520,521,521,521,522,522,522,522,523,523,523,523,524,524,524,525,525,525,525,526,526,526,527,527,527,527,528,528,529,529,529,529,530,530,530,530,531,531,531,531,532,532,532,533,533,533,534,534,534,535,535,535,536,536,536,536,537,537,537,537,537,538,538,538,538,539,539,539,540,540,540,541,541,541,542,542,542,543,543,543,544,544,544,544,544,544,545,545,545,545,546,546,546,547,547,547,548,548,548,549,549,549,550,550,550,550,551,551,551,552,552,552,553,553,553,553,554,554,554,554,
+		555,555,555,555,556,556,556,556,557,557,557,558,558,558,559,559,559,560,560,560,561,561,561,561,562,562,562,563,563,564,564,564,564,565,565,565,566,566,566,566,567,567,567,568,568,568,569,569,569,570,570,571,571,571,571,572,572,573,573,573,574,574,574,575,575,575,575,576,576,577,577,577,578,578,579,579,580,580,581,581,581,582,582,583,583,583,584,584,585,585,585,586,586,586,587,587,588,588,588,588,589,590,590,591,591,591,592,592,592,593,593,594,594,594,595,595,596,596,597,597,597,598,598,599,600,600,601,601,601,602,602,603,603,603,604,604,604,605,605,606,606,607,608,608,609,610,610,611,611,611,612,612,613,613,614,614,615,615,615,616,616,617,617,618,618,618,619,619,620,620,621,621,622,622,623,623,623,624,624,625,625,626,626,626,627,627,627,628,628,629,629,630,630,631,631,632,632,633,633,633,634,634,634,635,635,636,636,636,637,637,637,638,638,638,639,639,639,640,640,640,641,641,641,642,642,642,642,643,643,644,644,645,645,645,646,646,646,647,647,648,648,648,648,649,649,649,650,650,650,651,651,651,652,652,652,
+		653,653,653,654,654,654,654,654,655,655,656,656,656,656,656,657,657,657,657,658,658,658,658,659,659,659,659,660,660,660,660,660,661,661,661,661,661,661,661,661,661,662,662,662,663,663,663,664,664,664,665,665,665,665,665,665,665,666,666,666,666,666,666,666,667,667,667,668,668,668,668,668,669,669,669,669,670,670,670,670,670,670,670,670,670,671,671,671,671,671,671,671,671,672,672,672,672,672,672,672,673,673,673,673,674,674,674,674,674,674,674,674,674,674,675,675,675,676,676,676,676,676,676,677,677,677,677,677,677,677,677,677,677,678,678,678,678,678,678,679,679,679,679,679,680,680,680,680,680,680,680,680,680,681,681,681,681,681,681,681,681,681,682,682,682,682,682,682,682,682,683,683,683,683,683,683,684,684,684,684,684,684,684,684,684,684,685,685,685,685,685,685,685,685,685,685,686,686,686,686,686,686,686,686,686,686,687,687,687,687,687,688,688,688,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,690,690,690,690,691,691,691,691,691,691,691,691,691,692,692,692,692,692,692,692,692,692,
+		692,692,692,692,693,693,693,693,694,694,694,694,694,694,694,695,695,695,695,695,695,695,695,696,696,696,696,696,696,696,696,696,696,696,696,696,696,696,696,696,697,697,697,697,698,698,698,698,698,698,698,698,698,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,700,700,700,700,700,700,700,701,701,701,701,701,701,701,701,701,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,703,703,703,703,704,704,704,704,704,704,704,704,704,704,704,704,704,705,705,705,705,705,706,706,706,706,706,706,706,706,706,706,706,706,706,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,708,708,708,708,708,708,708,708,709,709,709,709,709,709,709,709,709,709,709,709,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,710,710,710,710,710,710,710,710,710,710,710,711,711,711,711,711,711,711,712,712,712,712,712,712,712,712,713,713,713,713,713,713,713,713,713,714,714,714,714,714,714,714,714,714,714,714,714,714,714,
+		714,714,714,714,714,714,714,714,715,715,715,715,715,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,716,717,717,717,717,717,717,717,718,718,718,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,719,720,720,720,720,721,721,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,722,723,723,723,723,723,723,723,723,
+		723,723,723,723,723,723,723,723,723,723,723,723,723,723,723,723,724,724,724,724,724,724,724,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,725,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,726,
+		726,726,726,726,726,726,726,726,727
+	},
+	{
+		0,4,8,9,10,11,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,15,15,16,16,17,18,18,19,20,20,21,22,22,23,24,25,25,26,27,28,28,29,30,30,31,31,32,32,33,33,33,34,34,35,35,36,37,38,39,40,42,44,46,48,50,52,55,57,60,62,64,67,69,71,73,75,77,79,81,82,84,86,87,89,91,92,94,96,97,99,100,102,103,105,107,108,110,111,113,114,116,117,119,120,122,123,125,126,127,129,130,131,133,134,136,137,138,140,141,142,143,145,146,147,149,150,151,152,153,155,156,157,158,159,161,162,163,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,195,196,197,198,199,200,201,202,203,204,205,206,207,208,208,209,210,211,212,213,214,215,216,217,217,218,219,220,221,222,223,224,224,225,226,227,228,229,230,230,231,232,233,234,235,235,236,237,238,239,240,241,241,242,243,244,245,246,246,247,248,249,250,250,251,252,253,254,255,255,256,257,258,259,259,260,261,262,263,263,264,265,266,
+		267,268,268,269,270,271,272,272,273,274,275,275,276,277,278,279,279,280,281,282,282,283,284,285,286,286,287,288,289,290,290,291,292,293,293,294,295,295,296,297,298,298,299,300,301,301,302,303,304,305,305,306,307,307,308,309,310,310,311,312,312,313,314,315,315,316,317,318,318,319,320,321,321,322,323,323,324,325,325,326,327,327,328,329,329,330,331,332,332,333,334,334,335,336,336,337,338,338,339,340,341,341,342,343,343,344,345,345,346,347,347,348,349,349,350,351,351,352,353,353,354,354,355,356,356,357,358,358,359,360,360,361,362,362,363,364,364,365,366,366,367,367,368,369,369,370,370,371,372,372,373,374,374,375,375,376,377,377,378,379,379,380,380,381,382,382,383,384,384,385,386,386,387,387,388,389,389,390,390,391,392,392,393,394,394,395,396,396,397,397,398,399,399,400,400,401,402,402,403,403,404,404,405,406,406,407,407,408,409,409,410,411,411,412,412,413,414,414,415,415,416,416,417,418,418,419,420,420,421,422,422,423,423,424,424,425,426,426,427,427,428,428,429,430,430,431,432,432,433,433,434,434,435,436,436,
+		437,437,438,438,439,439,440,441,441,442,442,443,443,444,444,445,446,446,447,447,448,449,449,450,450,451,451,452,452,453,453,454,455,455,456,456,457,457,458,458,459,459,460,460,461,461,462,462,463,463,464,464,464,465,465,466,466,467,467,468,468,469,469,470,470,470,471,471,472,472,473,473,474,474,475,475,476,476,476,477,477,478,478,479,479,479,480,480,481,481,481,482,482,482,483,483,483,484,484,484,485,485,485,486,486,487,487,487,488,488,489,489,489,490,490,490,491,491,491,492,492,492,493,493,493,494,494,494,495,495,496,496,496,496,497,497,497,498,498,498,498,499,499,499,500,500,500,501,501,501,502,502,502,502,503,503,503,503,504,504,504,505,505,505,506,506,506,506,507,507,507,507,508,508,508,508,509,509,509,509,510,510,510,511,511,511,511,512,512,512,513,513,513,513,514,514,514,515,515,515,515,515,516,516,516,516,517,517,517,518,518,518,518,519,519,519,520,520,520,520,521,521,521,521,521,522,522,522,522,522,523,523,523,523,524,524,524,524,525,525,525,526,526,526,526,527,527,527,528,528,528,528,529,529,529,
+		529,529,530,530,530,530,530,531,531,531,531,532,532,532,532,533,533,533,534,534,534,535,535,535,535,536,536,536,536,537,537,537,537,538,538,538,538,539,539,539,539,539,540,540,540,541,541,541,541,542,542,542,542,543,543,543,543,543,544,544,544,545,545,545,546,546,547,547,547,547,548,548,548,549,549,549,549,550,550,550,551,551,551,551,552,552,552,553,553,553,553,554,554,554,555,555,555,555,556,556,556,556,557,557,557,558,558,558,559,559,559,559,560,560,560,561,561,561,561,562,562,562,563,563,563,564,564,565,565,565,565,566,566,567,567,567,568,568,568,569,569,570,570,570,571,571,572,572,572,572,573,573,573,574,574,575,575,575,576,576,577,577,578,578,578,578,579,579,580,580,581,581,581,582,582,582,583,583,584,584,584,585,585,586,586,587,587,588,588,589,589,589,590,590,591,591,591,592,592,593,593,594,594,595,595,596,596,597,597,597,598,598,599,599,599,600,600,601,601,602,603,603,603,604,604,605,605,605,606,606,606,607,607,608,608,609,609,610,610,611,611,612,612,612,613,613,614,614,615,615,616,616,616,617,618,
+		618,618,619,619,620,620,620,621,621,621,622,622,622,623,623,624,624,624,625,625,626,626,626,627,627,628,628,628,628,628,629,629,629,629,630,630,631,631,631,632,632,632,633,633,633,634,634,634,635,635,635,636,636,637,637,637,637,637,638,638,638,638,638,638,639,639,640,640,640,641,641,641,642,642,642,642,643,643,643,643,644,644,644,644,644,644,644,645,645,645,645,645,646,646,646,647,647,647,647,647,648,648,648,648,648,648,648,649,649,649,650,650,650,650,650,650,651,651,651,651,651,651,652,652,652,652,653,653,653,653,653,653,654,654,654,654,655,655,655,655,655,656,656,656,656,656,656,657,657,657,657,657,657,658,658,658,658,658,658,659,659,659,659,659,659,660,660,660,660,660,660,660,660,661,661,661,661,661,661,662,662,662,662,662,662,662,662,662,662,662,663,663,663,663,663,664,664,664,664,664,664,664,664,664,664,664,665,665,665,665,665,665,666,666,666,666,666,666,666,666,667,667,667,667,667,668,668,668,668,668,669,669,669,669,669,669,669,669,669,669,669,669,670,670,670,670,670,670,670,670,670,670,671,671,671,
+		671,671,672,672,672,672,672,672,672,673,673,673,673,673,673,673,673,673,674,674,674,674,674,674,674,674,674,674,675,675,675,675,675,675,676,676,676,676,676,676,676,676,676,676,676,676,676,677,677,677,677,677,677,677,677,677,677,677,677,677,677,678,678,678,678,678,678,678,678,678,678,679,679,679,679,680,680,680,680,680,680,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,681,682,682,682,682,683,683,683,683,683,683,683,683,684,684,684,684,684,684,684,684,684,684,684,684,684,685,685,685,685,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,687,687,687,687,687,687,687,687,687,687,687,687,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,688,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,690,690,690,690,690,690,690,690,690,690,690,690,690,690,691,691,691,691,691,691,691,691,691,691,691,691,691,691,692,692,692,692,692,692,692,692,692,692,692,692,692,692,693,693,693,693,693,693,693,693,694,694,694,694,
+		694,694,694,694,694,694,694,694,694,694,694,694,694,694,695,695,695,695,695,695,695,695,695,695,695,695,695,695,695,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,698,698,698,698,698,698,698,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,699,700,700,700,700,700,700,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,701,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,702,703,703,703,703,
+		703,703,703,703,703,703,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,704,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,705,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,706,
+		706,706,706,706,706,706,706,706,706
+	},
+	{
+		0,0,5,7,9,9,11,12,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,16,16,17,17,18,18,19,19,20,21,21,22,23,23,24,25,25,26,26,27,28,28,29,29,30,30,31,31,31,32,32,32,33,33,33,34,35,35,36,37,39,40,42,43,45,47,49,51,53,56,58,60,62,64,66,68,70,71,73,75,76,78,80,81,83,84,86,87,88,90,91,93,94,95,97,98,99,101,102,104,105,106,108,109,110,111,113,114,115,117,118,119,121,122,123,124,126,127,128,129,130,132,133,134,135,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,169,170,171,172,173,174,175,176,177,178,179,180,180,181,182,183,184,185,186,187,187,188,189,190,191,192,193,193,194,195,196,197,198,199,199,200,201,202,203,203,204,205,206,207,208,208,209,210,211,212,212,213,214,215,216,216,217,218,219,220,220,221,222,223,223,224,225,226,226,227,228,229,229,230,231,232,232,233,234,235,235,236,237,238,238,239,240,240,241,
+		242,243,243,244,245,246,246,247,248,249,249,250,251,252,252,253,254,254,255,256,257,257,258,259,260,260,261,262,262,263,264,264,265,266,266,267,268,268,269,270,270,271,272,273,273,274,275,275,276,277,277,278,279,279,280,281,281,282,283,284,284,285,285,286,287,287,288,289,289,290,291,291,292,293,293,294,294,295,296,296,297,298,298,299,300,300,301,302,302,303,303,304,305,305,306,306,307,308,308,309,310,311,311,312,312,313,314,314,315,315,316,317,317,318,319,319,320,320,321,321,322,322,323,324,324,325,325,326,326,327,328,328,329,330,330,331,332,332,333,333,334,335,335,336,336,337,337,338,338,339,339,340,341,341,342,342,343,343,344,345,345,346,346,347,347,348,348,349,350,350,351,351,352,352,353,353,354,355,355,356,356,357,357,358,359,359,360,360,361,361,362,363,363,364,364,365,365,366,366,367,367,368,369,369,370,370,371,371,372,373,373,374,374,375,375,376,376,377,377,378,378,379,379,380,380,381,381,382,383,383,384,384,385,385,386,386,387,388,388,389,389,390,390,391,391,392,392,393,393,394,394,395,395,396,396,
+		397,397,398,398,399,399,400,400,401,401,402,402,403,403,404,404,405,405,406,407,407,408,408,409,410,410,411,411,412,412,413,413,414,414,415,415,416,416,417,417,418,419,419,419,420,421,421,422,422,423,423,424,424,425,425,426,426,427,427,427,428,429,429,430,430,431,431,432,432,433,433,434,434,435,435,436,436,437,437,438,439,439,440,440,441,441,442,442,443,443,443,444,444,445,445,446,446,447,447,447,448,448,449,450,450,451,451,452,452,452,453,453,454,454,455,455,456,456,456,457,457,458,458,459,459,460,460,460,461,461,462,462,463,463,463,464,464,464,465,465,466,466,466,467,467,468,468,468,469,469,470,470,470,471,471,472,472,472,473,473,473,474,474,474,475,475,475,476,476,477,477,477,477,478,478,478,479,479,479,480,480,480,481,481,481,482,482,482,483,483,483,483,484,484,484,485,485,485,485,486,486,486,487,487,487,487,488,488,488,488,489,489,489,489,490,490,490,491,491,491,491,492,492,492,492,493,493,493,493,494,494,494,494,495,495,495,495,496,496,496,497,497,497,497,498,498,498,498,499,499,499,499,499,499,499,
+		500,500,500,500,500,501,501,501,502,502,502,503,503,503,503,504,504,504,504,504,505,505,505,506,506,506,506,507,507,507,507,507,507,507,508,508,508,508,508,508,509,509,509,510,510,510,510,510,510,511,511,511,511,511,512,512,512,512,513,513,513,513,513,514,514,514,514,515,515,515,515,515,516,516,516,516,517,517,517,517,518,518,518,518,518,519,519,519,519,520,520,520,520,521,521,521,521,521,521,522,522,522,522,522,523,523,523,523,523,524,524,524,524,524,525,525,525,525,526,526,526,526,526,526,527,527,527,527,527,527,528,528,528,528,529,529,529,529,529,530,530,530,530,531,531,531,532,532,532,533,533,534,534,534,534,534,534,534,535,535,535,535,535,535,536,536,536,537,537,537,538,538,538,538,538,539,539,539,539,539,540,540,540,540,540,541,541,541,542,542,542,542,543,543,543,543,544,544,544,544,544,544,545,545,545,545,546,546,546,547,547,548,548,548,548,549,549,549,550,550,550,550,550,551,551,551,551,552,552,552,552,553,553,553,554,554,554,555,555,555,555,556,556,556,557,557,557,558,558,558,558,559,559,560,560,
+		560,560,561,561,561,561,562,562,563,563,563,564,564,565,565,566,566,566,566,566,567,567,567,568,568,568,569,569,569,570,570,571,571,571,571,571,571,572,572,573,573,574,574,574,575,575,576,576,577,577,578,578,578,579,579,579,580,580,580,581,581,581,582,582,582,583,583,584,584,585,585,586,586,587,587,588,588,588,589,589,590,590,590,590,591,591,591,592,592,593,593,593,594,594,595,595,596,596,596,597,597,598,598,598,599,599,599,600,600,601,601,602,602,603,603,603,604,604,605,605,606,606,606,607,607,607,607,608,608,608,609,609,609,610,610,610,611,611,612,612,613,613,614,614,614,615,615,615,616,616,616,616,617,617,617,617,618,618,619,619,619,619,620,620,620,621,621,621,621,622,622,622,623,623,623,624,624,624,625,625,625,625,625,626,626,626,627,627,627,627,628,628,628,628,629,629,629,629,629,629,630,630,630,631,631,631,632,632,632,632,633,633,633,633,633,633,634,634,634,634,634,634,635,635,636,636,636,636,636,637,637,637,638,638,638,638,638,638,639,639,639,639,639,639,640,640,640,640,640,641,641,641,641,641,642,
+		642,642,642,642,642,643,643,643,643,643,643,643,643,644,644,644,645,645,645,645,645,645,646,646,646,646,646,646,647,647,647,647,647,647,648,648,648,648,648,648,648,648,648,648,649,649,649,650,650,650,650,650,650,650,651,651,651,651,651,651,651,651,652,652,652,652,652,652,652,652,652,652,653,653,653,653,654,654,654,654,654,655,655,655,655,655,655,655,655,655,656,656,656,656,656,656,656,656,656,657,657,657,657,657,657,657,658,658,658,658,658,658,658,658,658,658,659,659,659,659,659,659,659,660,660,660,660,660,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,662,662,662,662,662,662,663,663,663,663,664,664,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,665,665,665,665,665,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,666,667,667,667,667,667,667,668,668,668,668,668,668,668,669,669,669,669,669,669,669,669,669,669,669,669,669,669,669,670,670,670,670,670,670,670,671,671,671,671,671,671,671,671,671,671,
+		671,671,671,671,671,671,672,672,672,672,672,672,672,672,672,672,672,672,673,673,673,673,673,673,673,673,673,673,673,673,673,673,673,674,674,674,674,675,675,675,675,675,675,675,675,675,675,675,675,675,675,675,675,675,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,676,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,677,678,678,678,678,678,678,678,678,678,678,678,678,678,678,678,678,678,678,678,678,678,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,679,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,680,681,681,681,681,682,682,682,682,682,682,682,682,682,
+		682,682,682,682,682,682,682,682,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,683,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,684,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,686,
+		686,686,686,686,686,686,686,686,686
+	},
+	{
+		0,4,7,9,10,10,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,15,15,16,16,16,17,17,18,18,19,19,20,20,21,21,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,30,31,31,31,32,32,32,32,33,33,34,34,35,35,36,37,38,40,41,43,44,46,48,49,51,53,55,57,59,60,62,64,65,67,69,70,72,73,75,76,77,79,80,82,83,84,85,87,88,89,91,92,93,94,95,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,154,155,156,157,158,159,160,161,162,162,163,164,165,166,167,168,168,169,170,171,172,172,173,174,175,176,177,177,178,179,180,181,181,182,183,184,185,185,186,187,188,188,189,190,191,191,192,193,193,194,195,196,196,197,198,199,199,200,201,201,202,203,204,204,205,206,206,207,208,209,209,210,211,211,212,213,213,214,215,216,216,217,218,
+		218,219,220,220,221,222,223,223,224,225,225,226,227,227,228,229,229,230,231,231,232,233,233,234,235,235,236,236,237,238,238,239,240,240,241,242,242,243,244,244,245,245,246,247,247,248,249,249,250,251,251,252,253,253,254,254,255,256,256,257,257,258,258,259,260,260,261,261,262,263,263,264,265,265,266,266,267,268,268,269,269,270,270,271,272,272,273,273,274,275,275,276,276,277,277,278,279,279,280,280,281,282,282,283,283,284,284,285,286,286,287,287,288,288,289,290,290,291,291,292,292,293,293,294,294,295,295,296,296,297,297,298,299,299,300,300,301,301,302,303,303,304,304,305,305,306,306,307,307,308,308,309,309,310,310,311,312,312,313,313,314,314,315,315,316,316,317,317,318,318,319,320,320,321,321,321,322,323,323,324,324,325,325,326,326,327,327,328,328,329,329,330,330,331,331,332,332,333,333,333,334,335,335,336,336,337,337,338,338,339,339,340,340,340,341,341,342,342,343,343,344,344,345,345,346,346,347,347,348,348,349,349,350,350,351,351,352,353,353,354,354,354,355,355,356,356,357,357,358,358,359,359,359,360,360,
+		361,361,362,362,363,363,364,364,365,365,366,366,367,367,368,368,369,369,369,370,370,371,371,372,372,373,373,374,374,375,375,376,376,377,377,377,378,378,379,379,380,380,381,381,382,382,383,383,384,384,384,385,385,386,386,387,387,388,388,389,389,390,390,390,391,391,392,392,393,393,394,394,395,395,396,396,397,397,398,398,399,399,399,400,400,401,401,402,402,403,403,404,404,404,405,405,406,406,407,407,408,408,409,409,410,410,410,411,411,412,412,413,413,414,414,415,415,415,416,416,417,417,418,418,419,419,420,420,421,421,422,422,422,423,423,424,424,425,425,426,426,427,427,428,428,429,429,430,430,431,431,432,432,432,433,433,434,434,435,435,436,436,437,437,438,438,438,439,439,440,440,441,441,441,442,442,443,443,443,444,444,445,445,445,446,446,447,447,448,448,448,449,449,450,450,450,451,451,452,452,452,453,453,453,454,454,454,455,455,456,456,456,457,457,458,458,458,459,459,459,460,460,460,461,461,461,461,462,462,462,463,463,463,464,464,464,465,465,465,466,466,466,467,467,467,468,468,468,468,469,469,469,470,470,470,
+		470,471,471,471,472,472,472,472,473,473,473,474,474,474,474,475,475,475,475,476,476,476,476,477,477,477,477,478,478,478,478,479,479,479,479,480,480,480,480,480,481,481,481,481,481,482,482,482,482,483,483,483,483,484,484,484,484,484,485,485,485,485,485,486,486,486,486,486,487,487,487,487,487,488,488,488,488,489,489,489,489,489,490,490,490,490,490,491,491,491,491,491,492,492,492,492,492,493,493,493,494,494,494,494,494,495,495,495,495,495,495,495,495,496,496,496,496,496,497,497,497,497,497,498,498,498,498,498,498,498,499,499,499,499,499,500,500,500,500,501,501,501,501,502,502,502,502,502,503,503,503,503,503,503,503,504,504,504,504,504,504,505,505,505,505,506,506,506,506,506,506,506,507,507,507,507,508,508,508,508,508,508,509,509,509,509,509,510,510,510,510,511,511,511,511,511,511,511,511,511,512,512,512,512,512,513,513,513,513,514,514,514,515,515,515,515,515,516,516,516,516,516,517,517,517,517,517,517,517,517,518,518,518,518,518,519,519,519,519,519,520,520,520,520,520,521,521,521,522,522,522,522,522,522,523,
+		523,523,523,524,524,524,524,525,525,525,525,525,526,526,526,526,526,527,527,527,527,527,527,528,528,528,528,528,528,529,529,529,530,530,530,530,530,531,531,531,531,532,532,532,532,533,533,533,533,534,534,534,534,534,534,534,535,535,535,535,535,536,536,536,536,536,536,537,537,537,538,538,538,539,539,539,540,540,540,540,541,541,541,541,541,541,541,541,542,542,542,542,542,543,543,543,544,544,544,544,544,544,545,545,545,545,546,546,546,546,547,547,548,548,548,548,548,548,549,549,549,550,550,550,550,550,551,551,551,551,552,552,552,552,553,553,553,553,554,554,555,555,556,556,556,556,556,557,558,558,558,558,558,558,559,559,559,559,559,560,560,560,561,561,562,562,562,563,563,563,564,564,565,565,565,565,565,566,566,566,567,567,568,568,568,569,569,570,570,570,571,571,571,571,572,572,573,573,573,573,574,574,574,575,575,576,576,576,577,577,578,578,579,579,580,580,580,581,581,582,582,582,583,583,584,584,584,585,585,585,585,586,586,587,587,587,588,588,589,589,590,590,590,591,591,591,592,592,592,593,593,593,594,594,595,
+		595,596,596,596,597,597,597,598,598,598,598,599,599,599,600,600,600,601,601,601,601,602,602,602,603,603,603,604,604,604,605,605,605,606,606,606,607,607,607,607,608,608,609,609,609,609,610,610,610,610,611,611,611,611,612,612,612,612,613,613,613,613,614,614,614,614,614,615,615,615,615,615,615,616,616,617,617,617,618,618,618,618,619,619,619,619,620,620,620,620,621,621,621,621,621,621,622,622,622,622,622,623,623,623,623,624,624,624,624,624,625,625,625,625,626,626,626,626,627,627,627,627,628,628,628,628,628,629,629,629,629,629,629,630,630,630,630,630,630,630,630,630,631,631,631,631,631,631,632,632,632,632,633,633,633,633,633,633,633,633,634,634,634,634,634,634,634,634,634,635,635,635,635,635,635,635,635,635,635,636,636,636,636,636,637,637,637,637,637,637,638,638,638,638,638,638,638,638,638,639,639,639,639,639,639,639,639,639,639,639,639,639,639,640,640,640,640,640,641,641,641,641,641,641,641,642,642,642,642,642,642,642,643,643,643,643,643,643,643,643,643,644,644,644,644,644,644,644,644,644,644,645,645,645,645,
+		645,645,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,647,647,647,647,647,647,647,648,648,648,648,648,649,649,649,649,649,649,649,649,649,649,649,649,649,649,649,649,650,650,650,650,650,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,652,652,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,653,653,653,653,653,653,653,653,653,653,653,654,654,654,654,654,654,655,655,655,655,655,655,655,655,655,655,655,655,655,655,655,656,656,656,656,656,656,656,656,656,656,656,656,656,656,656,656,656,656,656,656,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,657,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,658,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,659,660,660,660,660,660,660,660,660,660,
+		660,660,660,660,660,660,660,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,661,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,662,663,663,663,663,663,663,663,663,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,664,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,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,665,666,666,666,
+		667,667,667,667,667,667,667,667,667
+	},
+	{
+		0,0,4,7,8,9,11,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,15,15,15,16,16,17,17,17,18,18,19,19,20,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,28,29,29,29,30,30,30,31,31,31,32,32,32,33,33,34,34,35,36,37,38,40,41,43,44,46,47,49,51,52,54,56,57,59,60,62,64,65,66,68,69,70,72,73,74,76,77,78,79,80,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,124,125,126,127,128,129,130,131,132,133,134,135,136,137,137,138,139,140,141,142,143,144,145,146,146,147,148,149,150,151,152,152,153,154,155,156,156,157,158,159,160,160,161,162,163,164,164,165,166,167,167,168,169,170,170,171,172,172,173,174,175,175,176,177,177,178,179,180,180,181,182,182,183,184,184,185,186,187,187,188,189,189,190,191,191,192,193,193,194,195,195,196,197,198,198,199,200,200,201,
+		202,202,203,204,204,205,205,206,207,207,208,209,209,210,211,211,212,212,213,214,214,215,216,216,217,217,218,219,219,220,221,221,222,222,223,224,224,225,225,226,227,227,228,228,229,230,230,231,231,232,233,233,234,234,235,235,236,236,237,238,238,239,239,240,241,241,242,242,243,243,244,245,245,246,246,247,247,248,248,249,250,250,251,251,252,252,253,253,254,254,255,255,256,257,257,258,258,259,259,260,260,261,261,262,263,263,264,264,265,265,266,266,267,267,268,268,269,269,270,270,271,271,272,272,273,273,274,274,275,275,276,276,277,277,278,278,279,279,280,281,281,281,282,283,283,284,284,285,285,286,286,287,287,288,288,289,289,290,290,290,291,291,292,292,293,293,294,294,295,295,296,296,297,297,297,298,298,299,299,300,300,301,302,302,302,303,303,304,304,305,305,306,306,307,307,308,308,309,309,309,310,310,311,311,312,312,313,313,313,314,314,315,315,316,316,317,317,318,318,319,319,319,320,320,321,321,322,322,323,323,323,324,324,325,325,326,326,327,327,328,328,329,329,329,330,330,331,331,331,332,332,333,333,334,334,
+		335,335,335,336,336,337,337,337,338,338,339,339,340,340,341,341,342,342,343,343,343,344,344,345,345,345,346,346,347,347,348,348,349,349,350,350,351,351,351,352,352,353,353,353,354,354,355,355,356,356,356,357,357,358,358,358,359,359,360,360,360,361,361,362,362,363,363,364,364,364,365,365,366,366,367,367,367,368,368,369,369,369,370,370,371,371,372,372,372,373,373,374,374,375,375,375,376,376,377,377,377,378,378,379,379,379,380,380,381,381,382,382,382,383,383,384,384,384,385,385,386,386,386,387,387,388,388,389,389,389,390,390,391,391,392,392,393,393,393,394,394,395,395,395,396,396,397,397,397,398,398,399,399,400,400,400,401,401,402,402,403,403,404,404,404,405,405,406,406,406,407,407,408,408,409,409,409,410,410,411,411,412,412,412,413,413,414,414,414,415,415,416,416,417,417,418,418,418,419,419,420,420,420,421,421,422,422,423,423,423,424,424,425,425,426,426,427,427,427,428,428,429,429,429,430,430,431,431,432,432,432,433,433,434,434,434,435,435,436,436,436,437,437,438,438,438,439,439,440,440,440,441,441,442,442,
+		443,443,443,444,444,444,445,445,446,446,446,447,447,447,448,448,449,449,449,450,450,450,451,451,451,452,452,453,453,453,454,454,454,455,455,455,455,456,456,456,456,457,457,457,458,458,458,459,459,459,460,460,460,461,461,461,461,462,462,462,463,463,463,463,464,464,464,464,464,465,465,465,466,466,466,466,466,467,467,467,467,468,468,468,468,469,469,469,469,470,470,470,471,471,471,471,471,472,472,472,473,473,473,473,474,474,474,474,474,474,475,475,475,475,475,475,476,476,476,476,476,477,477,477,477,478,478,478,478,478,479,479,479,479,479,480,480,480,480,480,480,481,481,481,481,482,482,482,482,482,483,483,483,483,483,484,484,484,484,484,484,485,485,485,485,485,486,486,486,486,486,486,487,487,487,487,487,488,488,488,488,488,489,489,489,489,489,490,490,490,490,490,490,490,491,491,491,491,491,491,491,492,492,492,492,492,493,493,493,493,493,493,494,494,494,494,494,495,495,495,495,495,495,495,496,496,496,496,496,496,496,497,497,497,497,498,498,498,498,498,498,499,499,499,499,499,499,499,500,500,500,500,501,501,501,
+		501,501,502,502,502,502,502,502,503,503,503,503,503,503,504,504,504,504,504,505,505,505,505,505,505,505,505,506,506,506,506,506,506,506,507,507,507,507,507,508,508,508,508,508,508,509,509,509,509,509,509,510,510,510,510,510,510,510,511,511,511,511,511,511,511,512,512,512,512,512,512,513,513,513,513,513,513,514,514,514,514,514,514,515,515,515,515,516,516,516,516,516,516,517,517,517,517,517,517,517,517,517,517,518,518,518,518,518,518,519,519,519,519,519,520,520,520,520,521,521,521,521,521,521,521,522,522,522,522,522,522,522,523,523,523,523,523,524,524,524,524,524,524,524,524,525,525,525,526,526,526,526,527,527,527,527,527,527,527,528,528,528,528,528,528,528,528,529,529,529,529,530,530,530,531,531,531,531,531,531,531,531,532,532,532,532,532,533,533,533,533,534,534,534,535,535,535,535,535,535,535,535,535,535,536,536,536,536,536,536,537,537,537,538,538,538,538,539,539,539,540,540,540,540,540,541,541,541,541,542,542,542,542,542,542,543,543,543,543,543,544,544,544,544,545,545,546,546,547,547,547,547,547,548,548,
+		548,548,548,548,549,549,549,550,550,550,550,551,551,551,552,552,552,552,552,553,553,554,554,554,555,555,555,555,556,556,556,557,557,557,558,558,558,558,558,559,559,559,560,560,560,560,560,561,561,562,562,562,562,563,563,564,564,564,564,564,565,565,565,565,566,566,566,567,567,568,568,569,569,569,570,570,570,570,570,571,571,571,572,572,572,573,573,574,574,574,575,575,576,576,576,577,577,578,578,578,578,579,579,579,580,580,580,580,581,581,582,582,582,582,582,583,583,584,584,585,585,586,586,587,587,587,587,588,588,588,589,589,589,590,590,590,591,591,591,591,592,592,592,593,593,593,594,594,594,595,595,595,596,596,596,597,597,597,597,598,598,598,598,599,599,599,599,599,600,600,600,601,601,601,601,602,602,602,603,603,603,603,604,604,604,605,605,605,606,606,606,606,606,606,607,607,607,607,607,607,608,608,608,608,608,609,609,609,609,609,610,610,610,611,611,611,612,612,612,613,613,613,613,613,614,614,614,615,615,615,615,615,615,616,616,616,616,616,616,616,617,617,617,618,618,618,618,618,619,619,619,619,619,619,619,
+		619,620,620,620,620,621,621,621,621,621,621,622,622,622,622,622,622,622,622,623,623,623,623,623,623,623,623,624,624,624,624,624,624,624,624,625,625,626,626,626,626,626,626,626,627,627,627,627,627,627,627,628,628,628,629,629,629,629,630,630,630,630,630,630,630,630,630,630,630,630,630,630,631,631,631,631,631,631,632,632,632,632,632,632,632,632,632,632,632,632,632,632,632,633,633,633,633,633,633,633,634,634,634,634,634,634,634,634,635,635,635,635,635,635,635,635,635,635,635,635,636,636,636,636,636,636,636,636,637,637,637,637,637,637,637,637,637,637,637,637,637,638,638,638,638,638,638,638,639,639,639,639,639,639,639,639,639,639,639,639,639,639,640,640,640,640,640,640,640,640,640,640,640,640,640,640,640,640,640,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,641,642,642,642,642,642,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,643,644,644,644,644,644,644,644,644,644,644,644,644,644,644,644,644,644,
+		644,645,645,645,645,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,646,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,647,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,648,649,649,649,649,649,649,649,649,649,649,649,649,649,649,649,649,649,649,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,650,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,651,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,652,
+		653,653,653,653,653,653,653,653,653
+	},
+	{
+		0,0,1,5,7,8,9,10,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,15,15,15,16,16,16,17,17,17,18,18,19,19,19,20,20,21,21,22,22,22,23,23,24,24,25,25,25,26,26,27,27,27,28,28,28,29,29,29,30,30,30,30,31,31,31,32,32,32,33,34,34,35,36,37,38,39,40,41,42,44,45,46,48,49,51,52,54,55,57,58,60,61,62,64,65,66,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,90,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,109,110,111,112,113,114,115,116,117,118,118,119,120,121,122,123,124,125,126,127,127,128,129,130,131,132,133,134,134,135,136,137,138,139,139,140,141,142,143,143,144,145,146,147,147,148,149,150,150,151,152,153,153,154,155,156,156,157,158,158,159,160,161,161,162,163,163,164,165,165,166,167,167,168,169,169,170,171,171,172,173,173,174,175,175,176,177,177,178,179,179,180,181,181,182,183,183,184,184,
+		185,186,186,187,188,188,189,189,190,191,191,192,193,193,194,194,195,196,196,197,197,198,199,199,200,200,201,202,202,203,203,204,205,205,206,206,207,207,208,208,209,210,210,211,211,212,212,213,214,214,215,215,216,216,217,217,218,219,219,220,220,221,221,222,222,223,223,224,224,225,225,226,226,227,228,228,229,229,230,230,231,231,232,232,233,234,234,235,235,236,236,237,237,238,238,239,239,240,240,241,241,242,242,242,243,243,244,244,245,245,246,246,247,247,248,248,249,249,250,250,251,251,252,252,253,253,254,254,255,255,256,256,256,257,257,258,258,259,259,260,260,261,261,262,262,263,263,264,264,265,265,266,266,266,267,267,268,268,269,269,270,270,270,271,271,272,272,273,273,273,274,274,275,275,276,276,277,277,278,278,279,279,279,280,280,281,281,282,282,282,283,283,284,284,284,285,285,286,286,287,287,288,288,289,289,289,290,290,291,291,292,292,292,293,293,294,294,295,295,295,296,296,297,297,298,298,299,299,299,300,300,301,301,302,302,302,303,303,304,304,304,305,305,305,306,306,307,307,307,308,308,309,309,310,310,
+		310,311,311,312,312,313,313,313,314,314,314,315,315,315,316,316,317,317,318,318,318,319,319,319,320,320,321,321,321,322,322,323,323,324,324,325,325,325,326,326,327,327,327,328,328,328,329,329,330,330,331,331,331,332,332,333,333,333,334,334,334,335,335,335,336,336,337,337,337,338,338,339,339,339,340,340,341,341,342,342,342,343,343,343,344,344,345,345,345,346,346,347,347,347,348,348,348,349,349,349,350,350,350,351,351,352,352,352,353,353,353,354,354,355,355,355,356,356,357,357,358,358,358,359,359,359,360,360,360,361,361,362,362,363,363,363,364,364,365,365,365,366,366,366,367,367,367,368,368,369,369,369,370,370,371,371,371,372,372,372,373,373,373,374,374,374,375,375,375,376,376,377,377,378,378,378,379,379,380,380,380,381,381,381,382,382,382,383,383,384,384,385,385,385,385,386,386,387,387,387,388,388,388,389,389,390,390,390,391,391,392,392,392,393,393,394,394,395,395,395,396,396,397,397,397,397,398,398,399,399,399,400,400,400,401,401,402,402,402,403,403,404,404,405,405,405,406,406,407,407,408,408,408,409,409,
+		409,410,410,410,411,411,412,412,412,413,413,414,414,415,415,416,416,416,417,417,418,418,418,419,419,419,420,420,421,421,421,422,422,422,423,423,424,424,424,425,425,426,426,426,427,427,427,428,428,429,429,429,430,430,431,431,431,432,432,433,433,433,434,434,434,435,435,435,436,436,436,437,437,437,438,438,438,439,439,440,440,441,441,441,442,442,442,443,443,443,444,444,444,444,445,445,445,446,446,446,447,447,447,447,448,448,448,449,449,449,450,450,450,451,451,451,451,452,452,452,452,453,453,453,453,454,454,454,455,455,455,455,455,456,456,456,457,457,457,457,458,458,458,458,459,459,459,459,460,460,460,460,461,461,461,461,462,462,462,462,462,463,463,463,463,463,464,464,464,464,465,465,465,465,465,466,466,466,466,466,467,467,467,467,468,468,468,468,468,469,469,469,469,469,469,469,470,470,470,470,470,471,471,471,471,471,472,472,472,472,472,472,473,473,473,473,474,474,474,474,474,474,475,475,475,475,475,475,476,476,476,476,476,477,477,477,477,477,478,478,478,478,478,478,479,479,479,479,479,480,480,480,480,480,481,
+		481,481,481,481,481,481,482,482,482,482,482,482,482,482,483,483,483,483,483,483,484,484,484,484,484,484,485,485,485,485,485,485,485,486,486,486,486,486,486,486,487,487,487,487,487,487,487,487,488,488,488,488,489,489,489,489,489,489,489,489,489,489,490,490,490,490,490,490,491,491,491,491,491,491,491,491,491,492,492,492,492,492,493,493,493,493,493,493,493,494,494,494,494,494,494,494,494,494,495,495,495,495,495,496,496,496,496,496,496,496,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,499,499,499,499,499,499,499,499,500,500,500,500,500,500,500,500,500,501,501,501,501,501,501,502,502,502,502,502,502,503,503,503,503,503,503,504,504,504,504,504,504,504,504,505,505,505,505,505,505,505,506,506,506,506,506,506,507,507,507,507,507,507,507,507,507,507,507,507,508,508,508,508,509,509,509,509,509,510,510,510,510,510,510,510,510,511,511,511,511,511,511,511,512,512,512,512,512,513,513,513,513,513,513,513,514,514,514,514,514,514,514,515,515,515,515,515,515,515,516,516,516,516,516,517,517,517,517,517,518,518,
+		518,518,519,519,519,519,519,519,520,520,520,520,520,520,521,521,521,521,521,521,521,521,522,522,522,522,522,522,522,522,523,523,524,524,524,524,524,525,525,525,525,526,526,526,526,526,526,526,526,527,527,527,527,527,527,527,528,528,528,528,528,528,528,528,529,529,529,529,529,530,530,530,530,530,531,531,532,532,532,532,532,533,533,533,533,533,534,534,534,534,534,535,535,535,535,535,536,536,536,536,536,537,537,537,537,537,538,538,538,538,538,538,538,539,539,539,539,540,540,541,541,541,542,542,542,542,543,543,543,543,543,544,544,544,544,544,544,544,545,545,545,545,545,545,546,546,546,547,547,547,547,548,548,548,548,548,549,549,549,549,549,550,550,550,550,550,551,551,551,551,552,552,552,553,553,553,553,554,554,554,555,555,555,556,556,556,557,557,557,558,558,558,558,559,559,559,559,559,560,560,560,560,561,561,561,561,561,562,562,563,563,563,563,564,564,565,565,566,566,566,566,567,567,567,567,567,568,568,568,568,569,569,570,570,570,571,571,572,572,572,573,573,573,574,574,574,574,575,575,575,576,576,576,577,577,
+		577,577,578,578,578,579,579,579,580,580,580,581,581,581,582,582,582,582,583,583,583,583,583,584,584,584,585,585,585,586,586,587,587,587,587,587,588,588,588,588,589,589,589,589,590,590,591,591,591,592,592,592,593,593,593,594,594,594,594,594,595,595,595,595,595,595,596,596,596,596,596,597,597,597,597,598,598,598,599,599,599,600,600,600,600,601,601,601,601,601,602,602,602,602,602,602,602,603,603,603,604,604,604,604,605,605,605,605,606,606,606,606,606,606,606,606,606,606,607,607,607,608,608,608,609,609,609,609,609,609,609,609,609,609,609,609,609,610,610,610,610,611,611,611,611,612,612,612,612,612,612,612,612,613,613,613,613,613,613,614,614,614,614,614,615,615,615,615,615,615,616,616,616,616,616,616,616,616,616,616,616,616,616,617,617,617,617,618,618,618,618,618,618,618,618,618,618,618,619,619,619,619,619,619,619,619,619,619,619,619,619,620,620,620,620,620,620,620,620,620,620,621,621,621,621,621,621,621,622,622,622,622,622,622,623,623,623,623,623,623,623,623,624,624,624,624,624,624,624,624,624,624,624,624,624,
+		624,624,624,624,624,624,624,625,625,626,626,626,626,626,626,626,626,627,627,627,627,627,627,627,627,627,627,627,627,627,627,627,627,627,627,627,627,627,628,628,628,628,628,628,628,628,628,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,631,631,631,631,631,631,631,631,632,632,632,632,632,632,632,632,632,632,632,632,632,632,632,632,632,632,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,633,634,634,634,634,634,634,634,634,634,634,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,635,636,636,636,636,636,636,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,637,638,638,638,638,
+		639,639,639,639,639,639,639,639,639
+	},
+	{
+		0,0,1,5,7,8,9,10,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,15,15,15,15,16,16,16,17,17,17,18,18,18,19,19,19,20,20,20,21,21,21,22,22,23,23,23,24,24,24,25,25,25,26,26,26,27,27,27,28,28,28,28,29,29,29,29,30,30,30,31,31,32,32,33,33,34,35,36,37,38,38,39,41,42,43,44,45,46,48,49,50,51,53,54,55,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,74,74,75,76,77,78,79,80,81,82,82,83,84,85,86,87,87,88,89,90,91,92,92,93,94,95,96,96,97,98,99,100,101,101,102,103,104,105,105,106,107,108,109,109,110,111,112,113,113,114,115,116,117,117,118,119,120,120,121,122,123,123,124,125,126,126,127,128,129,129,130,131,131,132,133,134,134,135,136,136,137,138,139,139,140,141,141,142,143,143,144,145,145,146,147,147,148,149,149,150,151,151,152,153,153,154,154,155,156,156,157,158,158,159,159,160,161,161,
+		162,163,163,164,164,165,166,166,167,167,168,168,169,170,170,171,171,172,173,173,174,174,175,175,176,177,177,178,178,179,179,180,181,181,182,182,183,183,184,184,185,185,186,186,187,187,188,188,189,190,190,191,191,192,192,193,193,194,194,195,195,196,196,197,197,198,198,199,199,200,200,201,201,202,202,203,203,204,204,205,205,206,206,207,207,208,208,208,209,209,210,210,211,211,212,212,213,213,213,214,214,215,215,216,216,217,217,218,218,219,219,219,220,220,221,221,221,222,222,223,223,224,224,225,225,226,226,226,227,227,228,228,228,229,229,230,230,231,231,231,232,232,233,233,234,234,234,235,235,236,236,237,237,237,238,238,238,239,239,240,240,240,241,241,242,242,243,243,243,244,244,245,245,245,246,246,247,247,247,248,248,249,249,250,250,250,251,251,252,252,252,253,253,253,254,254,255,255,255,256,256,256,257,257,258,258,258,259,259,260,260,260,261,261,261,262,262,262,263,263,263,264,264,265,265,265,266,266,267,267,267,268,268,268,269,269,269,270,270,271,271,271,272,272,272,273,273,274,274,274,275,275,275,276,276,
+		276,277,277,278,278,278,279,279,279,280,280,280,281,281,281,282,282,283,283,283,284,284,284,285,285,285,286,286,287,287,287,288,288,288,289,289,290,290,290,291,291,291,292,292,292,292,293,293,293,294,294,294,295,295,295,296,296,297,297,297,298,298,298,299,299,299,300,300,300,301,301,301,302,302,302,303,303,303,304,304,304,305,305,305,306,306,306,307,307,307,308,308,308,309,309,309,310,310,310,311,311,311,312,312,313,313,313,313,314,314,314,315,315,315,316,316,316,317,317,317,318,318,318,319,319,319,320,320,320,321,321,321,322,322,322,323,323,323,324,324,324,325,325,325,326,326,326,327,327,327,328,328,328,329,329,329,330,330,330,331,331,331,331,332,332,332,333,333,333,334,334,334,335,335,335,336,336,336,337,337,337,338,338,338,339,339,339,340,340,340,340,341,341,341,342,342,342,343,343,343,344,344,344,345,345,345,345,346,346,347,347,347,348,348,348,349,349,349,350,350,350,351,351,351,352,352,352,353,353,353,354,354,354,354,355,355,355,356,356,356,357,357,357,358,358,358,359,359,359,359,360,360,361,361,361,
+		361,362,362,362,363,363,363,363,364,364,364,365,365,365,366,366,366,367,367,367,368,368,369,369,369,370,370,370,371,371,371,371,372,372,372,373,373,373,374,374,374,375,375,375,376,376,376,377,377,377,378,378,378,378,379,379,379,380,380,380,381,381,381,382,382,382,383,383,383,384,384,384,385,385,385,386,386,386,387,387,387,388,388,388,389,389,389,390,390,390,391,391,391,392,392,392,392,393,393,394,394,394,395,395,395,396,396,396,397,397,397,398,398,398,399,399,399,399,400,400,400,401,401,401,402,402,402,403,403,404,404,404,405,405,405,406,406,406,407,407,408,408,408,408,409,409,410,410,410,411,411,411,411,412,412,413,413,413,414,414,415,415,415,416,416,416,417,417,417,418,418,418,419,419,419,420,420,420,421,421,422,422,422,423,423,423,424,424,424,425,425,425,426,426,426,426,427,427,427,428,428,428,429,429,429,430,430,430,431,431,432,432,432,432,433,433,433,434,434,434,435,435,435,436,436,436,437,437,437,438,438,438,439,439,439,439,440,440,440,441,441,441,442,442,442,442,443,443,443,443,444,444,444,444,445,
+		445,445,445,446,446,446,446,447,447,447,448,448,448,448,448,449,449,449,450,450,450,450,450,451,451,451,451,452,452,452,452,453,453,453,453,453,454,454,454,454,454,454,455,455,455,455,456,456,456,456,456,457,457,457,457,457,457,458,458,458,458,458,459,459,459,459,459,460,460,460,460,460,460,460,460,461,461,461,461,461,462,462,462,462,463,463,463,463,463,463,463,464,464,464,464,464,464,465,465,465,465,465,465,466,466,466,466,466,467,467,467,467,467,467,467,467,467,467,468,468,468,468,468,468,468,468,469,469,469,469,469,469,470,470,470,470,470,471,471,471,471,471,471,471,472,472,472,472,472,472,472,472,472,472,472,473,473,473,473,473,473,474,474,474,474,474,474,475,475,475,475,475,475,475,475,475,475,476,476,476,476,476,476,476,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,480,480,480,480,480,480,481,481,481,481,481,481,481,481,481,481,482,482,482,482,482,482,483,483,483,483,483,483,483,483,483,483,483,484,484,484,484,484,484,485,485,485,485,485,485,
+		485,486,486,486,486,486,487,487,487,487,487,487,487,487,487,487,487,487,487,488,488,488,488,488,488,488,489,489,489,489,489,489,489,490,490,490,490,490,490,490,490,491,491,491,491,491,491,491,491,491,491,491,491,492,492,492,492,492,492,492,492,492,492,492,493,493,493,493,493,493,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,498,498,498,498,498,498,498,498,498,498,498,498,499,499,499,499,499,499,500,500,500,500,500,500,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,502,502,502,503,503,503,503,503,503,504,504,504,504,504,504,504,504,504,504,504,504,505,505,505,505,505,505,506,506,506,506,506,506,507,507,507,507,507,507,507,507,507,507,507,507,507,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,511,511,511,511,511,512,512,512,512,512,512,512,512,513,513,513,513,513,514,514,514,514,514,514,515,515,515,515,515,515,515,515,516,516,516,516,516,516,516,516,516,
+		516,517,517,517,517,518,518,518,518,518,518,518,518,518,518,519,519,519,519,519,519,519,519,520,520,520,520,520,520,520,521,521,521,521,521,521,521,522,522,522,522,523,523,523,523,523,524,524,524,524,524,524,525,525,525,525,525,525,525,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,530,530,530,530,530,531,531,531,531,531,531,531,532,532,532,532,532,533,533,533,533,533,534,534,535,535,535,535,535,535,535,535,536,536,536,536,536,536,536,536,536,537,537,537,538,538,538,538,538,538,539,539,539,540,540,540,540,540,540,540,541,541,541,541,541,541,541,541,541,542,542,542,542,543,543,544,544,544,544,544,544,545,545,545,545,545,545,546,546,546,546,546,546,547,547,547,547,547,547,548,548,548,549,549,549,549,549,550,550,550,550,550,550,550,550,550,551,551,552,552,552,553,553,553,553,553,554,554,554,555,555,555,556,556,556,557,557,557,558,558,558,558,558,559,559,560,560,560,560,561,561,561,561,562,562,562,562,563,563,563,564,564,565,
+		565,565,566,566,566,567,567,568,568,569,569,569,569,570,570,570,571,571,571,571,571,571,572,572,572,573,573,573,573,574,574,574,575,575,575,576,576,576,576,577,577,577,577,577,577,578,578,579,579,579,579,580,580,580,580,581,581,581,581,581,582,582,582,582,583,583,583,584,584,584,584,584,584,585,585,585,585,586,586,586,586,587,587,587,587,587,587,588,588,588,588,589,589,589,590,590,590,590,590,590,591,591,591,591,591,591,591,591,592,592,592,592,592,593,593,593,593,594,594,594,594,594,594,594,595,595,595,595,596,596,596,596,596,597,597,597,597,597,597,597,598,598,598,598,598,599,599,599,599,599,599,599,600,600,600,600,600,600,601,601,601,601,601,601,601,601,602,602,602,603,603,603,603,603,603,603,603,604,604,604,604,604,604,604,605,605,605,605,605,605,605,605,605,605,605,606,606,606,606,606,607,607,607,607,608,608,608,608,609,609,609,609,609,609,609,609,609,609,609,609,609,609,609,610,610,610,610,610,610,610,610,611,611,611,611,611,611,611,611,611,611,612,612,612,612,612,612,612,613,613,613,613,613,613,613,
+		613,613,614,614,614,614,614,614,615
+	},
+	{
+		0,0,2,5,6,8,9,10,11,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,18,18,18,18,19,19,19,20,20,20,21,21,21,22,22,22,23,23,23,24,24,24,24,25,25,25,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,31,31,31,32,32,33,33,34,34,35,36,36,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,60,61,62,63,64,64,65,66,67,68,69,70,71,72,72,73,74,75,76,77,77,78,79,80,81,81,82,83,84,84,85,86,87,87,88,89,90,90,91,92,93,94,94,95,96,97,97,98,99,99,100,101,102,102,103,104,105,105,106,107,108,108,109,110,110,111,112,113,113,114,115,115,116,117,117,118,119,120,120,121,122,122,123,124,124,125,126,126,127,128,128,129,130,130,131,132,132,133,134,134,135,136,136,137,137,138,139,139,140,141,141,142,142,143,144,144,145,146,
+		146,147,147,148,149,149,150,150,151,151,152,153,153,154,154,155,155,156,157,157,158,158,159,159,160,160,161,161,162,163,163,164,164,165,165,166,166,167,167,168,168,169,169,170,170,171,171,172,172,173,173,174,175,175,176,176,177,177,178,178,179,179,180,180,180,181,181,182,182,183,183,184,184,185,185,186,186,187,187,188,188,189,189,189,190,190,191,191,192,192,193,193,194,194,194,195,195,196,196,197,197,198,198,199,199,199,200,200,201,201,201,202,202,203,203,204,204,205,205,205,206,206,207,207,207,208,208,209,209,209,210,210,211,211,212,212,212,213,213,214,214,214,215,215,215,216,216,217,217,217,218,218,219,219,219,220,220,221,221,221,222,222,223,223,223,224,224,224,225,225,226,226,226,227,227,227,228,228,229,229,229,230,230,231,231,231,232,232,233,233,233,234,234,234,235,235,235,236,236,236,237,237,238,238,238,239,239,239,240,240,241,241,241,242,242,242,243,243,243,244,244,244,245,245,246,246,246,247,247,247,248,248,248,249,249,249,250,250,250,251,251,251,252,252,252,253,253,253,254,254,255,255,255,256,256,
+		256,257,257,257,258,258,258,259,259,259,260,260,260,261,261,261,262,262,262,263,263,263,264,264,264,265,265,265,266,266,266,267,267,267,268,268,269,269,269,269,270,270,270,271,271,271,272,272,272,273,273,273,274,274,274,275,275,275,276,276,276,276,277,277,277,278,278,278,279,279,279,280,280,281,281,281,281,282,282,282,283,283,283,284,284,284,285,285,285,286,286,286,287,287,287,288,288,288,289,289,289,290,290,290,290,291,291,291,292,292,292,292,293,293,293,294,294,294,294,295,295,295,296,296,296,297,297,297,298,298,298,299,299,299,300,300,300,301,301,301,302,302,302,303,303,303,303,304,304,304,305,305,305,306,306,306,307,307,307,307,308,308,308,309,309,309,310,310,310,310,311,311,311,311,312,312,312,313,313,313,314,314,314,315,315,315,316,316,316,316,317,317,317,318,318,318,318,319,319,319,320,320,320,320,321,321,322,322,322,322,323,323,323,324,324,324,325,325,325,326,326,326,327,327,327,327,328,328,328,329,329,329,330,330,330,330,331,331,331,332,332,332,332,333,333,333,334,334,334,334,335,335,335,336,336,
+		336,336,337,337,337,338,338,338,338,339,339,339,340,340,340,340,341,341,341,342,342,342,343,343,343,344,344,344,345,345,345,346,346,346,346,347,347,347,348,348,348,348,349,349,349,350,350,350,351,351,351,351,352,352,353,353,353,353,354,354,354,355,355,355,355,355,356,356,356,357,357,357,358,358,358,359,359,360,360,360,360,361,361,361,361,362,362,362,362,363,363,363,364,364,364,365,365,365,366,366,366,367,367,367,368,368,368,368,369,369,369,370,370,370,370,371,371,371,371,372,372,372,373,373,373,373,374,374,374,375,375,375,376,376,376,376,377,377,377,378,378,378,379,379,379,380,380,380,381,381,381,382,382,382,383,383,383,384,384,384,385,385,385,385,386,386,386,387,387,387,388,388,388,389,389,390,390,390,390,391,391,391,392,392,392,393,393,393,393,394,394,394,395,395,395,396,396,396,397,397,397,398,398,398,399,399,399,400,400,400,401,401,401,401,402,402,403,403,403,404,404,404,405,405,405,406,406,406,407,407,407,407,408,408,408,409,409,409,410,410,410,411,411,412,412,412,413,413,413,414,414,414,415,415,415,
+		415,416,416,417,417,417,418,418,418,419,419,419,420,420,420,421,421,421,421,422,422,422,423,423,423,423,424,424,425,425,425,426,426,426,426,427,427,427,427,427,428,428,428,428,429,429,429,430,430,430,430,431,431,431,432,432,432,432,433,433,433,434,434,434,434,435,435,435,435,436,436,436,436,437,437,437,437,438,438,438,438,438,439,439,439,439,440,440,440,440,441,441,441,441,441,442,442,442,442,442,442,443,443,443,443,443,444,444,444,444,445,445,445,445,446,446,446,446,446,447,447,447,447,447,447,447,448,448,448,448,448,449,449,449,449,449,449,450,450,450,450,450,450,450,451,451,451,451,451,452,452,452,452,452,453,453,453,453,453,453,453,453,454,454,454,454,454,454,455,455,455,455,455,455,456,456,456,456,456,456,456,456,457,457,457,457,457,457,457,457,458,458,458,458,458,458,459,459,459,459,459,459,459,459,460,460,460,460,460,460,461,461,461,461,461,461,461,461,461,461,462,462,462,462,462,462,463,463,463,463,463,463,463,464,464,464,464,464,464,464,465,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,468,468,468,468,468,468,468,468,468,469,469,469,469,469,469,469,469,469,470,470,470,470,470,471,471,471,471,471,471,471,471,471,472,472,472,472,472,472,472,472,472,472,472,472,472,473,473,473,473,473,473,473,473,473,474,474,474,474,474,474,474,474,474,475,475,475,475,475,475,475,475,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,478,478,479,479,479,479,479,479,479,480,480,480,480,480,480,480,480,481,481,481,481,481,481,481,481,481,481,481,481,481,481,482,482,482,482,482,482,483,483,483,483,483,483,483,483,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,485,485,485,485,485,486,486,486,486,486,486,486,486,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,488,488,488,488,488,488,488,488,488,488,489,489,489,489,489,489,489,489,489,490,490,490,490,490,490,490,490,490,490,491,491,491,491,491,491,491,491,491,492,492,492,492,492,492,492,493,493,493,493,493,493,493,493,493,493,493,493,
+		494,494,494,494,494,494,495,495,495,495,495,495,495,495,495,495,495,495,495,496,496,496,496,496,496,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,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,501,501,502,502,502,502,502,502,502,502,503,503,503,503,503,503,503,503,503,503,503,504,504,504,504,504,504,504,504,504,504,505,505,505,505,505,505,505,505,505,505,505,505,506,506,506,506,506,506,507,507,507,507,507,507,507,507,507,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,510,511,511,511,511,511,511,512,512,512,512,512,512,512,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,514,514,514,514,515,515,515,515,515,515,515,515,515,515,516,516,516,516,516,516,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,518,518,518,518,518,519,519,519,519,519,519,520,520,520,520,520,521,521,521,521,522,522,522,522,522,523,523,523,523,523,523,524,524,524,524,524,
+		524,524,524,525,525,525,525,525,526,526,526,527,527,527,527,527,528,528,528,528,528,528,528,529,529,529,529,529,529,529,530,530,530,530,531,531,531,531,532,532,532,532,532,532,532,532,532,532,532,533,533,534,534,534,535,535,535,535,536,536,536,536,536,536,536,537,537,537,537,538,538,539,539,539,539,539,540,540,540,540,540,541,541,541,541,541,541,542,542,543,543,543,543,544,544,544,545,545,545,546,546,546,546,546,547,547,547,548,548,548,548,549,549,549,550,550,550,550,550,550,551,551,551,551,551,552,552,552,553,553,553,554,554,554,554,555,555,555,555,556,556,556,556,557,557,558,558,558,558,558,559,559,559,559,559,560,560,560,561,561,561,562,562,563,563,563,564,564,564,565,565,565,565,565,566,566,566,566,566,567,567,567,567,568,568,568,568,569,569,569,570,570,570,570,571,571,571,571,572,572,572,572,572,573,573,573,573,574,574,574,575,575,575,575,576,576,576,577,577,577,577,577,577,578,578,578,578,579,579,579,579,580,580,580,580,580,581,581,581,581,581,581,581,582,582,582,583,583,583,584,584,584,584,585,585,
+		585,585,585,585,585,585,585,586,586
+	},
+	{
+		0,0,0,3,5,6,8,9,10,11,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,15,15,15,15,15,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,20,20,20,20,21,21,21,21,22,22,22,23,23,23,23,24,24,24,24,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,30,30,30,31,31,32,32,33,33,34,35,35,36,37,38,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,58,59,60,61,62,63,64,65,65,66,67,68,68,69,70,71,71,72,73,74,74,75,76,76,77,78,79,79,80,81,81,82,83,83,84,85,85,86,87,87,88,89,89,90,91,91,92,93,93,94,95,95,96,97,97,98,98,99,100,100,101,102,102,103,104,104,105,105,106,107,107,108,109,109,110,110,111,112,112,113,114,114,115,116,116,117,117,118,119,119,120,121,121,122,122,123,123,124,125,125,126,126,127,128,128,129,130,
+		130,131,131,132,132,133,134,134,135,135,136,136,137,138,138,139,139,140,140,141,142,142,143,143,144,144,145,145,146,147,147,148,148,149,149,150,150,151,151,152,152,153,153,154,154,155,155,156,156,157,157,158,158,159,159,160,160,161,161,162,162,163,163,164,164,165,165,166,166,167,167,167,168,168,169,169,170,170,171,171,172,172,173,173,173,174,174,175,175,176,176,176,177,177,178,178,179,179,179,180,180,181,181,181,182,182,183,183,184,184,185,185,185,186,186,187,187,187,188,188,189,189,189,190,190,191,191,191,192,192,192,193,193,194,194,194,195,195,195,196,196,197,197,197,198,198,199,199,199,200,200,200,201,201,202,202,202,203,203,203,204,204,205,205,205,206,206,206,207,207,207,208,208,208,209,209,209,210,210,210,211,211,211,212,212,212,213,213,214,214,214,215,215,215,216,216,216,217,217,217,218,218,218,219,219,219,220,220,220,221,221,221,222,222,222,223,223,223,224,224,224,225,225,225,226,226,226,227,227,227,228,228,228,229,229,229,229,230,230,230,231,231,231,232,232,232,233,233,233,234,234,234,235,235,235,
+		236,236,236,237,237,237,237,238,238,238,239,239,239,239,240,240,240,241,241,241,242,242,242,243,243,243,243,244,244,244,245,245,245,246,246,246,247,247,247,248,248,248,249,249,249,249,250,250,250,250,251,251,251,251,252,252,252,253,253,253,254,254,254,255,255,255,256,256,256,256,257,257,257,257,258,258,258,259,259,259,259,260,260,260,261,261,261,261,262,262,262,263,263,263,263,264,264,264,265,265,265,265,266,266,266,267,267,267,267,268,268,268,269,269,269,270,270,270,270,271,271,271,271,272,272,272,272,273,273,273,274,274,274,274,275,275,275,276,276,276,276,277,277,277,277,278,278,278,279,279,279,280,280,280,280,281,281,281,282,282,282,282,283,283,283,284,284,284,284,285,285,285,285,286,286,286,286,287,287,287,287,288,288,288,288,289,289,289,289,290,290,290,290,291,291,291,292,292,292,292,293,293,293,294,294,294,295,295,295,295,296,296,296,296,297,297,297,297,298,298,298,298,299,299,299,300,300,300,301,301,301,301,302,302,302,302,303,303,303,303,303,304,304,304,305,305,305,305,306,306,306,306,307,307,307,
+		307,308,308,308,308,309,309,309,310,310,310,310,311,311,311,312,312,312,312,313,313,313,313,314,314,314,315,315,315,315,316,316,316,316,317,317,317,317,318,318,318,319,319,319,320,320,320,320,321,321,321,321,321,322,322,322,322,323,323,323,323,324,324,324,324,325,325,325,325,325,326,326,326,327,327,327,328,328,328,329,329,329,329,329,330,330,330,330,331,331,331,332,332,332,332,333,333,333,333,334,334,334,335,335,335,335,336,336,336,336,337,337,337,337,337,338,338,338,338,339,339,339,339,340,340,340,340,341,341,341,341,342,342,342,343,343,343,343,344,344,344,344,345,345,345,346,346,346,347,347,347,347,348,348,348,348,349,349,349,349,350,350,350,350,351,351,351,352,352,352,352,353,353,353,354,354,354,354,355,355,355,355,356,356,356,356,357,357,357,357,358,358,358,358,359,359,359,359,360,360,360,360,361,361,361,361,362,362,362,363,363,363,364,364,364,364,365,365,365,365,366,366,366,366,367,367,367,367,368,368,368,369,369,369,369,370,370,370,370,371,371,371,371,372,372,372,373,373,373,373,374,374,374,374,375,
+		375,375,376,376,376,377,377,377,378,378,378,378,378,379,379,379,380,380,380,381,381,381,381,382,382,382,383,383,383,383,384,384,384,385,385,385,386,386,386,386,386,387,387,387,387,388,388,388,388,389,389,389,390,390,390,391,391,391,392,392,392,392,393,393,393,393,394,394,394,394,395,395,395,396,396,396,397,397,397,398,398,398,399,399,399,400,400,400,400,400,401,401,401,401,402,402,402,402,403,403,403,404,404,404,404,405,405,405,406,406,406,406,407,407,407,408,408,408,408,409,409,409,410,410,411,411,411,411,412,412,413,413,413,413,414,414,414,414,415,415,415,415,416,416,416,417,417,417,418,418,418,418,419,419,419,419,420,420,420,421,421,421,421,422,422,422,423,423,423,423,424,424,424,424,425,425,425,426,426,426,426,427,427,427,427,428,428,428,428,429,429,429,429,429,429,430,430,430,430,430,431,431,431,431,432,432,432,433,433,433,433,434,434,434,434,434,435,435,435,435,435,436,436,436,436,437,437,437,437,437,438,438,438,438,438,438,439,439,439,439,440,440,440,440,441,441,441,441,441,441,442,442,442,442,442,
+		442,442,443,443,443,443,443,444,444,444,444,444,445,445,445,445,445,445,446,446,446,446,446,446,447,447,447,447,447,447,447,447,448,448,448,448,448,448,448,449,449,449,449,449,449,450,450,450,450,450,450,451,451,451,451,451,451,451,451,451,451,452,452,452,452,452,452,453,453,453,453,453,453,453,454,454,454,454,454,454,454,454,455,455,455,455,455,455,456,456,456,456,456,456,456,456,456,457,457,457,457,457,457,457,457,457,458,458,458,458,458,458,458,459,459,459,459,459,459,459,459,459,459,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,464,464,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,467,467,467,467,467,467,467,467,467,467,467,467,467,467,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,469,469,469,469,469,469,470,470,470,470,470,470,470,470,470,470,470,470,470,470,471,471,471,471,471,472,472,472,472,472,472,472,473,473,473,473,
+		473,473,473,473,473,473,473,473,473,473,473,473,473,473,473,474,474,474,474,474,474,474,474,475,475,475,475,475,475,475,475,475,475,475,475,476,476,476,476,476,476,476,476,476,476,477,477,477,477,477,477,477,477,477,477,477,477,477,477,478,478,478,478,478,478,478,478,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,480,480,480,480,480,480,480,480,480,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,482,482,482,482,482,482,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,485,485,485,485,485,485,485,485,485,485,485,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,487,487,487,487,487,487,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,491,491,491,491,491,491,491,491,491,491,491,491,491,491,492,492,492,
+		493,493,493,493,493,493,493,493,493,493,493,494,494,494,494,494,494,494,494,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,496,496,496,496,496,496,496,496,496,497,497,497,497,497,497,497,498,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,500,500,500,500,500,500,500,500,500,500,501,501,501,501,501,501,501,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,503,503,503,503,503,503,503,503,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,505,505,505,505,505,505,505,505,506,506,506,506,506,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,508,508,508,508,508,508,508,509,509,509,509,509,509,510,510,510,511,511,511,511,511,511,511,511,511,511,511,511,511,512,512,513,513,513,513,513,513,513,513,513,513,514,514,514,514,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,516,516,516,516,516,516,517,517,517,517,517,517,518,
+		518,518,518,518,518,518,518,518,519
+	},
+	{
+		0,0,0,3,5,6,8,9,10,11,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,15,15,15,15,15,15,16,16,16,16,16,17,17,17,17,18,18,18,18,18,19,19,19,19,20,20,20,20,20,21,21,21,22,22,22,22,23,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,30,30,30,31,31,32,32,33,33,34,34,35,35,36,37,37,38,39,39,40,41,42,43,43,44,45,46,47,48,49,49,50,51,52,53,54,55,55,56,57,58,59,59,60,61,62,62,63,64,64,65,66,67,67,68,69,69,70,71,71,72,72,73,74,74,75,76,76,77,77,78,79,79,80,80,81,82,82,83,83,84,85,85,86,86,87,87,88,89,89,90,90,91,91,92,92,93,94,94,95,95,96,97,97,98,98,99,99,100,100,101,102,102,103,103,104,105,105,106,106,107,107,108,108,109,110,110,111,111,112,
+		112,113,113,114,115,115,116,116,117,117,118,118,119,119,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,130,131,131,132,132,133,133,134,134,135,135,136,136,137,137,138,138,139,139,140,140,141,141,142,142,143,143,144,144,145,145,146,146,146,147,147,148,148,149,149,150,150,151,151,152,152,152,153,153,154,154,155,155,155,156,156,157,157,158,158,159,159,160,160,160,161,161,162,162,162,163,163,164,164,164,165,165,166,166,166,167,167,168,168,168,169,169,169,170,170,171,171,171,172,172,173,173,173,174,174,174,175,175,176,176,176,177,177,177,178,178,178,179,179,180,180,180,181,181,182,182,182,183,183,183,184,184,184,185,185,185,186,186,186,187,187,187,188,188,188,189,189,189,190,190,190,191,191,191,192,192,192,193,193,193,194,194,195,195,195,195,196,196,196,197,197,197,198,198,198,199,199,199,200,200,200,200,201,201,201,202,202,202,202,203,203,204,204,204,204,205,205,205,206,206,206,207,207,207,207,208,208,208,209,209,209,209,210,210,210,211,211,211,212,212,212,213,213,213,213,214,214,
+		214,215,215,215,215,216,216,216,216,217,217,217,218,218,218,218,219,219,219,220,220,220,221,221,221,221,222,222,222,223,223,223,223,224,224,224,224,225,225,225,225,226,226,226,227,227,227,227,228,228,228,229,229,229,229,230,230,230,230,231,231,231,232,232,232,233,233,233,233,234,234,234,234,235,235,235,235,236,236,236,236,237,237,237,238,238,238,238,239,239,239,240,240,240,240,240,241,241,241,241,242,242,242,242,243,243,243,243,244,244,244,244,245,245,245,245,246,246,246,247,247,247,247,247,248,248,248,248,249,249,249,250,250,250,251,251,251,251,252,252,252,252,253,253,253,254,254,254,255,255,255,255,255,256,256,256,256,256,256,257,257,257,257,258,258,258,259,259,259,259,260,260,260,260,260,261,261,261,261,262,262,262,262,262,263,263,263,263,264,264,264,265,265,265,265,266,266,266,266,267,267,267,267,268,268,268,268,268,269,269,269,270,270,270,270,271,271,271,272,272,272,272,272,273,273,273,273,274,274,274,274,275,275,275,275,276,276,276,276,277,277,277,277,277,278,278,278,278,279,279,279,279,280,280,280,
+		280,280,281,281,281,281,282,282,282,282,282,283,283,283,284,284,284,284,285,285,285,285,286,286,286,286,287,287,287,287,288,288,288,288,288,289,289,289,289,290,290,290,291,291,291,291,291,292,292,292,292,292,293,293,293,293,293,294,294,294,294,295,295,295,295,296,296,296,296,297,297,297,297,298,298,298,298,298,299,299,299,300,300,300,300,301,301,301,301,302,302,302,302,302,303,303,303,303,303,304,304,304,304,305,305,305,305,306,306,306,307,307,307,307,307,308,308,308,308,309,309,309,309,310,310,310,310,310,311,311,311,311,311,312,312,312,312,313,313,313,313,314,314,314,314,315,315,315,315,316,316,316,316,316,317,317,317,317,318,318,318,319,319,319,319,320,320,320,320,321,321,321,321,321,322,322,322,322,323,323,323,323,324,324,324,324,325,325,325,325,325,326,326,326,326,326,327,327,327,327,328,328,328,328,329,329,329,329,330,330,330,330,331,331,331,331,331,332,332,332,333,333,333,333,333,334,334,334,334,334,335,335,335,336,336,336,336,336,337,337,337,338,338,338,338,339,339,339,339,340,340,340,340,340,341,
+		341,341,341,342,342,342,342,342,343,343,343,343,344,344,344,344,345,345,345,346,346,346,346,347,347,347,347,348,348,348,348,349,349,349,349,349,349,349,350,350,350,351,351,351,351,352,352,352,352,353,353,353,353,354,354,354,354,355,355,355,355,355,356,356,356,356,356,357,357,357,357,358,358,358,359,359,359,359,359,360,360,360,360,360,361,361,361,362,362,362,362,362,363,363,363,363,364,364,364,364,365,365,365,365,366,366,366,366,366,367,367,367,367,367,368,368,368,368,369,369,369,369,370,370,370,370,371,371,371,372,372,372,372,372,373,373,373,373,374,374,374,374,375,375,375,375,375,376,376,376,376,377,377,377,377,378,378,378,378,379,379,379,380,380,380,380,381,381,381,381,382,382,382,382,383,383,383,383,383,384,384,384,384,384,385,385,385,385,386,386,386,387,387,387,387,388,388,388,388,389,389,389,389,390,390,390,390,391,391,391,391,391,392,392,392,392,393,393,393,393,394,394,395,395,395,396,396,396,396,397,397,397,398,398,398,398,399,399,399,399,400,400,400,400,401,401,401,401,402,402,402,402,403,403,403,
+		403,404,404,404,404,405,405,405,405,406,406,406,406,407,407,407,407,408,408,408,408,409,409,409,410,410,410,410,411,411,411,412,412,412,412,413,413,413,414,414,414,415,415,415,415,415,416,416,416,416,416,416,417,417,417,417,418,418,418,419,419,419,419,420,420,420,420,420,421,421,421,421,421,422,422,422,422,423,423,423,423,424,424,424,424,424,425,425,425,425,425,426,426,426,427,427,427,427,427,427,428,428,428,428,429,429,429,429,429,430,430,430,430,430,431,431,431,431,431,431,432,432,432,432,432,433,433,433,433,433,434,434,434,434,434,434,435,435,435,435,435,435,436,436,436,436,436,436,437,437,437,437,437,438,438,438,438,438,438,438,438,439,439,439,439,439,439,439,440,440,440,440,440,440,440,440,440,441,441,441,441,441,441,442,442,442,442,442,443,443,443,443,443,443,443,444,444,444,444,444,444,444,444,444,444,444,444,445,445,445,445,445,445,445,445,446,446,446,446,446,446,446,446,447,447,447,447,447,447,447,447,448,448,448,448,448,448,448,448,448,449,449,449,449,449,449,449,449,449,450,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,453,453,453,453,453,453,453,453,453,453,453,454,454,454,454,454,454,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,456,456,456,456,456,456,456,456,457,457,457,457,457,457,457,457,457,457,457,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,459,459,459,459,459,459,460,460,460,460,460,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,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,465,465,465,465,465,465,466,466,466,466,466,466,466,466,466,466,466,466,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,469,469,469,469,469,469,469,469,469,470,470,470,470,470,470,470,470,470,470,470,470,470,470,470,
+		471,471,471,471,471,471,471,471,471,471,471,471,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,473,473,473,473,473,473,473,473,473,473,473,473,473,473,473,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,475,475,475,475,475,475,475,475,475,475,475,475,475,475,476,476,476,476,476,476,476,476,476,476,476,476,476,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,480,480,480,480,480,480,480,480,480,480,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,482,482,482,482,482,482,483,483,483,483,483,483,483,483,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,485,485,485,485,485,485,485,485,485,485,485,485,486,486,486,486,486,486,486,486,486,
+		486,486,486,486,486,486,486,486,486
+	},
+	{
+		0,0,0,0,1,3,4,6,7,8,10,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,15,15,15,15,15,16,16,16,16,16,16,17,17,17,17,17,18,18,18,18,18,19,19,19,19,19,20,20,20,20,20,21,21,21,21,22,22,22,22,22,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,27,28,28,28,29,29,29,30,30,30,31,31,31,32,32,33,33,34,34,35,35,36,37,37,38,38,39,40,40,41,42,43,43,44,45,46,46,47,48,49,49,50,51,52,52,53,54,55,55,56,57,57,58,59,59,60,61,61,62,63,63,64,64,65,66,66,67,67,68,69,69,70,70,71,71,72,72,73,74,74,75,75,76,76,77,77,78,78,79,79,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,
+		97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,108,108,109,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,129,130,130,130,131,131,132,132,133,133,134,134,135,135,135,136,136,137,137,138,138,139,139,139,140,140,141,141,142,142,142,143,143,144,144,145,145,145,146,146,147,147,147,148,148,149,149,149,150,150,151,151,151,152,152,153,153,153,154,154,155,155,155,156,156,156,157,157,158,158,158,159,159,159,160,160,160,161,161,161,162,162,163,163,163,164,164,164,165,165,165,166,166,166,167,167,167,168,168,168,169,169,169,170,170,170,171,171,171,172,172,172,173,173,173,174,174,174,175,175,175,176,176,176,177,177,177,177,178,178,178,179,179,179,180,180,180,181,181,181,182,182,182,183,183,183,183,184,184,184,185,185,185,186,186,186,186,187,187,187,187,188,188,188,189,189,189,190,190,190,190,191,191,191,192,192,192,192,193,193,193,194,194,194,194,195,195,195,195,196,
+		196,196,197,197,197,197,198,198,198,199,199,199,199,200,200,200,200,201,201,201,201,202,202,202,203,203,203,203,204,204,204,205,205,205,205,205,206,206,206,206,207,207,207,207,208,208,208,208,209,209,209,210,210,210,211,211,211,211,212,212,212,212,212,213,213,213,213,214,214,214,214,214,215,215,215,215,216,216,216,216,217,217,217,218,218,218,218,219,219,219,220,220,220,220,221,221,221,221,221,222,222,222,222,223,223,223,223,224,224,224,224,224,225,225,225,225,226,226,226,226,227,227,227,227,228,228,228,228,229,229,229,229,230,230,230,230,230,231,231,231,231,232,232,232,233,233,233,233,233,234,234,234,234,234,235,235,235,235,236,236,236,236,237,237,237,237,238,238,238,238,239,239,239,239,240,240,240,240,240,240,241,241,241,241,242,242,242,242,243,243,243,243,244,244,244,244,244,244,245,245,245,245,245,246,246,246,246,247,247,247,247,248,248,248,248,248,249,249,249,249,250,250,250,250,251,251,251,251,252,252,252,252,253,253,253,253,254,254,254,254,254,255,255,255,255,255,256,256,256,256,256,257,257,257,257,
+		258,258,258,258,259,259,259,259,259,260,260,260,260,260,260,261,261,261,261,261,262,262,262,263,263,263,263,264,264,264,264,264,265,265,265,265,265,266,266,266,266,267,267,267,267,268,268,268,268,269,269,269,269,269,270,270,270,270,270,271,271,271,271,271,272,272,272,272,273,273,273,273,273,274,274,274,274,274,275,275,275,275,275,276,276,276,276,276,277,277,277,277,278,278,278,278,279,279,279,279,279,280,280,280,280,280,281,281,281,281,281,282,282,282,282,282,283,283,283,283,284,284,284,284,284,285,285,285,285,285,286,286,286,286,287,287,287,287,287,288,288,288,288,288,289,289,289,289,290,290,290,290,290,290,291,291,291,291,292,292,292,293,293,293,293,294,294,294,294,294,294,295,295,295,295,295,296,296,296,297,297,297,297,297,298,298,298,298,298,299,299,299,299,299,300,300,300,300,301,301,301,301,301,301,301,302,302,302,302,303,303,303,303,303,304,304,304,304,305,305,305,305,305,306,306,306,306,307,307,307,307,308,308,308,308,309,309,309,309,309,310,310,310,310,310,311,311,311,312,312,312,312,312,312,312,
+		313,313,313,313,313,313,314,314,314,315,315,315,315,316,316,316,316,317,317,317,317,317,318,318,318,318,318,319,319,319,319,319,319,320,320,320,320,321,321,321,321,322,322,322,322,323,323,323,323,324,324,324,324,324,324,325,325,325,325,325,326,326,326,326,326,327,327,327,327,327,328,328,328,328,328,329,329,329,329,330,330,330,330,330,331,331,331,331,331,332,332,332,332,332,333,333,333,333,334,334,334,334,334,334,335,335,335,335,336,336,336,336,337,337,337,337,337,338,338,338,338,338,339,339,339,339,339,340,340,340,340,340,340,341,341,341,341,342,342,342,342,343,343,343,343,343,344,344,344,344,345,345,345,345,345,346,346,346,346,346,346,347,347,347,348,348,348,348,348,349,349,349,349,349,349,350,350,350,350,350,351,351,351,351,351,352,352,352,352,352,352,353,353,353,353,354,354,354,354,354,355,355,355,355,356,356,356,356,357,357,357,357,357,357,358,358,358,358,359,359,359,360,360,360,360,361,361,361,361,362,362,362,362,362,362,363,363,363,363,363,363,364,364,364,364,364,365,365,365,365,366,366,366,366,367,
+		367,367,367,368,368,368,368,368,369,369,369,369,369,370,370,370,370,370,371,371,371,371,372,372,372,373,373,373,373,374,374,374,374,374,375,375,375,375,375,376,376,376,376,376,377,377,377,377,377,378,378,378,378,379,379,379,379,380,380,380,380,381,381,381,381,382,382,382,382,382,383,383,383,383,384,384,384,384,384,385,385,385,385,385,386,386,386,386,387,387,387,387,388,388,388,388,389,389,389,389,389,390,390,390,391,391,391,391,392,392,392,392,392,393,393,393,393,394,394,394,394,395,395,395,395,396,396,396,396,397,397,397,397,397,398,398,398,398,399,399,399,400,400,400,400,400,401,401,401,401,401,402,402,402,402,403,403,403,403,403,404,404,404,404,405,405,405,405,406,406,406,406,406,407,407,407,407,408,408,408,408,409,409,409,410,410,410,410,410,411,411,411,411,411,412,412,412,412,412,412,413,413,413,413,413,414,414,414,414,415,415,415,415,415,416,416,416,416,417,417,417,417,418,418,418,418,418,418,419,419,419,419,419,420,420,420,420,420,421,421,421,421,421,422,422,422,422,423,423,423,423,423,423,423,423,
+		423,424,424,424,424,424,425,425,425,425,425,425,426,426,426,426,426,427,427,427,427,427,427,428,428,428,428,428,428,429,429,429,429,429,429,429,430,430,430,430,430,430,431,431,431,431,431,431,432,432,432,432,432,432,433,433,433,433,433,433,434,434,434,434,434,434,434,435,435,435,435,435,435,435,435,435,435,436,436,436,436,436,436,436,436,436,437,437,437,437,437,437,437,437,437,438,438,438,438,438,438,439,439,439,439,439,439,439,439,439,439,440,440,440,440,440,440,440,440,441,441,441,441,441,441,441,442,442,442,442,442,442,442,442,442,442,442,442,442,442,443,443,443,443,443,443,444,444,444,444,444,444,444,444,444,444,444,445,445,445,445,445,445,445,445,445,445,445,445,445,446,446,446,446,446,446,446,446,446,446,446,446,446,447,447,447,447,447,447,447,447,447,447,447,447,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,449,449,449,449,449,449,449,449,450,450,450,450,450,450,450,450,450,450,451,451,451,451,451,451,451,451,451,451,451,451,451,451,451,451,451,452,452,452,452,452,452,452,452,
+		452,452,452,452,452,453,453,453,453,453,453,453,453,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,455,455,455,455,455,455,455,455,455,455,455,455,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,462,462,462,462,462,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,464,464,464,464,464,464,464,464,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,466,466,466,466,466,466,466,466,
+		466,466,466,466,466,466,466,466,466
+	},
+	{
+		0,0,0,0,0,0,0,0,1,2,3,3,3,4,5,6,7,7,7,7,7,8,8,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,11,11,11,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,15,15,15,15,15,15,16,16,16,16,16,16,17,17,17,17,17,17,18,18,18,18,18,18,19,19,19,19,19,20,20,20,20,20,21,21,21,21,21,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,29,29,29,30,30,31,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,40,40,41,42,42,43,44,44,45,46,46,47,48,49,49,50,51,51,52,53,53,54,55,55,56,56,57,58,58,59,60,60,61,61,62,62,63,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,82,83,83,84,84,85,85,86,86,87,87,
+		88,88,89,89,89,90,90,91,91,92,92,93,93,94,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,101,102,102,103,103,104,104,105,105,106,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,113,114,114,115,115,116,116,117,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,124,125,125,126,126,126,127,127,128,128,129,129,129,130,130,131,131,131,132,132,133,133,133,134,134,135,135,135,136,136,137,137,138,138,138,139,139,140,140,140,141,141,142,142,142,143,143,143,144,144,145,145,145,146,146,147,147,147,148,148,148,149,149,149,150,150,150,151,151,151,152,152,153,153,153,154,154,154,155,155,155,156,156,156,157,157,157,158,158,158,159,159,159,160,160,160,161,161,161,162,162,162,163,163,163,163,164,164,164,165,165,165,166,166,166,167,167,167,168,168,168,169,169,169,169,170,170,170,171,171,171,171,172,172,172,173,173,173,174,174,174,174,175,175,175,176,176,176,176,177,177,177,177,178,178,178,179,179,179,179,180,180,180,180,181,181,181,182,182,182,182,183,183,183,184,
+		184,184,184,185,185,185,185,186,186,186,187,187,187,187,188,188,188,188,189,189,189,189,190,190,190,190,191,191,191,191,191,192,192,192,193,193,193,193,194,194,194,194,195,195,195,196,196,196,196,196,197,197,197,197,197,198,198,198,199,199,199,199,200,200,200,200,201,201,201,201,202,202,202,202,202,203,203,203,203,203,204,204,204,204,205,205,205,205,206,206,206,206,207,207,207,207,208,208,208,208,208,208,209,209,209,209,210,210,210,210,211,211,211,211,212,212,212,212,212,213,213,213,213,213,214,214,214,214,215,215,215,216,216,216,216,217,217,217,217,217,217,218,218,218,218,218,219,219,219,219,219,220,220,220,220,221,221,221,221,222,222,222,222,222,222,223,223,223,223,224,224,224,224,225,225,225,225,225,226,226,226,226,226,227,227,227,227,227,228,228,228,228,228,229,229,229,229,229,230,230,230,230,231,231,231,231,231,232,232,232,232,233,233,233,233,233,234,234,234,234,235,235,235,235,235,236,236,236,236,236,237,237,237,237,238,238,238,238,238,239,239,239,239,239,240,240,240,240,240,241,241,241,241,241,242,
+		242,242,242,242,243,243,243,243,243,244,244,244,244,244,245,245,245,245,245,246,246,246,246,247,247,247,247,247,248,248,248,248,248,249,249,249,249,249,249,250,250,250,250,251,251,251,251,252,252,252,252,252,252,253,253,253,253,253,253,254,254,254,254,254,255,255,255,255,255,256,256,256,256,256,257,257,257,257,257,258,258,258,258,259,259,259,259,260,260,260,260,260,260,261,261,261,261,261,261,262,262,262,262,262,263,263,263,263,263,264,264,264,264,264,265,265,265,265,265,266,266,266,266,266,267,267,267,267,267,268,268,268,268,268,269,269,269,269,269,270,270,270,270,271,271,271,271,271,272,272,272,272,272,272,272,273,273,273,273,274,274,274,274,274,274,275,275,275,275,275,276,276,276,276,277,277,277,277,277,278,278,278,278,279,279,279,279,279,279,280,280,280,280,280,280,281,281,281,281,281,282,282,282,282,283,283,283,283,283,283,284,284,284,284,284,284,285,285,285,285,285,286,286,286,286,287,287,287,287,287,288,288,288,288,288,289,289,289,289,289,290,290,290,290,290,291,291,291,291,292,292,292,292,293,293,
+		293,293,293,293,294,294,294,294,294,294,295,295,295,296,296,296,296,296,296,297,297,297,297,297,297,298,298,298,298,298,299,299,299,299,300,300,300,300,300,301,301,301,301,301,301,301,302,302,302,302,302,303,303,303,303,304,304,304,304,304,305,305,305,305,305,306,306,306,306,306,306,307,307,307,307,307,307,308,308,308,308,309,309,309,309,309,309,310,310,310,310,310,311,311,311,311,312,312,312,312,312,313,313,313,313,313,313,314,314,314,314,314,314,315,315,315,315,315,315,315,316,316,316,316,316,317,317,317,317,317,318,318,318,318,318,319,319,319,319,319,320,320,320,320,320,321,321,321,321,321,321,322,322,322,322,322,323,323,323,323,323,324,324,324,325,325,325,325,325,325,326,326,326,326,326,326,327,327,327,327,327,328,328,328,328,328,329,329,329,329,329,329,330,330,330,330,330,331,331,331,331,331,332,332,332,332,332,333,333,333,333,333,334,334,334,334,334,335,335,335,335,335,336,336,336,336,336,337,337,337,337,337,338,338,338,338,338,339,339,339,339,339,339,339,340,340,340,340,340,340,341,341,341,342,342,
+		342,342,342,343,343,343,343,343,343,344,344,344,344,344,345,345,345,345,345,346,346,346,346,346,347,347,347,347,348,348,348,348,348,348,349,349,349,349,349,350,350,350,350,350,351,351,351,351,351,351,352,352,352,352,352,352,353,353,353,353,354,354,354,354,354,354,355,355,355,355,355,356,356,356,356,357,357,357,357,357,357,358,358,358,358,358,359,359,359,359,359,359,360,360,360,360,360,360,361,361,361,361,362,362,362,362,363,363,363,363,363,363,364,364,364,364,364,364,365,365,365,365,366,366,366,366,367,367,367,367,368,368,368,368,368,368,369,369,369,369,369,370,370,370,370,370,371,371,371,371,371,372,372,372,372,372,373,373,373,373,373,374,374,374,374,374,374,375,375,375,375,375,376,376,376,376,377,377,377,377,377,378,378,378,378,378,378,379,379,379,379,380,380,380,380,380,380,381,381,381,381,381,381,382,382,382,382,383,383,383,383,384,384,384,384,384,384,385,385,385,385,385,386,386,386,386,386,387,387,387,387,388,388,388,388,389,389,389,389,390,390,390,390,391,391,391,391,392,392,392,392,392,393,393,393,
+		393,393,393,393,394,394,394,394,394,395,395,395,396,396,396,396,396,397,397,397,397,397,398,398,398,398,399,399,399,399,399,400,400,400,400,400,401,401,401,401,401,402,402,402,402,402,403,403,403,404,404,404,404,405,405,405,405,406,406,406,406,406,407,407,407,407,407,408,408,408,408,408,408,409,409,409,409,409,409,410,410,410,410,411,411,411,411,412,412,412,412,412,413,413,413,413,413,414,414,414,414,414,415,415,415,415,416,416,416,416,416,417,417,417,417,417,417,418,418,418,418,418,419,419,419,419,419,419,420,420,420,420,420,420,421,421,421,421,421,421,421,422,422,422,422,423,423,423,423,423,424,424,424,424,424,425,425,425,425,425,425,425,426,426,426,426,426,426,426,426,426,427,427,427,427,427,428,428,428,428,428,428,428,428,428,428,429,429,429,429,429,429,429,429,430,430,430,430,430,431,431,431,431,431,431,432,432,432,432,432,432,432,432,432,432,432,433,433,433,433,433,433,434,434,434,434,434,434,434,434,434,434,434,434,435,435,435,435,435,435,435,436,436,436,436,436,436,436,436,436,437,437,437,437,437,
+		437,437,437,437,438,438,438,438,438,438,438,438,438,438,438,438,438,439,439,439,439,439,439,439,439,439,439,439,439,439,439,440,440,440,440,440,440,440,440,440,440,440,440,441,441,441,441,441,441,441,441,441,441,441,441,441,442,442,442,442,442,442,442,442,442,443,443,443,443,443,443,443,443,443,443,443,443,444,444,444,444,444,444,444,444,444,445,445,445,445,445,445,445,445,445,445,445,445,445,445,445,445,445,445,445,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,448,448,448,448,448,448,448,448,448,448,449,449,449,449,449,449,449,449,449,449,449,449,449,449,449,449,449,449,449,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,451,451,451,451,451,451,451,451,451,452,452,452,452,452,452,452,452,452,452,452,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,
+		454,454,454,454,454,454,454,454,454
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,4,5,5,6,7,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,10,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,18,18,18,18,18,18,18,19,19,19,19,19,19,20,20,20,20,20,20,21,21,21,21,21,21,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,29,29,29,30,30,30,31,31,31,32,32,33,33,34,34,34,35,35,36,36,37,37,38,38,39,39,40,41,41,42,42,43,44,44,45,45,46,47,47,48,48,49,49,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63,64,64,65,65,65,66,66,67,67,68,68,68,69,69,70,70,71,71,
+		71,72,72,73,73,73,74,74,75,75,75,76,76,77,77,78,78,78,79,79,80,80,80,81,81,81,82,82,83,83,83,84,84,85,85,85,86,86,87,87,87,88,88,88,89,89,90,90,90,91,91,92,92,92,93,93,94,94,94,95,95,96,96,96,97,97,98,98,98,99,99,100,100,100,101,101,101,102,102,103,103,103,104,104,104,105,105,106,106,106,107,107,108,108,108,109,109,110,110,110,111,111,112,112,112,113,113,113,114,114,115,115,115,116,116,116,117,117,118,118,118,119,119,120,120,120,121,121,121,122,122,123,123,123,124,124,124,125,125,125,126,126,126,127,127,128,128,128,129,129,129,130,130,130,131,131,131,132,132,132,133,133,134,134,134,135,135,135,136,136,136,137,137,137,138,138,138,139,139,139,140,140,140,141,141,141,141,142,142,142,143,143,143,144,144,144,145,145,145,146,146,146,146,147,147,147,148,148,148,149,149,149,149,150,150,150,151,151,151,152,152,152,153,153,153,153,154,154,154,154,155,155,155,155,156,156,156,157,157,157,157,158,158,158,158,159,159,159,160,160,160,160,161,161,161,
+		162,162,162,162,163,163,163,163,164,164,164,164,164,165,165,165,166,166,166,166,167,167,167,167,168,168,168,168,169,169,169,169,169,170,170,170,170,171,171,171,171,172,172,172,172,173,173,173,173,174,174,174,174,174,175,175,175,175,175,176,176,176,176,177,177,177,178,178,178,178,178,179,179,179,179,179,180,180,180,180,181,181,181,181,181,182,182,182,182,183,183,183,183,183,184,184,184,184,184,185,185,185,185,185,186,186,186,186,187,187,187,187,187,188,188,188,188,189,189,189,189,190,190,190,190,190,191,191,191,191,191,191,192,192,192,192,193,193,193,193,194,194,194,194,194,194,195,195,195,195,195,195,196,196,196,196,197,197,197,197,197,198,198,198,198,198,199,199,199,199,199,200,200,200,200,200,201,201,201,201,201,201,202,202,202,202,202,202,203,203,203,203,203,203,204,204,204,204,204,205,205,205,205,205,206,206,206,206,206,207,207,207,207,207,207,208,208,208,208,208,209,209,209,209,209,209,210,210,210,210,210,211,211,211,211,211,212,212,212,212,212,212,213,213,213,213,213,214,214,214,214,214,214,215,215,
+		215,215,215,216,216,216,216,216,217,217,217,217,217,217,218,218,218,218,218,218,219,219,219,219,219,220,220,220,220,220,220,221,221,221,221,221,221,222,222,222,222,222,223,223,223,223,223,224,224,224,224,224,224,225,225,225,225,225,225,226,226,226,226,226,227,227,227,227,227,227,228,228,228,228,228,229,229,229,229,229,229,230,230,230,230,230,230,230,231,231,231,231,231,231,232,232,232,232,233,233,233,233,233,234,234,234,234,234,234,235,235,235,235,235,235,236,236,236,236,236,236,236,237,237,237,237,237,237,238,238,238,238,238,238,239,239,239,239,239,240,240,240,240,240,241,241,241,241,241,241,241,242,242,242,242,242,242,243,243,243,243,243,243,244,244,244,244,244,244,245,245,245,245,245,245,246,246,246,246,246,247,247,247,247,247,248,248,248,248,248,248,248,249,249,249,249,249,250,250,250,250,250,251,251,251,251,251,251,251,251,252,252,252,252,252,252,252,253,253,253,253,253,254,254,254,254,254,255,255,255,255,255,256,256,256,256,256,256,256,257,257,257,257,257,258,258,258,258,258,258,259,259,259,259,259,
+		260,260,260,260,260,261,261,261,261,261,261,261,261,262,262,262,262,262,263,263,263,263,263,264,264,264,264,264,264,264,265,265,265,265,265,265,266,266,266,266,266,266,267,267,267,267,267,267,268,268,268,268,268,269,269,269,269,269,269,269,270,270,270,270,270,270,271,271,271,271,271,272,272,272,272,272,272,272,272,273,273,273,273,273,274,274,274,274,274,274,275,275,275,275,275,275,275,276,276,276,276,276,277,277,277,277,277,277,278,278,278,278,278,278,278,278,279,279,279,279,279,280,280,280,280,280,280,280,281,281,281,281,281,281,282,282,282,282,282,283,283,283,283,283,283,284,284,284,284,284,284,285,285,285,285,285,285,285,285,286,286,286,286,286,287,287,287,287,287,288,288,288,288,288,288,289,289,289,289,289,289,289,289,290,290,290,290,290,290,291,291,291,291,291,291,291,292,292,292,292,292,293,293,293,293,293,294,294,294,294,294,294,295,295,295,295,295,296,296,296,296,296,296,297,297,297,297,297,297,297,297,298,298,298,298,298,299,299,299,299,299,300,300,300,300,300,300,301,301,301,301,301,301,301,302,
+		302,302,302,302,303,303,303,303,303,304,304,304,304,304,304,304,304,305,305,305,305,305,305,306,306,306,306,306,306,307,307,307,307,307,307,308,308,308,308,308,308,309,309,309,309,309,309,310,310,310,310,310,310,311,311,311,311,311,311,311,312,312,312,312,312,312,312,313,313,313,313,313,314,314,314,314,314,315,315,315,315,315,315,316,316,316,316,316,316,317,317,317,317,317,317,318,318,318,318,318,318,318,319,319,319,319,319,319,319,320,320,320,320,320,320,321,321,321,321,322,322,322,322,322,322,323,323,323,323,323,323,324,324,324,324,324,324,324,325,325,325,325,325,325,325,326,326,326,326,326,326,326,327,327,327,327,327,327,328,328,328,328,328,328,329,329,329,329,329,329,330,330,330,330,330,330,330,330,331,331,331,331,331,331,332,332,332,332,332,333,333,333,333,334,334,334,334,334,334,334,334,335,335,335,335,335,336,336,336,336,336,336,336,337,337,337,337,337,337,338,338,338,338,338,338,338,339,339,339,339,340,340,340,340,340,340,340,341,341,341,341,341,341,342,342,342,342,342,342,343,343,343,343,343,343,
+		344,344,344,344,344,344,344,344,345,345,345,345,345,345,346,346,346,346,346,346,346,347,347,347,347,347,347,348,348,348,348,348,348,348,349,349,349,349,349,350,350,350,350,350,351,351,351,351,351,351,351,352,352,352,352,353,353,353,353,353,354,354,354,354,354,354,354,354,354,355,355,355,355,355,355,355,356,356,356,356,356,356,356,356,356,356,357,357,357,357,357,358,358,358,358,359,359,359,359,359,359,359,360,360,360,360,360,361,361,361,361,361,361,362,362,362,362,362,362,362,363,363,363,363,363,364,364,364,364,364,364,365,365,365,365,365,365,365,365,366,366,366,366,366,366,367,367,367,367,367,368,368,368,368,368,368,368,369,369,369,369,369,370,370,370,370,370,370,370,371,371,371,371,371,371,372,372,372,372,372,372,373,373,373,373,373,373,373,373,373,373,374,374,374,374,375,375,375,375,375,376,376,376,376,376,376,377,377,377,377,378,378,378,378,378,378,378,378,379,379,379,379,379,380,380,380,380,380,380,380,381,381,381,381,381,381,382,382,382,383,383,383,383,383,384,384,384,384,384,385,385,385,385,385,385,
+		385,386,386,386,386,387,387,387,387,387,388,388,388,388,389,389,389,389,389,389,389,390,390,390,390,390,391,391,391,391,391,391,392,392,392,392,392,393,393,393,393,394,394,394,394,394,395,395,395,395,395,395,395,396,396,396,396,396,397,397,397,397,397,397,398,398,398,398,398,399,399,399,400,400,400,400,400,400,400,401,401,401,401,401,401,402,402,402,402,402,402,403,403,403,403,403,404,404,404,404,405,405,405,405,405,406,406,406,406,406,406,407,407,407,407,407,408,408,408,408,408,408,408,409,409,409,409,409,409,409,410,410,410,410,410,411,411,411,411,412,412,412,413,413,413,413,413,413,413,413,413,413,414,414,414,414,415,415,415,415,415,415,416,416,416,416,416,416,416,417,417,417,417,417,417,417,418,418,418,418,418,418,418,419,419,419,419,419,419,420,420,420,420,420,420,420,420,421,421,421,421,421,422,422,422,422,422,422,423,423,423,423,423,423,423,423,424,424,424,424,424,424,424,424,424,424,425,425,425,425,425,425,425,425,426,426,426,426,426,426,426,426,427,427,427,427,427,427,427,427,428,428,428,428,428,
+		428,428,429,429,429,429,429,429,429
+	},
+	{
+		0,0,0,0,0,0,1,2,4,5,6,8,9,10,11,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,19,19,19,19,19,19,20,20,20,20,20,20,20,21,21,21,21,21,21,21,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,25,25,25,25,25,26,26,26,27,27,27,28,28,28,29,29,29,30,30,30,31,31,31,32,32,32,33,33,34,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,56,57,57,58,58,59,59,60,60,60,61,61,62,62,63,63,63,
+		64,64,64,65,65,66,66,66,67,67,68,68,68,69,69,70,70,70,71,71,71,72,72,73,73,73,74,74,74,75,75,76,76,76,77,77,77,78,78,79,79,79,80,80,80,81,81,81,82,82,83,83,83,84,84,84,85,85,85,86,86,87,87,87,88,88,88,89,89,89,90,90,91,91,91,92,92,92,93,93,93,94,94,95,95,95,96,96,96,97,97,97,98,98,98,99,99,100,100,100,101,101,101,102,102,102,103,103,103,104,104,105,105,105,106,106,106,107,107,107,108,108,108,109,109,110,110,110,111,111,111,112,112,112,113,113,113,114,114,114,115,115,115,116,116,116,117,117,117,118,118,119,119,119,120,120,120,121,121,121,122,122,122,123,123,123,124,124,124,125,125,125,126,126,126,127,127,127,128,128,128,129,129,129,130,130,130,131,131,131,132,132,132,132,133,133,133,134,134,134,135,135,135,136,136,136,136,137,137,137,138,138,138,139,139,139,140,140,140,140,141,141,141,142,142,142,142,143,143,143,144,144,144,144,145,145,145,146,146,146,146,147,147,147,148,148,148,148,149,149,149,149,150,150,150,
+		150,151,151,151,151,152,152,152,153,153,153,153,154,154,154,154,155,155,155,155,156,156,156,156,157,157,157,157,158,158,158,158,159,159,159,159,160,160,160,160,161,161,161,161,161,162,162,162,162,163,163,163,163,164,164,164,164,164,165,165,165,165,166,166,166,166,166,167,167,167,167,168,168,168,168,168,169,169,169,169,169,170,170,170,170,171,171,171,171,171,172,172,172,172,173,173,173,173,173,174,174,174,174,175,175,175,175,176,176,176,176,176,176,177,177,177,177,177,177,178,178,178,178,179,179,179,179,179,180,180,180,180,180,180,181,181,181,181,182,182,182,182,182,183,183,183,183,183,184,184,184,184,185,185,185,185,185,185,186,186,186,186,186,187,187,187,187,188,188,188,188,188,188,189,189,189,189,189,189,190,190,190,190,190,191,191,191,191,191,191,192,192,192,192,192,192,193,193,193,193,193,194,194,194,194,194,195,195,195,195,195,196,196,196,196,196,197,197,197,197,197,197,197,198,198,198,198,198,198,199,199,199,199,199,200,200,200,200,200,200,201,201,201,201,201,201,202,202,202,202,202,202,202,203,203,
+		203,203,203,203,204,204,204,204,204,205,205,205,205,205,205,206,206,206,206,206,206,207,207,207,207,207,207,208,208,208,208,208,208,209,209,209,209,209,210,210,210,210,210,210,211,211,211,211,211,211,211,212,212,212,212,212,213,213,213,213,213,213,214,214,214,214,214,214,215,215,215,215,215,215,216,216,216,216,216,216,216,216,217,217,217,217,217,217,218,218,218,218,218,219,219,219,219,219,220,220,220,220,220,220,221,221,221,221,221,221,222,222,222,222,222,222,223,223,223,223,223,223,223,224,224,224,224,224,224,225,225,225,225,225,225,226,226,226,226,226,226,226,227,227,227,227,227,228,228,228,228,228,228,229,229,229,229,229,229,230,230,230,230,230,230,230,231,231,231,231,231,232,232,232,232,232,232,233,233,233,233,233,233,233,234,234,234,234,234,234,235,235,235,235,235,235,236,236,236,236,236,236,237,237,237,237,237,237,237,238,238,238,238,238,239,239,239,239,239,239,240,240,240,240,240,240,240,241,241,241,241,241,241,242,242,242,242,242,242,242,243,243,243,243,243,243,244,244,244,244,244,244,245,245,245,
+		245,245,245,245,246,246,246,246,246,246,247,247,247,247,247,247,248,248,248,248,248,249,249,249,249,249,249,249,249,250,250,250,250,250,250,250,251,251,251,251,251,251,251,252,252,252,252,252,253,253,253,253,253,254,254,254,254,254,255,255,255,255,255,255,255,256,256,256,256,256,256,256,257,257,257,257,257,257,257,257,257,258,258,258,258,258,259,259,259,259,259,260,260,260,260,260,260,261,261,261,261,261,261,262,262,262,262,262,262,262,262,263,263,263,263,263,263,264,264,264,264,264,264,264,265,265,265,265,265,265,265,265,266,266,266,266,266,266,267,267,267,267,267,268,268,268,268,268,268,269,269,269,269,269,269,269,270,270,270,270,270,270,270,271,271,271,271,271,271,272,272,272,272,272,272,272,273,273,273,273,273,273,273,273,274,274,274,274,274,274,274,275,275,275,275,275,276,276,276,276,276,276,276,277,277,277,277,277,277,277,278,278,278,278,278,278,279,279,279,279,279,279,279,280,280,280,280,280,280,281,281,281,281,281,281,282,282,282,282,282,283,283,283,283,283,283,283,283,284,284,284,284,284,284,285,
+		285,285,285,285,285,286,286,286,286,286,286,287,287,287,287,287,287,288,288,288,288,288,288,288,289,289,289,289,289,290,290,290,290,290,290,291,291,291,291,291,291,291,291,291,291,292,292,292,292,292,292,292,293,293,293,293,293,293,294,294,294,294,294,295,295,295,295,295,295,296,296,296,296,296,296,297,297,297,297,297,297,297,297,298,298,298,298,298,298,298,299,299,299,299,299,300,300,300,300,300,300,300,301,301,301,301,301,301,301,302,302,302,302,302,302,303,303,303,303,303,303,303,303,303,304,304,304,304,304,304,305,305,305,305,305,305,306,306,306,306,306,307,307,307,307,307,307,308,308,308,308,308,308,309,309,309,309,309,309,309,310,310,310,310,310,310,310,310,311,311,311,311,311,311,311,312,312,312,312,312,312,312,313,313,313,313,314,314,314,314,314,314,315,315,315,315,315,315,315,315,315,315,316,316,316,316,316,316,316,316,317,317,317,317,317,317,317,317,318,318,318,318,318,318,318,319,319,319,319,320,320,320,320,320,321,321,321,321,322,322,322,322,322,322,322,322,323,323,323,323,323,323,323,323,323,
+		324,324,324,324,325,325,325,325,325,325,326,326,326,326,326,326,326,326,326,327,327,327,327,327,327,327,328,328,328,328,328,329,329,329,329,329,329,330,330,330,330,330,330,330,330,331,331,331,331,331,331,332,332,332,332,332,332,333,333,333,333,333,333,333,334,334,334,334,334,334,334,334,335,335,335,335,335,335,335,336,336,336,336,336,336,337,337,337,337,337,337,337,337,337,338,338,338,338,338,338,339,339,339,339,339,339,340,340,340,340,340,340,340,341,341,341,341,341,341,342,342,342,342,342,342,342,342,343,343,343,343,343,343,343,343,344,344,344,344,344,344,344,345,345,345,345,345,346,346,346,346,346,346,346,346,347,347,347,347,347,347,347,348,348,348,348,348,348,348,348,348,349,349,349,349,349,350,350,350,350,350,351,351,351,351,351,352,352,352,352,352,352,352,352,352,352,352,352,353,353,353,353,353,354,354,354,354,354,355,355,355,355,355,355,355,355,355,355,355,356,356,356,356,356,356,357,357,357,357,357,357,357,358,358,358,358,358,358,359,359,359,359,359,360,360,360,360,360,360,360,360,361,361,361,361,
+		361,361,362,362,362,362,363,363,363,363,363,364,364,364,364,364,364,364,365,365,365,365,365,365,365,366,366,366,366,366,366,366,366,367,367,367,367,367,367,367,368,368,368,368,368,368,368,368,369,369,369,369,370,370,370,370,370,370,370,371,371,371,371,371,371,371,372,372,372,372,372,372,373,373,373,373,373,373,374,374,374,374,374,374,375,375,375,375,375,375,375,375,375,376,376,376,376,376,377,377,377,377,378,378,378,378,378,378,378,379,379,379,379,379,380,380,380,380,380,380,380,380,381,381,381,381,381,382,382,382,382,382,383,383,383,383,383,383,383,383,384,384,384,384,384,385,385,385,385,386,386,386,386,386,386,387,387,387,387,388,388,388,388,388,388,389,389,389,389,390,390,390,390,390,390,391,391,391,391,391,392,392,392,392,392,392,392,393,393,393,393,393,393,394,394,394,394,395,395,395,395,396,396,396,396,396,397,397,397,397,398,398,398,398,398,398,399,399,399,399,399,400,400,400,400,400,401,401,401,401,401,401,401,402,402,402,402,402,402,403,403,403,403,404,404,404,404,404,405,405,405,405,405,406,406,
+		406,406,406,407,407,407,407,407,407
+	},
+	{
+		0,0,0,0,0,0,0,1,2,4,5,6,8,9,10,11,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,20,20,20,20,20,20,20,21,21,21,21,21,21,21,22,22,22,22,22,22,22,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,29,29,29,30,30,30,31,31,31,32,32,32,33,33,33,34,34,34,35,35,36,36,37,37,37,38,38,39,39,40,40,41,41,42,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,50,51,51,52,
+		52,53,53,53,54,54,55,55,55,56,56,57,57,57,58,58,58,59,59,60,60,60,61,61,61,62,62,62,63,63,64,64,64,65,65,65,66,66,66,67,67,67,68,68,68,69,69,69,70,70,70,71,71,71,72,72,72,73,73,73,73,74,74,74,75,75,75,76,76,76,77,77,77,78,78,78,79,79,79,80,80,80,81,81,81,81,82,82,82,83,83,83,84,84,84,85,85,85,86,86,86,86,87,87,87,88,88,88,89,89,89,90,90,90,91,91,91,91,92,92,92,93,93,93,94,94,94,95,95,95,95,96,96,96,97,97,97,98,98,98,99,99,99,100,100,100,100,101,101,101,102,102,102,103,103,103,103,104,104,104,105,105,105,106,106,106,106,107,107,107,108,108,108,109,109,109,110,110,110,110,111,111,111,112,112,112,113,113,113,114,114,114,114,115,115,115,116,116,116,117,117,117,117,118,118,118,119,119,119,119,120,120,120,121,121,121,122,122,122,122,123,123,123,124,124,124,124,125,125,125,126,126,126,126,127,127,127,128,128,128,129,129,129,129,130,130,130,130,131,131,131,131,132,132,132,
+		133,133,133,133,134,134,134,135,135,135,135,136,136,136,136,137,137,137,137,138,138,138,138,139,139,139,139,140,140,140,140,141,141,141,141,142,142,142,142,143,143,143,143,144,144,144,144,145,145,145,145,146,146,146,146,147,147,147,147,148,148,148,148,149,149,149,149,149,150,150,150,150,151,151,151,151,151,152,152,152,152,153,153,153,153,153,154,154,154,154,154,155,155,155,155,156,156,156,156,156,157,157,157,157,157,158,158,158,158,158,159,159,159,159,160,160,160,160,160,161,161,161,161,161,162,162,162,162,162,163,163,163,163,163,163,164,164,164,164,164,164,165,165,165,165,165,166,166,166,166,166,167,167,167,167,167,168,168,168,168,168,169,169,169,169,169,170,170,170,170,170,170,171,171,171,171,171,172,172,172,172,172,172,172,173,173,173,173,173,173,174,174,174,174,175,175,175,175,175,175,176,176,176,176,176,176,177,177,177,177,177,177,177,178,178,178,178,178,179,179,179,179,179,180,180,180,180,180,180,181,181,181,181,181,181,182,182,182,182,182,182,183,183,183,183,183,184,184,184,184,184,184,184,185,185,
+		185,185,185,185,186,186,186,186,186,186,187,187,187,187,187,187,188,188,188,188,188,188,189,189,189,189,189,189,189,190,190,190,190,190,190,190,191,191,191,191,191,191,192,192,192,192,192,192,193,193,193,193,193,193,194,194,194,194,194,194,195,195,195,195,195,195,195,196,196,196,196,196,196,196,197,197,197,197,197,197,197,198,198,198,198,198,198,198,198,199,199,199,199,199,199,200,200,200,200,200,200,200,201,201,201,201,201,201,201,202,202,202,202,202,202,202,203,203,203,203,203,203,204,204,204,204,204,204,204,204,205,205,205,205,205,205,206,206,206,206,206,206,206,206,207,207,207,207,207,207,207,208,208,208,208,208,208,208,209,209,209,209,209,209,210,210,210,210,210,210,210,211,211,211,211,211,211,211,211,212,212,212,212,212,212,213,213,213,213,213,214,214,214,214,214,214,214,214,215,215,215,215,215,215,216,216,216,216,216,216,217,217,217,217,217,217,217,218,218,218,218,218,218,218,219,219,219,219,219,219,219,220,220,220,220,220,220,220,220,221,221,221,221,221,221,222,222,222,222,222,222,223,223,223,223,
+		223,223,223,224,224,224,224,224,224,224,225,225,225,225,225,225,225,226,226,226,226,226,226,226,226,227,227,227,227,227,227,227,228,228,228,228,228,228,229,229,229,229,229,229,229,230,230,230,230,230,230,230,230,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,234,235,235,235,235,235,235,236,236,236,236,236,236,236,237,237,237,237,237,237,237,237,238,238,238,238,238,238,238,238,239,239,239,239,239,239,239,239,239,240,240,240,240,240,240,240,241,241,241,241,241,242,242,242,242,242,242,242,243,243,243,243,243,243,243,243,243,243,243,244,244,244,244,244,244,245,245,245,245,245,245,246,246,246,246,246,246,246,246,247,247,247,247,247,247,247,248,248,248,248,248,248,248,249,249,249,249,249,249,249,249,249,250,250,250,250,250,250,250,251,251,251,251,251,251,252,252,252,252,252,252,252,252,253,253,253,253,253,253,253,254,254,254,254,254,254,255,255,255,255,255,255,255,255,256,256,256,256,256,256,256,257,257,257,257,257,257,258,258,258,258,258,258,
+		258,259,259,259,259,259,259,259,259,260,260,260,260,260,260,260,260,261,261,261,261,261,262,262,262,262,262,262,262,263,263,263,263,263,263,263,263,263,264,264,264,264,264,264,264,264,265,265,265,265,265,265,265,265,266,266,266,266,266,266,267,267,267,267,267,267,267,267,268,268,268,268,268,268,268,269,269,269,269,269,269,270,270,270,270,270,270,271,271,271,271,271,271,271,271,271,271,271,271,272,272,272,272,272,272,273,273,273,273,273,273,273,273,273,274,274,274,274,274,274,274,275,275,275,275,275,276,276,276,276,276,276,276,276,277,277,277,277,277,277,277,277,277,277,278,278,278,278,278,278,279,279,279,279,279,279,279,279,280,280,280,280,280,280,280,280,280,280,281,281,281,281,281,282,282,282,282,282,282,283,283,283,283,283,283,283,283,283,283,284,284,284,284,284,284,284,284,285,285,285,285,285,286,286,286,286,286,286,286,286,286,287,287,287,287,287,287,288,288,288,288,288,289,289,289,289,289,289,289,289,289,289,289,289,290,290,290,290,290,290,290,291,291,291,291,291,292,292,292,292,292,292,292,292,292,
+		293,293,293,293,293,293,293,293,294,294,294,294,294,294,295,295,295,295,295,295,296,296,296,296,296,296,296,296,297,297,297,297,297,297,297,297,297,298,298,298,298,298,298,298,299,299,299,299,299,299,299,300,300,300,300,300,300,300,300,300,301,301,301,301,301,301,302,302,302,302,302,302,302,303,303,303,303,303,303,303,303,303,303,304,304,304,304,304,304,304,304,305,305,305,305,305,305,305,305,305,305,305,306,306,306,306,306,306,306,307,307,307,307,307,307,307,308,308,308,308,308,308,309,309,309,309,309,309,309,309,309,309,310,310,310,310,310,310,310,310,310,311,311,311,311,311,311,312,312,312,312,312,312,313,313,313,313,313,313,313,313,313,313,314,314,314,314,314,314,314,314,314,314,315,315,315,315,315,315,315,315,316,316,316,316,316,316,316,316,317,317,317,317,317,317,317,318,318,318,318,318,318,318,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,322,322,322,322,322,322,322,322,323,323,323,323,323,324,324,324,324,324,324,324,324,325,325,325,325,325,
+		325,325,325,325,326,326,326,326,326,326,326,326,327,327,327,327,328,328,328,328,328,328,328,329,329,329,329,329,329,329,329,329,329,329,329,330,330,330,330,330,330,330,330,330,331,331,331,331,331,331,331,332,332,332,332,332,332,332,332,332,333,333,333,333,333,333,333,333,334,334,334,334,334,335,335,335,335,335,335,335,336,336,336,336,336,336,336,336,336,336,336,336,336,337,337,337,337,337,337,337,338,338,338,338,338,339,339,339,339,339,339,339,339,339,339,339,340,340,340,340,340,340,340,340,340,340,340,340,341,341,341,341,341,341,341,342,342,342,342,342,342,342,342,342,342,343,343,343,343,344,344,344,344,344,344,344,344,344,344,344,345,345,345,346,346,346,346,346,346,346,346,346,346,347,347,347,347,347,347,347,347,348,348,348,348,348,348,348,348,348,348,349,349,349,349,349,349,350,350,350,350,351,351,351,351,351,351,352,352,352,352,352,352,352,353,353,353,353,353,353,353,353,353,354,354,354,354,354,354,355,355,355,355,355,355,355,355,355,356,356,356,356,356,356,356,356,357,357,357,357,357,357,358,358,358,
+		358,358,358,359,359,359,359,359,359
+	},
+	{
+		0,0,0,0,0,0,0,0,0,1,3,3,4,5,6,8,9,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,21,21,21,21,21,21,21,22,22,22,22,22,22,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,29,29,29,30,30,30,31,31,31,32,32,32,33,33,33,34,34,34,35,35,36,36,36,37,37,38,38,38,39,39,40,40,40,41,41,42,42,
+		43,43,43,44,44,45,45,45,46,46,47,47,47,48,48,49,49,49,50,50,50,51,51,52,52,52,53,53,53,54,54,54,55,55,56,56,56,57,57,57,58,58,58,59,59,59,59,60,60,60,61,61,61,62,62,62,63,63,63,63,64,64,64,65,65,65,66,66,66,66,67,67,67,68,68,68,69,69,69,69,70,70,70,71,71,71,71,72,72,72,73,73,73,74,74,74,74,75,75,75,75,76,76,76,77,77,77,77,78,78,78,78,79,79,79,80,80,80,80,81,81,81,82,82,82,82,83,83,83,83,84,84,84,85,85,85,85,86,86,86,86,87,87,87,87,88,88,88,89,89,89,89,90,90,90,90,91,91,91,92,92,92,92,93,93,93,94,94,94,94,95,95,95,95,96,96,96,96,97,97,97,97,98,98,98,99,99,99,99,100,100,100,100,101,101,101,101,102,102,102,103,103,103,103,104,104,104,105,105,105,105,106,106,106,106,107,107,107,107,108,108,108,108,109,109,109,110,110,110,110,111,111,111,111,112,112,112,113,113,113,113,114,114,114,114,115,115,115,115,116,116,116,116,117,117,
+		117,118,118,118,118,119,119,119,119,120,120,120,120,121,121,121,121,122,122,122,122,123,123,123,123,124,124,124,124,125,125,125,125,126,126,126,126,127,127,127,127,128,128,128,129,129,129,129,130,130,130,130,131,131,131,131,131,132,132,132,132,133,133,133,133,134,134,134,134,135,135,135,135,136,136,136,136,137,137,137,137,137,138,138,138,138,139,139,139,139,139,140,140,140,140,141,141,141,141,142,142,142,142,142,143,143,143,143,144,144,144,144,144,144,145,145,145,145,146,146,146,146,147,147,147,147,147,147,148,148,148,148,148,149,149,149,149,150,150,150,150,150,151,151,151,151,151,151,152,152,152,152,152,153,153,153,153,153,153,154,154,154,154,154,155,155,155,155,155,156,156,156,156,156,156,157,157,157,157,157,158,158,158,158,158,159,159,159,159,159,159,159,160,160,160,160,160,160,161,161,161,161,161,161,162,162,162,162,162,163,163,163,163,163,163,164,164,164,164,164,164,164,165,165,165,165,165,165,165,166,166,166,166,166,166,167,167,167,167,167,167,168,168,168,168,168,169,169,169,169,169,169,170,170,170,
+		170,170,170,170,171,171,171,171,171,171,172,172,172,172,172,172,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,175,175,175,175,175,175,176,176,176,176,176,176,177,177,177,177,177,177,178,178,178,178,178,178,178,179,179,179,179,179,179,179,180,180,180,180,180,180,181,181,181,181,181,181,182,182,182,182,182,182,182,182,183,183,183,183,183,183,184,184,184,184,184,184,184,184,185,185,185,185,185,185,185,186,186,186,186,186,186,186,187,187,187,187,187,187,187,188,188,188,188,188,188,188,189,189,189,189,189,189,189,189,190,190,190,190,190,190,190,190,190,191,191,191,191,191,191,192,192,192,192,192,192,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,197,197,197,197,197,197,197,197,198,198,198,198,198,198,198,199,199,199,199,199,199,200,200,200,200,200,200,200,200,201,201,201,201,201,201,201,201,202,202,202,202,202,202,202,202,202,203,203,203,203,203,203,203,203,204,204,204,204,204,204,205,205,205,205,205,205,205,205,206,
+		206,206,206,206,206,206,206,207,207,207,207,207,207,207,207,208,208,208,208,208,208,208,208,208,209,209,209,209,209,209,209,210,210,210,210,210,210,210,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,213,213,213,213,213,213,213,214,214,214,214,214,214,214,214,215,215,215,215,215,215,216,216,216,216,216,216,216,216,217,217,217,217,217,217,217,217,218,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,220,220,220,220,220,220,221,221,221,221,221,221,221,222,222,222,222,222,222,222,222,222,223,223,223,223,223,223,223,223,223,224,224,224,224,224,224,224,224,224,225,225,225,225,225,225,225,226,226,226,226,226,226,226,226,226,226,227,227,227,227,227,227,227,228,228,228,228,228,228,228,228,228,228,229,229,229,229,229,229,229,230,230,230,230,230,230,231,231,231,231,231,231,231,231,231,232,232,232,232,232,232,232,232,232,232,233,233,233,233,233,233,233,233,233,233,234,234,234,234,234,234,235,235,235,235,235,235,235,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,240,240,240,240,240,240,240,240,241,241,241,241,241,241,241,241,241,242,242,242,242,242,242,242,242,242,243,243,243,243,243,243,244,244,244,244,244,244,244,244,244,245,245,245,245,245,245,245,245,245,246,246,246,246,246,246,246,246,246,247,247,247,247,247,247,247,248,248,248,248,248,248,248,248,248,248,249,249,249,249,249,249,250,250,250,250,250,250,250,250,250,251,251,251,251,251,251,251,251,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253,253,253,253,254,254,254,254,254,254,254,255,255,255,255,255,255,255,255,255,256,256,256,256,256,256,257,257,257,257,257,257,257,258,258,258,258,258,258,258,258,258,259,259,259,259,259,259,259,259,259,259,260,260,260,260,260,260,260,261,261,261,261,261,261,261,262,262,262,262,262,262,262,262,262,262,263,263,263,263,263,263,263,264,264,264,264,264,264,264,264,264,264,265,265,265,265,265,265,265,265,266,266,266,266,266,266,267,267,267,267,267,267,267,267,268,268,268,268,268,268,268,268,268,268,268,268,268,
+		268,269,269,269,269,269,269,269,269,270,270,270,270,270,270,271,271,271,271,271,271,271,272,272,272,272,272,272,272,272,272,272,273,273,273,273,273,273,273,273,274,274,274,274,274,274,274,275,275,275,275,275,275,275,275,275,276,276,276,276,276,276,276,276,276,277,277,277,277,277,277,277,277,277,277,277,277,278,278,278,278,278,278,278,278,279,279,279,279,279,279,279,280,280,280,280,280,280,280,280,281,281,281,281,281,281,281,281,281,281,282,282,282,282,282,282,282,282,283,283,283,283,283,283,283,283,283,284,284,284,284,284,284,284,284,284,284,285,285,285,285,285,285,285,285,285,286,286,286,286,286,287,287,287,287,287,287,287,287,287,288,288,288,288,288,288,288,288,288,288,288,288,288,289,289,289,289,289,289,289,290,290,290,290,290,290,290,290,291,291,291,291,291,291,291,291,291,291,292,292,292,292,292,292,292,293,293,293,293,293,293,293,293,293,293,293,294,294,294,294,294,294,294,294,295,295,295,295,295,295,296,296,296,296,296,296,296,296,296,297,297,297,297,297,297,297,297,297,297,297,297,298,298,298,298,
+		298,298,298,298,298,299,299,299,299,299,299,299,299,300,300,300,300,300,300,300,301,301,301,301,301,301,301,301,301,301,302,302,302,302,302,302,302,302,302,302,303,303,303,303,303,303,303,303,304,304,304,304,304,304,304,304,304,304,304,304,304,305,305,305,305,305,305,306,306,306,306,306,306,306,306,306,306,306,307,307,307,307,307,307,307,307,308,308,308,308,308,308,308,308,308,308,308,308,309,309,309,309,309,309,309,309,310,310,310,310,310,311,311,311,311,311,311,311,311,311,311,311,311,311,311,311,311,312,312,312,312,312,312,312,312,312,313,313,313,313,313,313,313,314,314,314,314,314,314,314,314,314,314,314,314,315,315,315,315,315,315,315,315,316,316,316,316,316,316,316,317,317,317,317,317,317,317,318,318,318,318,318,318,318,319,319,319,319,319,319,319,319,319,319,319,319,319,320,320,320,320,320,320,320,320,320,321,321,321,321,321,322,322,322,322,322,322,322,322,322,322,323,323,323,323,323,323,324,324,324,324,324,325,325,325,325,325,325,325,325,325,325,325,325,325,325,326,326,326,326,326,327,327,327,327,
+		327,327,327,327,327,327,327,327,327
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,5,6,6,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,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,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,29,29,29,29,30,30,30,31,31,31,32,32,32,33,33,
+		33,34,34,34,35,35,35,36,36,36,37,37,37,38,38,39,39,39,40,40,40,41,41,42,42,42,43,43,43,44,44,45,45,45,46,46,46,47,47,47,48,48,48,49,49,49,50,50,50,51,51,51,52,52,52,53,53,53,53,54,54,54,55,55,55,56,56,56,56,57,57,57,58,58,58,59,59,59,59,60,60,60,60,61,61,61,62,62,62,62,63,63,63,64,64,64,64,65,65,65,65,66,66,66,66,67,67,67,67,68,68,68,69,69,69,69,70,70,70,70,70,71,71,71,71,72,72,72,72,73,73,73,73,74,74,74,74,75,75,75,75,76,76,76,76,77,77,77,77,78,78,78,78,79,79,79,79,80,80,80,80,81,81,81,81,81,82,82,82,82,83,83,83,83,84,84,84,84,85,85,85,85,86,86,86,86,87,87,87,87,87,88,88,88,88,89,89,89,89,90,90,90,90,91,91,91,91,92,92,92,92,92,93,93,93,93,94,94,94,94,95,95,95,95,96,96,96,96,97,97,97,97,97,98,98,98,98,99,99,99,99,99,100,100,100,100,101,101,101,101,102,102,102,102,103,
+		103,103,103,104,104,104,104,105,105,105,105,106,106,106,106,106,107,107,107,107,108,108,108,108,109,109,109,109,110,110,110,110,111,111,111,111,111,112,112,112,112,113,113,113,113,113,114,114,114,114,115,115,115,115,116,116,116,116,117,117,117,117,118,118,118,118,118,119,119,119,119,120,120,120,120,121,121,121,121,122,122,122,122,123,123,123,123,123,124,124,124,124,124,125,125,125,125,126,126,126,126,126,127,127,127,127,128,128,128,128,128,129,129,129,129,130,130,130,130,130,131,131,131,131,132,132,132,132,132,133,133,133,133,133,134,134,134,134,134,135,135,135,135,136,136,136,136,136,137,137,137,137,137,138,138,138,138,138,139,139,139,139,139,140,140,140,140,140,141,141,141,141,141,142,142,142,142,142,143,143,143,143,143,143,144,144,144,144,144,144,145,145,145,145,145,146,146,146,146,146,147,147,147,147,147,147,148,148,148,148,148,148,149,149,149,149,149,150,150,150,150,150,150,151,151,151,151,151,151,152,152,152,152,152,152,153,153,153,153,153,153,154,154,154,154,154,154,154,155,155,155,155,155,155,156,
+		156,156,156,156,156,157,157,157,157,157,157,157,158,158,158,158,158,158,159,159,159,159,159,159,160,160,160,160,160,160,160,161,161,161,161,161,161,161,161,162,162,162,162,162,162,162,163,163,163,163,163,163,163,164,164,164,164,164,164,165,165,165,165,165,165,165,166,166,166,166,166,166,166,166,167,167,167,167,167,167,167,167,168,168,168,168,168,168,168,169,169,169,169,169,169,170,170,170,170,170,170,170,171,171,171,171,171,171,171,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,175,175,175,175,175,175,175,176,176,176,176,176,176,176,177,177,177,177,177,177,177,178,178,178,178,178,178,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,180,180,181,181,181,181,181,181,181,181,182,182,182,182,182,182,182,182,183,183,183,183,183,183,183,183,184,184,184,184,184,184,184,184,185,185,185,185,185,185,185,186,186,186,186,186,186,186,187,187,187,187,187,187,187,187,188,188,188,188,188,188,188,188,188,188,189,189,189,189,189,189,189,189,189,190,190,190,190,190,
+		190,190,191,191,191,191,191,191,191,191,192,192,192,192,192,192,192,192,192,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,197,197,197,197,197,197,197,197,197,198,198,198,198,198,198,198,199,199,199,199,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,202,202,202,202,202,202,202,202,203,203,203,203,203,203,203,203,203,204,204,204,204,204,204,204,204,204,205,205,205,205,205,205,205,205,205,206,206,206,206,206,206,206,207,207,207,207,207,207,207,207,207,207,208,208,208,208,208,208,208,208,209,209,209,209,209,209,209,209,210,210,210,210,210,210,210,210,210,210,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,213,213,213,213,213,213,213,213,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,216,216,216,216,216,216,216,216,216,217,217,217,217,217,217,217,217,218,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,220,
+		220,220,220,220,220,220,220,220,221,221,221,221,221,221,221,221,221,222,222,222,222,222,222,222,222,223,223,223,223,223,223,223,223,223,224,224,224,224,224,224,224,224,225,225,225,225,225,225,225,225,225,225,225,225,225,226,226,226,226,226,226,226,226,227,227,227,227,227,227,227,227,228,228,228,228,228,228,228,229,229,229,229,229,229,229,229,229,229,230,230,230,230,230,230,230,230,231,231,231,231,231,231,231,231,231,231,231,231,232,232,232,232,232,232,232,232,233,233,233,233,233,233,233,233,233,233,234,234,234,234,234,234,234,234,234,234,235,235,235,235,235,235,235,235,235,236,236,236,236,236,236,236,236,237,237,237,237,237,237,237,237,237,237,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,240,241,241,241,241,241,241,241,241,241,242,242,242,242,242,242,242,242,242,242,242,243,243,243,243,243,243,243,243,244,244,244,244,244,244,244,244,244,245,245,245,245,245,245,245,245,246,246,246,246,246,246,246,246,246,246,247,247,247,247,247,247,247,247,247,
+		247,247,248,248,248,248,248,248,248,248,249,249,249,249,249,249,249,249,250,250,250,250,250,250,250,251,251,251,251,251,251,251,251,251,251,252,252,252,252,252,252,252,252,252,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,256,256,256,256,256,256,256,256,256,256,256,256,257,257,257,257,257,257,257,257,257,257,257,257,258,258,258,258,258,258,259,259,259,259,259,259,259,259,259,260,260,260,260,260,260,260,260,260,260,261,261,261,261,261,261,261,261,261,262,262,262,262,262,262,262,262,262,262,262,262,263,263,263,263,263,263,263,263,263,264,264,264,264,264,264,264,264,264,265,265,265,265,265,265,265,265,265,265,265,265,265,265,266,266,266,266,266,266,266,266,266,266,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,269,269,269,269,270,270,270,270,270,270,270,271,271,271,271,271,271,271,271,271,271,271,271,272,272,272,272,272,272,272,272,273,273,273,273,273,273,273,273,273,273,274,274,274,274,
+		274,274,274,274,274,274,274,274,275,275,275,275,275,275,275,275,276,276,276,276,276,276,276,276,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,280,280,280,280,280,280,280,280,280,281,281,281,281,281,281,281,281,281,282,282,282,282,282,282,282,282,282,282,282,282,282,283,283,283,283,283,283,283,284,284,284,284,284,284,284,284,284,284,284,284,284,284,285,285,285,285,285,285,285,285,285,286,286,286,286,286,286,286,286,286,286,287,287,287,287,287,287,287,287,287,287,288,288,288,288,288,288,288,288,288,288,288,289,289,289,289,289,289,289,289,289,289,289,290,290,290,290,290,290,290,290,290,290,291,291,291,291,291,291,292,292,292,292,292,292,292,292,292,292,292,292,292,292,293,293,293,293,293,293,293,293,294,294,294,294,294,294,294,294,294,295,295,295,295,295,295,295,295,296,296,296,296,296,296,296,296,296,296,297,297,297,297,297,297,297,297,297,297,297,297,297,297,297,298,298,298,298,298,298,298,298,299,299,299,299,299,299,299,299,299,
+		299,299,300,300,300,300,300,300,300
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,5,6,6,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,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,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,22,22,22,22,22,22,23,23,23,23,23,24,24,24,24,24,25,25,25,25,25,26,26,26,27,27,27,27,28,28,
+		28,28,29,29,29,30,30,30,30,31,31,31,32,32,32,33,33,33,34,34,34,35,35,35,36,36,37,37,37,38,38,38,39,39,39,40,40,40,41,41,41,42,42,42,43,43,43,44,44,44,45,45,45,46,46,46,47,47,47,47,48,48,48,49,49,49,50,50,50,50,51,51,51,52,52,52,53,53,53,53,54,54,54,54,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,64,65,65,65,65,65,66,66,66,66,67,67,67,67,68,68,68,68,68,69,69,69,69,70,70,70,70,71,71,71,71,71,72,72,72,72,73,73,73,73,74,74,74,74,74,75,75,75,75,76,76,76,76,76,77,77,77,77,77,78,78,78,78,79,79,79,79,79,80,80,80,80,80,81,81,81,81,82,82,82,82,82,83,83,83,83,83,84,84,84,84,84,85,85,85,85,86,86,86,86,86,87,87,87,87,87,88,88,88,88,89,89,89,89,89,90,90,90,90,90,91,91,91,91,92,92,92,92,92,93,93,93,93,93,
+		94,94,94,94,94,95,95,95,95,95,96,96,96,96,96,97,97,97,97,97,98,98,98,98,99,99,99,99,100,100,100,100,100,101,101,101,101,101,102,102,102,102,102,103,103,103,103,103,104,104,104,104,105,105,105,105,105,106,106,106,106,107,107,107,107,107,108,108,108,108,108,109,109,109,109,109,110,110,110,110,110,111,111,111,111,112,112,112,112,113,113,113,113,113,114,114,114,114,114,115,115,115,115,116,116,116,116,116,117,117,117,117,117,118,118,118,118,119,119,119,119,119,120,120,120,120,120,121,121,121,121,122,122,122,122,122,123,123,123,123,123,124,124,124,124,124,125,125,125,125,125,126,126,126,126,126,127,127,127,127,127,128,128,128,128,128,129,129,129,129,130,130,130,130,130,130,131,131,131,131,131,132,132,132,132,133,133,133,133,133,133,134,134,134,134,134,134,135,135,135,135,135,136,136,136,136,136,137,137,137,137,137,138,138,138,138,138,138,139,139,139,139,139,140,140,140,140,140,140,141,141,141,141,141,141,142,142,142,142,142,143,143,143,143,143,144,144,144,144,144,144,145,145,145,145,
+		145,145,146,146,146,146,146,146,146,147,147,147,147,147,147,148,148,148,148,148,148,148,149,149,149,149,149,149,149,150,150,150,150,150,150,151,151,151,151,151,151,152,152,152,152,152,152,152,153,153,153,153,153,153,154,154,154,154,154,154,154,154,155,155,155,155,155,155,155,156,156,156,156,156,156,156,157,157,157,157,157,157,157,158,158,158,158,158,158,158,158,159,159,159,159,159,159,159,159,160,160,160,160,160,160,160,160,161,161,161,161,161,161,161,161,162,162,162,162,162,162,163,163,163,163,163,163,163,163,164,164,164,164,164,164,164,164,165,165,165,165,165,165,165,166,166,166,166,166,166,166,166,166,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,170,170,171,171,171,171,171,171,171,171,171,172,172,172,172,172,172,173,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,175,175,175,175,175,175,175,175,176,176,176,176,176,176,176,176,176,177,177,177,177,177,177,177,177,178,178,178,178,178,178,178,178,179,179,179,179,179,179,
+		179,179,179,180,180,180,180,180,180,180,180,181,181,181,181,181,181,181,181,182,182,182,182,182,182,182,182,182,182,183,183,183,183,183,183,183,183,184,184,184,184,184,184,184,184,185,185,185,185,185,185,185,185,185,186,186,186,186,186,186,186,186,186,186,186,186,187,187,187,187,187,187,187,187,187,188,188,188,188,188,188,188,188,188,189,189,189,189,189,189,189,189,190,190,190,190,190,190,190,190,190,190,190,191,191,191,191,191,191,191,191,192,192,192,192,192,192,192,192,192,193,193,193,193,193,193,193,193,193,193,194,194,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,196,196,197,197,197,197,197,197,197,197,197,198,198,198,198,198,198,198,198,198,198,199,199,199,199,199,199,199,199,200,200,200,200,200,200,200,200,200,201,201,201,201,201,201,201,201,201,201,202,202,202,202,202,202,202,202,202,202,203,203,203,203,203,203,203,203,203,203,203,203,204,204,204,204,204,204,204,204,205,205,205,205,205,205,205,205,205,206,206,206,206,206,206,206,206,
+		207,207,207,207,207,207,207,207,207,207,208,208,208,208,208,208,208,208,209,209,209,209,209,209,209,209,209,210,210,210,210,210,210,210,210,210,210,210,210,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,213,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,215,215,215,215,216,216,216,216,216,216,216,216,216,217,217,217,217,217,217,217,217,218,218,218,218,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,220,220,220,220,220,220,220,220,220,220,221,221,221,221,221,221,221,221,222,222,222,222,222,222,222,222,222,222,222,222,222,222,223,223,223,223,223,223,223,223,223,223,224,224,224,224,224,224,224,224,225,225,225,225,225,225,225,225,226,226,226,226,226,226,226,226,226,227,227,227,227,227,227,227,227,227,227,227,227,227,227,228,228,228,228,228,228,228,228,229,229,229,229,229,229,229,229,229,230,230,230,230,230,230,230,230,230,230,231,231,231,231,231,231,231,231,231,231,231,232,232,232,232,232,232,232,232,232,232,232,232,
+		232,233,233,233,233,233,233,233,234,234,234,234,234,234,234,234,234,234,234,234,234,234,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,237,238,238,238,238,238,238,238,238,238,238,238,238,238,238,239,239,239,239,239,239,239,239,239,239,239,240,240,240,240,240,240,240,240,241,241,241,241,241,241,241,241,241,242,242,242,242,242,242,242,242,242,242,242,242,242,242,243,243,243,243,243,243,243,243,244,244,244,244,244,244,244,244,244,244,245,245,245,245,245,245,245,245,245,245,245,245,245,246,246,246,246,246,246,246,246,246,246,246,246,247,247,247,247,247,247,247,247,247,247,248,248,248,248,248,248,248,248,248,248,248,248,248,248,249,249,249,249,249,249,249,249,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,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,254,255,255,255,255,255,255,255,255,255,255,256,256,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,259,259,259,259,259,259,259,259,259,259,260,260,260,260,260,260,260,260,260,260,260,260,260,260,260,261,261,261,261,261,261,261,261,261,262,262,262,262,262,262,262,262,262,263,263,263,263,263,263,263,263,263,263,263,263,263,263,263,263,263,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,265,265,265,265,265,265,265,265,266,266,266,266,266,266,266,266,266,266,267,267,267,267,267,267,267,267,267,267,267,267,267,268,268,268,268,268,268,268,268,268,269,269,269,269,269,269,269,269,269,269,269,269,269,270,270,270,270,270,270,270,270,270,270,270,270,270,271,271,271,271,271,271,271,271,271,271,271,272,272,272,272,272,272,272,273,273,273,273,273,273,273,273,273,273,273,273,273,274,274,274,274,274,274,274,274,274,274,275,275,275,275,275,275,275,275,275,276,276,276,276,276,276,276,276,276,276,276,277,277,277,277,277,277,277,277,277,278,278,278,278,278,278,278,278,278,278,278,278,278,279,279,279,279,279,279,279,279,280,280,280,
+		280,280,280,280,280,280,281,281,281
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,5,6,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,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,19,19,20,20,20,20,20,20,20,21,21,21,21,21,
+		21,21,22,22,22,22,22,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,26,27,27,27,28,28,28,28,29,29,29,29,30,30,30,31,31,31,31,32,32,32,33,33,33,34,34,34,35,35,35,36,36,36,36,37,37,37,38,38,38,39,39,39,40,40,40,40,41,41,41,42,42,42,43,43,43,43,44,44,44,44,45,45,45,46,46,46,46,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,61,62,62,62,62,62,63,63,63,63,63,64,64,64,64,64,65,65,65,65,66,66,66,66,66,67,67,67,67,67,68,68,68,68,68,69,69,69,69,69,69,70,70,70,70,70,71,71,71,71,71,72,72,72,72,72,73,73,73,73,73,73,74,74,74,74,74,75,75,75,75,75,75,76,76,76,76,76,76,77,77,77,77,77,78,78,78,78,78,78,79,79,79,79,79,80,80,80,80,80,
+		80,81,81,81,81,81,81,82,82,82,82,82,82,83,83,83,83,83,84,84,84,84,84,84,85,85,85,85,85,85,86,86,86,86,86,86,87,87,87,87,87,87,88,88,88,88,88,88,89,89,89,89,89,89,90,90,90,90,90,90,91,91,91,91,91,92,92,92,92,92,92,93,93,93,93,93,93,94,94,94,94,94,94,95,95,95,95,95,95,96,96,96,96,96,96,97,97,97,97,97,98,98,98,98,98,98,99,99,99,99,99,99,100,100,100,100,100,100,101,101,101,101,101,101,102,102,102,102,102,103,103,103,103,103,103,104,104,104,104,104,105,105,105,105,105,105,106,106,106,106,106,107,107,107,107,107,107,108,108,108,108,108,108,109,109,109,109,109,110,110,110,110,110,111,111,111,111,111,111,112,112,112,112,112,113,113,113,113,113,113,114,114,114,114,114,114,115,115,115,115,115,115,116,116,116,116,116,117,117,117,117,117,118,118,118,118,118,118,119,119,119,119,119,119,120,120,120,120,120,121,121,121,121,121,122,122,122,122,122,122,123,123,123,123,123,123,124,124,124,124,125,125,125,125,125,
+		125,126,126,126,126,126,126,126,127,127,127,127,127,127,128,128,128,128,128,128,129,129,129,129,129,130,130,130,130,130,130,131,131,131,131,131,131,132,132,132,132,132,133,133,133,133,133,133,134,134,134,134,134,134,135,135,135,135,135,135,136,136,136,136,136,136,136,137,137,137,137,137,137,138,138,138,138,138,138,138,139,139,139,139,139,139,139,140,140,140,140,140,140,141,141,141,141,141,141,142,142,142,142,142,142,142,142,143,143,143,143,143,143,143,144,144,144,144,144,144,145,145,145,145,145,145,145,146,146,146,146,146,146,146,146,147,147,147,147,147,147,147,147,148,148,148,148,148,148,148,149,149,149,149,149,149,149,149,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,152,152,152,152,152,152,152,152,153,153,153,153,153,153,153,153,153,154,154,154,154,154,154,154,154,154,155,155,155,155,155,155,155,156,156,156,156,156,156,156,156,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,160,160,160,160,160,160,160,161,161,161,161,161,161,
+		161,161,161,162,162,162,162,162,162,162,162,162,162,162,163,163,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,165,165,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,168,169,169,169,169,169,169,169,169,169,170,170,170,170,170,170,170,170,170,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,173,174,174,174,174,174,174,174,175,175,175,175,175,175,175,175,175,175,175,175,175,176,176,176,176,176,176,176,176,177,177,177,177,177,177,177,177,177,178,178,178,178,178,178,178,178,178,178,178,178,178,178,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,180,180,180,180,181,181,181,181,181,181,181,181,181,182,182,182,182,182,182,182,182,182,182,182,182,183,183,183,183,183,183,183,183,184,184,184,184,184,184,184,184,184,184,184,185,185,185,185,185,185,185,185,185,186,186,186,186,186,186,186,186,186,186,186,187,187,187,187,187,187,
+		187,187,187,188,188,188,188,188,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,190,190,191,191,191,191,191,191,191,191,191,192,192,192,192,192,192,192,192,192,192,193,193,193,193,193,193,193,193,193,193,193,194,194,194,194,194,194,194,194,194,194,194,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,198,198,198,198,198,198,198,198,198,198,198,198,199,199,199,199,199,199,199,199,199,199,200,200,200,200,200,200,200,200,200,200,200,200,201,201,201,201,201,201,201,201,201,201,201,202,202,202,202,202,202,202,202,202,202,202,202,202,203,203,203,203,203,203,203,203,203,203,203,203,204,204,204,204,204,204,204,204,204,204,205,205,205,205,205,205,205,205,205,205,205,205,205,205,206,206,206,206,206,206,206,206,206,207,207,207,207,207,207,207,207,207,207,207,207,207,207,208,208,208,208,208,208,208,208,208,208,209,209,209,209,209,209,209,209,209,
+		209,209,209,210,210,210,210,210,210,210,211,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,214,214,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,217,217,217,217,217,217,217,217,217,217,217,218,218,218,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,219,219,219,220,220,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,222,222,222,223,223,223,223,223,223,223,223,223,223,223,223,223,224,224,224,224,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,226,226,226,226,226,226,226,227,227,227,227,227,227,227,227,227,227,227,227,227,227,228,228,228,228,228,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,230,230,230,230,230,230,230,230,231,
+		231,231,231,231,231,231,231,231,231,231,231,231,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,233,233,233,233,233,233,233,233,233,233,233,234,234,234,234,234,234,234,234,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,236,236,236,236,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,237,238,238,238,238,238,238,238,238,238,238,238,238,239,239,239,239,239,239,239,239,239,239,239,239,239,239,239,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,241,242,242,242,242,242,242,242,243,243,243,243,243,243,243,243,243,243,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,245,245,245,245,245,245,245,245,245,245,245,245,245,245,246,246,246,246,246,246,246,246,246,246,247,247,247,247,247,247,247,247,247,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,249,249,249,249,249,249,249,249,249,250,250,250,250,
+		250,250,250,250,250,251,251,251,251
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,5,6,7,8,9,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,
+		18,18,18,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,21,21,21,21,21,21,21,22,22,22,22,22,22,23,23,23,23,23,24,24,24,24,24,25,25,25,25,25,26,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,31,31,31,31,32,32,32,32,33,33,33,34,34,34,34,35,35,35,36,36,36,36,37,37,37,37,38,38,38,39,39,39,39,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,48,49,49,49,49,50,50,50,50,50,51,51,51,51,52,52,52,52,52,53,53,53,53,53,54,54,54,54,55,55,55,55,55,56,56,56,56,56,57,57,57,57,57,58,58,58,58,58,59,59,59,59,59,60,60,60,60,60,61,61,61,61,61,61,62,62,62,62,62,63,63,63,63,63,63,64,64,64,64,64,65,65,65,65,65,65,66,66,66,66,66,67,67,67,67,67,67,68,68,68,68,68,68,69,69,69,69,69,69,70,70,70,70,70,70,71,71,71,71,71,
+		71,72,72,72,72,72,72,73,73,73,73,73,73,74,74,74,74,74,74,75,75,75,75,75,75,76,76,76,76,76,76,76,77,77,77,77,77,77,78,78,78,78,78,78,79,79,79,79,79,79,79,80,80,80,80,80,80,81,81,81,81,81,81,81,82,82,82,82,82,82,83,83,83,83,83,83,83,84,84,84,84,84,84,84,85,85,85,85,85,85,86,86,86,86,86,86,87,87,87,87,87,87,87,88,88,88,88,88,88,89,89,89,89,89,89,89,90,90,90,90,90,90,91,91,91,91,91,91,92,92,92,92,92,92,92,93,93,93,93,93,93,94,94,94,94,94,94,94,95,95,95,95,95,95,96,96,96,96,96,96,96,97,97,97,97,97,97,98,98,98,98,98,98,99,99,99,99,99,99,100,100,100,100,100,100,101,101,101,101,101,101,102,102,102,102,102,102,103,103,103,103,103,103,104,104,104,104,104,104,104,105,105,105,105,105,105,106,106,106,106,106,107,107,107,107,107,107,108,108,108,108,108,108,109,109,109,109,109,109,110,110,110,110,110,110,111,111,111,111,111,111,112,112,112,112,
+		112,112,113,113,113,113,113,114,114,114,114,114,114,115,115,115,115,115,115,116,116,116,116,116,116,117,117,117,117,117,117,118,118,118,118,118,118,119,119,119,119,119,119,120,120,120,120,120,120,120,121,121,121,121,121,121,122,122,122,122,122,122,123,123,123,123,123,123,124,124,124,124,124,124,124,125,125,125,125,125,126,126,126,126,126,126,127,127,127,127,127,127,127,128,128,128,128,128,128,128,129,129,129,129,129,129,130,130,130,130,130,130,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,133,133,133,133,133,133,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,138,138,138,138,138,138,138,138,139,139,139,139,139,139,139,140,140,140,140,140,140,140,141,141,141,141,141,141,141,142,142,142,142,142,142,142,142,143,143,143,143,143,143,143,143,144,144,144,144,144,144,144,144,145,145,145,145,145,145,145,145,145,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,149,149,149,149,149,149,149,
+		150,150,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,151,151,151,152,152,152,152,152,152,152,152,152,153,153,153,153,153,153,153,153,153,153,154,154,154,154,154,154,154,154,154,154,155,155,155,155,155,155,155,155,155,155,156,156,156,156,156,156,156,156,156,156,156,157,157,157,157,157,157,157,157,157,157,158,158,158,158,158,158,158,158,158,158,159,159,159,159,159,159,159,159,159,159,160,160,160,160,160,160,160,160,160,160,160,161,161,161,161,161,161,161,161,161,161,161,162,162,162,162,162,162,162,162,162,163,163,163,163,163,163,163,163,163,164,164,164,164,164,164,164,164,164,164,164,165,165,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,168,168,168,168,168,168,168,168,168,168,168,168,168,169,169,169,169,169,169,169,169,170,170,170,170,170,170,170,170,170,171,171,171,171,171,171,171,171,171,171,171,171,172,172,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,173,173,173,173,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,176,176,176,176,176,176,177,177,177,177,177,177,177,177,177,177,178,178,178,178,178,178,178,178,178,178,178,178,178,178,179,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,180,180,180,180,181,181,181,181,181,181,181,181,181,181,182,182,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,184,184,184,185,185,185,185,185,185,185,185,185,185,185,186,186,186,186,186,186,186,186,186,186,186,186,186,187,187,187,187,187,187,187,187,187,187,188,188,188,188,188,188,188,188,188,188,188,188,188,188,189,189,189,189,189,189,189,189,189,189,189,190,190,190,190,190,190,190,190,190,190,190,190,191,191,191,191,191,191,191,191,191,191,191,191,192,192,192,192,192,192,192,192,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,194,194,195,195,195,195,195,195,195,195,195,195,195,196,196,196,196,196,196,196,196,196,
+		196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,198,198,198,198,198,198,198,198,198,198,198,198,199,199,199,199,199,199,199,199,199,199,199,199,200,200,200,200,200,200,200,200,200,200,200,200,201,201,201,201,201,201,201,201,201,201,201,201,201,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,203,203,203,203,203,203,203,203,203,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,205,205,205,205,205,205,205,205,205,205,205,205,205,205,206,206,206,206,206,206,206,206,206,207,207,207,207,207,207,207,207,207,207,207,207,207,208,208,208,208,208,208,208,208,208,208,208,208,208,209,209,209,209,209,209,209,209,209,209,209,209,209,209,210,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,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,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,216,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,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,220,220,220,220,220,220,220,220,220,221,221,221,221,221,221,221,221,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,223,223,223,223,223,223,224,224,224,224,224,224,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,226,226,226,226,227,227,227,227,227,227,227,227,227,227,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,229,229,229,229,229,229,229,229,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230,231,231,231,231,231,231,231,231,231,231,231,231,231,231,231,232,232,232,232,232,232,232,232,232,233,233,233,233,233,233,233,233,233,233,233,233,233,233,234,234,234,234,234,234,234,
+		234,234,234,234,234,234,234,234,234
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,5,6,7,8,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
+		16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,22,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,25,25,25,25,26,26,26,26,26,27,27,27,27,28,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,45,46,46,46,46,46,47,47,47,47,48,48,48,48,48,49,49,49,49,49,50,50,50,50,50,51,51,51,51,51,52,52,52,52,52,53,53,53,53,53,53,54,54,54,54,54,55,55,55,55,55,56,56,56,56,56,56,57,57,57,57,57,58,58,58,58,58,58,59,59,59,59,59,59,60,60,60,60,60,60,61,61,61,61,61,61,62,62,62,62,62,62,63,63,63,63,
+		63,63,64,64,64,64,64,64,65,65,65,65,65,65,66,66,66,66,66,66,66,67,67,67,67,67,67,67,68,68,68,68,68,68,68,69,69,69,69,69,69,70,70,70,70,70,70,70,71,71,71,71,71,71,71,71,72,72,72,72,72,72,72,73,73,73,73,73,73,73,74,74,74,74,74,74,74,75,75,75,75,75,75,75,75,76,76,76,76,76,76,76,77,77,77,77,77,77,77,78,78,78,78,78,78,78,78,79,79,79,79,79,79,79,79,80,80,80,80,80,80,80,80,81,81,81,81,81,81,81,81,82,82,82,82,82,82,82,83,83,83,83,83,83,83,83,84,84,84,84,84,84,84,84,85,85,85,85,85,85,85,86,86,86,86,86,86,86,86,87,87,87,87,87,87,87,87,88,88,88,88,88,88,88,89,89,89,89,89,89,89,89,89,90,90,90,90,90,90,90,90,91,91,91,91,91,91,91,92,92,92,92,92,92,92,93,93,93,93,93,93,93,94,94,94,94,94,94,94,95,95,95,95,95,95,95,96,96,96,96,96,96,96,96,97,97,97,97,97,97,97,98,98,98,98,
+		98,98,98,98,99,99,99,99,99,99,99,100,100,100,100,100,100,100,101,101,101,101,101,101,101,101,102,102,102,102,102,102,102,103,103,103,103,103,103,104,104,104,104,104,104,104,105,105,105,105,105,105,105,106,106,106,106,106,106,107,107,107,107,107,107,107,108,108,108,108,108,108,108,108,109,109,109,109,109,109,109,110,110,110,110,110,110,111,111,111,111,111,111,112,112,112,112,112,112,112,113,113,113,113,113,113,113,114,114,114,114,114,114,114,115,115,115,115,115,115,116,116,116,116,116,116,116,117,117,117,117,117,117,118,118,118,118,118,118,118,119,119,119,119,119,119,119,120,120,120,120,120,120,120,120,121,121,121,121,121,121,122,122,122,122,122,122,122,123,123,123,123,123,123,123,124,124,124,124,124,124,124,125,125,125,125,125,125,125,126,126,126,126,126,126,126,127,127,127,127,127,127,127,128,128,128,128,128,128,128,128,129,129,129,129,129,129,129,130,130,130,130,130,130,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,132,133,133,133,133,133,133,133,134,134,134,134,134,134,134,135,
+		135,135,135,135,135,135,135,135,136,136,136,136,136,136,136,136,137,137,137,137,137,137,137,137,138,138,138,138,138,138,138,138,139,139,139,139,139,139,139,139,140,140,140,140,140,140,140,140,140,141,141,141,141,141,141,141,141,141,141,142,142,142,142,142,142,142,142,142,143,143,143,143,143,143,143,143,143,144,144,144,144,144,144,144,144,145,145,145,145,145,145,145,145,145,145,145,146,146,146,146,146,146,146,146,146,147,147,147,147,147,147,147,147,147,147,148,148,148,148,148,148,148,148,148,149,149,149,149,149,149,149,149,149,149,149,150,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,151,151,151,151,151,152,152,152,152,152,152,152,152,152,152,153,153,153,153,153,153,153,153,153,153,153,153,153,154,154,154,154,154,154,154,154,154,154,154,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,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,162,162,162,162,162,162,162,162,162,162,163,163,163,163,163,163,163,163,163,163,163,164,164,164,164,164,164,164,164,164,164,165,165,165,165,165,165,165,165,165,165,165,165,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,167,167,167,167,167,167,167,167,167,168,168,168,168,168,168,168,168,168,168,168,168,168,169,169,169,169,169,169,169,169,169,170,170,170,170,170,170,170,170,170,170,170,170,170,171,171,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,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,175,175,175,175,175,176,176,176,176,176,176,176,176,176,176,176,177,177,177,177,177,177,177,177,177,177,177,177,178,178,178,178,178,178,178,178,178,178,178,178,178,178,179,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,181,181,181,181,181,181,181,181,181,181,182,
+		182,182,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,184,184,184,184,185,185,185,185,185,185,185,185,185,185,185,185,185,185,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,187,187,187,187,187,187,187,187,187,187,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,189,189,189,189,189,189,189,189,189,189,189,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,191,191,191,191,191,191,191,191,191,191,191,191,191,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,198,198,198,198,198,198,198,198,198,198,198,198,199,199,199,199,199,199,
+		199,199,199,199,199,199,199,199,199,199,199,199,199,199,200,200,200,200,200,200,200,200,200,200,200,200,200,200,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,202,202,202,202,202,202,202,203,203,203,203,203,203,203,203,203,203,203,203,203,204,204,204,204,204,204,204,204,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,206,206,207,207,207,207,207,207,207,207,207,207,207,207,207,208,208,208,208,208,208,208,208,208,208,208,208,208,208,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,210,210,210,210,210,210,210,210,210,210,210,210,210,210,211,211,211,211,211,211,211,211,211,211,211,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,214,214,214,214,214,214,214,214,214,214,214,214,214,215,215,215,215,215,215,215,215,215,215,216,216,216,216,216,
+		216,216,216,216,216,216,217,217,217
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,5,6,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,
+		15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,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,19,20,20,20,20,20,20,20,21,21,21,21,21,21,21,22,22,22,22,22,22,23,23,23,23,23,24,24,24,24,24,24,25,25,25,25,25,26,26,26,26,27,27,27,27,27,28,28,28,28,29,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,36,37,37,37,37,38,38,38,38,38,39,39,39,39,40,40,40,40,40,41,41,41,41,42,42,42,42,42,43,43,43,43,43,44,44,44,44,44,45,45,45,45,45,46,46,46,46,46,47,47,47,47,47,48,48,48,48,48,48,49,49,49,49,49,49,50,50,50,50,50,51,51,51,51,51,51,52,52,52,52,52,52,53,53,53,53,53,53,54,54,54,54,54,55,55,55,55,55,
+		55,56,56,56,56,56,56,56,57,57,57,57,57,57,58,58,58,58,58,58,59,59,59,59,59,59,59,60,60,60,60,60,60,61,61,61,61,61,61,61,62,62,62,62,62,62,62,63,63,63,63,63,63,63,64,64,64,64,64,64,64,65,65,65,65,65,65,65,65,66,66,66,66,66,66,66,66,67,67,67,67,67,67,67,68,68,68,68,68,68,68,69,69,69,69,69,69,69,69,70,70,70,70,70,70,70,70,71,71,71,71,71,71,71,71,72,72,72,72,72,72,72,72,72,73,73,73,73,73,73,73,73,73,74,74,74,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,77,77,77,77,78,78,78,78,78,78,78,78,78,79,79,79,79,79,79,79,79,80,80,80,80,80,80,80,80,80,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,83,84,84,84,84,84,84,84,84,84,85,85,85,85,85,85,85,85,86,86,86,86,86,86,86,86,86,86,87,87,87,87,87,87,
+		87,87,88,88,88,88,88,88,88,88,88,89,89,89,89,89,89,89,89,89,90,90,90,90,90,90,90,90,90,91,91,91,91,91,91,91,91,92,92,92,92,92,92,92,92,92,93,93,93,93,93,93,93,93,93,94,94,94,94,94,94,94,94,95,95,95,95,95,95,95,95,96,96,96,96,96,96,96,96,97,97,97,97,97,97,97,97,98,98,98,98,98,98,98,98,98,99,99,99,99,99,99,99,100,100,100,100,100,100,100,100,101,101,101,101,101,101,101,101,102,102,102,102,102,102,102,102,103,103,103,103,103,103,103,103,103,104,104,104,104,104,104,104,105,105,105,105,105,105,105,106,106,106,106,106,106,106,107,107,107,107,107,107,107,107,108,108,108,108,108,108,108,108,109,109,109,109,109,109,109,109,110,110,110,110,110,110,110,110,111,111,111,111,111,111,111,112,112,112,112,112,112,112,113,113,113,113,113,113,113,114,114,114,114,114,114,114,114,115,115,115,115,115,115,115,115,116,116,116,116,116,116,116,116,117,117,117,117,117,117,117,118,118,118,118,118,118,118,118,119,119,119,119,119,119,
+		120,120,120,120,120,120,120,120,121,121,121,121,121,121,121,121,122,122,122,122,122,122,122,122,123,123,123,123,123,123,123,123,123,124,124,124,124,124,124,124,124,125,125,125,125,125,125,125,125,126,126,126,126,126,126,126,127,127,127,127,127,127,127,128,128,128,128,128,128,128,128,129,129,129,129,129,129,129,129,129,129,130,130,130,130,130,130,130,131,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,132,132,133,133,133,133,133,133,133,133,134,134,134,134,134,134,134,134,134,135,135,135,135,135,135,135,135,136,136,136,136,136,136,136,136,136,137,137,137,137,137,137,137,137,137,137,138,138,138,138,138,138,138,138,138,139,139,139,139,139,139,139,139,139,139,140,140,140,140,140,140,140,140,140,141,141,141,141,141,141,141,141,141,142,142,142,142,142,142,142,142,142,143,143,143,143,143,143,143,143,143,143,143,143,144,144,144,144,144,144,144,144,144,144,145,145,145,145,145,145,145,145,145,146,146,146,146,146,146,146,146,146,146,146,146,146,147,147,147,147,147,147,147,147,147,147,148,148,148,148,148,
+		148,148,148,148,148,148,148,149,149,149,149,149,149,149,149,149,149,149,150,150,150,150,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,151,151,151,151,151,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,154,154,154,154,154,154,154,154,154,154,154,154,154,154,155,155,155,155,155,155,155,155,155,155,156,156,156,156,156,156,156,156,156,156,156,157,157,157,157,157,157,157,157,157,157,157,157,157,157,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,159,159,159,159,159,159,159,159,159,159,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,161,161,161,161,161,161,161,161,161,161,161,161,162,162,162,162,162,162,162,162,162,162,162,162,162,163,163,163,163,163,163,163,163,163,163,163,163,163,163,164,164,164,164,164,164,164,164,164,164,164,164,164,164,165,165,165,165,165,165,165,165,165,165,165,165,166,166,166,166,166,166,166,166,166,166,166,166,167,167,167,167,167,167,167,167,167,167,167,167,167,167,168,168,168,168,168,168,
+		168,168,168,168,168,168,168,168,168,168,169,169,169,169,169,169,169,169,169,170,170,170,170,170,170,170,170,170,170,170,170,170,170,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,172,172,172,172,172,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,175,175,175,175,175,175,175,175,175,175,175,176,176,176,176,176,176,176,176,176,176,176,176,176,176,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,178,178,178,178,178,178,178,178,178,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,184,184,184,184,184,184,184,184,184,184,184,184,184,185,185,185,185,185,185,185,185,185,185,185,185,185,
+		185,185,185,185,185,186,186,186,186,186,186,186,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,187,187,187,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,197,197,197,197,197,197,197,197,197,197,197,197,197,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,199,199,199,199,199,199,199,199,199,199,199,199,200,200,200,200,200,
+		200,200,200,200,200,200,200,200,200
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,3,4,5,6,6,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,
+		14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,22,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,25,25,25,25,25,25,26,26,26,26,26,27,27,27,27,28,28,28,28,28,29,29,29,29,29,30,30,30,30,30,31,31,31,31,31,32,32,32,32,33,33,33,33,33,34,34,34,34,34,35,35,35,35,36,36,36,36,36,37,37,37,37,37,38,38,38,38,38,39,39,39,39,39,40,40,40,40,40,41,41,41,41,41,41,42,42,42,42,42,43,43,43,43,43,43,44,44,44,44,44,45,45,45,45,45,45,46,46,46,46,46,46,47,
+		47,47,47,47,47,48,48,48,48,48,48,49,49,49,49,49,49,50,50,50,50,50,50,51,51,51,51,51,51,52,52,52,52,52,52,52,53,53,53,53,53,53,53,54,54,54,54,54,54,54,55,55,55,55,55,55,56,56,56,56,56,56,56,57,57,57,57,57,57,57,57,58,58,58,58,58,58,58,59,59,59,59,59,59,59,59,60,60,60,60,60,60,60,60,61,61,61,61,61,61,61,62,62,62,62,62,62,62,62,63,63,63,63,63,63,63,63,63,64,64,64,64,64,64,64,64,65,65,65,65,65,65,65,65,66,66,66,66,66,66,66,66,66,67,67,67,67,67,67,67,67,67,68,68,68,68,68,68,68,68,68,69,69,69,69,69,69,69,69,69,69,70,70,70,70,70,70,70,70,70,71,71,71,71,71,71,71,71,71,72,72,72,72,72,72,72,72,72,73,73,73,73,73,73,73,73,73,73,73,74,74,74,74,74,74,74,74,74,74,75,75,75,75,75,75,75,75,75,75,76,76,76,76,76,76,76,76,76,76,77,77,77,77,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,80,81,81,81,81,81,81,81,81,81,81,82,82,82,82,82,82,82,82,82,82,82,83,83,83,83,83,83,83,83,83,83,84,84,84,84,84,84,84,84,84,84,84,85,85,85,85,85,85,85,85,85,85,86,86,86,86,86,86,86,86,86,86,87,87,87,87,87,87,87,87,87,87,88,88,88,88,88,88,88,88,88,88,89,89,89,89,89,89,89,89,89,89,90,90,90,90,90,90,90,90,90,90,91,91,91,91,91,91,91,91,91,92,92,92,92,92,92,92,92,92,93,93,93,93,93,93,93,93,93,93,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,97,97,97,97,97,97,97,97,97,98,98,98,98,98,98,98,98,98,99,99,99,99,99,99,99,99,100,100,100,100,100,100,100,100,100,101,101,101,101,101,101,101,101,101,102,102,102,102,102,102,102,102,103,103,103,103,103,103,103,103,103,104,104,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,108,108,108,108,108,108,108,108,108,109,109,109,109,109,109,109,109,110,110,110,110,110,110,110,110,111,111,111,111,111,111,111,111,112,112,112,112,112,112,112,112,112,113,113,113,113,113,113,113,113,114,114,114,114,114,114,114,114,115,115,115,115,115,115,115,115,115,116,116,116,116,116,116,116,116,117,117,117,117,117,117,117,117,117,118,118,118,118,118,118,118,118,119,119,119,119,119,119,119,119,120,120,120,120,120,120,120,120,121,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,124,124,124,124,124,124,124,124,125,125,125,125,125,125,125,125,125,126,126,126,126,126,126,126,126,127,127,127,127,127,127,127,127,127,128,128,128,128,128,128,128,128,128,129,129,129,129,129,129,129,129,129,130,130,130,130,130,130,130,130,130,130,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,132,132,133,133,133,133,133,133,133,133,133,133,133,134,134,134,134,134,134,134,
+		134,134,134,134,135,135,135,135,135,135,135,135,135,136,136,136,136,136,136,136,136,136,136,137,137,137,137,137,137,137,137,137,137,137,138,138,138,138,138,138,138,138,138,138,139,139,139,139,139,139,139,139,139,139,140,140,140,140,140,140,140,140,140,140,140,141,141,141,141,141,141,141,141,141,141,141,141,142,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,144,144,144,144,144,145,145,145,145,145,145,145,145,145,146,146,146,146,146,146,146,146,146,146,146,146,146,147,147,147,147,147,147,147,147,147,147,147,147,147,148,148,148,148,148,148,148,148,148,148,148,148,149,149,149,149,149,149,149,149,149,149,149,149,149,149,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,151,151,151,151,151,151,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,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,155,155,155,155,155,155,155,155,155,155,
+		155,155,155,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,157,157,157,157,157,157,157,157,157,157,157,157,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,159,159,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,160,160,160,161,161,161,161,161,161,161,161,161,161,161,161,161,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,164,164,164,164,164,164,164,164,164,164,164,164,164,164,165,165,165,165,165,165,165,165,165,165,165,165,165,165,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,172,172,172,172,172,
+		172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,175,175,175,175,175,175,175,175,175,175,175,175,175,175,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,179,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,186,186,186,186,186,186,186,186,186,186,186,186,186,187,
+		187,187,187,187,187,187,187,187,187
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,5,6,6,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,
+		13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,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,25,25,25,25,25,25,26,26,26,26,26,27,27,27,27,27,28,28,28,28,28,29,29,29,29,29,30,30,30,30,30,31,31,31,31,31,32,32,32,32,32,33,33,33,33,33,34,34,34,34,34,35,35,35,35,35,36,36,36,36,36,37,37,37,37,37,37,38,38,38,38,38,39,39,39,39,39,39,40,40,40,40,40,
+		41,41,41,41,41,41,42,42,42,42,42,42,43,43,43,43,43,43,44,44,44,44,44,44,45,45,45,45,45,45,46,46,46,46,46,46,47,47,47,47,47,47,48,48,48,48,48,48,48,49,49,49,49,49,49,49,50,50,50,50,50,50,51,51,51,51,51,51,51,52,52,52,52,52,52,52,53,53,53,53,53,53,53,53,54,54,54,54,54,54,54,55,55,55,55,55,55,55,56,56,56,56,56,56,56,56,56,57,57,57,57,57,57,57,57,58,58,58,58,58,58,58,58,59,59,59,59,59,59,59,59,60,60,60,60,60,60,60,60,60,61,61,61,61,61,61,61,61,62,62,62,62,62,62,62,62,62,63,63,63,63,63,63,63,63,64,64,64,64,64,64,64,64,64,64,65,65,65,65,65,65,65,65,65,65,66,66,66,66,66,66,66,66,66,67,67,67,67,67,67,67,67,67,67,68,68,68,68,68,68,68,68,68,68,69,69,69,69,69,69,69,69,69,69,70,70,70,70,70,70,70,70,70,70,71,71,71,71,71,71,71,71,71,71,72,72,72,72,72,72,72,72,72,72,72,
+		72,73,73,73,73,73,73,73,73,73,73,73,74,74,74,74,74,74,74,74,74,74,75,75,75,75,75,75,75,75,75,75,75,75,76,76,76,76,76,76,76,76,76,76,76,76,77,77,77,77,77,77,77,77,77,77,77,78,78,78,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,80,81,81,81,81,81,81,81,81,81,81,81,82,82,82,82,82,82,82,82,82,82,82,82,82,83,83,83,83,83,83,83,83,83,83,83,83,83,84,84,84,84,84,84,84,84,84,84,84,84,85,85,85,85,85,85,85,85,85,85,86,86,86,86,86,86,86,86,86,86,86,86,87,87,87,87,87,87,87,87,87,87,88,88,88,88,88,88,88,88,88,88,88,88,89,89,89,89,89,89,89,89,89,89,90,90,90,90,90,90,90,90,90,90,90,90,91,91,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,93,93,93,93,94,94,94,94,94,94,94,94,94,95,95,95,95,95,95,95,95,
+		95,95,95,95,96,96,96,96,96,96,96,96,96,96,97,97,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,101,101,101,101,101,101,101,101,101,102,102,102,102,102,102,102,102,102,102,103,103,103,103,103,103,103,103,103,103,104,104,104,104,104,104,104,104,104,105,105,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,108,108,108,108,108,108,108,108,109,109,109,109,109,109,109,109,109,110,110,110,110,110,110,110,110,111,111,111,111,111,111,111,111,111,111,111,112,112,112,112,112,112,112,112,113,113,113,113,113,113,113,113,113,114,114,114,114,114,114,114,114,114,115,115,115,115,115,115,115,116,116,116,116,116,116,116,116,116,116,116,117,117,117,117,117,117,117,117,117,118,118,118,118,118,118,118,118,118,119,119,119,119,119,119,119,119,119,120,120,120,120,120,120,120,120,120,121,121,121,121,121,121,121,121,121,122,122,122,122,122,122,122,122,122,123,123,
+		123,123,123,123,123,123,123,123,123,123,124,124,124,124,124,124,124,124,124,125,125,125,125,125,125,125,125,126,126,126,126,126,126,126,126,126,126,126,127,127,127,127,127,127,127,127,127,127,128,128,128,128,128,128,128,128,128,128,129,129,129,129,129,129,129,129,129,130,130,130,130,130,130,130,130,130,131,131,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,132,132,132,133,133,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,135,135,135,135,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,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,139,139,139,139,140,140,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,143,143,143,144,144,144,144,144,144,144,144,144,144,144,144,144,145,145,145,145,145,145,145,145,145,145,145,145,146,146,146,146,146,146,146,
+		146,146,146,146,146,146,146,146,147,147,147,147,147,147,147,147,147,147,147,147,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,149,149,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,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,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,153,153,153,153,154,154,154,154,154,154,154,154,154,154,154,154,154,155,155,155,155,155,155,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,156,156,156,156,156,156,156,156,156,156,157,157,157,157,157,157,157,157,157,157,157,157,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,159,159,159,159,159,159,159,159,159,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,160,160,160,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,162,162,162,
+		162,162,162,162,162,162,162,162,162,162,162,162,162,162,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,164,164,164,164,164,164,164,164,164,164,164,164,164,164,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,170,170,170,170,170,170,170,170,170,170,170,170,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,174,174,174,174,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,
+		177,177,177,177,177,177,177,177,177
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,5,6,6,6,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
+		11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,23,23,23,23,23,23,23,24,24,24,24,24,24,25,25,25,25,25,25,26,26,26,26,26,26,27,27,27,27,27,27,28,28,28,28,28,29,29,29,
+		29,29,29,30,30,30,30,30,31,31,31,31,31,31,32,32,32,32,32,33,33,33,33,33,33,34,34,34,34,34,34,35,35,35,35,35,35,36,36,36,36,36,36,37,37,37,37,37,37,38,38,38,38,38,38,39,39,39,39,39,39,40,40,40,40,40,40,41,41,41,41,41,41,42,42,42,42,42,42,42,43,43,43,43,43,43,43,44,44,44,44,44,44,45,45,45,45,45,45,45,46,46,46,46,46,46,46,47,47,47,47,47,47,47,47,48,48,48,48,48,48,48,48,49,49,49,49,49,49,49,49,50,50,50,50,50,50,50,50,51,51,51,51,51,51,51,52,52,52,52,52,52,52,52,53,53,53,53,53,53,53,53,53,54,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,57,57,57,57,57,57,57,57,57,57,58,58,58,58,58,58,58,58,58,59,59,59,59,59,59,59,59,59,59,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,63,64,64,64,64,64,64,64,64,64,64,64,65,65,65,65,65,65,65,65,65,65,66,66,66,66,66,66,66,66,66,66,67,67,67,67,67,67,67,67,67,67,67,67,67,68,68,68,68,68,68,68,68,68,68,68,69,69,69,69,69,69,69,69,69,69,69,69,69,70,70,70,70,70,70,70,70,70,70,70,70,70,71,71,71,71,71,71,71,71,71,71,71,72,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,73,73,74,74,74,74,74,74,74,74,74,74,74,74,75,75,75,75,75,75,75,75,75,75,75,75,75,75,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,77,77,77,77,77,77,77,77,77,77,77,77,77,78,78,78,78,78,78,78,78,78,78,78,78,78,78,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,80,80,80,80,80,80,80,80,80,80,80,80,80,80,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,82,82,82,82,82,82,82,82,82,82,82,82,82,82,83,83,83,83,
+		83,83,83,83,83,83,83,83,83,83,83,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,86,86,86,86,86,86,86,86,86,86,86,86,86,87,87,87,87,87,87,87,87,87,87,87,87,87,87,88,88,88,88,88,88,88,88,88,88,88,88,88,89,89,89,89,89,89,89,89,89,89,89,89,89,89,90,90,90,90,90,90,90,90,90,90,90,90,91,91,91,91,91,91,91,91,91,91,91,91,91,92,92,92,92,92,92,92,92,92,92,92,93,93,93,93,93,93,93,93,93,93,93,93,93,93,94,94,94,94,94,94,94,94,94,94,94,94,95,95,95,95,95,95,95,95,95,95,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,97,97,97,97,97,97,97,97,97,97,98,98,98,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,100,100,100,101,101,101,101,101,101,101,101,101,101,102,102,102,102,102,102,102,102,102,102,102,102,103,103,103,103,103,
+		103,103,103,103,103,103,103,104,104,104,104,104,104,104,104,105,105,105,105,105,105,105,105,105,106,106,106,106,106,106,106,106,106,106,106,106,106,106,107,107,107,107,107,107,107,107,107,107,108,108,108,108,108,108,108,108,108,108,109,109,109,109,109,109,109,109,109,109,109,110,110,110,110,110,110,110,110,110,110,110,111,111,111,111,111,111,111,111,111,111,111,111,112,112,112,112,112,112,112,112,112,113,113,113,113,113,113,113,113,113,113,113,114,114,114,114,114,114,114,114,114,114,115,115,115,115,115,115,115,115,115,115,115,116,116,116,116,116,116,116,116,116,117,117,117,117,117,117,117,117,117,117,117,117,118,118,118,118,118,118,118,118,118,119,119,119,119,119,119,119,119,119,119,119,119,120,120,120,120,120,120,120,120,120,120,121,121,121,121,121,121,121,121,121,121,121,121,122,122,122,122,122,122,122,122,122,122,122,123,123,123,123,123,123,123,123,123,123,123,124,124,124,124,124,124,124,124,124,124,125,125,125,125,125,125,125,125,125,125,126,126,126,126,126,126,126,126,126,126,126,126,126,127,127,127,
+		127,127,127,127,127,127,128,128,128,128,128,128,128,128,128,128,128,128,128,129,129,129,129,129,129,129,129,129,129,129,129,130,130,130,130,130,130,130,130,130,130,131,131,131,131,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,132,132,132,132,132,133,133,133,133,133,133,133,133,133,133,133,133,134,134,134,134,134,134,134,134,134,134,134,134,134,135,135,135,135,135,135,135,135,135,135,135,135,136,136,136,136,136,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,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,140,140,140,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,142,142,142,142,142,142,142,142,143,143,143,143,143,143,143,143,143,143,143,143,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,146,146,146,146,146,146,146,146,146,
+		146,146,146,146,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,152,152,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,153,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,155,155,155,155,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,156,156,156,156,156,156,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,
+		160,160,160,160,160,160,160,160,160
+	},
+	{
+		0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,5,6,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,
+		11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,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,22,22,22,22,22,22,22,22,23,23,23,23,23,23,
+		23,24,24,24,24,24,24,25,25,25,25,25,25,25,26,26,26,26,26,26,27,27,27,27,27,27,28,28,28,28,28,28,29,29,29,29,29,29,30,30,30,30,30,30,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,33,33,34,34,34,34,34,34,35,35,35,35,35,35,36,36,36,36,36,36,37,37,37,37,37,37,37,38,38,38,38,38,38,39,39,39,39,39,39,40,40,40,40,40,40,40,41,41,41,41,41,41,41,42,42,42,42,42,42,42,43,43,43,43,43,43,43,43,44,44,44,44,44,44,44,45,45,45,45,45,45,45,45,46,46,46,46,46,46,46,47,47,47,47,47,47,47,47,48,48,48,48,48,48,48,48,49,49,49,49,49,49,49,49,50,50,50,50,50,50,50,50,50,51,51,51,51,51,51,51,51,51,52,52,52,52,52,52,52,52,52,53,53,53,53,53,53,53,53,53,54,54,54,54,54,54,54,54,54,54,55,55,55,55,55,55,55,55,55,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,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,62,63,63,63,63,63,63,63,63,63,63,63,64,64,64,64,64,64,64,64,64,64,64,64,65,65,65,65,65,65,65,65,65,65,65,66,66,66,66,66,66,66,66,66,66,66,66,67,67,67,67,67,67,67,67,67,67,67,67,67,67,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,70,70,70,70,70,70,70,70,70,70,70,70,71,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,72,72,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,75,75,75,75,75,75,75,75,75,75,75,75,75,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,78,78,78,78,
+		78,78,78,78,78,78,78,78,78,78,78,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,83,83,83,83,83,83,83,83,83,83,83,83,83,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,85,85,85,85,85,85,85,85,85,85,85,85,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,88,88,88,88,88,88,88,88,88,88,88,88,88,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,91,91,91,91,91,91,91,91,91,91,91,91,91,91,92,92,92,92,92,92,92,92,92,92,92,92,93,93,93,93,93,93,93,93,93,93,93,93,93,94,94,94,94,94,94,94,94,94,94,94,94,94,95,95,95,95,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,97,97,97,97,97,97,97,98,98,98,98,98,98,98,98,98,98,98,98,99,99,99,99,99,99,99,99,99,99,99,99,99,100,100,100,100,100,100,100,100,100,100,100,101,101,101,101,101,101,101,101,101,101,101,101,101,102,102,102,102,102,102,102,102,102,102,103,103,103,103,103,103,103,103,103,103,103,103,104,104,104,104,104,104,104,104,104,104,104,104,105,105,105,105,105,105,105,105,105,105,105,106,106,106,106,106,106,106,106,106,106,106,106,106,107,107,107,107,107,107,107,107,107,107,107,107,107,108,108,108,108,108,108,108,108,108,108,109,109,109,109,109,109,109,109,109,109,110,110,110,110,110,110,110,110,110,110,110,110,110,110,111,111,111,111,111,111,111,111,111,111,111,111,112,112,112,112,112,112,112,112,112,112,113,113,113,113,113,113,113,113,113,113,113,114,114,114,114,114,114,114,114,114,114,114,114,114,115,115,115,115,115,115,115,115,115,115,115,116,116,116,116,116,116,116,116,116,116,116,116,117,117,117,
+		117,117,117,117,117,117,117,117,117,118,118,118,118,118,118,118,118,118,119,119,119,119,119,119,119,119,119,119,119,119,119,120,120,120,120,120,120,120,120,120,120,121,121,121,121,121,121,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,124,124,124,124,125,125,125,125,125,125,125,125,125,125,125,126,126,126,126,126,126,126,126,126,126,126,126,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,128,128,128,128,128,128,128,128,128,128,128,128,128,129,129,129,129,129,129,129,129,129,129,129,129,130,130,130,130,130,130,130,130,130,130,131,131,131,131,131,131,131,131,131,131,131,131,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,133,133,133,133,133,133,133,133,133,133,133,133,134,134,134,134,134,134,134,134,134,134,134,134,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,136,136,136,136,136,136,136,136,136,136,136,136,136,137,137,137,137,137,137,137,137,137,137,137,137,137,
+		137,137,137,138,138,138,138,138,138,138,138,138,138,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,140,140,140,140,140,140,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,141,142,142,142,142,142,142,142,142,142,142,142,142,142,142,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,144,144,144,144,144,144,144,144,144,144,144,144,144,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,149,149,149,149,149,149,149,149,149,149,149,149,149,149,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,151,151,151,151,151,151,151,151,151,151,151,151,151,151,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,
+		152,152,152,152,152,152,152,152,152
+	}
+};
+
