diff --git "a/all/NumGLUE_Type_4_crowdsourced.json" "b/all/NumGLUE_Type_4_crowdsourced.json" new file mode 100644--- /dev/null +++ "b/all/NumGLUE_Type_4_crowdsourced.json" @@ -0,0 +1,9927 @@ +{ + "Source": "", + "Categories": [], + "Instances": [ + { + "Input": "2 birds were sitting on the fence. 4 more birds came to join them. So , _____ birds are sitting on the fence.", + "Output Program": [ + "SeatingBird = 2\nNewBrid = 4\nprint(SeatingBird+NewBrid)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Mariela was in the hospital, and she got 403 get well cards from around the country. When she got home she got 287 more cards from friends and family. Mariela got _____ get well cards .", + "Output Program": [ + "HospitalCard = 403\nHomeCards = 287\nprint(HospitalCard+HomeCards)" + ], + "Output Answer": [ + "690" + ], + "split": "train" + }, + { + "Input": "The Montoya family spends 0.6 their budget on groceries and another 0.2 going out to eat. Altogether , Montoya family spent _____ fraction of their budget on the food .", + "Output Program": [ + "Groceries = 0.6\nOthers = 0.2\nprint(Groceries+Others)" + ], + "Output Answer": [ + "0.8" + ], + "split": "train" + }, + { + "Input": "For Halloween Debby and her sister combined the candy they received. Debby had 32 pieces of candy while her sister had 42. If they ate 35 pieces the first night, they are left with _____ pieces .", + "Output Program": [ + "DebbyCandy = 32\nSisterCandy = 42\nAteCandy = 35\nprint( (DebbyCandy+SisterCandy) - AteCandy )" + ], + "Output Answer": [ + "39" + ], + "split": "train" + }, + { + "Input": "Jack starts with 62 marbles. He shares 33 with Rebecca. Therefore , Jack end up with _____ marbles.", + "Output Program": [ + "JackMarbles = 62\nShareMarbles = 33\nprint(JackMarbles-ShareMarbles)" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "Jovana had 5 pounds of shells in her bucket. She added some shells, and now has 28 pounds of shells. She added _____ pounds .", + "Output Program": [ + "PoundsOfShells = 5 \nTotalPoundsOfShells = 28\nprint(TotalPoundsOfShells-PoundsOfShells)" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "Michelle began her pizza delivery route with 0.5 tank of gas in her car . When she made it back to the pizzeria , 0.17 tank of gas was left. Michelle used _____ gas .", + "Output Program": [ + "TankOfGas = 0.5\nLeftGas = 0.17\nUsedGas = \"{:.2f}\".format(TankOfGas-LeftGas)\nprint(UsedGas)" + ], + "Output Answer": [ + "0.33" + ], + "split": "train" + }, + { + "Input": "My dog had some bones. Then, he dug up 367 bones. Now he has 860 bones. He started with _____ bones .", + "Output Program": [ + "Bones = 367\nTotalBones = 860\nprint(TotalBones-Bones)" + ], + "Output Answer": [ + "493" + ], + "split": "train" + }, + { + "Input": "Joan has 40 blue balloons. Melanie has 41 blue balloons. _____ many blue balloons do they have in total .", + "Output Program": [ + "JoanBalloons = 40 \nMelanieBalloons = 41\nprint(JoanBalloons+MelanieBalloons)" + ], + "Output Answer": [ + "81" + ], + "split": "train" + }, + { + "Input": "If Karen sold 36 boxes of Tagalongs, Karen picked up _____ cases of 12 boxes from the cookie mom.", + "Output Program": [ + "TagalongsBoxes = 36\nNewBoxes = 12\nprint(TagalongsBoxes/NewBoxes)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "I have 648 pencils. If I put 4 pencils in each pencil box, I will fill _____ pencil boxes .", + "Output Program": [ + "Pencils = 648\nOneBoxPencils = 4\nTotalBoxes = Pencils/OneBoxPencils\nprint(TotalBoxes)" + ], + "Output Answer": [ + "162" + ], + "split": "train" + }, + { + "Input": "Keith spent $ 136.01 on speakers , $ 139.38 on a CD player , and $ 112.46 on new tires . He wanted 3 CD 's for $ 6.16 , but did n't buy them. In total , he spent $_____ .", + "Output Program": [ + "SpeakersCost = 136.01\nCDPlayerCost = 139.38\nTiresCost = 112.46\nTotalCost = \"{:.2f}\".format(SpeakersCost+CDPlayerCost+TiresCost)\nprint(TotalCost)" + ], + "Output Answer": [ + "387.85" + ], + "split": "train" + }, + { + "Input": "Kevin bought 2 watermelons . The first watermelon was 9.91 pounds , and the second watermelon was 4.11 pounds. Kevin baught _____ pounds of watermelon .", + "Output Program": [ + "FristWaterMelon = 9.91\nSecondWaterMelon = 4.11\nTotalCost = FristWaterMelon+SecondWaterMelon\nprint(TotalCost)" + ], + "Output Answer": [ + "14.02" + ], + "split": "train" + }, + { + "Input": "Kelly has 50 Nintendo games. She needs to give away _____ games so that she will have 35 games left.", + "Output Program": [ + "TotalGames = 50\nLeftGames = 35\nprint(TotalGames-LeftGames)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Joan went to 4 football games this year . She went to 9 games last year. Joan went to _____ football games in all .", + "Output Program": [ + "LastYearGames = 9\nThisYearGames = 4\nprint(LastYearGames+ThisYearGames)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "There are 41 short trees and 44 tall trees currently in the park . Park workers will plant 57 short trees today. When the workers are finished the park will have _____ short trees .", + "Output Program": [ + "ShortTrees = 41\nNewShortTrees = 57\nprint(NewShortTrees+ShortTrees)" + ], + "Output Answer": [ + "98" + ], + "split": "train" + }, + { + "Input": "Hoping to be named Salesperson of the Month , Rosa called the names from 10.2 pages of the phone book last week . This week , she called the people listed on another 8.6 pages of the same phone book. In all , Rosa called _____ pages worth of people .", + "Output Program": [ + "LastWeekCall = 10.2\nNowCall = 8.6\nTotalCalled = \"{:.2f}\".format(LastWeekCall+NowCall)\nprint(TotalCalled)" + ], + "Output Answer": [ + "18.8" + ], + "split": "train" + }, + { + "Input": "If Teresa jogged 25 kilometers at 5 kilometers per hour, Teresa was jogging for _____ hours .", + "Output Program": [ + "TotalJogging = 25\nHours = 5\nprint(TotalJogging/Hours)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Jorge scored 156 goals playing soccer last season. This season he scored 187 goals. The total number of goals Jorge scored is _____ .", + "Output Program": [ + "LastSessionGoals = 156\nThisSissionGoals = 187 \nprint(LastSessionGoals+ThisSissionGoals)" + ], + "Output Answer": [ + "343" + ], + "split": "train" + }, + { + "Input": "Beka flew 873 miles to visit her aunt. Jackson flew 563 miles to visit his aunt. Beka flew _____ more miles than Jackson.", + "Output Program": [ + "BekaMiles = 873 \nJacksonMiles = 563\nprint(BekaMiles-JacksonMiles)" + ], + "Output Answer": [ + "310" + ], + "split": "train" + }, + { + "Input": "Albert\u2019s cabbage patch has 12 rows of cabbage. In each row, there are 15 heads of cabbage.In all , Albert has _____ heads of cabbage .", + "Output Program": [ + "RowsOfCabbage = 12\nHeadsOfCabbage = 15\nprint(RowsOfCabbage*HeadsOfCabbage)" + ], + "Output Answer": [ + "180" + ], + "split": "train" + }, + { + "Input": "Edward started his own lawn mowing business. In the spring he made 2 dollars mowing lawns, and in the summer he made 27 dollars. If he had to spend 5 dollars buying supplies, He end up with _____ amount of money.", + "Output Program": [ + "Spring = 2\nSummer = 27 \nSpend = 5\nprint((Spring+Summer)-Spend)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Roger had 16 dollars. For his birthday he got 28 more dollars but spent 25 on a new game. He has _____ money now.", + "Output Program": [ + "Dollor = 16\nAddDollor = 28\nSpent = 25\nprint((Dollor+AddDollor)-Spent)" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "It snowed 0.32 inches on Monday and 0.21 inches on Tuesday. It snowed _____ inches on Monday and Tuesday combined .", + "Output Program": [ + "MondayInches = 0.32\nTuesdayInches = 0.21\nprint(MondayInches+TuesdayInches)" + ], + "Output Answer": [ + "0.53" + ], + "split": "train" + }, + { + "Input": "Melanie had 7 dimes in her bank . Her dad gave her 8 dimes, and her mother gave her 4 dimes. Melanie has _____ dimes now .", + "Output Program": [ + "MelanieDimes = 7\nDadDimes = 8\nMotherDimes = 4 \nprint(MelanieDimes+DadDimes+MotherDimes)" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "Bryan had 8 precious stones in his collection which he sold to his friend from the jewelry store. If the stones were sold at 1785 dollar each, In total , Bryan got _____ dollars .", + "Output Program": [ + "Stones = 8\nPrice = 1785\nprint(Stones*Price)" + ], + "Output Answer": [ + "14280" + ], + "split": "train" + }, + { + "Input": "Brandy made trail mix for a backpacking trip . She used 0.17 pound of peanuts , 0.17 pound of chocolate chips , and 0.08 pound of raisins. Brandy made _____ pounds of trail mix .", + "Output Program": [ + "Peanuts = 0.17 \nChocolate = 0.17\nRaisins = 0.08\nMix = \"{:.2f}\".format(Peanuts+Chocolate+Raisins)\nprint(Mix)" + ], + "Output Answer": [ + "0.42" + ], + "split": "train" + }, + { + "Input": "The school cafeteria had 38 apples. If they used 20 to make lunch for the students and then bought 28 more, they would have _____ apples .", + "Output Program": [ + "Apple = 38\nUsedApple = 20\nBoughtApple = 28\nprint(Apple+BoughtApple-UsedApple)" + ], + "Output Answer": [ + "46" + ], + "split": "train" + }, + { + "Input": "Beth has 4 packs of crayons. Each pack has 10 crayons in it. She also has 6 extra crayons. Altogether , Beth has _____ crayons .", + "Output Program": [ + "Packs = 4\nCraysons = 10\nExtraCraysons = 6\nprint((Packs*Craysons)+ExtraCraysons)" + ], + "Output Answer": [ + "46" + ], + "split": "train" + }, + { + "Input": "Jane starts with 87 crayons. 7 are eaten by a hippopotamus. Jane end up with _____ crayons .", + "Output Program": [ + "Craysons = 87\nEatenCrayson = 7\nprint(Craysons-EatenCrayson)" + ], + "Output Answer": [ + "80" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt looked at her car's odometer before a trip. The odometer showed that she had traveled 212.3 miles. When she stopped for lunch, the odometer read 372. She has travelled _____ miles .", + "Output Program": [ + "StartMiles = 212.3\nEndMiles = 372\nprint(EndMiles-StartMiles)" + ], + "Output Answer": [ + "159.7" + ], + "split": "train" + }, + { + "Input": "Wendy's old washing machine could only wash 8 pieces of clothing at a time. If she had to wash 39 shirts and 33 sweaters, she would have to do _____ loads .", + "Output Program": [ + "Cloths = 8\nShirts = 39\nSweaters = 33\nprint(int((Shirts+Sweaters)/Cloths))" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Robin had 18 pieces of gum. Her brother gave her some more pieces. Now Robin has 44 pieces in all. Robin's brother gave her _____ pieces of gum .", + "Output Program": [ + "Gum = 18\nTotalGums = 44\nprint(TotalGums-Gum)" + ], + "Output Answer": [ + "26" + ], + "split": "train" + }, + { + "Input": "A waiter had 9 tables he was waiting on, with 7 women and 3 men at each table. In total , the waiter had _____ customers .", + "Output Program": [ + "WaiterTables = 9\nMan = 3\nWoman = 7\nprint(WaiterTables*(Man+Woman))" + ], + "Output Answer": [ + "90" + ], + "split": "train" + }, + { + "Input": "Mary loves eating fruits. Mary paid $7.19 for berries, and $6.83 for peaches with a $20 bill. Mary received $_____ as change .", + "Output Program": [ + "Berries = 7.19\nPeaches = 6.83\nBill = 20\nprint(Bill-(Berries+Peaches))" + ], + "Output Answer": [ + "5.98" + ], + "split": "train" + }, + { + "Input": "There are 7 crayons in the drawer . Mary took 3 crayons out of the drawer. There are _____ crayons now .", + "Output Program": [ + "Crayons = 7\nTokeCrayons = 3\nprint(Crayons-TokeCrayons)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Sue\u2019s family went on vacation. Her mom drove the car at 60 mph. They camped at a campground after traveling for 5 hours. The campground was _____ miles from their home.", + "Output Program": [ + "MPH = 60\nHours = 5\nprint(MPH*Hours)" + ], + "Output Answer": [ + "300" + ], + "split": "train" + }, + { + "Input": "Rupert and Ronald aced their math test. So their mother bought for them a wonderful trampoline yesterday. Ronald jumped 157 times on the trampoline. Rupert jumped 86 more times than Ronald. They jumped _____ times altogether.", + "Output Program": [ + "RonaldJump = 157\nRupertJump = 86\nprint(RonaldJump+RupertJump)" + ], + "Output Answer": [ + "243" + ], + "split": "train" + }, + { + "Input": "Isabella\u2019s hair is 18 inches long. She got a haircut, and now her hair is 9 inches long. _____ inches of Isabella\u2019s hair got cut off.", + "Output Program": [ + "BeforeHaircut = 18\nAfterHaircut = 9\nprint(BeforeHaircut-AfterHaircut)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Mary had 18 baseball cards , and 8 were torn . Fred gave Mary 26 new baseball cards . Mary bought 40 baseball cards. Now , Mary has _____ baseball cards .", + "Output Program": [ + "MaryBaseballCard = 18\nNewBaseballCard = 26\nBoughtBaseballCard = 40\nprint(MaryBaseballCard+NewBaseballCard+BoughtBaseballCard)" + ], + "Output Answer": [ + "84" + ], + "split": "train" + }, + { + "Input": "Marilyn starts with 51 bottle caps. She shares 36 with Nancy. Marilyn end up with _____ bottle caps .", + "Output Program": [ + "MarilynBottleCap = 51\nSharedBottleCap = 36\nprint(MarilynBottleCap-SharedBottleCap)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Mary has 9 yellow marbles. Joan has 3 yellow marbles. In all , they have _____ yellow marbles .", + "Output Program": [ + "MaryMarbles = 9\nJoanMarbles = 3\nprint(MaryMarbles+JoanMarbles)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Jazmin had 1209 dolls and Geraldine had 2186 dolls. If they put their dolls together, they would have _____ dolls .", + "Output Program": [ + "JazminDolls = 1209\nGeraldineDolls = 2186\nprint(JazminDolls+GeraldineDolls)" + ], + "Output Answer": [ + "3395" + ], + "split": "train" + }, + { + "Input": "Bryan took a look at his books as well. If Bryan has 56 books in each of his 9 bookshelves, in total he has _____ books does .", + "Output Program": [ + "Books = 56\nBookshelves = 9\nprint(Books*Bookshelves)" + ], + "Output Answer": [ + "504" + ], + "split": "train" + }, + { + "Input": "A bee colony produced 0.36 pounds of honey , but bears ate 0.05 pounds of it. _____ pounds of honey remains .", + "Output Program": [ + "Honey = 0.36\nAteHoney = 0.05\nprint(Honey-AteHoney)" + ], + "Output Answer": [ + "0.31" + ], + "split": "train" + }, + { + "Input": "Each day , the polar bear at Richmond 's zoo eats 0.2 bucket of trout and 0.4 bucket of salmon. The polar bear eats _____ buckets of fish daily .", + "Output Program": [ + "Trout = 0.2\nSalmon = 0.4\nFish = \"{:.2f}\".format(Trout+Salmon)\nprint(Fish)" + ], + "Output Answer": [ + "0.6" + ], + "split": "train" + }, + { + "Input": "Mike bought some toys . He bought marbles for $ 9.05 , a football for $ 4.95 , and spent $ 6.52 on a baseball. In total , Mike spent _____ on toys .", + "Output Program": [ + "Marbles = 9.05\nFootball = 4.95\nBaseball = 6.52\nprint(Marbles+Football+Baseball)" + ], + "Output Answer": [ + "20.52" + ], + "split": "train" + }, + { + "Input": "Heather starts with 86 blocks. She shares 41 with Jose. So , Heather end up with _____ blocks .", + "Output Program": [ + "Blockes = 86\nShareBlockes = 41\nprint(Blockes-ShareBlockes)" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "Mary had 33 Pokemon cards , and 6 were torn . Sam gave Mary 23 new Pokemon cards. Mary has _____ Pokemon cards now .", + "Output Program": [ + "Cards = 33\nNewCards = 23\nprint(Cards+NewCards)" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": "Craig walked 0.2 mile from school to David 's house and 0.7 mile from David 's house to his own house. In all , Craig walked _____ miles .", + "Output Program": [ + "SchoolMiles = 0.2\nDavidMiles = 0.7\nTotakMiles = \"{:.2f}\".format(SchoolMiles+DavidMiles)\nprint(TotakMiles)" + ], + "Output Answer": [ + "0.9" + ], + "split": "train" + }, + { + "Input": "Sara had 100 pennies and 783 quarters in her bank . Her dad borrowed 271 quarters from Sara. She has _____ quarters now .", + "Output Program": [ + "Quarters = 783\nBorrowed = 271\nprint(Quarters-Borrowed)" + ], + "Output Answer": [ + "512" + ], + "split": "train" + }, + { + "Input": "Jeffrey wants to split a collection of bottle caps into groups of 2. Jeffrey has 12 bottle caps. Therefore , _____ groups will be created.", + "Output Program": [ + "Group = 2\nCaps = 12\nprint(Caps/Group)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "In a school, there are 542 girls and 387 boys. So, there are _____ pupils in that school.", + "Output Program": [ + "Girls = 542\nBoys = 387\nprint(Girls+Boys)" + ], + "Output Answer": [ + "929" + ], + "split": "train" + }, + { + "Input": "Joan picked 37 oranges, and Sara picked 10 oranges . Alyssa picked 30 pears. _____ oranges were picked in total .", + "Output Program": [ + "JoanOranges = 37\nSaraOranges = 10\nprint(JoanOranges+SaraOranges)" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": "Joan found 70 seashells on the beach . She gave Sam some of her seashells . She has 27 seashells left. She gave _____ seashells to Sam.", + "Output Program": [ + "JoanSeashells = 70\nFinalSeashells = 27\nprint(JoanSeashells-FinalSeashells)" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": "Michelle has 7 boxes of crayons. Each box holds 5 crayons. So , Michelle has _____ crayons .", + "Output Program": [ + "Crayons = 5 \nBoxes = 7\nprint(Crayons*Boxes)\n" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt baked pies last weekend for a holiday dinner. She baked 16 pecan pies and 14 apples pies. If she wants to arrange all of the pies in rows of 5 pies each, she will have _____ rows .", + "Output Program": [ + "PacanPies = 16\nApplesPies = 14\nGroup = 5\nprint((PacanPies+ApplesPies)/Group)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "The schools debate team had 26 boys and 46 girls on it. If they were split into groups of 9 , they can make _____ groups .", + "Output Program": [ + "Boys = 26\nGirls = 46\nStudents = Boys+Girls \nGroups = 9\nprint(Students/Groups)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "During a school play , Jonah staffed the snack bar . He served 0.25 pitcher of lemonade during the first intermission , 0.42 pitcher during the second , and 0.25 pitcher during the third. In all , Jonah poured _____ pitchers of lemonade .", + "Output Program": [ + "First = 0.25\nSecond = 0.42\nThird = 0.25\nTotalPitchers = \"{:.2f}\".format(First+Second+Third)\nprint(TotalPitchers)" + ], + "Output Answer": [ + "0.92" + ], + "split": "train" + }, + { + "Input": "Each CD rack holds 8 CDs. A shelf can hold 4 racks. So , _____ CDs can fit on the shelf.", + "Output Program": [ + "RackInCD = 8\nShelfInRack = 4\nprint(RackInCD*ShelfInRack)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "A waiter had 19 customers to wait on. If 14 customers left, and he got another 36 customers, he would have _____ customers .", + "Output Program": [ + "CustomersInWaiting = 19\nLeftedCustomers = 14\nNewAddesCustomers = 36\nprint((CustomersInWaiting-LeftedCustomers)+NewAddesCustomers)" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Juan ran 80 miles at 10 miles per hour. Juan ran for _____ hours .", + "Output Program": [ + "Miles = 80\nHoursPerMiles = 10\nprint(Miles/HoursPerMiles)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake . The recipe calls for 7 cups of flour and 3 cups of sugar . She already put in 2 cups of flour. She needs to add _____ cups of flour .", + "Output Program": [ + "NeedFlour = 7\nSugar = 3\nUsedFlour = 2\nprint(NeedFlour-UsedFlour)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "A restaurant served 7 slices of pie during lunch and 5 during dinner today . It served 8 of them yesterday. Overall , _____ slices of pie were served today .", + "Output Program": [ + "LunchPie = 7\nDinnerPie = 5\nprint(LunchPie+DinnerPie)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Sara has 31 red and 15 green balloons . Sandy has 24 red balloons. They have _____ red balloons in total .", + "Output Program": [ + "RedBalloons = 31\nSandyRedBalloons = 24\nprint(RedBalloons+SandyRedBalloons)" + ], + "Output Answer": [ + "55" + ], + "split": "train" + }, + { + "Input": "You have 24 cookies and want to share them equally with 6 people. Each person would get _____ cookies .", + "Output Program": [ + "Cookies = 24\nPeople = 6\nprint(Cookies/People)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Barbara has 9 candies. She buys 18 more. In all , Barbara has _____ candies .", + "Output Program": [ + "Candies = 9\nBuyCandies = 18\nprint(Candies+BuyCandies)" + ], + "Output Answer": [ + "27" + ], + "split": "train" + }, + { + "Input": "13 ducks are swimming in a lake. 20 more ducks come to join them. _____ ducks are swimming in the lake.", + "Output Program": [ + "Ducks = 13\nAddDucks = 20\nprint(Ducks+AddDucks)" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt saw 144 bees in the hive. The next day she saw 3 times that many. She saw _____ bees on the second day.", + "Output Program": [ + "Bees = 144\nNextdayBees = 3\nprint(Bees*NextdayBees)" + ], + "Output Answer": [ + "432" + ], + "split": "train" + }, + { + "Input": "A magician was selling magic card decks for 2 dollars each. If he started with 5 decks, and by the end of the day, he had 3 left, he earned $_____.", + "Output Program": [ + "Cost = 2\nDecks = 5\nNotSellingDeck = 3\nprint(Cost*(Decks-NotSellingDeck))" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Ceasar needs to read a 563 page book for school. He has already read 147 pages. He is left with _____ pages to read .", + "Output Program": [ + "TotalPage = 563\nReadPages = 147\nprint(TotalPage-ReadPages)" + ], + "Output Answer": [ + "416" + ], + "split": "train" + }, + { + "Input": "A florist had 37 roses. If she sold 16 of them, and then later picked 19 more, she would have _____ roses .", + "Output Program": [ + "Roses = 37\nSold = 16\nBuyRoses = 19\nprint((Roses-Sold)+BuyRoses)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": "Sam grew 4 watermelons , but the rabbits ate 3 watermelons .Sam has _____ watermelons .", + "Output Program": [ + "Watermelons = 4\nAte = 3\nprint(Watermelons-Ate)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Eugene has 51 pencils. He gets 6 more from Joyce. In all, Eugene has _____ pencils .", + "Output Program": [ + "Pencils = 51\nAddPencils =6\nprint(Pencils+AddPencils)" + ], + "Output Answer": [ + "57" + ], + "split": "train" + }, + { + "Input": "A sandbox is 312 centimeters long and 146 centimeters wide. The sandbox covers _____ square centimeters of ground .", + "Output Program": [ + "Long = 312\nWide = 146\nprint(Long*Wide)" + ], + "Output Answer": [ + "45552" + ], + "split": "train" + }, + { + "Input": "Each bag contains 23 pounds of oranges. There are _____ pounds of oranges in 45 bags.", + "Output Program": [ + "Oranges = 23\nBags = 45\nprint(Oranges*Bags)" + ], + "Output Answer": [ + "1035" + ], + "split": "train" + }, + { + "Input": "In Yardley it snowed 0.12 inch in the morning and 0.5 inch in the afternoon. The total amount of snowfall was _____ .", + "Output Program": [ + "Morning = 0.12\nAfternoon = 0.5\nprint(Morning+Afternoon)" + ], + "Output Answer": [ + "0.63" + ], + "split": "train" + }, + { + "Input": "Andrew spent 3 day working on his Science report. He worked for 2.5 hours each day. He worked for _____ hours .", + "Output Program": [ + "Days = 3\nHoursPerDay = 2.5\nprint(Days*HoursPerDay)" + ], + "Output Answer": [ + "7.5" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt bought an ice cream cone for 99 cents. 2 ice cream cones would cost _____ cents.", + "Output Program": [ + "Cost = 99\nCons = 2\nprint(Cost*Cons)" + ], + "Output Answer": [ + "198" + ], + "split": "train" + }, + { + "Input": "Isha\u2019s pencil is 12 cubes long. If she gets another pencil that is 12 cubes long, both pencils are _____ cubes long .", + "Output Program": [ + "FirstPencil = 12\nSecondPencil = 12\nprint(FirstPencil+SecondPencil)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Melissa scored 120 points in each game. She scored _____ points in 10 games.", + "Output Program": [ + "Points = 120\nGames = 10\nprint(Points*Games)" + ], + "Output Answer": [ + "1200" + ], + "split": "train" + }, + { + "Input": "Sally has 9 orange balloons and 4 blue balloons . She lost 2 of the orange balloons. Now , Sally has _____ orange balloons .", + "Output Program": [ + "OrangeBolloons = 9\nLostOrangeBolloons = 2\nprint(OrangeBolloons-LostOrangeBolloons)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Faye had 46 math problems and 9 science problems for homework. If she finished 40 of the problems at school, she had _____ problems to do for homework.", + "Output Program": [ + "MathProblems = 46\nScienceProblems = 9\nSchoolSolvedProblem = 40\nprint((MathProblems+ScienceProblems)-SchoolSolvedProblem) " + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Bonnie 's science class recorded the rainfall each day . They recorded 0.17 centimeter of rain on Monday , 0.42 centimeter of rain on Tuesday , and 0.08 centimeter of rain on Wednesday. In all , the class recorded _____ centimeters of rain .", + "Output Program": [ + "Monday = 0.17\nTuesday = 0.42\nWednesday = 0.08\nTotalRain = \"{:.2f}\".format(Monday+Tuesday+Wednesday) \nprint(TotalRain)" + ], + "Output Answer": [ + "0.67" + ], + "split": "train" + }, + { + "Input": "Fred went to 36 basketball games this year , but missed 35 . He went to 11 games last year. Fred went to _____ basketball games in total .", + "Output Program": [ + "BasketballGames = 36\nMissedGames = 35\nNewGames = 11\nprint(BasketballGames+NewGames)" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": "There were originally 20817 houses in Lincoln County . During a housing boom , developers built 97741. There are _____ houses now in Lincoln County .", + "Output Program": [ + "Houses = 20817\nNewBuilt = 97741 \nprint(Houses+NewBuilt)" + ], + "Output Answer": [ + "118558" + ], + "split": "train" + }, + { + "Input": "Jane buys an apple for $0.75 and pays with a $5 bill. She will get _____ as change.", + "Output Program": [ + "Apple = 0.75\nBill = 5 \nChange = Bill - Apple\nprint(Change)" + ], + "Output Answer": [ + "4.25" + ], + "split": "train" + }, + { + "Input": "Harry Hound had a terrible earache yesterday. When I peered into his ears yesterday, I found 36 frisky fleas having a party in his right ear and 85 baby fleas sleeping peacefully in his left ear. I cleaned out Harry Hound's ears. _____ fleas perished.", + "Output Program": [ + "RightEar = 36\nLeftEar = 85\nFleasPerished = RightEar+LeftEar\nprint(FleasPerished)" + ], + "Output Answer": [ + "121" + ], + "split": "train" + }, + { + "Input": "On the first day of the week, Pat had 39 stickers. Pat earned 22 more during the week. Pat had _____ stickers at the end of the week.", + "Output Program": [ + "Stickers = 39\nEarnedStickers = 22\nTotalStickers = Stickers+EarnedStickers\nprint(TotalStickers)" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": "Pamela bought 9.8 ounces of sugar , and she spilled 5.2 ounces of it on the floor. The amount of sugar left is _____ .", + "Output Program": [ + "Sugar = 9.8\nSpilledSugar = 5.2\nLeftSugar = \"{:.2f}\".format(Sugar-SpilledSugar)\nprint(LeftSugar) " + ], + "Output Answer": [ + "4.6" + ], + "split": "train" + }, + { + "Input": "Sarah had some trucks. She gave 13 to Jeff, and now she has 38 trucks left. Sarah had _____ trucks to start with.", + "Output Program": [ + "TruckGaveJeff = 13\nLeftTruck = 38\nTotalTruck = LeftTruck+TruckGaveJeff\nprint(TotalTruck)" + ], + "Output Answer": [ + "51" + ], + "split": "train" + }, + { + "Input": "I read 21 pages of my English book yesterday. Today, I read 17 pages. In total , I read _____ number of pages .", + "Output Program": [ + "YesterdayReadPages = 21\nTodayReadPages = 17\nTotalReadPages = YesterdayReadPages+TodayReadPages\nprint(TotalReadPages)" + ], + "Output Answer": [ + "38" + ], + "split": "train" + }, + { + "Input": "Shannon and her family use up a lot of strawberry and blueberry jelly , since they eat toast every morning . At the moment , they have a combined total of 6310 grams of jelly. If they have 4518 grams of blueberry jelly , they have _____ grams of strawberry jelly .", + "Output Program": [ + "Jelly = 6310 \nBlueberry = 4518\nStrawberry = Jelly-Blueberry\nprint(Strawberry)" + ], + "Output Answer": [ + "1792" + ], + "split": "train" + }, + { + "Input": "Rosa had 67 flowers. Andre gave her some more flowers. Now, Rosa has 90 flowers. Andre gave _____ flowers to Rosa.", + "Output Program": [ + "BeforeFlowers = 67\nAfterFlowers = 90 \nAddFlower = AfterFlowers-BeforeFlowers\nprint(AddFlower)" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "1 pencil weighs 28.3 grams. 5 pencils weigh _____ .", + "Output Program": [ + "Wieght = 28.3\nPencils = 5\nTotalWieght = Pencils*Wieght\nprint(TotalWieght)" + ], + "Output Answer": [ + "141.5" + ], + "split": "train" + }, + { + "Input": "Mandy made an apple pie . She used 0.67 tablespoon of cinnamon and 0.5 tablespoon of nutmeg. Mandy used _____ more tablespoons of cinnamon than nutmeg .", + "Output Program": [ + "Cinnamon = 0.67\nNutmeg = 0.5\nMoreTablespoons = \"{:.2f}\".format(Cinnamon-Nutmeg)\nprint(MoreTablespoons)" + ], + "Output Answer": [ + "0.17" + ], + "split": "train" + }, + { + "Input": "For the school bake sale Carol made 30 cupcakes. If she sold 9 of them and then made 28 more, she would have _____ cupcakes .", + "Output Program": [ + "cupcakes = 30\nSold = 9\nAdd = 28\nprint((cupcakes-Sold)+Add)" + ], + "Output Answer": [ + "49" + ], + "split": "train" + }, + { + "Input": "Our watermelons have 100 seeds each. If we have 4 watermelons, there would be _____ seeds when taken out of the watermelons.", + "Output Program": [ + "WatermelonsSeeds = 100\nWatermelons = 4\nprint(Watermelons*WatermelonsSeeds)" + ], + "Output Answer": [ + "400" + ], + "split": "train" + }, + { + "Input": "While playing a trivia game, Adam answered 5 questions correct in the first half and 5 questions correct in the second half. If each question was worth 5 points, His final score was _____ .", + "Output Program": [ + "FirstHalf = 5\nSecondHalf = 5\nQuestions = FirstHalf+SecondHalf\nPoint = 5\nprint(Questions*Point)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "While making pastries , a bakery used 0.2 bag of wheat flour and 0.1 bag of white flour. In all, the bakery used _____ bags of flour.", + "Output Program": [ + "WheatFlour = 0.2\nWheetFlour = 0.1\nTotalFlour = \"{:.2f}\".format(WheatFlour+WheetFlour)\nprint(TotalFlour) " + ], + "Output Answer": [ + "0.3" + ], + "split": "train" + }, + { + "Input": "Mark has 13 trees in his backyard. If he plants 12 more, he will have _____ trees .", + "Output Program": [ + "Tree = 13\nPlants = 12\nprint(Tree+Plants)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Scarlett made a fruit salad with 0.25 pound of melon and 0.38 pound of berries. In all , Scarlett used _____ pounds of fruit .", + "Output Program": [ + "Melon = 0.25\nBerries = 0.38\nprint(Melon+Berries)" + ], + "Output Answer": [ + "0.63" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt measured the distance from her desk to the water fountain. It was 30 feet. If she goes to the water fountain 4 times today , Mrs. Hilt walked _____ feet on her trips to the fountain .", + "Output Program": [ + "WaterFountain = 30\nAdd = 4\nprint(WaterFountain*Add)" + ], + "Output Answer": [ + "120" + ], + "split": "train" + }, + { + "Input": "There are 1986 books in Oak Grove 's public library . In addition , there are 5106 books in its school libraries. Overall , the Oak Grove libraries had _____ books .", + "Output Program": [ + "PublicLibrary = 1986\nSchoolLibrary = 5106\nprint(PublicLibrary+SchoolLibrary)" + ], + "Output Answer": [ + "7092" + ], + "split": "train" + }, + { + "Input": "Nancy has 9 5 dollars bills. Therefore , she has _____ dollars .", + "Output Program": [ + "Bill = 9\nCost = 5\nprint(Bill*Cost)" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "If Harold split 15 apples between 3 people in her class and kept the left overs, ach classmate will get _____ apples .", + "Output Program": [ + "Apples = 15\nPeople = 3\nprint(Apples/People)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "A farmer started the day with 8.75 buckets of seeds . After spending the morning sowing seeds , she now has 6 buckets. The farmers sow _____ buckets of seeds .", + "Output Program": [ + "StartingBuckets = 8.75\nTomorrowBuckets = 6\nprint(StartingBuckets-TomorrowBuckets)" + ], + "Output Answer": [ + "2.75" + ], + "split": "train" + }, + { + "Input": "Jason has 676 Pokemon cards . Alyssa bought 224 of Jason 's Pokemon cards. Jason has _____ Pokemon cards now .", + "Output Program": [ + "Cards = 676\nBoughtCards = 224\nprint(Cards-BoughtCards)" + ], + "Output Answer": [ + "452" + ], + "split": "train" + }, + { + "Input": "A marine biologist measured 1 fish that was 0.3 foot long, and a second fish that was 0.2 foot long. The first fish was _____ longer .", + "Output Program": [ + "FistFish = 0.3\nSecondFish = 0.2\nDiffrence = \"{:.2f}\".format(FistFish-SecondFish) \nprint(Diffrence)" + ], + "Output Answer": [ + "0.1" + ], + "split": "train" + }, + { + "Input": "Sally earns $12.5 an hour cleaning houses. If she works for 12 hours, she will make $_____ .", + "Output Program": [ + "OneHoursEarning = 12.5\nHours = 12\nprint(Hours * OneHoursEarning)" + ], + "Output Answer": [ + "150" + ], + "split": "train" + }, + { + "Input": "A painter needed to paint 10 rooms in a building. Each room takes 8 hours to paint. If he already painted 8 rooms, he will take _____ hours to paint the rest.", + "Output Program": [ + "Hours = 8\nUnpaintRooms = 2\nprint(Hours*UnpaintRooms)\n" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "There were a total of 8 football games this year , 6 are played at night . Keith missed 4 of the games. In total , Keith went to _____ football games .", + "Output Program": [ + "TotalGames = 8\nMissedGames = 4\nprint(TotalGames-MissedGames)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "In fourth grade there were 10 students at the start of the year. During the year, 4 students left, and 42 new students came to school. There were _____ students in fourth grade at the end.", + "Output Program": [ + "OldStudents = 10\nLeftStudent = 4\nAddStudents = 42\nprint((OldStudents-LeftStudent)+AddStudents)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "Each bottle cap costs $2. 6 bottle caps costs _____ .", + "Output Program": [ + "Cost = 2\nCaps = 6\nprint(Cost*Caps)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Upon arriving at the circus, they went to the ticket booth and asked how much each ticket cost. If each ticket costs 44 dollars, and they bought 7 tickets, they spent _____ dollars on tickets.", + "Output Program": [ + "Cost = 44\nTickets = 7\nprint(Cost*Tickets)" + ], + "Output Answer": [ + "308" + ], + "split": "train" + }, + { + "Input": "Marie can bike at a speed of 12 miles an hour. She can bike _____ miles in 31 hours.", + "Output Program": [ + "MilePerHours = 12\nHours = 31\nprint(MilePerHours*Hours)" + ], + "Output Answer": [ + "372" + ], + "split": "train" + }, + { + "Input": "Greg and Sharon own neighboring cornfields . Greg harvested 0.4 acre of corn on Monday, and Sharon harvested 0.1 acre. Greg harvested _____ more acres than Sharon .", + "Output Program": [ + "GregHarvested = 0.4\nSharonHarvested = 0.1\nDiffrence = \"{:.1}\".format(GregHarvested - SharonHarvested)\nprint(Diffrence)" + ], + "Output Answer": [ + "0.3" + ], + "split": "train" + }, + { + "Input": "John needs $2.5. He has $0.75. He needs _____ more money .", + "Output Program": [ + "Need = 2.5\nHas = 0.75\nrequired = Need-Has\nprint(required)" + ], + "Output Answer": [ + "1.75" + ], + "split": "train" + }, + { + "Input": "Roger has 95 candies. He gives 3 to Stephanie. Roger will have _____ candies .", + "Output Program": [ + "candies = 95\nGavecandies = 3\nprint(candies-Gavecandies)" + ], + "Output Answer": [ + "92" + ], + "split": "train" + }, + { + "Input": "Heather has 60 oranges. Russell takes 35 away. So , Heather would have _____ oranges .", + "Output Program": [ + "Oranges = 60\nTakes = 35\nprint(Oranges-Takes)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Fred has 10 red balloons , Sam has 46 red balloons , and Dan has 16 red balloons . The balloons cost 10 dollars. In all , they have _____ red balloons .", + "Output Program": [ + "FredRedBalloons = 10\nSamRedBalloons = 46\nDanRedBalloons = 16\nprint((FredRedBalloons+ SamRedBalloons+DanRedBalloons))" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": "At the town carnival Billy rode the ferris wheel 7 times and the bumper cars 3 times. If each ride cost 5 tickets, he used _____ tickets .", + "Output Program": [ + "FerrisWheel = 7\nBumperCar = 3\nCost = 5\nprint((FerrisWheel+BumperCar)*Cost)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "Mike has 35 books in his library . He bought several books at a yard sale over the weekend . He now has 56 books in his library. He baught _____ books at the yard sale .", + "Output Program": [ + "Books = 35\nNewBooks = 56\nprint(NewBooks-Books)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "A pet store had 18 puppies. In 1 day, they sold 3 of them and put the rest into cages with 5 in each cage. Therefore , they used _____ cages .", + "Output Program": [ + "Puppies = 18\nSold = 3\nOneCageInPets = 5\nprint((Puppies-Sold)/OneCageInPets)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Brenda starts with 7 Skittles. She buys 8 more. Brenda end with _____ Skittles .", + "Output Program": [ + "StartSkittles = 7\nBuy = 8\nprint(StartSkittles+Buy)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "A waiter had 44 customers in his section. If 12 of them left, and the rest of his tables had 8 people at each table, he had _____ tables .", + "Output Program": [ + "Customers = 44\nLeft = 12\nTablesOnCustomers = 8\nTables = int((Customers-Left)/TablesOnCustomers)\nprint(Tables)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt bought 6 hot dogs. Each hot dog costs 50 cents. She paid _____ cents for all of the hot dogs.", + "Output Program": [ + "BuyHotDogs = 6\nCost = 50\nprint(Cost*BuyHotDogs)" + ], + "Output Answer": [ + "300" + ], + "split": "train" + }, + { + "Input": "There are 40 boys and some girls on the playground. There are 117 children altogether. There are _____ girls on the playground.", + "Output Program": [ + "Boys = 40\nAll = 117\nGirls = All - Boys\nprint(Girls)" + ], + "Output Answer": [ + "77" + ], + "split": "train" + }, + { + "Input": "Benny picked 2 apples, and Dan picked 9 apples from the apple tree. They picked up _____ apples in total .", + "Output Program": [ + "Benny = 2\nDan = 9\nTotal = Benny+Dan\nprint(Total)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "At a pizza party , Mason and his friends drank 2.67 bottles of lemon-lime soda and 2.67 bottles of cola. In all they drank _____ bottles of soda .", + "Output Program": [ + "LemonLime = 2.67\nCola = 2.67\nprint(LemonLime+Cola)" + ], + "Output Answer": [ + "5.33" + ], + "split": "train" + }, + { + "Input": "Iesha has 58 books. 19 are about school, and the rest are about sports. Iesha has _____ books about sports.", + "Output Program": [ + "LeshaBooks = 58\nAboutSchool = 19\nAboutSport = LeshaBooks-AboutSchool\nprint(AboutSport)" + ], + "Output Answer": [ + "39" + ], + "split": "train" + }, + { + "Input": "Joshua has 40 bottle caps. He buys 7 more. In all , Joshua has _____ bottle caps .", + "Output Program": [ + "BottleCap = 40\nBuy = 7\nTotal = BottleCap+Buy\nprint(Total)" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": "For a birthday party, Jerry bought 41 regular sodas and 22 diet sodas. If his fridge would only hold 9 on each shelf, he will be able to fill up _____ shelves .", + "Output Program": [ + "RegularSoda = 41\nDietSoda = 22\nShelf = 9\nReqiredShelf = int((RegularSoda+DietSoda)/Shelf)\nprint(ReqiredShelf)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "On Friday, Fred paid $5.92 each on 2 tickets to a movie theater. He also borrowed a movie for $6.79. Fred paid with a $20 bill. Fred received $_____ as change.", + "Output Program": [ + "Paid = 5.92\nTickets = 2\nBorrowed = 6.79\nSpent = ((Paid*Tickets)+Borrowed)\nBill = 20\nprint(\"{:.2f}\".format(Bill-Spent))\n" + ], + "Output Answer": [ + "1.37" + ], + "split": "train" + }, + { + "Input": "A car company produced 3884 cars in North America and 2871 cars in Europe. There are _____ cars in all .", + "Output Program": [ + "AmericaCarProduced = 3884\nEuropeCarProduced = 2871\nprint(AmericaCarProduced+EuropeCarProduced)" + ], + "Output Answer": [ + "6755" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt reads 5 books a day. So , she reads _____ books in 3 days.", + "Output Program": [ + "BooksPerDay = 5\nDay = 3\nprint(BooksPerDay*Day)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Connie had some marbles. She gave 73 to Juan. Now she has 70 marbles left. She had started with _____ marbles .", + "Output Program": [ + "LeftMarbles = 70\nJuanMarbles = 73\nprint(LeftMarbles+JuanMarbles)" + ], + "Output Answer": [ + "143" + ], + "split": "train" + }, + { + "Input": "Gary had 73 dollars. He spent 55 dollars on a pet snake. There are _____ dollars left with Gary .", + "Output Program": [ + "Dollars = 73\nSpent = 55\nprint(Dollars-Spent)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Sandy went to the mall to buy clothes. She spent $13.99 on shorts, $12.14 on a shirt, and $7.43 on a jacket. Sandy spent $_____ on clothes.", + "Output Program": [ + "Short = 13.99\nShirt = 12.14\nJacket = 7.43\nprint(Short+Shirt+Jacket)" + ], + "Output Answer": [ + "33.56" + ], + "split": "train" + }, + { + "Input": "There were 39 girls and 4 boys trying out for the schools basketball team. If only 26 of them got called back, _____ students didn't make the cut.", + "Output Program": [ + "Girls = 39\nBoys = 4\nCallback = 26\nprint((Girls+Boys)-Callback)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Rachel bought 2 coloring books. 1 had 23 pictures, and the other had 32. After 1 week, she had already colored 44 of the pictures. She still have to color _____ pictures .", + "Output Program": [ + "FirstBookPictures = 23\nSecondBookicture = 32\nColored = 44\nprint((FirstBookPictures+SecondBookicture)-Colored)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "3 owls were sitting on the fence. 2 more owls joined them. Now , there are _____ owls on the fence .", + "Output Program": [ + "SittingOwls = 3\nJoinedOwls = 2 \nprint(SittingOwls+JoinedOwls)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "If books came from all the 4 continents that Bryan had been into and he collected 122 books per continent, he has _____ books from all 4 continents combined.", + "Output Program": [ + "Continents = 4\nBooks = 122\nprint(Books*Continents)" + ], + "Output Answer": [ + "488" + ], + "split": "train" + }, + { + "Input": "The school's baseball team had 48 new players and 6 returning players. If the coach put them into groups with 6 players in each group, there would be _____ groups .", + "Output Program": [ + "NewPlayers = 48\nReturningPlayers = 6\nGroupinPlayers = 6\nTotalGroups = ((NewPlayers+ReturningPlayers)/GroupinPlayers)\nprint(TotalGroups)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Jovana filled her bucket with 5 pounds of shells. If she adds 12 more pounds of shell to fill her bucket, therefore she has _____ pounds .", + "Output Program": [ + "Shells = 5\nAddShells = 12\nprint(Shells+AddShells)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Kelly bought 0.1 pounds of peanuts and 0.4 pounds of raisins. In all she baught _____ pounds of snacks .", + "Output Program": [ + "Peanuts = 0.1\nRaisins = 0.4\nprint(Peanuts+Raisins)" + ], + "Output Answer": [ + "0.5" + ], + "split": "train" + }, + { + "Input": "Hannah 's Vegetarian Restaurant bought 0.33 pound of green peppers and 0.33 pound of red peppers. In all , Hannah 's Vegetarian Restaurant baught _____ pounds of pepper .", + "Output Program": [ + "GreenPappers = 0.33\nRedPappers = 0.33\nprint(GreenPappers+RedPappers)\n" + ], + "Output Answer": [ + "0.66" + ], + "split": "train" + }, + { + "Input": "Fred has 5 yellow balloons , Sam has 6 yellow balloons , and Mary has 7 yellow balloons . The balloons cost 9 dollars. In total , they have _____ yellow balloons .", + "Output Program": [ + "FredYellowBalloons = 5\nSamYellowBalloons = 6\nMaryYellowBalloons = 7\nprint(FredYellowBalloons+SamYellowBalloons+MaryYellowBalloons)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Brad has 17 balloons. 8 balloons are red, and the rest are green. Brad has _____ green balloons .", + "Output Program": [ + "Bolloons = 17\nRedBolloons = 8\nprint(Bolloons-RedBolloons)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Benny's high school played 39 baseball games this year. He attended 14 games. Benny miss _____ baseball games .", + "Output Program": [ + "BaseballGames = 39\nAttended = 14\nMissedGames = BaseballGames-Attended\nprint(MissedGames)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "For the school bake sale Wendy made pastries. She baked 4 cupcakes and 29 cookies. After the sale she had 24 to take back home. She sold _____ pastries .", + "Output Program": [ + "Cupcakes = 4\nCookies = 29\nUnsoldCookeies = 24\nSoldCookeies = (Cupcakes+Cookies) - UnsoldCookeies\nprint(SoldCookeies)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Joan joined her school 's band . She bought a trumpet for $ 149.16 , a music tool for $ 9.98 , and a song book which was $ 4.14 . Joan found $ 8.65 in her pocket. Joan spent $ _____ at the music store .", + "Output Program": [ + "\nTrumpet = 149.16\nMusictool = 9.98\nSongbook = 4.14\nSpent = \"{:.2f}\".format(Trumpet+Musictool+Songbook) \nprint(Spent)" + ], + "Output Answer": [ + "163.28" + ], + "split": "train" + }, + { + "Input": "Jason found 49 seashells and 48 starfish on the beach . He gave 13 of the seashells to Tim. Now , Jason has _____ seashells .", + "Output Program": [ + "Seashells = 49 \nGavetoTim = 13\nprint(Seashells-GavetoTim)" + ], + "Output Answer": [ + "36" + ], + "split": "train" + }, + { + "Input": "Omar and Karen made egg rolls to share at the school potluck. Omar rolled 219 egg rolls. Karen rolled 229 egg rolls. The total number of egg rolls Omar and Karen rolled is _____ .", + "Output Program": [ + "OmarEggRolls = 219\nKareEggRolls = 229\nprint(OmarEggRolls+KareEggRolls)" + ], + "Output Answer": [ + "448" + ], + "split": "train" + }, + { + "Input": "Zach scored 42 points in the football game. Ben scored 21 points. Zach scored _____ more points .", + "Output Program": [ + "ZachScred = 42\nBenScored = 21\nprint(ZachScred-BenScored)\n" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Benny received 67 dollars for his birthday . He went to a sporting goods store and bought a baseball glove , baseball , and bat. He had 33 dollars over , he spent _____ on the baseball gear .", + "Output Program": [ + "Dollar = 67\nLeftDollar = 33\nprint(Dollar-LeftDollar)" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "A ship full of grain crashes into a coral reef . By the time the ship is fixed , 49952 tons of grain have spilled into the water . Only 918 tons of grain remain onboard. Originally , The ship contained _____ tons of grain .", + "Output Program": [ + "GrainSpilled = 49952\nRemaineGeain = 918\nprint(GrainSpilled+RemaineGeain)" + ], + "Output Answer": [ + "50870" + ], + "split": "train" + }, + { + "Input": "For Halloween Sarah received 108 pieces of candy. She ate 36 pieces then placed the rest into piles with 9 in each pile. She could make _____ piles .", + "Output Program": [ + "Candy = 108\nEatCandy = 36\nPile = 9\nLeftCandy = Candy-EatCandy\nprint(LeftCandy/Pile)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Mike joined his school 's band . He bought a trumpet for $ 145.16 , and a song book which was $ 5.84. Mike spent _____ at the music store .", + "Output Program": [ + "Trumpet = 145.16\nSongBook = 5.84\nprint(Trumpet+SongBook)" + ], + "Output Answer": [ + "151" + ], + "split": "train" + }, + { + "Input": "Mary had 8 potatoes in the garden . The rabbits ate 3 of the potatoes. Mary has _____ potatoes now .", + "Output Program": [ + "Potatoes = 8\nAtePotatoes = 3\nprint(Potatoes-AtePotatoes)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Lansing has 25 elementary schools. There are 247 students in each school. Altogether , there are _____ elementary students in Lansing.", + "Output Program": [ + "Schools = 25\nStudentsEachSchool = 247\nprint(Schools*StudentsEachSchool)" + ], + "Output Answer": [ + "6175" + ], + "split": "train" + }, + { + "Input": "There are 397 butterflies. Each butterfly has 12 black dots and 17 yellow dots. There are _____ black dots in all.", + "Output Program": [ + "Butterflies = 397\nBlackDot = 12\nTotalBlackDots = Butterflies*BlackDot\nprint(TotalBlackDots)" + ], + "Output Answer": [ + "4764" + ], + "split": "train" + }, + { + "Input": "A treasure hunter discovered a buried treasure chest filled with a total of 5155 gems . 45 of the gems were diamonds , and the rest were rubies. _____ of the gems were rubies .", + "Output Program": [ + "Gems = 5155 \nDiamonds = 45\nRubies = Gems-Diamonds\nprint(Rubies)" + ], + "Output Answer": [ + "5110" + ], + "split": "train" + }, + { + "Input": "Megan has 19 seashells. She needs to find _____ more seashells to have 25 seashells in her collection.", + "Output Program": [ + "Seashells = 19\nAddSeashells = 25\nprint(AddSeashells-Seashells)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Joan has 9 blue balloons , Sally has 5 blue balloons , and Jessica has 2 blue balloons. They have _____ blue baloons in total .", + "Output Program": [ + "JoanBlueBalloons = 9\nSallyBlueBalloons = 5\nJessicaBlueBalloons = 2\nprint(JoanBlueBalloons+SallyBlueBalloons+JessicaBlueBalloons)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Jason has 18 books, and he has read 9 of them . Mary has 42 books. Together , they have _____ books .", + "Output Program": [ + "JasonBooks = 18\nMaryBooks = 42\nprint(JasonBooks+MaryBooks)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "Mary earns $46 cleaning a home. She cleaned _____ homes , if she made 276 dollars.", + "Output Program": [ + "Earn = 46\nTotalEarn = 276\nprint(int(TotalEarn/Earn))" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Last year at Newberg 's airport , 14507 passengers landed on time . Unfortunately , 213 passengers landed late. In all , _____ passengers landed in Newberg last year .", + "Output Program": [ + "Passengers = 14507\nLateLandedPassengers = 213\nprint(Passengers+LateLandedPassengers)" + ], + "Output Answer": [ + "14720" + ], + "split": "train" + }, + { + "Input": "There were 58 geese and 37 ducks in the marsh. In all , there were _____ birds .", + "Output Program": [ + "Geese = 58\nDucks = 37\nprint(Geese+Ducks)" + ], + "Output Answer": [ + "95" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt needs to share $3.75 equally among 3 total people. Each person will get $ _____ .", + "Output Program": [ + "Share = 3.75\nPeople = 3\nprint(Share/People)" + ], + "Output Answer": [ + "1.25" + ], + "split": "train" + }, + { + "Input": "While taking inventory at her pastry shop , Kelly realizes that she had 0.4 box of baking powder yesterday , but the supply is now down to 0.3 box. Kelly had _____ more baking powser yesterday .", + "Output Program": [ + "BakingPowderBox = 0.4\nDownSupply = 0.3\nLeftPowder = \"{:.2f}\".format(BakingPowderBox-DownSupply)\nprint(LeftPowder)" + ], + "Output Answer": [ + "0.1" + ], + "split": "train" + }, + { + "Input": "Sam had 9 dimes in his bank . His dad gave him 7 dimes. Sam has _____ dimes now .", + "Output Program": [ + "SamDimes = 9\nDadGiveDimes = 7\nprint(SamDimes+DadGiveDimes)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Each of farmer Cunningham 's 6048 lambs is either black or white . There are 193 white ones. Farmer Cunningham 's _____ lambs are black .", + "Output Program": [ + "Lambs = 6048\nWhiteLambs = 193\nprint(Lambs-WhiteLambs)" + ], + "Output Answer": [ + "5855" + ], + "split": "train" + }, + { + "Input": "Bobby ate 26 pieces of candy. Then, he ate 17 more. Bobby ate _____ pieces of candy .", + "Output Program": [ + "EatCandy = 26\nEatMore = 17\nTotalEat = EatCandy+EatMore\nprint(TotalEat)" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": "Shelby\u2019s teacher gives out gold stars for great math work. Yesterday, Shelby earned 4 gold stars. Today, she earned 3 more. So , in all , Shelby earned _____ gold stars .", + "Output Program": [ + "YesterdayGoldStar = 4\nTodayGoldStar = 3\nprint(YesterdayGoldStar+TodayGoldStar)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Maria needs 21 cartons of berries to make a berry cobbler. She already has 4 cartons of strawberries and 8 cartons of blueberries. Maria should buy _____ more cartons of berries .", + "Output Program": [ + "NeedCartons = 21\nStrawberriesCartons = 4 \nBlueberriesCartons = 8\nRequiredCartons = NeedCartons - (StrawberriesCartons+BlueberriesCartons)\nprint(RequiredCartons)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "There were 58 geese and 37 ducks in the marsh. There were _____ birds in the marsh .", + "Output Program": [ + "Geese = 58\nDucks = 37\nprint(Geese+Ducks)" + ], + "Output Answer": [ + "95" + ], + "split": "train" + }, + { + "Input": "My car gets 20 miles per gallon. I can drive _____ miles on 5 gallons of gas.", + "Output Program": [ + "mile = 20\ngas = 5\ndrive =mile*gas\nprint(drive)" + ], + "Output Answer": [ + "100" + ], + "split": "train" + }, + { + "Input": "It took Amanda 3 hours to stroll to Kimberly's house at 2 miles per hour. So , we can say that Amanda's house is _____ miles far from Kimberly's house.", + "Output Program": [ + "hours = 3\nmile = 2\nprint(hours*mile)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Lucy has an aquarium with 212 fish. She wants to buy 68 more fish. Lucy would have _____ fishes then.", + "Output Program": [ + "Fish = 212\nWantFish = 68\nans =Fish+WantFish\nprint(ans)" + ], + "Output Answer": [ + "280" + ], + "split": "train" + }, + { + "Input": "Michelle has 2 crayons. Janet has 2 crayons. If Janet gives all of her crayons to Michelle, therefore Michelle will have _____ crayons.", + "Output Program": [ + "MichelleCrayons = 2\nJanetCrayons = 2\nprint(MichelleCrayons+JanetCrayons)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Josh had 16 marbles in his collection. He lost 7 marbles. He has _____ marbles now.", + "Output Program": [ + "Marbles = 16\nLost = 7\nprint(Marbles-Lost)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Tom found 7 seashells, but 4 were broken. Tom found _____ unbroken seashells .", + "Output Program": [ + "Seashells = 7\nBrokenSeashells = 4\nUnbroken = Seashells-BrokenSeashells\nprint(Unbroken)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Mike had 16 video games, but 8 of them weren't working. If he wanted to sell the working games for $7 each, he could earn $_____ .", + "Output Program": [ + "VideoGames = 16\nNotWorking = 8\ndollar = 7\n\nprint((VideoGames-NotWorking)*dollar)" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": "There were a total of 13 hockey games a month. The season is played for 14 months. There are _____ hockey games are in the seasons .", + "Output Program": [ + "Hockey = 13\nMonths = 14\nprint(Months*Hockey)" + ], + "Output Answer": [ + "182" + ], + "split": "train" + }, + { + "Input": "A candy store has 6 boxes of chocolates. Each box has 500 pieces. Altogether , there are _____ pieces in the boxes.", + "Output Program": [ + "Boxes = 6\nEachBoxPieces = 500\nprint(Boxes*EachBoxPieces)" + ], + "Output Answer": [ + "3000" + ], + "split": "train" + }, + { + "Input": "Keith has 20 books . Jason has 21 books. They have _____ books together .", + "Output Program": [ + "KeithBooks = 20\nJesonBooks = 21\nprint(KeithBooks+JesonBooks)" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Karin 's science class weighed plastic rings for an experiment . They found that the orange ring weighed 0.08 ounce , the purple ring weighed 0.33 ounce , and the white ring weighed 0.42 ounce. The total weight of the plastic rings was _____ .", + "Output Program": [ + "orange_ring_weighed = 0.08\npink_ring_weighed = 0.33\nwhite_ring_weighed = 0.42\ntotal = \"{:.2f}\".format(orange_ring_weighed+pink_ring_weighed+white_ring_weighed)\nprint(total)" + ], + "Output Answer": [ + "0.83" + ], + "split": "train" + }, + { + "Input": "Edward bought 79 tickets at the state fair. He spent 23 tickets at the 'dunk a clown' booth and decided to use the rest on rides. If each ride cost 7 tickets, he could have gone on _____ rides .", + "Output Program": [ + "Tickets_bought = 79\nTickets = 23\nride_cost = 7\nprint((Tickets_bought-Tickets)/ride_cost)\n" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "A teacher had 6 worksheets to grade. If she graded 4, but then another 18 were turned in, she would have to grade _____ worksheets .", + "Output Program": [ + "worksheets = 6\ngraded = 4\nleft = 18\nprint((worksheets-graded)+left)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "A renovation project required 0.17 truck-load of sand , 0.33 truck-load of dirt , and 0.17 truck-load of cement. In all , it needed _____ truck-loads of material .", + "Output Program": [ + "sand = 0.17\ndirt = 0.33\ncement = 0.17\nprint(sand+cement+dirt)\n" + ], + "Output Answer": [ + "0.67" + ], + "split": "train" + }, + { + "Input": "Will was organizing his baseball cards in a binder with 3 on each page. If he had 8 new cards and 10 old cards to put in the binder, he would have used _____ pages .", + "Output Program": [ + "page = 3\nnew_card = 8\nold_card = 10\nprint((new_card+old_card)/page)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Nancy grew 2 onions , Dan grew 9 onions , and Mike grew 4 onions . They worked for 6 days on the farm. In total , they grew _____ onions .", + "Output Program": [ + "nancy_grew_onions = 2\ndan_grew_onions = 9 \nmike_grew_onions = 4\nprint(nancy_grew_onions+dan_grew_onions+mike_grew_onions)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "A book store had 41 books in the bargin bin. If they sold 33 books, but then put 2 more in the bin, there would be _____ books in the bin.", + "Output Program": [ + "books = 41\nsold_books = 33\nadd_book = 2\nprint((books-sold_books)+add_book)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Sandy worked 45 hours in the last 5 days. Assuming that she worked the same amount of hours each day, she worked _____ hours each day .", + "Output Program": [ + "hours = 45\ndays = 5\nprint(hours/days)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Dan has 29 violet balloons. Tim has 7 times more violet balloons than Dan. Tim has _____ violet balloons .", + "Output Program": [ + "dan_balloons = 29\ntim_balloons = 7\nprint(dan_balloons*tim_balloons)" + ], + "Output Answer": [ + "203" + ], + "split": "train" + }, + { + "Input": "Kelly 's chemistry textbook weighs 7.12 pounds, and her geometry textbook weighs 0.62 pound. The chemistry textbook together with the geometry textbook weigh _____ pounds .", + "Output Program": [ + "chemistry_textbook_weighs = 7.12\ngeometry_textbook_weighs = 0.62\nprint(chemistry_textbook_weighs+geometry_textbook_weighs)" + ], + "Output Answer": [ + "7.75" + ], + "split": "test" + }, + { + "Input": "Wendy was playing a video game where she scores 5 points for all the treasure she finds. If she found 4 treasures on the first level and 3 on the second, the average number of treasures per point would be _____ .", + "Output Program": [ + "points = 5\ntreasures_on_first_level = 4\ntreasures_on_second_level = 3\nprint((treasures_on_first_level+treasures_on_second_level)/points)\n" + ], + "Output Answer": [ + "1.4" + ], + "split": "test" + }, + { + "Input": "Joan joined her school 's band . She had $149.16. She bought a music tool for $ 9.98, but put back a song book which was $ 4.14. Joan is left with $ _____ after her purchase.", + "Output Program": [ + "she_had = 149.16\nmusic_tool = 9.98\nbook = 4.14\nprint(she_had-(music_tool-book))" + ], + "Output Answer": [ + "143.32" + ], + "split": "test" + }, + { + "Input": "On Saturday, Sara won $10.62 each on 2 lottery tickets. She then rented a movie for $1.59, and bought a movie for $13.95. In total , Sara is left with _____ .", + "Output Program": [ + "sara_dollar = 10.62\nlottery_tickets = 2\nmovie_rant = 1.59\nmovie_for = 13.95\nsara_left =\"{:.2f}\".format((sara_dollar*lottery_tickets)-(movie_rant+movie_for))\nprint(sara_left)" + ], + "Output Answer": [ + "5.7" + ], + "split": "test" + }, + { + "Input": "Nancy had 8 dollars to spend on tickets for football games but it costs 9. She was given an extra 7 to cover the costs. She is left over with _____ dollars .", + "Output Program": [ + "nancy_dollar = 8\ncosts = 9\nextra_cost =7\nprint((nancy_dollar+extra_cost)-costs)" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Shiela has 6 neighbors who like to collect animal drawings. If she gives 54 to each neighbor, she gives _____ drawings in total .", + "Output Program": [ + "neighbors = 6\ngive = 54\nprint(neighbors*give)" + ], + "Output Answer": [ + "324" + ], + "split": "test" + }, + { + "Input": "Faye had 7 necklaces to sell but gave away 3. If each necklace fetched 7 dollars, she made _____ dollars .", + "Output Program": [ + "necklaces = 7\ngave = 3\ndollar = 7\nprint((necklaces-gave)*dollar)" + ], + "Output Answer": [ + "28" + ], + "split": "test" + }, + { + "Input": "If you have 378 balls, and 1 juggler is able to juggle 6 balls at a time, you would need _____ jugglers .", + "Output Program": [ + "balls = 378\njuggler = 1\njuggle_balls = 6\nprint(balls/juggle_balls)" + ], + "Output Answer": [ + "63" + ], + "split": "test" + }, + { + "Input": "For his car , Mike spent $ 118.54 on speakers and $ 106.33 on new tires . Mike wanted 3 CD 's for $ 4.58 but decided not to. Mike spent $ _____ more on speakers than he did on new tires.", + "Output Program": [ + "mike_spent_on_speakers = 118.54\nmike_spent_on_tires = 106.33\nans = \"{:.2f}\".format((mike_spent_on_speakers-mike_spent_on_tires))\nprint(ans)" + ], + "Output Answer": [ + "12.21" + ], + "split": "test" + }, + { + "Input": "Park worker have planted 57 short trees today. The difference between the 57 planted today and the previously existing number of 41 is _____ .", + "Output Program": [ + "short_tree = 57\npreviously_number = 41\nprint(short_tree-previously_number)" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "If Mrs. Heine wants to split 3 heart biscuits between her 2 dogs, So , Each dog would get _____ heart biscuits .", + "Output Program": [ + "heart_biscuits = 3\ndogs = 2\nprint(heart_biscuits/dogs)" + ], + "Output Answer": [ + "1.5" + ], + "split": "test" + }, + { + "Input": "Keith spent $ 136.01 on speakers and returned to the shop a CD player worth $ 139.38, which he got reimbursed. He also spent $ 112.46 on new tires . He wanted 3 CD 's for $ 6.16 , but didn't buy them. In total , he spent $ _____ .", + "Output Program": [ + "speakers = 136.01\ncd_player = 139.38\ntires = 112.46\nans = \"{:.2f}\".format(tires-(cd_player-speakers))\nprint(ans)" + ], + "Output Answer": [ + "109.09" + ], + "split": "test" + }, + { + "Input": "Alec and his roommates bought 3.25 pints of ice cream on Friday night and ate 0.25 pint of ice cream on Saturday night. they had _____ pints left.", + "Output Program": [ + "pints = 3.25\nfriday_pint = 0.25\nprint(pints-friday_pint)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Connie had 593 marbles. Connie gave 183 to Juan. Connie is left with _____ .", + "Output Program": [ + "marbles = 593\ngave_to_juan = 183\nprint(marbles-gave_to_juan)" + ], + "Output Answer": [ + "410" + ], + "split": "test" + }, + { + "Input": "A sandbox is 312 centimeters long and 146 centimeters wide. The ratio of the length to the width is _____ .", + "Output Program": [ + "sandbox_long = 312\nsandbox_wide = 146\nans = \"{:.2f}\".format(sandbox_long/sandbox_wide)\nprint(ans)" + ], + "Output Answer": [ + "2.14" + ], + "split": "test" + }, + { + "Input": "Jack has a section filled with short story booklets. If there are 49 booklets in the short story section, and Jack needs to share them out equally among 9 friends, each will end up with _____ booklets .", + "Output Program": [ + "bookklets = 49\nfriends = 9 \nans = \"{:.2f}\".format(bookklets/friends)\nprint(ans)" + ], + "Output Answer": [ + "5.44" + ], + "split": "test" + }, + { + "Input": "Will has enough money to buy 57 toys that each cost 6 dollars. If he buys 27 toys, he should be left with _____ dollars .", + "Output Program": [ + "toys = 57\nbuy_toys = 27\ncost = 6\nprint((toys-buy_toys)*cost)" + ], + "Output Answer": [ + "180" + ], + "split": "test" + }, + { + "Input": "Tom already owns 2 games but purchased a Batman game for $13.6 and a Superman game for $5.06, anyway. The Batman game was $_____ more expensive was than the Superman game.", + "Output Program": [ + "games = 2\nbatman = 13.6\nsuperman= 5.06\nprint(batman-superman)" + ], + "Output Answer": [ + "8.54" + ], + "split": "test" + }, + { + "Input": "Mrs. Santiago has 58 red roses. Mrs. Garrett has 24. The total number of roses are _____ .", + "Output Program": [ + "santiago_rose = 58\ngarrett_rose = 24\nprint(santiago_rose+garrett_rose)" + ], + "Output Answer": [ + "82" + ], + "split": "test" + }, + { + "Input": "It rained 0.9 inches on Monday . On Tuesday , it rained 0.7 inches. It rained _____ inches on Monday and Tuesday .", + "Output Program": [ + "monday_rain = 0.9\ntuesday_rain = 0.7\nprint(monday_rain+tuesday_rain)" + ], + "Output Answer": [ + "1.6" + ], + "split": "test" + }, + { + "Input": "There are 22 stickers. If you have 10 pages of stickers, The average number of stickers per page is _____ .", + "Output Program": [ + "page = 10\nstickers = 22\nprint(stickers/page)" + ], + "Output Answer": [ + "2.2" + ], + "split": "test" + }, + { + "Input": "Mary has 42 books . She gave Jason 18 books, and he has read 9 of them. Mary end up with _____ books .", + "Output Program": [ + "mary_books = 42\njason_book = 18\nprint((mary_books-jason_book))" + ], + "Output Answer": [ + "24" + ], + "split": "test" + }, + { + "Input": "A farmer started the day with 8.75 buckets of seeds . After spending the morning sowing seeds , she now has 6 more buckets. The farmer sowed _____ buckets of seeds .", + "Output Program": [ + "seeds = 8.75\nadd_buckets = 6\nprint(add_buckets+seeds)\n" + ], + "Output Answer": [ + "14.75" + ], + "split": "test" + }, + { + "Input": "When relatives visit Haley and her family, she and her cousins do origami. She gives 48 origami papers to every 1 of her 6 cousins. she has given away _____ papers .", + "Output Program": [ + "papers = 48\ncousins = 6\nprint(papers*cousins)" + ], + "Output Answer": [ + "288" + ], + "split": "test" + }, + { + "Input": "Abe 's family moved from the Bahamas to Japan , so they had convert their money into Japanese yen . Their checking account had 6359 yen, and he has spent 3485 yen since then. They are left with _____ yen .", + "Output Program": [ + "account_yen = 6359\nspent_yen = 3485\nprint(account_yen-spent_yen)" + ], + "Output Answer": [ + "2874" + ], + "split": "test" + }, + { + "Input": "A cell phone company has a total of 7422 customers across the world. If they get 723 more customers in the United States, they will have _____ total customers .", + "Output Program": [ + "customers = 7422\nmore_customers= 723\nprint(customers+more_customers)" + ], + "Output Answer": [ + "8145" + ], + "split": "test" + }, + { + "Input": "Keith loves trading cards. She and 3 of her friends bought a pack of Digimon cards for $4.45, dividing the cost 4 ways. She also bought a deck of baseball cards herself for $6.06. Keith spent $_____ on cards.", + "Output Program": [ + "digimon_card = 4.45\ndividing_by = 4\nbaseball_cards = 6.06\nans = \"{:.2f}\".format(((digimon_card/dividing_by)+baseball_cards))\nprint(ans)" + ], + "Output Answer": [ + "7.17" + ], + "split": "test" + }, + { + "Input": "Tori is 4.4 feet tall . She grew 2.86 feet taller this year. Tori was _____ feet tall last year .", + "Output Program": [ + "\ntall = 4.4\nthis_year = 2.86\nprint(tall-this_year)" + ], + "Output Answer": [ + "1.54" + ], + "split": "test" + }, + { + "Input": "A worker at a medical lab is studying blood samples . 2 samples contained a total of 7341 blood cells . The third sample contained 4221 blood cells. There are _____ blood cells in total.", + "Output Program": [ + "samples = 2\nblood_cells = 7341\nthird_sample_blood_cells = 4221\nprint(blood_cells+third_sample_blood_cells)" + ], + "Output Answer": [ + "11562" + ], + "split": "test" + }, + { + "Input": "The farmers reported that they harvest 45 sacks of apples from an orchard that comprises 8 sections. If the same amount of apples is harvested from each section, _____ sacks are harvested from a section.", + "Output Program": [ + "sacks = 45\nsections = 8\nans = \"{:.2f}\".format(sacks/sections)\nprint(ans)" + ], + "Output Answer": [ + "5.63" + ], + "split": "test" + }, + { + "Input": "Some insects called aphids attack a large farm. In response, the farmer releases ladybugs onto the fields. There are 12170 ladybugs with spots and 54912 ladybugs without spots. The number of ladybugs without spots is _____ more than the number of ladybugs with spots.", + "Output Program": [ + "ladybugs_with_spots = 12170\nladybugs_without_spots = 54912\nprint(ladybugs_without_spots-ladybugs_with_spots)\n" + ], + "Output Answer": [ + "42742" + ], + "split": "test" + }, + { + "Input": "Chloe was playing a trivia game. In the first round, she scored 40 points, and in the second round, she scored 50 points. In the last round, she lost 4 points. She had _____ points at the end of the game.", + "Output Program": [ + "first_game = 40\nsecond_game = 50\nthird_game = 4\n\nfinal_score = first_game + second_game - third_game\n\nprint(final_score)" + ], + "Output Answer": [ + "86" + ], + "split": "train" + }, + { + "Input": "Justin needs 61 paper plates for a birthday party. He already has 26 blue plates and 7 red plates. Justin should buy _____ more plates .", + "Output Program": [ + "total_required_plates = 61\navailable_blue_plates = 26\navailable_red_plates = 7\n\ntotal_buy_plates = total_required_plates - (available_blue_plates + available_red_plates)\n\nprint(total_buy_plates)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "Mike had 34 peaches at his roadside fruit dish . He went to the orchard and picked peaches to stock up . There are now 86 peaches. He picked _____ number of peaches .", + "Output Program": [ + "no_peaches_before = 34\nno_peaches_after = 86\n\nno_peaches_picked = no_peaches_after - no_peaches_before\n\nprint(no_peaches_picked)" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": "Ellen made smoothies in the blender . She used 0.2 cup of strawberries , 0.1 cup of yogurt , and 0.2 cup of orange juice. Ellen used _____ cups of ingredients for the smoothies .", + "Output Program": [ + "no_cups_strawberries = 0.2\nno_cups_yogurt = 0.1\nno_cups_orange_juice = 0.2\n\nno_cups_total = no_cups_strawberries + no_cups_yogurt + no_cups_orange_juice\n\nprint(no_cups_total)" + ], + "Output Answer": [ + "0.5" + ], + "split": "train" + }, + { + "Input": "Shirley sold 20 boxes of Do-Si-Dos. Shirley needs to deliver _____ cases of 4 boxes, plus extra boxes .", + "Output Program": [ + "boxes = 20\ncases = 4\n\ntotal_cases = int(boxes / cases)\n\nprint(total_cases)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Jose starts with 7 bottle caps. He gets 2 more from Rebecca. Jose end up with _____ bottle caps .", + "Output Program": [ + "available_bottle_caps = 7\nadded_bottle_caps = 2\n\ntotal_bottle_caps = available_bottle_caps + added_bottle_caps\n\nprint(total_bottle_caps)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "At the schools book fair Sam bought 13 adventure books and 17 mystery books. If 15 of the books were used , he bought _____ new books .", + "Output Program": [ + "adventure_books = 13\nmystery_books = 17\ntotal_books = adventure_books + mystery_books \n\nused_books = 15\n\nnew_books = total_books - used_books\n\nprint(new_books)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Diane is a beekeeper . Last year , she harvested 2479 pounds of honey . This year , she bought some new hives and increased her honey harvest by 6085 pounds. Diane harvested _____ pounds of honey this year .", + "Output Program": [ + "honey_pounds_last_year = 2479\nhoney_pounds_increased_this_year = 6085\n\nhoney_pound_total_this_year = honey_pounds_last_year + honey_pounds_increased_this_year\n\nprint(honey_pound_total_this_year)" + ], + "Output Answer": [ + "8564" + ], + "split": "train" + }, + { + "Input": "Ella owns 2 dogs . Each day , 1 dog eats 0.12 scoop of dog food, and the other dog eats 0.12 scoop. Together , the 2 dogs eat _____ dog food each day .", + "Output Program": [ + "first_dog_scoop = 0.12\nsecond_dog_scoop = 0.12\n\ntotal_scoops = first_dog_scoop + second_dog_scoop\n\nprint(total_scoops)" + ], + "Output Answer": [ + "0.25" + ], + "split": "train" + }, + { + "Input": "Tommy had some balloons. His mom gave him 34 more balloons for his birthday. Then, Tommy had 60 balloons. Tommy had _____ baloons to start with.", + "Output Program": [ + "added_no_balloons = 34\ntotal_no_balloons = 60\n\navailable_no_balloons = total_no_balloons - added_no_balloons\n\nprint(available_no_balloons)" + ], + "Output Answer": [ + "26" + ], + "split": "train" + }, + { + "Input": "Brett drove 55 miles every hour. He would drive _____ miles in 8 hours.", + "Output Program": [ + "no_miles_in_hour = 55\nno_of_hours = 8\n\ntotal_miles = no_miles_in_hour * no_of_hours\n\nprint(total_miles)" + ], + "Output Answer": [ + "440" + ], + "split": "train" + }, + { + "Input": "Last Saturday , Spencer walked all over town running errands . First , he walked 0.3 mile from his house to the library and 0.1 mile from the library to the post office . Then he walked 0.4 mile from the post office back home. In all , Spencer walked _____ miles .", + "Output Program": [ + "house_to_library = 0.3\nlibrary_to_post_office = 0.1\npost_office_to_house = 0.4\n\ntotal_miles = house_to_library + library_to_post_office + post_office_to_house\n\nprint(total_miles)" + ], + "Output Answer": [ + "0.8" + ], + "split": "train" + }, + { + "Input": "Adam had 5 dollars. At the store he spent $2 on a new game. If he got another 5 dollars for his allowance, he has _____ amount of money now.", + "Output Program": [ + "available_amount = 5\nspent_amount = 2\nadded_amount = 5\n\nfinal_amount = available_amount - spent_amount + added_amount\n\nprint(final_amount)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Gumballs come in packages of 5. Nathan ate 20 gumballs. He ate _____ whole boxes .", + "Output Program": [ + "gumball_in_package = 5\ntotal_no_gumball = 20\n\ntotal_no_package = total_no_gumball / gumball_in_package\n\nprint(total_no_package)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Irwin 's family went on a camping trip in the mountains . On the first day , they hiked from their car to the campsite . First , they hiked 0.2 mile from the car to a stream , and 0.4 mile from the stream to a meadow . Then they hiked 0.1 mile from the meadow to the campsite. In all , Irwin 's family hiked _____ miles .", + "Output Program": [ + "car_to_stream = 0.2\nstream_to_meadow = 0.4\nmeadow_to_campsite = 0.1\n\ntotal_miles = car_to_stream + stream_to_meadow + meadow_to_campsite\n\nprint(total_miles)" + ], + "Output Answer": [ + "0.7" + ], + "split": "train" + }, + { + "Input": "Isabel bought 900 pieces of paper. She used 156 pieces of the paper. She is left with _____ pieces of paper.", + "Output Program": [ + "total_pieces = 900\nused_pieces = 156\n\nleft_pieces = total_pieces - used_pieces\n\nprint(left_pieces)" + ], + "Output Answer": [ + "744" + ], + "split": "train" + }, + { + "Input": "Tori was 4.4 feet tall . Then she grew 2.86 feet taller. Tori is _____ feets tall now .", + "Output Program": [ + "height_before = 4.4\nheight_increase = 2.86\n\nheight_now = height_before + height_increase\n\nprint(height_now)" + ], + "Output Answer": [ + "7.26" + ], + "split": "train" + }, + { + "Input": "There are 2 pencils in the drawer . Tim placed 3 pencils in the drawer. Now , there are _____ pencils in total .", + "Output Program": [ + "available_pencils = 2\nadded_pencils = 3\n\ntotal_pencils = available_pencils + added_pencils\n\nprint(total_pencils)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "There are 6 birds and 3 nests. There are _____ more birds than nests.", + "Output Program": [ + "no_birds = 6\nno_nests = 3\n\ndifference = abs(no_birds - no_nests)\n\nprint(difference)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Joan purchased a basketball game for $ 5.2 , and a racing game for $ 4.23. Joan spent _____ on video games .", + "Output Program": [ + "basketball_game_price = 5.2\nracing_game_price = 4.23\n\ntotal_price = basketball_game_price + racing_game_price\n\nprint(total_price)" + ], + "Output Answer": [ + "9.43" + ], + "split": "train" + }, + { + "Input": "Roden went to a pet shop. He bought 15 gold fish and 7 blue fish. So , he bought _____ fishes .", + "Output Program": [ + "no_gold_fish = 15\nno_blue_fish = 7\n\ntotal_fish = no_gold_fish + no_blue_fish\n\nprint(total_fish)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Roger was helping the cafeteria workers pick up lunch trays, but he could only carry 4 trays at a time. If he had to pick up 10 trays from 1 table and 2 trays from another, he would make _____ trips.", + "Output Program": [ + "no_tray_table1 = 10\nno_tray_table2 = 2\nno_total_tray = no_tray_table1 + no_tray_table2\n\ntray_carry = 4\n\nno_trips = no_total_tray / tray_carry\n\nprint(no_trips)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Gavin has 23 shirts. 6 are blue the rest are green. Gavin has _____ green shirts .", + "Output Program": [ + "total_shirts = 23\nblue_shirts = 6\n\ngreen_shirts = total_shirts - blue_shirts\n\nprint(green_shirts)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Rachel was organizing her book case making sure each of the shelves had exactly 9 books on it. If she had 6 shelves of mystery books and 2 shelves of picture books, she had _____ books in total.", + "Output Program": [ + "no_books_each_shelf = 9\n\nno_mystery_book_shelves = 6\nno_picture_book_shelves = 2\n\nno_total_book = (no_mystery_book_shelves + no_picture_book_shelves) * no_books_each_shelf\n\nprint(no_total_book)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": "Sara had 21 quarters in her bank. Her dad gave her 49 more quarters. She has _____ quarters now .", + "Output Program": [ + "available_quarters = 21\nadded_quarters = 49\n\ntotal_quarters = available_quarters + added_quarters\n\nprint(total_quarters)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "Karen added 0.25 cup of walnuts to a batch of trail mix . Later , she added 0.25 cup of almonds. In all , Karen put _____ cups of nuts in the trail mix .", + "Output Program": [ + "walnut_cups = 0.25\nalmond_cups = 0.25\n\ntotal_cups = walnut_cups + almond_cups\n\nprint(total_cups)" + ], + "Output Answer": [ + "0.5" + ], + "split": "train" + }, + { + "Input": "The farmers reported that they harvest 45 sacks of apples from each of the 8 sections of the orchard daily. _____ sacks are harvested every day.", + "Output Program": [ + "no_sections = 8\nsacks_apples_each_section = 45\n\ntotal_sacks = no_sections * sacks_apples_each_section\n\nprint(total_sacks)" + ], + "Output Answer": [ + "360" + ], + "split": "train" + }, + { + "Input": "A worker at a medical lab is studying blood samples . 2 samples contained a total of 7341 blood cells . The first sample contained 4221 blood cells. There were _____ blood cells in the second sample .", + "Output Program": [ + "total_blood_samples = 7341\nfirst_blood_samples = 4221\n\nsecond_blood_samples = total_blood_samples - first_blood_samples\n\nprint(second_blood_samples)" + ], + "Output Answer": [ + "3120" + ], + "split": "train" + }, + { + "Input": "At Lindsey 's Vacation Wear , 0.38 the garments are bikinis, and 0.25 are trunks. _____ fraction of the garments are either bikinis or trunks .", + "Output Program": [ + "bikini_garments = 0.38\ntrunk_garments = 0.25\n\n# to get the garments which are either bikinis or trunks we can use the following formula of union = bikini_garments + trunk_garments - bikini_and_trunk_garments\n# However, in our case there is no possibility that any garment can be bikini and trunk at a time. Hence, fraction of graments for bikini_and_trunk will be 0.\n\nbikini_and_trunk_garments = 0\n\nbikini_or_trunk_garments = bikini_garments + trunk_garments - bikini_and_trunk_garments\n\nprint(bikini_or_trunk_garments)" + ], + "Output Answer": [ + "0.63" + ], + "split": "train" + }, + { + "Input": "Gino has 63 popsicle sticks. I have 50 popsicle sticks. The sum of our popsicle sticks is _____ .", + "Output Program": [ + "gino_popsicle = 63\nmy_popsicle = 50\n\ntotal_popsicle = gino_popsicle + my_popsicle\n\nprint(total_popsicle)" + ], + "Output Answer": [ + "113" + ], + "split": "train" + }, + { + "Input": "Jason has 7 violet balloons and 4 red balloons . He lost 3 of the violet balloons. Jason has _____ violet balloons now .", + "Output Program": [ + "violet_balloons = 7\nred_balloons = 3\nlost_violet_balloons = 3\n\ntotal_violet_balloons = violet_balloons - lost_violet_balloons\n\nprint(total_violet_balloons)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Christina just transferred $ 69 out of her bank account . As a result , the account now has $ 26935 in it. There was _____ money in the account before the transfer .", + "Output Program": [ + "bank_amount_after = 26935\nwithdraw_amount = 69\n\nbank_amount_before = bank_amount_after + withdraw_amount\n\nprint(bank_amount_before)" + ], + "Output Answer": [ + "27004" + ], + "split": "train" + }, + { + "Input": "Tammy drove 55 miles in 1 hour. At that rate, she can drive _____ miles in 36 hours.", + "Output Program": [ + "miles_in_hour = 55\ntotal_hours = 36\n\ntotal_miles = miles_in_hour * total_hours\n\nprint(total_miles)" + ], + "Output Answer": [ + "1980" + ], + "split": "train" + }, + { + "Input": "Kaleb had 34 books. If he sold 17 of them and used the money he earned to buy 7 new books, so Kaleb would have _____ books .", + "Output Program": [ + "available_books = 34\nsold_books = 17\nadded_books = 7\n\nfinal_books = available_books - sold_books + added_books\n\nprint(final_books)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "While on vacation, Megan took 15 pictures at the zoo and 18 at the museum. If she later deleted 31 of the pictures, she still has _____ pictures from her vacation .", + "Output Program": [ + "zoo_pictures = 15\nmuseum_pictures = 18\ndeleted_pictures = 31\n\nfinal_pictures = zoo_pictures + museum_pictures - deleted_pictures\n\nprint(final_pictures)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Rose has 9 apples and 12 erasers. If she shares the apples among 3 friends, each friend would get _____ apples .", + "Output Program": [ + "no_apples = 9\nno_erasers = 12\nno_friends = 3\n\napple_per_friend = no_apples / no_friends\n\nprint(apple_per_friend)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Todd has some gum. Steve gave him 16 more pieces of gum. Now Todd has 54 pieces of gum. Todd had _____ pieces to start with.", + "Output Program": [ + "added_gum = 16\ntotal_gum = 54\n\navailable_gum = total_gum - added_gum\n\nprint(available_gum)" + ], + "Output Answer": [ + "38" + ], + "split": "train" + }, + { + "Input": "Alyssa loves eating fruits. Alyssa paid $12.08 for grapes, and $9.85 for cherries. In total, Alyssa spent $_____ .", + "Output Program": [ + "grapes_amount = 12.08\ncherries_amount = 9.85\n\ntotal_amount = grapes_amount + cherries_amount\n\nprint(total_amount)" + ], + "Output Answer": [ + "21.93" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt went to a concert. A total of 65899 people attended the concert. The next week, she went to a second concert, which had 119 more people in attendance. There were _____ people at the second concert.", + "Output Program": [ + "attendees_first_concert = 65899\nadded_attendees_second_concert = 119\n\nfinal_attendees_second_concert = attendees_first_concert + added_attendees_second_concert\n\nprint(final_attendees_second_concert)" + ], + "Output Answer": [ + "66018" + ], + "split": "train" + }, + { + "Input": "Students at Arcadia schools are participating in a coat drive . 9437 coats have been collected so far . 6922 coats were collected from the high schools , and the rest from the elementary schools. _____ coats were collected at the elementary schools .", + "Output Program": [ + "total_coats = 9437\nhigh_school_coats = 6922\n\nelementary_school_coats = total_coats - high_school_coats\n\nprint(elementary_school_coats)" + ], + "Output Answer": [ + "2515" + ], + "split": "train" + }, + { + "Input": "Marta picked 2 pumpkins . The first pumpkin weighed 4 pounds , and the second pumpkin weighed 8.7 pounds. All together , the 2 pumpkins weigh _____ pounds .", + "Output Program": [ + "first_pumpkin_weight = 4\nsecond_pumpkin_weight = 8.7\n\ntotal_weight = first_pumpkin_weight + second_pumpkin_weight\n\nprint(total_weight)" + ], + "Output Answer": [ + "12.7" + ], + "split": "train" + }, + { + "Input": "Seth bought 20 cartons of ice cream and 2 cartons of yogurt. Each carton of ice cream cost $6, and each carton of yogurt cost $1. Seth spent $_____ more on ice cream than on yogurt.", + "Output Program": [ + "no_icecream_cartons = 20\nno_yogurt_cartons = 2\none_icecream_carton_price = 6\none_yogurt_carton_price = 1\n\ntotal_icecream_price = no_icecream_cartons * one_icecream_carton_price\ntotal_yogurt_price = no_yogurt_cartons * one_yogurt_carton_price\n\ndifference = abs(total_icecream_price - total_yogurt_price)\n\nprint(difference)" + ], + "Output Answer": [ + "118" + ], + "split": "train" + }, + { + "Input": "Dan spent $ 11.76 on a snake toy , and a cage cost him $ 14.54 . Dan also found a dollar bill on the ground. The total cost of Dan 's purchases was _____ .", + "Output Program": [ + "snake_toy_price = 11.76\ncage_price = 14.54\n\ntotal_price = snake_toy_price + cage_price\n\nprint(round(total_price, 1))" + ], + "Output Answer": [ + "26.3" + ], + "split": "train" + }, + { + "Input": "Mike invited 13 friends to a birthday party, but 7 couldn't come. If he wanted to buy enough cupcakes so each person could have exactly 4, he should buy _____ cupcakes .", + "Output Program": [ + "total_friends = 13\ncancelled_friends = 7\n\ncupcake_per_friend = 4\n\ntotal_cupcakes = (total_friends - cancelled_friends) * cupcake_per_friend\n\nprint(total_cupcakes)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Norma has 88 cards. She loses 70. So, Norma would have _____ cards .", + "Output Program": [ + "total_cards = 88\nlost_cards = 70\n\nremaining_cards = total_cards - lost_cards\n\nprint(remaining_cards)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "A spaceship traveled 0.5 light-year from Earth to Planet X and 0.1 light-year from Planet X to Planet Y. Then it traveled 0.1 light-year from Planet Y back to Earth. In all , spaceship traveled _____ light-years .", + "Output Program": [ + "earth_to_x = 0.5\nx_to_y = 0.1\ny_to_earth = 0.1\n\ntotal_travel = earth_to_x + x_to_y + y_to_earth\n\nprint(total_travel)" + ], + "Output Answer": [ + "0.7" + ], + "split": "train" + }, + { + "Input": "Wendy ran 19.83 miles and walked 9.17 miles. Wendy ran _____ farther than she walked .", + "Output Program": [ + "run_miles = 19.83\nwalk_miles = 9.17\n\nrun_than_walk = abs(run_miles - walk_miles)\n\nprint(run_than_walk)" + ], + "Output Answer": [ + "10.67" + ], + "split": "train" + }, + { + "Input": "Ethan has 31 presents. Alissa has 22 more than Ethan. Alissa has _____ presents .", + "Output Program": [ + "no_presents_ethan = 31\nno_more_presents_alissa = 22\n\nno_total_presents_alissa = no_presents_ethan + no_more_presents_alissa\n\nprint(no_total_presents_alissa)" + ], + "Output Answer": [ + "53" + ], + "split": "train" + }, + { + "Input": "If Heather bicycled 40 kilometers at 8 kilometers per hour, Heather was bicycling for _____ hours .", + "Output Program": [ + "total_kilometers = 40\nkiometers_per_hour = 8\n\ntotal_hours = total_kilometers / kiometers_per_hour\n\nprint(total_hours)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Jessica spent $ 10.22 on a cat toy , and a cage cost her $ 11.73. The total cost of Jessica 's purchases was _____ .", + "Output Program": [ + "snake_toy_price = 10.22\ncage_price = 11.73\n\ntotal_price = snake_toy_price + cage_price\n\nprint(round(total_price, 2))" + ], + "Output Answer": [ + "21.95" + ], + "split": "train" + }, + { + "Input": "There are 46 rulers in the drawer . Tim took 25 rulers from the drawer. There are _____ rulers in the drawer now.", + "Output Program": [ + "total_rulers = 46\ntook_out_rules = 25\n\nremaining_rulers = total_rulers - took_out_rules\n\nprint(remaining_rulers)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Kaleen filled a bucket with 0.75 gallon of water . A few minutes later , she realized only 0.5 gallon of water remained. _____ water had leaked out of the bucket .", + "Output Program": [ + "total_water_gallons = 0.75\nremaining_water_gallons = 0.5\n\nleaked_water_gallons = total_water_gallons - remaining_water_gallons\n\nprint(leaked_water_gallons)" + ], + "Output Answer": [ + "0.25" + ], + "split": "train" + }, + { + "Input": "Paige had 8 songs on her mp3.0 player. If she deleted 5 old songs from it and then added 30 new songs, she has _____ songs on her mp3.0 player.", + "Output Program": [ + "total_songs = 8\ndeleted_songs = 5\nadded_songs = 30\n\nremaining_songs = total_songs - deleted_songs + added_songs\n\nprint(remaining_songs)" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": "Amy had 4 music files and 21 video files on her flash drive. If she deleted 23 of the files, there were _____ files still on her flash drive.", + "Output Program": [ + "music_files = 4\nvideo_files = 21\ndeleted_files = 23\n\nremaining_files = music_files + video_files - deleted_files\n\nprint(remaining_files)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Dan has $3. He bought a candy bar for $1. The money left is $ _____ .", + "Output Program": [ + "available_money = 3\nspent_money = 1\n\nremaining_money = available_money - spent_money\n\nprint(remaining_money)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Sandy 's dog had 8 puppies, and 3 had spots . She gave 4 to her friends. Now , She has _____ puppies .", + "Output Program": [ + "total_puppies = 8\npuppies_with_spot = 3\ngave_puppies = 4\n\nremaining_puppies = total_puppies - gave_puppies\n\nprint(remaining_puppies)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt bought 3 pizzas for $8 each. The total amount she paid for the 3 pizzas was _____ .", + "Output Program": [ + "no_pizzas = 3\nprice_per_pizza = 8\n\ntotal_price = no_pizzas * price_per_pizza\n\nprint(total_price)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Fred has 110 blue marbles. Fred has 22 times more blue marbles than Tim. Tim has _____ blue marbles .", + "Output Program": [ + "fred_marbles = 110\ntim_marbles_fred_times = 22\n\ntim_marbles = fred_marbles / tim_marbles_fred_times\n\nprint(tim_marbles)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Blake filled a bucket with 0.8 gallon of water . Later , he poured out 0.2 gallon of the water. There is _____ gallons of water in the bucket .", + "Output Program": [ + "filled_water = 0.8\ndiscarded_water = 0.2\n\nremaining_water = filled_water - discarded_water\n\nprint(remaining_water)" + ], + "Output Answer": [ + "0.6" + ], + "split": "train" + }, + { + "Input": "Randy has 78 blocks. He uses 19 blocks to build a tower. There are _____ blocks left.", + "Output Program": [ + "total_blocks = 78\nused_blocks = 19\n\nremaining_blocks = total_blocks - used_blocks\n\nprint(remaining_blocks)" + ], + "Output Answer": [ + "59" + ], + "split": "train" + }, + { + "Input": "Heather went to the county fair last weekend . When she got there , she had to walk 0.33 mile from the car to the entrance . Then she walked 0.33 mile to the carnival rides and 0.08 mile from the carnival rides back to the car. In all , Heather waled _____ miles .", + "Output Program": [ + "car_to_entrance = 0.33\nentrance_to_carnival = 0.33\ncarnival_to_car = 0.08\n\ntotal_miles = car_to_entrance + entrance_to_carnival + carnival_to_car\n\nprint(total_miles)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "You go out for a long walk. You walk 0.75 mile and then sit down to take a rest. Then you walk 0.25 of a mile. You walked _____ miles altogether.", + "Output Program": [ + "first_walk = 0.75\nafter_walk = 0.25\n\ntotal_walk = first_walk + after_walk\n\nprint(total_walk)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "There were a total of 27 soccer games during the 3 month season. If the games are equally divided, _____ soccer games are played a month .", + "Output Program": [ + "no_soccer_game = 27\nno_month = 3\n\nsoccer_game_per_month = no_soccer_game / no_month\n\nprint(soccer_game_per_month)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Last week Tom had 74 dollars . He washed cars over the weekend and now has 86 dollars. He made _____ money washing cars .", + "Output Program": [ + "money_before = 74\nmoney_total = 86\n\nmoney_earned = money_total - money_before\n\nprint(money_earned)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Dan found 56 seashells on the beach , he gave Jessica some of his seashells . He has 22 seashells. He gave _____ seashells to Jessica .", + "Output Program": [ + "total_seashell = 56\ngave_seashell = 22\n\nremaining_seashell = total_seashell - gave_seashell\n\nprint(remaining_seashell)" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "There were 28 girls and 35 boys on the playground at recess. In all , there were _____ children .", + "Output Program": [ + "no_girls = 28\nno_boys = 35\n\ntotal_children = no_girls + no_boys\n\nprint(total_children)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "Carrie's mom gave her $91 to go shopping. She bought a sweater for $24, a T-shirt for $6, and a pair of shoes for $11. Carrie is left with $_____ .", + "Output Program": [ + "total_amount = 91\nsweater_amount = 24\ntshirt_amount = 6\nshoes_amount = 11\n\nremaining_amount = total_amount - (sweater_amount + tshirt_amount + shoes_amount)\n\nprint(remaining_amount)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "Abe 's family moved from the Bahamas to Japan , so they had convert their money into Japanese yen . Their checking account now has 6359 yen, and their savings account now has 3485 yen. They have _____ yen .", + "Output Program": [ + "checking_account_money = 6359\nsavings_account_money = 3485\n\ntotal_money = checking_account_money + savings_account_money\n\nprint(total_money)" + ], + "Output Answer": [ + "9844" + ], + "split": "train" + }, + { + "Input": "Alyssa picked 25 limes, and Mike picked 32 limes . Tom picked 12 plums. So , _____ limes were picked in all .", + "Output Program": [ + "alyssa_limes = 25\nmike_limes = 32\ntom_plums = 12\n\ntotal_limes = alyssa_limes + mike_limes\n\nprint(total_limes)" + ], + "Output Answer": [ + "57" + ], + "split": "train" + }, + { + "Input": "Tyler had 15 dogs. Each dog had 5 puppies. Tyler now has _____ puppies .", + "Output Program": [ + "no_dogs = 15\npuppies_per_dog = 5\n\ntotal_puppies = no_dogs * puppies_per_dog\n\nprint(total_puppies)" + ], + "Output Answer": [ + "75" + ], + "split": "train" + }, + { + "Input": "30 dogs are barking. 10 more dogs start to bark. _____ dogs are barking.", + "Output Program": [ + "dogs_barking = 30\nadded_dogs_barking = 10\n\ntotal_dogs_barking = dogs_barking + added_dogs_barking\n\nprint(total_dogs_barking)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": "A toy store had 4 giant stuffed bears in stock when they got another shipment with 10 bears in it. The put the bears onto shelves with 7 on each shelf. they would have used _____ shelves .", + "Output Program": [ + "bears_before = 4\nbears_added = 10\n\ntotal_bears = bears_before + bears_added\n\nno_bears_each_shelf = 7\n\ntotal_shelf_used = total_bears / no_bears_each_shelf\n\nprint(total_shelf_used)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Faye had 34 coloring books. If she gave away 3 of them, but then bought 48 more, she would have _____ books in total.", + "Output Program": [ + "available_books = 34\ngave_books = 3\nadded_books = 48\n\nremaining_books = available_books - gave_books + added_books\n\nprint(remaining_books)" + ], + "Output Answer": [ + "79" + ], + "split": "train" + }, + { + "Input": "Luke was trying to expand his game collection. He bought 2 games from a friend and bought 2 more at a garage sale. If 2 of the games didn't work, hhe endded up with _____ good games .", + "Output Program": [ + "game_buy_from_friend = 2\ngame_buy_at_garage = 2\ngame_not_working = 2\n\nremaining_game = game_buy_from_friend + game_buy_at_garage - game_not_working\n\nprint(remaining_game)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Sandy has 10 books , Benny has 24 books , and Tim has 33 books. _____ many books do they have together .", + "Output Program": [ + "sandy_books = 10\nbenny_books = 24\ntim_books = 33\n\ntotal_books = sandy_books + benny_books + tim_books\n\nprint(total_books)" + ], + "Output Answer": [ + "67" + ], + "split": "train" + }, + { + "Input": "Before starting her shift , a waitress checks to make sure there is enough mustard for her customers . She finds 0.25 bottle at the first table , 0.25 bottle at the second table , and 0.38 bottle at the third table. Altogether , the waitress found _____ bottles of mustard .", + "Output Program": [ + "mustard_first_table = 0.25\nmustard_second_table = 0.25\nmustard_third_table = 0.38\n\ntotal_mustard = mustard_first_table + mustard_second_table + mustard_third_table\n\nprint(total_mustard)" + ], + "Output Answer": [ + "0.88" + ], + "split": "train" + }, + { + "Input": "There are 3 eggs in each box. So , there are _____ eggs in 2 boxes.", + "Output Program": [ + "eggs_per_box = 3\nno_box = 2\n\ntotal_eggs = eggs_per_box * no_box\n\nprint(total_eggs)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Billy has 62 crayons. 52 are eaten by a hippopotamus. So, Billy would have _____ crayons .", + "Output Program": [ + "crayons_before = 62\ncrayons_eaten = 52\n\ntotal_crayons = crayons_before - crayons_eaten\n\nprint(total_crayons)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Nancy went to 9 football games this month . She went to 8 games last month , and plans to go to 7 games next month . She paid 3 dollars for the tickets. In all , she would attend _____ games .", + "Output Program": [ + "last_month_game = 9\nthis_month_game = 8\nnext_month_game = 7\n\namount_per_game = 3\n\ntotal_game = last_month_game + this_month_game + next_month_game\n\nprint(total_game)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "There are 4 squirrels in a tree with 2 nuts. There are _____ more squirrels than nuts.", + "Output Program": [ + "no_squirrels = 4\nno_nuts = 2\n\ndifference = abs(no_squirrels - no_nuts)\n\nprint(difference)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "There are 24 bicycles and 14 tricycles in the storage area at Danny's apartment building. Each bicycle has 2 wheels, and each tricycle has 3 wheels. In all , there are _____ wheels .", + "Output Program": [ + "no_bicycles = 24\nno_tricycles = 14\nwheels_bicycle = 2\nwheels_tricycles = 3\n\ntotal_wheels = (no_bicycles * wheels_bicycle) + (no_tricycles * wheels_tricycles)\n\nprint(total_wheels)" + ], + "Output Answer": [ + "90" + ], + "split": "train" + }, + { + "Input": "Christopher strolled 5 miles at 4 miles per hour. Christopher strolled for _____ hours .", + "Output Program": [ + "total_miles = 5\nmile_per_hour = 4\n\ntotal_hours = total_miles / mile_per_hour\n\nprint(total_hours)" + ], + "Output Answer": [ + "1.25" + ], + "split": "train" + }, + { + "Input": "Melanie has 41 books and 31 magazines in her library . She bought several books at a yard sale over the weekend . She now has 87 books in her library. She bought _____ books at the yard sale .", + "Output Program": [ + "arthur_cards = 6\naaron_cards = 5\naaron_added_cards = 62\n\naaron_total_cards = aaron_cards + aaron_added_cards\n\nprint(aaron_total_cards)" + ], + "Output Answer": [ + "67" + ], + "split": "train" + }, + { + "Input": "Paco 's Countertop Company purchased pieces of marble from a quarry . The weights of the pieces they purchased were 0.33 ton , 0.33 ton , and 0.08 ton. In all , Paco 's Countertop Company purchased _____ tons of marble .", + "Output Program": [ + "first_pieces_weight = 0.33\nsecond_pieces_weight = 0.33\nthird_pieces_weight = 0.08\n\ntotal_pieces_weight = first_pieces_weight + second_pieces_weight + third_pieces_weight\n\nprint(total_pieces_weight)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "Alyssa's dog had puppies . She gave 7 to her friends . She now has 5 puppies. She had _____ puppies to start with.", + "Output Program": [ + "gave_puppies = 7\nleft_puppies = 5\n\npuppies_before = gave_puppies + left_puppies\n\nprint(puppies_before)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Milford Lake was originally blue because it only had 809 algae plants . Now there are 3263 algae plants , and the lake has turned green. There are _____ more algae plants in Milford Lake now .", + "Output Program": [ + "algae_plants_before = 809\nalgae_plants_after = 3263\n\nalgae_plants_added = algae_plants_after - algae_plants_before\n\nprint(algae_plants_added)" + ], + "Output Answer": [ + "2454" + ], + "split": "train" + }, + { + "Input": "Debby's class is going on a field trip to the zoo. If each van can hold 4 people and there are 2 students and 6 adults going, they would need _____ vans .", + "Output Program": [ + "no_students = 2\nno_adults = 6\npeople_per_van = 4\n\nno_vans = (no_students + no_adults) / people_per_van\n\nprint(no_vans)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Martin strolled to Lawrence's house. It is 12 miles from Martin's house to Lawrence's house. It took Martin 6 hours to get there. So , Martin went there at _____ miles per hour .", + "Output Program": [ + "no_miles = 12\ntotal_hours = 6\n\nmiles_per_hours = no_miles / total_hours\n\nprint(miles_per_hours)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Nancy has 7 black balloons. Mary has 4 times more black balloons than Nancy. Mary have _____ black balloons now .", + "Output Program": [ + "nancy_balloons = 7\nmary_more_nancy_balloons = 4\n\nmary_balloons = nancy_balloons * mary_more_nancy_balloons\n\nprint(mary_balloons)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "There are 7.75 gallons of water in Becky 's fish tank. If Becky adds 7 gallons more , In all , there will be _____ gallons .", + "Output Program": [ + "water_gallon_before = 7.75\nwater_gallon_added = 7\n\nwater_gallon_remaining = water_gallon_before + water_gallon_added\n\nprint(water_gallon_remaining)" + ], + "Output Answer": [ + "14.75" + ], + "split": "train" + }, + { + "Input": "Brian\u2019s car gets 20 miles per gallon. On his last trip, he used 3 gallons of gas. He travelled _____ miles on his last trip.", + "Output Program": [ + "miles_per_gallon = 20\nno_gallons = 3\n\ntotal_miles = miles_per_gallon * no_gallons\n\nprint(total_miles)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "A pet store had 13 siamese cats and 5 house cats. During a sale they sold 10 cats. They are left with _____ cats .", + "Output Program": [ + "siamese_cats = 13\nhouse_cats = 5\nsold_cats = 10\n\nremaining_cats = siamese_cats + house_cats - sold_cats\n\nprint(remaining_cats)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Kendall is learning to drive , so this weekend she practiced driving 0.17 mile with her mother and another 0.5 mile with her father. In all , Karen drove _____ far .", + "Output Program": [ + "miles_with_mother = 0.17\nmiles_with_father = 0.5\n\ntotal_miles = miles_with_mother + miles_with_father\n\nprint(total_miles)" + ], + "Output Answer": [ + "0.67" + ], + "split": "train" + }, + { + "Input": "Joan paid $8.77 on a cat toy, and a cage cost her $10.97 with a $20 bill. Joan received $_____ in change.", + "Output Program": [ + "cat_toy_price = 8.77\ncage_price = 10.97\n\ntotal_price_money = 20\n\nremaining_money = total_price_money - (cat_toy_price + cage_price)\n\nprint(round(remaining_money, 2))" + ], + "Output Answer": [ + "0.26" + ], + "split": "train" + }, + { + "Input": "Josh had 142 pencils. He gave 31 pencils to Dorothy. Josh is left with _____ pencils .", + "Output Program": [ + "josh_pencils = 142\ngave_dorothy_pencils = 31\n\nremaining_josh_pencils = josh_pencils - gave_dorothy_pencils\n\nprint(remaining_josh_pencils)" + ], + "Output Answer": [ + "111" + ], + "split": "train" + }, + { + "Input": "There were 11 friends playing a video game online when 5 players quit. If each player left had 5 lives, they had _____ lives in total.", + "Output Program": [ + "people_before = 11\npeople_left = 5\nlife_per_person = 5\n\ntotal_life = (people_before - people_left) * life_per_person\n\nprint(total_life)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Luke had 47 pieces of clothing to wash. He put 17 of them in 1 load, but decided to split the rest into 5 equal loads. _____ pieces of clothing shuld go in each of the small loads.", + "Output Program": [ + "total_pieces = 47\nfirst_load = 17\n\npieces_per_load = 5\n\nremaining_loads = (total_pieces - first_load) / pieces_per_load\n\nprint(remaining_loads)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Evelyn starts with 18 bottle caps. She finds another 63. Evelyn end with _____ bottle caps.", + "Output Program": [ + "bottle_caps_before = 18\nbottle_caps_added = 63\n\ntotal_bottle_caps = bottle_caps_before + bottle_caps_added\n\nprint(total_bottle_caps)" + ], + "Output Answer": [ + "81" + ], + "split": "train" + }, + { + "Input": "Alyssa went to 11 soccer games this year , but missed 12 . She went to 13 games last year and plans to go to 15 games next year. In all , Alyssa will go to _____ soccer games .", + "Output Program": [ + "soccer_game_this_year = 11\nsoccer_game_last_year = 13\nsoccer_game_next_year = 15\n\ntotal_soccer_game = soccer_game_this_year + soccer_game_last_year + soccer_game_next_year\n\nprint(total_soccer_game)" + ], + "Output Answer": [ + "39" + ], + "split": "train" + }, + { + "Input": "Jason went to the mall on Saturday to buy clothes . He spent $ 14.28 on shorts and $ 4.74 on a jacket. In total , Jason spent _____ on clothing .", + "Output Program": [ + "shorts_price = 14.28\njacket_price = 4.74\n\ntotal_price = shorts_price + jacket_price\n\nprint(total_price)" + ], + "Output Answer": [ + "19.02" + ], + "split": "train" + }, + { + "Input": "It takes 4 apples to make 1 pie. It takes _____ apples to make 504 pies.", + "Output Program": [ + "apples_per_pie = 4\ntotal_pies = 504\n\napples_needed = apples_per_pie * total_pies\n\nprint(apples_needed)" + ], + "Output Answer": [ + "2016" + ], + "split": "train" + }, + { + "Input": "Olivia was making baggies of cookies with 9 cookies in each bag. If she had 13 chocolate chip cookies and 41 oatmeal cookies, she could make _____ baggies.", + "Output Program": [ + "chocolate_chip_cookies = 13\noatmeal_cookies = 41\n\ncookies_each_bag = 9\n\ntotal_baggies = (chocolate_chip_cookies + oatmeal_cookies) / cookies_each_bag\n\nprint(total_baggies)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Pamela has 50 Skittles. She gives 7 to Karen. Pamela would have _____ Skittles .", + "Output Program": [ + "skittle_before = 50\nskittle_gave = 7\n\nremaining_skittle = skittle_before - skittle_gave\n\nprint(remaining_skittle)" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": "There are 96 cupcakes for 8 children to share. Each person will get _____ cupcakes if they share the cupcakes equally.", + "Output Program": [ + "total_cupcakes = 96\ntotal_children = 8\n\ncupcake_per_child = total_cupcakes / total_children\n\nprint(cupcake_per_child)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "A teacher has 344 pieces of candy. If there are 43 students, and the candy is divided evenly, each student would get _____ pieces .", + "Output Program": [ + "no_candies = 344\nno_students = 43\n\ncandy_per_student = no_candies / no_students\n\nprint(candy_per_student)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Larry has 67 cards. Dennis takes 9 away. So , Larry would have _____ cards .", + "Output Program": [ + "larry_cards = 67\ncards_gave_dennis = 9\n\nremaining_larry_cards = larry_cards - cards_gave_dennis\n\nprint(remaining_larry_cards)" + ], + "Output Answer": [ + "58" + ], + "split": "train" + }, + { + "Input": "Sally had 39 baseball cards , and 9 were torn . Sara bought 24 of Sally 's baseball cards. Now , Sally has _____ baseball cards .", + "Output Program": [ + "sally_cards = 39\ncards_gave_sara = 24\n\nremaining_sally_cards = sally_cards - cards_gave_sara\n\nprint(remaining_sally_cards)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Joan 's cat had 8 kittens . She gave 2 to her friends. She has _____ many kittens now .", + "Output Program": [ + "total_kitten = 8\ngave_kittens = 2\n\nremaining_kittens = total_kitten - gave_kittens\n\nprint(remaining_kittens)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Misha has 34 dollars. She has to earn _____ more dollars to have 47 dollars.", + "Output Program": [ + "available_dollar = 34\ntotal_dollar = 47\n\nadded_dollar = total_dollar - available_dollar\n\nprint(added_dollar)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Faye was selling her necklaces at a garage sale. She sold 3 bead necklaces and 7 gem stone necklaces. If each necklace cost 7 dollars, she earned _____ money .", + "Output Program": [ + "bead_necklace = 3\ngem_necklace = 7\n\ncost_per_necklace = 7\n\ntotal_cost = (bead_necklace + gem_necklace) * cost_per_necklace\n\nprint(total_cost)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "So far , an orchard has sold a combined total of 9792 pounds of fresh and frozen fruit this season. If they have sold 3513 pounds of frozen fruit , _____ pounds of fresh fruit have been sold so far .", + "Output Program": [ + "total_fruits = 9792\nsold_fruits = 3513\n\nremaining_sold_fruits = total_fruits - sold_fruits\n\nprint(remaining_sold_fruits)" + ], + "Output Answer": [ + "6279" + ], + "split": "train" + }, + { + "Input": "Peter starts with 8 erasers. Bridget gives Peter 3 more. So, Peter end up with _____ erasers .", + "Output Program": [ + "peter_erasers = 8\nbridget_added_erasers = 3\n\ntotal_erasers = peter_erasers + bridget_added_erasers\n\nprint(total_erasers)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "There are 5 people on the Green Bay High track team. If a relay race is 150 meters long, each team member would have to run _____ meters .", + "Output Program": [ + "relay_race_track_length = 150\nno_people_track = 5\n\nrun_per_people = relay_race_track_length / no_people_track\n\nprint(run_per_people)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "In March it rained 0.81 inches . It rained 0.35 inches less in April than in March. It rained _____ inches in April .", + "Output Program": [ + "march_rain = 0.81\napril_rain = march_rain - 0.35\n\nprint(april_rain)" + ], + "Output Answer": [ + "0.46" + ], + "split": "train" + }, + { + "Input": "Lino picked up 292 shells at the seashore in the morning and 324 shells in the afternoon. In all , he picked up _____ shells .", + "Output Program": [ + "morning_shells = 292\nafternoon_shells = 324\n\ntotal_shells = morning_shells + afternoon_shells\n\nprint(total_shells)" + ], + "Output Answer": [ + "616" + ], + "split": "train" + }, + { + "Input": "Isabella\u2019s hair is 18 inches long. If her hair grows 4 more inches, it will be _____ inches long .", + "Output Program": [ + "current_hair_length = 18\ngrowth_hair = 4\n\nfinal_hair_length = current_hair_length + growth_hair\n\nprint(final_hair_length)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Megan had 93 files on her computer. She deleted 21 of them and put the rest into folders with 8 files in each 1. Megan ended up with _____ folders .", + "Output Program": [ + "available_files = 93\ndeleted_files = 21\n\nfiles_per_folder = 8\n\nno_folders = (available_files - deleted_files) / files_per_folder\n\nprint(no_folders)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "James had 39 stickers. He got some more stickers for his birthday. Then he had 61 stickers. James got _____ stickers for his birthday .", + "Output Program": [ + "available_stickers = 39\nafter_stickers = 61\n\nadded_stickers = after_stickers - available_stickers\n\nprint(added_stickers)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Sally had 760 quarters in her bank . She spent 418 of her quarters. She has _____ quarters now .", + "Output Program": [ + "available_quarters = 760\nspent_quarters = 418\n\nremaining_quarters = available_quarters - spent_quarters\n\nprint(remaining_quarters)" + ], + "Output Answer": [ + "342" + ], + "split": "train" + }, + { + "Input": "Martha is inviting 4 friends to a party. She has 12 cookies. Each friend would get _____ cookies .", + "Output Program": [ + "no_friends = 4\nno_cookies = 12\n\ncookie_per_friend = no_cookies / no_friends\n\nprint(cookie_per_friend)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Christine wandered 20 miles at 4 miles per hour. Christine wandered for _____ hours .", + "Output Program": [ + "no_miles = 20\nmiles_per_hour = 4\n\nno_hours = no_miles / miles_per_hour\n\nprint(no_hours)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt wants to make a border around her garden. She needs 125 rocks to complete the border. She has 64 rocks. She needs _____ more rocks to complete the border.", + "Output Program": [ + "total_rocks = 125\navailable_rocks = 64\n\nneeded_rocks = total_rocks - available_rocks\n\nprint(needed_rocks)" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": "Betty has 24 oranges stored in boxes. If there are 3 boxes, as a result _____ oranges must go in each box.", + "Output Program": [ + "no_oranges = 24\nno_boxes = 3\n\noranges_per_box = no_oranges / no_boxes\n\nprint(oranges_per_box)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Emily was planting vegetables in her garden. She started with 41 seeds and planted 29 of them in the big garden, and in each of her small gardens, put 4 seeds each. Emily had _____ small gardens .", + "Output Program": [ + "total_seeds = 41\nbig_garden_seeds = 29\n\nseeds_per_small_garden = 4\n\nno_small_garden = (total_seeds - big_garden_seeds) / seeds_per_small_garden\n\nprint(no_small_garden)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "At Mrs. Hilt's house, there was 29 inches of snow, and Brecknock Elementary School received 17 inches of snow. Mrs. Hilt's house had _____ incehs of snow .", + "Output Program": [ + "hilt_snow_inches = 29\ngave_snow_school = 17\n\nremaining_snow = hilt_snow_inches - gave_snow_school\n\nprint(remaining_snow)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "532 people are watching a movie in a theater. The theater has 750 seats. There are _____ seats empty in the theater.", + "Output Program": [ + "no_seats = 750\nno_people = 532\n\nempty_seats = no_seats - no_people\n\nprint(empty_seats)" + ], + "Output Answer": [ + "218" + ], + "split": "train" + }, + { + "Input": "Cade had 87 marbles. He gave 8 to Dylan. Therefore , he is left with _____ marbles .", + "Output Program": [ + "cade_marbles = 87\ngave_matbles_dylan = 8\n\nremaining_cade_marbles = cade_marbles - gave_matbles_dylan\n\nprint(remaining_cade_marbles)" + ], + "Output Answer": [ + "79" + ], + "split": "train" + }, + { + "Input": "Denise removes 5 bananas from a jar. There were originally 46 bananas in the jar. As a result , _____ bananas are left in the jar.", + "Output Program": [ + "bananas_jar = 46\nremoved_bananas = 5\n\nremaining_bananas_jar = bananas_jar - removed_bananas\n\nprint(remaining_bananas_jar)" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Ted has 15 candy bars. He wants to put them into 5 bags so there are the same number of candy bars in each bag. _____ candy bars should go in each bag.", + "Output Program": [ + "no_candy_bars = 15\nno_bags = 5\n\ncandies_per_bag = no_candy_bars / no_bags\n\nprint(candies_per_bag)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "If there are 7 bottle caps in a box and Linda puts 7 more bottle caps inside, there are _____ bottle caps in the box.", + "Output Program": [ + "available_bottle_caps = 7\nadded_bottle_caps = 7\n\ntotal_bottle_caps = available_bottle_caps + added_bottle_caps\n\nprint(total_bottle_caps)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Martha bought 18 small cakes. She has 3 children. She would like to divide the cakes among her children so that each child gets the same amount. Each child would get _____ cakes .", + "Output Program": [ + "no_cakes = 18\nno_children = 3\n\ncake_per_chid = no_cakes / no_children\n\nprint(cake_per_chid)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Marlee has 12 guests coming to her Halloween party. Each table will hold 3 guests. She would need _____ tables .", + "Output Program": [ + "no_guests = 12\npeople_per_table = 3\n\nno_tables = no_guests / people_per_table\n\nprint(no_tables)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Kevin starts with 7 cards. He finds another 47. Kevin end with _____ cards .", + "Output Program": [ + "available_cards = 7\nadded_cards = 47\n\ntotal_cards = available_cards + added_cards\n\nprint(total_cards)" + ], + "Output Answer": [ + "54" + ], + "split": "train" + }, + { + "Input": "There are 22 walnut trees currently in the park . Park workers will plant walnut trees today . When the workers are finished there will be 55 walnut trees in the park. The workers planted _____ walnut trees today.", + "Output Program": [ + "available_walnut_trees = 22\ntotal_walnut_trees = 55\n\nadded_walnut_treess = total_walnut_trees - available_walnut_trees\n\nprint(added_walnut_treess)" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": "Elizabeth went to the salon and had 0.38 inch of hair cut off . The next day she went back and asked for another 0.5 inch to be cut off. She had cut off _____ hair in all .", + "Output Program": [ + "first_haircut = 0.38\nsecond_haircut = 0.5\n\ntotal_haircut = first_haircut + second_haircut\n\nprint(total_haircut)" + ], + "Output Answer": [ + "0.88" + ], + "split": "train" + }, + { + "Input": "On Saturday, Sara spent $10.62 each on 2 tickets to a movie theater. She also rented a movie for $1.59, and bought a movie for $13.95. Sara spent $_____ on movies.", + "Output Program": [ + "one_movie_ticket_price = 10.62\nrented_movie = 1.59\nbuy_movie = 13.95\n\ntotal_cost = (one_movie_ticket_price * 2) + rented_movie + buy_movie\n\nprint(total_cost)" + ], + "Output Answer": [ + "36.78" + ], + "split": "train" + }, + { + "Input": "The cafeteria had 62 apples. For lunch they handed out 8 to students and decided to use the rest to make pies. If each pie takes 9 apples, they could make _____ pies .", + "Output Program": [ + "available_apples = 62\ngave_apples_students = 8\napples_per_pie = 9\n\napples_needded_pie = (available_apples - gave_apples_students) / apples_per_pie\n\nprint(apples_needded_pie)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Jason picked 46 pears , Keith picked 47 pears , and Mike picked 12 pears from the pear tree. _____ many pears were picked in total .", + "Output Program": [ + "jason_pears = 46\nkeith_pears = 47\nmike_pears = 12\n\ntotal_pears = jason_pears + keith_pears + mike_pears\n\nprint(total_pears)" + ], + "Output Answer": [ + "105" + ], + "split": "train" + }, + { + "Input": "At the beach , Miki and her sister both built sandcastles and then measured their heights . Miki 's sandcastle was 0.83 foot tall, and her sister 's was 0.5 foot tall. Miki 's sandcastle was _____ taller than her sister 's .", + "Output Program": [ + "miki_sandcastle = 0.83\nsister_sandcastle = 0.5\n\nmiki_taller_sister_sandcastle = abs(miki_sandcastle - sister_sandcastle)\n\nprint(round(miki_taller_sister_sandcastle, 2))" + ], + "Output Answer": [ + "0.33" + ], + "split": "train" + }, + { + "Input": "A bee has 6 legs. Therefore , 2 bees would have _____ legs .", + "Output Program": [ + "legs_per_bee = 6\nno_bee = 2\n\ntotal_legs = legs_per_bee * no_bee\n\nprint(total_legs)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "The Hawks scored 3 touchdowns worth 7 points each. They have _____ points .", + "Output Program": [ + "no_touchdown = 3\npoints_per_touchdown = 7\n\nfinal_points = no_touchdown * points_per_touchdown\n\nprint(final_points)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "At a pie-eating contest , Erik got through 0.67 pie before time was called ; Frank finished just 0.33 pie. Erik ate _____ more pie than Frank .", + "Output Program": [ + "erik_pie = 0.67\nfrank_pie = 0.33\n\nerik_more_frank_pie = abs(erik_pie - frank_pie)\n\nprint(erik_more_frank_pie)" + ], + "Output Answer": [ + "0.34" + ], + "split": "train" + }, + { + "Input": "Sue\u2019s mother made 75 cookies. She put the cookies in bags, with 3 cookies in each bag. She could fill _____ bags .", + "Output Program": [ + "no_cookies = 75\ncookie_per_bag = 3\n\nno_bags = no_cookies / cookie_per_bag\n\nprint(no_bags)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "A restaurant served 9 pizzas during lunch and 6 during dinner today. _____ pizzas were served today .", + "Output Program": [ + "lunch_pizza = 9\ndinner_pizza = 6\n\ntotal_pizza = lunch_pizza + dinner_pizza\n\nprint(total_pizza)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Emily collected eggs from the hen and put them into 303 baskets. She put 28 eggs into each basket. Emily collected _____ eggs .", + "Output Program": [ + "no_baskets = 303\neggs_per_basket = 28\n\ntotal_egges = no_baskets * eggs_per_basket\n\nprint(total_egges)" + ], + "Output Answer": [ + "8484" + ], + "split": "train" + }, + { + "Input": "Kaleb had saved up 21 dollars. If he received another 15 dollars for his allowance, therefore he can buy _____ 6 dollar toys .", + "Output Program": [ + "available_dollars = 21\nadded_dollars = 15\n\nprice_one_toy = 6\n\nno_dollar_toys = (available_dollars + added_dollars) / price_one_toy\n\nprint(no_dollar_toys)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Mary\u2019s mom is getting ready for Mary\u2019s birthday party. She blew up 6 balloons this morning and 5 balloons this afternoon. So , in all , she blew up _____ balloons .", + "Output Program": [ + "morning_balloons = 6\nafternoon_balloons = 5\n\ntotal_balloons = morning_balloons + afternoon_balloons\n\nprint(total_balloons)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Fred had 7 dimes in his bank . His sister borrowed 3 of his dimes. Fred has _____ many dimes now .", + "Output Program": [ + "available_dimes = 7\ngave_dimes_sister = 3\n\nremaining_dimes = available_dimes - gave_dimes_sister\n\nprint(remaining_dimes)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "John walks 0.7 miles to school, and Nina walks 0.4 miles to school. John walked _____ farther than Nina.", + "Output Program": [ + "john_walk = 0.7\nnina_walks = 0.4\n\ndifference = abs(john_walk - nina_walks)\n\nprint(round(difference, 2))" + ], + "Output Answer": [ + "0.3" + ], + "split": "train" + }, + { + "Input": "The Richmond Tigers sold a total of 9570 tickets last season. If they sold 3867 tickets in the first half of the season , they sold _____ tickets in the second half .", + "Output Program": [ + "total_ticket = 9570\nfirst_season = 3867\n\nsecond_season = total_ticket - first_season\n\nprint(second_season)" + ], + "Output Answer": [ + "5703" + ], + "split": "train" + }, + { + "Input": "Warren has 252 guests coming to his party. Each table will hold 4 guests. So , he would need _____ tables .", + "Output Program": [ + "no_guests = 252\npeople_per_table = 4\n\nno_tables = no_guests / people_per_table\n\nprint(no_tables)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "Mike found 6 seashells and 3 starfish , but 4 of the seashells were broken. Mike found _____ unbroken seashells .", + "Output Program": [ + "seashells = 6\nstarfish = 3\nbroken_seashells = 4\n\nunbroken_seashells = seashells - broken_seashells\n\nprint(unbroken_seashells)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Carefully following a recipe , Kenny used exactly 0.17 cup of oil and 1.17 cups of water. In all , Kenny used _____ cups of liquid .", + "Output Program": [ + "oil_cup = 0.17\nwater_cup = 1.17\n\ntotal_cups = oil_cup + water_cup\n\nprint(round(total_cups, 2))" + ], + "Output Answer": [ + "1.33" + ], + "split": "train" + }, + { + "Input": "Willie has 48 bananas. Charles has 14 bananas. He loses 35. Willie will have _____ bananas .", + "Output Program": [ + "wille_bananas = 48\ncharles_bananas = 14\nwille_lost_bananas = 35\n\nremaining_wille_bananas = wille_bananas - wille_lost_bananas\n\nprint(remaining_wille_bananas)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "A cereal box holds 18 cups of cereal. Each serving is 2 cups. There are _____ servings in the whole box.", + "Output Program": [ + "sereal_cups = 18\nserving_cups = 2\n\nserving_box = sereal_cups / serving_cups\n\nprint(serving_box)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Zach wants to ride the Ferris wheel, the roller coaster, and the log ride. The Ferris wheel costs 2 tickets, the roller coaster costs 7 tickets, and the log ride costs 1 ticket. Zach has 1 ticket. Zach should buy _____ more tickets.", + "Output Program": [ + "ferris_wheel_ticket = 2\nroller_coast_ticket = 7\nlog_ride_ticket = 1\n\ntotal_ticket = ferris_wheel_ticket + roller_coast_ticket + log_ride_ticket\n\navailable_ticket = 1\n\nneeded_ticket = total_ticket - available_ticket\n\nprint(needed_ticket)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "The farmer had 127 apples. He gave 88 apples to his neighbor. He has _____ apples now.", + "Output Program": [ + "no_apples = 127\ngave_apples = 88\n\nfinal_apples = no_apples - gave_apples\n\nprint(final_apples)" + ], + "Output Answer": [ + "39" + ], + "split": "train" + }, + { + "Input": "At a restaurant, each adult meal costs $3, and kids eat free. If a group of 12 people came in and 7 were kids, it would cost $_____ for the group to eat.", + "Output Program": [ + "no_people = 12\nno_kids = 7\n\nno_adults = no_people - no_kids\n\nmeal_per_adult = 3\n\ntotal_cost = no_adults * meal_per_adult\n\nprint(total_cost)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "It rained 0.9 inches on Monday . On Tuesday , it rained 0.7 inches less than on Monday. It rained _____ inches on Tuesday .", + "Output Program": [ + "monday_inches = 0.9\ntueday_less_monday = 0.7\n\ntuesday_inches = monday_inches - tueday_less_monday\n\nprint(round(tuesday_inches, 2))" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "Tim 's cat had kittens . He gave 3 to Jessica and 6 to Sara . He now has 9 kittens. He had _____ kittens to start with .", + "Output Program": [ + "tim_gave_jessica = 3\ntim_gave_sara = 6\ntim_available_kittens = 9\n\ntim_before_kittens = tim_available_kittens + (tim_gave_jessica + tim_gave_sara)\n\nprint(tim_before_kittens)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Jason had Pokemon cards. Jason gave 9 to his friends. Jason now has 4 Pokemon cards left. Jason had _____ Pokemon cards start with .", + "Output Program": [ + "jason_gave_friends = 9\njason_available_cards = 4\n\njason_before_cards = jason_gave_friends + jason_available_cards\n\nprint(jason_before_cards)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Sara got fast food for lunch . Sara spent $ 5.36 on a hotdog and $ 5.1 on a salad. The total of the lunch bill was _____ .", + "Output Program": [ + "hotdog_cost = 5.36\nsalad_cost = 5.1\n\ntotal_cost = hotdog_cost + salad_cost\n\nprint(total_cost)" + ], + "Output Answer": [ + "10.46" + ], + "split": "train" + }, + { + "Input": "There are 7 dogwood trees currently in the park . Park workers will plant 5 dogwood trees today and 4 dogwood trees tomorrow . It took 8 workers to finish the work. The park will have _____ dogwood trees when the workers are finished .", + "Output Program": [ + "available_dogwood_trees = 7\ntoday_plant_dogwood_trees = 5\ntomorrow_plant_dogwood_trees = 4\n\nno_workers = 8\n\ntotal_dogwood_trees = available_dogwood_trees + today_plant_dogwood_trees + tomorrow_plant_dogwood_trees\n\nprint(total_dogwood_trees)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Will had 57 dollars. If he spent 27 bucks on a new game, he can buy _____ 6 dollar toys with the money he had left.", + "Output Program": [ + "available_dollars = 57\nspent_dollars = 27\n\nprice_one_toy = 6\n\nno_toys = (available_dollars - spent_dollars) / price_one_toy\n\nprint(no_toys)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Logan recorded the snowfall every day during a snowstorm . He recorded 0.33 centimeter on Wednesday , 0.33 centimeter on Thursday , and 0.22 centimeter on Friday. Logan recorded _____ centimeters of snow .", + "Output Program": [ + "wednesday_length = 0.33\nthursday_length = 0.33\nfriday_length = 0.22\n\ntotal_length = wednesday_length + thursday_length + friday_length\n\nprint(total_length)" + ], + "Output Answer": [ + "0.89" + ], + "split": "train" + }, + { + "Input": "For his car , Mike spent $ 118.54 on speakers and $ 106.33 on new tires . Mike wanted 3 CD 's for $ 4.58 but decided not to. In total , Mike spent _____ on car parts .", + "Output Program": [ + "speakers_cost = 118.54\nnew_tires_cost = 106.33\ncd_cost = 4.58\n\ntotal_cost = speakers_cost + new_tires_cost\n\nprint(total_cost)" + ], + "Output Answer": [ + "224.87" + ], + "split": "train" + }, + { + "Input": "A chef bought 0.14 kilograms of almonds and 0.38 kilograms of pecans. In all , the chef baught _____ kilograms of nuts .", + "Output Program": [ + "almonds_kilogram = 0.14\npacans_kilogram = 0.38\n\ntotal_nuts_kilogram = almonds_kilogram + pacans_kilogram\n\nprint(total_nuts_kilogram)" + ], + "Output Answer": [ + "0.52" + ], + "split": "train" + }, + { + "Input": "Henry earned 5 dollars for each lawn he mowed. If he had 12 lawns to mow, but forgot to mow 7 of them, he actually earned _____ dollars .", + "Output Program": [ + "dollar_per_lawn = 5\nno_lawns_mow = 12\nno_forgot_lawns_mow = 7\n\nearned_dollars = (no_lawns_mow - no_forgot_lawns_mow) * dollar_per_lawn\n\nprint(earned_dollars)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Brennan had 0.25 grams of pepper . Then he used 0.16 grams of the pepper to make some scrambled eggs. Brennan has _____ grams of pepper .", + "Output Program": [ + "available_pepper = 0.25\nused_pepper = 0.16\n\nremaining_pepper = available_pepper - used_pepper\n\nprint(remaining_pepper)" + ], + "Output Answer": [ + "0.09" + ], + "split": "train" + }, + { + "Input": "Mikey had 356 leaves. Some of her leaves blew away. Now she has 112 leaves left. So , _____ leaves blew away.", + "Output Program": [ + "available_leaves = 356\nremaining_leaves = 112\n\nblew_away_leaves = available_leaves - remaining_leaves\n\nprint(blew_away_leaves)" + ], + "Output Answer": [ + "244" + ], + "split": "train" + }, + { + "Input": "Tiffany was playing a video game and had 43 lives. In a hard part of the game she lost 14 lives. If she got 27 more lives in the next level, so she should have _____ lives .", + "Output Program": [ + "total_lives = 43\nlost_lives = 14\nadded_leaves = 27\n\nfinal_leaves = total_lives - lost_lives + added_leaves\n\nprint(final_leaves)" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": "Joan decided to sell all of her old books . She gathered up 33 books to sell . She sold 26 books in a yard sale. Joan has _____ books now .", + "Output Program": [ + "available_books = 33\nsold_books = 26\n\nremaining_books = available_books - sold_books\n\nprint(remaining_books)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Melanie goes fishing with Tom. Melanie catches 8 trout. Tom catches 2 times as many trout as Melanie. Tom caught _____ trouts .", + "Output Program": [ + "melanie_trout = 8\ntom_more_melanie_trout = 2\n\ntom_trout = melanie_trout * tom_more_melanie_trout\n\nprint(tom_trout)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "During a visit to an orchard , Charlie picked 0.17 bag of Golden Delicious apples , 0.17 bag of Macintosh apples , and 0.33 bag of Cortland apples. In total, Charlie picked _____ bags of fruit .", + "Output Program": [ + "golden_delicious_apples = 0.17\nmacintosh_apples = 0.17\ncortland_apples = 0.33\n\ntotal_apples = golden_delicious_apples + macintosh_apples + cortland_apples\n\nprint(total_apples)" + ], + "Output Answer": [ + "0.67" + ], + "split": "train" + }, + { + "Input": "April's discount flowers was having a sale where each rose was 7 dollars. If April started with 9 roses and had 4 roses left, she earned _____ dollars .", + "Output Program": [ + "dollar_per_rose = 7\ntotal_roses = 9\nleft_roses = 4\n\ntotal_dollar = (total_roses - left_roses) * dollar_per_rose\n\nprint(total_dollar)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "The Litter Patrol picked up 10 glass bottles and 8 aluminum cans on Saturday. Altogether , they picked up _____ pieces of litter .", + "Output Program": [ + "glass_bottle = 10\naluminium_cans = 8\n\ntotal_pieces = glass_bottle + aluminium_cans\n\nprint(total_pieces)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Mary went to the mall . She spent $ 13.04 on a shirt and $ 12.27 on a jacket . She went to 2 shops. In total , Mary spent _____ dollars on clothing .", + "Output Program": [ + "shirt_price = 13.04\njacket_price = 12.27\n\ntotal_price = shirt_price + jacket_price\n\nprint(total_price)" + ], + "Output Answer": [ + "25.31" + ], + "split": "train" + }, + { + "Input": "While playing a video game , Paul scored 3103 points . He and his cousin together have a total of 5816 points. Paul 's cousin have _____ points .", + "Output Program": [ + "paul_score = 3103\ntotal_score = 5816\n\npaul_cousin_score = total_score - paul_score\n\nprint(paul_cousin_score)" + ], + "Output Answer": [ + "2713" + ], + "split": "train" + }, + { + "Input": "Jonathan wants to buy a dictionary that costs $11, a dinosaur book that costs $19, and a children's cookbook that costs $7. He has saved $8 from his allowance. Jonathan needs $_____ to buy all 3 books.", + "Output Program": [ + "dictionary_price = 11\ndinosaur_price = 19\ncrookbook_price = 7\n\navailable_amount = 8\n\nneeded_amount = (dictionary_price + dinosaur_price + crookbook_price) - available_amount\n\nprint(needed_amount)" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "Wendy was playing a video game where she scores 5 points for each treasure she finds. If she found 4 treasures on the first level and 3 on the second, Her score would be _____ .", + "Output Program": [ + "point = 5\nfound = 4\nfound += 3\n\nscore = point * found\n\nprint(score)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "Paula's aunt gave her $109 to spend on clothes at the mall. She bought 2 shirts that cost $11 each and a pair of pants that cost $13. Paula is left with $_____ to buy more clothes.", + "Output Program": [ + "total_money = 109\nshirt_price = 11\nno_shirts = 2\npants_price = 13\n\nremaining_price = total_money - ((shirt_price * no_shirts) + pants_price)\n\nprint(remaining_price)" + ], + "Output Answer": [ + "74" + ], + "split": "train" + }, + { + "Input": "Sandy went to the mall to buy clothes . She spent $ 13.99 on shorts , $ 12.14 on a shirt , and $ 7.43 on a jacket. Sandy spent _____ on clothes .", + "Output Program": [ + "short_price = 13.99\nshirt_price = 12.14\njacket_price = 7.43\n\ntotal_price = short_price + shirt_price + jacket_price\n\nprint(total_price)" + ], + "Output Answer": [ + "33.56" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt ate 5 apples every hour. Therefore , she would have eaten _____ apples at the end of 3 hours.", + "Output Program": [ + "apples_per_hour = 5\nno_hours = 3\n\ntotal_apples = apples_per_hour * no_hours\n\nprint(total_apples)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Mrs. Franklin had 58 Valentines. Mrs. Franklin gave some to her students. Now she has 16. Mrs. Franklin gave _____ Valentines to her students.", + "Output Program": [ + "available_valentines = 58\ngave_valentines = 16\n\nremaining_valentines = available_valentines - gave_valentines\n\nprint(remaining_valentines)" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "A company invited 18 people to a luncheon, but 12 of them didn't show up. If the tables they had held 3 people each, they need _____ tables .", + "Output Program": [ + "total_invited_people = 18\npeople_not_come = 12\npeople_per_table = 3\n\nno_tables = (total_invited_people - people_not_come) / people_per_table\n\nprint(no_tables)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "I have a pet golden retriever. Each year he gains 11 pounds. He is 8 years old. He weighs _____ pounds .", + "Output Program": [ + "pound_per_year = 8\nno_years = 11\n\ntotal_pounds = pound_per_year * no_years\n\nprint(total_pounds)" + ], + "Output Answer": [ + "88" + ], + "split": "train" + }, + { + "Input": "A farmer estimates that he will harvest 48097 bushels of wheat . The weather is perfect during the growing season , so he harvests 684 bushels of wheat more than expected. The farmer harvested _____ bushels of wheat .", + "Output Program": [ + "bushel_wheat = 48097\nadded_bulshel_wheat = 684\n\ntotal_bulsheal_wheat = bushel_wheat + added_bulshel_wheat\n\nprint(total_bulsheal_wheat)" + ], + "Output Answer": [ + "48781" + ], + "split": "train" + }, + { + "Input": "Isabel had 2 pages of math homework and 4 pages of reading homework. If each page had 5 problems on it, she had to complete _____ problems total.", + "Output Program": [ + "math_problem = 2\nreading_problem = 4\n\nproblem_per_page = 5\n\ntotal_problems = (math_problem + reading_problem) * problem_per_page\n\nprint(total_problems)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Arthur baked 115 muffins. James baked 12 times as many. James baked _____ muffins .", + "Output Program": [ + "arthur_muffins = 115\njames_more_arthur = 12\n\njames_muffins = arthur_muffins * james_more_arthur\n\nprint(james_muffins)" + ], + "Output Answer": [ + "1380" + ], + "split": "train" + }, + { + "Input": "Joan purchased a basketball game for $5.2, and a racing game for $4.23. Joan spent $_____ on video games.", + "Output Program": [ + "basketball_game_price = 5.2\nracing_game_price = 4.23\n\ntotal_price = basketball_game_price + racing_game_price\n\nprint(total_price)" + ], + "Output Answer": [ + "9.43" + ], + "split": "train" + }, + { + "Input": "While shopping, Maria bought 35 green towels and 21 white towels. If she gave her mother 34 of them, Maria ended up with _____ towels .", + "Output Program": [ + "green_towels = 35\nwhite_towels = 21\ngave_towels = 34\n\nremaining_towels = (green_towels + white_towels) - gave_towels\n\nprint(remaining_towels)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Alyssa loves eating fruits . Alyssa paid $ 12.08 for grapes , and $ 9.85 for cherries. In total , Alyssa spent _____ .", + "Output Program": [ + "no_grapes = 12.08\nno_cherries = 9.85\n\ntotal_fruits = no_grapes + no_cherries\n\nprint(total_fruits)" + ], + "Output Answer": [ + "21.93" + ], + "split": "train" + }, + { + "Input": "Melanie picked 7 plums and 4 oranges from the orchard . She gave 3 plums to Sam. She has _____ plums now .", + "Output Program": [ + "no_plums = 7\nno_orange = 4\ngave_plums = 3\n\nremaining_plums = no_plums - gave_plums\n\nprint(remaining_plums)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Jane has 28 old, brown sheets of drawing paper and 27 old, yellow sheets of drawing paper. She has _____ pieces of drawing paper .", + "Output Program": [ + "brown_sheets = 28\nyellow_sheets = 27\n\ntotal_sheets = brown_sheets + yellow_sheets\n\nprint(total_sheets)" + ], + "Output Answer": [ + "55" + ], + "split": "train" + }, + { + "Input": "Mike worked 3 hours each day, for 5 days. In total , he worked for _____ hours .", + "Output Program": [ + "hours_per_day = 3\nno_days = 5\n\ntotal_hours = hours_per_day * no_days\n\nprint(total_hours)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Luke made 9 dollars mowing lawns and 18 dollars weed eating. If he only spent 3 dollar a week, the money last him _____ weeks .", + "Output Program": [ + "mow_dollar = 9\nweed_dollar = 18\n\ndollar_per_week = 3\n\nno_weeks = (mow_dollar + weed_dollar) / dollar_per_week\n\nprint(no_weeks)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Mrs. Snyder made 86 heart cookies. She made 36 red cookies, and the rest are pink. She made _____ pink cookies .", + "Output Program": [ + "total_cookies = 86\nred_cookies = 36\n\npink_cookies = total_cookies - red_cookies\n\nprint(pink_cookies)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "Sally had 13 peaches left at her roadside fruit stand. She went to the orchard and picked more peaches to stock up the stand. There are now 55 peaches at the stand, she picked up _____ peaches .", + "Output Program": [ + "now_peaches=55\nleft_peaches=13\npicked_up_peaches=now_peaches-left_peaches\nprint(picked_up_peaches)" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "Katie baked 18 cupcakes for her school's bake sale. If her brother, Todd, ate 8 of them , she could only make _____ packages if she put 2 cupcake in each package.", + "Output Program": [ + "cake_per_package=2\ntoal_cupcake=18\ncake_ate=8\nramains=toal_cupcake-cake_ate\npackages=ramains/cake_per_package\nprint(packages)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Virginia starts with 96 eggs. Amy takes 3 away. Virginia end up with _____ eggs .", + "Output Program": [ + "total_eggs=96\ntakes_away=3\nremaining=total_eggs-takes_away\nprint(remaining)\n" + ], + "Output Answer": [ + "93" + ], + "split": "train" + }, + { + "Input": "The Silvergrove Public Library used a grant to purchase 2647 books . Now the library has a total of 8582 books. the library had _____ books before the grant .", + "Output Program": [ + "total_books_now=8582\ngrant_to_purchase=2647\nbefore_grant_books=total_books_now-grant_to_purchase\nprint(before_grant_books)\n" + ], + "Output Answer": [ + "5935" + ], + "split": "train" + }, + { + "Input": "Stephanie went to the store 8 times last month. She buys 2 oranges each time she goes to the store. Stephanie bought _____ oranges last month.", + "Output Program": [ + "times_went_store=8\neach_time_buys_orange=2\ntotal_brought=times_went_store*each_time_buys_orange\nprint(total_brought)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Dana earns $13 per hour. She worked 9 hours on Friday, 10 hours on Saturday, and 3 hours on Sunday. In all, Dana earned $_____ .", + "Output Program": [ + "total_dollars_earned=13\nfriday_hours=9\nsaturday_hours=10\nsunday_hours=3\ntotal_earns=(friday_hours+saturday_hours+sunday_hours)*total_dollars_earned\nprint(total_earns)" + ], + "Output Answer": [ + "286" + ], + "split": "train" + }, + { + "Input": "Ron weighed 2 colored metal balls during a science class . The blue ball weighed 6 pounds, and the brown ball weighed 3.12 pounds. If Ron places both balls on the scale at the same time , The scale would read _____ .", + "Output Program": [ + "blue_ball_weight=6\nbrown_ball_weight=3.12\ntotal_scale=blue_ball_weight+brown_ball_weight\nprint(total_scale)" + ], + "Output Answer": [ + "9.12" + ], + "split": "train" + }, + { + "Input": "Sandy went to the mall on Saturday to buy clothes. She paid $9.24 on pants and $8.25 on a shirt with a $20 bill. Sandy got $_____ in change.", + "Output Program": [ + "total_bill=20\npant_price=9.24\nshirt_price=8.25\nchange=total_bill-(pant_price+shirt_price)\nprint(change)" + ], + "Output Answer": [ + "2.51" + ], + "split": "train" + }, + { + "Input": "A bucket contains 3 gallons of water. If Derek adds 6.8 gallons more , in all , there will be _____ gallons .", + "Output Program": [ + "bucket_contains_water=3\nadded_water=6.8\ntotal_water=bucket_contains_water+added_water\nprint(total_water)" + ], + "Output Answer": [ + "9.8" + ], + "split": "train" + }, + { + "Input": "Albert has 2 snakes. The garden snake is 10 inches long. The boa constrictor is 7 times longer than the garden snake. The boa constrictor is _____ inches long .", + "Output Program": [ + "garden_snake_legnth=10\nboa_constrictor_legnth=garden_snake_legnth*7\nprint(boa_constrictor_legnth)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "Before the recent housing boom , there were 1426 houses in Lawrence County . Now , there are 2000 houses. The developers built _____ houses during the housing boom .", + "Output Program": [ + "houses_then=1426\nhouses_now=2000\ndeveloper_built=houses_now-houses_then\nprint(developer_built)" + ], + "Output Answer": [ + "574" + ], + "split": "train" + }, + { + "Input": "A trivia team had 5 members total, but during a game 2 members didn't show up. If each member that did show up scored 6 points, _____ points were scored total.", + "Output Program": [ + "total_member=5\nmember_didnt_show_up=2\nremaining_member=total_member-member_didnt_show_up\npoints_per_each_member=6\ntotal_points=points_per_each_member*remaining_member\nprint(total_points)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "14 birds were sitting in a tree. 21 more birds flew up to the tree. Altogether , there were _____ birds in the tree.", + "Output Program": [ + "birds=14\nmore_birds=21\ntotal_birds=more_birds+birds\nprint(total_birds)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "Anthony has 9 pencils. Kathryn gives Anthony 56 more. In all , Anthony has _____ pencils .", + "Output Program": [ + "pencils=9\nmore_pencils=56\ntotal_pencils=more_pencils+pencils\nprint(total_pencils)" + ], + "Output Answer": [ + "65" + ], + "split": "train" + }, + { + "Input": "A restaurant served 5 cakes during lunch and 6 during dinner today . The restaurant served 3 cakes yesterday. _____ cakes were served in total .", + "Output Program": [ + "served_cakes_today=5\nfor_dinner=6\nyesterday=3\ntotal_served=served_cakes_today+for_dinner+yesterday\nprint(total_served)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Jessica spent $10.22 on a cat toy, and a cage cost her $11.73. The total cost of Jessica's purchases was _____ .", + "Output Program": [ + "cat_toy=10.22\ncage=11.73\ntotal_purchase=cat_toy+cage\nprint(total_purchase)" + ], + "Output Answer": [ + "21.95" + ], + "split": "train" + }, + { + "Input": "Oscar 's bus ride to school is 0.75 mile, and Charlie 's bus ride is 0.25 mile. Oscar 's bus ride is _____ longer than Charlie 's .", + "Output Program": [ + "oscar_ride=0.75\ncharlie_ride=0.25\ndifference=oscar_ride-charlie_ride\nprint(difference)\n" + ], + "Output Answer": [ + "0.5" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt had 15 cents. She bought a pencil for 11 cents. She was left with _____ cents.", + "Output Program": [ + "total_cents=15\nbought_pencils=11\nleft=total_cents-bought_pencils\nprint(left)\n" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "There are 9 oak trees currently in the park . Park workers had to cut down 2 oak trees that were damaged. There will be _____ oak trees in the park when the workers are finished .", + "Output Program": [ + "total_tree=9\ncut_down=2\nremaining_tree=total_tree-cut_down\nprint(remaining_tree)\n" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Nancy bought 615 crayons that came in packs of 15. Nancy baught _____ packs of crayons .", + "Output Program": [ + "total_crayons=615\ncrayons_per_pack=15\ntotal_pack=total_crayons/crayons_per_pack\nprint(total_pack)\n" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Kylie was collecting coins. She got 15 coins from her piggy bank and 13 coins from her brother. Her father gave Kylie 8 coins. Kylie gave 21 of the coins to her friend Laura. Kylie is left with _____ coins .", + "Output Program": [ + "piggy_bank_coins=15\nfrom_brother=13\nfrom_father=8\ngave_to_her_friend=21\nremaining_coins=(piggy_bank_coins+from_brother+from_father)-gave_to_her_friend\nprint(remaining_coins)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Kate has 223 pennies. John has 388 pennies. John has _____ more pennies .", + "Output Program": [ + "john_pennies=388\nkate_pennies=223\ndiffent_of_pennies=john_pennies-kate_pennies\nprint(diffent_of_pennies)\n" + ], + "Output Answer": [ + "165" + ], + "split": "train" + }, + { + "Input": "Each year , salmon travel upstream , going from the ocean to the rivers where they were born . This year , 712261 male and 259378 female salmon returned to their rivers. _____ salmons made the trip .", + "Output Program": [ + "a=712261\nb=259378\nprint(a+b)\n" + ], + "Output Answer": [ + "971639" + ], + "split": "train" + }, + { + "Input": "Sandy grew 6 carrots . Sam grew 3 carrots. They grew _____ carrots in total .", + "Output Program": [ + "a=6\nb=3\nprint(a+b)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Carolyn starts with 47 marbles and 6 oranges. She shares 42 with Diana. Carolyn end up with _____ marbles .", + "Output Program": [ + "marbles=47\ngave_to_diana=42\nramining=marbles-gave_to_diana\nprint(ramining)\n" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Jenny ran 0.6 mile and walked 0.4 mile. Jenny ran _____ farther than walk .", + "Output Program": [ + "a=0.6\nb=0.4\nprint(b-a)" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "Kelly had 56 apples. Kelly needs _____ more apples to pick to have 105 apples altogether.", + "Output Program": [ + "need_apples=105\nhad_apples=56\nneed_more_apples=need_apples-had_apples\nprint(need_more_apples)" + ], + "Output Answer": [ + "49" + ], + "split": "train" + }, + { + "Input": "Sean has 9 apples. Susan gives Sean 8 more. Later, Sean buys 18 tickets at the store. In all , Sean has _____ apples .", + "Output Program": [ + "a=9\nb=8\nprint(a+b)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Arthur baked 35 muffins. Arthur should bake _____ more muffins to have 83 muffins.", + "Output Program": [ + "baked=35\ntarget=83\nneed_more_muffins=target-baked\nprint(need_more_muffins)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "Joshua has 40 Skittles and 6 eggs. If he shares the Skittles among 5 friends, each friend would get _____ Skittles .", + "Output Program": [ + "a=40\nb=5\neach_friend_got=a/b\nprint(each_friend_got)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "While shopping for music online, Megan bought 2 country albums and 8 pop albums. Each album came with a lyric sheet and had 7 songs. Megan baught _____ songs in total.", + "Output Program": [ + "country_album=2\npop_album=8\ntotal_album=country_album+pop_album\nsongs_per_album=7\ntotal_album=total_album*songs_per_album\nprint(total_album)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "Recently , the value of Kate 's retirement fund decreased by $ 12. If her fund was worth $ 1472 before , it is worth _____ now .", + "Output Program": [ + "total_worth=1472\ndecreased_wordth=12\nworth_now=total_worth-decreased_wordth\nprint(worth_now)" + ], + "Output Answer": [ + "1460" + ], + "split": "train" + }, + { + "Input": "Darius drove 679 miles to visit his grandmother. Julia drove 998 miles to visit her grandmother. The total number of miles Darius and Julia drove is _____.", + "Output Program": [ + "darius_drove_miles=679\njulia_drove_miles=998\ntotal_drove=darius_drove_miles+julia_drove_miles\nprint(total_drove)" + ], + "Output Answer": [ + "1677" + ], + "split": "train" + }, + { + "Input": "There are 5 flowers and 3 bees. There are _____ fewer bees than flowers.", + "Output Program": [ + "a=5\nb=3\nprint(b-a)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Connie has 41 red markers and 64 blue markers. Altogether , She has _____ markers .", + "Output Program": [ + "a=41\nb=64\nprint(a+b)" + ], + "Output Answer": [ + "105" + ], + "split": "train" + }, + { + "Input": "On a hot day , Sam poured 1 bucket of water into a plastic wading pool . A few minutes later he added another 8.8 buckets. Sam poured _____ buckets of water into the pool .", + "Output Program": [ + "a=1\nb=8.8\nprint(a+b)" + ], + "Output Answer": [ + "9.8" + ], + "split": "train" + }, + { + "Input": "A restaurant served 6 cakes during lunch and 9 during dinner today. _____ cakes were served today .", + "Output Program": [ + "a=6\nb=9\nprint(a+b)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt impressed 2436 fans at the basketball game on Friday. If the fans were seated in equal groups on 3 sets of bleachers, there were _____ fans on each set.", + "Output Program": [ + "a=2436\nb=3\nprint(a/b)" + ], + "Output Answer": [ + "812" + ], + "split": "train" + }, + { + "Input": "Bryan has 50 skittles. Ben has 20 M&M\u2019s. Bryan has _____ more candies .", + "Output Program": [ + "a=50\nb=20\nprint(b-a)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Lemon heads come in packages of 6. Louis ate 54 Lemon Heads. Therefore , he ate _____ whole boxes .", + "Output Program": [ + "lemons_per_package=6\nate=54\nboxes=ate/lemons_per_package\nprint(boxes)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "A cell phone company has a total of 7422 customers across the world. If 723 of its customers live in the United States , _____ of its customers live in other countries .", + "Output Program": [ + "total_customer=7422\nus_customer=723\nother_customer=total_customer-us_customer\nprint(other_customer)" + ], + "Output Answer": [ + "6699" + ], + "split": "train" + }, + { + "Input": "Alec and his roommates ate 3.25 pints of ice cream on Friday night and 0.25 pint of ice cream on Saturday night. In all , they ate _____ pints .", + "Output Program": [ + "a=3.25\nb=0.25\nprint(a+b)" + ], + "Output Answer": [ + "3.5" + ], + "split": "train" + }, + { + "Input": "Jason's shelves hold 45 books each. Jason would need _____ shelves if Jason has 315 books.", + "Output Program": [ + "books_per_shelves=45\ntotal_books=315\nshelves_need=total_books/books_per_shelves\nprint(shelves_need)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "The town of Milburg has 5256 grown-ups and 2987 children. _____ people live in Milburg.", + "Output Program": [ + "a=5256\nb=2987\nprint(a+b)" + ], + "Output Answer": [ + "8243" + ], + "split": "train" + }, + { + "Input": "Mark sprinted 24 miles at 6 miles per hour. Mark sprinted for _____ hours .", + "Output Program": [ + "miles_per_hour=6\ntotal_miles=24\nhours=total_miles/miles_per_hour\nprint(hours)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Chloe was unboxing some of her old winter clothes. She found 4 boxes of clothing, and inside each box there were 2 scarves and 6 mittens. In total , Chloe had _____ pieces of winter clothing .", + "Output Program": [ + "total_boxes=4\ntotal_clother=6+2\ntotal_pices=total_boxes*total_clother\nprint(total_pices)\n" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "Wendy bought 4 new chairs and 4 new tables for her house. If she spent 6 minutes on each piece furniture putting it together, it took _____ minutes for her to finish.", + "Output Program": [ + "total_furniture=8\ntime_spent_for_each=6\ntotal_time=total_furniture*time_spent_for_each\nprint(total_time)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "Mrs. Sheridan has 11 cats. Mrs. Sheridan needs _____ more cats to have 43 cats.", + "Output Program": [ + "a=43\nb=11\nprint(b-a)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "Tom purchased a Batman game for $ 13.6 , and a Superman game for $ 5.06 . Tom already owns 2 games. Tom spent _____ on video games .", + "Output Program": [ + "a=13.6\nb=5.06\nprint(a+b)" + ], + "Output Answer": [ + "18.66" + ], + "split": "train" + }, + { + "Input": "Ezra drew a white line that was 7.67 inches long . Then he drew a blue line that was 3.33 inches long. The white line was _____ longer than the blue line .", + "Output Program": [ + "a=7.67\nb=3.3\nprint(b-a)" + ], + "Output Answer": [ + "4.33" + ], + "split": "train" + }, + { + "Input": "After paying 6 dollars for the pie , Mary has 52 dollars , her friend has 43 dollars. she had _____ dollars before buying the pie .", + "Output Program": [ + "a=52\nb=6\nprint(a+b)" + ], + "Output Answer": [ + "58" + ], + "split": "train" + }, + { + "Input": "White t-shirts can be purchased in packages of 6. If Mom buys 71 packages, she will have _____ white t-shirts .", + "Output Program": [ + "total_boxes=71\ntotal_clother=6\ntotal_pices=total_boxes*total_clother\nprint(total_pices)" + ], + "Output Answer": [ + "426" + ], + "split": "train" + }, + { + "Input": "There are 55 oranges in a box. Deborah has 11 oranges in a bag. Susan takes 35 oranges out of the box. There are _____ oranges left in the box.", + "Output Program": [ + "a=55\nb=35\nprint(b-a)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "22 boys went down the slide. 13 more boys went down the slide. _____ boys went down the slide.", + "Output Program": [ + "a=22\nb=13\nprint(a+b)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "Last year , egg producers in Douglas County produced 1416 eggs . This year , those same farms produced 4636 eggs. the farmers produced _____ more eggs this year .", + "Output Program": [ + "a=4636\nb=1416\nprint(b-a)" + ], + "Output Answer": [ + "3220" + ], + "split": "train" + }, + { + "Input": "Michael has some fish in his fish tank. Ben gave him 18 more fish. Now he has 49. So , he had _____ fishes to begin with.", + "Output Program": [ + "a=49\nb=18\nprint(b-a)" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": "Last year , 90171 people were born in a country , and 16320 people immigrated to it. _____ new people began living in the country last year .", + "Output Program": [ + "a=90171\nb=16320\nprint(a+b)" + ], + "Output Answer": [ + "106491" + ], + "split": "train" + }, + { + "Input": "At Billy's Restaurant a group with 2 adults and 5 children came in to eat. If each meal cost 3 dollars, the bill was _____ .", + "Output Program": [ + "total_person=7\neach_meal_cost=3\ntoal_bill=total_person*each_meal_cost\nprint(toal_bill)\n" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "A group of science students went on a field trip. They took 6 vans and 8 buses. There were 6 people in each van and 18 people in each bus. _____ people went on the field trip.", + "Output Program": [ + "van=6\nbus=8\npeople_in_van=6\npeople_in_bus=18\ntotal_people=(people_in_van*van)+(people_in_bus*bus)\nprint(total_people)" + ], + "Output Answer": [ + "180" + ], + "split": "train" + }, + { + "Input": "If Benjamin skated 80 kilometers at 10 kilometers per hour, Benjamin skating was skating for _____ hours .", + "Output Program": [ + "km_per_hour=10\ntotal_km=80\nhours=total_km/km_per_hour\nprint(hours)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "A construction company is repaving a damaged road . So far , they have repaved a total of 4938 inches of the road . Today , they repaved 805 inches of the road. Before today , they had repaved _____ inches of the road .", + "Output Program": [ + "total_inches=4938\ntoday_inches=805\nbefore_inches=total_inches-today_inches\nprint(before_inches)" + ], + "Output Answer": [ + "4133" + ], + "split": "train" + }, + { + "Input": "Tim had 50 cents. He paid 45 cents for a candy bar. He will get _____ cents as change .", + "Output Program": [ + "a=50\nb=45\nprint(b-a)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "6 students were sitting at each table in the lunchroom. There are 34 tables. There were _____ students sitting in the lunchroom.", + "Output Program": [ + "students_per_table=6\ntotal_table=34\nstudents=total_table*students_per_table\nprint(students)\n" + ], + "Output Answer": [ + "204" + ], + "split": "train" + }, + { + "Input": "There are 43 pencils in the drawer and 19 pencils on the desk. Dan placed 16 more pencils on the desk. In total , there are _____ pencils now .", + "Output Program": [ + "a=43\nb=19\nc=16\nprint(a+b+c)" + ], + "Output Answer": [ + "78" + ], + "split": "train" + }, + { + "Input": "Wendy earned 5 points for each bag of cans she recycled. If she had 11 bags, but didn't recycle 2 of them, she would have earned _____ points .", + "Output Program": [ + "points_per_bag=5\ntotal_bag=11\nnot_recycle=2\ntotal_points=(total_bag*points_per_bag)-(not_recycle*points_per_bag)\nprint(total_points)\n" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake . The recipe wants 8 cups of flour . She already put in 2 cups. She needs to add _____ more cups .", + "Output Program": [ + "a=8\nb=2\nprint(b-a)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "There were 6 roses in the vase . Mary cut some roses from her flower garden . There are now 16 roses in the vase. She had cut _____ roses .", + "Output Program": [ + "a=16\nb=6\nprint(b-a)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "You are reading a book with 120 pages. If you want to read the same number of pages each night, you would have to read _____ pages each night to finish in 10 days.", + "Output Program": [ + "total_pages=120\ncomplete_in_days=10\npages_per_night=total_pages/complete_in_days\nprint(pages_per_night)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt and her sister drove to a concert 78 miles away. They drove 32 miles and then stopped for gas. Her sister put 28 gallons of gas in the car. There were left with _____ miles to drive.", + "Output Program": [ + "a=78\nb=32\nremaining_miles=a-b\nprint(remaining_miles)" + ], + "Output Answer": [ + "46" + ], + "split": "train" + }, + { + "Input": "A vase can hold 6 flowers. If you had 7 carnations and 47 roses, you would need _____ vases to hold the flowers.", + "Output Program": [ + "roses=47\ncarnations=7\ntotal_flowers=roses+carnations\nvases=6\nneed_vases=total_flowers/vases\nprint(need_vases)\n" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "It takes 4 feet of cotton to make a tee-shirt. _____ tee-shirts can be made with 60 feet of material.", + "Output Program": [ + "a=60\nb=4\nprint(a/b)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "There are 4 walnut trees currently in the park . Park workers will plant 6 walnut trees today. There will be _____ walnut trees in the park when the workers are finished .", + "Output Program": [ + "a=4\nb=6\nprint(a+b)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Tessa has 4 apples. Anita gave her 5 more. She needs 10 apples to make a pie. She needs _____ more to make a pie.", + "Output Program": [ + "total_apples_need=10\ntessa_have=4\nanita_give=5\ntessa_need=total_apples_need-(tessa_have+anita_give)\nprint(tessa_need)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Joan found 6 seashells, and Jessica found 8 seashells on the beach. They found _____ seashells together .", + "Output Program": [ + "a=6\nb=8\nprint(a+b)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Sam found 35 seashells on the beach , he gave Joan 18 of the seashells. He has _____ many seashells now .", + "Output Program": [ + "a=35\nb=18\nprint(a-b)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Lewis saved checking on the grapevines for his last stop. He was told by 1 of the pickers that they fill 324 drums of grapes per day. _____ drums of grapes would be filled in 9 days.", + "Output Program": [ + "a=324\nb=9\nprint(a*b)" + ], + "Output Answer": [ + "2916" + ], + "split": "train" + }, + { + "Input": "The Sumata family took a 5.0-day vacation by car. Each day they drove 250 miles. They drove _____ miles in total .", + "Output Program": [ + "a=250\nb=5\nprint(a*b)" + ], + "Output Answer": [ + "1250" + ], + "split": "train" + }, + { + "Input": "219 people are going to the zoo, and there are 3 buses to take people. _____ would go in each bus if the same number go in each 1 and all of the people go to the zoo.", + "Output Program": [ + "a=219\nb=3\nprint(a/b)" + ], + "Output Answer": [ + "73" + ], + "split": "train" + }, + { + "Input": "Marcus has 210 baseball cards. He has 58 more than Carter. Carter has _____ baseball cards .", + "Output Program": [ + "marcus_has=210\nmarcus_has_morethan_carter=58\ncarter_has=marcus_has-marcus_has_morethan_carter\nprint(carter_has)" + ], + "Output Answer": [ + "152" + ], + "split": "train" + }, + { + "Input": "There are 14240 books in a library. They are arranged on shelves that hold 8 books each. There are _____ shelves in the library.", + "Output Program": [ + "books_per_shelves=8\ntotal_books=14240\nshelves_need=total_books/books_per_shelves\nprint(shelves_need)\n" + ], + "Output Answer": [ + "1780" + ], + "split": "train" + }, + { + "Input": "Adam has $5 to buy an airplane that costs $4.28. He will get _____ as change .", + "Output Program": [ + "a=5\nb=4.28\nprint(a-b)" + ], + "Output Answer": [ + "0.72" + ], + "split": "train" + }, + { + "Input": "There are 12 birds on the fence. 8 more birds land on the fence. There are _____ birds are on the fence.", + "Output Program": [ + "a=12\nb=8\nprint(a+b)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "There were 10 students riding on the school bus. At the first stop, 3 students got off of the bus. There are _____ students left on the bus.", + "Output Program": [ + "a=10\nb=3\nprint(a-b)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "This afternoon Craig left school , rode the bus 3.83 miles , and then walked 0.17 mile to get home. Craig rode _____ miles farther than he walk .", + "Output Program": [ + "total_miles=3.83\nwalked_miles=0.17\nride=total_miles-walked_miles\nprint(ride)" + ], + "Output Answer": [ + "3.67" + ], + "split": "train" + }, + { + "Input": "Maria picked 48 carrots from her garden. If she threw out 11 of them and then picked 15 more the next day, she would have _____ carrots in total.", + "Output Program": [ + "total_carrots=78\ntotal_carrots=48\nmore_pickd=15\ntotal=total_carrots+more_pickd\nthrew=11\nremaining=total-threw\nprint(remaining)" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": "Jesse has 21 bananas. If he shares them among 3 friends, each friend would get _____ bananas .", + "Output Program": [ + "a=21\nb=3\nprint(a/b)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Lucy has 212 fish. She needs to buy _____ more fish to have 280 fish.", + "Output Program": [ + "a=280\nb=212\nprint(a-b)" + ], + "Output Answer": [ + "68" + ], + "split": "train" + }, + { + "Input": "Sam had 98 pennies in his bank . He spent 93 of his pennies. He has _____ pennies now .", + "Output Program": [ + "a=98\nb=93\nprint(a-b)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "In Mr. Olsen 's mathematics class , 0.7 the students received A 's, and 0.2 received B 's. _____ fraction of the students received either A 's or B 's .", + "Output Program": [ + "a=0.7\nb=0.2\nprint(a+b)" + ], + "Output Answer": [ + "0.9" + ], + "split": "train" + }, + { + "Input": "Shawn has 13 blocks. Mildred has with 2 blocks. Mildred finds another 84. So , Mildred end up with _____ blocks .", + "Output Program": [ + "mildred_have_blocks=2\nfind_another=84\nendup_with_blocks=mildred_have_blocks+find_another\nprint(endup_with_blocks)" + ], + "Output Answer": [ + "86" + ], + "split": "train" + }, + { + "Input": "The school cafeteria ordered 42 red apples and 7 green apples for students lunches. But, if only 9 students wanted fruit, the cafeteria ended up with _____ extra fruit .", + "Output Program": [ + "red_apples=42\ngreen_apples=7\nstudents=9\nextra_fruits=(red_apples+green_apples)-students\nprint(extra_fruits)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": "A company painted some houses in Hancock County white and blue using a total of 6689 gallons of paint. If they used 660 gallons of white paint , the company used _____ gallons of blue paint .", + "Output Program": [ + "total_gallons=6689\nused_whilte_paints=660\nremain_blue_paints=total_gallons-used_whilte_paints\nprint(remain_blue_paints)\n" + ], + "Output Answer": [ + "6029" + ], + "split": "train" + }, + { + "Input": "A garden has 52 rows and 15 columns of bean plans. in all , there are _____ plants .", + "Output Program": [ + "rows=52\ncolumns=15\ntotal_plants=rows*columns\nprint(total_plants)" + ], + "Output Answer": [ + "780" + ], + "split": "train" + }, + { + "Input": "Maria had 14 bottles of water in her fridge. If she drank 8 of them and then bought 45 more, she would have _____ bottles .", + "Output Program": [ + "maria_have_bottles=14\ndrank=8\nnew_bought=45\ntotal_bottles=(maria_have_bottles-drank)+new_bought\nprint(total_bottles)" + ], + "Output Answer": [ + "51" + ], + "split": "train" + }, + { + "Input": "A tailor cut 0.75 inch off a skirt and 0.5 inch off a pair of pants. The tailor cut off the skirt _____ more than the pants .", + "Output Program": [ + "skirt_cut_inches=0.75\npair_of_paint_cut=0.5*2\nremain=pair_of_paint_cut-skirt_cut_inches\nprint(remain)" + ], + "Output Answer": [ + "0.25" + ], + "split": "train" + }, + { + "Input": "A petri dish originally contained 600 bacteria . A scientist let the bacteria grow, and now there are 8917 of them. There are _____ more bacteria now .", + "Output Program": [ + "bacteria_now=8917\norginally_contained=600\nmore_bacteria_now=bacteria_now-orginally_contained\nprint(more_bacteria_now)\n" + ], + "Output Answer": [ + "8317" + ], + "split": "train" + }, + { + "Input": "There were 150 book shelves. Each book shelf had 15 books. There were _____ books on the shelves.", + "Output Program": [ + "total_book_shelves=150\neach_book_shelves=15\ntotal_books=total_book_shelves*each_book_shelves\nprint(total_books)" + ], + "Output Answer": [ + "2250" + ], + "split": "train" + }, + { + "Input": "There is 0.17 cup of oil in Scarlett 's measuring cup. If Scarlett adds 0.67 cup more , the measuring cup will have _____ oil .", + "Output Program": [ + "a=0.17\nb=0.67\nprint(a+b)" + ], + "Output Answer": [ + "0.84" + ], + "split": "train" + }, + { + "Input": "Mike had 34 peaches left at his roadside fruit stand. He went to the orchard and picked more peaches to stock up the stand. There are now 86 peaches at the stand, he picked _____ .", + "Output Program": [ + "now_peaches=86\nleft_peaches=34\npicked_up_peaches=now_peaches-left_peaches\nprint(picked_up_peaches)" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": "Jesse\u2019s room is 12 feet long and 8 feet wide. She needs _____ feet of carpet to cover the whole floor.", + "Output Program": [ + "room_long=12\nroom_wide=8\ncover_floor=room_long*room_wide\nprint(cover_floor)\n" + ], + "Output Answer": [ + "96" + ], + "split": "train" + }, + { + "Input": "There were 7 friends playing a video game online when 2 more players joined the game. If each player had 7 lives, they had _____ live totally.", + "Output Program": [ + "total_friends=9\neach_player_lives=7\ntotal_lives=total_friends*each_player_lives\nprint(total_lives)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "Priya needs 54 cupcakes for a birthday party. She already has 15 chocolate cupcakes and 25 vanilla cupcakes. Priya should buy _____ more cupcakes.", + "Output Program": [ + "total_cupcake=54\nchocolate_cupcake=15\nvanilla_cupcake=25\nneed_cupcake=total_cupcake-(chocolate_cupcake+vanilla_cupcake)\nprint(need_cupcake)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Lisa rented 4 DVDs for $4.8. Each DVD costs _____ to rent.", + "Output Program": [ + "total_dvd=4\nrent_in_dollars=4.8\ncost_of_dvd=rent_in_dollars/total_dvd\nprint(cost_of_dvd)" + ], + "Output Answer": [ + "1.2" + ], + "split": "train" + }, + { + "Input": "When Jake had 1 cat , he needed to serve 0.5 can of cat food each day . Now that Jake has adopted a second cat , he needs to serve a total of 0.9 can each day. _____ extra food is needed to feed the second cat .", + "Output Program": [ + "total_need_serve=0.9\neach_day_serves=0.5\nextra_food_to_Serve=total_need_serve-each_day_serves\nprint(extra_food_to_Serve)" + ], + "Output Answer": [ + "0.4" + ], + "split": "train" + }, + { + "Input": "Willie starts with 36 stickers. He gives 7 to Emily. As a result , Willie end up with _____ stickers .", + "Output Program": [ + "a=36\nb=7\ntotal=a-b\nprint(total)\n" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "Anne weighs 67 pounds. Douglas weighs 52 pounds. Anne is _____ pounds heavier than Douglas.", + "Output Program": [ + "anne_weight=67\ndouglas_weight=52\nweight_diff=anne_weight-douglas_weight\nprint(weight_diff)\n" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "If Charles strolled 6 miles at 3 miles per hour, Charles was travelling for _____ hours .", + "Output Program": [ + "strolled_miles=6\nspeed_miles_hour=3\nhours=strolled_miles/speed_miles_hour\nprint(hours)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Sandy bought some toys. She bought a football for $9.14, and paid $6.81 on a baseball with a $20 bill. He received $_____ as change from the purchase.", + "Output Program": [ + "football_dollars=9.14\nbaseball_dollars=6.81\nbill_dollars=20\nchange=bill_dollars-(football_dollars+baseball_dollars)\nprint(change)" + ], + "Output Answer": [ + "4.05" + ], + "split": "train" + }, + { + "Input": "At lunch a waiter had 10 customers, and 5 of them didn't leave a tip. If he got $3 each from the ones who did tip, he earned $_____ .", + "Output Program": [ + "total_customer=10\ndid_not_give_tip=5\nremaining_customer=total_customer-did_not_give_tip\ndollar_per_customer=3\ntotal_earns=remaining_customer*dollar_per_customer\nprint(total_earns)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Last Saturday, Marie sold 425 magazines and 275 newspapers. The total number of reading materials she sold is _____ .", + "Output Program": [ + "magazines=425\nnewspaper=275\ntotal_reading=magazines+newspaper\nprint(total_reading)" + ], + "Output Answer": [ + "700" + ], + "split": "train" + }, + { + "Input": "A restaurant made 9 hamburgers and 4 hot dogs to serve during lunch . Only 3 hamburgers were actually served. So , _____ hamburgers were over .", + "Output Program": [ + "total_hamburger=9\nserves=3\nremaining=total_hamburger-serves\nprint(remaining)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Dan has 64 violet marbles , he gave Mary 14 of the marbles. He has _____ violet marbles now .", + "Output Program": [ + "a=64\nb=14\ntotal=a-b\nprint(total)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "Jason has 44 blue and 16 red marbles . Tom has 24 blue marbles. They have _____ blue marbles in all .", + "Output Program": [ + "jason_have=44\ntom_have=24\ntotal_marbels=jason_have+tom_have\nprint(total_marbels)" + ], + "Output Answer": [ + "68" + ], + "split": "train" + }, + { + "Input": "There were 14 kids on the soccer field. 22 kids decided to join in. Now there are _____ kids are on the soccer field.", + "Output Program": [ + "kids=14\nto_join=22\ntotal_kids=kids+to_join\nprint(total_kids)" + ], + "Output Answer": [ + "36" + ], + "split": "train" + }, + { + "Input": "A DVD book holds 126 DVDs. There are 81 DVDs already in the book. _____ more DVDs can be put in the book.", + "Output Program": [ + "dvdBook_capacity=126\nalready_in=81\ncan_put=dvdBook_capacity-already_in\nprint(can_put)" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "I walked 2 miles in 1 hour for Relay for Life. If I maintained this pace for the 8 hours I walk, I would walk _____ miles .", + "Output Program": [ + "miles_per_hour=2\nfor_eight_hour=8\ntotal_miles=miles_per_hour*for_eight_hour\nprint(total_miles)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "There are 3 calories in a candy bar. There are _____ calories in 5 candy bars .", + "Output Program": [ + "calory_per_candy=3\ncalory_for_five_candy=calory_per_candy*5\nprint(calory_for_five_candy)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Professor Ellison weighed 2 pieces of metal for an experiment . The piece of iron weighed 11.17 pounds, and the piece of aluminum weighed 0.83 pound. The piece of iron weighed _____ more than the piece of aluminum .", + "Output Program": [ + "weight_iron=11.17\naluminum_weight=0.83\ndifference=weight_iron-aluminum_weight\nprint(difference)" + ], + "Output Answer": [ + "10.33" + ], + "split": "train" + }, + { + "Input": "Mildred weighs 59 pounds. Carol weighs 9 pounds. Mildred is _____ heavier than Carol.", + "Output Program": [ + "Mildred_weight=59\ncarol_weight=9\ndifference=Mildred_weight-carol_weight\nprint(difference)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "Mrs. Heine is buying Valentine\u2019s Day treats for her 2 dogs. If she wants to buy them 3 heart biscuits each, so she needs to buy _____ biscuits.", + "Output Program": [ + "a=2\nb=3\ntotal=a*b\nprint(total)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "James ate 22 carrot sticks before dinner and 15 more after dinner. He ate _____ carrot sticks.", + "Output Program": [ + "before_dinner_carrot=22\nafter_dinner_carrot=15\ntotal_ate=before_dinner_carrot+after_dinner_carrot\nprint(total_ate)" + ], + "Output Answer": [ + "37" + ], + "split": "train" + }, + { + "Input": "Vincent bought 10 books about animals, 1 book about outer space, and 3 books about trains. Each book cost $16. Vincent spent $_____ on the books.", + "Output Program": [ + "book_animals=10\nouter_space_book=1\ntrains_book=3\ntotal_book=book_animals+outer_space_book+trains_book\ndollar_per_book=16\nprint(total_book*dollar_per_book)" + ], + "Output Answer": [ + "224" + ], + "split": "train" + }, + { + "Input": "Emily collects 63 cards. Emily's father gives Emily 7 more. Bruce has 13 apples. Emily has _____ cards .", + "Output Program": [ + "collected_card=63\ngive_by_father=7\ntotal_has=collected_card+give_by_father\nprint(total_has)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "Darnel sprinted 0.88 lap and then took a break by jogging 0.75 lap. Darnel sprinted _____ lap farther than jog .", + "Output Program": [ + "a=0.88\nb=0.75\ntotal=a-b\nprint(total)" + ], + "Output Answer": [ + "0.13" + ], + "split": "train" + }, + { + "Input": "I have 224 cents to buy candy. If each piece of bulk candy costs 8 cents, I can buy _____ gumdrops .", + "Output Program": [ + "a=224\nb=8\ntotal=a/b\nprint(total)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "Luke was putting his spare change into piles. He had 5 piles of quarters and 5 piles of dimes. If each pile had 3 coins in it, in total he had _____ coins .", + "Output Program": [ + "piles_of_quater=5\npiles_of_dimes=5\ntotal=piles_of_quater+piles_of_dimes\ncoins_per_piles=3\ntotal_coins=total*coins_per_piles\nprint(total_coins)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt bought 2 pizzas. Each pizza had 8 slices. So , she had _____ total slices of pizza .", + "Output Program": [ + "slices_per_pizza=8\ntotal_pizza=2\ntotal=slices_per_pizza*total_pizza\nprint(total)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "You have 7 balloons, and your friend has 5 balloons. Therefore , you have _____ more balloons than your friend.", + "Output Program": [ + "i_have=7\nfriend_have=5\ndifference=i_have-friend_have\nprint(difference)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Sara had 24 peaches and 37 pears at her fruit dish . She went to the orchard and picked peaches . There are now 61 peaches. She picked _____ peaches .", + "Output Program": [ + "peaches_then=24\npeaches_now=61\ndifference=peaches_now-peaches_then\nprint(difference)" + ], + "Output Answer": [ + "37" + ], + "split": "train" + }, + { + "Input": "Sam 's dog had puppies, and 8 had spots . He gave 2 to his friends . He now has 6 puppies. He had _____ puppies to start with .", + "Output Program": [ + "a=6\nb=2\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "You want to give your baseball cards to your 5 best friends. You have 455 baseball cards. Each would get _____ baseball cards , if you share them equally.", + "Output Program": [ + "friends=5\ntotal_cards=455\ntotal=total_cards/friends\nprint(total)" + ], + "Output Answer": [ + "91" + ], + "split": "train" + }, + { + "Input": "Jonah added 0.3 cup of yellow raisins and 0.4 cup of black raisins to a batch of trail mix. In all, Jonah added _____ cups of raisin .", + "Output Program": [ + "a=0.3\nb=0.4\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "0.7" + ], + "split": "train" + }, + { + "Input": "1 evening , a restaurant served a total of 0.5 loaf of wheat bread and 0.4 loaf of white bread. _____ loaves were served in all .", + "Output Program": [ + "a=0.5\nb=0.4\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "0.9" + ], + "split": "train" + }, + { + "Input": "The Ferris wheel in Paradise Park has 14 seats. Each seat can hold 6 people. At the same time _____ people can ride the Ferris wheel .", + "Output Program": [ + "total_seat=14\neach_seat_hold=14\ntotal=total_seat*each_seat_hold\nprint(total)" + ], + "Output Answer": [ + "84" + ], + "split": "train" + }, + { + "Input": "Melanie grew 139 turnips . Benny grew 113 turnips. They grew _____ turnips in all .", + "Output Program": [ + "melanie_grew=139\nbenny_grew=113\ntotal=melanie_grew+benny_grew\nprint(total)" + ], + "Output Answer": [ + "252" + ], + "split": "train" + }, + { + "Input": "Tom has 9 yellow balloons . Sara has 8 yellow balloons. They have _____ yellow balloons in total .", + "Output Program": [ + "Tom=9\nSara=8\ntotal=Tom+Sara\nprint(total)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Joan 's high school played 864 baseball games this year , 128 of the games were played at night . She attended 395 games. Joan missed _____ baseball games .", + "Output Program": [ + "total_game=864\nmissed=395\ntotal=total_game-missed\nprint(total)" + ], + "Output Answer": [ + "469" + ], + "split": "train" + }, + { + "Input": "There are 2 students in the class and 18 pencils. If the pencils are divided equally among the students, each student would get _____ pencils .", + "Output Program": [ + "pencils=18\nstuedent=2\ntotal=pencils/stuedent\nprint(total)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "At the fair there were 9 people in line for the bumper cars. If 6 of them got tired of waiting and left, and 3 more got in line, so there would be _____ people in line.", + "Output Program": [ + "total_people=9\nleft_people=6\nremian_people=total_people-left_people\npeople_more_in=3\ntotal_people_now=remian_people+people_more_in\nprint(total_people_now)\n" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt read 4 books. Each book had 17 chapters in it. Mrs. Hilt read _____ chapters .", + "Output Program": [ + "read_book=4\nchapter_in_each=17\ntotal_chapters=read_book*chapter_in_each\nprint(total_chapters)" + ], + "Output Answer": [ + "68" + ], + "split": "train" + }, + { + "Input": "Melissa has 88 bananas. She shares 4 with Joshua. So, Melissa will have _____ bananas .", + "Output Program": [ + "total_bananas=88\nshared=4\nremaining=total_bananas-shared\nprint(remaining)" + ], + "Output Answer": [ + "84" + ], + "split": "train" + }, + { + "Input": "I walk 1 mile every 15 minutes. I walked 3 miles. It took me _____ minutes .", + "Output Program": [ + "minutes_per_miles=15\nwalked_miles=3\nminutes=minutes_per_miles*walked_miles\nprint(minutes)" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "136 pieces of bubble gum will cost _____ if each piece costs 18 cents.", + "Output Program": [ + "total_pieces=136\ncents_per_pieces=18\ncost=total_pieces*cents_per_pieces\nprint(cost)" + ], + "Output Answer": [ + "2448" + ], + "split": "train" + }, + { + "Input": "Lillian collects 88 candies. Lillian's father gives Lillian 5 more. Lillian has _____ candies .", + "Output Program": [ + "candies_have=88\ndiven_more=5\ntotal=candies_have+diven_more\nprint(total)" + ], + "Output Answer": [ + "93" + ], + "split": "train" + }, + { + "Input": "At the hardware store , 0.25 the nails are size 2.0d , and 0.5 the nails are size 4.0d. _____ fraction of the nails are either size 2.0d or 4.0d .", + "Output Program": [ + "a=0.25\nb=0.5\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "Hayley had 25 meatballs on her plate. Kirsten stole some of her meatballs. Now she has 11 meatballs on her plate. Kirsten stole _____ meatballs .", + "Output Program": [ + "total_meatballs=25\nnow_meatballs=11\nstole=total_meatballs-now_meatballs\nprint(stole)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Carol and her mom were picking carrots from their garden. Carol picked 29 , and her mother picked 16. If only 38 of the carrots were good, they had _____ bad carrots .", + "Output Program": [ + "carol_picked_carots=29\nmother_picked_carots=16\ntotal_picked=carol_picked_carots+mother_picked_carots\ngood_carots=38\nbad_carots=total_picked-good_carots\nprint(bad_carots)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Johnny practiced for the track team and ran 3 laps per minute. It would take _____ minutes for Johnny to run 10 laps.", + "Output Program": [ + "laps_per_minuts=3\ntotal_laps=10\nminutes=total_laps/laps_per_minuts\nprint(minutes)" + ], + "Output Answer": [ + "3.33" + ], + "split": "train" + }, + { + "Input": "Kendra made punch for her friend 's birthday party . She used 0.25 gallon of grape juice , 0.38 gallon of cranberry juice , and 0.12 gallon of club soda. Kendra made _____ gallons of punch .", + "Output Program": [ + "gallon_grape_juice=0.25\ngallon_cranberry_juice=0.38\ngallon_club_soda=0.12\ntotal_gallons=gallon_grape_juice+gallon_cranberry_juice+gallon_club_soda\nprint(total_gallons)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "Kimberly has 5 Skittles. She buys 7 more. Later, Kimberly buys 18 oranges at the store. In all , Kimberly has _____ Skittles .", + "Output Program": [ + "has_skittles=5\nbuys_more=7\ntotal_skittles=has_skittles+buys_more\nprint(total_skittles)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Elise had $8. Then she saved $13 from her allowance and spent $2 on a comic book and $18 on a puzzle. Elise would be left with $_____ .", + "Output Program": [ + "had_dollars=8\nsaved_dollars=13\ntotal_have_now=had_dollars+saved_dollars\nspent_dollars_comic=2\nspent_dollars_puzzle=18\ntotal_spent=spent_dollars_comic+spent_dollars_puzzle\nleft=total_have_now-total_spent\nprint(left)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "For Halloween Faye scored 47 pieces of candy. She ate 25 pieces the first night, and then her sister gave her 40 more pieces. Faye has _____ pieces of candy now.", + "Output Program": [ + "total_candy=47\nate_pieces=25\nremain=total_candy-ate_pieces\ngave_more=40\ntotal_now=remain+gave_more\nprint(total_now)" + ], + "Output Answer": [ + "62" + ], + "split": "train" + }, + { + "Input": "Nina did a running drill to get in shape for soccer season . First , Nina ran 0.08 mile . Then she ran 0.08 mile and 0.67 mile. In total , Nina ran _____ miles .", + "Output Program": [ + "nina_ran_miles=0.08+0.08+0.67\nprint(nina_ran_miles)\n" + ], + "Output Answer": [ + "0.83" + ], + "split": "train" + }, + { + "Input": "A cake recipe requires 0.6 cup of sugar for the frosting and 0.2 cup of sugar for the cake. Altogether , that is _____ cups of sugar .", + "Output Program": [ + "sugar_for_frosting=0.6\nsugar_for_cake=0.2\ntotal_cup=sugar_for_frosting+sugar_for_cake\nprint(total_cup)" + ], + "Output Answer": [ + "0.8" + ], + "split": "train" + }, + { + "Input": "Mike had 33 quarters and 87 nickels in his bank . His dad borrowed 75 nickels from Mike. Now , He has _____ nickels .", + "Output Program": [ + "nikles=87\nborrowed=75\nnikels_now=nikles-borrowed\nprint(nikels_now)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "A ship is filled with 5973 tons of cargo . It stops in the Bahamas , where sailors load 8723 tons of cargo onboard. The ship holds _____ tons of cargo now .", + "Output Program": [ + "filled_now_tons=5973\nload_more=8723\ntotal_tons_now=filled_now_tons+load_more\nprint(total_tons_now)" + ], + "Output Answer": [ + "14696" + ], + "split": "train" + }, + { + "Input": "Irene just bought a new lamp for her bedside table . The old lamp was 1 foot tall, and the new lamp is 2.33 feet tall. The new lamp is _____ taller than the old lamp .", + "Output Program": [ + "new_lamp_tall=2.33\nold_lamp=1\ntaller_than=new_lamp_tall-old_lamp\nprint(taller_than)" + ], + "Output Answer": [ + "1.33" + ], + "split": "train" + }, + { + "Input": "There are 124 students making 3 stars each for the school wall. They will make _____ stars all together.", + "Output Program": [ + "students=124\neach_stars=3\ntotal_stars=students*each_stars\nprint(total_stars)" + ], + "Output Answer": [ + "372" + ], + "split": "train" + }, + { + "Input": "Nicole found an orange caterpillar and a green caterpillar in her backyard . The green caterpillar was 3 inches long, and the orange caterpillar was 1.17 inches long. The green caterpillar was _____ inches longer than the orange caterpillar .", + "Output Program": [ + "green_caterpillar_inches=3\norange_caterpillar_inches=1.17\nlonger_than=green_caterpillar_inches-orange_caterpillar_inches\nprint(longer_than)" + ], + "Output Answer": [ + "1.83" + ], + "split": "train" + }, + { + "Input": "Martha starts with 3 cards. She gets 76 more from Emily. Martha end with _____ cards .", + "Output Program": [ + "a=3\nb=76\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "79" + ], + "split": "train" + }, + { + "Input": "There are 84 leaves. There are 139 ladybugs on each leaf. In all , there are _____ ladybugs .", + "Output Program": [ + "leaves=84\nladybugs_each_leaf=139\ntotal_ladybugs=leaves*ladybugs_each_leaf\nprint(total_ladybugs)" + ], + "Output Answer": [ + "11676" + ], + "split": "train" + }, + { + "Input": "Mrs. Wong had 30 Valentines. She gave 8 Valentines to her children. She is left with _____ Valentines .", + "Output Program": [ + "valentines=30\ngave_valentines=8\nleft_valentines=valentines-gave_valentines\nprint(left_valentines)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "There are 64 pigs in the barn. Some more come to join them. Now there are 86 pigs. _____ pigs came to join them.", + "Output Program": [ + "pigs_than=64\npigs_now=86\njoined_pigs=pigs_now-pigs_than\nprint(joined_pigs)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Ned had to wash 9 short sleeve shirts and 21 long sleeve shirts before school. If he had only washed 29 of them by the time school started, he did not wash _____ of them.", + "Output Program": [ + "short_sleevs=9\nlong_sleevs=21\nhad_to_wash=29\nnot_washed=(short_sleevs+long_sleevs)-had_to_wash\nprint(not_washed)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "At the fair Adam bought 13 tickets. After riding the ferris wheel he had 4 tickets left. If each ticket cost 9 dollars, Adam spent _____ dollar riding the ferris wheel.", + "Output Program": [ + "total_tickets=13\ntickets_left=4\ntickets_spent=total_tickets-tickets_left\ndollars_per_tickets=9\nspent_dollars_on_wheel=dollars_per_tickets*tickets_spent\nprint(spent_dollars_on_wheel)" + ], + "Output Answer": [ + "81" + ], + "split": "train" + }, + { + "Input": "There are 4 children in the classroom, each student will get 2 pencils. The teacher would have to give out _____ pencils .", + "Output Program": [ + "a=4\nb=2\ntotal=a*b\nprint(total)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Tanner saved $17 in September. He saved $48 in October and $25 in November. Then Tanner spent $49 on a video game. Tanner is left with $_____ .", + "Output Program": [ + "saved_dollars_sep=17\nsaved_dollars_oct=48\nsaved_dollars_nov=25\ntotal_spent=saved_dollars_sep+saved_dollars_oct+saved_dollars_nov\nspent_video_game=49\nleft_dollars=total_spent-spent_video_game\nprint(left_dollars)" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Jessica had 8 quarters in her bank . Her sister borrowed 3 of her quarters. Jessica has _____ quarters now .", + "Output Program": [ + "a=8\nb=5\ntotal=a-b\nprint(total)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Tim 's cat had 6 kittens . He gave 3 to Jessica. Then Sara gave him 9 kittens. He has _____ kittens now .", + "Output Program": [ + "tim_kittans=6\ngave_to_jessica=3\nramin_to_tim=tim_kittans-gave_to_jessica\nsara_gives=9\ntotal_tim_have=sara_gives+ramin_to_tim\nprint(total_tim_have)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "Melanie had 7 dimes in her bank . She gave her dad 8 dimes, and her mother gave her 4 dimes. Melanie have _____ dimes now .", + "Output Program": [ + "had_dimes=7\ngaves_to_dad=8\nremain_dimes=gaves_to_dad-had_dimes\nmother_gives_her=4\nhave_dimes_now=mother_gives_her-remain_dimes\nprint(have_dimes_now)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "There are 9 oak trees currently in the park . Park workers are planting 2 new oak trees. When the workers are finished there will be _____ oak trees in the park .", + "Output Program": [ + "a=9\nb=2\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Joan has 8 orange balloons . Her friend gives her 2 more. Joan has _____ orange balloons now .", + "Output Program": [ + "a=8\nb=2\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "The first act included 5 clown mobiles, each stuffed with 28 clowns. There are _____ clowns inside all the clown mobiles combined.", + "Output Program": [ + "moniles_per_clawns=5\ntotal_clawns=28\ntotal=total_clawns*moniles_per_clawns\nprint(total)" + ], + "Output Answer": [ + "140" + ], + "split": "dev" + }, + { + "Input": "Mrs. Hilt is baking bread. She needs 5 cups of flour to bake 2 loaves of bread. She would need _____ cups of flour to make 1 loaf of bread.", + "Output Program": [ + "cups=5\nleaf_bread=2\ncups=cups/leaf_bread\nprint(cups)" + ], + "Output Answer": [ + "2.5" + ], + "split": "dev" + }, + { + "Input": "Sally had 27 Pokemon cards. Dan gave her 41 new Pokemon cards. Sally lost 20 Pokemon cards. Sally has _____ Pokemon cards now.", + "Output Program": [ + "had_cards=27\ngiver_her=41\ntotal_had=had_cards+giver_her\nlost=20\nleft_cards=total_had-lost\nprint(left_cards)" + ], + "Output Answer": [ + "48" + ], + "split": "dev" + }, + { + "Input": "Joan has 9 blue balloons but gained 2 more. Joan has _____ blue balloons now.", + "Output Program": [ + "has_balloons=9\ngained=2\ntotal=has_balloons/gained\nprint(total)" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Sam had 9 dimes in his bank. He gave 7 dimes to his dad. Sam has _____ dimes now.", + "Output Program": [ + "dimes_in_bank=9\ngave=2\ntotal=dimes_in_bank-gave\nprint(total)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "A restaurant baked 5 cakes during lunch and sold 6 during dinner today . The restaurant baked 3 cakes yesterday. _____ cakes are left .", + "Output Program": [ + "backed_cake_today=5\nbacked_cake_yesterday=3\ntotal_baked=backed_cake_today+backed_cake_yesterday\nsold_today_cake=6\ncake_left=total_baked-sold_today_cake\nprint(cake_left)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "A restaurant served 9 pizzas but 6 were returned. _____ pizzas were successfully served.", + "Output Program": [ + "total_pizzas=9\nreturned=6\nserved=total_pizzas-returned\nprint(served)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "Shiela has 6 neighbors who like to collect animal drawings. Shiela drew 54 animals on small pieces of paper. If she plans to give the same number of animal drawings to her neighbors, each of them would receive _____ .", + "Output Program": [ + "neighbors=6\nanimals=54\neach_neighbors_got=animals/neighbors\nprint(each_neighbors_got)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "Mary had planted 8 potatoes in the garden . The rabbits left the original potatoes but ate all except 3 of the newly grown potatoes. Mary has _____ potatoes now.", + "Output Program": [ + "a=8\nb=3\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Sally had 13 peaches at her roadside fruit dish. She went to the orchard and picked peaches to stock up. She picked 55 peaches. There are _____ peaches now.", + "Output Program": [ + "peaches_then=13\npeaches_now=55\ntotal=peaches_now+peaches_then\nprint(total)" + ], + "Output Answer": [ + "68" + ], + "split": "dev" + }, + { + "Input": "It has been tradition in Shiela\u2019s home to hang a sock above the fireplace for each member of the family. This year, she placed a cinnamon ball every day in the socks for 5 of her family members. She can do this for _____ days if she bought 50 cinnamon balls.", + "Output Program": [ + "a=50\nb=5\ntotal=a/b\nprint(total)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "Sandy grew 6 carrots. Sam took 3 carrots. Sandy is left with _____ carrots .", + "Output Program": [ + "grew_carrots=6\ntook_carrots=3\nleft=grew_carrots-took_carrots\nprint(left)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "Sally had 27 Pokemon cards. Dan has 41 new Pokemon cards. Sally bought 20 Pokemon cards. Sally has _____ more Pokemon cards than Dan has.", + "Output Program": [ + "had_cards=27\ndan_has=41\nsally_bought=20\ntotal_sally_has=sally_bought+had_cards\ndifference=total_sally_has-dan_has\nprint(difference)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "There are 6 walnut trees in the park. Park workers will remove 4 trees today. There will be _____ walnut trees in the park after the workers are finished.", + "Output Program": [ + "a=4\nb=2\ntotal=a-b\nprint(total)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Jessica had 8 quarters in her bank . Her sister gave her 3 quarters. Jessica has _____ quarters now .", + "Output Program": [ + "a=8\nb=3\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Lexie\u2019s younger brother helped pick up all the paper clips in Lexie\u2019s room. He was able to collect 81 paper clips. If he wants to distribute the paper clips in 9 boxes, each box would contain _____ paper clips .", + "Output Program": [ + "paper_clips=81\nclipes_per_box=9\ntotal=paper_clips/clipes_per_box\nprint(total)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "Sandy went to the mall to buy clothes . She has $ 13.99 money and she spent $ 12.14 on a shirt. She found $ 7.43 on her pocket . She spent rest of the money on jacket. Sandy spent _____ on jacket.", + "Output Program": [ + "total_money=13.99\nspent_on_shirt=12.14\nfound_in_jacket=7.43\nspen_on_jacket=total_money-spent_on_shirt+found_in_jacket\nprint(spen_on_jacket)" + ], + "Output Answer": [ + "9.28" + ], + "split": "dev" + }, + { + "Input": "Joan had 9 blue balloons , but Sally popped 5 of them. Jessica has 2 blue balloons. They have _____ blue balloons now .", + "Output Program": [ + "joan_balloons=9\njessica_ballons=2\ntotal_ballons=joan_balloons+jessica_ballons\nsally_popped=5\ntotal_have=total_ballons-sally_popped\nprint(total_have)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "Sara 's high school basketball team won 12 of their games . They were defeated during 4 games. They played _____ games .", + "Output Program": [ + "a=12\nb=4\ntotal=a+b\nprint(total)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": "1 stamp costs 34 cents. If the cost of each stamp remains the same, 4 stamps would cost _____ cents .", + "Output Program": [ + "cents_per_stamps=34\nstamps=4\ncost=cents_per_stamps*stamps\nprint(cost)" + ], + "Output Answer": [ + "136" + ], + "split": "dev" + }, + { + "Input": "Joan picked 37 oranges, and Sara sold 10 of them . Alyssa picked 30 pears. Joan is left with _____ oranges .", + "Output Program": [ + "joan_picked=37\nsara_sold=10\nremain=joan_picked-sara_sold\nprint(remain)" + ], + "Output Answer": [ + "27" + ], + "split": "dev" + }, + { + "Input": "Allen, Shiela\u2019s brother, likes to play with blocks. Shiela repainted Allen\u2019s old blocks in different colors. If Allen has 49 identical blocks, and there are 7 blocks for every color of paint used, Shiela used _____ colors.", + "Output Program": [ + "blocks=49\npaints=7\nused_colors=blocks/paints\nprint(used_colors)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Benny picked 2 apples and Dan picked 9 apples from the apple tree. Dan picked _____ more apples than Benny.", + "Output Program": [ + "benny_picked=2\ndan_picked=9\napple_diff=dan_picked-benny_picked\nprint(apple_diff)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "On Friday, 1250 people visited the zoo. 3 times as many people visited on Saturday than on Friday. So , _____ people visited the zoo on Saturday.", + "Output Program": [ + "friday_visited=1250\nthree_times_than_friday_visited=3\nsaturday_visited=friday_visited*three_times_than_friday_visited\nprint(saturday_visited)" + ], + "Output Answer": [ + "3750" + ], + "split": "dev" + }, + { + "Input": "Mary is baking a cake . She already put in 8 cups of flour . She added 2 cups more of flour. The recipe wants _____ cups of flour.", + "Output Program": [ + "already_cups=8\nadded=2\nrecipe_wants=already_cups+added\nprint(recipe_wants)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "The library is divided into different sections for different type of books. The science fiction section has 8 books. If each book has 478 pages, in total all the books have _____ pages .", + "Output Program": [ + "books=8\npeges_per_book=478\ntotal_pages=peges_per_book*books\nprint(total_pages)" + ], + "Output Answer": [ + "3824" + ], + "split": "dev" + }, + { + "Input": "In Haley\u2019s class, 5 are boys who love to play marbles. If Haley has 35 marbles, each of the boys would receive _____ marbles .", + "Output Program": [ + "boys=5\nmarbles=35\nmarbles_per_boy=marbles/boys\nprint(marbles_per_boy)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Alyssa had 7 puppies and gave 5 to her friends. She is left with _____ puppies .", + "Output Program": [ + "puppies_have=7\ngives=5\nleft=puppies_have-gives\nprint(left)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Sally sold 27 Pokemon cards. Dan gave her 41 new Pokemon cards. Sally bought 20 Pokemon cards. Sally has _____ Pokemon cards now.", + "Output Program": [ + "sally_sold=27\ngave_her=41\nbought=20\ntotal=gave_her+bought\nprint(total)" + ], + "Output Answer": [ + "34" + ], + "split": "dev" + }, + { + "Input": "Jason picked 46 pears and Keith picked 47 pears from the pear tree . Mike ate 12 of those pears. They are left with _____ pears .", + "Output Program": [ + "jason_picked=46\nkeith_picked=47\nmike_ate=12\ntotal=(jason_picked+keith_picked)-mike_ate\nprint(total)" + ], + "Output Answer": [ + "81" + ], + "split": "dev" + }, + { + "Input": "Sally grew 5 onions and Fred grew 9 onions. They gave Sara 4 onions from their garden. Sally and Fred have _____ onions now.", + "Output Program": [ + "sally_grew=5\nfred_frew=9\ngev_to_sara=4\ntotal=(sally_grew+fred_frew)-gev_to_sara\nprint(total)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "Sunday morning was spent for making wood carvings which can be sold as souvenir for tourists. They were placed in shelves that can contain 8 wood carvings at a time. If 56 wood carvings were displayed, _____ shelves were filled with carvings.", + "Output Program": [ + "wood_carving_contain=8\ntotal_wood=56\nfilled_with_carvings=total_wood/wood_carving_contain\nprint(filled_with_carvings)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Sam grew 4 watermelons and then grew 3 more watermelons. Sam has _____ watermelons .", + "Output Program": [ + "sam_grew=4\ngrew_extra=3\ntotal_grew=sam_grew+grew_extra\nprint(total_grew)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Sara had a basket of onions. She added 4 onions to the basket , Sally took 5 onions out , and Fred added another 9 onions. There are _____ more onions in the basket now than at the start .", + "Output Program": [ + "sara_added=4\nfred_added=9\nsally_took=5\ndifference=(sara_added+fred_added)-sally_took\nprint(difference)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "The junior ranger asked Christian to help him place 420 seedlings in packets. If every packet needs to contain 7 seeds, they need _____ packets .", + "Output Program": [ + "seedlings=420\nseed_per_packet=7\nneed_packets=seedlings/seed_per_packet\nprint(need_packets)" + ], + "Output Answer": [ + "60" + ], + "split": "dev" + }, + { + "Input": "Last week Tom had 74 dollars. He washed cars over the weekend and made another 86 dollars. Tom has _____ dollars now .", + "Output Program": [ + "last_week_earn=74\nin_this_week_earn=86\ntotal_now=last_week_earn+in_this_week_earn\nprint(total_now)" + ], + "Output Answer": [ + "160" + ], + "split": "dev" + }, + { + "Input": "Mike has 87 baseball cards. Sam gave Mike 13 more baseball cards. Mike has _____ baseball cards now.", + "Output Program": [ + "mike_has=87\nsam_gave=13\nmike_has_now=mike_has+sam_gave\nprint(mike_has_now)" + ], + "Output Answer": [ + "100" + ], + "split": "dev" + }, + { + "Input": "Joan has 9 blue balloons. Sally gave 5 blue balloons to Joan. Joan then gave 2 blue balloons to Jessica. Joan has _____ blue balloons now.", + "Output Program": [ + "joan_have=9\nsally_gives_joan=5\njoan_gave_jassica=2\njoan_has_now=(joan_have+sally_gives_joan)-joan_gave_jassica\nprint(joan_has_now)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "She counted her crayons and found out that she has 80 crayons which she will place in crayon boxes. Every box can contain 8 crayons. She needs _____ boxes .", + "Output Program": [ + "total_crayons=80\ncrayons_per_box=8\nneed_boxes=total_crayons/crayons_per_box\nprint(need_boxes)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "Jason picked 46 pears , and gave Keith 47 pears , and Mike gave 12 pears from the pear tree to Jason. Jason has _____ pears now .", + "Output Program": [ + "json_picked=46\nmike_gave_json=12\njson_gave_keith=47\njson_has_now=(json_picked+mike_gave_json)-json_gave_keith\nprint(json_has_now)" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "The Spurs basketball team has 22 players. Each player has 11 basketballs. they have _____ basketballs in all.", + "Output Program": [ + "players=22\neach_played_has=11\ntotal_basketball=players*each_played_has\nprint(total_basketball)" + ], + "Output Answer": [ + "242" + ], + "split": "dev" + }, + { + "Input": "The tallest player on the basketball team is 77.75 inches tall. This is 9.5 inches taller than the shortest player. the shortest player _____ inches tall .", + "Output Program": [ + "tallest_player_inches=77.75\ninches_diff_with_short=9.5\nshort_player_inches=tallest_player_inches-inches_diff_with_short\nprint(short_player_inches)" + ], + "Output Answer": [ + "68.25" + ], + "split": "dev" + }, + { + "Input": "Christian\u2019s mother prepared lemonade. Every pitcher of lemonade can serve 5 glasses. If she was able to serve 30 glasses of lemonade, she prepared _____ pitchers of lemonade .", + "Output Program": [ + "total_glass=30\ncan_server=5\nto_prepare=total_glass/can_server\nprint(to_prepare)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "Mike has 35 books in his library. He bought 56 more books at a yard sale over the weekend. Mike has _____ books now .", + "Output Program": [ + "has_books=35\nbought=56\nhave_book_now=has_books+bought\nprint(have_book_now)" + ], + "Output Answer": [ + "91" + ], + "split": "dev" + }, + { + "Input": "There are 7 crayons in the drawer. Mary put 3 more crayons in the drawer. There are _____ crayons in the drawer now.", + "Output Program": [ + "caryons_in_drawer=7\nput=3\ntotal=caryons_in_drawer+put\nprint(total)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "Dan has 64 violet marbles . Mary gave him 14 red marbles. He has _____ marbles now .", + "Output Program": [ + "violet_marbels=64\ngave_more_red_marbles=14\ntotal=violet_marbels+gave_more_red_marbles\nprint(total)" + ], + "Output Answer": [ + "78" + ], + "split": "dev" + }, + { + "Input": "There was a stack of 700 sheets of used paper. Lexie wants to place it in boxes for recycling. If every box can contain 100 sheets, Lexie needs _____ boxes .", + "Output Program": [ + "total_sheets=700\nsheets_per_box=100\nneed_box=total_sheets/sheets_per_box\nprint(need_box)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Joan 's cat had 8 kittens . She got 2 more from her friends. She has _____ kittens now .", + "Output Program": [ + "had_cat=8\ngot_more_cat=2\ntotal=had_cat+got_more_cat\nprint(total)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "There are 22 walnut trees currently in the park. Park workers will plant walnut trees today. When the workers are finished there will bee 55 more walnut trees in the park. There will be _____ walnut trees in the park after today.", + "Output Program": [ + "current_trees=22\nfinished_with=55\ntoday_have=current_trees+finished_with\nprint(today_have)" + ], + "Output Answer": [ + "77" + ], + "split": "dev" + }, + { + "Input": "There are 46 rulers in the drawer. Tim put 25 more rulers into the drawer. There are _____ rulers in the drawer now .", + "Output Program": [ + "ruler=46\nput_more=25\ntotal=ruler+put_more\nprint(total)" + ], + "Output Answer": [ + "71" + ], + "split": "dev" + }, + { + "Input": "Mrs. Hilt saw a rollercoaster. 7 students rode the rollercoaster every 5 minutes. _____ students rode the rollercoaster in 15 minutes.", + "Output Program": [ + "students_rode_per_minuts=5\nfor_15_minuts=15/students_rode_per_minuts\ntotal_student=7\nstudebts=total_student*for_15_minuts\nprint(studebts)" + ], + "Output Answer": [ + "21" + ], + "split": "dev" + }, + { + "Input": "The next act involved several jugglers. If each juggler is juggling 6 balls at a time, _____ balls are needed if there are 378 jugglers putting a show at the same time.", + "Output Program": [ + "juggling_balls_at_a_time=6\njugglers=378\ntotal_balls=jugglers*juggling_balls_at_a_time\nprint(total_balls)" + ], + "Output Answer": [ + "2268" + ], + "split": "dev" + }, + { + "Input": "Sam found 35 seashells on the beach. Joan found 18 seashells. They had _____ seashells all together.", + "Output Program": [ + "sam_found=35\njoan_found=18\nall_togather=sam_found+joan_found\nprint(all_togather)" + ], + "Output Answer": [ + "53" + ], + "split": "dev" + }, + { + "Input": "The farmer had 127 apples. The farmer gave 88 apples to his neighbor. the farmer has _____ apples now.", + "Output Program": [ + "total_apples=127\ngave_to_neighbour=88\napple_now=gave_to_neighbour-total_apples\nprint(apple_now)" + ], + "Output Answer": [ + "39" + ], + "split": "dev" + }, + { + "Input": "Sara has 31 red and 15 green balloons . She gave Sandy 24 red balloons. She is left with _____ red balloons .", + "Output Program": [ + "sara_has_red_balloons=31\ngave_to_sandy=24\nleft_balloons=sara_has_red_balloons-gave_to_sandy\nprint(left_balloons)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "9 of Hayley\u2019s closest friends like stickers. If she plans to give all of them an equal number of stickers, each would receive _____ if she has 72 stickers.", + "Output Program": [ + "closest_friends=9\ntotal_stickers=72\neach_recieve=total_stickers/closest_friends\nprint(each_recieve)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "Joan gathered 33 books to sell. She found 26 more to sell at her yard sale. She has _____ books for sale now.", + "Output Program": [ + "joan_gathered=33\nfound_more=26\ntotal_sale_now=joan_gathered+found_more\nprint(total_sale_now)" + ], + "Output Answer": [ + "59" + ], + "split": "dev" + }, + { + "Input": "Keith picked 47 pears, and Mike picked 12 pears from the pear tree . Keith gave away 46 pears. Keith and Mike are left with _____ pears .", + "Output Program": [ + "keith_picked=47\nmike_picked=12\nkeith_gave_away=46\nboth_left_with=(keith_picked+mike_picked)-keith_gave_away\nprint(both_left_with)" + ], + "Output Answer": [ + "13" + ], + "split": "dev" + }, + { + "Input": "Tom found 15 seashells, and Fred found 43 seashells on the beach . When they cleaned them , they discovered that 29 were cracked. Fred fond _____ more seashellsthan Tom .", + "Output Program": [ + "tom_found=15\nfred_found=43\nfred_found_more=fred_found-tom_found\nprint(fred_found_more)" + ], + "Output Answer": [ + "28" + ], + "split": "dev" + }, + { + "Input": "Fred went to 36 basketball games last year and 35 basketball games the year before. This year, he went to 11 less games than he did last year. Fred went to _____ basketball games this year.", + "Output Program": [ + "last_year_game=36\nless_than_last_year=11\nthis_year_game=last_year_game-less_than_last_year\nprint(this_year_game)" + ], + "Output Answer": [ + "25" + ], + "split": "dev" + }, + { + "Input": "Alyssa paid $12.08 for grapes and was refunded $9.85 for cherries. she spent _____ in total.", + "Output Program": [ + "paid_dollars=12.08\nrefunded_dollars=9.85\nspen_total=paid_dollars-refunded_dollars\nprint(spen_total)" + ], + "Output Answer": [ + "2.23" + ], + "split": "dev" + }, + { + "Input": "Jason went to the mall on Saturday to buy clothes . He spent $ 14.28 in total on shorts and a jacket . He spent $ 4.74 on the jacket. Jason spent _____ on the shorts .", + "Output Program": [ + "total_spent_dollars=14.28\nspent_on_jackets=4.74\nspent_on_shorts=total_spent_dollars-spent_on_jackets\nprint(spent_on_shorts)" + ], + "Output Answer": [ + "9.54" + ], + "split": "dev" + }, + { + "Input": "Sally had 760 quarters in her bank. She received 418 more quarters. She has _____ quarters now.", + "Output Program": [ + "quarters_in_bank=760\nreceived_more=418\nquarters_now=quarters_in_bank+received_more\nprint(quarters_now)" + ], + "Output Answer": [ + "1178" + ], + "split": "dev" + }, + { + "Input": "They entered the circus tent and saw that there are 4 sections for the audience. If each section can accommodate 246 people, the tent can accommodate _____ people in total.", + "Output Program": [ + "section=4\npeople_per_tent=246\npeople_total=people_per_tent*section\nprint(people_total)" + ], + "Output Answer": [ + "984" + ], + "split": "dev" + }, + { + "Input": "Christian\u2019s father and the senior ranger gathered firewood as they walked towards the lake in the park and brought with them sacks. If every sack can contain around 20 pieces of wood, they were able to fill _____ sacks if they gathered 80 pieces of wood.", + "Output Program": [ + "wood_per_sacks=20\ntotal_woods=80\nsacks_to_fill=total_woods/wood_per_sacks\nprint(sacks_to_fill)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Jason has 44 blue marbles and 16 red marbles. Tom has 24 blue marbles. Jason has _____ more blue marbles than Tom.", + "Output Program": [ + "jason_has_marbles=44\ntom_has_marbles=24\njason_have_more=jason_has_marbles-tom_has_marbles\nprint(jason_have_more)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "For the final act, the circus brought out dancing animals wearing crowns. If each crown is made with 7 different colored feathers, _____ feathers are needed for 934 crowns.", + "Output Program": [ + "crown_with_color=7\ntotal_crown=934\ntotal_feather_needed=total_crown*crown_with_color\nprint(total_feather_needed)" + ], + "Output Answer": [ + "6538" + ], + "split": "dev" + }, + { + "Input": "Joan found 70 seashells on the beach . Sam gave her 27 seashells. Joan has _____ seashells now .", + "Output Program": [ + "joan_found=70\nsam_gave=27\njoan_has_now=joan_found+sam_gave\nprint(joan_has_now)" + ], + "Output Answer": [ + "97" + ], + "split": "dev" + }, + { + "Input": "Jason had 9 Pokemon cards . He gave 4 to his friends. He has _____ Pokemon cards now.", + "Output Program": [ + "jason_had=9\ngave_to_friend=4\ncard_now=jason_had-gave_to_friend\nprint(card_now)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Sandy has 10 books, and Tim has 33 books. Benny lost 24 of their books. They have _____ books together .", + "Output Program": [ + "sandy_has_book=10\ntim_has_book=33\nbenny_lost_book=24\nbooks_together=(sandy_has_book+tim_has_book)-benny_lost_book\nprint(books_together)\n" + ], + "Output Answer": [ + "19" + ], + "split": "dev" + }, + { + "Input": "There were 6 roses in the vase. Mary cut some roses from her flower garden and put 16 more roses in the vase. There are _____ roses in the vase now.", + "Output Program": [ + "roses_in_vase=6\nadded_more=16\ntotal_now=added_more+roses_in_vase\nprint(total_now)" + ], + "Output Answer": [ + "22" + ], + "split": "dev" + }, + { + "Input": "There were 28 bales of hay in the barn . Tim stacked bales in the barn today . There were already 54 bales of hay in the barn. _____ bales are stored in the barn .", + "Output Program": [ + "bales=28\nalready_in_barn=54\nbales_are_stored=already_in_barn+bales\nprint(bales_are_stored)" + ], + "Output Answer": [ + "82" + ], + "split": "dev" + }, + { + "Input": "Sam had 98 pennies in his bank . He found 93 more pennies. He has _____ pennies now .", + "Output Program": [ + "sam_had_pennies=98\nmore_pannies=93\npannies_now=sam_had_pennies+more_pannies\nprint(pannies_now)" + ], + "Output Answer": [ + "191" + ], + "split": "dev" + }, + { + "Input": "Dan picked 9 limes and Sara gave him 4 limes. Dan has _____ limes now.", + "Output Program": [ + "picked_limes=9\nsara_gave=4\nlime_now=picked_limes+sara_gave\nprint(lime_now)" + ], + "Output Answer": [ + "13" + ], + "split": "dev" + }, + { + "Input": "Joan picked 43 apples from the orchard. Melanie gave Joan 27 more apples. Joan has _____ apples now.", + "Output Program": [ + "joan_picked_apples=43\nmelanie_gave_more=27\njoan_has_now=joan_picked_apples+melanie_gave_more\nprint(joan_has_now)" + ], + "Output Answer": [ + "70" + ], + "split": "dev" + }, + { + "Input": "Tony had $20. Tony paid $8 for a ticket to a baseball game. At the game, Tony bought a hot dog for $3. Tony had _____ money then .", + "Output Program": [ + "tony_had_dollars=20\nticket_baseball_dallers=8\nbought_hot_dog=3\ntony_had_money=tony_had_dollars-(ticket_baseball_dallers+bought_hot_dog)\nprint(tony_had_money)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "Joan found 79 seashells. Mike gave her 63 seashells. She has _____ in total.", + "Output Program": [ + "joan_picked_seashell=79\nmike_gave=63\ntotal=joan_picked_seashell+mike_gave\nprint(total)" + ], + "Output Answer": [ + "142" + ], + "split": "dev" + }, + { + "Input": "Sandy went to the mall to buy clothes. She spent 13.99 on shorts, 12.14 on a shirt, and received 7.43 for returning a jacket. _____ is the net amount of money that Sandy spent on clothes.", + "Output Program": [ + "spent_short=13.99\nspent_shirt=12.14\nget_on_jacket=7.43\ntotal_spent_clothes=(spent_short+spent_shirt)-get_on_jacket\nprint(total_spent_clothes)" + ], + "Output Answer": [ + "18.7" + ], + "split": "dev" + }, + { + "Input": "Jason planned to go to 11 football games this month and 17 games last month . His plans changed so he missed 16 of the games. In all , he attended _____ games .", + "Output Program": [ + "jason_this_month=11\nlast_month=17\nmissed_game=16\nattend_games=(jason_this_month+last_month)-missed_game\nprint(attend_games)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "David has 7 boxes of stuffed toy dogs. Each box has 4 dogs in it. There are _____ dogs in all.", + "Output Program": [ + "boxes=7\neach_box_has=4\ntotal_dogs=boxes*each_box_has\nprint(total_dogs)" + ], + "Output Answer": [ + "28" + ], + "split": "dev" + }, + { + "Input": "Lexie\u2019s mom gathered all her watercolor paintings and thought of placing an equal number of paintings in 4 rooms in the house. If Lexie has 32 watercolor paintings, _____ paintings will be placed in each room.", + "Output Program": [ + "rooms=4\nwatercolors=32\npainting=watercolors/rooms\nprint(painting)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "Benny has 24 books, and he gave Sandy 10 books. Tim has 33 books. They have _____ books together .", + "Output Program": [ + "banny_has=24\ngave=10\ntim_has=33\nbooks_together=(tim_has+banny_has)-gave\nprint(books_together)" + ], + "Output Answer": [ + "47" + ], + "split": "dev" + }, + { + "Input": "Tom found 7 seashells yesterday and found 4 more today. Tom found _____ seashells .", + "Output Program": [ + "found_seashell=7\nfound_more=4\ntotal_found=found_seashell+found_more\nprint(total_found)" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Melanie grew 139 turnips . Benny grew 113 turnips. Melanie grew _____ more turnips than Benny .", + "Output Program": [ + "melanie_grew=139\nbenny_grew=113\nmelanie_grew_more=melanie_grew-benny_grew\nprint(melanie_grew_more)" + ], + "Output Answer": [ + "26" + ], + "split": "dev" + }, + { + "Input": "Joan went to 4 football games this year . She went to a total of 9 games this year and last. Joan went to _____ football games last year .", + "Output Program": [ + "total_games=9\ngoing_this_year=4\nlast_year_attend=total_games-going_this_year\nprint(last_year_attend)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Mike joined his school's band. He bought a trumpet for $145.16, and sold a song book which was $5.84. The net amount that Mike spent at the music store is _____ .", + "Output Program": [ + "bought_trumpet=145.16\nsold_book=5.84\nnet_amount=bought_trumpet-sold_book\nprint(net_amount)" + ], + "Output Answer": [ + "139.32" + ], + "split": "dev" + }, + { + "Input": "The mini library also has a section for the classics. If Jack has a collection of 6 classic authors, with each author having 33 books, he has _____ books in the classics section.", + "Output Program": [ + "collection_authers=6\nbooks_per_author=33\ntotal_books=collection_authers*books_per_author\nprint(total_books)" + ], + "Output Answer": [ + "198" + ], + "split": "dev" + }, + { + "Input": "Chris has been saving his allowance to buy a new pair of soccer cleats and a ball. His grandmother gave Chris $25 for his birthday. His aunt and uncle gave Chris $20 , and his parents gave him $75. Now Chris had $279. Chris had $_____ before his birthday.", + "Output Program": [ + "chris_had_total=279\ngrandmother_gave=25\naunt_uncle_gave=20\nparents_gave=75\nbefore_birthday=chris_had_total-(grandmother_gave+aunt_uncle_gave+parents_gave)\nprint(before_birthday)" + ], + "Output Answer": [ + "159" + ], + "split": "dev" + }, + { + "Input": "A restaurant serves 6 cakes during lunch and 9 during dinner today. _____ more cakes are served during dinner than lunch.", + "Output Program": [ + "during_lunch=6\nduring_dinner=9\ndifference=during_dinner-during_lunch\nprint(difference)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "Jack has a section filled with short story booklets. If each booklet has 9 pages, and there are 49 booklets in the short story section, Jack would need to go through _____ pages if he plans to read them all.", + "Output Program": [ + "pages_per_booklet=9\nbooklets=49\npages=booklets*pages_per_booklet\nprint(pages)" + ], + "Output Answer": [ + "441" + ], + "split": "dev" + }, + { + "Input": "A restaurant made 9 hamburgers to serve during lunch . They quickly sold those and had to make 3 more. They made _____ hamburgers for lunch .", + "Output Program": [ + "made=9\nmore_made=3\ntotal_made=more_made+made\nprint(total_made)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "In 1 week, an airplane pilot flew 1134 miles on Tuesday and 1475 miles on Thursday. If the pilot flies the same number of miles 3 weeks in a row, the pilot flew _____ miles in all.", + "Output Program": [ + "on_tuesday_miles=1134\non_thursday_miles=1475\nweek=3\ntotal_flew=(on_tuesday_miles+on_thursday_miles)*week\nprint(total_flew)" + ], + "Output Answer": [ + "7827" + ], + "split": "dev" + }, + { + "Input": "A 12 ounce can of cranberry juice sells for 84 cents. The cost in cents per ounce is _____ .", + "Output Program": [ + "cents=84\ncan=12\ncost_per_cent=cents/can\nprint(cost_per_cent)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Melanie had 7 dimes in her bank . Her dad gave her 8 dimes, and she gave her mother 4 dimes. Melanie has _____ dimes now .", + "Output Program": [ + "dimes_in_bank=7\ndad_gave=8\nmother_gave=4\ntotal=(dimes_in_bank+dad_gave)-mother_gave\nprint(total)" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Jessica has $ 11.73 money and she spent $ 10.22 on a cat toy. She is left $ _____ .", + "Output Program": [ + "jessica_has_dollar=11.73\nspent_dollar=10.22\nshe_left=jessica_has_dollar-spent_dollar\nprint(she_left)" + ], + "Output Answer": [ + "1.51" + ], + "split": "dev" + }, + { + "Input": "Christian and the junior ranger brought a bag of 140 nails as they visited every station assigned to the junior ranger. If they left exactly 7 nails in every station they visited, Joline and the junior ranger visited _____ stations .", + "Output Program": [ + "total_nails=140\nnails_pers_station=7\nstation_visited=total_nails/nails_pers_station\nprint(station_visited)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "Jessica found 8 seashells. She gave Joan 6 seashells. Jessica is left with _____ seashells .", + "Output Program": [ + "jessica_found=8\ngave_to_joan=6\njessica_left=jessica_found-gave_to_joan\nprint(jessica_left)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "There are 14 rulers and 34 crayons in a drawer. Tim takes out 11 rulers from the drawer. There are _____ rulers in the drawer now .", + "Output Program": [ + "total_rural=14\ntimes_takes=11\nruler_in_drawer=total_rural-times_takes\nprint(ruler_in_drawer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "Jason has 676 Pokemon cards . Alyssa bought Jason 224 new Pokemon cards. Jason has _____ Pokemon cards now .", + "Output Program": [ + "jason_had_pokemon=676\nalyssa_bought=224\njason_has_now=jason_had_pokemon+alyssa_bought\nprint(jason_has_now)" + ], + "Output Answer": [ + "900" + ], + "split": "dev" + }, + { + "Input": "Melanie had 8 dimes in her bank. She gave 7 dimes to her dad. Her mother then gave her 4 dimes. Melanie have _____ dimes now .", + "Output Program": [ + "melaine_had=8\ngace_to_dad=7\nmother_gave=4\nprint(melaine_had-gace_to_dad+mother_gave)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "On a hot day , Sam poured 8.8 buckets of water into a plastic wading pool . A few minutes later he removed 1 buckets of water. In total , Sam poured _____ buckets of water into the pool .", + "Output Program": [ + "poured = 8.8\nremoved = 1\nwater = round(poured - removed, 2)\n\nprint(water)" + ], + "Output Answer": [ + "7.8" + ], + "split": "test" + }, + { + "Input": "Bryan had 8 precious stones in his collection which he sold to his friend from the jewelry store. If all the stones were sold at 1785 $, Bryan got _____ $ for every stone.", + "Output Program": [ + "amount = 1785\nstones = 8\nprice = round(amount/stones, 2)\n\nprint(price)" + ], + "Output Answer": [ + "223.13" + ], + "split": "test" + }, + { + "Input": "A construction company bought 8.11 tons of sand and sold 5.91 tons of gravel. In total , the company has _____ tons of material .", + "Output Program": [ + "bought = 8.11\nsold = 5.91\nremaining = round(bought - sold, 2)\n\nprint(remaining)" + ], + "Output Answer": [ + "2.2" + ], + "split": "test" + }, + { + "Input": "Jessica spent $10.22 on a cat toy, and a cage cost her $11.73. The cat toy costed _____ less than the cage .", + "Output Program": [ + "cat = 10.22\ncage = 11.73\ncat_cost = round(cage - cat, 2)\n\nprint(cat_cost)" + ], + "Output Answer": [ + "1.51" + ], + "split": "test" + }, + { + "Input": "The Richmond Tigers sold ticket last season. They sold 9570 tickets at the gate and then an additional 3867 tickets online. _____ tickets were sold in total.", + "Output Program": [ + "tickets = 9570\nadditional = 3867\ntotal = tickets + additional\n\nprint(total)" + ], + "Output Answer": [ + "13437" + ], + "split": "test" + }, + { + "Input": "The shortest player on the basketball team is 77.75 inches tall. This is 9.5 inches shorter than the tallest player. The tallest player is _____ inches.", + "Output Program": [ + "shortest = 77.75\ndifference = 9.5\ntallest = shortest + difference\n\nprint(tallest)" + ], + "Output Answer": [ + "87.25" + ], + "split": "test" + }, + { + "Input": "Mrs. Hilt had 15 cents. She sold a pencil for 11 cents. Now , she has _____ cents .", + "Output Program": [ + "amount = 15\nsold = 11\nfinal_amount = amount + sold\n\nprint(final_amount)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "On Saturday, Sara spent $10.62 each on 2 tickets to a movie theater. She also rented a movie for $13.95 and got a rebate for 1.59 from the rental store. In total , Sara spent _____ on movies, after rebates.", + "Output Program": [ + "tickets = 2*(10.62)\nrent = 13.95\nrebate = 1.59\namount = round(tickets+rent-rebate, 2)\n\nprint(amount)" + ], + "Output Answer": [ + "33.6" + ], + "split": "test" + }, + { + "Input": "Mike bought some toys. He bought marbles for $9.05, a football for $4.95, and received $6.52 for returning a baseball. _____ is the net amount Mike spent on toys.", + "Output Program": [ + "marbles = 9.05\nfootball = 4.95\nreceived = 6.52\namount = marbles+football-received\n\nprint(amount)" + ], + "Output Answer": [ + "7.48" + ], + "split": "test" + }, + { + "Input": "Mrs. Hilt gives 3 people $3.75 each. In total , she gave $_____ .", + "Output Program": [ + "dollar = 3.75\npeoples = 3\ntotal = dollar * peoples\n\nprint(total)" + ], + "Output Answer": [ + "11.25" + ], + "split": "test" + }, + { + "Input": "Ellen went to a garage sale to buy chairs. She spent 15 dollars. For each of the 12 chairs she bought Ellen spent _____ dollars .", + "Output Program": [ + "dollars = 15\nchair = 12\nspent = dollars/chair\n\nprint(spent)" + ], + "Output Answer": [ + "1.25" + ], + "split": "test" + }, + { + "Input": "A bucket contains 6.8 gallons of water. If Derek siphons out 3 gallons, there Wwill be _____ gallons of water in the bucket .", + "Output Program": [ + "gallons = 6.8\nsiphons = 3\nwater = gallons-siphons\n\nprint(water)" + ], + "Output Answer": [ + "3.8" + ], + "split": "test" + }, + { + "Input": "Priya owes 54 bill on her phone bill. She made some account changes that saved her 15 dollars on long distance, but costs 25 dollars for data. Her phone bill is _____ dollars now.", + "Output Program": [ + "bill = 54\nsaves = 15\ncost = 25\namount = bill - saves + cost\n\nprint(amount)" + ], + "Output Answer": [ + "64" + ], + "split": "test" + }, + { + "Input": "Lexie\u2019s younger brother helped pick up all the paper clips in Lexie\u2019s room. He was able to collect 81 paper clips. If he wants to get 9 times that amount , he would need _____ paper clips .", + "Output Program": [ + "def paper_clips(clips, times):\n return clips * times\n\nclips = 81\ntimes = 9\n\nprint(paper_clips(81, 9))" + ], + "Output Answer": [ + "729" + ], + "split": "test" + }, + { + "Input": "Edward started his own lawn mowing business. In the spring, he made 2 dollars mowing lawns, and in the summer, he made 27 dollars. If he also received 5 dollars for laying new turf, he ended up with _____ dollars .", + "Output Program": [ + "def lawns(dollars, mowing, new_turf):\n return dollars + mowing + new_turf\n\n\ndollars = 2\nmowing = 27\nnew_turf = 5\namount = lawns(dollars,mowing,new_turf)\n\nprint(amount)" + ], + "Output Answer": [ + "34" + ], + "split": "test" + }, + { + "Input": "Mary loves eating fruits, but not peaches. She paid $7.19 for berries but returned some peaches for $6.83. If she paid with a $20 bill, Mary received $ _____ as change .", + "Output Program": [ + "berries = 7.19\npeaches = 6.83\npaid = 20\namount = paid - (berries - peaches)\n\nprint(amount)" + ], + "Output Answer": [ + "19.64" + ], + "split": "test" + }, + { + "Input": "Adam had 5 dollars. At the store he had a refund of $2 on a new game. If he got another 5 dollars for his allowance, for that reason he must have _____ dollars now.", + "Output Program": [ + "dollars = 5\nrefund = 2\nallowance = 5\namount = dollars + refund + allowance\n\nprint(dollars+refund+allowance)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "Adam wants to buy a boat that costs $5 and an airplane that costs $4.28. He will be spending $_____ in total.", + "Output Program": [ + "boat = 5\nairplane = 4.28\namount = round(boat + airplane, 2)\n\nprint(amount)" + ], + "Output Answer": [ + "9.28" + ], + "split": "test" + }, + { + "Input": "An oil pipe in the sea broke. Before engineers started to fix the pipe, 6206 gallons of oil leaked into the water. While the engineers were fixing the pipe, another 2475 leaked. _____ total gallons of oil leaked.", + "Output Program": [ + "gallons = 6206\nleaked = 2475\ntotal = gallons + leaked\n\nprint(total)" + ], + "Output Answer": [ + "8681" + ], + "split": "test" + }, + { + "Input": "Paige scored 11 points in the dodgeball game, while the rest of the team scored 41 points. If there are 6 people total on the team, the average points per player is _____ .", + "Output Program": [ + "paige = 11\nteam = 41\npeoples = 6\naverage = round((paige + team) / peoples, 2)\n\nprint(average)" + ], + "Output Answer": [ + "8.67" + ], + "split": "test" + }, + { + "Input": "Tori is a school janitor. Last week, she picked up 1576 pieces of trash. This week she has picked up 344 pieces of trash. In total , she has picked _____ pieces of trash .", + "Output Program": [ + "def trash(last_week, this_week):\n return last_week + this_week\n\nlast_week = 1576\nthis_week = 344\ntotal = trash(last_week, this_week)\n\nprint(total)" + ], + "Output Answer": [ + "1920" + ], + "split": "test" + }, + { + "Input": "Nicole found an orange caterpillar and a green caterpillar in her backyard . The green caterpillar was 3 inches long, and the orange caterpillar was 1.17 inches long. The green caterpillar and the orange caterpillar were _____ inches in total .", + "Output Program": [ + "green = 3\norange = 1.17\ninches = green + orange\n\nprint(inches)" + ], + "Output Answer": [ + "4.17" + ], + "split": "test" + }, + { + "Input": "Elise had $8. Then she saved $13 from her allowance and bought a puzzle for $18 that got her a $2 discount. Elise is left with $_____ .", + "Output Program": [ + "dollars = 8\nsaved = 13\npizza = 18-2\namount = dollars + saved - pizza\n\nprint(amount)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "If I buy 80 gumdrops and each gumdrop costs 4 cents, So , I need _____ cents .", + "Output Program": [ + "gumdrops = 80\ncost = 4\ntotal = gumdrops * cost\n\nprint(total)" + ], + "Output Answer": [ + "320" + ], + "split": "test" + }, + { + "Input": "A ship has 8723 tons of cargo. At the Bahamas, sailors unloaded 5973 tons of cargo. _____ tons of cargo is left on the ship.", + "Output Program": [ + "cargo = 8723\nunloaded = 5973\nremaining = cargo - unloaded\n\nprint(remaining)" + ], + "Output Answer": [ + "2750" + ], + "split": "test" + }, + { + "Input": "Edward bought 79 tickets at the state fair. He spent 23 tickets at the 'dunk a clown' booth and decided to use the rest on rides. If each ticket cost 7 cents, Edward spent _____ cents on rides.", + "Output Program": [ + "tickets = 79\nbooth = 23\nrides = tickets - booth\ncost = 7\n\nspend = rides * cost\n\nprint(spend)" + ], + "Output Answer": [ + "392" + ], + "split": "test" + }, + { + "Input": "Shannon and her family use up a lot of strawberry and blueberry jelly , since they eat toast every morning . At the moment , they have 6310 grams of strawberry jelly. If they have 4518 grams of blueberry jelly , they have _____ grams of jelly in total.", + "Output Program": [ + "strawberry = 6310\nblueberry = 4518\njelly = strawberry + blueberry\n\nprint(jelly)" + ], + "Output Answer": [ + "10828" + ], + "split": "test" + }, + { + "Input": "Jason joined his school's band. He bought a flute for $142.46, a music stand for $8.89, and had a refund on a song book for $7. Jason spent $_____ at the music store.", + "Output Program": [ + "flute = 142.46\nstand = 8.89\nrefund = 7\nspent = round(flute + stand - refund,2)\n\nprint(spent)" + ], + "Output Answer": [ + "144.35" + ], + "split": "test" + }, + { + "Input": "Pamela bought 9.8 ounces of sugar , and she bought 5.2 ounces of it more. Mary has _____ ounces of sugar .", + "Output Program": [ + "bought = 9.8\nbought_again = 5.2\nounces = int(bought + bought_again)\n\nprint(ounces)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "If books came from all the 4 continents that Bryan had been into and he collected 122 books, _____ books came from each continent on average.", + "Output Program": [ + "continents = 4\nbooks = 122\naverage = books/continents\n\nprint(average)" + ], + "Output Answer": [ + "30.5" + ], + "split": "test" + }, + { + "Input": "Terrell hiked 8.2 miles on the weekend. On Sunday , he hiked 1.6 miles. Terrell hiked _____ miles on Saturday.", + "Output Program": [ + "weekend = 8.2\nsunday = 1.6\nsaturday = weekend - sunday\n\nprint(saturday)" + ], + "Output Answer": [ + "6.6" + ], + "split": "test" + }, + { + "Input": "Christian\u2019s father and the senior ranger gathered firewood as they walked towards the lake in the park and brought with them sacks. If every sack can contain around 20 pieces of wood, they were able to gather _____ pieces of firewood if they gathered 80 sacks.", + "Output Program": [ + "sacks = 80\nwoods = 20\ntotal = sacks * woods\n\nprint(total)" + ], + "Output Answer": [ + "1600" + ], + "split": "test" + }, + { + "Input": "Wendy ran 19.83 miles and walked 9.17 miles. Wendy traveled _____ miles .", + "Output Program": [ + "ran = 19.83\nwalk = 9.17\ntravelled = int(ran + walk)\n\nprint(travelled)" + ], + "Output Answer": [ + "29" + ], + "split": "test" + }, + { + "Input": "There were originally 20817 houses in Lincoln County. There was a housing boom and now there are 97741 houses in the county. _____ number of houses were built from the original to the present.", + "Output Program": [ + "originally = 20817\nnew = 97741\nbuilt = new - originally\n\nprint(built)" + ], + "Output Answer": [ + "76924" + ], + "split": "test" + }, + { + "Input": "Oliver had 33 dollars, and then was given 32 dollars from his mom. He found 4 dollars on the ground. As a result he should have _____ dollars .", + "Output Program": [ + "originally = 20817\nnew = 97741\nbuilt = new - originally\n\nprint(built)" + ], + "Output Answer": [ + "69" + ], + "split": "test" + }, + { + "Input": "Mike had 16 video games, and added 8 of them. If he wanted to sell the working games for $7 each, he could earn $_____.", + "Output Program": [ + "video_games = 16\nadded = 8\nprice = 7\nearn = (video_games + added) * price\n\nprint(earn)" + ], + "Output Answer": [ + "168" + ], + "split": "test" + }, + { + "Input": "After 6 days of harvesting, Lewis found they had 83 sacks of oranges. They harvest _____ sacks of oranges each day.", + "Output Program": [ + "harvest = 83\ndays = 6\naverage = round(harvest/6, 2)\n\nprint(average)" + ], + "Output Answer": [ + "13.83" + ], + "split": "test" + }, + { + "Input": "Edward started his own lawn mowing business. In the summer, he made 27 dollars. If he had to spend 5 dollars for gas and 2 dollars buying supplies, he ended up with _____ dollars .", + "Output Program": [ + "dollars = 27\ngas = 5\nsupplies = 2\nremaining = dollars - gas - supplies\n\nprint(remaining)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Shannon is making bracelets. If she needs to make 48 bracelets with 8 heart-shaped stones each, in all , she would need _____ stones .", + "Output Program": [ + "bracelets = 48\nstones = 8\nrequired = bracelets * stones\n\nprint(required)" + ], + "Output Answer": [ + "384" + ], + "split": "test" + }, + { + "Input": "Each year, salmon travel upstream, going from the ocean to the rivers where they were born. This year, 712261 returned to their rivers, 259378 of which were female salmon. _____ male salmon made the trip.", + "Output Program": [ + "def rivers(total, female):\n return total - female\n\ntotal = 712261\nfemale = 259378\nmale = rivers(total, female)\n\nprint(male)" + ], + "Output Answer": [ + "452883" + ], + "split": "test" + }, + { + "Input": "Last year at Newberg's airport, 14507 passengers landed. Unfortunately, 213 passengers landed late. In all, _____ passengers landed in Newberg on time last year.", + "Output Program": [ + "passengers = 14507\nlate = 213\non_time = passengers - late\n\nprint(on_time)" + ], + "Output Answer": [ + "14294" + ], + "split": "test" + }, + { + "Input": "Mrs. Hilt bought a hot dog for 50 cents. It took her 6 bites to eat her hot dog. So , each bite of hot dog costed _____ cents .", + "Output Program": [ + "cost = 50\nbites = 6\naverage = round(cost/bites, 2)\n\nprint(average)" + ], + "Output Answer": [ + "8.33" + ], + "split": "test" + }, + { + "Input": "Lisa rented 4 DVDs that each cost $4.8. Consequently , the rental bill was $_____ .", + "Output Program": [ + "dvd = 4\ncost = 4.8\ntotal = dvd * cost\n\nprint(total)" + ], + "Output Answer": [ + "19.2" + ], + "split": "test" + }, + { + "Input": "Dan spent $ 11.76 on a snake toy and a cage cost him $14.54. He spent $_____ more on the cage than the toy.", + "Output Program": [ + "snake = 11.76\ncage = 14.54\ncage_cost = round(cage - snake, 2)\n\nprint(cage_cost)" + ], + "Output Answer": [ + "2.78" + ], + "split": "test" + }, + { + "Input": "Vincent bought 10 books about animals, 1 book about outer space, and 3 books about trains. He paid $16 for all the books combined. The average price for 1 book was _____ .", + "Output Program": [ + "animal = 10\nspace = 1\ntrain = 3\ncost = 16\n\naverage = round(cost/(animal + space + train), 2)\n\nprint(average)" + ], + "Output Answer": [ + "1.14" + ], + "split": "test" + }, + { + "Input": "A bathing suit manufacturer has a supply of 14797 bathing suits in total. It has 4969 bathing suits for women. There are _____ bathing suits for men.", + "Output Program": [ + "def suit(total, womans):\n return total - womans\n\ntotal = 14797\nwomans = 4969\nmen = suit(total, womans)\n\nprint(men)" + ], + "Output Answer": [ + "9828" + ], + "split": "test" + }, + { + "Input": "Sandy went to the mall on Saturday to buy clothes. She paid $8.25 on a shirt with a $20 bill and was refunded $9.24 for another shirt. Sandy got $_____ in change.", + "Output Program": [ + "bill = 20\nspend = 8.25\nrefunded = 9.24\n\nremaining = round(bill - spend + refunded, 2)\n\nprint(remaining)" + ], + "Output Answer": [ + "20.99" + ], + "split": "test" + }, + { + "Input": "Milford Lake was originally blue because it only had 3263 algae plants. Now there are 809 more algae plants, and the lake has turned green. There are _____ algae plants in Milford Lake now.", + "Output Program": [ + "algae = 3263\nmore = 809\ntotal = algae + more\n\nprint(total)" + ], + "Output Answer": [ + "4072" + ], + "split": "test" + }, + { + "Input": "On Friday, Fred paid $5.92 each on 2 tickets to a movie theater. He also won $6.79 on raffle draw. Fred paid with a $20 bill. Fred would be left with $_____ .", + "Output Program": [ + "ticket = 5.92 * 2\nwon = 6.79\nbill = 20\nremaining = bill + won - ticket\n\nprint(remaining)" + ], + "Output Answer": [ + "14.95" + ], + "split": "test" + }, + { + "Input": "A tailor cut 0.75 inch off a skirt and 0.5 inch off a pair of pants. So, the tailor cut off _____ inch off the skirt and the pants combined.", + "Output Program": [ + "skirt = 0.75\npant = 0.5\ntotal = skirt + pant\n\nprint(total)" + ], + "Output Answer": [ + "1.25" + ], + "split": "test" + }, + { + "Input": "Dana made 9 dollars on Friday, 10 dollars on Saturday and 3 dollars on Sunday. If she worked for 13 hours over the 3 days, her hourly wage is _____ .", + "Output Program": [ + "friday = 9\nsaturday = 10\nsunday = 3\nhours = 13\naverage = round((friday + saturday + sunday)/hours, 2)\n\nprint(average)" + ], + "Output Answer": [ + "1.69" + ], + "split": "test" + }, + { + "Input": "A ship spilled 49952 tons of grain into water. 918 tons of grain were recovered. Therefore , _____ tons of grain was lost.", + "Output Program": [ + "tons = 49952\nrecovered = 918\nlost = tons - recovered\n\nprint(lost)" + ], + "Output Answer": [ + "49034" + ], + "split": "test" + }, + { + "Input": "Jason found 49 seashells and 48 starfish on the beach . He got 13 more seashells from Tim. Jason now has _____ seashells .", + "Output Program": [ + "found = 49\ngot = 13\nseashells = found + got\n\nprint(seashells)" + ], + "Output Answer": [ + "62" + ], + "split": "test" + }, + { + "Input": "9 friends were at a restaurant, and they were joined by 7 more people. Each person ate 4 wings. The total amount of wings consumed by the group is _____ .", + "Output Program": [ + "friends = 9\njoined = 7\nwings = 4\n\nconsumed = (friends + joined) * wings\n\nprint(consumed)" + ], + "Output Answer": [ + "64" + ], + "split": "test" + }, + { + "Input": "Lewis saved checking on the grapevines for his last stop. He was told by 1 of the pickers that they filled 324 drums of grapes over 9 days. They filled _____ drums of grapes each day.", + "Output Program": [ + "grapes = 324\ndays = 9\n\naverage = int(grapes/days)\n\nprint(average)" + ], + "Output Answer": [ + "36" + ], + "split": "test" + }, + { + "Input": "The farmer had 127 apples. His neighbor gave him 88 apples. The farmer has _____ apples now.", + "Output Program": [ + "apples = 127\nreceived = 88\ntotal = apples + received\n\nprint(total)" + ], + "Output Answer": [ + "215" + ], + "split": "test" + }, + { + "Input": "Anne weighs 67 pounds. Douglas weighs 52 pounds. Anne and Douglas weigh _____ pounds together.", + "Output Program": [ + "anne = 67\ndouglas = 52\n\ncombined = anne + douglas\n\nprint(combined)" + ], + "Output Answer": [ + "119" + ], + "split": "test" + }, + { + "Input": "Elise had $8. Then she saved $13 from her allowance and spent $2 on a comic book which she sold for $18. Elise is left with $_____ .", + "Output Program": [ + "dollar = 8\nsaved = 13\nbought = 2\nsell = 18\n\nremaining = dollar + saved - bought + sell\n\nprint(remaining)" + ], + "Output Answer": [ + "37" + ], + "split": "test" + }, + { + "Input": "Kevin had 2 watermelons. Together they weighted 9.91 pounds. He eats 1 of them that was 4.11 pounds. So the other 1 weighed _____ .", + "Output Program": [ + "def watermelon(total, ate):\n return total - ate\n\ntotal = 9.91\nate = 4.11\n\nweight = watermelon(total,ate)\n\nprint(weight)" + ], + "Output Answer": [ + "5.8" + ], + "split": "test" + }, + { + "Input": "Students at Arcadia schools are participating in a coat drive . 9437 coats have been collected so far. 6922 more coats will be collected this week. In total , _____ coats will be collected .", + "Output Program": [ + "coat = 9437\ncollected = 6922\n\ntotal = coat + collected\n\nprint(total)" + ], + "Output Answer": [ + "16359" + ], + "split": "test" + }, + { + "Input": "Alyssa had $12.08 on her charge card and spent $9.85 on produce. Her remaining balance is _____ .", + "Output Program": [ + "dollar = 12.08\nspent = 9.85\n\nremaining = round(dollar - spent, 2)\n\nprint(remaining)" + ], + "Output Answer": [ + "2.23" + ], + "split": "test" + }, + { + "Input": "Christian\u2019s mother prepared lemonade. Every pitcher of lemonade can serve 5 glasses. If she prepared 30 pitcher, _____ glasses of lemonade can be served.", + "Output Program": [ + "pitchers = 30\nglasses = 5\n\nlemonade = pitchers * glasses\n\nprint(lemonade)" + ], + "Output Answer": [ + "150" + ], + "split": "test" + }, + { + "Input": "There are 4 squirrels in a tree with 2 nuts. The total of squirrels and nuts is _____ .", + "Output Program": [ + "squirrels = 4\nnuts = 2\ntotal = squirrels + nuts\n\nprint(total)" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Irene went out and bought a new lamp for her bedside table. Her old lamp was 2.33 feet tall, the new 1 is 1 foot taller. The new lamp is _____ feet tall .", + "Output Program": [ + "old_lamp = 2.33\ndifference = 1\nnew_lamp = old_lamp + difference\n\nprint(new_lamp)" + ], + "Output Answer": [ + "3.33" + ], + "split": "test" + }, + { + "Input": "There are 5 flowers and 3 bees. The total of bees and flowers is _____ .", + "Output Program": [ + "flowers = 5\nbees = 3\n\ntotal = flowers + bees\n\nprint(total)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Dan grew 9 onions, but 2 were rotten. Mike grew 4 fine onions . They worked for 6 days on the farm. They grew _____ fine onions in total.", + "Output Program": [ + "dan = 9\nrotten = 2\nmike = 4\n\ntotal = dan - rotten + mike\n\nprint(total)" + ], + "Output Answer": [ + "11" + ], + "split": "test" + }, + { + "Input": "Bryan's job is to put away books. If he is supposed to stock 9 shelves evenly with 56 books, he will put _____ books on each shelf.", + "Output Program": [ + "books = 56\nshelves = 9\n\naverage = round(books/shelves, 2)\n\nprint(average)" + ], + "Output Answer": [ + "6.22" + ], + "split": "test" + }, + { + "Input": "Last year , egg producers in Douglas County produced 1416 eggs . This year , those same farms produced 4636 eggs. the farm produced _____ eggs in both years .", + "Output Program": [ + "def farm(last, current):\n return last + current\n\nlast_year = 1416\ncurrent_year = 4636\n\ntotal = farm(last_year, current_year)\n\nprint(total)" + ], + "Output Answer": [ + "6052" + ], + "split": "test" + }, + { + "Input": "Edward was selling his old games. He started out with 35 but sold 19 of them. If he sells the rest for 8 $ each, he would make _____ $ .", + "Output Program": [ + "total = 35\nsold = 19\nremaining = total - sold\ncost = 8\n\nearn = remaining * cost\n\nprint(earn)" + ], + "Output Answer": [ + "128" + ], + "split": "test" + }, + { + "Input": "In 1 week, an airplane pilot flew 1134 miles on Tuesday and 1475 miles on Thursday. He doesn't fly on Friday. The pilot has an average of _____ miles a day over a 3-day period.", + "Output Program": [ + "tuesday = 1134\nthursday = 1475\n\ndays = 3\n\naverage = round((tuesday + thursday)/3, 2)\n\nprint(average)" + ], + "Output Answer": [ + "869.67" + ], + "split": "test" + }, + { + "Input": "Gordon bought 3.42 pounds of fruit for a class party . The rest of the class brought 2.2 pounds of the fruit. In total , _____ pounds of fruit was bought .", + "Output Program": [ + "gordon = 3.42\nrest_class = 2.2\n\ntotal = gordon + rest_class\n\nprint(total)" + ], + "Output Answer": [ + "5.62" + ], + "split": "test" + }, + { + "Input": "Each of farmer Cunningham 's 6048 lambs is either black or white . There are 193 mixed ones. In total , Farmer Cunningham has _____ lambs .", + "Output Program": [ + "def lambs(bw, mixed):\n return bw + mixed\n\nbw = 6048\nmixed = 193\n\ntotal = lambs(bw, mixed)\n\nprint(total)" + ], + "Output Answer": [ + "6241" + ], + "split": "test" + }, + { + "Input": "Melanie is selling 4 gumballs for 8 cents. 1 gumball would be _____ cents .", + "Output Program": [ + "cents = 8\ngumballs = 4\n\naverage = int(cents/gumballs)\n\nprint(average)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "We spent $6 on 2 bottle caps. Therefoer , each bottle cap costs $_____ .", + "Output Program": [ + "spent = 6\ncaps = 2\n\naverage = int(spent/caps)\n\nprint(average)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Joan joined her school 's band . She bought a trumpet for $ 149.16 , a music tool for $ 9.98 , and she returned a song book for store credit which was $ 4.14 to the store . Joan found $ 8.65 in her pocket. Joan spent $ _____ at the music store .", + "Output Program": [ + "trumpet = 149.16\ntool = 9.98\ncredit = 4.14\n\nremaining = int(trumpet + tool - credit)\n\nprint(remaining)" + ], + "Output Answer": [ + "155" + ], + "split": "test" + }, + { + "Input": "Keith returned a CD player for $ 136.01 , spent $ 139.38 on speakers , and $ 112.46 on new tires . He wanted 3 CD 's for $ 6.16 , but did n't buy them. In total , he spent $ _____", + "Output Program": [ + "returned = 136.01\nspent_speaker = 139.38\nspent_tire = 112.46\n\ntotal_spent = round(spent_speaker + spent_tire - returned, 2)\n\nprint(total_spent)" + ], + "Output Answer": [ + "115.83" + ], + "split": "test" + }, + { + "Input": "Mr. Guzman bought 4 boxes of doughnuts. If each box contains 48 doughnuts, so he would have _____ doughnuts .", + "Output Program": [ + "boxes = 4\ndoughnuts = 48\n\ntotal = boxes * doughnuts\n\nprint(total)" + ], + "Output Answer": [ + "192" + ], + "split": "test" + }, + { + "Input": "Your class is having a pizza party. You buy 5 pizzas. There are 4 students. Each student should get _____ of the pizza if split evenly.", + "Output Program": [ + "pizzas = 5\nstudents = 4\nsplits = pizzas/students\n\nprint(splits)" + ], + "Output Answer": [ + "1.25" + ], + "split": "test" + }, + { + "Input": "Vincent bought 10 books about animals and 1 book about outer space. He sold 3 books about trains. Each book had a price of $16. Vincent spent $_____ at the bookstore.", + "Output Program": [ + "bought = 10\nbought += 1\nsold = 3\nprice = 16\n\nspent = (16 * bought) - (16 * sold)\n\nprint(spent)" + ], + "Output Answer": [ + "128" + ], + "split": "test" + }, + { + "Input": "Kaleb saved 21 dollars, and got 15 dollars for his allowance. He gambles it and wins 6 times the amount. Now , he has _____ dollars .", + "Output Program": [ + "saved = 21\ngot = 15\ngambled = 6\n\namount = (saved + got) * gambled\n\nprint(amount)" + ], + "Output Answer": [ + "216" + ], + "split": "test" + }, + { + "Input": "A toy store had 4 giant stuffed bears in stock when they got another shipment with 10 bears in it. 1 bear costs $7. You need $_____ if you want to buy all the bears in stock.", + "Output Program": [ + "bears = 4\nshipped = 10\ncost = 7\n\namount = (bears + shipped) * cost\n\nprint(amount)" + ], + "Output Answer": [ + "98" + ], + "split": "test" + }, + { + "Input": "Joan bought toy cars for $ 14.88, a skateboard for $ 4.88, and returned some toy trucks for $ 5.86. She spent $ 14.55 on pants. In total, Joan spent $ _____ on toys.", + "Output Program": [ + "bought = 14.88\nbought += 4.88\nreturned = 5.86\n\nspent = round(bought - returned,2 )\n\nprint(spent)" + ], + "Output Answer": [ + "13.9" + ], + "split": "test" + }, + { + "Input": "An orchard has sold 9792 pounds of fresh fruit and 3513 pounds of frozen fruit. In total , they sold _____ pounds of fruit .", + "Output Program": [ + "fresh = 9792\nfrozen = 3513\n\nsold = fresh + frozen\n\nprint(sold)" + ], + "Output Answer": [ + "13305" + ], + "split": "test" + }, + { + "Input": "Mrs. Hilt bought a yoyo and whistle for 24 cents and a whistle costs 14 cents. She spent _____ on the yoyo .", + "Output Program": [ + "total = 24\nwhistle = 14\nyoyo = total - whistle\n\nprint(yoyo)" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Dalton wants to buy a jump rope that costs $7, a board game that costs $12, and a playground ball that costs $4. He also needs to pay $6 to his sister and $13 to his uncle.Dalton needs $_____ to buy the jump rope, the game, and the ball and repay his relatives.", + "Output Program": [ + "rope = 7\ngame = 12\nball = 4\nrepay = 6 + 13 \n\namount = rope + game + ball + repay\n\nprint(amount)" + ], + "Output Answer": [ + "42" + ], + "split": "test" + }, + { + "Input": "Seth bought 20 cartons of ice cream and 2 cartons of yogurt. Each carton of ice cream cost $6, and each carton of yogurt cost $1. Seth spent $_____ on ice cream and yogurt.", + "Output Program": [ + "rope = 7\ngame = 12\nball = 4\nrepay = 6 + 13 \n\namount = rope + game + ball + repay\n\nprint(amount)" + ], + "Output Answer": [ + "122" + ], + "split": "test" + }, + { + "Input": "April's discount flowers was having a sale where her sales for the day was 7 dollars. If April started with 9 roses and had 4 roses left, she sold each rose for _____ dollars .", + "Output Program": [ + "total = 9\nleft = 4\ncost = 7\n\ndollars = cost/(total-left)\n\nprint(dollars)" + ], + "Output Answer": [ + "1.4" + ], + "split": "test" + }, + { + "Input": "Betty bought 88 bracelets, each of which featured 8 pink flower stones. so , in total she had _____ pink flower stones.", + "Output Program": [ + "bracelts = 88\nstones = 8\n\ntotal = bracelts * stones\n\nprint(total)" + ], + "Output Answer": [ + "704" + ], + "split": "test" + }, + { + "Input": "George was working as a sacker at a grocery store. On Monday he worked 7 hours, and on Tuesday he worked 3 hours. If George received 5 dollars for working those 2 days, therefore George made _____ dollars for working an hour.", + "Output Program": [ + "monday = 7\ntuesday = 3\ndollars = 5\n\nhour = dollars/(monday + tuesday)\n\nprint(hour)" + ], + "Output Answer": [ + "0.5" + ], + "split": "test" + }, + { + "Input": "Mrs. Hilt bought 2 ice cream cones for 99 cents. Each ice cream cone costs _____ cents .", + "Output Program": [ + "cents = 99\nnumber = 2\none_cone = cents/number\n\nprint(one_cone)" + ], + "Output Answer": [ + "49.5" + ], + "split": "test" + }, + { + "Input": "To fill an order , the factory dyed 61921 yards of silk, of which 49500 yards were pink. For that order , it dyed _____ yards of silk other than pink .", + "Output Program": [ + "silk = 61921\npink = 49500\n\nunique_silk = silk - pink\n\nprint(unique_silk)" + ], + "Output Answer": [ + "12421" + ], + "split": "test" + }, + { + "Input": "There are 5106 books in the Oak Grove school libraries. They donated 1986 to the public ibrary. There are _____ books left in the school libraries .", + "Output Program": [ + "total = 5106\ndonated = 1986\n\nleft = total - donated\n\nprint(left)" + ], + "Output Answer": [ + "3120" + ], + "split": "test" + }, + { + "Input": "A dust storm sweeps across the prairie. It covers 64535 acres of the prairie in the dust, and leaves 522 acres untouched. There are _____ acres in the prarie.", + "Output Program": [ + "dust = 64535\nuntouched = 522\n\nacres = dust + untouched\n\nprint(acres)" + ], + "Output Answer": [ + "65057" + ], + "split": "test" + }, + { + "Input": "Dalton wants to buy a jump rope that costs $7, a board game that costs $12, and a playground ball that costs $4. He has saved $6 from his allowance, and his uncle asked him for $13. Dalton needs $_____ more to buy the jump rope, the game, and the ball.", + "Output Program": [ + "rope = 7\ngame = 12\nball = 4\nsaved = 6\nrepay = 13\n\nneeds = rope + game + ball - saved + repay\n\nprint(needs)\n" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": "9 of Hayley\u2019s closest friends like stickers. If she plans to give all 72 stickers each, she needs to have _____ stickers .", + "Output Program": [ + "friends = 9\nstickers = 72\n\nneeds = friends * stickers\n\nprint(needs)" + ], + "Output Answer": [ + "648" + ], + "split": "test" + }, + { + "Input": "Wendy was playing a video game where she scores 5 points for each treasure she finds. If she found 4 treasures on the first level but lost 3 treasures on the second level, her score would be _____ .", + "Output Program": [ + "point = 5\nfound = 4\nlost = 3\n\nscore = point * (found - lost)\n\nprint(score)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "Paula's had $13 and her aunt gave her 109 to spend on clothes at the mall. She bought 2 shirts that cost $11 each. Paula is left with $_____ to buy more clothes.", + "Output Program": [ + "dollar = 13\nreceived = 109\nspend = 11*2\n\nleft = dollar + received - spend\n\nprint(left)" + ], + "Output Answer": [ + "100" + ], + "split": "test" + }, + { + "Input": "Sandy went to the mall to buy clothes. She spend $12.14 on a shirt and $7.43 on a jacket and she also received $13.99 back when she returned her shorts. Sandy spent _____ on clothes.", + "Output Program": [ + "dollar = 13\nreceived = 109\nspend = 11*2\n\nleft = dollar + received - spend\n\nprint(left)" + ], + "Output Answer": [ + "5.58" + ], + "split": "test" + }, + { + "Input": "At the beach , Miki and her sister both built sandcastles and then measured their heights . Miki 's sandcastle was 0.83 foot tall, and her sister 's was 0.5 foot tall. Total height of both sandcastles is _____ .", + "Output Program": [ + "miki = 0.83\nsister = 0.5\n\nheight = miki + sister\n\nprint(height)" + ], + "Output Answer": [ + "1.33" + ], + "split": "test" + }, + { + "Input": "At a company picnic 23 managers and 7 employees decided to start a game of volleyball. If they split into 6 teams, there would be _____ people on each team.", + "Output Program": [ + "manager=23\nemployees=7\nteams=6\npeople_on_each_team=manager+employees/teams\nprint(people_on_each_team)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "If Lawrence walked 4 kilometers at 3 kilometers per hour, Lawrence was walking for _____ hours .", + "Output Program": [ + "speed=3\nkilometers=4\nlawrence_walk=kilometers/speed\nprint(lawrence_walk)\n" + ], + "Output Answer": [ + "1.33" + ], + "split": "train" + }, + { + "Input": "Uncle Dave bought 143 ice cream sandwiches. If he wants to give them to his 11 hungry nieces, each niece would get _____ ice cream sandwiches .", + "Output Program": [ + "icecream_sandwiches=143\nnieces=11\neach_niece_get=icecream_sandwiches/nieces\nprint(each_niece_get)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Paul had 42 strawberries in his basket. He picked 78 more strawberries. He had _____ strawberries then.", + "Output Program": [ + "strawberries_in_basket=42\npicked_more=78\ntotal_strawberries=strawberries_in_basket+picked_more\nprint(total_strawberries)" + ], + "Output Answer": [ + "120" + ], + "split": "train" + }, + { + "Input": "George has 2 boxes of blocks. Each box holds 6 blocks, and there are 5 boxes in a case. George would have _____ blocks .", + "Output Program": [ + "geroge_box=2\nbox_holds_blocks=6\ngeroge_total_box=box_holds_blocks*geroge_box\nprint(geroge_total_box)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Mike picked 7 apples , Nancy picked 3 apples , and Keith picked 6 apples and 4 pears , at the farm. In total , _____ apples were picked .", + "Output Program": [ + "mike_apples=7\nnancy_apples=3\nkeith_apples=6\ntotal_apples=mike_apples+nancy_apples+keith_apples\nprint(total_apples)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Mika had 20 stickers. She bought 26 stickers from a store in the mall and got 20 stickers for her birthday. Then Mika gave 6 of the stickers to her sister and used 58 to decorate a greeting card. Mike is left with _____ stickers .", + "Output Program": [ + "mika_sticers=20\nbuy_from_mall=26\ngot_form_birtday=20\nmik_gave_sister=6\nused_for_decorat=58\nmike_remaning=mika_sticers+buy_from_mall+got_form_birtday-mik_gave_sister-used_for_decorat\nprint(mike_remaning)\n" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Dalton wants to buy a jump rope that costs $7, a board game that costs $12, and a playground ball that costs $4. He has saved $6 from his allowance, and his uncle gave him $13. Dalton needs $_____ more to buy the jump rope, the game, and the ball.", + "Output Program": [ + "jump_rope_cost=7\nbord_game_cost=12\nplayorund_cost=4\ndalton_total_have=19\ndalton_needs=jump_rope_cost+bord_game_cost+playorund_cost-dalton_total_have\nprint(dalton_needs)\n" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Lucy went to the grocery store. She bought 12 packs of cookies and 16 packs of noodles. In all , she baught _____ packs of groceries .", + "Output Program": [ + "cookies=12\nnoodels=16\ntotal_packs=cookies+noodels\nprint(total_packs)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "Your class had a pizza party. 0.38 of a pizza was left over, and 0.5 of another pizza was left over. You put them both into 1 box. Altogether , you have _____ pizza .", + "Output Program": [ + "pizza_left=0.38\nother_pizza_left=0.5\ntotal_pizza=pizza_left+other_pizza_left\nprint(total_pizza)\n" + ], + "Output Answer": [ + "0.88" + ], + "split": "train" + }, + { + "Input": "Fred earns $12.5 an hour cleaning houses. If he works for 8 hours, he will make $_____ .", + "Output Program": [ + "earn=12.5\nwork_hours=8\ntotal_make=earn*work_hours\nprint(total_make)\n" + ], + "Output Answer": [ + "100" + ], + "split": "train" + }, + { + "Input": "Each chocolate bar in a box cost $3. If a box had 7 bars total, and Olivia sold all but 4 bars, she made $_____.", + "Output Program": [ + "chocolate_box_cost=3\nin_box=7\nsold=3\nolivia_total_made=chocolate_box_cost*sold\nprint(olivia_total_made)\n" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Melanie is selling 4 gumballs for 8 cents each. Melanie get _____ cents from selling the gumballs.", + "Output Program": [ + "gumballs=4\nprice=8\nmealanie_get=gumballs*price\nprint(mealanie_get)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "Kenji and his classmates placed colored blocks on a scale during a science lab . The yellow block weighed 0.6 pounds, and the green block weighed 0.4 pounds. The yellow block weighed _____ more than the green block .", + "Output Program": [ + "yellow_block=0.6\ngreen_block=0.4\nyellow_block_weighed_more=yellow_block-green_block\nprint(yellow_block_weighed_more)" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "A dust storm sweeps across the prairie . It covers 64535 acres of the prairie in dust , but leaves 522 acres untouched. The prairie cover _____ acres .", + "Output Program": [ + "acres=64535\nleaves_acres=522\ncover_acres=acres+leaves_acres\nprint(cover_acres)" + ], + "Output Answer": [ + "64013" + ], + "split": "train" + }, + { + "Input": "Joe had 50 toy cars. If he gets 12 more cars, then he will have _____ cars .", + "Output Program": [ + "toycar=50\nget_more=12\ntotal_car=toycar+get_more\nprint(total_car)\n" + ], + "Output Answer": [ + "62" + ], + "split": "train" + }, + { + "Input": "Benny worked 3 hours for 6 days. In total , he worked for _____ hours .", + "Output Program": [ + "work_hour=3\ndays=6\ntotal_worked=work_hour*days\nprint(total_worked)\n" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Jason joined his school's band. He bought a flute for $142.46, a music stand for $8.89, and a song book for $7. Jason spent $_____ at the music store.", + "Output Program": [ + "flute=142.46\nmusic_stand=8.89\nsong_book=7\ntotal_spent=flute+music_stand+song_book\nprint(total_spent)\n" + ], + "Output Answer": [ + "158.35" + ], + "split": "train" + }, + { + "Input": "Ronald went to the store 2 times last month. He buys 10 bananas each time he goes to the store. Ronald bought _____ bananas last month.", + "Output Program": [ + "ronald_visit_store=2\nbananas=10\nronald_bought_bananas=ronald_visit_store*bananas\nprint(ronald_bought_bananas)\n" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "We ordered 21 pizzas. Each pizza has 8 slices. Altogether , there are _____ slices of pizza .", + "Output Program": [ + "ordered=21\neach_pizza_slices=8\ntotal_slices_of_pizza=ordered*each_pizza_slices\nprint(total_slices_of_pizza)" + ], + "Output Answer": [ + "168" + ], + "split": "train" + }, + { + "Input": "You would have _____ cookies if you had 37 bags of cookies with 19 cookies in each bag.", + "Output Program": [ + "bags=37\neach_bag_cookies=19\ntotal_cookies=bags*each_bag_cookies\nprint(total_cookies)\n" + ], + "Output Answer": [ + "703" + ], + "split": "train" + }, + { + "Input": "Vince's bus ride to school is 0.62 of a mile, and Zachary's bus ride is 0.5 of a mile. Vince's bus ride is _____ mile longer than Zachary's.", + "Output Program": [ + "vince_bus_ride_to_school=0.62\nzachary_bus_ride=0.5\nvince_bus_ride=vince_bus_ride_to_school-zachary_bus_ride\nprint(vince_bus_ride)\n" + ], + "Output Answer": [ + "0.13" + ], + "split": "train" + }, + { + "Input": "Sara grew 4 onions , Sally grew 5 onions , and Fred grew 9 onions. _____ onions were grew in all .", + "Output Program": [ + "Sara_onion=4\nsally_onion=5\nfred_onion=9\ntotal_onion=Sara_onion+sally_onion+fred_onion\nprint(total_onion)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "A construction company bought 5.91 tons of gravel and 8.11 tons of sand. In all , the company baught _____ tons of material .", + "Output Program": [ + "gravel=5.91\nsand=8.11\ntotal_material=gravel+sand\nprint(total_material)" + ], + "Output Answer": [ + "14.02" + ], + "split": "train" + }, + { + "Input": "Heather weighs 87 pounds. Emily weighs 9 pounds. Elizabeth weighs 8 pounds. Heather is _____ heavier than Emily.", + "Output Program": [ + "heather_weight=87\nemily_weight=9\nheather_heavier=heather_weight-emily_weight\nprint(heather_heavier)" + ], + "Output Answer": [ + "78" + ], + "split": "train" + }, + { + "Input": "Julian is writing a comic book. His story has 143 frames in all. If he wants to put exactly 11 frames on each page, he would have _____ pages .", + "Output Program": [ + "story_frames=143\nframes_on_each_page=11\npages=story_frames/frames_on_each_page\nprint(pages)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "A worksheet had 4 problems on it. If a teacher had 9 worksheets to grade and had already graded 5 of them, she has to grade _____ more problems .", + "Output Program": [ + "problems=4\nworksheet=9\nalredy_graded=5\nreamaning=4\ngrad_more_problems=problems*reamaning\nprint(grad_more_problems)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Mike has 45 dollars in 5 dollar bills. He has _____ 5 dollars bills .", + "Output Program": [ + "bills=5\namount=45\nmike_bills=amount/bills\nprint(mike_bills)\n" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "A chef needs to cook 16 potatoes. He has already cooked 7. If each potato takes 5 minutes to cook, it will take him _____ minutes to cook the rest.", + "Output Program": [ + "potato_takes_minutes=5\npotatos=16\nreamaning=9\ncook_minutes=reamaning*potato_takes_minutes\nprint(cook_minutes)\n" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "I have 80 cents to buy candy. If each gumdrop costs 4 cents, I can buy _____ gumdrops .", + "Output Program": [ + "price=4\ncent_to_buy_candy=80\nbuy_gumdrops=cent_to_buy_candy/price\nprint(buy_gumdrops)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "April's discount flowers was having a sale where each flower was 3 dollars. If Emily bought 2 roses and 2 daisies, she spent _____ .", + "Output Program": [ + "price=3\nroses=2\ndaisies=2\ntotal_spent=price*roses*daisies\nprint(total_spent)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "There were 105 parents in the program and 698 pupils, too. There were _____ people present in the program.", + "Output Program": [ + "parents=105\npupils=698\ntotal_present=parents+pupils\nprint(total_present)\n" + ], + "Output Answer": [ + "803" + ], + "split": "train" + }, + { + "Input": "Paul was collecting cans for recycling. On Saturday he filled 6 bags up, and on Sunday he filled 3 more bags. If each bag had 8 cans in it, he picked up _____ cans in total.", + "Output Program": [ + "cans_saturday=6\ncans_sunday=3\neach_bag_can=8\ntotal_cans=cans_saturday*each_bag_can+cans_sunday*each_bag_can\nprint(total_cans)\n" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": "Tom was at the beach for 5 days and found 7 seashells every day. Tom fond _____ seashells during the beach trip .", + "Output Program": [ + "beach_day=5\nfound_seashells=7\ntotal_seachells=found_seashells*beach_day\nprint(total_seachells)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "Nell collects baseball cards. She had 304 cards. She gave some of her cards to Jeff and now has 276 cards left. Nell gave _____ cards to Jeff.", + "Output Program": [ + "nell_has=304\njeff_cards=276\nnell_gave_cards=nell_has-jeff_cards\nprint(nell_gave_cards)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "Mark's father gave him $85. Mark bought 10 books, each of which cost $5. Mark is left with $_____ .", + "Output Program": [ + "father_gave=85\nbooks=10\nprice=5\nbook_price=50\nmark_left=father_gave-book_price\nprint(mark_left)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "Sara's high school played 12 basketball games this year . The team won most of their games . They were defeated during 4 games. They won _____ number of games .", + "Output Program": [ + "basketball_games=12\nlost_match=4\nwon_game=basketball_games-lost_match\nprint(won_game)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "While making desserts for a bake sale , Victor used 0.62 scoop of brown sugar as well as 0.25 scoop of white sugar. Victor used _____ more brown sugar .", + "Output Program": [ + "scoop_borwn_sugar=0.62\nwhite_sugar=0.25\nmore_brown_sugar=scoop_borwn_sugar-white_sugar\n\nprint(more_brown_sugar)\n\n" + ], + "Output Answer": [ + "0.38" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt has 50 cents. A pencil costs 5 cents. She can buy _____ money with the money she has .", + "Output Program": [ + "hilt_has=50\ncost=5\nbuy_pencil=hilt_has/cost\nprint(buy_pencil)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "There are 35 bottle caps in Beverly's bottle cap collection. If the bottle caps are organized into 7 groups, each group would have _____ bottle caps .", + "Output Program": [ + "bottle_cap=35\ngroups=7\ngroups_bottle_caps=bottle_cap/groups\nprint(groups_bottle_caps)\n" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Victor and his friend were buying trick decks from the magic shop for 8 dollars each. If Victor bought 6 decks and his friend bought 2 decks, they spent _____ .", + "Output Program": [ + "trick_decks=8\ntotal_decks=8\ntotal_spent=trick_decks*total_decks\nprint(total_spent)\n" + ], + "Output Answer": [ + "64" + ], + "split": "train" + }, + { + "Input": "Sean has 45 whistles. He has 32 more whistles than Charles. Charles has _____ whistles .", + "Output Program": [ + "whistels=45\nmore_whistles_than_chrles=32\nchrles_has=whistels-more_whistles_than_chrles\nprint(chrles_has)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Jason went to 11 football games this month . He went to 17 games last month , and plans to go to 16 games next month. He will attend _____ many games in all .", + "Output Program": [ + "this_month=11\nlast_month=17\nnext_month=16\nattend_games=this_month+last_month+next_month\nprint(attend_games)\n" + ], + "Output Answer": [ + "44" + ], + "split": "train" + }, + { + "Input": "There are 2 maple trees and 5 popular trees currently in the park . Park workers will plant 9 maple trees today. The park will have _____ maple trees when the workers are finished .", + "Output Program": [ + "maple_tree=2\nplant_maple=9\ntotal_maple=plant_maple+maple_tree\nprint(total_maple)\n" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Kelly 's chemistry textbook weighs 7.12 pounds, and her geometry textbook weighs 0.62 pound. The chemistry textbook weigh _____ pounds more than the geometry textbook .", + "Output Program": [ + "chemistry=7.12\ngeometry=0.62\nchemistry_weigh=chemistry-geometry\nprint(chemistry_weigh)\n" + ], + "Output Answer": [ + "6.5" + ], + "split": "train" + }, + { + "Input": "Bob\u2019s car gets 10 kilometers per gallon. He can drive for _____ kilometers on 10 gallons of gas.", + "Output Program": [ + "per_gallon=10\ngallongas=10\ndrive=per_gallon*gallongas\nprint(drive)\n" + ], + "Output Answer": [ + "100" + ], + "split": "train" + }, + { + "Input": "A group of 4 friends went into a restaurant. The chef already had 9 chicken wings cooked but cooked 7 more for the group. If they each got the same amount each person would get _____ chicken wings .", + "Output Program": [ + "frineds=4\ntotal_chicken_wings=16\neach_person_get=total_chicken_wings/frineds\nprint(each_person_get)\n" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "In Shannon 's apartment complex , 0.17 the apartments are one-bedroom apartments, and 0.33 are two-bedroom apartments. _____ fraction of the apartments are either 1 - or two-bedroom apartments .", + "Output Program": [ + "bedroom_apartment=0.17\ntwo_bed_room_aprtment=0.33\naprtmets=bedroom_apartment+two_bed_room_aprtment\nprint(aprtmets)\n" + ], + "Output Answer": [ + "0.5" + ], + "split": "train" + }, + { + "Input": "My car gets 20 miles per gallon of gas. If Grandma\u2019s house is 100 miles away, it would take _____ gallons of gas to get to her house.", + "Output Program": [ + "gas=20\nhouse=100\nneed_gas=house/gas\nprint(need_gas)\n" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "George was working as a sacker at a grocery store where he made 5 dollars an hour. On Monday he worked 7 hours, and on Tuesday he worked 2 hours. George made _____ in those 2 days.", + "Output Program": [ + "one_hour=5\nmonday=7\ntuesday=2\nmadein_two_days=monday*one_hour+tuesday*one_hour\nprint(madein_two_days)\n" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "Marie starts with 95 erasers. She loses 42. So , Marie end up with _____ erasers .", + "Output Program": [ + "erasers=95\nloses=42\nend_up=erasers-loses\nprint(end_up)" + ], + "Output Answer": [ + "53" + ], + "split": "train" + }, + { + "Input": "A box of books weighs 42 pounds. Each book weighs 3 pounds. There are _____ books in the box.", + "Output Program": [ + "weight=42\nbook_weight=3\ntotal_books_in_box=weight/book_weight\nprint(total_books_in_box)\n" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "There are 390 students at a school. If each classroom holds 30 students, _____ classrooms are needed at the school.", + "Output Program": [ + "students=390\nclassroom=30\ntotal_needed_classroom=students/classroom\nprint(total_needed_classroom)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Alyssa bought some toys . She bought a football for $ 5.71 , and spent $ 6.59 on marbles. In total , Alyssa spent _____ on toys .", + "Output Program": [ + "football=5.71\nmarbles=6.59\ntotal_spent=football+marbles\nprint(total_spent)" + ], + "Output Answer": [ + "12.3" + ], + "split": "train" + }, + { + "Input": "Joan has 8 orange balloons but lost 2 of them. Joan has _____ many orange balloons now .", + "Output Program": [ + "balloons=8\nlost=2\nreamaning_ballons=balloons-lost\nprint(reamaning_ballons)\n" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Mike made 101 dollars mowing lawns over the summer. If he spent 47 dollars buying new mower blades, he could buy _____ 6 dollar games with the money he had left.", + "Output Program": [ + "Mike_made=101\nNew_mowers=47\nGames=6\ntotal_money=54\nMOney_left=total_money/Games\nprint(MOney_left)\n" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "As part of a lesson on earthquakes , a science class is researching the movement of a nearby fault line . The fault line moved 1.25 inches during the past year and 5.25 inches the year before. In all , the fault line moved _____ inches .", + "Output Program": [ + "line_moved=1.25\npast_year=5.25\nfault_line_moved=line_moved+past_year\nprint(fault_line_moved)\n" + ], + "Output Answer": [ + "6.5" + ], + "split": "train" + }, + { + "Input": "Mike has 87 baseball cards . Sam bought 13 of Mike 's baseball cards. Mike has _____ baseball cards now .", + "Output Program": [ + "basaball=87\nsam_bought=13\nmike_reamaning=basaball-sam_bought\nprint(mike_reamaning)\n" + ], + "Output Answer": [ + "74" + ], + "split": "train" + }, + { + "Input": "Jenny sold 24 boxes of Trefoils. Jenny needs to deliver _____ cases of 8 boxes, plus extra boxes .", + "Output Program": [ + "trefoils_box=24\nboxes=8\nextra_boxes=trefoils_box/boxes\nprint(extra_boxes)\n" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "18 children were riding on the bus. At the bus stop, some more children got on the bus. Then there were 25 children altogether on the bus. _____ children got on the bus at the bus stop.", + "Output Program": [ + "children_in_bus=18\ntotal=25\nchildren_on_bus_stop=total-children_in_bus\nprint(children_on_bus_stop)\n" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Lewis then went to see the oranges being harvested. Lewis found out that they harvest 83 sacks per day. They would have _____ sacks of oranges after 6 days of harvest.", + "Output Program": [ + "daily=83\ndays=6\ntotal_orange_sacks=daily*days\nprint(total_orange_sacks)\n" + ], + "Output Answer": [ + "498" + ], + "split": "train" + }, + { + "Input": "Third-grade students went to a concert in 8 buses. Each bus took 45 students. _____ students went to the concert.", + "Output Program": [ + "concert_bus=8\neach_bus=45\nstudents_in_concert=concert_bus*each_bus\nprint(students_in_concert)\n" + ], + "Output Answer": [ + "360" + ], + "split": "train" + }, + { + "Input": "Jerry had 7 action figures, but needed 16 total for a complete collection. If each 1 costs $8, he would need $_____ to finish his collection.", + "Output Program": [ + "jerry=7\nneeded=9\ncost=8\ntotal=16\nfinish_collection=needed*cost\nprint(finish_collection)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": "George had 28 socks. If he threw away 4 old ones that didn't fit and bought 36 new ones, he would have _____ socks .", + "Output Program": [ + "socks=24\nthrew=4\nbought_new=36\ntotal_socks=socks+bought_new\nprint(total_socks)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "At the arcade, Tom won 32 tickets playing 'whack a mole' and 25 tickets playing 'skee ball'. If he spent 7 of his tickets on a hat, Tom is left with _____ tickets .", + "Output Program": [ + "tickets=32\nskee_ball_playing=25\nspent=7\nleft_tickets=tickets+skee_ball_playing-spent\nprint(left_tickets)\n" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "A waitress put leftover tarts into the fridge on Thursday night . She noticed that the restaurant had 0.08 tart filled with cherries , 0.75 tart filled with blueberries , and 0.08 tart filled with peaches. In all , the restaurant had _____ leftover tarts .", + "Output Program": [ + "tart_filled=0.08\nblueberries=0.75\npeaches=0.08\nleftover_tarts=tart_filled+blueberries+peaches\nprint(leftover_tarts)" + ], + "Output Answer": [ + "0.91" + ], + "split": "train" + }, + { + "Input": "There are 261 fishbowls. Each fishbowl has 23 fish. So , there are _____ fishes .", + "Output Program": [ + "fishbowls=261\nfish=23\ntotal_fish=fishbowls*fish\nprint(total_fish)" + ], + "Output Answer": [ + "6003" + ], + "split": "train" + }, + { + "Input": "5 boats are in the lake. Each boat has 3 people. There are _____ people on boats in the lake.", + "Output Program": [ + "boat=5\npeople=3\ntotal_people=boat*people\nprint(total_people)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "A fruit farm packs oranges in boxes that hold 10 each. 1 day it packs 2650 oranges. They used _____ boxes .", + "Output Program": [ + "orange_in_box=10\nin_day=2650\ntotal_used_box=in_day/orange_in_box\nprint(total_used_box)\n" + ], + "Output Answer": [ + "265" + ], + "split": "train" + }, + { + "Input": "Keith loves trading cards. She bought 4 packs of Digimon cards for $4.45 each, and a deck of baseball cards for $6.06. Keith spent $_____ on cards.", + "Output Program": [ + "digimon_card=4\ncost=4.45\nbaseball_card=6.06\ntotal_spent=digimon_card*cost+baseball_card\nprint(total_spent)\n" + ], + "Output Answer": [ + "23.86" + ], + "split": "train" + }, + { + "Input": "A chocolate chip cookie recipe calls for 2 cups of chocolate chips. You want to make 23 recipes for a bake sale. _____ cups of chocolate chips will be needed to make all the cookie recipes.", + "Output Program": [ + "chocolate_chips=2\nrecipes=23\nneeded_chocolate_chips=recipes*chocolate_chips\nprint(needed_chocolate_chips)" + ], + "Output Answer": [ + "46" + ], + "split": "train" + }, + { + "Input": "Mrs. Sheridan has 22 fish. Her sister gave her 47 more fish. She has _____ fishes now.", + "Output Program": [ + "fish=22\nsister_gave=47\ntotal_fish=fish+sister_gave\nprint(total_fish)\n" + ], + "Output Answer": [ + "69" + ], + "split": "train" + }, + { + "Input": "There are 4 cards. 3 cards more are added. There are _____ cards in total.", + "Output Program": [ + "cards=4\nadded=3\ntotal_cards=cards+added\nprint(total_cards)\n" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "During a canned food drive , items were sorted into bins . The drive resulted in 0.12 bin of soup , 0.12 bin of vegetables , and 0.5 bin of pasta. Altogether , the canned food would take up _____ bins .", + "Output Program": [ + "soup=0.12\nvegetables=0.12\npasta=0.5\ntotal_food=soup+vegetables+pasta\nprint(total_food)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "Last week, Fred had 23 dollars, and Jason had 46 dollars . Fred washed cars over the weekend and now has 86 dollars. Fred made _____ dollars washing cars .", + "Output Program": [ + "fred_has=23\njasan_has=46\ncar_wash=86\nfred_made=car_wash-fred_has\nprint(fred_made)\n" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "A perfect score is 21 points. You would have _____ points after 3 perfect games in a row.", + "Output Program": [ + "total_score=21\nperfact_game=3\ntotal_points=total_score*perfact_game\nprint(total_points)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "Isha\u2019s pencil is 31 inches long. If she sharpens it, now her pencil is 14 inches long. She sharpened _____ inches off her pencil .", + "Output Program": [ + "isha_pencil_long=31\nnow_pencil_size=14\nsharpented_inches=isha_pencil_long-now_pencil_size\nprint(sharpented_inches)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Molly owns the Wafting Pie Company . This morning , her employees used 816 eggs to bake pumpkin pies. If her employees used a total of 1339 eggs today , They used _____ eggs in the afternoon .", + "Output Program": [ + "used_morning=816\ntotal_used=1339\nafternoon_eggs=total_used-used_morning\nprint(afternoon_eggs)\n" + ], + "Output Answer": [ + "523" + ], + "split": "train" + }, + { + "Input": "Isabel had 72 homework problems. She finished 32 of them but still had 5 pages of problems to do. If each page has the same number of problems on it, there are _____ problems on each page.", + "Output Program": [ + "problems=72\nfinished=32\nreamaning=40\npages_problem=5\nproblem_on_each_page=reamaning/pages_problem\nprint(problem_on_each_page)\n" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Carol collects 2 peanuts. Carol's father gives Carol 5 more. Carol has _____ peanuts .", + "Output Program": [ + "carol_peanuts=2\ndad_give=5\ntotal_carol_peanuts=carol_peanuts+dad_give\nprint(total_carol_peanuts)\n" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Cody is 14 years old. His grandmother is 6 times as old as he is. Cody\u2019s grandmother is _____ years old .", + "Output Program": [ + "cody_age=14\ngrand_mother=6\ngrad_mother_years=cody_age*grand_mother\nprint(grad_mother_years)" + ], + "Output Answer": [ + "84" + ], + "split": "train" + }, + { + "Input": "Donald has 4 oranges. He finds another 5. In all , Donald has _____ oranges .", + "Output Program": [ + "donald_ornage=4\nfind_another=5\ntotal_orange_donald_have=donald_ornage+find_another\nprint(total_orange_donald_have)\n" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Sara has 792 black and 122 red marbles . Fred took 233 of Sara 's black marbles. Sara now has _____ black marbles .", + "Output Program": [ + "balck=792\nred=122\nfred_took=233\nsara_has=balck-fred_took\nprint(sara_has)\n" + ], + "Output Answer": [ + "559" + ], + "split": "train" + }, + { + "Input": "Ashley sold 12 boxes of Samosas. Ashley would need _____ cases of 12 boxes, plus extra boxes .", + "Output Program": [ + "sold=12\nboxes=12\nashley_needed=sold/boxes\nprint(ashley_needed)\n" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Frank worked 8 hours on the first 4 days of the week. In all , he worked for _____ hours .", + "Output Program": [ + "worked=8\ndays=4\ntotal_work_hour=worked*days\nprint(total_work_hour)\n" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "There are 47 eggs in a box. Harry takes 5 eggs. Therefore _____ eggs are left.", + "Output Program": [ + "eggs=47\nharry_takes=5\nreamaning_eggs=eggs-harry_takes\nprint(reamaning_eggs)\n" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "There are 8 apples in a pile on the desk. Each apple comes in a package of 11. 5 apples are added to the pile. There are _____ apples in the pile.", + "Output Program": [ + "apples=8\nadded_apples=5\ntotal_apples=apples+added_apples\nprint(total_apples)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "The clown blew up 47 balloons. Then he blew up 13 more balloons. Clown has _____ balloons now.", + "Output Program": [ + "ballons=47\nagain=13\ntotal=ballons+again\nprint(total)\n" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "There are 544 pots. Each pot has 32 flowers in it. In all, there are _____ flowers .", + "Output Program": [ + "pots=544\nflowers=32\ntotal_flowers=pots*flowers\nprint(total_flowers)\n" + ], + "Output Answer": [ + "17408" + ], + "split": "train" + }, + { + "Input": "Robin uploaded 35 pictures from her phone and 5 from her camera to facebook. If she sorted the pics into 5 different albums with the same amount of pics in each album, there were _____ pictures in each of the albums.", + "Output Program": [ + "phone=35\ncemera=5\ntotal=40\nalbum=5\nalbum_in_picture=total/album\nprint(album_in_picture)\n" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Mr. Guzman bought 48 doughnuts packed equally into 4 boxes. There were _____ doughnuts in each box.", + "Output Program": [ + "doughnuts=48\nboxes=4\ndouhnuts_in_each_box=doughnuts/boxes\nprint(douhnuts_in_each_box)\n" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "63 people are going to the zoo. There are 3 cars to take people to the zoo. _____ people will go in each car if the same number go in each car.", + "Output Program": [ + "people=63\ncars=3\npeople_going_in_car=people/cars\nprint(people_going_in_car)\n" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "At the arcade Cody won 49 tickets. If he spent 25 tickets on a beanie and later won 6 more tickets, he would have _____ tickets .", + "Output Program": [ + "cody_won=49\nspent=25\nwon=6\ntotal_ticets=cody_won-spent+won\nprint(total_ticets)\n" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "There were 9 red orchids and 3 white orchids in the vase . Sally cut some red orchids from her flower garden . There are now 15 red orchids in the vase. She cut _____ red orchids.", + "Output Program": [ + "red_orchids=9\nin_vase=15\nwhite_orchids=3\ncute_red_orchids=in_vase-red_orchids\nprint(cute_red_orchids)\n" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Alyssa picked 42 pears, and Nancy picked 17 pears from the pear tree. _____ pears were picked in all .", + "Output Program": [ + "alyssa_picked=42\nnancy_picked=17\ntotal_pears=alyssa_picked+nancy_picked\nprint(total_pears)\n" + ], + "Output Answer": [ + "59" + ], + "split": "train" + }, + { + "Input": "Sam has 86 yellow and 20 green marbles . Joan took 25 of Sam 's yellow marbles. Sam now has _____ yellow marbles .", + "Output Program": [ + "sam_has_yellow_marbles=86\ngreen_marbles=20\njoan_take=25\nsam_has_now=sam_has_yellow_marbles-joan_take\nprint(sam_has_now)\n" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": "A restaurant served 9 hot dogs during lunch and 2 during dinner today . It served 5 of them yesterday. So, _____ hot dogs were served today .", + "Output Program": [ + "luch=9\nduring_dinner=2\nseved_hot_dog_today=luch+during_dinner\nprint(seved_hot_dog_today)\n" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "There were a total of 323 football games in the season. The season is played for 17 months. Each month _____ football games were played , if each month has the same number of games.", + "Output Program": [ + "football_games=323\nmonth=17\neach_month_match=football_games/month\nprint(each_month_match)\n" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "There are 38 books on the shelf. Marta put 10 more books on the shelf. There are _____ books on the shelf now.", + "Output Program": [ + "books=38\nmarta_added=10\ntotal_books_on_shelf=books+marta_added\nprint(total_books_on_shelf)\n" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "Robin has 9 packages of gum. There are 15 pieces in each package. Robin has _____ pieces of gum .", + "Output Program": [ + "robin=9\npieces_in_package=15\ntotal_pieces_robin_has=robin*pieces_in_package\nprint(total_pieces_robin_has)\n" + ], + "Output Answer": [ + "135" + ], + "split": "train" + }, + { + "Input": "Marilyn has 40 bananas that must be put away in boxes. Daniel comes to help and brings 10 cookies to share with Marilyn. If there are 8 boxes, _____ bananas must go in each box.", + "Output Program": [ + "marilyn_bananas=40\nboxes=8\nbananas_in_each_box=marilyn_bananas/boxes\nprint(bananas_in_each_box)\n" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Adam bought 9 packages of cat food and 7 packages of dog food. Each package of cat food contained 10 cans, and each package of dog food contained 5 cans. Adam baught _____ more cans of cat food than dog food .", + "Output Program": [ + "cat_food=90\ndog_food=35\nmore_can_of_cat_food_than_dog_food=cat_food-dog_food\nprint(more_can_of_cat_food_than_dog_food)\n" + ], + "Output Answer": [ + "55" + ], + "split": "train" + }, + { + "Input": "Tori is a school janitor . Last week , she picked up a total of 1576 pieces of trash. If she picked up 344 pieces of trash in the classrooms , Tori picked up _____ pieces of trash outside the classrooms .", + "Output Program": [ + "trash=1576\npicked=344\nout_side_class_room=trash-picked\nprint(out_side_class_room)\n" + ], + "Output Answer": [ + "1232" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt uses 2 ounces of detergent to wash a pound of clothes. She will use _____ ounces of soap to wash 9 pounds of clothes.", + "Output Program": [ + "detergent=2\nclothes=9\nsoap_use=detergent*clothes\nprint(soap_use)\n" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "A multi-national corporation has 2041 part-time employees and 63093 full-time employees. _____ employees work for the corporation .", + "Output Program": [ + "part_time=2041\nfull_time=63093\ntotal_employees=part_time+full_time\nprint(total_employees)\n" + ], + "Output Answer": [ + "65134" + ], + "split": "train" + }, + { + "Input": "An oil pipe in the sea broke . Before engineers started to fix the pipe , 6522 liters of oil leaked into the water . While the engineers worked , the pipe leaked 5165 liters of oil. In all , _____ liters of oil leaked into the water .", + "Output Program": [ + "before_fix=6522\ninworking=5165\noil_leaked_in_water=before_fix+inworking\nprint(oil_leaked_in_water)" + ], + "Output Answer": [ + "11687" + ], + "split": "train" + }, + { + "Input": "A store had 34 oranges in a bin. If they threw away 20 of the old ones and put 13 new ones in the bin there would be _____ in the bin.", + "Output Program": [ + "ornage=34\nold=20\nnew=13\nnew_ornage=ornage-old+new\nprint(new_ornage)" + ], + "Output Answer": [ + "27" + ], + "split": "train" + }, + { + "Input": "Misha has 34 dollars. She has to earn _____ dollars to have 47 dollars to buy a dog.", + "Output Program": [ + "mish=34\nbuy_dog=47\nearn_dollars=buy_dog-mish\nprint(earn_dollars)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Lana picked 36 tulips and 37 roses to make flower bouquets. If she only used 70 of the flowers though, Lana picked up _____ extra flowers .", + "Output Program": [ + "roses=37\ntulips=36\ntotal=70\nextra_flowers=roses+tulips-total\nprint(extra_flowers)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Daniel had some noodles. He gave 12 noodles to William. Now Daniel only has 54 noodles. Daniel had _____ noodles to begin with.", + "Output Program": [ + "william_noodles=12\ndaniel_noodels=54\ndaniel_starting_noodels=william_noodles+daniel_noodels\nprint(daniel_starting_noodels)" + ], + "Output Answer": [ + "66" + ], + "split": "train" + }, + { + "Input": "Our class got 54 books from the library. Then we got 23 more books from the library. our class get _____ books from the library.", + "Output Program": [ + "Library_books=54\nmore_books_library=23\ntotal_books=Library_books+more_books_library\nprint(total_books)\n" + ], + "Output Answer": [ + "77" + ], + "split": "train" + }, + { + "Input": "You have collected 7 crickets. You need to collect _____ more crickets to have 11 crickets.", + "Output Program": [ + "to_have_cricets=11\ncollected_crickets=7\ncollcect_crickets=to_have_cricets-collected_crickets\nprint(collcect_crickets)\n" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Haley's favorite band was holding a concert where tickets were 4 dollars each. Haley bought 3 tickets for herself and her friends and 5 extra tickets in case anyone else wanted to go. She spent _____ .", + "Output Program": [ + "tickets_cost=4\nhaley_total_tickets=8\nhaley_total_spent=tickets_cost*haley_total_tickets\nprint(haley_total_spent)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "0.5 the students in the band are in the trumpet section . 0.12 the students in the band are in the trombone section. _____ fraction of the students in the band are in either the trumpet section or the trombone section .", + "Output Program": [ + "trumpet_section_student_band=0.5\ntrombone_section_studnet_band=0.12\ntotal=trumpet_section_student_band+trombone_section_studnet_band\nprint(total)\n" + ], + "Output Answer": [ + "0.63" + ], + "split": "train" + }, + { + "Input": "Ellen had 2080 Legos, but she lost 17 Legos. She has _____ Legos now.", + "Output Program": [ + "Ellen_legos=2080\nlost_legos=17\nEllen_reamaning_legos=Ellen_legos-lost_legos\nprint(Ellen_reamaning_legos)\n" + ], + "Output Answer": [ + "2063" + ], + "split": "train" + }, + { + "Input": "Joan bought toy cars for $ 14.88 , a skateboard for $ 4.88 , and got toy trucks for $ 5.86 . She spent $ 14.55 on pants. In total , Joan spent $ _____ on toys .", + "Output Program": [ + "joan_car_cost=14.88\nskateborad_cost=4.88\ntruck_cost=5.86\njoan_total_cost=joan_car_cost+skateborad_cost+truck_cost\nprint(joan_total_cost)\n" + ], + "Output Answer": [ + "25.62" + ], + "split": "train" + }, + { + "Input": "James rode 80 miles at 16 miles per hour. James rode for _____ hours .", + "Output Program": [ + "speed=16\nmiles=80\njames_rode_hour=miles/speed\nprint(james_rode_hour)\n" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Dan picked 9 limes and gave Sara 4 of the limes. Dan has _____ limes now .", + "Output Program": [ + "dan_limes=9\nsara_limes=4\ndan_remaning_limes=dan_limes-sara_limes\nprint(dan_remaning_limes)\n" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Molly had 14 candles on her birthday cake. She grew older and got 6 more on her birthday cake. Molly is _____ years old now.", + "Output Program": [ + "molly_candles=14\nmolly_got_more=6\nmolly_years=molly_candles+molly_got_more\nprint(molly_years)\n" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "2 beavers were working on their home. 1 went for a swim. Therefore , _____ beavers are still working on their home.", + "Output Program": [ + "beavers_woring_on_home=2\nbeavers_for_swim=1\nworking_beavers=beavers_woring_on_home-beavers_for_swim\nprint(working_beavers)\n" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "A truck carrying 4.1 pounds of sand travels to a construction yard and loses 2.4 pounds of sand along the way. The truck has _____ pounds of sand when it arrives at the yard .", + "Output Program": [ + "truck_carrying_sand=4.1\nloses_sand=2.4\nsand_remaning_in_truck=truck_carrying_sand-loses_sand\nprint(sand_remaning_in_truck)" + ], + "Output Answer": [ + "1.7" + ], + "split": "train" + }, + { + "Input": "If each ball costs $1.54, Kyoko paid _____ for 3 balls.", + "Output Program": [ + "each_ball_cost=1.54\ntotal_ball=3\nkyoko_paid=each_ball_cost*total_ball\nprint(kyoko_paid)" + ], + "Output Answer": [ + "4.62" + ], + "split": "train" + }, + { + "Input": "A restaurant made 9 hamburgers to serve during lunch . Only 3 were actually served. _____ hamburgers were over from lunch .", + "Output Program": [ + "total_hemburgers=9\nserved_hemburgers=3\nover_hemburger=total_hemburgers-served_hemburgers\nprint(over_hemburger)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Each child has 3 oranges. If there are 4 children, so there are _____ oranges in total.", + "Output Program": [ + "total_childern=4\norange=3\ntotal_orange=total_childern*orange\nprint(total_orange)\n" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Adolfo made a tower with 35 blocks. He added some more blocks, and now he has 65 blocks. He had to add _____ blocks .", + "Output Program": [ + "tower_made_blocks=35\ntotal_blocks=65\nadded_blocks=total_blocks-tower_made_blocks\nprint(added_blocks)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Kyle jogged 1.12 laps in P.E. class and 2.12 laps during track practice. In all , Kyle jogged _____ laps .", + "Output Program": [ + "kyle_jogged=1.12\nduring_track_practice=2.12\ntotal_kyle_jogged=kyle_jogged+during_track_practice\nprint(total_kyle_jogged)\n" + ], + "Output Answer": [ + "3.25" + ], + "split": "train" + }, + { + "Input": "For the fifth grade play, the chairs have been put into 27 rows with 16 chairs in each row. There have been _____ chairs put out for the play.", + "Output Program": [ + "chairs_in_rows=27\neach_row_chair=16\ntotal_chairs_for_play=chairs_in_rows*each_row_chair\nprint(total_chairs_for_play)\n" + ], + "Output Answer": [ + "432" + ], + "split": "train" + }, + { + "Input": "Cindy\u2019s mom baked 41 cookies. Paul\u2019s dad baked 38 cookies. They both brought them to school for a party. They had _____ cookies altogether.", + "Output Program": [ + "cindy_mom_cookies=41\npaul_dad_cooikes=38\ntotal_cookies=cindy_mom_cookies+paul_dad_cooikes\nprint(total_cookies)\n" + ], + "Output Answer": [ + "79" + ], + "split": "train" + }, + { + "Input": "Mrs. Santiago has 58 red roses. Mrs. Garrett has 24. Mrs. Santiago has _____ more red roses than Mrs. Garrett.", + "Output Program": [ + "santiago_roses=58\ngarrett_roese=24\nmr_santiago_roses=santiago_roses-garrett_roese\nprint(mr_santiago_roses)\n" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "Maggie bought 4 packs of red bouncy balls, 8 packs of yellow bouncy balls, and 4 packs of green bouncy balls. There were 10 bouncy balls in each package. In all , Maggie baught _____ bouncy balls .", + "Output Program": [ + "red_ball=4\nyellow_ball=8\ngreen_ball=4\nbouncy_ball=10\nmaggie_total_ball=red_ball*bouncy_ball+yellow_ball*bouncy_ball+green_ball*bouncy_ball\nprint(maggie_total_ball)\n\n" + ], + "Output Answer": [ + "160" + ], + "split": "train" + }, + { + "Input": "Alyssa had 129 cookies. Aiyanna has 140. Aiyanna has _____ more cookies than Alyssa.", + "Output Program": [ + "aiyanna_cookies=140\nalyssa_cookies=129\nAiyanna_extra_cookie=aiyanna_cookies-alyssa_cookies\nprint(Aiyanna_extra_cookie)\n" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "A waiter at 'The Greasy Spoon' restaurant had 29 customers to wait on. During the lunch rush he added another 20 customers. If 34 of the customers didn't leave him a tip, therefore _____ customers did leave a tip.", + "Output Program": [ + "waiting_customer=29\nadded_customer=20\ncustomers_didn_t_tip=34\ntip_customer=waiting_customer+added_customer-customers_didn_t_tip\nprint(tip_customer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Some insects called aphids attack a large farm . In response , the farmer releases ladybugs onto the fields . There are 12170 ladybugs with spots and 54912 ladybugs without spots. In all , there are _____ ladybugs .", + "Output Program": [ + "ladybugs_with_spots=12170\nladybugs_without_spots=54912\ntotal_ladybugs=ladybugs_with_spots+ladybugs_without_spots\nprint(total_ladybugs)\n" + ], + "Output Answer": [ + "67082" + ], + "split": "train" + }, + { + "Input": "Christina just transferred $69 out of her bank account. As a result, the account now has $26935 left in it. There was $_____ in the account before the transfer.", + "Output Program": [ + "transfered_amount=69\nreamaning_amout=26935\namout_before_transfer=transfered_amount+reamaning_amout\nprint(amout_before_transfer)\n" + ], + "Output Answer": [ + "27004" + ], + "split": "train" + }, + { + "Input": "There are 11 rulers and 34 crayons in the drawer . Tim placed 14 rulers in the drawer. Now, There are _____ rulers in all .", + "Output Program": [ + "rulers_in_drawer=11\ncrayons_in_drawer=34\ntim_added_rulers=14\ntotal_rulers=rulers_in_drawer+tim_added_rulers\nprint(total_rulers)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Oliver is at the library helping put away books. There are 46 book to put away total but a librarian takes 10 of them and leaves Oliver with the rest. If he can fit 4 books on a shelf, he will need _____ shelves .", + "Output Program": [ + "total_books=46\nlabrarian_take=10\nreamaning_book=36\nself_fit_books=4\nneed_shelves=reamaning_book/self_fit_books\nprint(need_shelves)\n" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Paige and her friends were recycling paper for their class. For every 4 pounds they recycled they earned 1 point. If Paige recycled 14 pounds, and her friends recycled 2 pounds, therefore they earned _____ points .", + "Output Program": [ + "recycled=4\nearned=1\npaige_recycled=14\nfriend_recycled=2\nearned_points=(paige_recycled+friend_recycled)/recycled\nprint(earned_points)\n" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "A bathing suit manufacturer has a supply of 14797 bathing suits for men . In addition , it has 4969 bathing suits for women. _____ bathing suits are available overall .", + "Output Program": [ + "Man_bathing_suits=14797\nwomen_bathing_suits=4969\ntotal_bathing_suits=Man_bathing_suits+women_bathing_suits\nprint(total_bathing_suits)\n" + ], + "Output Answer": [ + "19766" + ], + "split": "train" + }, + { + "Input": "Sally paid $ 12.32 total for peaches , after a 3 dollar coupon , and $ 11.54 for cherries. In total , Sally spent _____ dollars amount of money .", + "Output Program": [ + "peaches=12.32\ncherry=11.54\nsally_spent=peaches+cherry\nprint(sally_spent)\n" + ], + "Output Answer": [ + "23.86" + ], + "split": "train" + }, + { + "Input": "Your class is having a pizza party. You buy 5 pizzas. Each pizza has 4 slices. Altogether , there are _____ slices .", + "Output Program": [ + "pizza=5\nslices_in_pizza=4\ntotal_slices_in_pizaa=pizza*slices_in_pizza\nprint(total_slices_in_pizaa)\n" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "Emily sprinted to Timothy's house. It is 10 miles from Emily's house to Timothy's house. It took Emily 2 hours to get there. So , Emily went there at _____ miles per hour .", + "Output Program": [ + "timothy_house=10\ntime=2\nemily_speed_per_hour=timothy_house/time\nprint(emily_speed_per_hour)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Mildred collects 77 oranges. Mildred's father gives Mildred 2 more. Mildred has _____ oranges .", + "Output Program": [ + "mildred_oranges=77\nmildred_father_give=2\nmildred_total_oranges=mildred_oranges+mildred_father_give\nprint(mildred_total_oranges)" + ], + "Output Answer": [ + "79" + ], + "split": "train" + }, + { + "Input": "William starts with 15 tickets. He buys 3 more. William end with _____ tickets .", + "Output Program": [ + "william_started_ticet=15\nbuy_more=3\nend_with_ticket=william_started_ticet+buy_more\nprint(end_with_ticket)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "29 birds were sitting in a tree. Some more fly up to the tree. Then there were 42 birds in the tree. _____ more flew up to the tree.", + "Output Program": [ + "sitting_in_tree=29\nbirds_in_the_tree=42\nflew_up_to_the_tree=birds_in_the_tree-sitting_in_tree\nprint(flew_up_to_the_tree)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Tom found 15 seashells, and Fred found 43 seashells on the beach . When they cleaned them , they discovered that 29 were cracked. They found _____ seashells together .", + "Output Program": [ + "tom_found_seashells=15\nfred_found_seashells=43\ntotal_seashells=tom_found_seashells+fred_found_seashells\nprint(total_seashells)" + ], + "Output Answer": [ + "58" + ], + "split": "train" + }, + { + "Input": "Carla has some marbles. She bought 134 marbles. Now she has 187 marbles. She started with _____ marbles .", + "Output Program": [ + "bouht_marbles=134\nshe_has=187\ncarla_started=she_has-bouht_marbles\nprint(carla_started)" + ], + "Output Answer": [ + "53" + ], + "split": "train" + }, + { + "Input": "There were 3409 pieces of candy in a jar. If 145 pieces were red and the rest were blue, _____ pieces were blue.", + "Output Program": [ + "pieces_of_candy_in_jar=3409\nred_pieces=145\nblue_pieces=pieces_of_candy_in_jar-red_pieces\nprint(blue_pieces)" + ], + "Output Answer": [ + "3264" + ], + "split": "train" + }, + { + "Input": "On her vacation last summer , Trisha walked all over New York City to buy souvenirs . First , she walked 0.11 mile from her hotel to a postcard shop . Then she walked 0.11 mile from the postcard shop to a T-shirt shop and 0.67 mile from the T-shirt shop back to the hotel. In all , Trisha walked _____ miles .", + "Output Program": [ + "first_walked=0.11\nsecond_walked=0.11\nthird_walked=0.67\ntotal_walked_by_trisha=first_walked+second_walked+third_walked\nprint(total_walked_by_trisha)\n" + ], + "Output Answer": [ + "0.89" + ], + "split": "train" + }, + { + "Input": "Bridget has 4 Skittles. Henry has 4 Skittles. If Henry gives all of his Skittles to Bridget, Bridget will have _____ Skittles.", + "Output Program": [ + "bridget_skittles=4\nhenry_skittles=4\nbridget_total_skittles=bridget_skittles+henry_skittles\nprint(bridget_total_skittles)\n" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Ellen went to a garage sale to buy chairs. Each chair cost 15 dollars. Ellen spent _____ for the 12 chairs she bought.", + "Output Program": [ + "each_chair_price=15\neallen_buy_chair=12\nellen_spent=each_chair_price*eallen_buy_chair\nprint(ellen_spent)" + ], + "Output Answer": [ + "180" + ], + "split": "train" + }, + { + "Input": "Lisa flew 256 miles at 32 miles per hour. Lisa flew for _____ hours .", + "Output Program": [ + "lisa_flew=256\nspeed=32\nlisa_flew_hour=lisa_flew/speed\nprint(lisa_flew_hour)\n" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Lukas averages 12 points per game in basketball. He would score _____ points in 5 games.", + "Output Program": [ + "Lukas_average_point=12\ntotal_game=5\nluckas_point_score=Lukas_average_point*total_game\nprint(luckas_point_score)\n" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "To fill an order , the factory dyed 61921 yards of silk green and 49500 yards pink. It dye _____ yards of silk for that order .", + "Output Program": [ + "sil_green=61921\npink=49500\nyard_of_silk_in_order=sil_green+pink\nprint(yard_of_silk_in_order)" + ], + "Output Answer": [ + "111421" + ], + "split": "train" + }, + { + "Input": "The school is planning a field trip. There are 14 students and 2 seats on each school bus. Therefore , _____ buses are needed to take the trip.", + "Output Program": [ + "students_in_bus=14\ntotl_seats=2\nneeded_bus=students_in_bus/totl_seats\nprint(needed_bus)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Sara got fast food for lunch. Sara spent $5.36 on a hotdog and $5.1 on a salad. The total of the lunch bill was _____ .", + "Output Program": [ + "sara_spent_hotdog=5.36\nspent_in_salad=5.1\ntotal_lunch_bill=sara_spent_hotdog+spent_in_salad\nprint(total_lunch_bill)" + ], + "Output Answer": [ + "10.46" + ], + "split": "train" + }, + { + "Input": "It takes 7 minutes to bake 1 pan of cookies. It will take _____ minutes to bake 4 pans of cookies.", + "Output Program": [ + "one_pan_cookies_time=7\npan_of_cookies=4\ntotal_minutes=one_pan_cookies_time*pan_of_cookies\nprint(total_minutes)\n" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "In a video game, each enemy defeated gives you 3 points. If a level has 6 enemies total and you destroy all but 2 of them, you would earn _____ points .", + "Output Program": [ + "defeated_point=3\ndestroy_enemies=4\nearn_point=defeated_point*destroy_enemies\nprint(earn_point)\n" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Wendy uploaded 79 pictures to Facebook. She put 44 pics into 1 album and put the rest into 5 different albums. There were _____ pictures in each album.", + "Output Program": [ + "total_uploaded=79\npics_in_albums=44\nalbums=5\npictures_in_albums=total_uploaded-pics_in_albums/albums\nprint(pictures_in_albums)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Gordon bought 3.42 pounds of fruit for a class party . The class ate 2.2 pounds of the fruit. _____ pounds of fruit is left .", + "Output Program": [ + "Gordon_bought_fruit=3.42\nclaas_eat=2.2\nfruit_left=Gordon_bought_fruit-claas_eat\nprint(fruit_left)" + ], + "Output Answer": [ + "1.22" + ], + "split": "train" + }, + { + "Input": "Joyce starts with 75 apples. She gives 52 to Larry. Consequently , Joyce end up with _____ apples .", + "Output Program": [ + "joyce_apples=75\njoyce_gives_larry=52\njoyce_reaming_apples=joyce_apples-joyce_gives_larry\nprint(joyce_reaming_apples)" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "A construction company ordered 0.17 ton of concrete , 0.17 ton of bricks , and 0.5 ton of stone. In all , the company ordered _____ tons of material .", + "Output Program": [ + "concrete=0.17\nbricks=0.17\nstone=0.5\ncompany_ordered=concrete+bricks+stone\nprint(company_ordered)\n" + ], + "Output Answer": [ + "0.83" + ], + "split": "train" + }, + { + "Input": "In 1 week , Mitch 's family drank 0.5 carton of regular milk and 0.1 carton of soy milk. They drank _____ milk in all .", + "Output Program": [ + "regular_milk=0.5\nsoya_milk=0.1\ntotal_milk=regular_milk+soya_milk\nprint(total_milk)\n" + ], + "Output Answer": [ + "0.6" + ], + "split": "train" + }, + { + "Input": "Joan picked 43 apples from the orchard , and gave 27 apples to Melanie. Joan has _____ apples now .", + "Output Program": [ + "joan_picked=43\nmelanie_apples=27\njoan_apples=joan_picked-melanie_apples\nprint(joan_apples)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Kim has 4 cousins. She wants to give each cousin 5 pieces of gum. She will need _____ gum .", + "Output Program": [ + "kim_cousins=4\npieces_of_gum=5\nneeded_gum=kim_cousins*pieces_of_gum\nprint(needed_gum)\n" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "There were 27 boys and 35 girls on the playground at recess. There were _____ children on the playground at recess.", + "Output Program": [ + "boys=27\ngirls=35\ntotal_children=boys+girls\nprint(total_children)\n" + ], + "Output Answer": [ + "62" + ], + "split": "train" + }, + { + "Input": "Jill invited 37 people to her birthday party. They each ate 8 pieces of pizza. They ate _____ pieces of pizza .", + "Output Program": [ + "jill_invited=37\npieces_of_pizza=8\ntotal_pieces_of_pizza=jill_invited*pieces_of_pizza\nprint(total_pieces_of_pizza)\n" + ], + "Output Answer": [ + "296" + ], + "split": "train" + }, + { + "Input": "Clarence has 5 oranges. He gets 3 more from Joyce. Later, Clarence buys 9 Skittles at the store. In all , Clarence has _____ oranges .", + "Output Program": [ + "clarence_orange=5\njoyce_give=3\nclarence_total_orange=clarence_orange+joyce_give\nprint(clarence_total_orange)\n" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Isabel picked 66 flowers for her friend\u2019s wedding. She was making bouquets with 8 flowers in each 1. If 10 of the flowers wilted before the wedding, she could still make _____ bouquets .", + "Output Program": [ + "total_flower=56\nbouquets=8\nisable_make_bouquets=total_flower/bouquets\nprint(isable_make_bouquets)\n" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Sally had 13 peaches at her roadside fruit dish . She went to the orchard and picked peaches to stock up . There are now 55 peaches. She picked _____ peaches .", + "Output Program": [ + "peaches=13\npiced_from_stock=55\npicked_peaches=piced_from_stock-peaches\nprint(picked_peaches)\n" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "A pet supply store has 600 bags of dog food and 327 bags of cat food. There are _____ more bags of dog food than cat food.", + "Output Program": [ + "dog_food=600\ncat_food=327\ndog_food_bags=dog_food-cat_food\nprint(dog_food_bags)\n" + ], + "Output Answer": [ + "273" + ], + "split": "train" + }, + { + "Input": "Suzie found 2 worms in the yard and measured them with a ruler . 1 worm was 0.8 inch long . The other worm was 0.1 inch long. The longer worm was _____ longer .", + "Output Program": [ + "worm=0.8\nother_worm=0.1\nlonger_worm=worm-other_worm\nprint(longer_worm)" + ], + "Output Answer": [ + "0.7" + ], + "split": "train" + }, + { + "Input": "An oil pipe in the sea broke . Before engineers started to fix the pipe , 2475 gallons of oil leaked into the water . A total of 6206 gallons of oil leaked before the pipe was fixed. _____ gallons of oil leaked while the engineers were fixing the pipe .", + "Output Program": [ + "leaked_oil=2475\noil_leaked_before_pipe=6206\nleaked_oil_during_fixing_pipe=oil_leaked_before_pipe-leaked_oil\nprint(leaked_oil_during_fixing_pipe)\n" + ], + "Output Answer": [ + "3731" + ], + "split": "train" + }, + { + "Input": "Craig has 20 apples. Judy has 11 apples. He shares 7 with Eugene. Craig will have _____ apples .", + "Output Program": [ + "craig_apples=20\njudy_apples=11\neugene_apples=7\ncraig_reaming_apples=craig_apples-eugene_apples\nprint(craig_reaming_apples)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Isabella\u2019s hair is 18 inches long. By the end of the year her hair is 24 inches long. She grew _____ inches of hair .", + "Output Program": [ + "isbella_hair=18\nend_of_the_year=24\ngrew_inches_in_hair=end_of_the_year-isbella_hair\nprint(grew_inches_in_hair)\n" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "256 students are going to the zoo. They have to be divided into groups so that each teacher has 1 group. There are 8 teachers. There will be _____ students in each group.", + "Output Program": [ + "total_student=256\ntotal_teacher=8\nstudent_in_group=total_student/total_teacher\nprint(student_in_group)\n" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "Before December , customers buy 1346 ear muffs from the mall . During December , they buy 6444 , and there are none. In all , the customers buy _____ ear muffs .", + "Output Program": [ + "before_december=1346\nduring_december=6444\ntotal_ear_muffs=during_december+before_december\nprint(total_ear_muffs)" + ], + "Output Answer": [ + "7790" + ], + "split": "train" + }, + { + "Input": "Roadster 's Paving Company used 10 tons of cement to pave Lexi 's street and 5.1 tons of cement to pave Tess 's street. In all , Roadster 's Paving Company used _____ tons of cement .", + "Output Program": [ + "cement_for_lexi_street=10\ncemnet_for_tess_street=5.1\ntotal_cement_used=cement_for_lexi_street+cemnet_for_tess_street\nprint(total_cement_used)" + ], + "Output Answer": [ + "15.1" + ], + "split": "train" + }, + { + "Input": "While playing at the arcade, Frank won 33 tickets playing 'whack a mole' and 9 tickets playing 'skee ball'. If he was trying to buy candy that cost 6 tickets a piece, he could buy _____ candies .", + "Output Program": [ + "playing_whack=33\nplaying_skee_ball=9\ncandy_cost=6\ncandies_to_buy= playing_whack+playing_skee_ball/candy_cost\nprint(candies_to_buy)\n" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Zoe baked 5 brownies, but needed 11 total for her party. If she used 7 cups of flour on each 1, she still needs _____ cups of flour.", + "Output Program": [ + "total_brownies=6\nused_flour=7\nneeds_flour=total_brownies*used_flour\nprint(needs_flour)\n" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "Sally had 27 Pokemon cards . Dan gave her 41 new Pokemon cards . Sally bought 20 Pokemon cards. Sally has _____ many Pokemon cards now .", + "Output Program": [ + "pokemon_card=27\ndan_gave=41\nbought_card=20\ntotal_pokemon_card=pokemon_card+dan_gave+bought_card\nprint(total_pokemon_card)" + ], + "Output Answer": [ + "88" + ], + "split": "train" + }, + { + "Input": "Allie counted the leftover ice cream after a sundae party . She had 0.33 carton of rocky road ice cream , 0.33 carton of cookie dough ice cream , and 0.17 carton of strawberry cheesecake ice cream. In all , Allie had _____ cartons of ice cream .", + "Output Program": [ + "rocky_road_icecream=0.33\ncookie_dough_icecream=0.33\nstrawberry_icecream=0.17\nallie_ice_cream_cartoon=rocky_road_icecream+cookie_dough_icecream+strawberry_icecream\nprint(allie_ice_cream_cartoon)\n" + ], + "Output Answer": [ + "0.83" + ], + "split": "train" + }, + { + "Input": "If Anne wandered for 3 hours at 2 miles per hour. As a result , Anne went _____ miles far.", + "Output Program": [ + "time=3\nspeed=2\nanne_miles=time*speed\nprint(anne_miles)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "There were a total of 7 football games this year. Melanie missed 4 of the games. in all , Melanie went to _____ football games .", + "Output Program": [ + "football_games_in_year=7\nmelanie_missed=4\nmelanie_attned=football_games_in_year-melanie_missed\nprint(melanie_attned)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Jason had Pokemon cards . He gave 9 to his friends . He now has 4 Pokemon cards. He had _____ Pokemon cards to start with .", + "Output Program": [ + "gave_to_friend=9\nreamaning_cards=4\nstarted_cards=gave_to_friend+reamaning_cards\nprint(started_cards)\n" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Paul bought 6 boxes of chocolate candy and 4 boxes of caramel candy. If each box has 9 pieces inside it, he had _____ candies in total.", + "Output Program": [ + "chocolate_candy=6\ncarnamel_candy=4\neach_box=9\ntotal_candy=carnamel_candy+chocolate_candy*each_box\nprint(total_candy)\n" + ], + "Output Answer": [ + "90" + ], + "split": "train" + }, + { + "Input": "2 toucans are sitting on a tree limb. 1 more toucan joins them. In all , there are _____ toucans .", + "Output Program": [ + "toucans_sitting_on_tree=2\njoin_toucans=1\ntotal_toucans=toucans_sitting_on_tree+join_toucans\nprint(total_toucans)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Stanley ran 0.4 mile and walked 0.2 mile. Stanley ran _____ farther than walk .", + "Output Program": [ + "ran_mile=0.4\nwalked_mile=0.2\nstanley_ran_mile=ran_mile-walked_mile\nprint(stanley_ran_mile)\n" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "There are 10 stickers on a page. If you have 22 pages of stickers, you would have _____ stickers .", + "Output Program": [ + "sticers_on_page=10\npages_of_stickers=22\ntotal_sticers=sticers_on_page*pages_of_stickers\nprint(total_sticers)\n" + ], + "Output Answer": [ + "220" + ], + "split": "train" + }, + { + "Input": "Joan has 9 blue balloons but lost 2 of them. Joan has _____ blue balloons now .", + "Output Program": [ + "blue_ballons=9\nlost_balloons=2\njoan_reamaning_balloons=blue_ballons-lost_balloons\nprint(joan_reamaning_balloons)\n" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt saw 3 bugs eat 2 flowers each. Therefore , the bugs ate _____ flowers in total .", + "Output Program": [ + "ate_bugs=3\nflowers=2\nbugs_ate=ate_bugs*flowers\nprint(bugs_ate)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Joan found 79 seashells on the beach , she gave Mike 63 of the seashells. She has _____ many seashells now .", + "Output Program": [ + "seahells=79\ngave_to_mike=63\njona_reamaing_seashells=seahells-gave_to_mike\nprint(jona_reamaing_seashells)\n" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "58 children are taking a bus to the zoo. They sit 2 children in every seat. In all , children would need _____ seats .", + "Output Program": [ + "total_children=58\nchildren_in_every_seat=2\nchildren_needed_seat=total_children/children_in_every_seat\nprint(children_needed_seat)\n" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "Paul got a box of 479 crayons for his birthday. At the end of the school year, he only had 134 left. _____ crayons had been lost or given away.", + "Output Program": [ + "boxes=479\nonly_left=134\nlost_crayons=boxes-only_left\nprint(lost_crayons)" + ], + "Output Answer": [ + "345" + ], + "split": "train" + }, + { + "Input": "Mrs. Hilt bought a yoyo for 24 cents and a whistle for 14 cents. In all , she spent _____ cents for the 2 toys.", + "Output Program": [ + "yoyo=24\nwhistle=14\ntotal_cents_for_toys=yoyo+whistle\nprint(total_cents_for_toys)\n" + ], + "Output Answer": [ + "38" + ], + "split": "train" + }, + { + "Input": "Oliver had 33 dollars in January. By March he had spent 4 dollars. If he got another 32 dollars from his mom, he would have _____ money.", + "Output Program": [ + "dollars_in_january=33\nspent=4\nmom_gives=32\noliver_would_have=dollars_in_january+mom_gives-spent\nprint(oliver_would_have)\n" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": "There are 31 short trees and 32 tall trees currently in the park . Park workers will plant short trees today . When the workers are finished there will be 95 short trees in the park. the workers planted _____ short trees today .", + "Output Program": [ + "short_tree=31\ntall_tree=32\nafter_finished_work=95\nplanted_tree=after_finished_work-short_tree\nprint(planted_tree)\n" + ], + "Output Answer": [ + "64" + ], + "split": "train" + }, + { + "Input": "Sandy had 26 pet fish. She bought 6 more fish. Sandy has _____ pet fishes now.", + "Output Program": [ + "pet_fish=26\nbought_fish=6\ntotal_fish=pet_fish+bought_fish\nprint(total_fish)\n" + ], + "Output Answer": [ + "32" + ], + "split": "train" + } + ], + "Metadata": [] +} \ No newline at end of file