/*
 Helper program for https://oeis.org/A309095
 Find the smallest number of geometric progressions that cover the numbers 1, 2, ... N
 See end of file for best known results
 https://math.stackexchange.com/questions/1385991/what-is-known-about-the-minimal-number-fn-of-geometric-progressions-needed-t?lq=1

 By Dmitry Kamenetsky, 20th July 2019
*/


import java.util.*;


public class CoveringGP
{
	static int N;
	static List<GP> GPs = new ArrayList<GP>();

	public static void main(String[] args)	
	{
		if (args.length!=1)
		{
			System.out.println("usage: java CoveringGP N");
			System.out.println("Finds the smallest number of geometric progressions that cover the numbers 1, 2, ..., N");
			System.out.println("Only prints progressions with 3 or more terms, the remaining numbers can be covered with one progression for each two numbers");
			System.exit(0);
		}
		N=Integer.parseInt(args[0]);


		generateGPSrational();		
		solve();
	}

	public static void generateGPSrational()
	{
		//first,second
		boolean[][] seen=new boolean[N+1][N+1];

		System.out.println("progressions with 3 or more terms:");

		for (int i=1; i<=N; i++)
		{
			for (int k=i+1; k<=N; k++)
			{
				if (seen[i][k]) continue;


				int div=getMinDivisor(i,k);
				if (div==-1) continue;
				int mult=k/(i/div);

				int cur=i;
				GP gp=new GP();

				while(true)
				{
					gp.a.add(cur);

					if (cur%div!=0) break;
					cur/=div;
					cur*=mult;
					if (cur>N) break;
				}

				if (gp.a.size()>=3)
				{
					for (int a : gp.a) System.out.print(a+" ");
					System.out.println();

					GPs.add(gp);

					//update seen
					for (int p=0; p<gp.a.size(); p++)
						for (int q=p+1; q<gp.a.size(); q++)
							seen[gp.a.get(p)][gp.a.get(q)]=true;
				}
			}
		}

		System.out.println("total number of progressions: "+GPs.size()+"\n");
	}

	//b>a
	public static int getMinDivisor(int a, int b)
	{
		for (int i=1; i<=Math.min(a,b); i++)
			if (a%i==0 && b%i==0 && b%(a/i)==0) return i;
		return -1;
	}

	
	public static void solve()
	{
    int n=GPs.size();
    int maxChanges=5;
    int bestScore=Integer.MAX_VALUE;

    if (n==0)
    {
    	System.out.println("progressions needed: "+(N+1)/2);
    	return;
    }
    
    
    boolean[] bestA=new boolean[n];
    for (int i=0; i<n; i++) bestA[i]=(Math.random()<0.5);
    
    boolean[] a=new boolean[n];
    
    while(true)
    {
      for (int i=0; i<n; i++) a[i]=bestA[i];
      
      int changes=(int)(Math.random()*maxChanges+1);
      for (int i=0; i<changes; i++)
      {
        int pos=(int)(Math.random()*n);
        a[pos]=!a[pos];
      }
      
      optimize(a);
      int score=score(a);

      if (score<=bestScore)
      {
        if (score<bestScore && score<=N/2)
        {
          System.out.println("progressions needed: "+score);
          print(a);
          System.out.println("progressions needed: "+score);
          System.out.println();
        }
        bestScore=score;
        
        for (int i=0; i<n; i++) bestA[i]=a[i];
      }
    }
	}

	public static void optimize(boolean[] a)
	{
		int[] counts=new int[N+1];
		int sets=0;
		int unique=0;
    for (int i=0; i<GPs.size(); i++)
      if (a[i])
      {
        sets++;
        for (int k : GPs.get(i).a)
        {
        	counts[k]++;
        	if (counts[k]==1) unique++;
        }
      }		

    int missing=N-unique;
    int extraSets=(missing+1)/2;
    int score=sets+extraSets;

    if (score!=score(a)) System.out.println("aaargh! "+score+" "+score(a));

    int G=GPs.size();
    int[] ind=new int[G];
    for (int i=0; i<ind.length; i++) ind[i]=i;


    while(true)
    {
    	boolean changed=false;
    	shuffle(ind);

    	for (int i=0; i<ind.length; i++)
    	{
    		int pos=ind[i];

    		int newSets=sets;
    		int newUnique=unique;

    		//remove set
    		if (a[pos])
    		{
    			newSets--;
    			for (int k : GPs.get(pos).a)
    			{
    				counts[k]--;
    				if (counts[k]==0) newUnique--;
    			}
    			a[pos]=false;
    		}
    		//add set
    		else
    		{
    			newSets++;
    			for (int k : GPs.get(pos).a)
    			{
    				counts[k]++;
    				if (counts[k]==1) newUnique++;
    			}    			
    			a[pos]=true;
    		}

    		missing=N-newUnique;
    		extraSets=(missing+1)/2;
    		int newScore=newSets+extraSets;    		

    		//if (newScore!=score(a)) System.out.println("aaaargh2 "+newScore+" "+score(a));

    		if (newScore<=score)
    		{
    			if (newScore<score) changed=true;
    			score=newScore;
    			sets=newSets;
    			unique=newUnique;
    		}
    		//undo
    		else
    		{
	    		//remove set
	    		if (a[pos])
	    		{
	    			for (int k : GPs.get(pos).a)
	    				counts[k]--;

	    			a[pos]=false;
	    		}
	    		//add set
	    		else
	    		{
	    			for (int k : GPs.get(pos).a)
	    				counts[k]++;

	    			a[pos]=true;
	    		}
    		}
    	}

    	if (!changed) break;
    }
	}	
	
	
	//computes number of sets needed to cover all numbers
	public static int score(boolean[] a)
	{    
    Set<Integer> covered=new HashSet<Integer>();    //integers that are covered
    
    int sets=0;
    for (int i=0; i<GPs.size(); i++)
      if (a[i])
      {
        sets++;
        for (int k : GPs.get(i).a) covered.add(k);
      }
   
    int missing=N-covered.size();
    int extraSets=(missing+1)/2;      //extra sets can cover up to 2 numbers each
    
    return sets+extraSets;
  }

  //shuffle the array randomly
  public static void shuffle(int[] a)
  {
    for (int i=0; i<a.length; i++)
    {
      int k=(int)(Math.random()*(a.length-i)+i);
      int temp=a[i];  
      a[i]=a[k];
      a[k]=temp;  
    }   
  }     
  
  public static void print(boolean[] a)
  {
    for (int i=0; i<GPs.size(); i++)
    {
      if (a[i])
      {
        GPs.get(i).print();
        System.out.print(", ");
      }
    }
    System.out.println();
  }


	static class GP
	{
		List<Integer> a;
		public GP()
		{
			a=new ArrayList<Integer>();
		}
		
		void print()
		{
      System.out.print("(");
      for (int i=0; i<a.size(); i++)
      {
        System.out.print(a.get(i));
        if (i<a.size()-1) System.out.print(",");
      }
      System.out.print(")");
		}
	}
}

