The lambdas must flow. If I break, you can: 1. Restart: M-x haskell-process-restart 2. Configure logging: C-h v haskell-process-log (useful for debugging) 3. General config: M-x customize-mode 4. Hide these tips: C-h v haskell-process-show-debug-tips Changed directory: /home/hugo/Academic/Teaching/2022.2/TCPF/Aulas/ λ> :i fmap type Functor :: (* -> *) -> Constraint class Functor f where fmap :: (a -> b) -> f a -> f b ... -- Defined in ‘GHC.Base’ λ> :t fmap fmap :: Functor f => (a -> b) -> f a -> f b λ> :i Applicative type Applicative :: (* -> *) -> Constraint class Functor f => Applicative f where pure :: a -> f a (<*>) :: f (a -> b) -> f a -> f b GHC.Base.liftA2 :: (a -> b -> c) -> f a -> f b -> f c (*>) :: f a -> f b -> f b (<*) :: f a -> f b -> f a {-# MINIMAL pure, ((<*>) | liftA2) #-} -- Defined in ‘GHC.Base’ instance Applicative (Either e) -- Defined in ‘Data.Either’ instance Applicative [] -- Defined in ‘GHC.Base’ instance Applicative Maybe -- Defined in ‘GHC.Base’ instance Applicative IO -- Defined in ‘GHC.Base’ instance Applicative ((->) r) -- Defined in ‘GHC.Base’ instance (Monoid a, Monoid b, Monoid c) => Applicative ((,,,) a b c) -- Defined in ‘GHC.Base’ instance (Monoid a, Monoid b) => Applicative ((,,) a b) -- Defined in ‘GHC.Base’ instance Monoid a => Applicative ((,) a) -- Defined in ‘GHC.Base’ λ> :t (.) (.) :: (b -> c) -> (a -> b) -> a -> c λ> :t (.) (.) (.) (.) :: (a1 -> b -> c) -> a1 -> (a2 -> b) -> a2 -> c λ> :t (.) (.) (.) (.) (.) (.) :: (b -> c) -> (a1 -> a2 -> b) -> a1 -> a2 -> c λ> :t (.) (.) (.) (.) (.) (.) (.) (.) :: (a1 -> a2 -> b -> c) -> a1 -> a2 -> (a3 -> b) -> a3 -> c λ> :t liftA2 liftA2 :: Applicative f => (a -> b -> c) -> f a -> f b -> f c λ> :i (<$>) (<$>) :: Functor f => (a -> b) -> f a -> f b -- Defined in ‘Data.Functor’ infixl 4 <$> λ> :i (<*>) type Applicative :: (* -> *) -> Constraint class Functor f => Applicative f where ... (<*>) :: f (a -> b) -> f a -> f b ... -- Defined in ‘GHC.Base’ infixl 4 <*> λ> :i ($) ($) :: (a -> b) -> a -> b -- Defined in ‘GHC.Base’ infixr 0 $ λ> :i Applicative type Applicative :: (* -> *) -> Constraint class Functor f => Applicative f where pure :: a -> f a (<*>) :: f (a -> b) -> f a -> f b liftA2 :: (a -> b -> c) -> f a -> f b -> f c (*>) :: f a -> f b -> f b (<*) :: f a -> f b -> f a {-# MINIMAL pure, ((<*>) | liftA2) #-} -- Defined in ‘GHC.Base’ instance Applicative (Either e) -- Defined in ‘Data.Either’ instance Applicative [] -- Defined in ‘GHC.Base’ instance Applicative Maybe -- Defined in ‘GHC.Base’ instance Applicative IO -- Defined in ‘GHC.Base’ instance Applicative ((->) r) -- Defined in ‘GHC.Base’ instance (Monoid a, Monoid b, Monoid c) => Applicative ((,,,) a b c) -- Defined in ‘GHC.Base’ instance (Monoid a, Monoid b) => Applicative ((,,) a b) -- Defined in ‘GHC.Base’ instance Monoid a => Applicative ((,) a) -- Defined in ‘GHC.Base’ λ> :t ($) ($) :: (a -> b) -> a -> b λ> :i Applicative type Applicative :: (* -> *) -> Constraint class Functor f => Applicative f where pure :: a -> f a (<*>) :: f (a -> b) -> f a -> f b liftA2 :: (a -> b -> c) -> f a -> f b -> f c (*>) :: f a -> f b -> f b (<*) :: f a -> f b -> f a {-# MINIMAL pure, ((<*>) | liftA2) #-} -- Defined in ‘GHC.Base’ instance Applicative (Either e) -- Defined in ‘Data.Either’ instance Applicative [] -- Defined in ‘GHC.Base’ instance Applicative Maybe -- Defined in ‘GHC.Base’ instance Applicative IO -- Defined in ‘GHC.Base’ instance Applicative ((->) r) -- Defined in ‘GHC.Base’ instance (Monoid a, Monoid b, Monoid c) => Applicative ((,,,) a b c) -- Defined in ‘GHC.Base’ instance (Monoid a, Monoid b) => Applicative ((,,) a b) -- Defined in ‘GHC.Base’ instance Monoid a => Applicative ((,) a) -- Defined in ‘GHC.Base’ λ> :i Talvez type Talvez :: * -> * data Talvez a = Nada | DeFato a -- Defined at Aula7.hs:9:1 instance [safe] Eq a => Eq (Talvez a) -- Defined at Aula7.hs:10:19 instance [safe] Show a => Show (Talvez a) -- Defined at Aula7.hs:10:13 instance [safe] Functor Talvez -- Defined at Aula7.hs:12:10 λ> :i Lista type Lista :: * -> * data Lista a = Aula10.Vazia | a Aula10.:# (Lista a) -- Defined at Aula10.hs:42:1 instance [safe] Show a => Show (Lista a) -- Defined at Aula10.hs:43:12 instance [safe] Functor Lista -- Defined at Aula10.hs:46:10 λ> :i Lista type Lista :: * -> * data Lista a = Vazia | a :# (Lista a) -- Defined at Aula10.hs:42:1 instance [safe] Show a => Show (Lista a) -- Defined at Aula10.hs:43:12 instance [safe] Functor Lista -- Defined at Aula10.hs:46:10 λ> :i Talvez type Talvez :: * -> * data Talvez a = Nada | DeFato a -- Defined at Aula7.hs:9:1 instance [safe] Eq a => Eq (Talvez a) -- Defined at Aula7.hs:10:19 instance [safe] Show a => Show (Talvez a) -- Defined at Aula7.hs:10:13 instance [safe] Functor Talvez -- Defined at Aula7.hs:12:10 λ> fmap f Nada :136:6: error: Variable not in scope: f :: a0 -> b λ> fmap (+1) Nada Nada λ> fmap (+1) (DeFato 4) DeFato 5 λ> :i Talvez type Talvez :: * -> * data Talvez a = Nada | DeFato a -- Defined at Aula7.hs:9:1 instance [safe] Eq a => Eq (Talvez a) -- Defined at Aula7.hs:10:19 instance [safe] Show a => Show (Talvez a) -- Defined at Aula7.hs:10:13 instance [safe] Functor Talvez -- Defined at Aula7.hs:12:10 instance Applicative Talvez -- Defined at /home/hugo/Academic/Teaching/2022.2/TCPF/Aulas/Aula27.hs:29:10 λ> [(^2), (^3)] <*> [2, 5, 7] [4,25,49,8,125,343] λ> res = [(^2), (^3)] <*> [2..] λ> take 20 res [4,9,16,25,36,49,64,81,100,121,144,169,196,225,256,289,324,361,400,441] λ> prox (0,0) (0,1) λ> prox (0,1) (1,1) λ> prox (1,1) (1,0) λ> prox (1,0) (0,2) λ> take 20 pares [(0,0),(0,1),(1,1),(1,0),(0,2),(1,2),(2,2),(2,1),(2,0),(0,3),(1,3),(2,3),(3,3),(3,2),(3,1),(3,0),(0,4),(1,4),(2,4),(3,4)] λ> funcs = [(*i) | i <- [0..]] λ> naturais = [0..] λ> nativo = funcs <*> naturais λ> take 10 nativo [0,0,0,0,0,0,0,0,0,0] λ> [ (funcs!!i) (naturais!!j) | (i,j) <- pares] :211:11: error: • Couldn't match expected type ‘Int’ with actual type ‘Integer’ • In the second argument of ‘(!!)’, namely ‘i’ In the expression: funcs !! i In the expression: (funcs !! i) (naturais !! j) :211:25: error: • Couldn't match expected type ‘Int’ with actual type ‘Integer’ • In the second argument of ‘(!!)’, namely ‘j’ In the first argument of ‘funcs !! i’, namely ‘(naturais !! j)’ In the expression: (funcs !! i) (naturais !! j) Complete: cabal build (0 compiler messages) No compiler messages, dumping complete output: No cabal.project file or cabal file matching the default glob './*.cabal' was found. Please create a package description file .cabal or a cabal.project file referencing the packages you want to build. λ> funcs = [(*i) | i <- [0..]] λ> naturais = [0..] λ> [ (funcs!!i) (naturais!!j) | (i,j) <- pares] :220:11: error: • Couldn't match expected type ‘Int’ with actual type ‘Integer’ • In the second argument of ‘(!!)’, namely ‘i’ In the expression: funcs !! i In the expression: (funcs !! i) (naturais !! j) :220:25: error: • Couldn't match expected type ‘Int’ with actual type ‘Integer’ • In the second argument of ‘(!!)’, namely ‘j’ In the first argument of ‘funcs !! i’, namely ‘(naturais !! j)’ In the expression: (funcs !! i) (naturais !! j) λ> :t naturais naturais :: (Num a, Enum a) => [a] λ> :t funcs funcs :: (Num a, Enum a) => [a -> a] λ> :t (!!) (!!) :: [a] -> Int -> a λ> [ (funcs!!i) (naturais!!j) | (i,j) <- pares] [0,0,1,0,0,2,4,2,0,0,3,6,9,6,3,0,0,4,8,12,16,12,8,4,0,0,5,10,15,20,25,20,15,10,5,0,0,6,12,18,24,30,36,30,24,18,12,6,0,0,7,14,21,28,35,42,49,42,35,28,21,14,7,0,0,8,16,24,32,40,48,56,64,56,48,40,32,24,16,8,0,0,9,18,27,36,45,54,63,72,81,72,63,54,45,36,27,18,9,0,0,10,20,30,40,50,60,70,80,90,100,90,80,70,60,50,40,30,20,10,0,0,11,22,33,44,55,66,77,88,99,110,121,110,99,88,77,66,55,44,33,22,11,0,0,12,24,36,48,60,72,84,96,108,120,132,144,132,120,108,96,84,72,60,48,36,24,12,0,0,13,26,39,52,65,78,91,104,117,130,143,156,169,156,143,130,117,104,91,78,65,52,39,26,13,0,0,14,28,42,56,70,84,98,112,126,140,154,168,182,196,182,168,154,140,126,112,98,84,70,56,42,28,14,0,0,15,30,45,60,75,90,105,120,135,150,165,180,195,210,225,210,195,180,165,150,135,120,105,90,75,60,45,30,15,0,0,16,32,48,64,80,96,112,128,144,160,176,192,208,224,240,256,240,224,208,192,176,160,144,128,112,96,80,64,48,32,16,0,0,17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,272,255,238,221,204,187,170,153,136,119,102,85,68,51,34,17,0,0,18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,306,288,270,252,234,216,198,180,162,144,126,108,90,72,54,36,18,0,0,19,38,57,76,95,114,133,152,171,190,209,228,247,266,285,304,323,342,361,342,323,304,285,266,247,228,209,190,171,152,133,114,95,76,57,38,19,0,0,20,40,60,80,100,120,140,160,180,200,220,240,260,280,300,320,340,360,380,400,380,360,340,320,300,280,260,240,220,200,180,160,140,120,100,80,60,40,20,0,0,21,42,63,84,105,126,147,168,189,210,231,252,273,294,315,336,357,378,399,420,441,420,399,378,357,336,315,294,273,252,231,210,189,168,147,126,105,84,63,42,21,0,0,22,44,66,88,110,132,154,176,198,220,242,264,286,308,330,352,374,396,418,440,462,484,462,440,418,396,374,352,330,308,286,264,242,220,198,176,154,132,110,88,66,44,22,0,0,23,46,69,92,115,138,161,184,207,230,253,276,299,322,345,368,391,414,437,460,483,506,529,506,483,460,437,414,391,368,345,322,299,276,253,230,207,184,161,138,115,92,69,46,23,0,0,24,48,72,96,120,144,168,192,216,240,264,288,312,336,360,384,408,432,456,480,504,528,552,576,552,528,504,480,456,432,408,384,360,336,312,288,264,240,216,192,168,144,120,96,72,48,24,0,0,25,50,75,100,125,150,175,200,225,250,275,300,325,350,375,400,425,450,475,500,525,550,575,600,625,600,575,550,525,500,475,450,425,400,375,350,325,300,275,250,225,200,175,150,125,100,75,50,25,0,0,26,52,78,104,130,156,182,208,234,260,286,312,338,364,390,416,442,468,494,520,546,572,598,624,650,676,650,624,598,572,546,520,494,468,442,416,390,364,338,312,286,260,234,208,182,156,130,104,78,52,26,0,0,27,54,81,108,135,162,189,216,243,270,297,324,351,378,405,432,459,486,513,540,567,594,621,648,675,702,729,702,675,648,621,594,567,540,513,486,459,432,405,378,351,324,297,270,243,216,189,162,135,108,81,54,27,0,0,28,56,84,112,140,168,196,224,252,280,308,336,364,392,420,448,476,504,532,560,588,616,644,672,700,728,756,784,756,728,700,672,644,616,588,560,532,504,476,448,420,392,364,336,308,280,252,224,196,168,140,112,84,56,28,0,0,29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,812,783,754,725,696,667,638,609,580,551,522,493,464,435,406,377,348,319,290,261,232,203,174,145,116,87,58,29,0,0,30,60,90,120,150,180,210,240,270,300,330,360,390,420,450,480,510,540,570,600,630,660,690,720,750,780,810,840,870,900,870,840,810,780,750,720,690,660,630,600,570,540,510,480,450,420,390,360,330,300,270,240,210,180,150,120,90,60,30,0,0,31,62,93,124,155,186,217,248,279,310,341,372,403,434,465,496,527,558,589,620,651,682,713,744,775,806,837,868,899,930,961,930,899,868,837,806,775,744,713,682,651,620,589,558,527,496,465,434,403,372,341,310,279,248,217,186,155,124,93,62,31,0,0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,480,512,544,576,608,640,672,704,736,768,800,832,864,896,928,960,992,1024,992,960,928,896,864,832,800,768,736,704,672,640,608,576,544,512,480,448,416,384,352,320,288,256,224,192,160,128,96,64,32,0,0,33,66,99,132,165,198,231,264,297,330,363,396,429,462,495,528,561,594,627,660,693,726,759,792,825,858,891,924,957,990,1023,1056,1089,1056,1023,990,957,924,891,858,825,792,759,726,693,660,627,594,561,528,495,462,429,396,363,330,297,264,231,198,165,132,99,66,33,0,0,34,68,102,136,170,204,238,272,306,340,374,408,442,476,510,544,578,612,646,680,714,748,782,816,850,884,918,952,986,1020,1054,1088,1122,1156,1122,1088,1054,1020,986,952,918,884,850,816,782,748,714,680,646,612,578,544,510,476,442,408,374,340,306,272,238,204,170,136,102,68,34,0,0,35,70,105,140,175,210,245,280,315,350,385,420,455,490,525,560,595,630,665,700,735,770,805,840,875,910,945,980,1015,1050,1085,1120,1155,1190,1225,1190,1155,1120,1085,1050,1015,980,945,910,875,840,805,770,735,700,665,630,595,560,525,490,455,420,385,350,315,280,245,210,175,140,105,70,35,0,0,36,72,108,144,180,216,252,288,324,360,396,432,468,504,540,576,612,648,684,720,756,792,828,864,900,936,972,1008,1044,1080,1116,1152,1188,1224,1260,1296,1260,1224,1188,1152,1116,1080,1044,1008,972,936,900,864,828,792,756,720,684,648,612,576,540,504,468,432,396,360,324,288,252,216,180,144,108,72,36,0,0,37,74,111,148,185,222,259,296,333,370,407,444,481,518,555,592,629,666,703,740,777,814,851,888,925,962,999,1036,1073,1110,1147,1184,1221,1258,1295,1332,1369,1332,1295,1258,1221,1184,1147,1110,1073,1036,999,962,925,888,851,814,777,740,703,666,629,592,555,518,481,444,407,370,333,296,259,222,185,148,111,74,37,0,0,38,76,114,152,190,228,266,304,342,380,418,456,494,532,570,608,646,684,722,760,798,836,874,912,950,988,1026,1064,1102,1140,1178,1216,1254,1292,1330,1368,1406,1444,1406,1368,1330,1292,1254,1216,1178,1140,1102,1064,1026,988,950,912,874,836,798,760,722,684,646,608,570,532,494,456,418,380,342,304,266,228,190,152,114,76,38,0,0,39,78,117,156,195,234,273,312,351,390,429,468,507,546,585,624,663,702,741,780,819,858,897,936,975,1014,1053,1092,1131,1170,1209,1248,1287,1326,1365,1404,1443,1482,1521,1482,1443,1404,1365,1326,1287,1248,1209,1170,1131,1092,1053,1014,975,936,897,858,819,780,741,702,663,624,585,546,507,468,429,390,351,312,273,234,195,156,117,78,39,0,0,40,80,120,160,200,240,280,320,360,400,440,480,520,560,600,640,680,720,760,800,840,880,920,960,1000,1040,1080,1120,1160,1200,1240,1280,1320,1360,1400,1440,1480,1520,1560,1600,1560,1520,1480,1440,1400,1360,1320,1280,1240,1200,1160,1120,1080,1040,1000,960,920,880,840,800,760,720,680,640,600,560,520,480,440,400,360,320,280,240,200,160,120,80,40,0,0,41,82,123,164,205,246,287,328,369,410,451,492,533,574,615,656,697,738,779,820,861,902,943,984,1025,1066,1107,1148,1189,1230,1271,1312,1353,1394,1435,1476,1517,1558,1599,1640,1681,1640,1599,1558,1517,1476,1435,1394,1353,1312,1271,1230,1189,1148,1107,1066,1025,984,943,902,861,820,779,738,697,656,615,574,533,492,451,410,369,328,287,246,205,164,123,82,41,0,0,42,84,126,168,210,252,294,336,378,420,462,504,546,588,630,672,714,756,798,840,882,924,966,1008,1050,1092,1134,1176,1218,1260,1302,1344,1386,1428,1470,1512,1554,1596,1638,1680,1722,1764,1722,1680,1638,1596,1554,1512,1470,1428,1386,1344,1302,1260,1218,1176,1134,1092,1050,1008,966,924,882,840,798,756,714,672,630,588,546,504,462,420,378,336,294,252,210,168,126,84,42,0,0,43,86,129,172,215,258,301,344,387,430,473,516,559,602,645,688,731,774,817,860,903,946,989,1032,1075,1118,1161,1204,1247,1290,1333,1376,1419,1462,1505,1548,1591,1634,1677,1720,1763,1806,1849,1806,1763,1720,1677,1634,1591,1548,1505,1462,1419,1376,1333,1290,1247,1204,1161,1118,1075,1032,989,946,903,860,817,774,731,688,645,602,559,516,473,430,387,344,301,258,215,172,129,86,43,0,0,44,88,132,176,220,264,308,352,396,440,484,528,572,616,660,704,748,792,836,880,924,968,1012,1056,1100,1144,1188,1232,1276,1320,1364,1408,1452,1496,1540,1584,1628,1672,1716,1760,1804,1848,1892,1936,1892,1848,1804,1760,1716,1672,1628,1584,1540,1496,1452,1408,1364,1320,1276,1232,1188,1144,1100,1056,1012,968,924,880,836,792,748,704,660,616,572,528,484,440,396,352,308,264,220,176,132,88,44,0,0,45,90,135,180,225,270,315,360,405,450,495,540,585,630,675,720,765,810,855,900,945,990,1035,1080,1125,1170,1215,1260,1305,1350,1395,1440,1485,1530,1575,1620,1665,1710,1755,1800,1845,1890,1935,1980,2025,1980,1935,1890,1845,1800,1755,1710,1665,1620,1575,1530,1485,1440,1395,1350,1305,1260,1215,1170,1125,1080,1035,990,945,900,855,810,765,720,675,630,585,540,495,450,405,360,315,270,225,180,135,90,45,0,0,46,92,138,184,230,276,322,368,414,460,506,552,598,644,690,736,782,828,874,920,966,1012,1058,1104,1150,1196,1242,1288,1334,1380,1426,1472,1518,1564,1610,1656,1702,1748,1794,1840,1886,1932,1978,2024,2070,2116,2070,2024,1978,1932,1886,1840,1794,1748,1702,1656,1610,1564,1518,1472,1426,1380,1334,1288,1242,1196,1150,1104,1058,1012,966,920,874,828,782,736,690,644,598,552,506,460,414,368,322,276,230,184,138,92,46,0,0,47,94,141,188,235,282,329,376,423,470,517,564,611,658,705,752,799,846,893,940,987,1034,1081,1128,1175,1222,1269,1316,1363,1410,1457,1504,1551,1598,1645,1692,1739,1786,1833,1880,1927,1974,2021,2068,2115,2162,2209,2162,2115,2068,2021,1974,1927,1880,1833,1786,1739,1692,1645,1598,1551,1504,1457,1410,1363,1316,1269,1222,1175,1128,1081,1034,987,940,893,846,799,752,705,658,611,564,517,470,423,376,329,282,235,188,141,94,47,0,0,48,96,144,192,240,288,336,384,432,480,528,576,624,672,720,768,816,864,912,960,1008,1056,1104,1152,1200,1248,1296,1344,1392,1440,1488,1536,1584,1632,1680,1728,1776,1824,1872,1920,1968,2016,2064,2112,2160,2208,2256,2304,2256,2208,2160,2112,2064,2016,1968,1920,1872,1824,1776,1728,1680,1632,1584,1536,1488,1440,1392,1344,1296,1248,1200,1152,1104,1056,1008,960,912,864,816,768,720,672,624,576,528,480,432,384,336,288,240,192,144,96,48,0,0,49,98,147,196,245,294,343,392,441,490,539,588,637,686,735,784,833,882,931,980,1029,1078,1127,1176,1225,1274,1323,1372,1421,1470,1519,1568,1617,1666,1715,1764,1813,1862,1911,1960,2009,2058,2107,2156,2205,2254,2303,2352,2401,2352,2303,2254,2205,2156,2107,2058,2009,1960,1911,1862,1813,1764,1715,1666,1617,1568,1519,1470,1421,1372,1323,1274,1225,1176,1127,1078,1029,980,931,882,833,784,735,686,637,588,539,490,441,392,343,294,245,196,147,98,49,0,0,50,100,150,200,250,300,350,400,450,500,550,600,650,700,750,800,850,900,950,1000,1050,1100,1150,1200,1250,1300,1350,1400,1450,1500,1550,1600,1650,1700,1750,1800,1850,1900,1950,2000,2050,2100,2150,2200,2250,2300,2350,2400,2450,2500,2450,2400,2350,2300,2250,2200,2150,2100,2050,2000,1950,1900,1850,1800,1750,1700,1650,1600,1550,1500,1450,1400,1350,1300,1250,1200,1150,1100,1050,1000,950,900,850,800,750,700,650,600,550,500,450,400,350,300,250,200,150,100,50,0,0,51,102,153,204,255,306,357,408,459,510,561,612,663,714,765,816,867,918,969,1020,1071,1122,1173,1224,1275,1326,1377,1428,1479,1530,1581,1632,1683,1734,1785,1836,1887,1938,1989,2040,2091,2142,2193,2244,2295,2346,2397,2448,2499,2550,2601,2550,2499,2448,2397,2346,2295,2244,2193,2142,2091,2040,1989,1938,1887,1836,1785,1734,1683,1632,1581,1530,1479,1428,1377,1326,1275,1224,1173,1122,1071,1020,969,918,867,816,765,714,663,612,561,510,459,408,357,306,255,204,153,102,51,0,0,52,104,156,208,260,312,364,416,468,520,572,624,676,728,780,832,884,936,988,1040,1092,1144,1196,1248,1300,1352,1404,1456,1508,1560,1612,1664,1716,1768,1820,1872,1924,1976,2028,2080,2132,2184,2236,2288,2340,2392,2444,2496,2548,2600,2652,2704,2652,2600,2548,2496,2444,2392,2340,2288,2236,2184,2132,2080,2028,1976,1924,1872,1820,1768,1716,1664,1612,1560,1508,1456,1404,1352,1300,1248,1196,1144,1092,1040,988,936,884,832,780,728,676,624,572,520,468,416,364,312,260,208,156,104,52,0,0,53,106,159,212,265,318,371,424,477,530,583,636,689,742,795,848,901,954,1007,1060,1113,1166,1219,1272,1325,1378,1431,1484,1537,1590,1643,1696,1749,1802,1855,1908,1961,2014,2067,2120,2173,2226,2279,2332,2385,2438,2491,2544,2597,2650,2703,2756,2809,2756,2703,2650,2597,2544,2491,2438,2385,2332,2279,2226,2173,2120,2067,2014,1961,1908,1855,1802,1749,1696,1643,1590,1537,1484,1431,1378,1325,1272,1219,1166,1113,1060,1007,954,901,848,795,742,689,636,583,530,477,424,371,318,265,212,159,106,53,0,0,54,108,162,216,270,324,378,432,486,540,594,648,702,756,810,864,918,972,1026,1080,1134,1188,1242,1296,1350,1404,1458,1512,1566,1620,1674,1728,1782,1836,1890,1944,1998,2052,2106,2160,2214,2268,2322,2376,2430,2484,2538,2592,2646,2700,2754,2808,2862,2916,2862,2808,2754,2700,2646,2592,2538,2484,2430,2376,2322,2268,2214,2160,2106,2052,1998,1944,1890,1836,1782,1728,1674,1620,1566,1512,1458,1404,1350,1296,1242,1188,1134,1080,1026,972,918,864,810,756,702,648,594,540,486,432,378,324,270,216,162,108,54,0,0,55,110,165,220,275,330,385,440,495,550,605,660,715,770,825,880,935,990,1045,1100,1155,1210,1265,1320,1375,1430,1485,1540,1595,1650,1705,1760,1815,1870,1925,1980,2035,2090,2145,2200,2255,2310,2365,2420,2475,2530,2585,2640,2695,2750,2805,2860,2915,2970,3025,2970,2915,2860,2805,2750,2695,2640,2585,2530,2475,2420,2365,2310,2255,2200,2145,2090,2035,1980,1925,1870,1815,1760,1705,1650,1595,1540,1485,1430,1375,1320,1265,1210,1155,1100,1045,990,935,880,825,770,715,660,605,550,495,440,385,330,275,220,165,110,55,0,0,56,112,168,224,280,336,392,448,504,560,616,672,728,784,840,896,952,1008,1064,1120,1176,1232,1288,1344,1400,1456,1512,1568,1624,1680,1736,1792,1848,1904,1960,2016,2072,2128,2184,2240,2296,2352,2408,2464,2520,2576,2632,2688,2744,2800,2856,2912,2968,3024,3080,3136,3080,3024,2968,2912,2856,2800,2744,2688,2632,2576,2520,2464,2408,2352,2296,2240,2184,2128,2072,2016,1960,1904,1848,1792,1736,1680,1624,1568,1512,1456,1400,1344,1288,1232,1176,1120,1064,1008,952,896,840,784,728,672,616,560,504,448,392,336,280,224,168,112,56,0,0,57,114,171,228,285,342,399,456,513,570,627,684,741,798,855,912,969,1026,1083,1140,1197,1254,1311,1368,1425,1482,1539,1596,1653,1710,1767,1824,1881,1938,1995,2052,2109,2166,2223,2280,2337,2394,2451,2508,2565,2622,2679,2736,2793,2850,2907,2964,3021,3078,3135,3192,3249,3192,3135,3078,3021,2964,2907,2850,2793,2736,2679,2622,2565,2508,2451,2394,2337,2280,2223,2166,2109,2052,1995,1938,1881,1824,1767,1710,1653,1596,1539,1482,1425,1368,1311,1254,1197,1140,1083,1026,969,912,855,798,741,684,627,570,513,456,399,342,285,228,171,114,57,0,0,58,116,174,232,290,348,406,464,522,580,638,696,754,812,870,928,986,1044,1102,1160,1218,1276,1334,1392,1450,1508,1566,1624,1682,1740,1798,1856,1914,1972,2030,2088,2146,2204,2262,2320,2378,2436,2494,2552,2610,2668,2726,2784,2842,2900,2958,3016,3074,3132,3190,3248,3306,3364,3306,3248,3190,3132,3074,3016,2958,2900,2842,2784,2726,2668,2610,2552,2494,2436,2378,2320,2262,2204,2146,2088,2030,1972,1914,1856,1798,1740,1682,1624,1566,1508,1450,1392,1334,1276,1218,1160,1102,1044,986,928,870,812,754,696,638,580,522,464,406,348,290,232,174,116,58,0,0,59,118,177,236,295,354,413,472,531,590,649,708,767,826,885,944,1003,1062,1121,1180,1239,1298,1357,1416,1475,1534,1593,1652,1711,1770,1829,1888,1947,2006,2065,2124,2183,2242,2301,2360,2419,2478,2537,2596,2655,2714,2773,2832,2891,2950,3009,3068,3127,3186,3245,3304,3363,3422,3481,3422,3363,3304,3245,3186,3127,3068,3009,2950,2891,2832,2773,2714,2655,2596,2537,2478,2419,2360,2301,2242,2183,2124,2065,2006,1947,1888,1829,1770,1711,1652,1593,1534,1475,1416,1357,1298,1239,1180,1121,1062,1003,944,885,826,767,708,649,590,531,472,413,354,295,236,177,118,59,0,0,60,120,180,240,300,360,420,480,540,600,660,720,780,840,900,960,1020,1080,1140,1200,1260,1320,1380,1440,1500,1560,1620,1680,1740,1800,1860,1920,1980,2040,2100,2160,2220,2280,2340,2400,2460,2520,2580,2640,2700,2760,2820,2880,2940,3000,3060,3120,3180,3240,3300,3360,3420,3480,3540,3600,3540,3480,3420,3360,3300,3240,3180,3120,3060,3000,2940,2880,2820,2760,2700,2640,2580,2520,2460,2400,2340,2280,2220,2160,2100,2040,1980,1920,1860,1800,1740,1680,1620,1560,1500,1440,1380,1320,1260,1200,1140,1080,1020,960,900,840,780,720,660,600,540,480,420,360,300,240,180,120,60,0,0,61,122,183,244,305,366,427,488,549,610,671,732,793,854,915,976,1037,1098,1159,1220,1281,1342,1403,1464,1525,1586,1647,1708,1769,1830,1891,1952,2013,2074,2135,2196,2257,2318,2379,2440,2501,2562,2623,2684,2745,2806,2867,2928,2989,3050,3111,3172,3233,3294,3355,3416,3477,3538,3599,3660,3721,3660,3599,3538,3477,3416,3355,3294,3233,3172,3111,3050,2989,2928,2867,2806,2745,2684,2623,2562,2501,2440,2379,2318,2257,2196,2135,2074,2013,1952,1891,1830,1769,1708,1647,1586,1525,1464,1403,1342,1281,1220,1159,1098,1037,976,915,854,793,732,671,610,549,488,427,366,305,244,183,122,61,0,0,62,124,186,248,310,372,434,496,558,620,682,744,806,868,930,992,1054,1116,1178,1240,1302,1364,1426,1488,1550,1612,1674,1736,1798,1860,1922,1984,2046,2108,2170,2232,2294,2356,2418,2480,2542,2604,2666,2728,2790,2852,2914,2976,3038,3100,3162,3224,3286,3348,3410,3472,3534,3596,3658,3720,3782,3844,3782,3720,3658,3596,3534,3472,3410,3348,3286,3224,3162,3100,3038,2976,2914,2852,2790,2728,2666,2604,2542,2480,2418,2356,2294,2232,2170,2108,2046,1984,1922,1860,1798,1736,1674,1612,1550,1488,1426,1364,1302,1240,1178,1116,1054,992,930,868,806,744,682,620,558,496,434,372,310,248,186,124,62,0,0,63,126,189,252,315,378,441,504,567,630,693,756,819,882,945,1008,1071,1134,1197,1260,1323,1386,1449,1512,1575,1638,1701,1764,1827,1890,1953,2016,2079,2142,2205,2268,2331,2394,2457,2520,2583,2646,2709,2772,2835,2898,2961,3024,3087,3150,3213,3276,3339,3402,3465,3528,3591,3654,3717,3780,3843,3906,3969,3906,3843,3780,3717,3654,3591,3528,3465,3402,3339,3276,3213,3150,3087,3024,2961,2898,2835,2772,2709,2646,2583,2520,2457,2394,2331,2268,2205,2142,2079,2016,1953,1890,1827,1764,1701,1638,1575,1512,1449,1386,1323,1260,1197,1134,1071,1008,945,882,819,756,693,630,567,504,441,378,315,252,189,126,63,0,0,64,128,192,256,320,384,448,512,576,640,704,768,832,896,960,1024,1088,1152,1216,1280,1344,1408,1472,1536,1600,1664,1728,1792,1856,1920,1984,2048,2112,2176,2240,2304,2368,2432,2496,2560,2624,2688,2752,2816,2880,2944,3008,3072,3136,3200,3264,3328,3392,3456,3520,3584,3648,3712,3776,3840,3904,3968,4032,4096,4032,3968,3904,3840,3776,3712,3648,3584,3520,3456,3392,3328,3264,3200,3136,3072,3008,2944,2880,2816,2752,2688,2624,2560,2496,2432,2368,2304,2240,2176,2112,2048,1984,1920,1856,1792,1728,1664,1600,1536,1472,1408,1344,1280,1216,1152,1088,1024,960,896,832,768,704,640,576,512,448,384,320,256,192,128,64,0,0,65,130,195,260,325,390,455,520,585,650,715,780,845,910,975,1040,1105,1170,1235,1300,1365,1430,1495,1560,1625,1690,1755,1820,1885,1950,2015,2080,2145,2210,2275,2340,2405,2470,2535,2600,2665,2730,2795,2860,2925,2990,3055,3120,3185,3250,3315,3380,3445,3510,3575,3640,3705,3770,3835,3900,3965,4030,4095,4160,4225,4160,4095,4030,3965,3900,3835,3770,3705,3640,3575,3510,3445,3380,3315,3250,3185,3120,3055,2990,2925,2860,2795,2730,2665,2600,2535,2470,2405,2340,2275,2210,2145,2080,2015,1950,1885,1820,1755,1690,1625,1560,1495,1430,1365,1300,1235,1170,1105,1040,975,910,845,780,715,650,585,520,455,390,325,260,195,130,65,0,0,66,132,198,264,330,396,462,528,594,660,726,792,858,924,990,1056,1122,1188,1254,1320,1386,1452,1518,1584,1650,1716,1782,1848,1914,1980,2046,2112,2178,2244,2310,2376,2442,2508,2574,2640,2706,2772,2838,2904,2970,3036,3102,3168,3234,3300,3366,3432,3498,3564,3630,3696,3762,3828,3894,3960,4026,4092,4158,4224,4290,4356,4290,4224,4158,4092,4026,3960,3894,3828,3762,3696,3630,3564,3498,3432,3366,3300,3234,3168,3102,3036,2970,2904,2838,2772,2706,2640,2574,2508,2442,2376,2310,2244,2178,2112,2046,1980,1914,1848,1782,1716,1650,1584,1518,1452,1386,1320,1254,1188,1122,1056,990,924,858,792,726,660,594,528,462,396,330,264,198,132,66,0,0,67,134,201,268,335,402,469,536,603,670,737,804,871,938,1005,1072,1139,1206,1273,1340,1407,1474,1541,1608,1675,1742,1809,1876,1943,2010,2077,2144,2211,2278,2345,2412,2479,2546,2613,2680,2747,2814,2881,2948,3015,3082,3149,3216,3283,3350,3417,3484,3551,3618,3685,3752,3819,3886,3953,4020,4087,4154,4221,4288,4355,4422,4489,4422,4355,4288,4221,4154,4087,4020,3953,3886,3819,3752,3685,3618,3551,3484,3417,3350,3283,3216,3149,3082,3015,2948,2881,2814,2747,2680,2613,2546,2479,2412,2345,2278,2211,2144,2077,2010,1943,1876,1809,1742,1675,1608,1541,1474,1407,1340,1273,1206,1139,1072,1005,938,871,804,737,670,603,536,469,402,335,268,201,134,67,0,0,68,136,204,272,340,408,476,544,612,680,748,816,884,952,1020,1088,1156,1224,1292,1360,1428,1496,1564,1632,1700,1768,1836,1904,1972,2040,2108,2176,2244,2312,2380,2448,2516,2584,2652,2720,2788,2856,2924,2992,3060,3128,3196,3264,3332,3400,3468,3536,3604,3672,3740,3808,3876,3944,4012,4080,4148,4216,4284,4352,4420,4488,4556,4624,4556,4488,4420,4352,4284,4216,4148,4080,4012,3944,3876,3808,3740,3672,3604,3536,3468,3400,3332,3264,3196,3128,3060,2992,2924,2856,2788,2720,2652,2584,2516,2448,2380,2312,2244,2176,2108,2040,1972,1904,1836,1768,1700,1632,1564,1496,1428,1360,1292,1224,1156,1088,1020,952,884,816,748,680,612,544,476,408,340,272,204,136,68,0,0,69,138,207,276,345,414,483,552,621,690,759,828,897,966,1035,1104,1173,1242,1311,1380,1449,1518,1587,1656,1725,1794,1863,1932,2001,2070,2139,2208,2277,2346,2415,2484,2553,2622,2691,2760,2829,2898,2967,3036,3105,3174,3243,3312,3381,3450,3519,3588,3657,3726,3795,3864,3933,4002,4071,4140,4209,4278,4347,4416,4485,4554,4623,4692,4761,4692,4623,4554,4485,4416,4347,4278,4209,4140,4071,4002,3933,3864,3795,3726,3657,3588,3519,3450,3381,3312,3243,3174,3105,3036,2967,2898,2829,2760,2691,2622,2553,2484,2415,2346,2277,2208,2139,2070,2001,1932,1863,1794,1725,1656,1587,1518,1449,1380,1311,1242,1173,1104,1035,966,897,828,759,690,621,552,483,414,345,276,207,138,69,0,0,70,140,210,280,350,420,490,560,630,700,770,840,910,980,1050,1120,1190,1260,1330,1400,1470,1540,1610,1680,1750,1820,1890,1960,2030,2100,2170,2240,2310,2380,2450,2520,2590,2660,2730,2800,2870,2940,3010,3080,3150,3220,3290,3360,3430,3500,3570,3640,3710,3780,3850,3920,3990,4060,4130,4200,4270,4340,4410,4480,4550,4620,4690,4760,4830,4900,4830,4760,4690,4620,4550,4480,4410,4340,4270,4200,4130,4060,3990,3920,3850,3780,3710,3640,3570,3500,3430,3360,3290,3220,3150,3080,3010,2940,2870,2800,2730,2660,2590,2520,2450,2380,2310,2240,2170,2100,2030,1960,1890,1820,1750,1680,1610,1540,1470,1400,1330,1260,1190,1120,1050,980,910,840,770,700,630,560,490,420,350,280,210,140,70,0,0,71,142,213,284,355,426,497,568,639,710,781,852,923,994,1065,1136,1207,1278,1349,1420,1491,1562,1633,1704,1775,1846,1917,1988,2059,2130,2201,2272,2343,2414,2485,2556,2627,2698,2769,2840,2911,2982,3053,3124,3195,3266,3337,3408,3479,3550,3621,3692,3763,3834,3905,3976,4047,4118,4189,4260,4331,4402,4473,4544,4615,4686,4757,4828,4899,4970,5041,4970,4899,4828,4757,4686,4615,4544,4473,4402,4331,4260,4189,4118,4047,3976,3905,3834,3763,3692,3621,3550,3479,3408,3337,3266,3195,3124,3053,2982,2911,2840,2769,2698,2627,2556,2485,2414,2343,2272,2201,2130,2059,1988,1917,1846,1775,1704,1633,1562,1491,1420,1349,1278,1207,1136,1065,994,923,852,781,710,639,568,497,426,355,284,213,142,71,0,0,72,144,216,288,360,432,504,576,648,720,792,864,936,1008,1080,1152,1224,1296,1368,1440,1512,1584,1656,1728,1800,1872,1944,2016,2088,2160,2232,2304,2376,2448,2520,2592,2664,2736,2808,2880,2952,3024,3096,3168,3240,3312,3384,3456,3528,3600,3672,3744,3816,3888,3960,4032,4104,4176,4248,4320,4392,4464,4536,4608,4680,4752,4824,4896,4968,5040,5112,5184,5112,5040,4968,4896,4824,4752,4680,4608,4536,4464,4392,4320,4248,4176,4104,4032,3960,3888,3816,3744,3672,3600,3528,3456,3384,3312,3240,3168,3096,3024,2952,2880,2808,2736,2664,2592,2520,2448,2376,2304,2232,2160,2088,2016,1944,1872,1800,1728,1656,1584,1512,1440,1368,1296,1224,1152,1080,1008,936,864,792,720,648,576,504,432,360,288,216,144,72,0,0,73,146,219,292,365,438,511,584,657,730,803,876,949,1022,1095,1168,1241,1314,1387,1460,1533,1606,1679,1752,1825,1898,1971,2044,2117,2190,2263,2336,2409,2482,2555,2628,2701,2774,2847,2920,2993,3066,3139,3212,3285,3358,3431,3504,3577,3650,3723,3796,3869,3942,4015,4088,4161,4234,4307,4380,4453,4526,4599,4672,4745,4818,4891,4964,5037,5110,5183,5256,5329,5256,5183,5110,5037,4964,4891,4818,4745,4672,4599,4526,4453,4380,4307,4234,4161,4088,4015,3942,3869,3796,3723,3650,3577,3504,3431,3358,3285,3212,3139,3066,2993,2920,2847,2774,2701,2628,2555,2482,2409,2336,2263,2190,2117,2044,1971,1898,1825,1752,1679,1606,1533,1460,1387,1314,1241,1168,1095,1022,949,876,803,730,657,584,511,438,365,292,219,146,73,0,0,74,148,222,296,370,444,518,592,666,740,814,888,962,1036,1110,1184,1258,1332,1406,1480,1554,1628,1702,1776,1850,1924,1998,2072,2146,2220,2294,2368,2442,2516,2590,2664,2738,2812,2886,2960,3034,3108,3182,3256,3330,3404,3478,3552,3626,3700,3774,3848,3922,3996,4070,4144,4218,4292,4366,4440,4514,4588,4662,4736,4810,4884,4958,5032,5106,5180,5254,5328,5402,5476,5402,5328,5254,5180,5106,5032,4958,4884,4810,4736,4662,4588,4514,4440,4366,4292,4218,4144,4070,3996,3922,3848,3774,3700,3626,3552,3478,3404,3330,3256,3182,3108,3034,2960,2886,2812,2738,2664,2590,2516,2442,2368,2294,2220,2146,2072,1998,1924,1850,1776,1702,1628,1554,1480,1406,1332,1258,1184,1110,1036,962,888,814,740,666,592,518,444,370,296,222,148,74,0,0,75,150,225,300,375,450,525,600,675,750,825,900,975,1050,1125,1200,1275,1350,1425,1500,1575,1650,1725,1800,1875,1950,2025,2100,2175,2250,2325,2400,2475,2550,2625,2700,2775,2850,2925,3000,3075,3150,3225,3300,3375,3450,3525,3600,3675,3750,3825,3900,3975,4050,4125,4200,4275,4350,4425,4500,4575,4650,4725,4800,4875,4950,5025,5100,5175,5250,5325,5400,5475,5550,5625,5550,5475,5400,5325,5250,5175,5100,5025,4950,4875,4800,4725,4650,4575,4500,4425,4350,4275,4200,4125,4050,3975,3900,3825,3750,3675,3600,3525,3450,3375,3300,3225,3150,3075,3000,2925,2850,2775,2700,2625,2550,2475,2400,2325,2250,2175,2100,2025,1950,1875,1800,1725,1650,1575,1500,1425,1350,1275,1200,1125,1050,975,900,825,750,675,600,525,450,375,300,225,150,75,0,0,76,152,228,304,380,456,532,608,684,760,836,912,988,1064,1140,1216,1292,1368,1444,1520,1596,1672,1748,1824,1900,1976,2052,2128,2204,2280,2356,2432,2508,2584,2660,2736,2812,2888,2964,3040,3116,3192,3268,3344,3420,3496,3572,3648,3724,3800,3876,3952,4028,4104,4180,4256,4332,4408,4484,4560,4636,4712,4788,4864,4940,5016,5092,5168,5244,5320,5396,5472,5548,5624,5700,5776,5700,5624,5548,5472,5396,5320,5244,5168,5092,5016,4940,4864,4788,4712,4636,4560,4484,4408,4332,4256,4180,4104,4028,3952,3876,3800,3724,3648,3572,3496,3420,3344,3268,3192,3116,3040,2964,2888,2812,2736,2660,2584,2508,2432,2356,2280,2204,2128,2052,1976,1900,1824,1748,1672,1596,1520,1444,1368,1292,1216,1140,1064,988,912,836,760,684,608,532,456,380,304,228,152,76,0,0,77,154,231,308,385,462,539,616,693,770,847,924,1001,1078,1155,1232,1309,1386,1463,1540,1617,1694,1771,1848,1925,2002,2079,2156,2233,2310,2387,2464,2541,2618,2695,2772,2849,2926,3003,3080,3157,3234,3311,3388,3465,3542,3619,3696,3773,3850,3927,4004,4081,4158,4235,4312,4389,4466,4543,4620,4697,4774,4851,4928,5005,5082,5159,5236,5313,5390,5467,5544,5621,5698,5775,5852,5929,5852,5775,5698,5621,5544,5467,5390,5313,5236,5159,5082,5005,4928,4851,4774,4697,4620,4543,4466,4389,4312,4235,4158,4081,4004,3927,3850,3773,3696,3619,3542,3465,3388,3311,3234,3157,3080,3003,2926,2849,2772,2695,2618,2541,2464,2387,2310,2233,2156,2079,2002,1925,1848,1771,1694,1617,1540,1463,1386,1309,1232,1155,1078,1001,924,847,770,693,616,539,462,385,308,231,154,77,0,0,78,156,234,312,390,468,546,624,702,780,858,936,1014,1092,1170,1248,1326,1404,1482,1560,1638,1716,1794,1872,1950,2028,2106,2184,2262,2340,2418,2496,2574,2652,2730,2808,2886,2964,3042,3120,3198,3276,3354,3432,3510,3588,3666,3744,3822,3900,3978,4056,4134,4212,4290,4368,4446,4524,4602,4680,4758,4836,4914,4992,5070,5148,5226,5304,5382,5460,5538,5616,5694,5772,5850,5928,6006,6084,6006,5928,5850,5772,5694,5616,5538,5460,5382,5304,5226,5148,5070,4992,4914,4836,4758,4680,4602,4524,4446,4368,4290,4212,4134,4056,3978,3900,3822,3744,3666,3588,3510,3432,3354,3276,3198,3120,3042,2964,2886,2808,2730,2652,2574,2496,2418,2340,2262,2184,2106,2028,1950,1872,1794,1716,1638,1560,1482,1404,1326,1248,1170,1092,1014,936,858,780,702,624,546,468,390,312,234,156,78,0,0,79,158,237,316,395,474,553,632,711,790,869,948,1027,1106,1185,1264,1343,1422,1501,1580,1659,1738,1817,1896,1975,2054,2133,2212,2291,2370,2449,2528,2607,2686,2765,2844,2923,3002,3081,3160,3239,3318,3397,3476,3555,3634,3713,3792,3871,3950,4029,4108,4187,4266,4345,4424,4503,4582,4661,4740,4819,4898,4977,5056,5135,5214,5293,5372,5451,5530,5609,5688,5767,5846,5925,6004,6083,6162,6241,6162,6083,6004,5925,5846,5767,5688,5609,5530,5451,5372,5293,5214,5135,5056,4977,4898,4819,4740,4661,4582,4503,4424,4345,4266,4187,4108,4029,3950,3871,3792,3713,3634,3555,3476,3397,3318,3239,3160,3081,3002,2923,2844,2765,2686,2607,2528,2449,2370,2291,2212,2133,2054,1975,1896,1817,1738,1659,1580,1501,1422,1343,1264,1185,1106,1027,948,869,790,711,632,553,474,395,316,237,158,79,0,0,80,160,240,320,400,480,560,640,720,800,880,960,1040,1120,1200,1280,1360,1440,1520,1600,1680,1760,1840,1920,2000,2080,2160,2240,2320,2400,2480,2560,2640,2720,2800,2880,2960,3040,3120,3200,3280,3360,3440,3520,3600,3680,3760,3840,3920,4000,4080,4160,4240,4320,4400,4480,4560,4640,4720,4800,4880,4960,5040,5120,5200,5280,5360,5440,5520,5600,5680,5760,5840,5920,6000,6080,6160,6240,6320,6400,6320,6240,6160,6080,6000,5920,5840,5760,5680,5600,5520,5440,5360,5280,5200,5120,5040,4960,4880,4800,4720,4640,4560,4480,4400,4320,4240,4160,4080,4000,3920,3840,3760,3680,3600,3520,3440,3360,3280,3200,3120,3040,2960,2880,2800,2720,2640,2560,2480,2400,2320,2240,2160,2080,2000,1920,1840,1760,1680,1600,1520,1440,1360,1280,1200,1120,1040,960,880,800,720,640,560,480,400,320,240,160,80,0,0,81,162,243,324,405,486,567,648,729,810,891,972,1053,1134,1215,1296,1377,1458,1539,1620,1701,1782,1863,1944,2025,2106,2187,2268,2349,2430,2511,2592,2673,2754,2835,2916,2997,3078,3159,3240,3321,3402,3483,3564,3645,3726,3807,3888,3969,4050,4131,4212,4293,4374,4455,4536,4617,4698,4779,4860,4941,5022,5103,5184,5265,5346,5427,5508,5589,5670,5751,5832,5913,5994,6075,6156,6237,6318,6399,6480,6561,6480,6399,6318,6237,6156,6075,5994,5913,5832,5751,5670,5589,5508,5427,5346,5265,5184,5103,5022,4941,4860,4779,4698,4617,4536,4455,4374,4293,4212,4131,4050,3969,3888,3807,3726,3645,3564,3483,3402,3321,3240,3159,3078,2997,2916,2835,2754,2673,2592,2511,2430,2349,2268,2187,2106,2025,1944,1863,1782,1701,1620,1539,1458,1377,1296,1215,1134,1053,972,891,810,729,648,567,486,405,324,243,162,81,0,0,82,164,246,328,410,492,574,656,738,820,902,984,1066,1148,1230,1312,1394,1476,1558,1640,1722,1804,1886,1968,2050,2132,2214,2296,2378,2460,2542,2624,2706,2788,2870,2952,3034,3116,3198,3280,3362,3444,3526,3608,3690,3772,3854,3936,4018,4100,4182,4264,4346,4428,4510,4592,4674,4756,4838,4920,5002,5084,5166,5248,5330,5412,5494,5576,5658,5740,5822,5904,5986,6068,6150,6232,6314,6396,6478,6560,6642,6724,6642,6560,6478,6396,6314,6232,6150,6068,5986,5904,5822,5740,5658,5576,5494,5412,5330,5248,5166,5084,5002,4920,4838,4756,4674,4592,4510,4428,4346,4264,4182,4100,4018,3936,3854,3772,3690,3608,3526,3444,3362,3280,3198,3116,3034,2952,2870,2788,2706,2624,2542,2460,2378,2296,2214,2132,2050,1968,1886,1804,1722,1640,1558,1476,1394,1312,1230,1148,1066,984,902,820,738,656,574,492,410,328,246,164,82,0,0,83,166,249,332,415,498,581,664,747,830,913,996,1079,1162,1245,1328,1411,1494,1577,1660,1743,1826,1909,1992,2075,2158,2241,2324,2407,2490,2573,2656,2739,2822,2905,2988,3071,3154,3237,3320,3403,3486,3569,3652,3735,3818,3901,3984,4067,4150,4233,4316,4399,4482,4565,4648,4731,4814,4897,4980,5063,5146,5229,5312,5395,5478,5561,5644,5727,5810,5893,5976,6059,6142,6225,6308,6391,6474,6557,6640,6723,6806,6889,6806,6723,6640,6557,6474,6391,6308,6225,6142,6059,5976,5893,5810,5727,5644,5561,5478,5395,5312,5229,5146,5063,4980,4897,4814,4731,4648,4565,4482,4399,4316,4233,4150,4067,3984,3901,3818,3735,3652,3569,3486,3403,3320,3237,3154,3071,2988,2905,2822,2739,2656,2573,2490,2407,2324,2241,2158,2075,1992,1909,1826,1743,1660,1577,1494,1411,1328,1245,1162,1079,996,913,830,747,664,581,498,415,332,249,166,83,0,0,84,168,252,336,420,504,588,672,756,840,924,1008,1092,1176,1260,1344,1428,1512,1596,1680,1764,1848,1932,2016,2100,2184,2268,2352,2436,2520,2604,2688,2772,2856,2940,3024,3108,3192,3276,3360,3444,3528,3612,3696,3780,3864,3948,4032,4116,4200,4284,4368,4452,4536,4620,4704,4788,4872,4956,5040,5124,5208,5292,5376,5460,5544,5628,5712,5796,5880,5964,6048,6132,6216,6300,6384,6468,6552,6636,6720,6804,6888,6972,7056,6972,6888,6804,6720,6636,6552,6468,6384,6300,6216,6132,6048,5964,5880,5796,5712,5628,5544,5460,5376,5292,5208,5124,5040,4956,4872,4788,4704,4620,4536,4452,4368,4284,4200,4116,4032,3948,3864,3780,3696,3612,3528,3444,3360,3276,3192,3108,3024,2940,2856,2772,2688,2604,2520,2436,2352,2268,2184,2100,2016,1932,1848,1764,1680,1596,1512,1428,1344,1260,1176,1092,1008,924,840,756,672,588,504,420,336,252,168,84,0,0,85,170,255,340,425,510,595,680,765,850,935,1020,1105,1190,1275,1360,1445,1530,1615,1700,1785,1870,1955,2040,2125,2210,2295,2380,2465,2550,2635,2720,2805,2890,2975,3060,3145,3230,3315,3400,3485,3570,3655,3740,3825,3910,3995,4080,4165,4250,4335,4420,4505,4590,4675,4760,4845,4930,5015,5100,5185,5270,5355,5440,5525,5610,5695,5780,5865,5950,6035,6120,6205,6290,6375,6460,6545,6630,6715,6800,6885,6970,7055,7140,7225,7140,7055,6970,6885,6800,6715,6630,6545,6460,6375,6290,6205,6120,6035,5950,5865,5780,5695,5610,5525,5440,5355,5270,5185,5100,5015,4930,4845,4760,4675,4590,4505,4420,4335,4250,4165,4080,3995,3910,3825,3740,3655,3570,3485,3400,3315,3230,3145,3060,2975,2890,2805,2720,2635,2550,2465,2380,2295,2210,2125,2040,1955,1870,1785,1700,1615,1530,1445,1360,1275,1190,1105,1020,935,850,765,680,595,510,425,340,255,170,85,0,0,86,172,258,344,430,516,602,688,774,860,946,1032,1118,1204,1290,1376,1462,1548,1634,1720,1806,1892,1978,2064,2150,2236,2322,2408,2494,2580,2666,2752,2838,2924,3010,3096,3182,3268,3354,3440,3526,3612,3698,3784,3870,3956,4042,4128,4214,4300,4386,4472,4558,4644,4730,4816,4902,4988,5074,5160,5246,5332,5418,5504,5590,5676,5762,5848,5934,6020,6106,6192,6278,6364,6450,6536,6622,6708,6794,6880,6966,7052,7138,7224,7310,7396,7310,7224,7138,7052,6966,6880,6794,6708,6622,6536,6450,6364,6278,6192,6106,6020,5934,5848,5762,5676,5590,5504,5418,5332,5246,5160,5074,4988,4902,4816,4730,4644,4558,4472,4386,4300,4214,4128,4042,3956,3870,3784,3698,3612,3526,3440,3354,3268,3182,3096,3010,2924,2838,2752,2666,2580,2494,2408,2322,2236,2150,2064,1978,1892,1806,1720,1634,1548,1462,1376,1290,1204,1118,1032,946,860,774,688,602,516,430,344,258,172,86,0,0,87,174,261,348,435,522,609,696,783,870,957,1044,1131,1218,1305,1392,1479,1566,1653,1740,1827,1914,2001,2088,2175,2262,2349,2436,2523,2610,2697,2784,2871,2958,3045,3132,3219,3306,3393,3480,3567,3654,3741,3828,3915,4002,4089,4176,4263,4350,4437,4524,4611,4698,4785,4872,4959,5046,5133,5220,5307,5394,5481,5568,5655,5742,5829,5916,6003,6090,6177,6264,6351,6438,6525,6612,6699,6786,6873,6960,7047,7134,7221,7308,7395,7482,7569,7482,7395,7308,7221,7134,7047,6960,6873,6786,6699,6612,6525,6438,6351,6264,6177,6090,6003,5916,5829,5742,5655,5568,5481,5394,5307,5220,5133,5046,4959,4872,4785,4698,4611,4524,4437,4350,4263,4176,4089,4002,3915,3828,3741,3654,3567,3480,3393,3306,3219,3132,3045,2958,2871,2784,2697,2610,2523,2436,2349,2262,2175,2088,2001,1914,1827,1740,1653,1566,1479,1392,1305,1218,1131,1044,957,870,783,696,609,522,435,348,261,174,87,0,0,88,176,264,352,440,528,616,704,792,880,968,1056,1144,1232,1320,1408,1496,1584,1672,1760,1848,1936,2024,2112,2200,2288,2376,2464,2552,2640,2728,2816,2904,2992,3080,3168,3256,3344,3432,3520,3608,3696,3784,3872,3960,4048,4136,4224,4312,4400,4488,4576,4664,4752,4840,4928,5016,5104,5192,5280,5368,5456,5544,5632,5720,5808,5896,5984,6072,6160,6248,6336,6424,6512,6600,6688,6776,6864,6952,7040,7128,7216,7304,7392,7480,7568,7656,7744,7656,7568,7480,7392,7304,7216,7128,7040,6952,6864,6776,6688,6600,6512,6424,6336,6248,6160,6072,5984,5896,5808,5720,5632,5544,5456,5368,5280,5192,5104,5016,4928,4840,4752,4664,4576,4488,4400,4312,4224,4136,4048,3960,3872,3784,3696,3608,3520,3432,3344,3256,3168,3080,2992,2904,2816,2728,2640,2552,2464,2376,2288,2200,2112,2024,1936,1848,1760,1672,1584,1496,1408,1320,1232,1144,1056,968,880,792,704,616,528,440,352,264,176,88,0,0,89,178,267,356,445,534,623,712,801,890,979,1068,1157,1246,1335,1424,1513,1602,1691,1780,1869,1958,2047,2136,2225,2314,2403,2492,2581,2670,2759,2848,2937,3026,3115,3204,3293,3382,3471,3560,3649,3738,3827,3916,4005,4094,4183,4272,4361,4450,4539,4628,4717,4806,4895,4984,5073,5162,5251,5340,5429,5518,5607,5696,5785,5874,5963,6052,6141,6230,6319,6408,6497,6586,6675,6764,6853,6942,7031,7120,7209,7298,7387,7476,7565,7654,7743,7832,7921,7832,7743,7654,7565,7476,7387,7298,7209,7120,7031,6942,6853,6764,6675,6586,6497,6408,6319,6230,6141,6052,5963,5874,5785,5696,5607,5518,5429,5340,5251,5162,5073,4984,4895,4806,4717,4628,4539,4450,4361,4272,4183,4094,4005,3916,3827,3738,3649,3560,3471,3382,3293,3204,3115,3026,2937,2848,2759,2670,2581,2492,2403,2314,2225,2136,2047,1958,1869,1780,1691,1602,1513,1424,1335,1246,1157,1068,979,890,801,712,623,534,445,356,267,178,89,0,0,90,180,270,360,450,540,630,720,810,900,990,1080,1170,1260,1350,1440,1530,1620,1710,1800,1890,1980,2070,2160,2250,2340,2430,2520,2610,2700,2790,2880,2970,3060,3150,3240,3330,3420,3510,3600,3690,3780,3870,3960,4050,4140,4230,4320,4410,4500,4590,4680,4770,4860,4950,5040,5130,5220,5310,5400,5490,5580,5670,5760,5850,5940,6030,6120,6210,6300,6390,6480,6570,6660,6750,6840,6930,7020,7110,7200,7290,7380,7470,7560,7650,7740,7830,7920,8010,8100,8010,7920,7830,7740,7650,7560,7470,7380,7290,7200,7110,7020,6930,6840,6750,6660,6570,6480,6390,6300,6210,6120,6030,5940,5850,5760,5670,5580,5490,5400,5310,5220,5130,5040,4950,4860,4770,4680,4590,4500,4410,4320,4230,4140,4050,3960,3870,3780,3690,3600,3510,3420,3330,3240,3150,3060,2970,2880,2790,2700,2610,2520,2430,2340,2250,2160,2070,1980,1890,1800,1710,1620,1530,1440,1350,1260,1170,1080,990,900,810,720,630,540,450,360,270,180,90,0,0,91,182,273,364,455,546,637,728,819,910,1001,1092,1183,1274,1365,1456,1547,1638,1729,1820,1911,2002,2093,2184,2275,2366,2457,2548,2639,2730,2821,2912,3003,3094,3185,3276,3367,3458,3549,3640,3731,3822,3913,4004,4095,4186,4277,4368,4459,4550,4641,4732,4823,4914,5005,5096,5187,5278,5369,5460,5551,5642,5733,5824,5915,6006,6097,6188,6279,6370,6461,6552,6643,6734,6825,6916,7007,7098,7189,7280,7371,7462,7553,7644,7735,7826,7917,8008,8099,8190,8281,8190,8099,8008,7917,7826,7735,7644,7553,7462,7371,7280,7189,7098,7007,6916,6825,6734,6643,6552,6461,6370,6279,6188,6097,6006,5915,5824,5733,5642,5551,5460,5369,5278,5187,5096,5005,4914,4823,4732,4641,4550,4459,4368,4277,4186,4095,4004,3913,3822,3731,3640,3549,3458,3367,3276,3185,3094,3003,2912,2821,2730,2639,2548,2457,2366,2275,2184,2093,2002,1911,1820,1729,1638,1547,1456,1365,1274,1183,1092,1001,910,819,728,637,546,455,364,273,182,91,0,0,92,184,276,368,460,552,644,736,828,920,1012,1104,1196,1288,1380,1472,1564,1656,1748,1840,1932,2024,2116,2208,2300,2392,2484,2576,2668,2760,2852,2944,3036,3128,3220,3312,3404,3496,3588,3680,3772,3864,3956,4048,4140,4232,4324,4416,4508,4600,4692,4784,4876,4968,5060,5152,5244,5336,5428,5520,5612,5704,5796,5888,5980,6072,6164,6256,6348,6440,6532,6624,6716,6808,6900,6992,7084,7176,7268,7360,7452,7544,7636,7728,7820,7912,8004,8096,8188,8280,8372,8464,8372,8280,8188,8096,8004,7912,7820,7728,7636,7544,7452,7360,7268,7176,7084,6992,6900,6808,6716,6624,6532,6440,6348,6256,6164,6072,5980,5888,5796,5704,5612,5520,5428,5336,5244,5152,5060,4968,4876,4784,4692,4600,4508,4416,4324,4232,4140,4048,3956,3864,3772,3680,3588,3496,3404,3312,3220,3128,3036,2944,2852,2760,2668,2576,2484,2392,2300,2208,2116,2024,1932,1840,1748,1656,1564,1472,1380,1288,1196,1104,1012,920,828,736,644,552,460,368,276,184,92,0,0,93,186,279,372,465,558,651,744,837,930,1023,1116,1209,1302,1395,1488,1581,1674,1767,1860,1953,2046,2139,2232,2325,2418,2511,2604,2697,2790,2883,2976,3069,3162,3255,3348,3441,3534,3627,3720,3813,3906,3999,4092,4185,4278,4371,4464,4557,4650,4743,4836,4929,5022,5115,5208,5301,5394,5487,5580,5673,5766,5859,5952,6045,6138,6231,6324,6417,6510,6603,6696,6789,6882,6975,7068,7161,7254,7347,7440,7533,7626,7719,7812,7905,7998,8091,8184,8277,8370,8463,8556,8649,8556,8463,8370,8277,8184,8091,7998,7905,7812,7719,7626,7533,7440,7347,7254,7161,7068,6975,6882,6789,6696,6603,6510,6417,6324,6231,6138,6045,5952,5859,5766,5673,5580,5487,5394,5301,5208,5115,5022,4929,4836,4743,4650,4557,4464,4371,4278,4185,4092,3999,3906,3813,3720,3627,3534,3441,3348,3255,3162,3069,2976,2883,2790,2697,2604,2511,2418,2325,2232,2139,2046,1953,1860,1767,1674,1581,1488,1395,1302,1209,1116,1023,930,837,744,651,558,465,372,279,186,93,0,0,94,188,282,376,470,564,658,752,846,940,1034,1128,1222,1316,1410,1504,1598,1692,1786,1880,1974,2068,2162,2256,2350,2444,2538,2632,2726,2820,2914,3008,3102,3196,3290,3384,3478,3572,3666,3760,3854,3948,4042,4136,4230,4324,4418,4512,4606,4700,4794,4888,4982,5076,5170,5264,5358,5452,5546,5640,5734,5828,5922,6016,6110,6204,6298,6392,6486,6580,6674,6768,6862,6956,7050,7144,7238,7332,7426,7520,7614,7708,7802,7896,7990,8084,8178,8272,8366,8460,8554,8648,8742,8836,8742,8648,8554,8460,8366,8272,8178,8084,7990,7896,7802,7708,7614,7520,7426,7332,7238,7144,7050,6956,6862,6768,6674,6580,6486,6392,6298,6204,6110,6016,5922,5828,5734,5640,5546,5452,5358,5264,5170,5076,4982,4888,4794,4700,4606,4512,4418,4324,4230,4136,4042,3948,3854,3760,3666,3572,3478,3384,3290,3196,3102,3008,2914,2820,2726,2632,2538,2444,2350,2256,2162,2068,1974,1880,1786,1692,1598,1504,1410,1316,1222,1128,1034,940,846,752,658,564,470,376,282,188,94,0,0,95,190,285,380,475,570,665,760,855,950,1045,1140,1235,1330,1425,1520,1615,1710,1805,1900,1995,2090,2185,2280,2375,2470,2565,2660,2755,2850,2945,3040,3135,3230,3325,3420,3515,3610,3705,3800,3895,3990,4085,4180,4275,4370,4465,4560,4655,4750,4845,4940,5035,5130,5225,5320,5415,5510,5605,5700,5795,5890,5985,6080,6175,6270,6365,6460,6555,6650,6745,6840,6935,7030,7125,7220,7315,7410,7505,7600,7695,7790,7885,7980,8075,8170,8265,8360,8455,8550,8645,8740,8835,8930,9025,8930,8835,8740,8645,8550,8455,8360,8265,8170,8075,7980,7885,7790,7695,7600,7505,7410,7315,7220,7125,7030,6935,6840,6745,6650,6555,6460,6365,6270,6175,6080,5985,5890,5795,5700,5605,5510,5415,5320,5225,5130,5035,4940,4845,4750,4655,4560,4465,4370,4275,4180,4085,3990,3895,3800,3705,3610,3515,3420,3325,3230,3135,3040,2945,2850,2755,2660,2565,2470,2375,2280,2185,2090,1995,1900,1805,1710,1615,1520,1425,1330,1235,1140,1045,950,855,760,665,570,475,380,285,190,95,0,0,96,192,288,384,480,576,672,768,864,960,1056,1152,1248,1344,1440,1536,1632,1728,1824,1920,2016,2112,2208,2304,2400,2496,2592,2688,2784,2880,2976,3072,3168,3264,3360,3456,3552,3648,3744,3840,3936,4032,4128,4224,4320,4416,4512,4608,4704,4800,4896,4992,5088,5184,5280,5376,5472,5568,5664,5760,5856,5952,6048,6144,6240,6336,6432,6528,6624,6720,6816,6912,7008,7104,7200,7296,7392,7488,7584,7680,7776,7872,7968,8064,8160,8256,8352,8448,8544,8640,8736,8832,8928,9024,9120,9216,9120,9024,8928,8832,8736,8640,8544,8448,8352,8256,8160,8064,7968,7872,7776,7680,7584,7488,7392,7296,7200,7104,7008,6912,6816,6720,6624,6528,6432,6336,6240,6144,6048,5952,5856,5760,5664,5568,5472,5376,5280,5184,5088,4992,4896,4800,4704,4608,4512,4416,4320,4224,4128,4032,3936,3840,3744,3648,3552,3456,3360,3264,3168,3072,2976,2880,2784,2688,2592,2496,2400,2304,2208,2112,2016,1920,1824,1728,1632,1536,1440,1344,1248,1152,1056,960,864,768,672,576,480,384,288,192,96,0,0,97,194,291,388,485,582,679,776,873,970,1067,1164,1261,1358,1455,1552,1649,1746,1843,1940,2037,2134,2231,2328,2425,2522,2619,2716,2813,2910,3007,3104,3201,3298,3395,3492,3589,3686,3783,3880,3977,4074,4171,4268,4365,4462,4559,4656,4753,4850,4947,5044,5141,5238,5335,5432,5529,5626,5723,5820,5917,6014,6111,6208,6305,6402,6499,6596,6693,6790,6887,6984,7081,7178,7275,7372,7469,7566,7663,7760,7857,7954,8051,8148,8245,8342,8439,8536,8633,8730,8827,8924,9021,9118,9215,9312,9409,9312,9215,9118,9021,8924,8827,8730,8633,8536,8439,8342,8245,8148,8051,7954,7857,7760,7663,7566,7469,7372,7275,7178,7081,6984,6887,6790,6693,6596,6499,6402,6305,6208,6111,6014,5917,5820,5723,5626,5529,5432,5335,5238,5141,5044,4947,4850,4753,4656,4559,4462,4365,4268,4171,4074,3977,3880,3783,3686,3589,3492,3395,3298,3201,3104,3007,2910,2813,2716,2619,2522,2425,2328,2231,2134,2037,1940,1843,1746,1649,1552,1455,1358,1261,1164,1067,970,873,776,679,582,485,388,291,194,97,0,0,98,196,294,392,490,588,686,784,882,980,1078,1176,1274,1372,1470,1568,1666,1764,1862,1960,2058,2156,2254,2352,2450,2548,2646,2744,2842,2940,3038,3136,3234,3332,3430,3528,3626,3724,3822,3920,4018,4116,4214,4312,4410,4508,4606,4704,4802,4900,4998,5096,5194,5292,5390,5488,5586,5684,5782,5880,5978,6076,6174,6272,6370,6468,6566,6664,6762,6860,6958,7056,7154,7252,7350,7448,7546,7644,7742,7840,7938,8036,8134,8232,8330,8428,8526,8624,8722,8820,8918,9016,9114,9212,9310,9408,9506,9604,9506,9408,9310,9212,9114,9016,8918,8820,8722,8624,8526,8428,8330,8232,8134,8036,7938,7840,7742,7644,7546,7448,7350,7252,7154,7056,6958,6860,6762,6664,6566,6468,6370,6272,6174,6076,5978,5880,5782,5684,5586,5488,5390,5292,5194,5096,4998,4900,4802,4704,4606,4508,4410,4312,4214,4116,4018,3920,3822,3724,3626,3528,3430,3332,3234,3136,3038,2940,2842,2744,2646,2548,2450,2352,2254,2156,2058,1960,1862,1764,1666,1568,1470,1372,1274,1176,1078,980,882,784,686,588,490,392,294,196,98,0,0,99,198,297,396,495,594,693,792,891,990,1089,1188,1287,1386,1485,1584,1683,1782,1881,1980,2079,2178,2277,2376,2475,2574,2673,2772,2871,2970,3069,3168,3267,3366,3465,3564,3663,3762,3861,3960,4059,4158,4257,4356,4455,4554,4653,4752,4851,4950,5049,5148,5247,5346,5445,5544,5643,5742,5841,5940,6039,6138,6237,6336,6435,6534,6633,6732,6831,6930,7029,7128,7227,7326,7425,7524,7623,7722,7821,7920,8019,8118,8217,8316,8415,8514,8613,8712,8811,8910,9009,9108,9207,9306,9405,9504,9603,9702,9801,9702,9603,9504,9405,9306,9207,9108,9009,8910,8811,8712,8613,8514,8415,8316,8217,8118,8019,7920,7821,7722,7623,7524,7425,7326,7227,7128,7029,6930,6831,6732,6633,6534,6435,6336,6237,6138,6039,5940,5841,5742,5643,5544,5445,5346,5247,5148,5049,4950,4851,4752,4653,4554,4455,4356,4257,4158,4059,3960,3861,3762,3663,3564,3465,3366,3267,3168,3069,2970,2871,2772,2673,2574,2475,2376,2277,2178,2079,1980,1881,1782,1683,1584,1485,1386,1287,1188,1089,990,891,792,693,594,495,396,297,198,99,0,0,100,200,300,400,500,600,700,800,900,1000,1100,1200,1300,1400,1500,1600,1700,1800,1900,2000,2100,2200,2300,2400,2500,2600,2700,2800,2900,3000,3100,3200,3300,3400,3500,3600,3700,3800,3900,4000,4100,4200,4300,4400,4500,4600,4700,4800,4900,5000,5100,5200,5300,5400,5500,5600,5700,5800,5900,6000,6100,6200,6300,6400,6500,6600,6700,6800,6900,7000,7100,7200,7300,7400,7500,7600,7700,7800,7900,8000,8100,8200,8300,8400,8500,8600,8700,8800,8900,9000,9100,9200,9300,9400,9500,9600,9700,9800,9900,10000,9900,9800,9700,9600,9500,9400,9300,9200,9100,9000,8900,8800,8700,8600,8500,8400,8300,8200,8100,8000,7900,7800,7700,7600,7500,7400,7300,7200,7100,7000,6900,6800,6700,6600,6500,6400,6300,6200,6100,6000,5900,5800,5700,5600,5500,5400,5300,5200,5100,5000,4900,4800,4700,4600,4500,4400,4300,4200,4100,4000,3900,3800,3700,3600,3500,3400,3300,3200,3100,3000,2900,2800,2700,2600,2500,2400,2300,2200,2100,2000,1900,1800,1700,1600,1500,1400,1300,1200,1100,1000,900,800,700,600,500,400,300,200,100,0,0,101,202,303,404,505,606,707,808,909,1010,1111,1212,1313,1414,1515,1616,1717,1818,1919,2020,2121,2222,2323,2424,2525,2626,2727,2828,2929,3030,3131,3232,3333,3434,3535,3636,3737,3838,3939,4040,4141,4242,4343,4444,4545,4646,4747,4848,4949,5050,5151,5252,5353,5454,5555,5656,5757,5858,5959,6060,6161,6262,6363,6464,6565,6666,6767,6868,6969,7070,7171,7272,7373,7474,7575,7676,7777,7878,7979,8080,8181,8282,8383,8484,8585,8686,8787,8888,8989,9090,9191,9292,9393,9494,9595,9696,9797,9898,9999,10100,10201,10100,9999,9898,9797,9696,9595,9494,9393,9292,9191,9090,8989,8888,8787,8686,8585,8484,8383,8282,8181,8080,7979,7878,7777,7676,7575,7474,7373,7272,7171,7070,6969,6868,6767,6666,6565,6464,6363,6262,6161,6060,5959,5858,5757,5656,5555,5454,5353,5252,5151,5050,4949,4848,4747,4646,4545,4444,4343,4242,4141,4040,3939,3838,3737,3636,3535,3434,3333,3232,3131,3030,2929,2828,2727,2626,2525,2424,2323,2222,2121,2020,1919,1818,1717,1616,1515,1414,1313,1212,1111,1010,909,808,707,606,505,404,303,202,101,0,0,102,204,306,408,510,612,714,816,918,1020,1122,1224,1326,1428,1530,1632,1734,1836,1938,2040,2142,2244,2346,2448,2550,2652,2754,2856,2958,3060,3162,3264,3366,3468,3570,3672,3774,3876,3978,4080,4182,4284,4386,4488,4590,4692,4794,4896,4998,5100,5202,5304,5406,5508,5610,5712,5814,5916,6018,6120,6222,6324,6426,6528,6630,6732,6834,6936,7038,7140,7242,7344,7446,7548,7650,7752,7854,7956,8058,8160,8262,8364,8466,8568,8670,8772,8874,8976,9078,9180,9282,9384,9486,9588,9690,9792,9894,9996,10098,10200,10302,10404,10302,10200,10098,9996,9894,9792,9690,9588,9486,9384,9282,9180,9078,8976,8874,8772,8670,8568,8466,8364,8262,8160,8058,7956,7854,7752,7650,7548,7446,7344,7242,7140,7038,6936,6834,6732,6630,6528,6426,6324,6222,6120,6018,5916,5814,5712,5610,5508,5406,5304,5202,5100,4998,4896,4794,4692,4590,4488,4386,4284,4182,4080,3978,3876,3774,3672,3570,3468,3366,3264,3162,3060,2958,2856,2754,2652,2550,2448,2346,2244,2142,2040,1938,1836,1734,1632,1530,1428,1326,1224,1122,1020,918,816,714,612,510,408,306,204,102,0,0,103,206,309,412,515,618,721,824,927,1030,1133,1236,1339,1442,1545,1648,1751,1854,1957,2060,2163,2266,2369,2472,2575,2678,2781,2884,2987,3090,3193,3296,3399,3502,3605,3708,3811,3914,4017,4120,4223,4326,4429,4532,4635,4738,4841,4944,5047,5150,5253,5356,5459,5562,5665,5768,5871,5974,6077,6180,6283,6386,6489,6592,6695,6798,6901,7004,7107,7210,7313,7416,7519,7622,7725,7828,7931,8034,8137,8240,8343,8446,8549,8652,8755,8858,8961,9064,9167,9270,9373,9476,9579,9682,9785,9888,9991,10094,10197,10300,10403,10506,10609,10506,10403,10300,10197,10094,9991,9888,9785,9682,9579,9476,9373,9270,9167,9064,8961,8858,8755,8652,8549,8446,8343,8240,8137,8034,7931,7828,7725,7622,7519,7416,7313,7210,7107,7004,6901,6798,6695,6592,6489,6386,6283,6180,6077,5974,5871,5768,5665,5562,5459,5356,5253,5150,5047,4944,4841,4738,4635,4532,4429,4326,4223,4120,4017,3914,3811,3708,3605,3502,3399,3296,3193,3090,2987,2884,2781,2678,2575,2472,2369,2266,2163,2060,1957,1854,1751,1648,1545,1442,1339,1236,1133,1030,927,824,721,618,515,412,309,206,103,0,0,104,208,312,416,520,624,728,832,936,1040,1144,1248,1352,1456,1560,1664,1768,1872,1976,2080,2184,2288,2392,2496,2600,2704,2808,2912,3016,3120,3224,3328,3432,3536,3640,3744,3848,3952,4056,4160,4264,4368,4472,4576,4680,4784,4888,4992,5096,5200,5304,5408,5512,5616,5720,5824,5928,6032,6136,6240,6344,6448,6552,6656,6760,6864,6968,7072,7176,7280,7384,7488,7592,7696,7800,7904,8008,8112,8216,8320,8424,8528,8632,8736,8840,8944,9048,9152,9256,9360,9464,9568,9672,9776,9880,9984,10088,10192,10296,10400,10504,10608,10712,10816,10712,10608,10504,10400,10296,10192,10088,9984,9880,9776,9672,9568,9464,9360,9256,9152,9048,8944,8840,8736,8632,8528,8424,8320,8216,8112,8008,7904,7800,7696,7592,7488,7384,7280,7176,7072,6968,6864,6760,6656,6552,6448,6344,6240,6136,6032,5928,5824,5720,5616,5512,5408,5304,5200,5096,4992,4888,4784,4680,4576,4472,4368,4264,4160,4056,3952,3848,3744,3640,3536,3432,3328,3224,3120,3016,2912,2808,2704,2600,2496,2392,2288,2184,2080,1976,1872,1768,1664,1560,1456,1352,1248,1144,1040,936,832,728,624,520,416,312,208,104,0,0,105,210,315,420,525,630,735,840,945,1050,1155,1260,1365,1470,1575,1680,1785,1890,1995,2100,2205,2310,2415,2520,2625,2730,2835,2940,3045,3150,3255,3360,3465,3570,3675,3780,3885,3990,4095,4200,4305,4410,4515,4620,4725,4830,4935,5040,5145,5250,5355,5460,5565,5670,5775,5880,5985,6090,6195,6300,6405,6510,6615,6720,6825,6930,7035,7140,7245,7350,7455,7560,7665,7770,7875,7980,8085,8190,8295,8400,8505,8610,8715,8820,8925,9030,9135,9240,9345,9450,9555,9660,9765,9870,9975,10080,10185,10290,10395,10500,10605,10710,10815,10920,11025,10920,10815,10710,10605,10500,10395,10290,10185,10080,9975,9870,9765,9660,9555,9450,9345,9240,9135,9030,8925,8820,8715,8610,8505,8400,8295,8190,8085,7980,7875,7770,7665,7560,7455,7350,7245,7140,7035,6930,6825,6720,6615,6510,6405,6300,6195,6090,5985,5880,5775,5670,5565,5460,5355,5250,5145,5040,4935,4830,4725,4620,4515,4410,4305,4200,4095,3990,3885,3780,3675,3570,3465,3360,3255,3150,3045,2940,2835,2730,2625,2520,2415,2310,2205,2100,1995,1890,1785,1680,1575,1470,1365,1260,1155,1050,945,840,735,630,525,420,315,210,105,0,0,106,212,318,424,530,636,742,848,954,1060,1166,1272,1378,1484,1590,1696,1802,1908,2014,2120,2226,2332,2438,2544,2650,2756,2862,2968,3074,3180,3286,3392,3498,3604,3710,3816,3922,4028,4134,4240,4346,4452,4558,4664,4770,4876,4982,5088,5194,5300,5406,5512,5618,5724,5830,5936,6042,6148,6254,6360,6466,6572,6678,6784,6890,6996,7102,7208,7314,7420,7526,7632,7738,7844,7950,8056,8162,8268,8374,8480,8586,8692,8798,8904,9010,9116,9222,9328,9434,9540,9646,9752,9858,9964,10070,10176,10282,10388,10494,10600,10706,10812,10918,11024,11130,11236,11130,11024,10918,10812,10706,10600,10494,10388,10282,10176,10070,9964,9858,9752,9646,9540,9434,9328,9222,9116,9010,8904,8798,8692,8586,8480,8374,8268,8162,8056,7950,7844,7738,7632,7526,7420,7314,7208,7102,6996,6890,6784,6678,6572,6466,6360,6254,6148,6042,5936,5830,5724,5618,5512,5406,5300,5194,5088,4982,4876,4770,4664,4558,4452,4346,4240,4134,4028,3922,3816,3710,3604,3498,3392,3286,3180,3074,2968,2862,2756,2650,2544,2438,2332,2226,2120,2014,1908,1802,1696,1590,1484,1378,1272,1166,1060,954,848,742,636,530,424,318,212,106,0,0,107,214,321,428,535,642,749,856,963,1070,1177,1284,1391,1498,1605,1712,1819,1926,2033,2140,2247,2354,2461,2568,2675,2782,2889,2996,3103,3210,3317,3424,3531,3638,3745,3852,3959,4066,4173,4280,4387,4494,4601,4708,4815,4922,5029,5136,5243,5350,5457,5564,5671,5778,5885,5992,6099,6206,6313,6420,6527,6634,6741,6848,6955,7062,7169,7276,7383,7490,7597,7704,7811,7918,8025,8132,8239,8346,8453,8560,8667,8774,8881,8988,9095,9202,9309,9416,9523,9630,9737,9844,9951,10058,10165,10272,10379,10486,10593,10700,10807,10914,11021,11128,11235,11342,11449,11342,11235,11128,11021,10914,10807,10700,10593,10486,10379,10272,10165,10058,9951,9844,9737,9630,9523,9416,9309,9202,9095,8988,8881,8774,8667,8560,8453,8346,8239,8132,8025,7918,7811,7704,7597,7490,7383,7276,7169,7062,6955,6848,6741,6634,6527,6420,6313,6206,6099,5992,5885,5778,5671,5564,5457,5350,5243,5136,5029,4922,4815,4708,4601,4494,4387,4280,4173,4066,3959,3852,3745,3638,3531,3424,3317,3210,3103,2996,2889,2782,2675,2568,2461,2354,2247,2140,2033,1926,1819,1712,1605,1498,1391,1284,1177,1070,963,856,749,642,535,428,321,214,107,0,0,108,216,324,432,540,648,756,864,972,1080,1188,1296,1404,1512,1620,1728,1836,1944,2052,2160,2268,2376,2484,2592,2700,2808,2916,3024,3132,3240,3348,3456,3564,3672,3780,3888,3996,4104,4212,4320,4428,4536,4644,4752,4860,4968,5076,5184,5292,5400,5508,5616,5724,5832,5940,6048,6156,6264,6372,6480,6588,6696,6804,6912,7020,7128,7236,7344,7452,7560,7668,7776,7884,7992,8100,8208,8316,8424,8532,8640,8748,8856,8964,9072,9180,9288,9396,9504,9612,9720,9828,9936,10044,10152,10260,10368,10476,10584,10692,10800,10908,11016,11124,11232,11340,11448,11556,11664,11556,11448,11340,11232,11124,11016,10908,10800,10692,10584,10476,10368,10260,10152,10044,9936,9828,9720,9612,9504,9396,9288,9180,9072,8964,8856,8748,8640,8532,8424,8316,8208,8100,7992,7884,7776,7668,7560,7452,7344,7236,7128,7020,6912,6804,6696,6588,6480,6372,6264,6156,6048,5940,5832,5724,5616,5508,5400,5292,5184,5076,4968,4860,4752,4644,4536,4428,4320,4212,4104,3996,3888,3780,3672,3564,3456,3348,3240,3132,3024,2916,2808,2700,2592,2484,2376,2268,2160,2052,1944,1836,1728,1620,1512,1404,1296,1188,1080,972,864,756,648,540,432,324,216,108,0,0,109,218,327,436,545,654,763,872,981,1090,1199,1308,1417,1526,1635,1744,1853,1962,2071,2180,2289,2398,2507,2616,2725,2834,2943,3052,3161,3270,3379,3488,3597,3706,3815,3924,4033,4142,4251,4360,4469,4578,4687,4796,4905,5014,5123,5232,5341,5450,5559,5668,5777,5886,5995,6104,6213,6322,6431,6540,6649,6758,6867,6976,7085,7194,7303,7412,7521,7630,7739,7848,7957,8066,8175,8284,8393,8502,8611,8720,8829,8938,9047,9156,9265,9374,9483,9592,9701,9810,9919,10028,10137,10246,10355,10464,10573,10682,10791,10900,11009,11118,11227,11336,11445,11554,11663,11772,11881,11772,11663,11554,11445,11336,11227,11118,11009,10900,10791,10682,10573,10464,10355,10246,10137,10028,9919,9810,9701,9592,9483,9374,9265,9156,9047,8938,8829,8720,8611,8502,8393,8284,8175,8066,7957,7848,7739,7630,7521,7412,7303,7194,7085,6976,6867,6758,6649,6540,6431,6322,6213,6104,5995,5886,5777,5668,5559,5450,5341,5232,5123,5014,4905,4796,4687,4578,4469,4360,4251,4142,4033,3924,3815,3706,3597,3488,3379,3270,3161,3052,2943,2834,2725,2616,2507,2398,2289,2180,2071,1962,1853,1744,1635,1526,1417,1308,1199,1090,981,872,763,654,545,436,327,218,109,0,0,110,220,330,440,550,660,770,880,990,1100,1210,1320,1430,1540,1650,1760,1870,1980,2090,2200,2310,2420,2530,2640,2750,2860,2970,3080,3190,3300,3410,3520,3630,3740,3850,3960,4070,4180,4290,4400,4510,4620,4730,4840,4950,5060,5170,5280,5390,5500,5610,5720,5830,5940,6050,6160,6270,6380,6490,6600,6710,6820,6930,7040,7150,7260,7370,7480,7590,7700,7810,7920,8030,8140,8250,8360,8470,8580,8690,8800,8910,9020,9130,9240,9350,9460,9570,9680,9790,9900,10010,10120,10230,10340,10450,10560,10670,10780,10890,11000,11110,11220,11330,11440,11550,11660,11770,11880,11990,12100,11990,11880,11770,11660,11550,11440,11330,11220,11110,11000,10890,10780,10670,10560,10450,10340,10230,10120,10010,9900,9790,9680,9570,946Interrupted. λ> meures = [ (funcs!!i) (naturais!!j) | (i,j) <- pares] λ> take 10 meures [0,0,1,0,0,2,4,2,0,0] λ> take 30 meures [0,0,1,0,0,2,4,2,0,0,3,6,9,6,3,0,0,4,8,12,16,12,8,4,0,0,5,10,15,20] λ> take 1 $ fmap println ["Hello", "World", "Hashi"] :235:15-21: error: • Variable not in scope: println :: [Char] -> a • Perhaps you meant ‘print’ (imported from Prelude) λ> take 1 $ fmap putStrLn ["Hello", "World", "Hashi"] take 1 $ fmap putStrLn ["Hello", "World", "Hashi"] :: [IO ()] λ> head $ fmap putStrLn ["Hello", "World", "Hashi"] Hello λ> head $ tail $ fmap putStrLn ["Hello", "World", "Hashi"] World λ> head $ tail $ fmap putStrLn ["Hello", "World", "Hashi"] World λ> head $ tail $ mapM putStrLn ["Hello", "World", "Hashi"] :241:15-55: error: • Couldn't match type ‘IO’ with ‘[]’ Expected type: [[()]] Actual type: IO [()] • In the second argument of ‘($)’, namely ‘mapM putStrLn ["Hello", "World", "Hashi"]’ In the second argument of ‘($)’, namely ‘tail $ mapM putStrLn ["Hello", "World", "Hashi"]’ In the expression: head $ tail $ mapM putStrLn ["Hello", "World", "Hashi"] λ> fmap (head . tail) $ mapM putStrLn ["Hello", "World", "Hashi"] Hello World Hashi λ> :i mapM type Traversable :: (* -> *) -> Constraint class (Functor t, Foldable t) => Traversable t where ... mapM :: Monad m => (a -> m b) -> t a -> m (t b) ... -- Defined in ‘Data.Traversable’ λ> :i Traversable type Traversable :: (* -> *) -> Constraint class (Functor t, Foldable t) => Traversable t where traverse :: Applicative f => (a -> f b) -> t a -> f (t b) sequenceA :: Applicative f => t (f a) -> f (t a) mapM :: Monad m => (a -> m b) -> t a -> m (t b) sequence :: Monad m => t (m a) -> m (t a) {-# MINIMAL traverse | sequenceA #-} -- Defined in ‘Data.Traversable’ instance Traversable [] -- Defined in ‘Data.Traversable’ instance Traversable Maybe -- Defined in ‘Data.Traversable’ instance Traversable (Either a) -- Defined in ‘Data.Traversable’ instance Traversable ((,) a) -- Defined in ‘Data.Traversable’ λ> fmap (head . tail) $ traverse putStrLn ["Hello", "World", "Hashi"] Hello World Hashi λ>