/*

RESULTS

N=100
progressions needed: 36
(1,2,4,8,16,32,64), (3,6,12,24,48,96), (5,10,20,40,80), (7,14,28,56), (9,18,36,72), (11,22,44,88), (13,26,52), (15,30,60), (17,34,68), (19,38,76), (21,42,84), (23,46,92), (25,35,49), (27,45,75), (44,66,99), (50,70,98), (81,90,100)

N=200
progressions needed: 73
(1,2,4,8,16,32,64,128), (3,6,12,24,48,96,192), (5,10,20,40,80,160), (7,14,28,56,112), (9,18,36,72,144), (11,22,44,88,176), (13,26,52,104), (15,30,60,120), (17,34,68,136), (19,38,76,152), (19,57,171), (21,42,84,168), (23,46,92,184), (25,65,169), (27,45,75,125), (29,58,116), (31,62,124), (33,66,132), (35,70,140), (37,74,148), (39,78,156), (41,82,164), (43,86,172), (47,94,188), (49,98,196), (54,90,150), (63,105,175), (68,102,153), (81,99,121), (108,126,147), (162,180,200)

N=500
progressions needed: 182
(1,2,4,8,16,32,64,128,256), (3,6,12,24,48,96,192,384), (5,10,20,40,80,160,320), (7,14,28,56,112,224,448), (9,18,36,72,144,288), (11,22,44,88,176,352), (13,26,52,104,208,416), (15,30,60,120,240,480), (17,34,68,136,272), (19,38,76,152,304), (21,42,84,168,336), (23,46,92,184,368), (25,50,100,200,400), (27,45,75,125), (29,58,116,232,464), (31,62,124,248,496), (33,66,132,264), (35,70,140,280), (37,74,148,296), (39,78,156,312), (41,82,164,328), (43,86,172,344), (46,138,414), (47,94,188,376), (49,98,196,392), (51,102,204,408), (53,106,212,424), (54,90,150,250), (55,110,220,440), (57,114,228,456), (59,118,236,472), (61,122,244,488), (63,105,175), (65,130,260), (67,134,268), (71,142,284), (73,146,292), (77,154,308), (79,158,316), (81,135,225,375), (83,166,332), (85,170,340), (87,174,348), (88,132,198,297), (89,178,356), (91,182,364), (93,186,372), (95,190,380), (97,194,388), (99,165,275), (101,202,404), (103,206,412), (104,156,234,351), (107,214,428), (108,180,300,500), (109,218,436), (111,222,444), (113,226,452), (115,230,460), (119,238,476), (121,143,169), (123,246,492), (126,210,350), (136,204,306,459), (147,189,243), (153,255,425), (162,270,450), (171,285,475), (188,282,423), (207,276,368), (216,252,294,343), (220,330,495), (242,286,338), (245,315,405), (289,357,441), (294,378,486), (324,342,361), (325,390,468), (360,420,490), (363,396,432), (441,462,484)

N=1000
progressions needed: 362
(1,2,4,8,16,32,64,128,256,512), (3,6,12,24,48,96,192,384,768), (5,10,20,40,80,160,320,640), (7,14,28,56,112,224,448,896), (9,18,36,72,144,288,576), (11,22,44,88,176,352,704), (13,26,52,104,208,416,832), (15,30,60,120,240,480,960), (17,34,68,136,272,544), (19,38,76,152,304,608), (21,42,84,168,336,672), (23,46,92,184,368,736), (25,50,100,200,400,800), (27,54,108,216,432,864), (29,58,116,232,464,928), (31,62,124,248,496,992), (33,66,132,264,528), (35,70,140,280,560), (37,74,148,296,592), (39,78,156,312,624), (41,82,164,328,656), (43,86,172,344,688), (45,90,180,360,720), (47,94,188,376,752), (49,98,196,392,784), (51,102,204,408,816), (53,106,212,424,848), (55,110,220,440,880), (57,114,228,456,912), (59,118,236,472,944), (61,122,244,488,976), (63,126,252,504), (65,130,260,520), (67,134,268,536), (69,138,276,552), (71,142,284,568), (73,146,292,584), (75,150,300,600), (77,154,308,616), (79,158,316,632), (81,135,225,375,625), (83,166,332,664), (85,170,340,680), (87,174,348,696), (89,178,356,712), (91,182,364,728), (93,186,372,744), (95,190,380,760), (97,194,388,776), (99,198,396,792), (101,202,404,808), (101,303,909), (103,206,412,824), (105,210,420,840), (107,214,428,856), (107,321,963), (109,218,436,872), (111,222,444,888), (112,168,252,378,567), (113,226,452,904), (115,230,460,920), (117,234,468,936), (119,238,476,952), (121,242,484,968), (123,246,492,984), (125,175,245,343), (127,254,508), (129,258,516), (131,262,524), (133,266,532), (137,274,548), (139,278,556), (141,282,564), (143,286,572), (145,290,580), (147,294,588), (149,298,596), (151,302,604), (153,255,425), (155,310,620), (157,314,628), (159,318,636), (161,322,644), (162,270,450,750), (163,326,652), (165,330,660), (167,334,668), (169,273,441), (171,285,475), (173,346,692), (177,354,708), (179,358,716), (181,362,724), (183,366,732), (185,370,740), (187,374,748), (189,315,525,875), (191,382,764), (193,386,772), (195,390,780), (197,394,788), (199,398,796), (201,402,804), (203,406,812), (205,410,820), (207,345,575), (209,418,836), (211,422,844), (213,426,852), (215,430,860), (217,434,868), (219,438,876), (221,442,884), (227,454,908), (229,458,916), (231,462,924), (233,466,932), (235,470,940), (237,474,948), (239,478,956), (241,482,964), (243,405,675), (247,494,988), (249,498,996), (250,350,490,686), (261,435,725), (279,465,775), (289,391,529), (297,495,825), (306,510,850), (324,558,961), (325,455,637), (333,555,925), (338,546,882), (342,570,950), (351,585,975), (361,399,441), (363,561,867), (388,582,873), (486,594,726), (500,550,605), (507,702,972), (539,693,891), (540,630,735), (578,646,722), (612,714,833), (648,756,882), (676,754,841), (684,798,931), (700,770,847), (729,810,900,1000), (845,910,980)

N=2000
progressions needed: 725
(1,2,4,8,16,32,64,128,256,512,1024), (3,6,12,24,48,96,192,384,768,1536), (5,10,20,40,80,160,320,640,1280), (7,14,28,56,112,224,448,896,1792), (9,18,36,72,144,288,576,1152), (11,22,44,88,176,352,704,1408), (13,26,52,104,208,416,832,1664), (15,30,60,120,240,480,960,1920), (17,34,68,136,272,544,1088), (19,38,76,152,304,608,1216), (21,42,84,168,336,672,1344), (23,46,92,184,368,736,1472), (25,50,100,200,400,800,1600), (27,54,108,216,432,864,1728), (29,58,116,232,464,928,1856), (31,62,124,248,496,992,1984), (33,66,132,264,528,1056), (35,70,140,280,560,1120), (37,74,148,296,592,1184), (39,78,156,312,624,1248), (41,82,164,328,656,1312), (43,86,172,344,688,1376), (45,90,180,360,720,1440), (47,94,188,376,752,1504), (49,98,196,392,784,1568), (51,102,204,408,816,1632), (53,106,212,424,848,1696), (55,110,220,440,880,1760), (57,114,228,456,912,1824), (59,118,236,472,944,1888), (61,122,244,488,976,1952), (63,126,252,504,1008), (65,130,260,520,1040), (67,134,268,536,1072), (69,138,276,552,1104), (71,142,284,568,1136), (73,146,292,584,1168), (75,150,300,600,1200), (77,154,308,616,1232), (79,158,316,632,1264), (81,162,324,648,1296), (83,166,332,664,1328), (85,170,340,680,1360), (87,174,348,696,1392), (89,178,356,712,1424), (91,182,364,728,1456), (93,186,372,744,1488), (95,190,380,760,1520), (97,194,388,776,1552), (99,198,396,792,1584), (101,202,404,808,1616), (103,206,412,824,1648), (105,210,420,840,1680), (107,214,428,856,1712), (109,218,436,872,1744), (111,222,444,888,1776), (113,226,452,904,1808), (115,230,460,920,1840), (117,234,468,936,1872), (119,238,476,952,1904), (121,242,484,968,1936), (123,246,492,984,1968), (125,250,500,1000,2000), (127,254,508,1016), (129,258,516,1032), (131,262,524,1048), (133,266,532,1064), (135,270,540,1080), (137,274,548,1096), (139,278,556,1112), (141,282,564,1128), (143,286,572,1144), (145,290,580,1160), (147,294,588,1176), (149,298,596,1192), (151,302,604,1208), (153,306,612,1224), (155,310,620,1240), (157,314,628,1256), (159,318,636,1272), (161,322,644,1288), (163,326,652,1304), (165,330,660,1320), (167,334,668,1336), (169,338,676,1352), (171,342,684,1368), (173,346,692,1384), (175,350,700,1400), (177,354,708,1416), (179,358,716,1432), (179,537,1611), (181,362,724,1448), (181,543,1629), (183,366,732,1464), (185,370,740,1480), (187,374,748,1496), (189,378,756,1512), (191,382,764,1528), (193,386,772,1544), (195,390,780,1560), (197,394,788,1576), (199,398,796,1592), (199,597,1791), (201,402,804,1608), (203,406,812,1624), (203,609,1827), (205,410,820,1640), (207,414,828,1656), (209,418,836,1672), (211,422,844,1688), (213,426,852,1704), (215,430,860,1720), (215,645,1935), (217,434,868,1736), (217,651,1953), (219,438,876,1752), (221,442,884,1768), (221,663,1989), (223,446,892,1784), (225,450,900,1800), (227,454,908,1816), (229,458,916,1832), (231,462,924,1848), (233,466,932,1864), (235,470,940,1880), (237,474,948,1896), (239,478,956,1912), (241,482,964,1928), (243,405,675,1125,1875), (245,490,980,1960), (247,494,988,1976), (249,498,996,1992), (251,502,1004), (253,506,1012), (255,510,1020), (257,514,1028), (259,518,1036), (261,435,725), (263,526,1052), (265,530,1060), (267,534,1068), (269,538,1076), (271,542,1084), (273,546,1092), (275,550,1100), (277,554,1108), (279,558,1116), (281,562,1124), (283,566,1132), (285,570,1140), (287,574,1148), (289,527,961), (291,582,1164), (293,586,1172), (295,590,1180), (297,495,825,1375), (299,598,1196), (301,602,1204), (303,606,1212), (305,610,1220), (307,614,1228), (311,622,1244), (313,626,1252), (315,630,1260), (317,634,1268), (319,638,1276), (321,642,1284), (323,646,1292), (325,650,1300), (327,654,1308), (329,658,1316), (331,662,1324), (333,555,925), (335,670,1340), (337,674,1348), (339,678,1356), (341,682,1364), (343,539,847,1331), (345,690,1380), (347,694,1388), (349,698,1396), (351,585,975,1625), (353,706,1412), (355,710,1420), (357,714,1428), (359,718,1436), (361,551,841), (363,627,1083), (365,730,1460), (367,734,1468), (369,615,1025), (369,738,1476), (371,742,1484), (373,746,1492), (375,525,735,1029), (377,754,1508), (379,758,1516), (381,762,1524), (383,766,1532), (385,770,1540), (389,778,1556), (391,782,1564), (393,786,1572), (395,790,1580), (397,794,1588), (399,798,1596), (401,802,1604), (403,806,1612), (407,814,1628), (409,818,1636), (411,822,1644), (413,826,1652), (415,830,1660), (417,834,1668), (419,838,1676), (421,842,1684), (423,705,1175), (425,595,833), (427,854,1708), (429,858,1716), (431,862,1724), (433,866,1732), (437,874,1748), (439,878,1756), (441,903,1849), (443,886,1772), (445,890,1780), (447,894,1788), (449,898,1796), (451,902,1804), (453,906,1812), (455,910,1820), (457,914,1828), (459,918,1836), (461,922,1844), (463,926,1852), (465,930,1860), (467,934,1868), (469,938,1876), (471,942,1884), (473,946,1892), (475,665,931), (477,795,1325), (479,958,1916), (481,962,1924), (483,966,1932), (485,970,1940), (486,810,1350), (487,974,1948), (488,732,1098,1647), (489,978,1956), (491,982,1964), (493,986,1972), (497,994,1988), (499,998,1996), (507,819,1323), (513,855,1425), (522,870,1450), (529,759,1089), (531,885,1475), (536,804,1206,1809), (549,915,1525), (567,945,1575), (575,805,1127), (578,1054,1922), (584,876,1314,1971), (594,990,1650), (603,1005,1675), (605,1045,1805), (621,1035,1725), (625,875,1225,1715), (637,1001,1573), (639,1065,1775), (657,1095,1825), (666,1110,1850), (668,1002,1503), (686,882,1134,1458), (692,1038,1557), (693,1155,1925), (702,1170,1950), (711,1185,1975), (722,1102,1682), (726,1188,1944), (729,999,1369), (750,1050,1470), (772,1158,1737), (775,1085,1519), (820,1230,1845), (836,1254,1881), (845,1105,1445), (850,1190,1666), (867,1122,1452), (891,1287,1859), (950,1330,1862), (972,1242,1587), (1014,1326,1734), (1044,1218,1421), (1058,1150,1250), (1075,1290,1548), (1078,1386,1782), (1156,1394,1681), (1183,1274,1372), (1210,1430,1690), (1215,1485,1815), (1325,1590,1908), (1332,1554,1813), (1377,1530,1700), (1404,1638,1911), (1444,1482,1521), (1539,1710,1900), (1764,1806,1849)

N=10000
progressions needed: 3620
(1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192), (3,6,12,24,48,96,192,384,768,1536,3072,6144), (5,10,20,40,80,160,320,640,1280,2560,5120), (7,14,28,56,112,224,448,896,1792,3584,7168), (9,18,36,72,144,288,576,1152,2304,4608,9216), (11,22,44,88,176,352,704,1408,2816,5632), (13,26,52,104,208,416,832,1664,3328,6656), (15,30,60,120,240,480,960,1920,3840,7680), (17,34,68,136,272,544,1088,2176,4352,8704), (19,38,76,152,304,608,1216,2432,4864,9728), (21,42,84,168,336,672,1344,2688,5376), (23,46,92,184,368,736,1472,2944,5888), (25,50,100,200,400,800,1600,3200,6400), (27,54,108,216,432,864,1728,3456,6912), (29,58,116,232,464,928,1856,3712,7424), (31,62,124,248,496,992,1984,3968,7936), (33,66,132,264,528,1056,2112,4224,8448), (35,70,140,280,560,1120,2240,4480,8960), (37,74,148,296,592,1184,2368,4736,9472), (39,78,156,312,624,1248,2496,4992,9984), (41,82,164,328,656,1312,2624,5248), (43,86,172,344,688,1376,2752,5504), (45,90,180,360,720,1440,2880,5760), (47,94,188,376,752,1504,3008,6016), (49,98,196,392,784,1568,3136,6272), (51,102,204,408,816,1632,3264,6528), (53,106,212,424,848,1696,3392,6784), (55,110,220,440,880,1760,3520,7040), (57,114,228,456,912,1824,3648,7296), (59,118,236,472,944,1888,3776,7552), (61,122,244,488,976,1952,3904,7808), (63,126,252,504,1008,2016,4032,8064), (65,130,260,520,1040,2080,4160,8320), (67,134,268,536,1072,2144,4288,8576), (69,138,276,552,1104,2208,4416,8832), (71,142,284,568,1136,2272,4544,9088), (73,146,292,584,1168,2336,4672,9344), (75,150,300,600,1200,2400,4800,9600), (77,154,308,616,1232,2464,4928,9856), (79,158,316,632,1264,2528,5056), (81,162,324,648,1296,2592,5184), (83,166,332,664,1328,2656,5312), (85,170,340,680,1360,2720,5440), (87,174,348,696,1392,2784,5568), (89,178,356,712,1424,2848,5696), (91,182,364,728,1456,2912,5824), (93,186,372,744,1488,2976,5952), (95,190,380,760,1520,3040,6080), (97,194,388,776,1552,3104,6208), (99,198,396,792,1584,3168,6336), (101,202,404,808,1616,3232,6464), (103,206,412,824,1648,3296,6592), (105,210,420,840,1680,3360,6720), (107,214,428,856,1712,3424,6848), (109,218,436,872,1744,3488,6976), (111,222,444,888,1776,3552,7104), (113,226,452,904,1808,3616,7232), (115,230,460,920,1840,3680,7360), (117,234,468,936,1872,3744,7488), (119,238,476,952,1904,3808,7616), (121,242,484,968,1936,3872,7744), (123,246,492,984,1968,3936,7872), (125,250,500,1000,2000,4000,8000), (127,254,508,1016,2032,4064,8128), (129,258,516,1032,2064,4128,8256), (131,262,524,1048,2096,4192,8384), (133,266,532,1064,2128,4256,8512), (135,270,540,1080,2160,4320,8640), (137,274,548,1096,2192,4384,8768), (139,278,556,1112,2224,4448,8896), (141,282,564,1128,2256,4512,9024), (143,286,572,1144,2288,4576,9152), (145,290,580,1160,2320,4640,9280), (147,294,588,1176,2352,4704,9408), (149,298,596,1192,2384,4768,9536), (151,302,604,1208,2416,4832,9664), (153,306,612,1224,2448,4896,9792), (155,310,620,1240,2480,4960,9920), (157,314,628,1256,2512,5024), (159,318,636,1272,2544,5088), (161,322,644,1288,2576,5152), (163,326,652,1304,2608,5216), (165,330,660,1320,2640,5280), (167,334,668,1336,2672,5344), (169,338,676,1352,2704,5408), (171,342,684,1368,2736,5472), (173,346,692,1384,2768,5536), (175,350,700,1400,2800,5600), (177,354,708,1416,2832,5664), (179,358,716,1432,2864,5728), (181,362,724,1448,2896,5792), (183,366,732,1464,2928,5856), (185,370,740,1480,2960,5920), (187,374,748,1496,2992,5984), (189,378,756,1512,3024,6048), (191,382,764,1528,3056,6112), (193,386,772,1544,3088,6176), (195,390,780,1560,3120,6240), (197,394,788,1576,3152,6304), (199,398,796,1592,3184,6368), (201,402,804,1608,3216,6432), (203,406,812,1624,3248,6496), (205,410,820,1640,3280,6560), (207,414,828,1656,3312,6624), (209,418,836,1672,3344,6688), (211,422,844,1688,3376,6752), (213,426,852,1704,3408,6816), (215,430,860,1720,3440,6880), (217,434,868,1736,3472,6944), (219,438,876,1752,3504,7008), (221,442,884,1768,3536,7072), (223,446,892,1784,3568,7136), (223,669,2007,6021), (225,450,900,1800,3600,7200), (227,454,908,1816,3632,7264), (229,458,916,1832,3664,7328), (231,462,924,1848,3696,7392), (233,466,932,1864,3728,7456), (235,470,940,1880,3760,7520), (237,474,948,1896,3792,7584), (239,478,956,1912,3824,7648), (241,482,964,1928,3856,7712), (243,405,675,1125,1875,3125), (245,490,980,1960,3920,7840), (247,494,988,1976,3952,7904), (249,498,996,1992,3984,7968), (251,502,1004,2008,4016,8032), (253,506,1012,2024,4048,8096), (253,759,2277,6831), (255,510,1020,2040,4080,8160), (257,514,1028,2056,4112,8224), (259,518,1036,2072,4144,8288), (261,522,1044,2088,4176,8352), (263,526,1052,2104,4208,8416), (265,530,1060,2120,4240,8480), (267,534,1068,2136,4272,8544), (269,538,1076,2152,4304,8608), (271,542,1084,2168,4336,8672), (273,546,1092,2184,4368,8736), (275,550,1100,2200,4400,8800), (277,554,1108,2216,4432,8864), (277,831,2493,7479), (279,558,1116,2232,4464,8928), (281,562,1124,2248,4496,8992), (283,566,1132,2264,4528,9056), (285,570,1140,2280,4560,9120), (287,574,1148,2296,4592,9184), (289,578,1156,2312,4624,9248), (291,582,1164,2328,4656,9312), (293,586,1172,2344,4688,9376), (295,590,1180,2360,4720,9440), (297,594,1188,2376,4752,9504), (299,598,1196,2392,4784,9568), (301,602,1204,2408,4816,9632), (303,606,1212,2424,4848,9696), (305,610,1220,2440,4880,9760), (307,614,1228,2456,4912,9824), (309,618,1236,2472,4944,9888), (311,622,1244,2488,4976,9952), (313,626,1252,2504,5008), (315,630,1260,2520,5040), (317,634,1268,2536,5072), (319,638,1276,2552,5104), (321,642,1284,2568,5136), (323,646,1292,2584,5168), (325,650,1300,2600,5200), (327,654,1308,2616,5232), (329,658,1316,2632,5264), (331,662,1324,2648,5296), (333,666,1332,2664,5328), (335,670,1340,2680,5360), (337,674,1348,2696,5392), (339,678,1356,2712,5424), (341,682,1364,2728,5456), (343,686,1372,2744,5488), (345,690,1380,2760,5520), (347,694,1388,2776,5552), (349,698,1396,2792,5584), (351,702,1404,2808,5616), (353,706,1412,2824,5648), (355,710,1420,2840,5680), (357,714,1428,2856,5712), (359,718,1436,2872,5744), (361,722,1444,2888,5776), (363,726,1452,2904,5808), (365,730,1460,2920,5840), (367,734,1468,2936,5872), (369,738,1476,2952,5904), (371,742,1484,2968,5936), (373,746,1492,2984,5968), (375,750,1500,3000,6000), (377,754,1508,3016,6032), (379,758,1516,3032,6064), (381,762,1524,3048,6096), (383,766,1532,3064,6128), (385,770,1540,3080,6160), (387,774,1548,3096,6192), (389,778,1556,3112,6224), (391,782,1564,3128,6256), (393,786,1572,3144,6288), (395,790,1580,3160,6320), (397,794,1588,3176,6352), (399,798,1596,3192,6384), (401,802,1604,3208,6416), (403,806,1612,3224,6448), (407,814,1628,3256,6512), (409,818,1636,3272,6544), (411,822,1644,3288,6576), (413,826,1652,3304,6608), (415,830,1660,3320,6640), (417,834,1668,3336,6672), (419,838,1676,3352,6704), (421,842,1684,3368,6736), (423,846,1692,3384,6768), (425,850,1700,3400,6800), (427,854,1708,3416,6832), (429,858,1716,3432,6864), (431,862,1724,3448,6896), (433,866,1732,3464,6928), (435,870,1740,3480,6960), (437,874,1748,3496,6992), (439,878,1756,3512,7024), (441,882,1764,3528,7056), (443,886,1772,3544,7088), (445,890,1780,3560,7120), (447,894,1788,3576,7152), (449,898,1796,3592,7184), (451,902,1804,3608,7216), (453,906,1812,3624,7248), (455,910,1820,3640,7280), (457,914,1828,3656,7312), (459,918,1836,3672,7344), (461,922,1844,3688,7376), (463,926,1852,3704,7408), (465,930,1860,3720,7440), (467,934,1868,3736,7472), (469,938,1876,3752,7504), (471,942,1884,3768,7536), (473,946,1892,3784,7568), (475,950,1900,3800,7600), (477,954,1908,3816,7632), (479,958,1916,3832,7664), (481,962,1924,3848,7696), (483,966,1932,3864,7728), (485,970,1940,3880,7760), (486,810,1350,2250,3750,6250), (487,974,1948,3896,7792), (489,978,1956,3912,7824), (491,982,1964,3928,7856), (493,986,1972,3944,7888), (495,990,1980,3960,7920), (497,994,1988,3976,7952), (499,998,1996,3992,7984), (501,1002,2004,4008,8016), (503,1006,2012,4024,8048), (505,1010,2020,4040,8080), (507,1014,2028,4056,8112), (509,1018,2036,4072,8144), (511,1022,2044,4088,8176), (513,1026,2052,4104,8208), (515,1030,2060,4120,8240), (517,1034,2068,4136,8272), (519,1038,2076,4152,8304), (521,1042,2084,4168,8336), (523,1046,2092,4184,8368), (525,1050,2100,4200,8400), (527,1054,2108,4216,8432), (529,1058,2116,4232,8464), (531,1062,2124,4248,8496), (533,1066,2132,4264,8528), (535,1070,2140,4280,8560), (537,1074,2148,4296,8592), (539,1078,2156,4312,8624), (541,1082,2164,4328,8656), (543,1086,2172,4344,8688), (545,1090,2180,4360,8720), (547,1094,2188,4376,8752), (549,1098,2196,4392,8784), (551,1102,2204,4408,8816), (553,1106,2212,4424,8848), (555,1110,2220,4440,8880), (557,1114,2228,4456,8912), (559,1118,2236,4472,8944), (561,1122,2244,4488,8976), (563,1126,2252,4504,9008), (565,1130,2260,4520,9040), (567,945,1575,2625,4375), (569,1138,2276,4552,9104), (571,1142,2284,4568,9136), (573,1146,2292,4584,9168), (575,1150,2300,4600,9200), (577,1154,2308,4616,9232), (579,1158,2316,4632,9264), (581,1162,2324,4648,9296), (583,1166,2332,4664,9328), (585,1170,2340,4680,9360), (587,1174,2348,4696,9392), (589,1178,2356,4712,9424), (591,1182,2364,4728,9456), (593,1186,2372,4744,9488), (595,1190,2380,4760,9520), (597,1194,2388,4776,9552), (599,1198,2396,4792,9584), (601,1202,2404,4808,9616), (603,1206,2412,4824,9648), (605,1210,2420,4840,9680), (607,1214,2428,4856,9712), (609,1218,2436,4872,9744), (611,1222,2444,4888,9776), (613,1226,2452,4904,9808), (615,1230,2460,4920,9840), (617,1234,2468,4936,9872), (619,1238,2476,4952,9904), (621,1035,1725,2875), (623,1246,2492,4984,9968), (625,875,1225,1715,2401), (627,1254,2508,5016), (629,1258,2516,5032), (631,1262,2524,5048), (633,1266,2532,5064), (635,1270,2540,5080), (637,1274,2548,5096), (639,1278,2556,5112), (641,1282,2564,5128), (643,1286,2572,5144), (645,1290,2580,5160), (647,1294,2588,5176), (649,1298,2596,5192), (651,1302,2604,5208), (653,1306,2612,5224), (655,1310,2620,5240), (657,1314,2628,5256), (659,1318,2636,5272), (661,1322,2644,5288), (663,1326,2652,5304), (665,1330,2660,5320), (667,1334,2668,5336), (669,1338,2676,5352), (671,1342,2684,5368), (673,1346,2692,5384), (677,1354,2708,5416), (679,1358,2716,5432), (681,1362,2724,5448), (683,1366,2732,5464), (685,1370,2740,5480), (687,1374,2748,5496), (689,1378,2756,5512), (691,1382,2764,5528), (693,1386,2772,5544), (695,1390,2780,5560), (697,1394,2788,5576), (699,1398,2796,5592), (701,1402,2804,5608), (703,1406,2812,5624), (705,1410,2820,5640), (707,1414,2828,5656), (709,1418,2836,5672), (711,1422,2844,5688), (713,1426,2852,5704), (715,1430,2860,5720), (717,1434,2868,5736), (719,1438,2876,5752), (721,1442,2884,5768), (723,1446,2892,5784), (725,1450,2900,5800), (727,1454,2908,5816), (729,1215,2025,3375,5625,9375), (731,1462,2924,5848), (733,1466,2932,5864), (735,1470,2940,5880), (737,1474,2948,5896), (739,1478,2956,5912), (741,1482,2964,5928), (743,1486,2972,5944), (745,1490,2980,5960), (747,1494,2988,5976), (749,1498,2996,5992), (751,1502,3004,6008), (753,1506,3012,6024), (755,1510,3020,6040), (757,1514,3028,6056), (759,1518,3036,6072), (761,1522,3044,6088), (763,1526,3052,6104), (765,1530,3060,6120), (767,1534,3068,6136), (769,1538,3076,6152), (771,1542,3084,6168), (773,1546,3092,6184), (775,1550,3100,6200), (777,1554,3108,6216), (779,1558,3116,6232), (781,1562,3124,6248), (783,1305,2175,3625), (785,1570,3140,6280), (787,1574,3148,6296), (789,1578,3156,6312), (791,1582,3164,6328), (793,1586,3172,6344), (795,1590,3180,6360), (797,1594,3188,6376), (799,1598,3196,6392), (801,1602,3204,6408), (803,1606,3212,6424), (805,1610,3220,6440), (807,1614,3228,6456), (809,1618,3236,6472), (811,1622,3244,6488), (813,1626,3252,6504), (815,1630,3260,6520), (817,1634,3268,6536), (819,1638,3276,6552), (821,1642,3284,6568), (823,1646,3292,6584), (825,1650,3300,6600), (827,1654,3308,6616), (829,1658,3316,6632), (831,1662,3324,6648), (833,1666,3332,6664), (835,1670,3340,6680), (837,1395,2325,3875), (839,1678,3356,6712), (841,1682,3364,6728), (843,1686,3372,6744), (845,1690,3380,6760), (847,1694,3388,6776), (849,1698,3396,6792), (851,1702,3404,6808), (851,2553,7659), (853,1706,3412,6824), (853,2559,7677), (855,1710,3420,6840), (857,1714,3428,6856), (857,2571,7713), (859,1718,3436,6872), (859,2577,7731), (861,1722,3444,6888), (863,1726,3452,6904), (865,1730,3460,6920), (867,1734,3468,6936), (869,1738,3476,6952), (871,1742,3484,6968), (873,1746,3492,6984), (877,1754,3508,7016), (877,2631,7893), (879,1758,3516,7032), (881,1762,3524,7048), (883,1766,3532,7064), (885,1770,3540,7080), (887,1774,3548,7096), (889,1778,3556,7112), (891,1485,2475,4125,6875), (893,1786,3572,7144), (895,1790,3580,7160), (897,1794,3588,7176), (899,1798,3596,7192), (901,1802,3604,7208), (903,1806,3612,7224), (905,1810,3620,7240), (907,1814,3628,7256), (907,2721,8163), (909,1818,3636,7272), (911,1822,3644,7288), (911,2733,8199), (913,1826,3652,7304), (915,1830,3660,7320), (917,1834,3668,7336), (917,2751,8253), (919,1838,3676,7352), (919,2757,8271), (921,1842,3684,7368), (923,1846,3692,7384), (925,1850,3700,7400), (927,1854,3708,7416), (929,1858,3716,7432), (931,1862,3724,7448), (933,1866,3732,7464), (935,1870,3740,7480), (937,1874,3748,7496), (937,2811,8433), (939,1878,3756,7512), (941,1882,3764,7528), (943,1886,3772,7544), (947,1894,3788,7576), (949,1898,3796,7592), (951,1902,3804,7608), (953,1906,3812,7624), (953,2859,8577), (955,1910,3820,7640), (957,1914,3828,7656), (959,1918,3836,7672), (959,2877,8631), (961,1922,3844,7688), (963,1926,3852,7704), (965,1930,3860,7720), (967,1934,3868,7736), (969,1938,3876,7752), (971,1942,3884,7768), (972,1620,2700,4500,7500), (973,1946,3892,7784), (973,2919,8757), (975,1950,3900,7800), (977,1954,3908,7816), (977,2931,8793), (979,1958,3916,7832), (981,1962,3924,7848), (983,1966,3932,7864), (983,2949,8847), (985,1970,3940,7880), (987,1974,3948,7896), (989,1978,3956,7912), (991,1982,3964,7928), (993,1986,3972,7944), (995,1990,3980,7960), (997,1994,3988,7976), (997,2991,8973), (999,1665,2775,4625), (1001,2002,4004,8008), (1003,2006,4012,8024), (1005,2010,4020,8040), (1007,2014,4028,8056), (1009,2018,4036,8072), (1011,2022,4044,8088), (1013,2026,4052,8104), (1015,2030,4060,8120), (1017,2034,4068,8136), (1019,2038,4076,8152), (1021,2042,4084,8168), (1023,2046,4092,8184), (1025,2050,4100,8200), (1027,2054,4108,8216), (1029,1617,2541,3993), (1031,2062,4124,8248), (1033,2066,4132,8264), (1037,2074,4148,8296), (1039,2078,4156,8312), (1041,2082,4164,8328), (1043,2086,4172,8344), (1045,2090,4180,8360), (1047,2094,4188,8376), (1049,2098,4196,8392), (1051,2102,4204,8408), (1053,1755,2925,4875,8125), (1055,2110,4220,8440), (1055,3165,9495), (1057,2114,4228,8456), (1059,2118,4236,8472), (1061,2122,4244,8488), (1063,2126,4252,8504), (1065,2130,4260,8520), (1067,2134,4268,8536), (1069,2138,4276,8552), (1071,2142,4284,8568), (1073,2146,4292,8584), (1075,2150,4300,8600), (1077,2154,4308,8616), (1079,2158,4316,8632), (1081,2162,4324,8648), (1083,2166,4332,8664), (1085,2170,4340,8680), (1087,2174,4348,8696), (1089,2178,4356,8712), (1091,2182,4364,8728), (1091,3273,9819), (1093,2186,4372,8744), (1095,2190,4380,8760), (1097,2194,4388,8776), (1099,2198,4396,8792), (1101,2202,4404,8808), (1103,2206,4412,8824), (1103,3309,9927), (1105,2210,4420,8840), (1107,1845,3075,5125), (1107,2214,4428,8856), (1109,2218,4436,8872), (1111,2222,4444,8888), (1111,3333,9999), (1113,2226,4452,8904), (1115,2230,4460,8920), (1117,2234,4468,8936), (1119,2238,4476,8952), (1121,2242,4484,8968), (1123,2246,4492,8984), (1127,2254,4508,9016), (1129,2258,4516,9032), (1131,2262,4524,9048), (1133,2266,4532,9064), (1134,1890,3150,5250,8750), (1135,2270,4540,9080), (1136,1704,2556,3834,5751), (1137,2274,4548,9096), (1139,2278,4556,9112), (1141,2282,4564,9128), (1143,2286,4572,9144), (1145,2290,4580,9160), (1147,2294,4588,9176), (1149,2298,4596,9192), (1151,2302,4604,9208), (1153,2306,4612,9224), (1155,2310,4620,9240), (1157,2314,4628,9256), (1159,2318,4636,9272), (1161,2322,4644,9288), (1163,2326,4652,9304), (1165,2330,4660,9320), (1167,2334,4668,9336), (1169,2338,4676,9352), (1171,2342,4684,9368), (1173,2346,4692,9384), (1175,1645,2303), (1177,2354,4708,9416), (1179,2358,4716,9432), (1181,2362,4724,9448), (1183,2366,4732,9464), (1185,2370,4740,9480), (1187,2374,4748,9496), (1189,2378,4756,9512), (1191,2382,4764,9528), (1193,2386,4772,9544), (1195,2390,4780,9560), (1197,2394,4788,9576), (1199,2398,4796,9592), (1201,2402,4804,9608), (1203,2406,4812,9624), (1205,2410,4820,9640), (1207,2414,4828,9656), (1209,2418,4836,9672), (1211,2422,4844,9688), (1213,2426,4852,9704), (1217,2434,4868,9736), (1219,2438,4876,9752), (1221,2442,4884,9768), (1223,2446,4892,9784), (1227,2454,4908,9816), (1229,2458,4916,9832), (1231,2462,4924,9848), (1233,2466,4932,9864), (1235,2470,4940,9880), (1237,2474,4948,9896), (1239,2478,4956,9912), (1241,2482,4964,9928), (1242,2070,3450,5750), (1243,2486,4972,9944), (1245,2490,4980,9960), (1247,2494,4988,9976), (1249,2498,4996,9992), (1250,1750,2450,3430,4802), (1251,2502,5004), (1253,2506,5012), (1255,2510,5020), (1257,2514,5028), (1259,2518,5036), (1261,2522,5044), (1263,2526,5052), (1265,2530,5060), (1267,2534,5068), (1269,2115,3525,5875), (1271,2542,5084), (1273,2546,5092), (1275,2550,5100), (1277,2554,5108), (1279,2558,5116), (1281,2562,5124), (1283,2566,5132), (1285,2570,5140), (1287,2145,3575), (1289,2578,5156), (1291,2582,5164), (1293,2586,5172), (1295,2590,5180), (1297,2594,5188), (1299,2598,5196), (1301,2602,5204), (1303,2606,5212), (1307,2614,5228), (1309,2618,5236), (1311,2622,5244), (1313,2626,5252), (1315,2630,5260), (1317,2634,5268), (1319,2638,5276), (1321,2642,5284), (1323,2205,3675,6125), (1325,1855,2597), (1327,2654,5308), (1329,2658,5316), (1331,2057,3179,4913), (1333,2666,5332), (1335,2670,5340), (1337,2674,5348), (1339,2678,5356), (1341,2235,3725), (1343,2686,5372), (1345,2690,5380), (1347,2694,5388), (1349,2698,5396), (1351,2702,5404), (1353,2706,5412), (1355,2710,5420), (1357,2714,5428), (1359,2718,5436), (1361,2722,5444), (1363,2726,5452), (1365,2730,5460), (1367,2734,5468), (1369,3441,8649), (1371,2742,5484), (1373,2746,5492), (1375,1925,2695,3773), (1377,2295,3825,6375), (1379,2758,5516), (1381,2762,5524), (1383,2766,5532), (1385,2770,5540), (1387,2774,5548), (1389,2778,5556), (1391,2782,5564), (1393,2786,5572), (1397,2794,5588), (1399,2798,5596), (1401,2802,5604), (1403,2806,5612), (1405,2810,5620), (1407,2814,5628), (1409,2818,5636), (1411,2822,5644), (1413,2826,5652), (1415,2830,5660), (1417,2834,5668), (1419,2838,5676), (1421,2842,5684), (1423,2846,5692), (1425,2850,5700), (1427,2854,5708), (1429,2858,5716), (1431,2385,3975,6625), (1433,2866,5732), (1435,2870,5740), (1437,2874,5748), (1439,2878,5756), (1441,2882,5764), (1443,2886,5772), (1445,3145,6845), (1447,2894,5788), (1449,2415,4025), (1451,2902,5804), (1453,2906,5812), (1455,2910,5820), (1457,2914,5828), (1458,2430,4050,6750), (1459,2918,5836), (1461,2922,5844), (1463,2926,5852), (1465,2930,5860), (1467,2934,5868), (1469,2938,5876), (1471,2942,5884), (1473,2946,5892), (1475,3245,7139), (1477,2954,5908), (1479,2958,5916), (1481,2962,5924), (1483,2966,5932), (1487,2974,5948), (1489,2978,5956), (1491,2982,5964), (1493,2986,5972), (1495,2990,5980), (1497,2994,5988), (1499,2998,5996), (1501,3002,6004), (1503,2505,4175), (1505,3010,6020), (1507,3014,6028), (1509,3018,6036), (1511,3022,6044), (1513,3026,6052), (1515,3030,6060), (1517,3034,6068), (1519,3038,6076), (1521,2769,5041), (1523,3046,6092), (1525,3355,7381), (1527,3054,6108), (1529,3058,6116), (1531,3062,6124), (1533,3066,6132), (1535,3070,6140), (1537,3074,6148), (1539,2565,4275,7125), (1541,3082,6164), (1543,3086,6172), (1545,3090,6180), (1547,3094,6188), (1549,3098,6196), (1551,3102,6204), (1553,3106,6212), (1555,3110,6220), (1557,2595,4325), (1559,3118,6236), (1561,3122,6244), (1563,3126,6252), (1565,3130,6260), (1566,2610,4350,7250), (1567,3134,6268), (1569,3138,6276), (1571,3142,6284), (1573,2574,4212), (1577,3154,6308), (1579,3158,6316), (1581,3162,6324), (1583,3166,6332), (1585,3170,6340), (1587,3933,9747), (1589,3178,6356), (1591,3182,6364), (1593,2655,4425,7375), (1595,3190,6380), (1597,3194,6388), (1599,3198,6396), (1601,3202,6404), (1603,3206,6412), (1605,3210,6420), (1607,3214,6428), (1609,3218,6436), (1611,2685,4475), (1613,3226,6452), (1615,3230,6460), (1616,2424,3636,5454,8181), (1619,3238,6476), (1621,3242,6484), (1623,3246,6492), (1625,2275,3185,4459), (1627,3254,6508), (1629,2715,4525), (1631,3262,6524), (1633,3266,6532), (1635,3270,6540), (1637,3274,6548), (1639,3278,6556), (1641,3282,6564), (1643,3286,6572), (1647,2745,4575,7625), (1648,2472,3708,5562,8343), (1649,3298,6596), (1651,3302,6604), (1653,3306,6612), (1655,3310,6620), (1657,3314,6628), (1659,3318,6636), (1661,3322,6644), (1663,3326,6652), (1667,3334,6668), (1669,3338,6676), (1671,3342,6684), (1673,3346,6692), (1674,2790,4650,7750), (1675,3685,8107), (1677,3354,6708), (1679,3358,6716), (1681,2993,5329), (1683,2805,4675), (1685,3370,6740), (1687,3374,6748), (1689,3378,6756), (1691,3382,6764), (1693,3386,6772), (1695,3390,6780), (1697,3394,6788), (1699,3398,6796), (1701,2835,4725,7875), (1703,3406,6812), (1705,3410,6820), (1707,3414,6828), (1709,3418,6836), (1711,3422,6844), (1713,3426,6852), (1717,3434,6868), (1719,2865,4775), (1721,3442,6884), (1723,3446,6892), (1727,3454,6908), (1729,3458,6916), (1731,3462,6924), (1733,3466,6932), (1735,3470,6940), (1737,2895,4825), (1739,3478,6956), (1741,3482,6964), (1743,3486,6972), (1745,3490,6980), (1747,3494,6988), (1749,3498,6996), (1751,3502,7004), (1753,3506,7012), (1757,3514,7028), (1759,3518,7036), (1761,3522,7044), (1763,3526,7052), (1765,3530,7060), (1767,3534,7068), (1769,3538,7076), (1771,3542,7084), (1773,2955,4925), (1775,3550,7100), (1777,3554,7108), (1779,3558,7116), (1781,3562,7124), (1782,2970,4950,8250), (1783,3566,7132), (1785,3570,7140), (1787,3574,7148), (1789,3578,7156), (1791,2985,4975), (1793,3586,7172), (1795,3590,7180), (1797,3594,7188), (1799,3598,7196), (1801,3602,7204), (1803,3606,7212), (1805,2755,4205), (1807,3614,7228), (1809,3015,5025,8375), (1811,3622,7244), (1813,3626,7252), (1815,3795,7935), (1817,3634,7268), (1819,3638,7276), (1821,3642,7284), (1823,3646,7292), (1825,4015,8833), (1827,3045,5075), (1829,3658,7316), (1831,3662,7324), (1833,3666,7332), (1835,3670,7340), (1837,3674,7348), (1839,3678,7356), (1841,3682,7364), (1843,3686,7372), (1847,3694,7388), (1849,2967,4761), (1851,3702,7404), (1853,3706,7412), (1857,3714,7428), (1859,2717,3971), (1861,3722,7444), (1863,3105,5175,8625), (1864,2796,4194,6291), (1865,3730,7460), (1867,3734,7468), (1869,3738,7476), (1871,3742,7484), (1873,3746,7492), (1877,3754,7508), (1879,3758,7516), (1881,3135,5225), (1883,3766,7532), (1885,3770,7540), (1887,3774,7548), (1889,3778,7556), (1891,3782,7564), (1893,3786,7572), (1895,3790,7580), (1897,3794,7588), (1899,3798,7596), (1901,3802,7604), (1903,3806,7612), (1905,3810,7620), (1907,3814,7628), (1909,3818,7636), (1911,3003,4719), (1913,3826,7652), (1915,3830,7660), (1917,3195,5325,8875), (1919,3838,7676), (1921,3842,7684), (1923,3846,7692), (1927,3854,7708), (1929,3858,7716), (1931,3862,7724), (1933,3866,7732), (1937,3874,7748), (1939,3878,7756), (1941,3882,7764), (1943,3886,7772), (1944,2268,2646,3087), (1945,3890,7780), (1947,3894,7788), (1949,3898,7796), (1951,3902,7804), (1953,3255,5425), (1955,3910,7820), (1957,3914,7828), (1959,3918,7836), (1961,3922,7844), (1963,3926,7852), (1965,3930,7860), (1967,3934,7868), (1969,3938,7876), (1971,3285,5475,9125), (1971,3942,7884), (1973,3946,7892), (1975,4345,9559), (1977,3954,7908), (1979,3958,7916), (1981,3962,7924), (1983,3966,7932), (1985,3970,7940), (1987,3974,7948), (1989,3315,5525), (1991,3982,7964), (1993,3986,7972), (1995,3990,7980), (1997,3994,7988), (1998,3330,5550,9250), (1999,3998,7996), (2001,4002,8004), (2003,4006,8012), (2005,4010,8020), (2008,3012,4518,6777), (2009,3157,4961), (2011,4022,8044), (2013,4026,8052), (2015,4030,8060), (2017,4034,8068), (2019,4038,8076), (2021,4042,8084), (2023,4046,8092), (2027,4054,8108), (2029,4058,8116), (2031,4062,8124), (2033,4066,8132), (2035,4070,8140), (2037,4074,8148), (2039,4078,8156), (2041,4082,8164), (2043,3405,5675), (2043,4086,8172), (2045,4090,8180), (2047,4094,8188), (2049,4098,8196), (2050,3690,6642), (2051,4102,8204), (2053,4106,8212), (2055,4110,8220), (2058,3234,5082,7986), (2059,4118,8236), (2061,3435,5725), (2063,4126,8252), (2065,4130,8260), (2067,4134,8268), (2069,4138,8276), (2071,4142,8284), (2073,4146,8292), (2075,2905,4067), (2077,4154,8308), (2079,3465,5775,9625), (2081,4162,8324), (2083,4166,8332), (2085,4170,8340), (2087,4174,8348), (2089,4178,8356), (2091,4182,8364), (2093,4186,8372), (2095,4190,8380), (2097,3495,5825), (2099,4198,8396), (2101,4202,8404), (2103,4206,8412), (2104,3156,4734,7101), (2105,4210,8420), (2106,3510,5850,9750), (2107,2709,3483), (2109,4218,8436), (2111,4222,8444), (2113,4226,8452), (2117,4234,8468), (2119,4238,8476), (2121,4242,8484), (2123,4246,8492), (2125,2975,4165,5831), (2127,4254,8508), (2129,4258,8516), (2131,4262,8524), (2133,3555,5925,9875), (2137,4274,8548), (2139,4278,8556), (2141,4282,8564), (2143,4286,8572), (2147,4294,8588), (2149,4298,8596), (2151,3585,5975), (2153,4306,8612), (2155,4310,8620), (2157,4314,8628), (2159,4318,8636), (2161,4322,8644), (2163,4326,8652), (2165,4330,8660), (2167,4334,8668), (2169,3615,6025), (2171,4342,8684), (2173,4346,8692), (2177,4354,8708), (2179,4358,8716), (2181,4362,8724), (2183,4366,8732), (2185,4370,8740), (2187,3726,6348), (2189,4378,8756), (2191,4382,8764), (2193,4386,8772), (2195,4390,8780), (2197,3211,4693,6859), (2199,4398,8796), (2201,4402,8804), (2203,4406,8812), (2207,4414,8828), (2209,2585,3025), (2211,4422,8844), (2213,4426,8852), (2215,4430,8860), (2217,4434,8868), (2219,4438,8876), (2221,4442,8884), (2223,3705,6175), (2223,4446,8892), (2225,3115,4361), (2227,4454,8908), (2229,4458,8916), (2231,4462,8924), (2233,4466,8932), (2237,4474,8948), (2239,4478,8956), (2241,4482,8964), (2243,4486,8972), (2245,4490,8980), (2247,4494,8988), (2248,3372,5058,7587), (2249,4498,8996), (2251,4502,9004), (2253,4506,9012), (2255,4510,9020), (2257,4514,9028), (2261,4522,9044), (2263,4526,9052), (2265,4530,9060), (2267,4534,9068), (2269,4538,9076), (2271,4542,9084), (2273,4546,9092), (2279,4558,9116), (2281,4562,9124), (2283,4566,9132), (2285,4570,9140), (2287,4574,9148), (2289,4578,9156), (2291,4582,9164), (2293,4586,9172), (2297,4594,9188), (2299,3553,5491), (2301,4602,9204), (2305,4610,9220), (2307,4614,9228), (2309,4618,9236), (2311,4622,9244), (2313,4626,9252), (2315,4630,9260), (2317,4634,9268), (2319,4638,9276), (2321,4642,9284), (2323,4646,9292), (2327,4654,9308), (2329,4658,9316), (2331,3885,6475), (2333,4666,9332), (2335,4670,9340), (2337,4674,9348), (2339,4678,9356), (2341,4682,9364), (2343,4686,9372), (2344,3516,5274,7911), (2345,4690,9380), (2347,4694,9388), (2349,3915,6525), (2350,3290,4606), (2351,4702,9404), (2353,4706,9412), (2355,4710,9420), (2357,4714,9428), (2359,4718,9436), (2361,4722,9444), (2363,4726,9452), (2365,4730,9460), (2369,4738,9476), (2371,4742,9484), (2373,4746,9492), (2375,3325,4655,6517), (2377,4754,9508), (2379,4758,9516), (2381,4762,9524), (2383,4766,9532), (2387,4774,9548), (2389,4778,9556), (2391,4782,9564), (2393,4786,9572), (2395,4790,9580), (2397,4794,9588), (2399,4798,9596), (2403,4005,6675), (2403,4806,9612), (2405,4810,9620), (2407,4814,9628), (2409,4818,9636), (2411,4822,9644), (2413,4826,9652), (2417,4834,9668), (2419,4838,9676), (2421,4035,6725), (2423,4846,9692), (2425,3395,4753), (2427,4854,9708), (2429,4858,9716), (2431,4862,9724), (2433,4866,9732), (2435,4870,9740), (2437,4874,9748), (2439,4878,9756), (2441,4882,9764), (2443,4886,9772), (2445,4890,9780), (2447,4894,9788), (2449,4898,9796), (2451,4902,9804), (2453,4906,9812), (2455,4910,9820), (2456,3684,5526,8289), (2457,4914,9828), (2459,4918,9836), (2461,4922,9844), (2463,4926,9852), (2465,4930,9860), (2467,4934,9868), (2469,4938,9876), (2471,4942,9884), (2473,4946,9892), (2477,4954,9908), (2479,4958,9916), (2481,4962,9924), (2483,4966,9932), (2484,4140,6900), (2485,4970,9940), (2487,4974,9948), (2489,4978,9956), (2491,4982,9964), (2495,4990,9980), (2497,4994,9988), (2499,3927,6171), (2500,3500,4900,6860,9604), (2504,3756,5634,8451), (2511,3627,5239), (2523,4437,7803), (2525,3535,4949), (2527,4389,7623), (2529,4215,7025), (2535,4095,6615), (2538,4230,7050), (2547,4245,7075), (2575,3605,5047), (2583,4305,7175), (2601,2703,2809), (2619,4365,7275), (2637,4395,7325), (2645,3565,4805), (2648,3972,5958,8937), (2650,3710,5194), (2662,4114,6358,9826), (2673,3861,5577), (2675,3745,5243), (2682,4470,7450), (2691,4485,7475), (2725,3815,5341), (2727,4545,7575), (2738,5106,9522), (2750,3850,5390,7546), (2754,3978,5746), (2763,4605,7675), (2781,4635,7725), (2783,3289,3887), (2793,5187,9633), (2799,4665,7775), (2817,4695,7825), (2824,4236,6354,9531), (2853,4755,7925), (2862,4770,7950), (2871,4785,7975), (2873,4641,7497), (2883,4371,6627), (2889,4815,8025), (2890,5270,9610), (2891,3717,4779), (2898,4830,8050), (2907,4845,8075), (2916,4266,6241), (2936,4404,6606,9909), (2943,4905,8175), (2961,4935,8225), (2979,4965,8275), (2989,3843,4941), (2997,3663,4477), (3006,5010,8350), (3033,5055,8425), (3042,5226,8978), (3050,4270,5978), (3051,5085,8475), (3069,5115,8525), (3078,3762,4598), (3114,5190,8650), (3123,5205,8675), (3132,3654,4263), (3141,5235,8725), (3159,5265,8775), (3174,5382,9126), (3175,4445,6223), (3177,5295,8825), (3186,5310,8850), (3213,5355,8925), (3222,5370,8950), (3225,4515,6321), (3231,5385,8975), (3240,3780,4410,5145), (3249,5073,7921), (3250,4550,6370,8918), (3258,5430,9050), (3267,4257,5547), (3275,4585,6419), (3294,5490,9150), (3303,5505,9175), (3321,5535,9225), (3339,5565,9275), (3348,3906,4557), (3350,4690,6566), (3357,5595,9325), (3362,5002,7442), (3366,5610,9350), (3381,5313,8349), (3393,5655,9425), (3402,5670,9450), (3411,5685,9475), (3425,4795,6713), (3429,5715,9525), (3438,5730,9550), (3447,5745,9575), (3474,5790,9650), (3475,4865,6811), (3479,5467,8591), (3481,5605,9025), (3501,5835,9725), (3509,5423,8381), (3519,5865,9775), (3524,5286,7929), (3537,5895,9825), (3546,5910,9850), (3549,3822,4116), (3556,5334,8001), (3564,4158,4851), (3573,5955,9925), (3577,5621,8833), (3582,5970,9950), (3591,5985,9975), (3604,5406,8109), (3610,5510,8410), (3630,4290,5070), (3645,5130,7220), (3650,5110,7154), (3652,5478,8217), (3698,5590,8450), (3703,4991,6727), (3718,5434,7942), (3721,5307,7569), (3757,5967,9477), (3764,5646,8469), (3772,5658,8487), (3775,5285,7399), (3796,5694,8541), (3807,4653,5687), (3871,4977,6399), (3884,5826,8739), (3888,4536,5292,6174,7203), (3916,5874,8811), (3925,5495,7693), (3950,5530,7742), (3969,4662,5476), (4018,6314,9922), (4075,5705,7987), (4076,6114,9171), (4107,4995,6075), (4108,6162,9243), (4131,5049,6171), (4150,5810,8134), (4156,6234,9351), (4196,6294,9441), (4214,5418,6966), (4225,5330,6724), (4235,5005,5915), (4250,5950,8330), (4252,6378,9567), (4268,6402,9603), (4276,6414,9621), (4293,6201,8957), (4335,4590,4860), (4372,6558,9837), (4374,5346,6534,7986), (4388,6582,9873), (4394,6422,9386), (4418,5358,6498), (4436,6654,9981), (4450,6230,8722), (4455,6435,9295), (4489,5762,7396), (4563,5499,6627), (4617,5643,6897), (4698,5742,7018), (4700,6580,9212), (4750,6650,9310), (4850,6790,9506), (4901,6786,9396), (4968,5796,6762,7889), (4998,6426,8262), (5000,5500,6050,6655), (5022,6138,7502), (5043,6765,9075), (5046,5394,5766), (5050,7070,9898), (5054,6118,7406), (5076,5922,6909), (5103,5481,5887), (5148,6006,7007), (5202,6018,6962), (5203,6149,7267), (5220,6090,7105), (5290,6210,7290), (5300,5830,6413), (5324,6292,7436,8788), (5325,6390,7668), (5364,6258,7301), (5375,6450,7740,9288), (5400,6300,7350,8575), (5415,6270,7260), (5427,6030,6700), (5439,6993,8991), (5445,7095,9245), (5508,7038,8993), (5537,7119,9153), (5566,6578,7774), (5575,6690,8028), (5580,6510,7595), (5586,7182,9234), (5589,7452,9936), (5618,7420,9800), (5635,7245,9315), (5724,6678,7791), (5725,6870,8244), (5733,6279,6877), (5780,6970,8405), (5782,7434,9558), (5819,7337,9251), (5825,6990,8388), (5832,6804,7938,9261), (5900,7670,9971), (5913,6570,7300), (5929,6545,7225), (5940,6930,8085), (5975,7170,8604), (5994,7326,8954), (6012,7014,8183), (6027,7749,9963), (6069,6783,7581), (6084,6474,6889), (6100,6710,7381), (6137,7106,8228), (6156,7524,9196), (6228,7266,8477), (6253,7215,8325), (6264,7308,8526,9947), (6275,7530,9036), (6318,7722,9438), (6325,7590,9108), (6444,7518,8771), (6480,7560,8820), (6500,7150,7865), (6516,7602,8869), (6561,7290,8100,9000,10000), (6575,7890,9468), (6588,7686,8967), (6591,7098,7644,8232), (6647,7429,8303), (6660,7770,9065), (6696,7812,9114), (6723,7470,8300), (6732,7854,9163), (6775,8130,9756), (6876,8022,9359), (6885,7650,8500), (6925,8310,9972), (6929,7462,8036), (6948,8106,9457), (6975,7905,8959), (7000,7700,8470,9317), (7020,8190,9555), (7047,7830,8700), (7092,8274,9653), (7128,8316,9702), (7164,8358,9751), (7209,8010,8900), (7220,7410,7605), (7236,8442,9849), (7425,8415,9537), (7514,7956,8424), (7533,8370,9300), (7614,8460,9400), (7695,8550,9500), (7776,7992,8214), (7857,8730,9700), (8019,8910,9900), (8281,9009,9801), (8379,8778,9196), (8427,8586,8748), (8428,9030,9675), (8619,9282,9996), (8670,9180,9720), (8836,9118,9409), (9072,9324,9583),