diff --git "a/all/multiarith.json" "b/all/multiarith.json" new file mode 100644--- /dev/null +++ "b/all/multiarith.json" @@ -0,0 +1,10614 @@ +{ + "Source": "https://homes.cs.washington.edu/~hannaneh/papers/mawps-data.pdf", + "Categories": [ + { + "Math complexity": 2, + "Language complexity": 7, + "Domain knowledge complexity": 0 + } + ], + "Instances": [ + { + "Input": " A store had 27 coloring books in stock. They ended up putting them on sale and getting rid of 6 of them. The put the ones they still had onto shelves with 7 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((27.0-6.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " Paige was unboxing some of her old winter clothes. She found 6 boxes of clothing and inside each box there were 5 scarves and 5 mittens. How many pieces of winter clothing did Paige have total? ", + "Output Program": [ + "answer=(6.0*(5.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": " A toy store had 6 giant stuffed bears in stock when they got another shipment with 18 bears in it. The put the bears onto shelves with 6 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((6.0+18.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " The schools debate team had 26 boys and 46 girls on it. If they were split into groups of 9 how many groups could they make? ", + "Output Program": [ + "answer=((26.0+46.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " A toy store had 5 giant stuffed bears in stock when they got another shipment with 7 bears in it. The put the bears onto shelves with 6 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((5.0+7.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Frank had 11 dollars. At the store he spent $3 on a new game. If he got another 14 dollars for his allowance, how much money does he have now? ", + "Output Program": [ + "answer=((11.0+14.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": " A pet store had 56 puppies. In one day they sold 24 of them and put the rest into cages with 4 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((56.0-24.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " For Halloween Bianca received 78 pieces of candy. She ate 30 pieces then placed the rest into piles with 8 in each pile. How many piles could she make? ", + "Output Program": [ + "answer=((78.0-30.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " The school cafeteria ordered 43 red apples and 32 green apples for students lunches. But, if only 2 students wanted fruit, how many extra did the cafeteria end up with? ", + "Output Program": [ + "answer=((43.0+32.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "73" + ], + "split": "train" + }, + { + "Input": " Ned was helping the cafeteria workers pick up lunch trays, but he could only carry 5 trays at a time. If he had to pick up 5 trays from one table and 5 trays from another, how many trips will he make? ", + "Output Program": [ + "answer=((5.0+5.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " A waiter had 22 customers in his section. If 14 of them left and the rest of his tables had 4 people at each table, how many tables did he have? ", + "Output Program": [ + "answer=((22.0-14.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Katie had 11 songs on her mp3 player. If she deleted 7 old songs from it and then added 24 new songs, how many songs does she have on her mp3 player? ", + "Output Program": [ + "answer=((11.0+24.0)-7.0)\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": " For Halloween Katie and her sister combined the candy they received. Katie had 10 pieces of candy while her sister had 6. If they ate 9 pieces the first night, how many pieces do they have left? ", + "Output Program": [ + "answer=((10.0+6.0)-9.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " Tom bought 12 boxes of chocolate candy and gave 7 to his little brother. If each box has 6 pieces inside it, how many pieces did Tom still have? ", + "Output Program": [ + "answer=(6.0*(12.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": " A pet shelter had 3 puppies when another 3 were brought in. If 3 puppies a day are adopted, how long would it take for all of them to be adopted? ", + "Output Program": [ + "answer=((3.0+3.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Billy was putting his spare change into piles. He had 2 piles of quarters and 3 piles of dimes. If each pile had 4 coins in it, how many coins did he have total? ", + "Output Program": [ + "answer=(4.0*(2.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "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, how many pieces do they have left? ", + "Output Program": [ + "answer=((32.0+42.0)-35.0)\nprint(answer)" + ], + "Output Answer": [ + "39" + ], + "split": "train" + }, + { + "Input": " The cafeteria had 47 apples. For lunch they handed out 27 to students and decided to use the rest to make pies. If each pie takes 4 apples, how many pies could they make? ", + "Output Program": [ + "answer=((47.0-27.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " Megan baked 68 cupcakes for her school's bake sale. If her brother, Todd, ate 32 of them how many packages could she make if she put 6 cupcake in each package? ", + "Output Program": [ + "answer=((68.0-32.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " For Halloween Haley scored 33 pieces of candy. She ate 17 pieces the first night and then her sister gave her 19 more pieces. How many pieces of candy does Haley have now? ", + "Output Program": [ + "answer=((33.0+19.0)-17.0)\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": " A waiter had 14 customers to wait on. If 3 customers left and he got another 39 customers, how many customers would he have? ", + "Output Program": [ + "answer=((14.0+39.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": " Haley and her mom were picking carrots from their garden. Haley picked 39 and her mother picked 38. If only 64 of the carrots were good, how many bad carrots did they have? ", + "Output Program": [ + "answer=((39.0+38.0)-64.0)\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": " Sam was collecting cans for recycling. On Saturday he filled 4 bags up and on Sunday he filled 3 more bags. If each bag had 6 cans in it, how many cans did he pick up total? ", + "Output Program": [ + "answer=(6.0*(4.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": " Adam earned 9 dollars for each lawn he mowed. If he had 12 lawns to mow, but forgot to mow 8 of them, how much money did he actually earn? ", + "Output Program": [ + "answer=(9.0*(12.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "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, how many tables do they need? ", + "Output Program": [ + "answer=((18.0-12.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Ned was trying to expand his game collection. He bought 50 games from a friend and bought 27 more at a garage sale. If 74 of the games didn't work, how many good games did he end up with? ", + "Output Program": [ + "answer=((50.0+27.0)-74.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " For a birthday party Tom bought 4 regular sodas and 52 diet sodas. If his fridge would only hold 7 on each shelf, how many shelves would he fill up? ", + "Output Program": [ + "answer=((4.0+52.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "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, how many did he not wash? ", + "Output Program": [ + "answer=((9.0+21.0)-29.0)\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": " Paul made 3 dollars mowing lawns and 3 dollars weed eating. If he only spent 3 dollar a week, how long would the money last him? ", + "Output Program": [ + "answer=((3.0+3.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " A store had 86 coloring books in stock. They ended up putting them on sale and getting rid of 37 of them. The put the ones they still had onto shelves with 7 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((86.0-37.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " John was organizing his baseball cards in a binder with 3 on each page. If he had 8 new cards and 16 old cards to put in the binder, how many pages would he use? ", + "Output Program": [ + "answer=((8.0+16.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " Janet was playing a video game and had 47 lives. In a hard part of the game she lost 23 lives. If she got 46 more lives in the next level, how many lives would she have? ", + "Output Program": [ + "answer=((47.0+46.0)-23.0)\nprint(answer)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": " Paige's team won their dodgeball game and scored 41 points total. If Paige scored 11 of the points and everyone else scored 6 points each, how many players were on her team? ", + "Output Program": [ + "answer=((41.0-11.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " Henry was helping the cafeteria workers pick up lunch trays, but he could only carry 9 trays at a time. If he had to pick up 29 trays from one table and 52 trays from another, how many trips will he make? ", + "Output Program": [ + "answer=((29.0+52.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " At the fair there were 7 people in line for the bumper cars. If 4 of them got tired of waiting and left and 8 more got in line, how many people would be in line? ", + "Output Program": [ + "answer=((7.0+8.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": " Chloe was playing a video game where she scores 9 points for each treasure she finds. If she found 6 treasures on the first level and 3 on the second, what would her score be? ", + "Output Program": [ + "answer=(9.0*(6.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "81" + ], + "split": "train" + }, + { + "Input": " Roger had 68 dollars. If he spent 47 bucks on a new game, how many 7 dollar toys could he buy with the money he had left? ", + "Output Program": [ + "answer=((68.0-47.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " A new building needed 14 windows. The builder had already installed 8 of them. If it takes 8 hours to install each window, how long will it take him to install the rest? ", + "Output Program": [ + "answer=(8.0*(14.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": " A waiter had 33 customers to wait on. If 31 customers left and he got another 26 customers, how many customers would he have? ", + "Output Program": [ + "answer=((33.0+26.0)-31.0)\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": " Tom had 5 books. If he sold 4 of them and used the money he earned to buy 38 new books, how many books would Tom have? ", + "Output Program": [ + "answer=((5.0+38.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "39" + ], + "split": "train" + }, + { + "Input": " There are 65 students trying out for the school's trivia teams. If 17 of them didn't get picked for the team and the rest were put into 8 groups, how many students would be in each group? ", + "Output Program": [ + "answer=((65.0-17.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Debby's class is going on a field trip to the zoo. If each van can hold 9 people and there are 40 students and 14 adults going, how many vans will they need? ", + "Output Program": [ + "answer=((40.0+14.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " While shopping for music online, Isabel bought 4 country albums and 5 pop albums. Each album came with a lyric sheet and had 8 songs. How many songs did Isabel buy total? ", + "Output Program": [ + "answer=(8.0*(4.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " A painter needed to paint 12 rooms in a building. Each room takes 7 hours to paint. If he already painted 5 rooms, how much longer will he take to paint the rest? ", + "Output Program": [ + "answer=(7.0*(12.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "49" + ], + "split": "train" + }, + { + "Input": " Olivia uploaded 5 pictures from her phone and 35 from her camera to facebook. If she sorted the pics into 8 different albums with the same amount of pics in each album, how many pictures were in each of the albums? ", + "Output Program": [ + "answer=((5.0+35.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " Oliver had 11 socks. If he threw away 4 old ones that didn't fit and bought 26 new ones, how many socks would he have? ", + "Output Program": [ + "answer=((11.0+26.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": " Henry had 11 dollars. For his birthday he got 18 more dollars but spent 10 on a new game. How much money does he have now? ", + "Output Program": [ + "answer=((11.0+18.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": " Isabel was selling her necklaces at a garage sale. She sold 3 bead necklaces and 3 gem stone necklaces. If each necklace cost 6 dollars, how much money did she earn? ", + "Output Program": [ + "answer=(6.0*(3.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "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, how much money did she earn? ", + "Output Program": [ + "answer=(7.0*(9.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": " A trivia team had 9 members total, but during a game 3 members didn't show up. If each member that did show up scored 2 points, how many points were scored total? ", + "Output Program": [ + "answer=(2.0*(9.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": " At the fair there were 31 people in line for the bumper cars. If 25 of them got tired of waiting and left and 25 more got in line, how many people would be in line? ", + "Output Program": [ + "answer=((31.0+25.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": " Maria was making baggies of cookies with 3 cookies in each bag. If she had 2 chocolate chip cookies and 16 oatmeal cookies, how many baggies could she make? ", + "Output Program": [ + "answer=((2.0+16.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Kaleb had 10 video games but 8 of them weren't working. If he wanted to sell the working games for $6 each, how much money could he earn? ", + "Output Program": [ + "answer=(6.0*(10.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": " Kaleb had 12 dollars. If he spent 8 bucks on a new game, how many 2 dollar toys could he buy with the money he had left? ", + "Output Program": [ + "answer=((12.0-8.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Jerry is at the library helping put away books. There are 34 book to put away total but a librarian takes 7 of them and leaves Jerry with the rest. If he can fit 3 books on a shelf, how many shelves will he need? ", + "Output Program": [ + "answer=((34.0-7.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " At the fair there were 12 people in line for the bumper cars. If 10 of them got tired of waiting and left and 15 more got in line, how many people would be in line? ", + "Output Program": [ + "answer=((12.0+15.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": " Rachel bought two coloring books. One had 23 pictures and the other had 32. After one week she had already colored 44 of the pictures. How many pictures does she still have to color? ", + "Output Program": [ + "answer=((23.0+32.0)-44.0)\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": " Jerry had 7 action figures, but needed 16 total for a complete collection. If each one costs $8, how much money would he need to finish his collection? ", + "Output Program": [ + "answer=(8.0*(16.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "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, how many students didn't make the cut? ", + "Output Program": [ + "answer=((39.0+4.0)-26.0)\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": " Mike made 14 dollars mowing lawns and 26 dollars weed eating. If he only spent 5 dollar a week, how long would the money last him? ", + "Output Program": [ + "answer=((14.0+26.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " For homework Amy had 18 math problems and 6 spelling problems. If she can finish 4 problems in an hour how long will it take her to finish all the problems? ", + "Output Program": [ + "answer=((18.0+6.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " There were 8 friends playing a video game online when 3 players quit. If each player left had 3 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(3.0*(8.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": " Chloe was organizing her book case making sure each of the shelves had exactly 6 books on it. If she had 5 shelves of mystery books and 4 shelves of picture books, how many books did she have total? ", + "Output Program": [ + "answer=(6.0*(5.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "train" + }, + { + "Input": " Zoe bought two coloring books. One had 44 pictures and the other had 44. After one week she had already colored 20 of the pictures. How many pictures does she still have to color? ", + "Output Program": [ + "answer=((44.0+44.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "68" + ], + "split": "train" + }, + { + "Input": " Frank made 5 dollars mowing lawns and 58 dollars weed eating. If he only spent 7 dollar a week, how long would the money last him? ", + "Output Program": [ + "answer=((5.0+58.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " A company invited 45 people to a luncheon, but 35 of them didn't show up. If the tables they had held 2 people each, how many tables do they need? ", + "Output Program": [ + "answer=((45.0-35.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " Mike made 69 dollars mowing lawns over the summer. If he spent 24 dollars buying new mower blades, how many 5 dollar games could he buy with the money he had left? ", + "Output Program": [ + "answer=((69.0-24.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " For the school bake sale Katie made pastries. She baked 7 cupcakes and 5 cookies. After the sale she had 8 to take back home. How many pastries did she sell? ", + "Output Program": [ + "answer=((7.0+5.0)-8.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " Megan was organizing her book case making sure each of the shelves had exactly 7 books on it. If she had 8 shelves of mystery books and 2 shelves of picture books, how many books did she have total? ", + "Output Program": [ + "answer=(7.0*(8.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": " While shopping for music online, Zoe bought 3 country albums and 5 pop albums. Each album came with a lyric sheet and had 3 songs. How many songs did Zoe buy total? ", + "Output Program": [ + "answer=(3.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": " Each chocolate bar in a box cost $6. If a box had 13 bars total and Zoe sold all but 6 bars, how much money would she have made? ", + "Output Program": [ + "answer=(6.0*(13.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": " April's discount flowers was having a sale where each flower was 6 dollars. If Maria bought 7 roses and 3 daisies, how much did she spend? ", + "Output Program": [ + "answer=(6.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": " A trivia team had 15 members total, but during a game 6 members didn't show up. If each member that did show up scored 3 points, how many points were scored total? ", + "Output Program": [ + "answer=(3.0*(15.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "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, how many tickets did he use? ", + "Output Program": [ + "answer=(5.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": " Gwen was organizing her book case making sure each of the shelves had exactly 4 books on it. If she had 5 shelves of mystery books and 3 shelves of picture books, how many books did she have total? ", + "Output Program": [ + "answer=(4.0*(5.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": " A florist had 37 roses. If she sold 16 of them and then later picked 19 more, how many roses would she have? ", + "Output Program": [ + "answer=((37.0+19.0)-16.0)\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": " Lana's favorite band was holding a concert where tickets were 6 dollars each. Lana bought 8 tickets for herself and her friends and 2 extra tickets in case anyone else wanted to go. How much did she spend? ", + "Output Program": [ + "answer=(6.0*(8.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": " A book store had 4 books in the bargin bin. If they sold 3 books, but then put 10 more in the bin, how many books would be in the bin? ", + "Output Program": [ + "answer=((4.0+10.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": " While on vacation, Debby took 24 pictures at the zoo and 12 at the museum. If she later deleted 14 of the pictures, how many pictures from her vacation did she still have? ", + "Output Program": [ + "answer=((24.0+12.0)-14.0)\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": " John had 5 dollars. At the store he spent $2 on a new game. If he got another 26 dollars for his allowance, how much money does he have now? ", + "Output Program": [ + "answer=((5.0+26.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": " A pet store had 38 siamese cats and 25 house cats. During a sale they sold 45 cats. How many cats do they have left? ", + "Output Program": [ + "answer=((38.0+25.0)-45.0)\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": " The school cafeteria ordered 33 red apples and 23 green apples for students lunches. But, if only 21 students wanted fruit, how many extra did the cafeteria end up with? ", + "Output Program": [ + "answer=((33.0+23.0)-21.0)\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": " While on vacation, Nancy took 49 pictures at the zoo and 8 at the museum. If she later deleted 38 of the pictures, how many pictures from her vacation did she still have? ", + "Output Program": [ + "answer=((49.0+8.0)-38.0)\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": " A pet shelter had 5 puppies when another 35 were brought in. If 8 puppies a day are adopted, how long would it take for all of them to be adopted? ", + "Output Program": [ + "answer=((5.0+35.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " Megan's class is going on a field trip to the zoo. If each van can hold 5 people and there are 25 students and 5 adults going, how many vans will they need? ", + "Output Program": [ + "answer=((5.0+25.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Zoe baked 5 brownies, but needed 11 total for her party. If she used 7 cups of flour on each one, how much cups of flour does she still need? ", + "Output Program": [ + "answer=(7.0*(11.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": " Isabel had 2 pages of math homework and 4 pages of reading homework. If each page had 5 problems on it, how many problems did she have to complete total? ", + "Output Program": [ + "answer=(5.0*(2.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "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, how many good games did he end up with? ", + "Output Program": [ + "answer=((2.0+2.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " At lunch a waiter had 7 customers and 5 of them didn't leave a tip. If he got $3 each from the ones who did tip, how much money did he earn? ", + "Output Program": [ + "answer=(3.0*(7.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " The schools debate team had 28 boys and 4 girls on it. If they were split into groups of 4 how many groups could they make? ", + "Output Program": [ + "answer=((28.0+4.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " A pet store had 19 siamese cats and 45 house cats. During a sale they sold 56 cats. How many cats do they have left? ", + "Output Program": [ + "answer=((19.0+45.0)-56.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " A store had 120 coloring books in stock. They ended up putting them on sale and getting rid of 39 of them. The put the ones they still had onto shelves with 9 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((120.0-39.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " In fourth grade there were 4 students at the start of the year. During the year 3 students left and 42 new students came to school. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((4.0+42.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": " April's discount flowers was having a sale where each flower was 6 dollars. If Katie bought 5 roses and 5 daisies, how much did she spend? ", + "Output Program": [ + "answer=(6.0*(5.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": " There were 13 friends playing a video game online when 8 players quit. If each player left had 6 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(6.0*(13.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "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, what was his final score? ", + "Output Program": [ + "answer=(5.0*(5.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": " There were 8 friends playing a video game online when 5 players quit. If each player left had 5 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(5.0*(8.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": " A pet store had 78 puppies. In one day they sold 30 of them and put the rest into cages with 8 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((78.0-30.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Bianca picked 23 carrots from her garden. If she threw out 10 of them and then picked 47 more the next day, how many carrots would she have total? ", + "Output Program": [ + "answer=((23.0+47.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": " Nancy had 101 homework problems. She finished 47 of them but still had 6 pages of problems to do. If each page has the same number of problems on it, how many problems are on each page? ", + "Output Program": [ + "answer=((101.0-47.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "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, how many lives would she have? ", + "Output Program": [ + "answer=((43.0+27.0)-14.0)\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": " Roger was putting his spare change into piles. He had 3 piles of quarters and 3 piles of dimes. If each pile had 7 coins in it, how many coins did he have total? ", + "Output Program": [ + "answer=(7.0*(3.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": " Will was working as a sacker at a grocery store where he made 8 dollars an hour. On Monday he worked 8 hours and on Tuesday he worked 2 hours. How much money did Will make in those two days? ", + "Output Program": [ + "answer=(8.0*(8.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "train" + }, + { + "Input": " Megan baked 71 cupcakes for her school's bake sale. If her brother, Todd, ate 43 of them how many packages could she make if she put 7 cupcake in each package? ", + "Output Program": [ + "answer=((71.0-43.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " At a restaurant each adult meal costs $2 and kids eat free. If a group of 9 people came in and 2 were kids, how much would it cost for the group to eat? ", + "Output Program": [ + "answer=(2.0*(9.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": " Olivia and her mom were picking carrots from their garden. Olivia picked 20 and her mother picked 14. If only 19 of the carrots were good, how many bad carrots did they have? ", + "Output Program": [ + "answer=((20.0+14.0)-19.0)\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": " For Halloween Robin scored 23 pieces of candy. She ate 7 pieces the first night and then her sister gave her 21 more pieces. How many pieces of candy does Robin have now? ", + "Output Program": [ + "answer=((23.0+21.0)-7.0)\nprint(answer)" + ], + "Output Answer": [ + "37" + ], + "split": "train" + }, + { + "Input": " Zoe had 42 bottles of water in her fridge. If she drank 25 of them and then bought 30 more, how many bottles would she have? ", + "Output Program": [ + "answer=((42.0+30.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": " Vanessa had 13 music files and 30 video files on her flash drive. If she deleted 10 of the files, how many files were still on her flash drive? ", + "Output Program": [ + "answer=((13.0+30.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": " Kaleb had 39 pieces of clothing to wash. He put 19 of them in one load, but decided to split the rest into 5 equal loads. How many pieces of clothing could go in each of the small loads? ", + "Output Program": [ + "answer=((39.0-19.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " A store had 50 oranges in a bin. If they threw away 40 of the old ones and put 24 new ones in the bin how many would be in the bin? ", + "Output Program": [ + "answer=((50.0+24.0)-40.0)\nprint(answer)" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": " A waiter had 9 tables he was waiting on, with 7 women and 3 men at each table. How many customers total did the waiter have? ", + "Output Program": [ + "answer=(9.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "90" + ], + "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, how many pages would he use? ", + "Output Program": [ + "answer=((8.0+10.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Dave bought 12 boxes of chocolate candy and gave 5 to his little brother. If each box has 3 pieces inside it, how many pieces did Dave still have? ", + "Output Program": [ + "answer=(3.0*(12.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": " Wendy uploaded 45 pictures to Facebook. She put 27 pics into one album and put the rest into 9 different albums. How many pictures were in each album? ", + "Output Program": [ + "answer=((45.0-27.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Frank made 19 dollars mowing lawns over the summer. If he spent 11 dollars buying new mower blades, how many 2 dollar games could he buy with the money he had left? ", + "Output Program": [ + "answer=((19.0-11.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " There were 17 girls and 32 boys trying out for the schools basketball team. If only 10 of them got called back, how many students didn't make the cut? ", + "Output Program": [ + "answer=((17.0+32.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "39" + ], + "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. How many pastries did she sell? ", + "Output Program": [ + "answer=((4.0+29.0)-24.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " In fourth grade there were 35 students at the start of the year. During the year 10 students left and 10 new students came to school. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((35.0+10.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": " Luke made 9 dollars mowing lawns and 18 dollars weed eating. If he only spent 3 dollar a week, how long would the money last him? ", + "Output Program": [ + "answer=((9.0+18.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " A pet store had 12 siamese cats and 20 house cats. During a sale they sold 20 cats. How many cats do they have left? ", + "Output Program": [ + "answer=((12.0+20.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": " At the town carnival Oliver rode the ferris wheel 7 times and the bumper cars 3 times. If each ride cost 3 tickets, how many tickets did he use? ", + "Output Program": [ + "answer=(3.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": " The cafeteria had 86 apples. For lunch they handed out 30 to students and decided to use the rest to make pies. If each pie takes 8 apples, how many pies could they make? ", + "Output Program": [ + "answer=((86.0-30.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " At Tom's Restaurant a group with 2 adults and 5 children came in to eat. If each meal cost 8 dollars, how much was the bill? ", + "Output Program": [ + "answer=(8.0*(2.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": " At the fair there were 10 people in line for the bumper cars. If 2 of them got tired of waiting and left and 2 more got in line, how many people would be in line? ", + "Output Program": [ + "answer=((10.0+2.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": " There 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, how many groups would there be? ", + "Output Program": [ + "answer=((48.0+6.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " A chef needs to cook 15 potatoes. He has already cooked 6. If each potato takes 8 minutes to cook, how long will it take him to cook the rest? ", + "Output Program": [ + "answer=(8.0*(15.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "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, how many pies could they make? ", + "Output Program": [ + "answer=((62.0-8.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Luke had 47 pieces of clothing to wash. He put 17 of them in one load, but decided to split the rest into 5 equal loads. How many pieces of clothing could go in each of the small loads? ", + "Output Program": [ + "answer=((47.0-17.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "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, how many more problems does she have to grade? ", + "Output Program": [ + "answer=(4.0*(9.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": " A trivia team had 7 members total, but during a game 2 members didn't show up. If each member that did show up scored 4 points, how many points were scored total? ", + "Output Program": [ + "answer=(4.0*(7.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": " At the arcade Cody won 49 tickets. If he spent 25 tickets on a beanie and later won 6 more tickets, how many would he have? ", + "Output Program": [ + "answer=((49.0+6.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": " While playing at the arcade, Edward won 3 tickets playing 'whack a mole' and 5 tickets playing 'skee ball'. If he was trying to buy candy that cost 4 tickets a piece, how many could he buy? ", + "Output Program": [ + "answer=((3.0+5.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "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, how many should he buy? ", + "Output Program": [ + "answer=(4.0*(13.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "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. How much did she spend? ", + "Output Program": [ + "answer=(4.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": " While playing at the arcade, Luke won 2 tickets playing 'whack a mole' and 13 tickets playing 'skee ball'. If he was trying to buy candy that cost 3 tickets a piece, how many could he buy? ", + "Output Program": [ + "answer=((2.0+13.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " At a restaurant each adult meal costs $7 and kids eat free. If a group of 13 people came in and 9 were kids, how much would it cost for the group to eat? ", + "Output Program": [ + "answer=(7.0*(13.0-9.0))\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": " A waiter had 21 customers in his section. If 12 of them left and the rest of his tables had 3 people at each table, how many tables did he have? ", + "Output Program": [ + "answer=((21.0-12.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " Maria bought 2 new chairs and 2 new tables for her house. If she spent 8 minutes on each piece furniture putting it together, how many minutes did it take her to finish? ", + "Output Program": [ + "answer=(8.0*(2.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": " There are 17 students trying out for the school's trivia teams. If 5 of them didn't get picked for the team and the rest were put into 3 groups, how many students would be in each group? ", + "Output Program": [ + "answer=((17.0-5.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " Will had 83 dollars. If he spent 47 bucks on a new game, how many 4 dollar toys could he buy with the money he had left? ", + "Output Program": [ + "answer=((83.0-47.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " A waiter had 5 tables he was waiting on, with 5 women and 3 men at each table. How many customers total did the waiter have? ", + "Output Program": [ + "answer=(5.0*(5.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": " A pet store has 8 bird cages. If each cage has 2 parrots and 7 parakeets in it, how many birds does the pet store have total? ", + "Output Program": [ + "answer=(8.0*(2.0+7.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " A painter needed to paint 11 rooms in a building. Each room takes 7 hours to paint. If he already painted 2 rooms, how much longer will he take to paint the rest? ", + "Output Program": [ + "answer=(7.0*(11.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " Nancy had 80 files on her computer. She deleted 31 of them and put the rest into folders with 7 files in each one. How many folders did Nancy end up with? ", + "Output Program": [ + "answer=((80.0-31.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "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, how many rides could he go on? ", + "Output Program": [ + "answer=((79.0-23.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " John was trying to expand his game collection. He bought 21 games from a friend and bought 8 more at a garage sale. If 23 of the games didn't work, how many good games did he end up with? ", + "Output Program": [ + "answer=((21.0+8.0)-23.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "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, how many pictures from her vacation did she still have? ", + "Output Program": [ + "answer=((15.0+18.0)-31.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Oliver was organizing his baseball cards in a binder with 3 on each page. If he had 2 new cards and 10 old cards to put in the binder, how many pages would he use? ", + "Output Program": [ + "answer=((2.0+10.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " At the town carnival Oliver rode the ferris wheel 5 times and the bumper cars 4 times. If each ride cost 7 tickets, how many tickets did he use? ", + "Output Program": [ + "answer=(7.0*(5.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " Sarah baked 38 cupcakes for her school's bake sale. If her brother, Todd, ate 14 of them how many packages could she make if she put 8 cupcake in each package? ", + "Output Program": [ + "answer=((38.0-14.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " A store had 5 oranges in a bin. If they threw away 2 of the old ones and put 28 new ones in the bin how many would be in the bin? ", + "Output Program": [ + "answer=((5.0+28.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": " A pet store had 13 siamese cats and 5 house cats. During a sale they sold 10 cats. How many cats do they have left? ", + "Output Program": [ + "answer=((13.0+5.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " There were 4 friends playing a video game online when 5 more players joined the game. If each player had 3 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(3.0*(4.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "train" + }, + { + "Input": " Isabel baked 39 cupcakes for her school's bake sale. If her brother, Todd, ate 21 of them how many packages could she make if she put 3 cupcake in each package? ", + "Output Program": [ + "answer=((39.0-21.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Oliver had to wash 39 short sleeve shirts and 47 long sleeve shirts before school. If he had only washed 20 of them by the time school started, how many did he not wash? ", + "Output Program": [ + "answer=((39.0+47.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "66" + ], + "split": "train" + }, + { + "Input": " Maria had 14 bottles of water in her fridge. If she drank 8 of them and then bought 45 more, how many bottles would she have? ", + "Output Program": [ + "answer=((14.0+45.0)-8.0)\nprint(answer)" + ], + "Output Answer": [ + "51" + ], + "split": "train" + }, + { + "Input": " Bianca picked 39 tulips and 49 roses to make flower bouquets. If she only used 81 of the flowers though, how many extra flowers did Bianca pick? ", + "Output Program": [ + "answer=((39.0+49.0)-81.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " Nancy's old washing machine could only wash 9 pieces of clothing at a time. If she had to wash 19 shirts and 8 sweaters how many loads would she have to do? ", + "Output Program": [ + "answer=((19.0+8.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " Oliver made 35 dollars mowing lawns over the summer. If he spent 7 dollars buying new mower blades, how many 4 dollar games could he buy with the money he had left? ", + "Output Program": [ + "answer=((35.0-7.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " Paige picked 53 flowers for her friend\u2019s wedding. She was making bouquets with 7 flowers in each one. If 18 of the flowers wilted before the wedding, how many bouquets could she still make? ", + "Output Program": [ + "answer=((53.0-18.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " At the arcade Dave won 25 tickets. If he spent 22 tickets on a beanie and later won 15 more tickets, how many would he have? ", + "Output Program": [ + "answer=((25.0+15.0)-22.0)\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": " Kaleb had 34 books. If he sold 17 of them and used the money he earned to buy 7 new books, how many books would Kaleb have? ", + "Output Program": [ + "answer=((34.0+7.0)-17.0)\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": " For a birthday party George bought 10 regular sodas and 22 diet sodas. If his fridge would only hold 4 on each shelf, how many shelves would he fill up? ", + "Output Program": [ + "answer=((10.0+22.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " Roger had 45 dollars in January. By March he had spent 20 dollars. If he got another 46 dollars from his mom, how much money would he have? ", + "Output Program": [ + "answer=((45.0+46.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "71" + ], + "split": "train" + }, + { + "Input": " Dave was helping the cafeteria workers pick up lunch trays, but he could only carry 9 trays at a time. If he had to pick up 17 trays from one table and 55 trays from another, how many trips will he make? ", + "Output Program": [ + "answer=((17.0+55.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " There are 64 students trying out for the school's trivia teams. If 36 of them didn't get picked for the team and the rest were put into 4 groups, how many students would be in each group? ", + "Output Program": [ + "answer=((64.0-36.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " Bianca had 45 coloring books. If she gave away 6 of them, but then bought 20 more, how many would she have total? ", + "Output Program": [ + "answer=((45.0+20.0)-6.0)\nprint(answer)" + ], + "Output Answer": [ + "59" + ], + "split": "train" + }, + { + "Input": " Paul had saved up 3 dollars. If he received another 7 dollars for his allowance, how many 5 dollar toys could he buy? ", + "Output Program": [ + "answer=((3.0+7.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " At lunch a waiter had 9 customers and 5 of them didn't leave a tip. If he got $8 each from the ones who did tip, how much money did he earn? ", + "Output Program": [ + "answer=(8.0*(9.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "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. How many songs did Megan buy total? ", + "Output Program": [ + "answer=(7.0*(2.0+8.0))\nprint(answer)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": " Gwen and her friends were recycling paper for their class. For every 3 pounds they recycled they earned one point. If Gwen recycled 5 pounds and her friends recycled 13 pounds, how many points did they earn? ", + "Output Program": [ + "answer=((5.0+13.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "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, how many shelves would he fill up? ", + "Output Program": [ + "answer=((41.0+22.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " Megan was selling her necklaces at a garage sale. She sold 7 bead necklaces and 3 gem stone necklaces. If each necklace cost 9 dollars, how much money did she earn? ", + "Output Program": [ + "answer=(9.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "90" + ], + "split": "train" + }, + { + "Input": " Sam invited 9 friends to a birthday party, but 6 couldn't come. If he wanted to buy enough cupcakes so each person could have exactly 2, how many should he buy? ", + "Output Program": [ + "answer=(2.0*(9.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "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, how much money did he end up with? ", + "Output Program": [ + "answer=((2.0+27.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": " Edward was trying to expand his game collection. He bought 41 games from a friend and bought 14 more at a garage sale. If 31 of the games didn't work, how many good games did he end up with? ", + "Output Program": [ + "answer=((41.0+14.0)-31.0)\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": " Lana was unboxing some of her old winter clothes. She found 3 boxes of clothing and inside each box there were 3 scarves and 4 mittens. How many pieces of winter clothing did Lana have total? ", + "Output Program": [ + "answer=(3.0*(3.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": " A waiter had 6 tables he was waiting on, with 3 women and 5 men at each table. How many customers total did the waiter have? ", + "Output Program": [ + "answer=(6.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "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, how many shelves will he need? ", + "Output Program": [ + "answer=((46.0-10.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " In fourth grade there were 31 students at the start of the year. During the year 5 students left and 11 new students came to school. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((31.0+11.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "37" + ], + "split": "train" + }, + { + "Input": " The cafeteria had 50 apples. For lunch they handed out 5 to students and decided to use the rest to make pies. If each pie takes 5 apples, how many pies could they make? ", + "Output Program": [ + "answer=((50.0-5.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "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, how many coins did he have total? ", + "Output Program": [ + "answer=(3.0*(5.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "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. How many small gardens did Emily have? ", + "Output Program": [ + "answer=((41.0-29.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "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, how much money did he earn? ", + "Output Program": [ + "answer=(2.0*(5.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " Adam bought 2 boxes of chocolate candy and 5 boxes of caramel candy. If each box has 4 pieces inside it, how much candy did he have total? ", + "Output Program": [ + "answer=(4.0*(2.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": " Wendy picked 45 flowers for her friend\u2019s wedding. She was making bouquets with 5 flowers in each one. If 35 of the flowers wilted before the wedding, how many bouquets could she still make? ", + "Output Program": [ + "answer=((45.0-35.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " A company invited 24 people to a luncheon, but 10 of them didn't show up. If the tables they had held 7 people each, how many tables do they need? ", + "Output Program": [ + "answer=((24.0-10.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " While shopping for music online, Isabel bought 6 country albums and 2 pop albums. Each album came with a lyric sheet and had 9 songs. How many songs did Isabel buy total? ", + "Output Program": [ + "answer=(9.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " Rachel was unboxing some of her old winter clothes. She found 7 boxes of clothing and inside each box there were 3 scarves and 4 mittens. How many pieces of winter clothing did Rachel have total? ", + "Output Program": [ + "answer=(7.0*(3.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "49" + ], + "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, how much money would she have made? ", + "Output Program": [ + "answer=(3.0*(7.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "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 one table and 2 trays from another, how many trips will he make? ", + "Output Program": [ + "answer=((10.0+2.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " Ned had 15 video games but 6 of them weren't working. If he wanted to sell the working games for $7 each, how much money could he earn? ", + "Output Program": [ + "answer=(7.0*(15.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " Paige had 8 songs on her mp3 player. If she deleted 5 old songs from it and then added 30 new songs, how many songs does she have on her mp3 player? ", + "Output Program": [ + "answer=((8.0+30.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": " Nancy uploaded 51 pictures to Facebook. She put 11 pics into one album and put the rest into 8 different albums. How many pictures were in each album? ", + "Output Program": [ + "answer=((51.0-11.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " Kaleb had saved up 21 dollars. If he received another 15 dollars for his allowance, how many 6 dollar toys could he buy? ", + "Output Program": [ + "answer=((21.0+15.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " In fourth grade there were 33 students at the start of the year. During the year 18 students left and 14 new students came to school. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((33.0+14.0)-18.0)\nprint(answer)" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": " Jerry was helping the cafeteria workers pick up lunch trays, but he could only carry 8 trays at a time. If he had to pick up 9 trays from one table and 7 trays from another, how many trips will he make? ", + "Output Program": [ + "answer=((9.0+7.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Emily was planting vegetables in her garden. She started with 42 seeds and planted 36 of them in the big garden and in each of her small gardens put 2 seeds each. How many small gardens did Emily have? ", + "Output Program": [ + "answer=((42.0-36.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " Faye and her mom were picking carrots from their garden. Faye picked 23 and her mother picked 5. If only 12 of the carrots were good, how many bad carrots did they have? ", + "Output Program": [ + "answer=((23.0+5.0)-12.0)\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": " Paige had 11 songs on her mp3 player. If she deleted 9 old songs from it and then added 8 new songs, how many songs does she have on her mp3 player? ", + "Output Program": [ + "answer=((11.0+8.0)-9.0)\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": " Nancy and her mom were picking carrots from their garden. Nancy picked 38 and her mother picked 47. If only 71 of the carrots were good, how many bad carrots did they have? ", + "Output Program": [ + "answer=((38.0+47.0)-71.0)\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": " Roger is at the library helping put away books. There are 14 book to put away total but a librarian takes 2 of them and leaves Roger with the rest. If he can fit 3 books on a shelf, how many shelves will he need? ", + "Output Program": [ + "answer=((14.0-2.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " At a restaurant each adult meal costs $8 and kids eat free. If a group of 11 people came in and 2 were kids, how much would it cost for the group to eat? ", + "Output Program": [ + "answer=(8.0*(11.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " Edward earned 4 dollars for each lawn he mowed. If he had 17 lawns to mow, but forgot to mow 9 of them, how much money did he actually earn? ", + "Output Program": [ + "answer=(4.0*(17.0-9.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": " Isabel uploaded 2 pictures from her phone and 4 from her camera to facebook. If she sorted the pics into 3 different albums with the same amount of pics in each album, how many pictures were in each of the albums? ", + "Output Program": [ + "answer=((2.0+4.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Robin's class is going on a field trip to the zoo. If each van can hold 8 people and there are 22 students and 2 adults going, how many vans will they need? ", + "Output Program": [ + "answer=((22.0+2.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "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 how many would each person get? ", + "Output Program": [ + "answer=((9.0+7.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " For Halloween Bianca received 32 pieces of candy. She ate 12 pieces then placed the rest into piles with 5 in each pile. How many piles could she make? ", + "Output Program": [ + "answer=((32.0-12.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " A pet store has 4 bird cages. If each cage has 8 parrots and 2 parakeets in it, how many birds does the pet store have total? ", + "Output Program": [ + "answer=(4.0*(8.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": " There were 9 girls and 14 boys trying out for the schools basketball team. If only 2 of them got called back, how many students didn't make the cut? ", + "Output Program": [ + "answer=((9.0+14.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": " The school cafeteria had 17 apples. If they used 2 to make lunch for the students and then bought 23 more, how many apples would they have? ", + "Output Program": [ + "answer=((17.0+23.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "38" + ], + "split": "train" + }, + { + "Input": " Chloe baked 7 brownies, but needed 16 total for her party. If she used 6 cups of flour on each one, how much cups of flour does she still need? ", + "Output Program": [ + "answer=(6.0*(16.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "train" + }, + { + "Input": " Paige had 27 files on her computer. She deleted 9 of them and put the rest into folders with 6 files in each one. How many folders did Paige end up with? ", + "Output Program": [ + "answer=((27.0-9.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " Victor was helping the cafeteria workers pick up lunch trays, but he could only carry 7 trays at a time. If he had to pick up 23 trays from one table and 5 trays from another, how many trips will he make? ", + "Output Program": [ + "answer=((23.0+5.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " At lunch a waiter had 7 customers and 4 of them didn't leave a tip. If he got $9 each from the ones who did tip, how much money did he earn? ", + "Output Program": [ + "answer=(9.0*(7.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "train" + }, + { + "Input": " Wendy was playing a video game and had 10 lives. In a hard part of the game she lost 6 lives. If she got 37 more lives in the next level, how many lives would she have? ", + "Output Program": [ + "answer=((10.0+37.0)-6.0)\nprint(answer)" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": " In fourth grade there were 8 students at the start of the year. During the year 5 students left and 8 new students came to school. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((8.0+8.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": " While on vacation, Gwen took 41 pictures at the zoo and 29 at the museum. If she later deleted 15 of the pictures, how many pictures from her vacation did she still have? ", + "Output Program": [ + "answer=((41.0+29.0)-15.0)\nprint(answer)" + ], + "Output Answer": [ + "55" + ], + "split": "train" + }, + { + "Input": " Adam bought 13 boxes of chocolate candy and gave 7 to his little brother. If each box has 6 pieces inside it, how many pieces did Adam still have? ", + "Output Program": [ + "answer=(6.0*(13.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "train" + }, + { + "Input": " A painter needed to paint 9 rooms in a building. Each room takes 8 hours to paint. If he already painted 5 rooms, how much longer will he take to paint the rest? ", + "Output Program": [ + "answer=(8.0*(9.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": " Kaleb started his own lawn mowing business. In the spring he made 4 dollars mowing lawns and in the summer he made 50 dollars. If he had to spend 4 dollars buying supplies, how much money did he end up with? ", + "Output Program": [ + "answer=((4.0+50.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": " Janet was playing a video game and had 38 lives. In a hard part of the game she lost 16 lives. If she got 32 more lives in the next level, how many lives would she have? ", + "Output Program": [ + "answer=((38.0+32.0)-16.0)\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "train" + }, + { + "Input": " John had 33 socks. If he threw away 19 old ones that didn't fit and bought 13 new ones, how many socks would he have? ", + "Output Program": [ + "answer=((33.0+13.0)-19.0)\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "train" + }, + { + "Input": " Megan picked 19 carrots from her garden. If she threw out 4 of them and then picked 46 more the next day, how many carrots would she have total? ", + "Output Program": [ + "answer=((19.0+46.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": " Wendy uploaded 22 pictures from her phone and 2 from her camera to facebook. If she sorted the pics into 4 different albums with the same amount of pics in each album, how many pictures were in each of the albums? ", + "Output Program": [ + "answer=((22.0+2.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " While on vacation, Haley took 50 pictures at the zoo and 8 at the museum. If she later deleted 38 of the pictures, how many pictures from her vacation did she still have? ", + "Output Program": [ + "answer=((50.0+8.0)-38.0)\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": " Will made 104 dollars mowing lawns over the summer. If he spent 41 dollars buying new mower blades, how many 9 dollar games could he buy with the money he had left? ", + "Output Program": [ + "answer=((104.0-41.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": " Henry had 3 action figures, but needed 8 total for a complete collection. If each one costs $6, how much money would he need to finish his collection? ", + "Output Program": [ + "answer=(6.0*(8.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "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, how many carrots would she have total? ", + "Output Program": [ + "answer=((48.0+15.0)-11.0)\nprint(answer)" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": " Chloe picked 48 carrots from her garden. If she threw out 45 of them and then picked 42 more the next day, how many carrots would she have total? ", + "Output Program": [ + "answer=((48.0+42.0)-45.0)\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "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, how much money did Adam spend riding the ferris wheel? ", + "Output Program": [ + "answer=(9.0*(13.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "81" + ], + "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, how many points would you earn? ", + "Output Program": [ + "answer=(3.0*(6.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": " Sam had to wash 40 short sleeve shirts and 23 long sleeve shirts before school. If he had only washed 29 of them by the time school started, how many did he not wash? ", + "Output Program": [ + "answer=((40.0+23.0)-29.0)\nprint(answer)" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": " A trivia team had 12 members total, but during a game 4 members didn't show up. If each member that did show up scored 8 points, how many points were scored total? ", + "Output Program": [ + "answer=(8.0*(12.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "train" + }, + { + "Input": " A group of 3 friends went into a restaurant. The chef already had 8 chicken wings cooked but cooked 10 more for the group. If they each got the same amount how many would each person get? ", + "Output Program": [ + "answer=((8.0+10.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Rachel was playing a video game where she scores 9 points for each treasure she finds. If she found 5 treasures on the first level and 2 on the second, what would her score be? ", + "Output Program": [ + "answer=(9.0*(5.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " A chef needs to cook 16 potatoes. He has already cooked 7. If each potato takes 5 minutes to cook, how long will it take him to cook the rest? ", + "Output Program": [ + "answer=(5.0*(16.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": " Zoe had 6 songs on her mp3 player. If she deleted 3 old songs from it and then added 20 new songs, how many songs does she have on her mp3 player? ", + "Output Program": [ + "answer=((6.0+20.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": " Zoe had 15 songs on her mp3 player. If she deleted 8 old songs from it and then added 50 new songs, how many songs does she have on her mp3 player? ", + "Output Program": [ + "answer=((15.0+50.0)-8.0)\nprint(answer)" + ], + "Output Answer": [ + "57" + ], + "split": "train" + }, + { + "Input": " For Halloween Emily received 5 pieces of candy from neighbors and 13 pieces from her older sister. If she only ate 9 pieces a day, how long would the candy last her? ", + "Output Program": [ + "answer=((5.0+13.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " Ned was trying to expand his game collection. He bought 11 games from a friend and bought 22 more at a garage sale. If 19 of the games didn't work, how many good games did he end up with? ", + "Output Program": [ + "answer=((11.0+22.0)-19.0)\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": " Maria was making baggies of cookies with 8 cookies in each bag. If she had 5 chocolate chip cookies and 19 oatmeal cookies, how many baggies could she make? ", + "Output Program": [ + "answer=((5.0+19.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " The school cafeteria had 23 apples. If they used 20 to make lunch for the students and then bought 6 more, how many apples would they have? ", + "Output Program": [ + "answer=((23.0+6.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " A worksheet had 4 problems on it. If a teacher had 16 worksheets to grade and had already graded 8 of them, how many more problems does she have to grade? ", + "Output Program": [ + "answer=(4.0*(16.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": " Luke was organizing his baseball cards in a binder with 3 on each page. If he had 3 new cards and 9 old cards to put in the binder, how many pages would he use? ", + "Output Program": [ + "answer=((3.0+9.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "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, how many baggies could she make? ", + "Output Program": [ + "answer=((13.0+41.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Sam was collecting cans for recycling. On Saturday he filled 3 bags up and on Sunday he filled 4 more bags. If each bag had 9 cans in it, how many cans did he pick up total? ", + "Output Program": [ + "answer=(9.0*(3.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " Janet picked 4 tulips and 11 roses to make flower bouquets. If she only used 11 of the flowers though, how many extra flowers did Janet pick? ", + "Output Program": [ + "answer=((4.0+11.0)-11.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " Haley uploaded 65 pictures to Facebook. She put 17 pics into one album and put the rest into 6 different albums. How many pictures were in each album? ", + "Output Program": [ + "answer=((65.0-17.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " A pet store has 9 bird cages. If each cage has 2 parrots and 6 parakeets in it, how many birds does the pet store have total? ", + "Output Program": [ + "answer=(9.0*(2.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "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, how much did she spend? ", + "Output Program": [ + "answer=(3.0*(2.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": " Sarah had 60 homework problems. She finished 20 of them but still had 5 pages of problems to do. If each page has the same number of problems on it, how many problems are on each page? ", + "Output Program": [ + "answer=((60.0-20.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " A pet store had 102 puppies. In one day they sold 21 of them and put the rest into cages with 9 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((102.0-21.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " A florist had 50 roses. If she sold 15 of them and then later picked 21 more, how many roses would she have? ", + "Output Program": [ + "answer=((50.0+21.0)-15.0)\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": " A magician was selling magic card decks for 7 dollars each. If he started with 16 decks and by the end of the day he had 8 left, how much money did he earn? ", + "Output Program": [ + "answer=(7.0*(16.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": " There were 16 friends playing a video game online when 7 players quit. If each player left had 8 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(8.0*(16.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " Luke 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 20 trays from one table and 16 trays from another, how many trips will he make? ", + "Output Program": [ + "answer=((20.0+16.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " Each chocolate bar in a box cost $4. If a box had 8 bars total and Emily sold all but 3 bars, how much money would she have made? ", + "Output Program": [ + "answer=(4.0*(8.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": " A florist had 11 roses. If she sold 2 of them and then later picked 32 more, how many roses would she have? ", + "Output Program": [ + "answer=((11.0+32.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "41" + ], + "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, how many books did she have total? ", + "Output Program": [ + "answer=(9.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " A waiter had 7 tables he was waiting on, with 7 women and 2 men at each table. How many customers total did the waiter have? ", + "Output Program": [ + "answer=(7.0*(7.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " In a video game, each enemy defeated gives you 5 points. If a level has 8 enemies total and you destroy all but 6 of them, how many points would you earn? ", + "Output Program": [ + "answer=(5.0*(8.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": " A pet store has 6 bird cages. If each cage has 6 parrots and 2 parakeets in it, how many birds does the pet store have total? ", + "Output Program": [ + "answer=(6.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": " For the school bake sale Carol made 30 cupcakes. If she sold 9 of them and then made 28 more, how many cupcakes would she have? ", + "Output Program": [ + "answer=((30.0+28.0)-9.0)\nprint(answer)" + ], + "Output Answer": [ + "49" + ], + "split": "train" + }, + { + "Input": " While playing a trivia game, George answered 6 questions correct in the first half and 4 questions correct in the second half. If each question was worth 3 points, what was his final score? ", + "Output Program": [ + "answer=(3.0*(6.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": " Emily was playing a trivia game. In the first round she scored 16 points and in the second round she scored 33 points. In the last round she lost 48 points. How many points did she have at the end of the game? ", + "Output Program": [ + "answer=((16.0+33.0)-48.0)\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": " Gwen had 18 math problems and 11 science problems for homework. If she finished 24 of the problems at school, how many problems did she have to do for homework? ", + "Output Program": [ + "answer=((18.0+11.0)-24.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " In a video game, each enemy defeated gives you 8 points. If a level has 7 enemies total and you destroy all but 2 of them, how many points would you earn? ", + "Output Program": [ + "answer=(8.0*(7.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": " A worksheet had 7 problems on it. If a teacher had 17 worksheets to grade and had already graded 8 of them, how many more problems does she have to grade? ", + "Output Program": [ + "answer=(7.0*(17.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " Kaleb was selling his old games. He started out with 76 but sold 46 of them. He packed the rest up putting 5 games into each box. How many boxes did he have to use? ", + "Output Program": [ + "answer=((76.0-46.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": " Rachel bought 7 new chairs and 3 new tables for her house. If she spent 4 minutes on each piece furniture putting it together, how many minutes did it take her to finish? ", + "Output Program": [ + "answer=(4.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": " Bianca earned 5 points for each bag of cans she recycled. If she had 17 bags, but didn't recycle 8 of them, how many points would she have earned? ", + "Output Program": [ + "answer=(5.0*(17.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": " At the fair Kaleb bought 6 tickets. After riding the ferris wheel he had 3 tickets left. If each ticket cost 9 dollars, how much money did Kaleb spend riding the ferris wheel? ", + "Output Program": [ + "answer=(9.0*(6.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "train" + }, + { + "Input": " Bianca was organizing her book case making sure each of the shelves had exactly 8 books on it. If she had 5 shelves of mystery books and 4 shelves of picture books, how many books did she have total? ", + "Output Program": [ + "answer=(8.0*(5.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " Faye had 34 coloring books. If she gave away 3 of them, but then bought 48 more, how many would she have total? ", + "Output Program": [ + "answer=((34.0+48.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "79" + ], + "split": "train" + }, + { + "Input": " A chef needs to cook 15 potatoes. He has already cooked 8. If each potato takes 9 minutes to cook, how long will it take him to cook the rest? ", + "Output Program": [ + "answer=(9.0*(15.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": " In a video game, each enemy defeated gives you 9 points. If a level has 11 enemies total and you destroy all but 3 of them, how many points would you earn? ", + "Output Program": [ + "answer=(9.0*(11.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": " Mike had 15 video games but 9 of them weren't working. If he wanted to sell the working games for $5 each, how much money could he earn? ", + "Output Program": [ + "answer=(5.0*(15.0-9.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": " Lana picked 36 tulips and 37 roses to make flower bouquets. If she only used 70 of the flowers though, how many extra flowers did Lana pick? ", + "Output Program": [ + "answer=((36.0+37.0)-70.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": " Mike made 42 dollars mowing lawns over the summer. If he spent 10 dollars buying new mower blades, how many 8 dollar games could he buy with the money he had left? ", + "Output Program": [ + "answer=((42.0-10.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": " Gwen earned 8 points for each bag of cans she recycled. If she had 4 bags, but didn't recycle 2 of them, how many points would she have earned? ", + "Output Program": [ + "answer=(8.0*(4.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": " While playing at the arcade, Ned won 26 tickets playing 'whack a mole' and 19 tickets playing 'skee ball'. If he was trying to buy candy that cost 9 tickets a piece, how many could he buy? ", + "Output Program": [ + "answer=((26.0+19.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " For a birthday party Cody bought 4 regular sodas and 44 diet sodas. If his fridge would only hold 6 on each shelf, how many shelves would he fill up? ", + "Output Program": [ + "answer=((4.0+44.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": " Frank was collecting cans for recycling. On Saturday he filled 5 bags up and on Sunday he filled 3 more bags. If each bag had 5 cans in it, how many cans did he pick up total? ", + "Output Program": [ + "answer=(5.0*(5.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": " Edward was selling his old games. He started out with 35 but sold 19 of them. He packed the rest up putting 8 games into each box. How many boxes did he have to use? ", + "Output Program": [ + "answer=((35.0-19.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " A store had 40 coloring books in stock. They ended up putting them on sale and getting rid of 20 of them. The put the ones they still had onto shelves with 4 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((40.0-20.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": " Jerry made 14 dollars mowing lawns and 31 dollars weed eating. If he only spent 5 dollar a week, how long would the money last him? ", + "Output Program": [ + "answer=((14.0+31.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": " Nancy picked 12 carrots from her garden. If she threw out 2 of them and then picked 21 more the next day, how many carrots would she have total? ", + "Output Program": [ + "answer=((12.0+21.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": " Amy had 4 music files and 21 video files on her flash drive. If she deleted 23 of the files, how many files were still on her flash drive? ", + "Output Program": [ + "answer=((4.0+21.0)-23.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": " A toy store had 17 giant stuffed bears in stock when they got another shipment with 10 bears in it. The put the bears onto shelves with 9 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((17.0+10.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " Vanessa and her mom were picking carrots from their garden. Vanessa picked 17 and her mother picked 14. If only 24 of the carrots were good, how many bad carrots did they have? ", + "Output Program": [ + "answer=((17.0+14.0)-24.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " Katie baked 18 cupcakes for her school's bake sale. If her brother, Todd, ate 8 of them how many packages could she make if she put 2 cupcake in each package? ", + "Output Program": [ + "answer=((18.0-8.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "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, how many could he buy? ", + "Output Program": [ + "answer=((33.0+9.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " At Billy's Restaurant a group with 2 adults and 5 children came in to eat. If each meal cost 3 dollars, how much was the bill? ", + "Output Program": [ + "answer=(3.0*(2.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "dev" + }, + { + "Input": " Frank and his friend were buying trick decks from the magic shop for 7 dollars each. How much did they spend if Frank bought 3 decks and his friend bought 2 decks? ", + "Output Program": [ + "answer=(7.0*(3.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "dev" + }, + { + "Input": " Dave had to wash 9 short sleeve shirts and 27 long sleeve shirts before school. If he had only washed 20 of them by the time school started, how many did he not wash? ", + "Output Program": [ + "answer=((9.0+27.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": " A pet store has 9 bird cages. If each cage has 2 parrots and 2 parakeets in it, how many birds does the pet store have total? ", + "Output Program": [ + "answer=(9.0*(2.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "dev" + }, + { + "Input": " Katie was selling her necklaces at a garage sale. She sold 4 bead necklaces and 3 gem stone necklaces. If each necklace cost 3 dollars, how much money did she earn? ", + "Output Program": [ + "answer=(3.0*(4.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "dev" + }, + { + "Input": " Isabel uploaded 25 pictures to Facebook. She put 10 pics into one album and put the rest into 5 different albums. How many pictures were in each album? ", + "Output Program": [ + "answer=((25.0-10.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " Tom had 57 dollars. If he spent 49 bucks on a new game, how many 4 dollar toys could he buy with the money he had left? ", + "Output Program": [ + "answer=((57.0-49.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": " A new building needed 9 windows. The builder had already installed 6 of them. If it takes 6 hours to install each window, how long will it take him to install the rest? ", + "Output Program": [ + "answer=(6.0*(9.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "dev" + }, + { + "Input": " Paul made 68 dollars mowing lawns and 13 dollars weed eating. If he only spent 9 dollar a week, how long would the money last him? ", + "Output Program": [ + "answer=((68.0+13.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "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, how many bad carrots did they have? ", + "Output Program": [ + "answer=((29.0+16.0)-38.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " Cody bought 7 boxes of chocolate candy and 3 boxes of caramel candy. If each box has 8 pieces inside it, how much candy did he have total? ", + "Output Program": [ + "answer=(8.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "dev" + }, + { + "Input": " Tom and his friend were buying trick decks from the magic shop for 8 dollars each. How much did they spend if Tom bought 3 decks and his friend bought 5 decks? ", + "Output Program": [ + "answer=(8.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "dev" + }, + { + "Input": " Haley had 27 music files and 42 video files on her flash drive. If she deleted 11 of the files, how many files were still on her flash drive? ", + "Output Program": [ + "answer=((27.0+42.0)-11.0)\nprint(answer)" + ], + "Output Answer": [ + "58" + ], + "split": "dev" + }, + { + "Input": " Bianca uploaded 33 pictures to Facebook. She put 27 pics into one album and put the rest into 3 different albums. How many pictures were in each album? ", + "Output Program": [ + "answer=((33.0-27.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": " Each chocolate bar in a box cost $4. If a box had 11 bars total and Vanessa sold all but 7 bars, how much money would she have made? ", + "Output Program": [ + "answer=(4.0*(11.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": " Nancy's class is going on a field trip to the zoo. If each van can hold 5 people and there are 12 students and 3 adults going, how many vans will they need? ", + "Output Program": [ + "answer=((12.0+3.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " There are 58 students trying out for the school's trivia teams. If 10 of them didn't get picked for the team and the rest were put into 8 groups, how many students would be in each group? ", + "Output Program": [ + "answer=((58.0-10.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "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, how many pictures were in each of the albums? ", + "Output Program": [ + "answer=((35.0+5.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": " A pet shelter had 9 puppies when another 12 were brought in. If 3 puppies a day are adopted, how long would it take for all of them to be adopted? ", + "Output Program": [ + "answer=((9.0+12.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " Gwen was organizing her book case making sure each of the shelves had exactly 9 books on it. If she had 3 shelves of mystery books and 5 shelves of picture books, how many books did she have total? ", + "Output Program": [ + "answer=(9.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "dev" + }, + { + "Input": " Will had 57 dollars. If he spent 27 bucks on a new game, how many 6 dollar toys could he buy with the money he had left? ", + "Output Program": [ + "answer=((57.0-27.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": " Vanessa and her friends were recycling paper for their class. For every 9 pounds they recycled they earned one point. If Vanessa recycled 20 pounds and her friends recycled 16 pounds, how many points did they earn? ", + "Output Program": [ + "answer=((20.0+16.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": " Emily had 7 coloring books. If she gave away 2 of them, but then bought 14 more, how many would she have total? ", + "Output Program": [ + "answer=((7.0+14.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "dev" + }, + { + "Input": " Megan had 93 files on her computer. She deleted 21 of them and put the rest into folders with 8 files in each one. How many folders did Megan end up with? ", + "Output Program": [ + "answer=((93.0-21.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "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. How many pieces of winter clothing did Chloe have total? ", + "Output Program": [ + "answer=(4.0*(2.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "dev" + }, + { + "Input": " While shopping for music online, Faye bought 2 country albums and 3 pop albums. Each album came with a lyric sheet and had 6 songs. How many songs did Faye buy total? ", + "Output Program": [ + "answer=(6.0*(2.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "dev" + }, + { + "Input": " Victor and his friend were buying trick decks from the magic shop for 8 dollars each. How much did they spend if Victor bought 6 decks and his friend bought 2 decks? ", + "Output Program": [ + "answer=(8.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "dev" + }, + { + "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, how many customers did leave a tip? ", + "Output Program": [ + "answer=((29.0+20.0)-34.0)\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "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. How many points did she have at the end of the game? ", + "Output Program": [ + "answer=((40.0+50.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "86" + ], + "split": "dev" + }, + { + "Input": " A pet shelter had 2 puppies when another 34 were brought in. If 4 puppies a day are adopted, how long would it take for all of them to be adopted? ", + "Output Program": [ + "answer=((2.0+34.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": " A pet store had 15 siamese cats and 49 house cats. During a sale they sold 19 cats. How many cats do they have left? ", + "Output Program": [ + "answer=((15.0+49.0)-19.0)\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "dev" + }, + { + "Input": " A pet store has 6 bird cages. If each cage has 2 parrots and 7 parakeets in it, how many birds does the pet store have total? ", + "Output Program": [ + "answer=(6.0*(2.0+7.0))\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "dev" + }, + { + "Input": " The cafeteria had 96 apples. For lunch they handed out 42 to students and decided to use the rest to make pies. If each pie takes 6 apples, how many pies could they make? ", + "Output Program": [ + "answer=((96.0-42.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": " A worksheet had 2 problems on it. If a teacher had 14 worksheets to grade and had already graded 7 of them, how many more problems does she have to grade? ", + "Output Program": [ + "answer=(2.0*(14.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": " Emily bought 4 new chairs and 2 new tables for her house. If she spent 8 minutes on each piece furniture putting it together, how many minutes did it take her to finish? ", + "Output Program": [ + "answer=(8.0*(4.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "dev" + }, + { + "Input": " Will bought 7 boxes of chocolate candy and gave 3 to his little brother. If each box has 4 pieces inside it, how many pieces did Will still have? ", + "Output Program": [ + "answer=(4.0*(7.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": " A worksheet had 3 problems on it. If a teacher had 15 worksheets to grade and had already graded 7 of them, how many more problems does she have to grade? ", + "Output Program": [ + "answer=(3.0*(15.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "dev" + }, + { + "Input": " At the arcade Jerry won 4 tickets. If he spent 2 tickets on a beanie and later won 47 more tickets, how many would he have? ", + "Output Program": [ + "answer=((4.0+47.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "49" + ], + "split": "dev" + }, + { + "Input": " Amy was playing a video game where she scores 4 points for each treasure she finds. If she found 6 treasures on the first level and 2 on the second, what would her score be? ", + "Output Program": [ + "answer=(4.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "dev" + }, + { + "Input": " Victor was working as a sacker at a grocery store where he made 6 dollars an hour. On Monday he worked 5 hours and on Tuesday he worked 5 hours. How much money did Victor make in those two days? ", + "Output Program": [ + "answer=(6.0*(5.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "dev" + }, + { + "Input": " The school cafeteria ordered 6 red apples and 15 green apples for students lunches. But, if only 5 students wanted fruit, how many extra did the cafeteria end up with? ", + "Output Program": [ + "answer=((6.0+15.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": " While shopping, Maria bought 40 green towels and 44 white towels. If she gave her mother 65 of them, how many towels did Maria end up with? ", + "Output Program": [ + "answer=((40.0+44.0)-65.0)\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "dev" + }, + { + "Input": " A store had 31 oranges in a bin. If they threw away 9 of the old ones and put 38 new ones in the bin how many would be in the bin? ", + "Output Program": [ + "answer=((31.0+38.0)-9.0)\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "dev" + }, + { + "Input": " There were 2 friends playing a video game online when 2 more players joined the game. If each player had 6 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(6.0*(2.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "dev" + }, + { + "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, how many points were scored total? ", + "Output Program": [ + "answer=(6.0*(5.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "dev" + }, + { + "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, how many cans did he pick up total? ", + "Output Program": [ + "answer=(8.0*(6.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "dev" + }, + { + "Input": " A pet store had 18 puppies. In one day they sold 3 of them and put the rest into cages with 5 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((18.0-3.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " Tiffany uploaded 7 pictures from her phone and 13 from her camera to facebook. If she sorted the pics into 5 different albums with the same amount of pics in each album, how many pictures were in each of the albums? ", + "Output Program": [ + "answer=((7.0+13.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "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, how many people would be in line? ", + "Output Program": [ + "answer=((9.0+3.0)-6.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": " Adam had 33 books. If he sold 11 of them and used the money he earned to buy 23 new books, how many books would Adam have? ", + "Output Program": [ + "answer=((33.0+23.0)-11.0)\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "dev" + }, + { + "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, how much would it cost for the group to eat? ", + "Output Program": [ + "answer=(3.0*(12.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "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, how many tickets does Tom have left? ", + "Output Program": [ + "answer=((32.0+25.0)-7.0)\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "dev" + }, + { + "Input": " Emily's team won their dodgeball game and scored 39 points total. If Emily scored 23 of the points and everyone else scored 2 points each, how many players were on her team? ", + "Output Program": [ + "answer=((39.0-23.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": " For the school bake sale Robin made 42 cupcakes. If she sold 22 of them and then made 39 more, how many cupcakes would she have? ", + "Output Program": [ + "answer=((42.0+39.0)-22.0)\nprint(answer)" + ], + "Output Answer": [ + "59" + ], + "split": "dev" + }, + { + "Input": " A trivia team had 14 members total, but during a game 7 members didn't show up. If each member that did show up scored 5 points, how many points were scored total? ", + "Output Program": [ + "answer=(5.0*(14.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "dev" + }, + { + "Input": " A new building needed 10 windows. The builder had already installed 6 of them. If it takes 5 hours to install each window, how long will it take him to install the rest? ", + "Output Program": [ + "answer=(5.0*(10.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": " There school's baseball team had 4 new players and 6 returning players. If the coach put them into groups with 5 players in each group, how many groups would there be? ", + "Output Program": [ + "answer=((4.0+6.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": " A florist had 5 roses. If she sold 3 of them and then later picked 34 more, how many roses would she have? ", + "Output Program": [ + "answer=((5.0+34.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "dev" + }, + { + "Input": " While playing a trivia game, Frank answered 3 questions correct in the first half and 2 questions correct in the second half. If each question was worth 3 points, what was his final score? ", + "Output Program": [ + "answer=(3.0*(3.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": " Each chocolate bar in a box cost $2. If a box had 13 bars total and Rachel sold all but 4 bars, how much money would she have made? ", + "Output Program": [ + "answer=(2.0*(13.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "dev" + }, + { + "Input": " At the fair there were 30 people in line for the bumper cars. If 10 of them got tired of waiting and left and 5 more got in line, how many people would be in line? ", + "Output Program": [ + "answer=((30.0+5.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "dev" + }, + { + "Input": " A chef needs to cook 13 potatoes. He has already cooked 5. If each potato takes 6 minutes to cook, how long will it take him to cook the rest? ", + "Output Program": [ + "answer=(6.0*(13.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "dev" + }, + { + "Input": " April's discount flowers was having a sale where each rose was 4 dollars. If April started with 13 roses and had 4 roses left, how much money did she earn? ", + "Output Program": [ + "answer=(4.0*(13.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "dev" + }, + { + "Input": " For the school bake sale Maria made 19 cupcakes. If she sold 5 of them and then made 10 more, how many cupcakes would she have? ", + "Output Program": [ + "answer=((19.0+10.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "dev" + }, + { + "Input": " Amy had 26 music files and 36 video files on her flash drive. If she deleted 48 of the files, how many files were still on her flash drive? ", + "Output Program": [ + "answer=((26.0+36.0)-48.0)\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": " For the school bake sale Katie made 26 cupcakes. If she sold 20 of them and then made 20 more, how many cupcakes would she have? ", + "Output Program": [ + "answer=((26.0+20.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "dev" + }, + { + "Input": " Megan had 40 homework problems. She finished 26 of them but still had 2 pages of problems to do. If each page has the same number of problems on it, how many problems are on each page? ", + "Output Program": [ + "answer=((40.0-26.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " For the school bake sale Bianca made 14 cupcakes. If she sold 6 of them and then made 17 more, how many cupcakes would she have? ", + "Output Program": [ + "answer=((14.0+17.0)-6.0)\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "dev" + }, + { + "Input": " The cafeteria had 75 apples. For lunch they handed out 19 to students and decided to use the rest to make pies. If each pie takes 8 apples, how many pies could they make? ", + "Output Program": [ + "answer=((75.0-19.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " Edward and his friend were buying trick decks from the magic shop for 9 dollars each. How much did they spend if Edward bought 4 decks and his friend bought 4 decks? ", + "Output Program": [ + "answer=(9.0*(4.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "dev" + }, + { + "Input": " Zoe was unboxing some of her old winter clothes. She found 8 boxes of clothing and inside each box there were 4 scarves and 6 mittens. How many pieces of winter clothing did Zoe have total? ", + "Output Program": [ + "answer=(8.0*(4.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "dev" + }, + { + "Input": " A company invited 47 people to a luncheon, but 7 of them didn't show up. If the tables they had held 5 people each, how many tables do they need? ", + "Output Program": [ + "answer=((47.0-7.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": " A store had 40 oranges in a bin. If they threw away 37 of the old ones and put 7 new ones in the bin how many would be in the bin? ", + "Output Program": [ + "answer=((40.0+7.0)-37.0)\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": " Tom bought 14 boxes of chocolate candy and gave 8 to his little brother. If each box has 3 pieces inside it, how many pieces did Tom still have? ", + "Output Program": [ + "answer=(3.0*(14.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "dev" + }, + { + "Input": " Zoe and her friends were recycling paper for their class. For every 8 pounds they recycled they earned one point. If Zoe recycled 25 pounds and her friends recycled 23 pounds, how many points did they earn? ", + "Output Program": [ + "answer=((25.0+23.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": " Mike had 16 video games but 8 of them weren't working. If he wanted to sell the working games for $7 each, how much money could he earn? ", + "Output Program": [ + "answer=(7.0*(16.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "dev" + }, + { + "Input": " Sarah's old washing machine could only wash 5 pieces of clothing at a time. If she had to wash 43 shirts and 2 sweaters how many loads would she have to do? ", + "Output Program": [ + "answer=((43.0+2.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": " Nancy was planting vegetables in her garden. She started with 52 seeds and planted 28 of them in the big garden and in each of her small gardens put 4 seeds each. How many small gardens did Nancy have? ", + "Output Program": [ + "answer=((52.0-28.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": " A vase can hold 6 flowers. If you had 7 carnations and 47 roses, how many vases would you need to hold the flowers? ", + "Output Program": [ + "answer=((7.0+47.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "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. How many pieces of candy does Faye have now? ", + "Output Program": [ + "answer=((47.0+40.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "62" + ], + "split": "dev" + }, + { + "Input": " Tiffany had 6 pages of math homework and 4 pages of reading homework. If each page had 3 problems on it, how many problems did she have to complete total? ", + "Output Program": [ + "answer=(3.0*(6.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "dev" + }, + { + "Input": " Cody had 45 dollars. For his birthday he got 9 more dollars but spent 19 on a new game. How much money does he have now? ", + "Output Program": [ + "answer=((45.0+9.0)-19.0)\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "dev" + }, + { + "Input": " There were 8 friends playing a video game online when 2 more players joined the game. If each player had 6 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(6.0*(8.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "dev" + }, + { + "Input": " Wendy uploaded 79 pictures to Facebook. She put 44 pics into one album and put the rest into 5 different albums. How many pictures were in each album? ", + "Output Program": [ + "answer=((79.0-44.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " A new building needed 14 windows. The builder had already installed 5 of them. If it takes 4 hours to install each window, how long will it take him to install the rest? ", + "Output Program": [ + "answer=(4.0*(14.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "dev" + }, + { + "Input": " Carol was playing a trivia game. In the first round she scored 17 points and in the second round she scored 6 points. In the last round she lost 16 points. How many points did she have at the end of the game? ", + "Output Program": [ + "answer=((17.0+6.0)-16.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " While playing a trivia game, Adam answered 8 questions correct in the first half and 2 questions correct in the second half. If each question was worth 8 points, what was his final score? ", + "Output Program": [ + "answer=(8.0*(8.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "dev" + }, + { + "Input": " While shopping, Maria bought 35 green towels and 21 white towels. If she gave her mother 34 of them, how many towels did Maria end up with? ", + "Output Program": [ + "answer=((35.0+21.0)-34.0)\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "dev" + }, + { + "Input": " Sarah had 4 pages of math homework and 6 pages of reading homework. If each page had 4 problems on it, how many problems did she have to complete total? ", + "Output Program": [ + "answer=(4.0*(4.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "dev" + }, + { + "Input": " Haley was planting vegetables in her garden. She started with 56 seeds and planted 35 of them in the big garden and in each of her small gardens put 3 seeds each. How many small gardens did Haley have? ", + "Output Program": [ + "answer=((56.0-35.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " Vanessa had 16 music files and 48 video files on her flash drive. If she deleted 30 of the files, how many files were still on her flash drive? ", + "Output Program": [ + "answer=((16.0+48.0)-30.0)\nprint(answer)" + ], + "Output Answer": [ + "34" + ], + "split": "dev" + }, + { + "Input": " In fourth grade there were 11 students at the start of the year. During the year 6 students left and 42 new students came to school. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((11.0+42.0)-6.0)\nprint(answer)" + ], + "Output Answer": [ + "47" + ], + "split": "dev" + }, + { + "Input": " Tiffany was playing a video game where she scores 6 points for each treasure she finds. If she found 3 treasures on the first level and 5 on the second, what would her score be? ", + "Output Program": [ + "answer=(6.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "dev" + }, + { + "Input": " A teacher had 34 worksheets to grade. If she graded 7, but then another 36 were turned in, how many worksheets would she have to grade? ", + "Output Program": [ + "answer=((34.0+36.0)-7.0)\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "dev" + }, + { + "Input": " Haley baked 20 cupcakes for her school's bake sale. If her brother, Todd, ate 11 of them how many packages could she make if she put 3 cupcake in each package? ", + "Output Program": [ + "answer=((20.0-11.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " Haley was playing a video game and had 14 lives. In a hard part of the game she lost 4 lives. If she got 36 more lives in the next level, how many lives would she have? ", + "Output Program": [ + "answer=((14.0+36.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "46" + ], + "split": "dev" + }, + { + "Input": " Tom bought 40 tickets at the state fair. He spent 28 tickets at the 'dunk a clown' booth and decided to use the rest on rides. If each ride cost 4 tickets, how many rides could he go on? ", + "Output Program": [ + "answer=((40.0-28.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " Bianca had 34 songs on her mp3 player. If she deleted 14 old songs from it and then added 44 new songs, how many songs does she have on her mp3 player? ", + "Output Program": [ + "answer=((34.0+44.0)-14.0)\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "dev" + }, + { + "Input": " Rachel was playing a video game and had 10 lives. In a hard part of the game she lost 4 lives. If she got 26 more lives in the next level, how many lives would she have? ", + "Output Program": [ + "answer=((10.0+26.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "dev" + }, + { + "Input": " Robin was making baggies of cookies with 6 cookies in each bag. If she had 23 chocolate chip cookies and 25 oatmeal cookies, how many baggies could she make? ", + "Output Program": [ + "answer=((23.0+25.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": " Maria was making baggies of cookies with 5 cookies in each bag. If she had 33 chocolate chip cookies and 2 oatmeal cookies, how many baggies could she make? ", + "Output Program": [ + "answer=((33.0+2.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": " Frank had saved up 3 dollars. If he received another 37 dollars for his allowance, how many 8 dollar toys could he buy? ", + "Output Program": [ + "answer=((3.0+37.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": " There were 10 friends playing a video game online when 7 players quit. If each player left had 8 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(8.0*(10.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "dev" + }, + { + "Input": " April's discount flowers was having a sale where each flower was 3 dollars. If Zoe bought 8 roses and 2 daisies, how much did she spend? ", + "Output Program": [ + "answer=(3.0*(8.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "dev" + }, + { + "Input": " For Halloween Sarah received 66 pieces of candy from neighbors and 15 pieces from her older sister. If she only ate 9 pieces a day, how long would the candy last her? ", + "Output Program": [ + "answer=((66.0+15.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": " There are 36 students trying out for the school's trivia teams. If 9 of them didn't get picked for the team and the rest were put into 3 groups, how many students would be in each group? ", + "Output Program": [ + "answer=((36.0-9.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": " For Halloween Katie and her sister combined the candy they received. Katie had 8 pieces of candy while her sister had 23. If they ate 8 pieces the first night, how many pieces do they have left? ", + "Output Program": [ + "answer=((8.0+23.0)-8.0)\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "dev" + }, + { + "Input": " Emily was playing a video game and had 42 lives. In a hard part of the game she lost 25 lives. If she got 24 more lives in the next level, how many lives would she have? ", + "Output Program": [ + "answer=((42.0+24.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "41" + ], + "split": "dev" + }, + { + "Input": " The schools debate team had 11 boys and 45 girls on it. If they were split into groups of 7 how many groups could they make? ", + "Output Program": [ + "answer=((11.0+45.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": " Will had 59 pieces of clothing to wash. He put 32 of them in one load, but decided to split the rest into 9 equal loads. How many pieces of clothing could go in each of the small loads? ", + "Output Program": [ + "answer=((59.0-32.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " Roger earned 9 dollars for each lawn he mowed. If he had 14 lawns to mow, but forgot to mow 8 of them, how much money did he actually earn? ", + "Output Program": [ + "answer=(9.0*(14.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "dev" + }, + { + "Input": " A pet store had 13 puppies. In one day they sold 7 of them and put the rest into cages with 2 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((13.0-7.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": " Haley picked 28 carrots from her garden. If she threw out 11 of them and then picked 9 more the next day, how many carrots would she have total? ", + "Output Program": [ + "answer=((28.0+9.0)-11.0)\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": " In a video game, each enemy defeated gives you 7 points. If a level has 11 enemies total and you destroy all but 8 of them, how many points would you earn? ", + "Output Program": [ + "answer=(7.0*(11.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "test" + }, + { + "Input": " The school cafeteria ordered 42 red apples and 7 green apples for students lunches. But, if only 9 students wanted fruit, how many extra did the cafeteria end up with? ", + "Output Program": [ + "answer=((42.0+7.0)-9.0)\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "Input": " Luke was selling his old games. He started out with 39 but sold 19 of them. He packed the rest up putting 4 games into each box. How many boxes did he have to use? ", + "Output Program": [ + "answer=((39.0-19.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " While shopping, Emily bought 5 green towels and 30 white towels. If she gave her mother 26 of them, how many towels did Emily end up with? ", + "Output Program": [ + "answer=((5.0+30.0)-26.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " George had 30 dollars. For his birthday he got 16 more dollars but spent 38 on a new game. How much money does he have now? ", + "Output Program": [ + "answer=((30.0+16.0)-38.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": " For Halloween Megan received 11 pieces of candy from neighbors and 5 pieces from her older sister. If she only ate 8 pieces a day, how long would the candy last her? ", + "Output Program": [ + "answer=((11.0+5.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " For homework Faye had 13 math problems and 2 spelling problems. If she can finish 3 problems in an hour how long will it take her to finish all the problems? ", + "Output Program": [ + "answer=((13.0+2.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " A florist had 6 roses. If she sold 5 of them and then later picked 12 more, how many roses would she have? ", + "Output Program": [ + "answer=((6.0+12.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "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, how many problems are on each page? ", + "Output Program": [ + "answer=((72.0-32.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": " A new building needed 12 windows. The builder had already installed 6 of them. If it takes 4 hours to install each window, how long will it take him to install the rest? ", + "Output Program": [ + "answer=(4.0*(12.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "test" + }, + { + "Input": " Katie uploaded 30 pictures from her phone and 51 from her camera to facebook. If she sorted the pics into 9 different albums with the same amount of pics in each album, how many pictures were in each of the albums? ", + "Output Program": [ + "answer=((30.0+51.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " There school's baseball team had 12 new players and 44 returning players. If the coach put them into groups with 8 players in each group, how many groups would there be? ", + "Output Program": [ + "answer=((12.0+44.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": " Sarah had 55 homework problems. She finished 6 of them but still had 7 pages of problems to do. If each page has the same number of problems on it, how many problems are on each page? ", + "Output Program": [ + "answer=((55.0-6.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": " A pet store had 81 puppies. In one day they sold 41 of them and put the rest into cages with 8 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((81.0-41.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " John made 6 dollars mowing lawns and 18 dollars weed eating. If he only spent 3 dollar a week, how long would the money last him? ", + "Output Program": [ + "answer=((6.0+18.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": " George had 28 socks. If he threw away 4 old ones that didn't fit and bought 36 new ones, how many socks would he have? ", + "Output Program": [ + "answer=((28.0+36.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "test" + }, + { + "Input": " A book store had 41 books in the bargin bin. If they sold 33 books, but then put 2 more in the bin, how many books would be in the bin? ", + "Output Program": [ + "answer=((41.0+2.0)-33.0)\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": " A waiter at 'The Greasy Spoon' restaurant had 39 customers to wait on. During the lunch rush he added another 12 customers. If 49 of the customers didn't leave him a tip, how many customers did leave a tip? ", + "Output Program": [ + "answer=((39.0+12.0)-49.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " There were 2 friends playing a video game online when 2 more players joined the game. If each player had 3 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(3.0*(2.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": " While playing a trivia game, Mike answered 3 questions correct in the first half and 5 questions correct in the second half. If each question was worth 3 points, what was his final score? ", + "Output Program": [ + "answer=(3.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "test" + }, + { + "Input": " John earned 8 dollars for each lawn he mowed. If he had 15 lawns to mow, but forgot to mow 7 of them, how much money did he actually earn? ", + "Output Program": [ + "answer=(8.0*(15.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "test" + }, + { + "Input": " Dave had 10 video games but 2 of them weren't working. If he wanted to sell the working games for $4 each, how much money could he earn? ", + "Output Program": [ + "answer=(4.0*(10.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": " A store had 40 oranges in a bin. If they threw away 25 of the old ones and put 21 new ones in the bin how many would be in the bin? ", + "Output Program": [ + "answer=((40.0+21.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "test" + }, + { + "Input": " At the schools book fair Victor bought 32 adventure books and 37 mystery books. If 16 of the books were used, how many new books did he buy? ", + "Output Program": [ + "answer=((32.0+37.0)-16.0)\nprint(answer)" + ], + "Output Answer": [ + "53" + ], + "split": "test" + }, + { + "Input": " Wendy earned 5 points for each bag of cans she recycled. If she had 11 bags, but didn't recycle 2 of them, how many points would she have earned? ", + "Output Program": [ + "answer=(5.0*(11.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": " A store had 48 coloring books in stock. They ended up putting them on sale and getting rid of 38 of them. The put the ones they still had onto shelves with 5 on each shelf. How many shelves did they use? ", + "Output Program": [ + "answer=((48.0-38.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " For homework Nancy had 17 math problems and 15 spelling problems. If she can finish 8 problems in an hour how long will it take her to finish all the problems? ", + "Output Program": [ + "answer=((17.0+15.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": " Sam had 10 socks. If he threw away 3 old ones that didn't fit and bought 36 new ones, how many socks would he have? ", + "Output Program": [ + "answer=((10.0+36.0)-3.0)\nprint(answer)" + ], + "Output Answer": [ + "43" + ], + "split": "test" + }, + { + "Input": " Nancy was organizing her book case making sure each of the shelves had exactly 6 books on it. If she had 2 shelves of mystery books and 6 shelves of picture books, how many books did she have total? ", + "Output Program": [ + "answer=(6.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "test" + }, + { + "Input": " Henry earned 5 dollars for each lawn he mowed. If he had 12 lawns to mow, but forgot to mow 7 of them, how much money did he actually earn? ", + "Output Program": [ + "answer=(5.0*(12.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "test" + }, + { + "Input": " Luke was selling his old games. He started out with 57 but sold 39 of them. He packed the rest up putting 2 games into each box. How many boxes did he have to use? ", + "Output Program": [ + "answer=((57.0-39.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Tom had to wash 10 short sleeve shirts and 25 long sleeve shirts before school. If he had only washed 5 of them by the time school started, how many did he not wash? ", + "Output Program": [ + "answer=((10.0+25.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": " Edward earned 9 dollars for each lawn he mowed. If he had 6 lawns to mow, but forgot to mow 2 of them, how much money did he actually earn? ", + "Output Program": [ + "answer=(9.0*(6.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "test" + }, + { + "Input": " A chef needs to cook 12 potatoes. He has already cooked 6. If each potato takes 6 minutes to cook, how long will it take him to cook the rest? ", + "Output Program": [ + "answer=(6.0*(12.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "test" + }, + { + "Input": " Rachel bought two coloring books. One had 24 pictures and the other had 39. After one week she had already colored 4 of the pictures. How many pictures does she still have to color? ", + "Output Program": [ + "answer=((24.0+39.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "59" + ], + "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 how many people would be on each team? ", + "Output Program": [ + "answer=((23.0+7.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " Adam had 5 dollars. At the store he spent $2 on a new game. If he got another 5 dollars for his allowance, how much money does he have now? ", + "Output Program": [ + "answer=((5.0+5.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": " At a restaurant each adult meal costs $5 and kids eat free. If a group of 15 people came in and 8 were kids, how much would it cost for the group to eat? ", + "Output Program": [ + "answer=(5.0*(15.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "test" + }, + { + "Input": " A painter needed to paint 12 rooms in a building. Each room takes 3 hours to paint. If he already painted 4 rooms, how much longer will he take to paint the rest? ", + "Output Program": [ + "answer=(3.0*(12.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "test" + }, + { + "Input": " At the arcade Edward won 9 tickets. If he spent 4 tickets on a beanie and later won 4 more tickets, how many would he have? ", + "Output Program": [ + "answer=((9.0+4.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Wendy was playing a video game and had 43 lives. In a hard part of the game she lost 8 lives. If she got 39 more lives in the next level, how many lives would she have? ", + "Output Program": [ + "answer=((43.0+39.0)-8.0)\nprint(answer)" + ], + "Output Answer": [ + "74" + ], + "split": "test" + }, + { + "Input": " Isabel baked 3 brownies, but needed 5 total for her party. If she used 5 cups of flour on each one, how much cups of flour does she still need? ", + "Output Program": [ + "answer=(5.0*(5.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": " There were 6 girls and 48 boys trying out for the schools basketball team. If only 7 of them got called back, how many students didn't make the cut? ", + "Output Program": [ + "answer=((6.0+48.0)-7.0)\nprint(answer)" + ], + "Output Answer": [ + "47" + ], + "split": "test" + }, + { + "Input": " Sarah was planting vegetables in her garden. She started with 21 seeds and planted 12 of them in the big garden and in each of her small gardens put 3 seeds each. How many small gardens did Sarah have? ", + "Output Program": [ + "answer=((21.0-12.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": " Paige and her friends were recycling paper for their class. For every 4 pounds they recycled they earned one point. If Paige recycled 14 pounds and her friends recycled 2 pounds, how many points did they earn? ", + "Output Program": [ + "answer=((14.0+2.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": " April's discount flowers was having a sale where each flower was 8 dollars. If Vanessa bought 3 roses and 3 daisies, how much did she spend? ", + "Output Program": [ + "answer=(8.0*(3.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "test" + }, + { + "Input": " There were 11 friends playing a video game online when 5 players quit. If each player left had 5 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(5.0*(11.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": " Isabel picked 66 flowers for her friend\u2019s wedding. She was making bouquets with 8 flowers in each one. If 10 of the flowers wilted before the wedding, how many bouquets could she still make? ", + "Output Program": [ + "answer=((66.0-10.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": " The school cafeteria ordered 8 red apples and 43 green apples for students lunches. But, if only 42 students wanted fruit, how many extra did the cafeteria end up with? ", + "Output Program": [ + "answer=((8.0+43.0)-42.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Gwen bought two coloring books. One had 10 pictures and the other had 39. After one week she had already colored 13 of the pictures. How many pictures does she still have to color? ", + "Output Program": [ + "answer=((10.0+39.0)-13.0)\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "test" + }, + { + "Input": " Wendy picked 103 flowers for her friend\u2019s wedding. She was making bouquets with 8 flowers in each one. If 47 of the flowers wilted before the wedding, how many bouquets could she still make? ", + "Output Program": [ + "answer=((103.0-47.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": " A waiter had 19 customers to wait on. If 14 customers left and he got another 36 customers, how many customers would he have? ", + "Output Program": [ + "answer=((19.0+36.0)-14.0)\nprint(answer)" + ], + "Output Answer": [ + "41" + ], + "split": "test" + }, + { + "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. How many shelves did they use? ", + "Output Program": [ + "answer=((4.0+10.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " A vase can hold 5 flowers. If you had 6 carnations and 19 roses, how many vases would you need to hold the flowers? ", + "Output Program": [ + "answer=((6.0+19.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " Katie picked 3 tulips and 9 roses to make flower bouquets. If she only used 10 of the flowers though, how many extra flowers did Katie pick? ", + "Output Program": [ + "answer=((3.0+9.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " Sam had saved up 8 dollars. If he received another 7 dollars for his allowance, how many 3 dollar toys could he buy? ", + "Output Program": [ + "answer=((8.0+7.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "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. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((10.0+42.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "test" + }, + { + "Input": " A pet store had 36 siamese cats and 18 house cats. During a sale they sold 26 cats. How many cats do they have left? ", + "Output Program": [ + "answer=((36.0+18.0)-26.0)\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "test" + }, + { + "Input": " There school's baseball team had 31 new players and 4 returning players. If the coach put them into groups with 7 players in each group, how many groups would there be? ", + "Output Program": [ + "answer=((31.0+4.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " Each chocolate bar in a box cost $3. If a box had 9 bars total and Wendy sold all but 3 bars, how much money would she have made? ", + "Output Program": [ + "answer=(3.0*(9.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": " Faye was playing a video game where she scores 7 points for each treasure she finds. If she found 2 treasures on the first level and 6 on the second, what would her score be? ", + "Output Program": [ + "answer=(7.0*(2.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "test" + }, + { + "Input": " For the school bake sale Amy made pastries. She baked 15 cupcakes and 48 cookies. After the sale she had 12 to take back home. How many pastries did she sell? ", + "Output Program": [ + "answer=((15.0+48.0)-12.0)\nprint(answer)" + ], + "Output Answer": [ + "51" + ], + "split": "test" + }, + { + "Input": " John had 6 action figures, but needed 11 total for a complete collection. If each one costs $6, how much money would he need to finish his collection? ", + "Output Program": [ + "answer=(6.0*(11.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": " Nancy uploaded 41 pictures to Facebook. She put 37 pics into one album and put the rest into 2 different albums. How many pictures were in each album? ", + "Output Program": [ + "answer=((41.0-37.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " Edward and his friend were buying trick decks from the magic shop for 6 dollars each. How much did they spend if Edward bought 3 decks and his friend bought 6 decks? ", + "Output Program": [ + "answer=(6.0*(6.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "test" + }, + { + "Input": " Haley and her friends were recycling paper for their class. For every 3 pounds they recycled they earned one point. If Haley recycled 11 pounds and her friends recycled 16 pounds, how many points did they earn? ", + "Output Program": [ + "answer=((11.0+16.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Robin had 30 songs on her mp3 player. If she deleted 8 old songs from it and then added 10 new songs, how many songs does she have on her mp3 player? ", + "Output Program": [ + "answer=((30.0+10.0)-8.0)\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": " At the arcade Dave won 11 tickets. If he spent 5 tickets on a beanie and later won 10 more tickets, how many would he have? ", + "Output Program": [ + "answer=((11.0+10.0)-5.0)\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": " Bianca was planting vegetables in her garden. She started with 52 seeds and planted 40 of them in the big garden and in each of her small gardens put 2 seeds each. How many small gardens did Bianca have? ", + "Output Program": [ + "answer=((52.0-40.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "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, how many vans will they need? ", + "Output Program": [ + "answer=((2.0+6.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " Paige had 43 math problems and 12 science problems for homework. If she finished 44 of the problems at school, how many problems did she have to do for homework? ", + "Output Program": [ + "answer=((43.0+12.0)-44.0)\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "test" + }, + { + "Input": " Lana 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. How many pieces of winter clothing did Lana have total? ", + "Output Program": [ + "answer=(4.0*(2.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": " John had 5 action figures, but needed 7 total for a complete collection. If each one costs $5, how much money would he need to finish his collection? ", + "Output Program": [ + "answer=(5.0*(7.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": " There school's baseball team had 2 new players and 6 returning players. If the coach put them into groups with 4 players in each group, how many groups would there be? ", + "Output Program": [ + "answer=((2.0+6.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " At the arcade Victor won 46 tickets. If he spent 27 tickets on a beanie and later won 39 more tickets, how many would he have? ", + "Output Program": [ + "answer=((46.0+39.0)-27.0)\nprint(answer)" + ], + "Output Answer": [ + "58" + ], + "split": "test" + }, + { + "Input": " Megan earned 8 points for each bag of cans she recycled. If she had 14 bags, but didn't recycle 5 of them, how many points would she have earned? ", + "Output Program": [ + "answer=(8.0*(14.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "test" + }, + { + "Input": " For Halloween Sarah received 108 pieces of candy. She ate 36 pieces then placed the rest into piles with 9 in each pile. How many piles could she make? ", + "Output Program": [ + "answer=((108.0-36.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": " April's discount flowers was having a sale where each rose was 9 dollars. If April started with 11 roses and had 8 roses left, how much money did she earn? ", + "Output Program": [ + "answer=(9.0*(11.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "test" + }, + { + "Input": " Mike is at the library helping put away books. There are 82 book to put away total but a librarian takes 10 of them and leaves Mike with the rest. If he can fit 9 books on a shelf, how many shelves will he need? ", + "Output Program": [ + "answer=((82.0-10.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": " Jerry had 60 pieces of clothing to wash. He put 40 of them in one load, but decided to split the rest into 5 equal loads. How many pieces of clothing could go in each of the small loads? ", + "Output Program": [ + "answer=((60.0-40.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": " Roger had 25 books. If he sold 21 of them and used the money he earned to buy 30 new books, how many books would Roger have? ", + "Output Program": [ + "answer=((25.0+30.0)-21.0)\nprint(answer)" + ], + "Output Answer": [ + "34" + ], + "split": "test" + }, + { + "Input": " Katie had 7 pages of math homework and 3 pages of reading homework. If each page had 9 problems on it, how many problems did she have to complete total? ", + "Output Program": [ + "answer=(9.0*(7.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "90" + ], + "split": "test" + }, + { + "Input": " Edward made 37 dollars mowing lawns over the summer. If he spent 21 dollars buying new mower blades, how many 2 dollar games could he buy with the money he had left? ", + "Output Program": [ + "answer=((37.0-21.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "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 and 3 on the second, what would her score be? ", + "Output Program": [ + "answer=(5.0*(4.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "test" + }, + { + "Input": " The school cafeteria had 38 apples. If they used 20 to make lunch for the students and then bought 28 more, how many apples would they have? ", + "Output Program": [ + "answer=((38.0+28.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "46" + ], + "split": "test" + }, + { + "Input": " While shopping for music online, Nancy bought 3 country albums and 5 pop albums. Each album came with a lyric sheet and had 8 songs. How many songs did Nancy buy total? ", + "Output Program": [ + "answer=(8.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "test" + }, + { + "Input": " There are 25 students trying out for the school's trivia teams. If 15 of them didn't get picked for the team and the rest were put into 2 groups, how many students would be in each group? ", + "Output Program": [ + "answer=((25.0-15.0)/2.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "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, how many tables did he have? ", + "Output Program": [ + "answer=((44.0-12.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": " For Halloween Emily received 54 pieces of candy. She ate 33 pieces then placed the rest into piles with 7 in each pile. How many piles could she make? ", + "Output Program": [ + "answer=((54.0-33.0)/7.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": " Paul had saved up 4 dollars. If he received another 11 dollars for his allowance, how many 5 dollar toys could he buy? ", + "Output Program": [ + "answer=((4.0+11.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": " Oliver had 33 dollars in January. By March he had spent 4 dollars. If he got another 32 dollars from his mom, how much money would he have? ", + "Output Program": [ + "answer=((33.0+32.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "61" + ], + "split": "test" + }, + { + "Input": " A magician was selling magic card decks for 5 dollars each. If he started with 14 decks and by the end of the day he had 5 left, how much money did he earn? ", + "Output Program": [ + "answer=(5.0*(14.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": " Oliver had 35 dollars. For his birthday he got 50 more dollars but spent 84 on a new game. How much money does he have now? ", + "Output Program": [ + "answer=((35.0+50.0)-84.0)\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": " At Oliver's Restaurant a group with 2 adults and 4 children came in to eat. If each meal cost 3 dollars, how much was the bill? ", + "Output Program": [ + "answer=(3.0*(2.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": " A teacher had 7 worksheets to grade. If she graded 2, but then another 46 were turned in, how many worksheets would she have to grade? ", + "Output Program": [ + "answer=((7.0+46.0)-2.0)\nprint(answer)" + ], + "Output Answer": [ + "51" + ], + "split": "test" + }, + { + "Input": " The school cafeteria had 14 apples. If they used 13 to make lunch for the students and then bought 49 more, how many apples would they have? ", + "Output Program": [ + "answer=((14.0+49.0)-13.0)\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "test" + }, + { + "Input": " Olivia was playing a video game where she scores 8 points for each treasure she finds. If she found 2 treasures on the first level and 2 on the second, what would her score be? ", + "Output Program": [ + "answer=(8.0*(2.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": " A waiter had 47 customers to wait on. If 41 customers left and he got another 20 customers, how many customers would he have? ", + "Output Program": [ + "answer=((47.0+20.0)-41.0)\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "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. How much money did George make in those two days? ", + "Output Program": [ + "answer=(5.0*(7.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": " While on vacation, Rachel took 6 pictures at the zoo and 9 at the museum. If she later deleted 11 of the pictures, how many pictures from her vacation did she still have? ", + "Output Program": [ + "answer=((6.0+9.0)-11.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": " For the school bake sale Paige made pastries. She baked 36 cupcakes and 9 cookies. After the sale she had 4 to take back home. How many pastries did she sell? ", + "Output Program": [ + "answer=((36.0+9.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "41" + ], + "split": "test" + }, + { + "Input": " At the fair Adam bought 10 tickets. After riding the ferris wheel he had 3 tickets left. If each ticket cost 9 dollars, how much money did Adam spend riding the ferris wheel? ", + "Output Program": [ + "answer=(9.0*(10.0-3.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "test" + }, + { + "Input": " The school cafeteria ordered 25 red apples and 17 green apples for students lunches. But, if only 10 students wanted fruit, how many extra did the cafeteria end up with? ", + "Output Program": [ + "answer=((25.0+17.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": " Edward had 43 books. If he sold 19 of them and used the money he earned to buy 14 new books, how many books would Edward have? ", + "Output Program": [ + "answer=((43.0+14.0)-19.0)\nprint(answer)" + ], + "Output Answer": [ + "38" + ], + "split": "test" + }, + { + "Input": " For the school bake sale Wendy made pastries. She baked 41 cupcakes and 31 cookies. After the sale she had 32 to take back home. How many pastries did she sell? ", + "Output Program": [ + "answer=((41.0+31.0)-32.0)\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "Input": " Dave was working as a sacker at a grocery store where he made 6 dollars an hour. On Monday he worked 6 hours and on Tuesday he worked 2 hours. How much money did Dave make in those two days? ", + "Output Program": [ + "answer=(6.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "test" + }, + { + "Input": " A pet shelter had 8 puppies when another 19 were brought in. If 3 puppies a day are adopted, how long would it take for all of them to be adopted? ", + "Output Program": [ + "answer=((8.0+19.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " A waiter at 'The Greasy Spoon' restaurant had 26 customers to wait on. During the lunch rush he added another 27 customers. If 27 of the customers didn't leave him a tip, how many customers did leave a tip? ", + "Output Program": [ + "answer=((26.0+27.0)-27.0)\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": " A chef needs to cook 9 potatoes. He has already cooked 7. If each potato takes 3 minutes to cook, how long will it take him to cook the rest? ", + "Output Program": [ + "answer=(3.0*(9.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": " For the school bake sale Chloe made 28 cupcakes. If she sold 25 of them and then made 8 more, how many cupcakes would she have? ", + "Output Program": [ + "answer=((28.0+8.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "test" + }, + { + "Input": " Will invited 9 friends to a birthday party, but 4 couldn't come. If he wanted to buy enough cupcakes so each person could have exactly 8, how many should he buy? ", + "Output Program": [ + "answer=(8.0*(9.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "Input": " While shopping for music online, Janet bought 6 country albums and 2 pop albums. Each album came with a lyric sheet and had 9 songs. How many songs did Janet buy total? ", + "Output Program": [ + "answer=(9.0*(6.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "test" + }, + { + "Input": " Luke had 48 dollars in January. By March he had spent 11 dollars. If he got another 21 dollars from his mom, how much money would he have? ", + "Output Program": [ + "answer=((48.0+21.0)-11.0)\nprint(answer)" + ], + "Output Answer": [ + "58" + ], + "split": "test" + }, + { + "Input": " A pet store had 88 puppies. In one day they sold 34 of them and put the rest into cages with 6 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((88.0-34.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Bianca and her mom were picking carrots from their garden. Bianca picked 26 and her mother picked 15. If only 16 of the carrots were good, how many bad carrots did they have? ", + "Output Program": [ + "answer=((26.0+15.0)-16.0)\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "test" + }, + { + "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 how many would be in the bin? ", + "Output Program": [ + "answer=((34.0+13.0)-20.0)\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "test" + }, + { + "Input": " Debby bought two coloring books. One had 16 pictures and the other had 40. After one week she had already colored 33 of the pictures. How many pictures does she still have to color? ", + "Output Program": [ + "answer=((16.0+40.0)-33.0)\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "test" + }, + { + "Input": " The school cafeteria had 12 apples. If they used 8 to make lunch for the students and then bought 19 more, how many apples would they have? ", + "Output Program": [ + "answer=((12.0+19.0)-8.0)\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "test" + }, + { + "Input": " At the arcade, Jerry won 29 tickets playing 'whack a mole' and 17 tickets playing 'skee ball'. If he spent 12 of his tickets on a hat, how many tickets does Jerry have left? ", + "Output Program": [ + "answer=((29.0+17.0)-12.0)\nprint(answer)" + ], + "Output Answer": [ + "34" + ], + "split": "test" + }, + { + "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 how many loads would she have to do? ", + "Output Program": [ + "answer=((39.0+33.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " A painter needed to paint 10 rooms in a building. Each room takes 8 hours to paint. If he already painted 8 rooms, how much longer will he take to paint the rest? ", + "Output Program": [ + "answer=(8.0*(10.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": " Dave had to wash 29 short sleeve shirts and 11 long sleeve shirts before school. If he had only washed 35 of them by the time school started, how many did he not wash? ", + "Output Program": [ + "answer=((29.0+11.0)-35.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " Bianca's team won their dodgeball game and scored 75 points total. If Bianca scored 45 of the points and everyone else scored 6 points each, how many players were on her team? ", + "Output Program": [ + "answer=((75.0-45.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " The schools debate team had 5 boys and 40 girls on it. If they were split into groups of 9 how many groups could they make? ", + "Output Program": [ + "answer=((5.0+40.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": " Wendy had 82 files on her computer. She deleted 37 of them and put the rest into folders with 5 files in each one. How many folders did Wendy end up with? ", + "Output Program": [ + "answer=((82.0-37.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " A pet shelter had 17 puppies when another 55 were brought in. If 8 puppies a day are adopted, how long would it take for all of them to be adopted? ", + "Output Program": [ + "answer=((17.0+55.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Roger had 29 dollars. For his birthday he got 20 more dollars but spent 34 on a new game. How much money does he have now? ", + "Output Program": [ + "answer=((29.0+20.0)-34.0)\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": " Billy was organizing his baseball cards in a binder with 5 on each page. If he had 3 new cards and 42 old cards to put in the binder, how many pages would he use? ", + "Output Program": [ + "answer=((3.0+42.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " The school cafeteria ordered 37 red apples and 45 green apples for students lunches. But, if only 51 students wanted fruit, how many extra did the cafeteria end up with? ", + "Output Program": [ + "answer=((37.0+45.0)-51.0)\nprint(answer)" + ], + "Output Answer": [ + "31" + ], + "split": "test" + }, + { + "Input": " There were 30 girls and 36 boys trying out for the schools basketball team. If only 10 of them got called back, how many students didn't make the cut? ", + "Output Program": [ + "answer=((30.0+36.0)-10.0)\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "test" + }, + { + "Input": " Faye had 46 math problems and 9 science problems for homework. If she finished 40 of the problems at school, how many problems did she have to do for homework? ", + "Output Program": [ + "answer=((46.0+9.0)-40.0)\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": " At a restaurant each adult meal costs $2 and kids eat free. If a group of 15 people came in and 9 were kids, how much would it cost for the group to eat? ", + "Output Program": [ + "answer=(2.0*(15.0-9.0))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": " A painter needed to paint 6 rooms in a building. Each room takes 5 hours to paint. If he already painted 2 rooms, how much longer will he take to paint the rest? ", + "Output Program": [ + "answer=(5.0*(6.0-2.0))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": " A teacher had 38 worksheets to grade. If she graded 4, but then another 15 were turned in, how many worksheets would she have to grade? ", + "Output Program": [ + "answer=((38.0+15.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "49" + ], + "split": "test" + }, + { + "Input": " Paul bought 6 boxes of chocolate candy and 4 boxes of caramel candy. If each box has 9 pieces inside it, how much candy did he have total? ", + "Output Program": [ + "answer=(9.0*(6.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "90" + ], + "split": "test" + }, + { + "Input": " A trivia team had 11 members total, but during a game 6 members didn't show up. If each member that did show up scored 9 points, how many points were scored total? ", + "Output Program": [ + "answer=(9.0*(11.0-6.0))\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": " A teacher had 29 worksheets to grade. If she graded 25, but then another 29 were turned in, how many worksheets would she have to grade? ", + "Output Program": [ + "answer=((29.0+29.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "33" + ], + "split": "test" + }, + { + "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, how much money did he earn? ", + "Output Program": [ + "answer=(3.0*(10.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": " Katie's team won their dodgeball game and scored 12 points total. If Katie scored 4 of the points and everyone else scored 4 points each, how many players were on her team? ", + "Output Program": [ + "answer=((12.0-4.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": " Mike made 101 dollars mowing lawns over the summer. If he spent 47 dollars buying new mower blades, how many 6 dollar games could he buy with the money he had left? ", + "Output Program": [ + "answer=((101.0-47.0)/6.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Tom was putting his spare change into piles. He had 2 piles of quarters and 4 piles of dimes. If each pile had 5 coins in it, how many coins did he have total? ", + "Output Program": [ + "answer=(5.0*(2.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": " Robin uploaded 31 pictures from her phone and 5 from her camera to facebook. If she sorted the pics into 9 different albums with the same amount of pics in each album, how many pictures were in each of the albums? ", + "Output Program": [ + "answer=((31.0+5.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": " A magician was selling magic card decks for 9 dollars each. If he started with 12 decks and by the end of the day he had 7 left, how much money did he earn? ", + "Output Program": [ + "answer=(9.0*(12.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": " A group of 3 friends went into a restaurant. The chef already had 6 chicken wings cooked but cooked 3 more for the group. If they each got the same amount how many would each person get? ", + "Output Program": [ + "answer=((3.0+6.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": " A teacher had 6 worksheets to grade. If she graded 4, but then another 18 were turned in, how many worksheets would she have to grade? ", + "Output Program": [ + "answer=((6.0+18.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": " In fourth grade there were 40 students at the start of the year. During the year 14 students left and 26 new students came to school. How many students were in fourth grade at the end? ", + "Output Program": [ + "answer=((40.0+26.0)-14.0)\nprint(answer)" + ], + "Output Answer": [ + "52" + ], + "split": "test" + }, + { + "Input": " There were 7 friends playing a video game online when 2 more players joined the game. If each player had 7 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(7.0*(7.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "test" + }, + { + "Input": " At a company picnic 9 managers and 15 employees decided to start a game of volleyball. If they split into 8 teams how many people would be on each team? ", + "Output Program": [ + "answer=((9.0+15.0)/8.0)\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": " Edward was working as a sacker at a grocery store where he made 6 dollars an hour. On Monday he worked 3 hours and on Tuesday he worked 5 hours. How much money did Edward make in those two days? ", + "Output Program": [ + "answer=(6.0*(3.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "test" + }, + { + "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, how much money did she earn? ", + "Output Program": [ + "answer=(7.0*(3.0+7.0))\nprint(answer)" + ], + "Output Answer": [ + "70" + ], + "split": "test" + }, + { + "Input": " April's discount flowers was having a sale where each flower was 3 dollars. If Robin bought 5 roses and 4 daisies, how much did she spend? ", + "Output Program": [ + "answer=(3.0*(5.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "test" + }, + { + "Input": " There were 2 friends playing a video game online when 2 more players joined the game. If each player had 8 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(8.0*(2.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": " Roger had 16 dollars. For his birthday he got 28 more dollars but spent 25 on a new game. How much money does he have now? ", + "Output Program": [ + "answer=((16.0+28.0)-25.0)\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "test" + }, + { + "Input": " Bianca and her friends were recycling paper for their class. For every 3 pounds they recycled they earned one point. If Bianca recycled 24 pounds and her friends recycled 3 pounds, how many points did they earn? ", + "Output Program": [ + "answer=((3.0+24.0)/3.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " A pet store had 41 siamese cats and 28 house cats. During a sale they sold 15 cats. How many cats do they have left? ", + "Output Program": [ + "answer=((41.0+28.0)-15.0)\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "test" + }, + { + "Input": " Tiffany baked 8 brownies, but needed 17 total for her party. If she used 8 cups of flour on each one, how much cups of flour does she still need? ", + "Output Program": [ + "answer=(8.0*(17.0-8.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "test" + }, + { + "Input": " For the school bake sale Carol made 19 cupcakes. If she sold 6 of them and then made 27 more, how many cupcakes would she have? ", + "Output Program": [ + "answer=((19.0+27.0)-6.0)\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "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, how many minutes did it take her to finish? ", + "Output Program": [ + "answer=(6.0*(4.0+4.0))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "test" + }, + { + "Input": " Kaleb bought 14 boxes of chocolate candy and gave 5 to his little brother. If each box has 6 pieces inside it, how many pieces did Kaleb still have? ", + "Output Program": [ + "answer=(6.0*(14.0-5.0))\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "test" + }, + { + "Input": " A new building needed 11 windows. The builder had already installed 4 of them. If it takes 8 hours to install each window, how long will it take him to install the rest? ", + "Output Program": [ + "answer=(8.0*(11.0-4.0))\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "test" + }, + { + "Input": " Roger had 120 pieces of clothing to wash. He put 48 of them in one load, but decided to split the rest into 9 equal loads. How many pieces of clothing could go in each of the small loads? ", + "Output Program": [ + "answer=((120.0-48.0)/9.0)\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": " Adam had 48 books. If he sold 19 of them and used the money he earned to buy 38 new books, how many books would Adam have? ", + "Output Program": [ + "answer=((48.0+38.0)-19.0)\nprint(answer)" + ], + "Output Answer": [ + "67" + ], + "split": "test" + }, + { + "Input": " At the schools book fair Sam bought 13 adventure books and 17 mystery books. If 15 of the books were used, how many new books did he buy? ", + "Output Program": [ + "answer=((13.0+17.0)-15.0)\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": " A waiter had 9 tables he was waiting on, with 2 women and 6 men at each table. How many customers total did the waiter have? ", + "Output Program": [ + "answer=(9.0*(2.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "test" + }, + { + "Input": " For Halloween Janet and her sister combined the candy they received. Janet had 34 pieces of candy while her sister had 33. If they ate 4 pieces the first night, how many pieces do they have left? ", + "Output Program": [ + "answer=((34.0+33.0)-4.0)\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "test" + }, + { + "Input": " A pet store had 64 puppies. In one day they sold 28 of them and put the rest into cages with 4 in each cage. How many cages did they use? ", + "Output Program": [ + "answer=((64.0-28.0)/4.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " Ned bought 14 boxes of chocolate candy and gave 7 to his little brother. If each box has 6 pieces inside it, how many pieces did Ned still have? ", + "Output Program": [ + "answer=(6.0*(14.0-7.0))\nprint(answer)" + ], + "Output Answer": [ + "42" + ], + "split": "test" + }, + { + "Input": " Kaleb was collecting cans for recycling. On Saturday he filled 4 bags up and on Sunday he filled 6 more bags. If each bag had 4 cans in it, how many cans did he pick up total? ", + "Output Program": [ + "answer=(4.0*(4.0+6.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "Input": " Kaleb was collecting cans for recycling. On Saturday he filled 5 bags up and on Sunday he filled 5 more bags. If each bag had 4 cans in it, how many cans did he pick up total? ", + "Output Program": [ + "answer=(4.0*(5.0+5.0))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "Input": " There were 5 friends playing a video game online when 2 more players joined the game. If each player had 8 lives, how many lives did they have total? ", + "Output Program": [ + "answer=(8.0*(5.0+2.0))\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "test" + }, + { + "Input": " Debby had 30 coloring books. If she gave away 7 of them, but then bought 35 more, how many would she have total? ", + "Output Program": [ + "answer=((30.0+35.0)-7.0)\nprint(answer)" + ], + "Output Answer": [ + "58" + ], + "split": "test" + }, + { + "Input": " Katie had 85 files on her computer. She deleted 40 of them and put the rest into folders with 5 files in each one. How many folders did Katie end up with? ", + "Output Program": [ + "answer=((85.0-40.0)/5.0)\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": " A waiter had 9 tables he was waiting on, with 4 women and 3 men at each table. How many customers total did the waiter have? ", + "Output Program": [ + "answer=(9.0*(4.0+3.0))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "test" + } + ], + "Metadata": [ + { + "Answer": 39, + "Explanation": [ + 80, + 120, + 136 + ] + }, + { + "Answer": 8, + "Explanation": [ + 17, + 37, + 75 + ] + }, + { + "Answer": 2, + "Explanation": [ + 58, + 91, + 119 + ] + }, + { + "Answer": 40, + "Explanation": [ + 30, + 48, + 98 + ] + }, + { + "Answer": 3, + "Explanation": [ + 13, + 27, + 78 + ] + }, + { + "Answer": 7, + "Explanation": [ + 72, + 97, + 109 + ] + }, + { + "Answer": 19, + "Explanation": [ + 11, + 47, + 73 + ] + }, + { + "Answer": 2, + "Explanation": [ + 31, + 58, + 97 + ] + }, + { + "Answer": 11, + "Explanation": [ + 43, + 73, + 116 + ] + }, + { + "Answer": 1, + "Explanation": [ + 17, + 43, + 102 + ] + }, + { + "Answer": 66, + "Explanation": [ + 20, + 47, + 106 + ] + }, + { + "Answer": 9, + "Explanation": [ + 57, + 72, + 107 + ] + }, + { + "Answer": 22, + "Explanation": [ + 31, + 58, + 97 + ] + }, + { + "Answer": 2, + "Explanation": [ + 14, + 27, + 77 + ] + }, + { + "Answer": 15, + "Explanation": [ + 10, + 31, + 80 + ] + }, + { + "Answer": 2, + "Explanation": [ + 9, + 27, + 77 + ] + }, + { + "Answer": 14, + "Explanation": [ + 57, + 91, + 120 + ] + }, + { + "Answer": 86, + "Explanation": [ + 64, + 109, + 147 + ] + }, + { + "Answer": 50, + "Explanation": [ + 24, + 62, + 106 + ] + }, + { + "Answer": 25, + "Explanation": [ + 74, + 99, + 111 + ] + }, + { + "Answer": 4, + "Explanation": [ + 57, + 72, + 106 + ] + }, + { + "Answer": 68, + "Explanation": [ + 40, + 70, + 113 + ] + }, + { + "Answer": 6, + "Explanation": [ + 58, + 92, + 120 + ] + }, + { + "Answer": 19, + "Explanation": [ + 11, + 47, + 73 + ] + }, + { + "Answer": 55, + "Explanation": [ + 30, + 57, + 96 + ] + }, + { + "Answer": 34, + "Explanation": [ + 17, + 44, + 103 + ] + }, + { + "Answer": 12, + "Explanation": [ + 17, + 37, + 76 + ] + }, + { + "Answer": 16, + "Explanation": [ + 70, + 95, + 106 + ] + }, + { + "Answer": 73, + "Explanation": [ + 30, + 48, + 99 + ] + }, + { + "Answer": 17, + "Explanation": [ + 12, + 25, + 84 + ] + }, + { + "Answer": 18, + "Explanation": [ + 17, + 37, + 76 + ] + }, + { + "Answer": 41, + "Explanation": [ + 57, + 73, + 107 + ] + }, + { + "Answer": 7, + "Explanation": [ + 64, + 109, + 146 + ] + }, + { + "Answer": 36, + "Explanation": [ + 41, + 71, + 114 + ] + }, + { + "Answer": 63, + "Explanation": [ + 80, + 120, + 136 + ] + }, + { + "Answer": 13, + "Explanation": [ + 72, + 97, + 109 + ] + }, + { + "Answer": 56, + "Explanation": [ + 12, + 25, + 85 + ] + }, + { + "Answer": 15, + "Explanation": [ + 11, + 47, + 73 + ] + }, + { + "Answer": 5, + "Explanation": [ + 18, + 45, + 104 + ] + }, + { + "Answer": 24, + "Explanation": [ + 60, + 94, + 123 + ] + }, + { + "Answer": 15, + "Explanation": [ + 37, + 60, + 81 + ] + }, + { + "Answer": 14, + "Explanation": [ + 9, + 28, + 78 + ] + }, + { + "Answer": 1, + "Explanation": [ + 12, + 48, + 74 + ] + }, + { + "Answer": 1, + "Explanation": [ + 64, + 109, + 147 + ] + }, + { + "Answer": 11, + "Explanation": [ + 11, + 32, + 82 + ] + }, + { + "Answer": 35, + "Explanation": [ + 30, + 48, + 99 + ] + }, + { + "Answer": 16, + "Explanation": [ + 18, + 44, + 103 + ] + }, + { + "Answer": 4, + "Explanation": [ + 32, + 58, + 96 + ] + }, + { + "Answer": 7, + "Explanation": [ + 76, + 101, + 113 + ] + }, + { + "Answer": 54, + "Explanation": [ + 17, + 37, + 76 + ] + }, + { + "Answer": 15, + "Explanation": [ + 37, + 60, + 81 + ] + }, + { + "Answer": 14, + "Explanation": [ + 9, + 28, + 78 + ] + }, + { + "Answer": 1, + "Explanation": [ + 12, + 48, + 74 + ] + }, + { + "Answer": 1, + "Explanation": [ + 64, + 109, + 147 + ] + }, + { + "Answer": 11, + "Explanation": [ + 11, + 32, + 82 + ] + }, + { + "Answer": 35, + "Explanation": [ + 30, + 48, + 99 + ] + }, + { + "Answer": 16, + "Explanation": [ + 18, + 44, + 103 + ] + }, + { + "Answer": 4, + "Explanation": [ + 32, + 58, + 96 + ] + }, + { + "Answer": 7, + "Explanation": [ + 76, + 101, + 113 + ] + }, + { + "Answer": 54, + "Explanation": [ + 17, + 37, + 76 + ] + }, + { + "Answer": 4, + "Explanation": [ + 14, + 27, + 78 + ] + }, + { + "Answer": 33, + "Explanation": [ + 13, + 32, + 82 + ] + }, + { + "Answer": 23, + "Explanation": [ + 42, + 72, + 115 + ] + }, + { + "Answer": 9, + "Explanation": [ + 30, + 47, + 98 + ] + }, + { + "Answer": 24, + "Explanation": [ + 68, + 117, + 148 + ] + }, + { + "Answer": 28, + "Explanation": [ + 17, + 37, + 76 + ] + }, + { + "Answer": 15, + "Explanation": [ + 74, + 99, + 111 + ] + }, + { + "Answer": 8, + "Explanation": [ + 12, + 48, + 74 + ] + }, + { + "Answer": 47, + "Explanation": [ + 12, + 24, + 84 + ] + }, + { + "Answer": 51, + "Explanation": [ + 55, + 71, + 106 + ] + }, + { + "Answer": 53, + "Explanation": [ + 40, + 63, + 84 + ] + }, + { + "Answer": 20, + "Explanation": [ + 31, + 58, + 96 + ] + }, + { + "Answer": 31, + "Explanation": [ + 30, + 48, + 99 + ] + }, + { + "Answer": 22, + "Explanation": [ + 30, + 50, + 90 + ] + }, + { + "Answer": 39, + "Explanation": [ + 12, + 25, + 85 + ] + }, + { + "Answer": 14, + "Explanation": [ + 72, + 97, + 109 + ] + }, + { + "Answer": 15, + "Explanation": [ + 47, + 111, + 128 + ] + }, + { + "Answer": 30, + "Explanation": [ + 17, + 44, + 103 + ] + }, + { + "Answer": 34, + "Explanation": [ + 13, + 32, + 82 + ] + }, + { + "Answer": 50, + "Explanation": [ + 67, + 116, + 147 + ] + }, + { + "Answer": 16, + "Explanation": [ + 30, + 47, + 98 + ] + }, + { + "Answer": 7, + "Explanation": [ + 15, + 29, + 80 + ] + }, + { + "Answer": 19, + "Explanation": [ + 31, + 58, + 96 + ] + }, + { + "Answer": 5, + "Explanation": [ + 10, + 31, + 81 + ] + }, + { + "Answer": 7, + "Explanation": [ + 80, + 120, + 135 + ] + }, + { + "Answer": 45, + "Explanation": [ + 17, + 37, + 76 + ] + }, + { + "Answer": 21, + "Explanation": [ + 12, + 24, + 84 + ] + }, + { + "Answer": 58, + "Explanation": [ + 11, + 30, + 80 + ] + }, + { + "Answer": 19, + "Explanation": [ + 30, + 50, + 90 + ] + }, + { + "Answer": 2, + "Explanation": [ + 47, + 111, + 128 + ] + }, + { + "Answer": 8, + "Explanation": [ + 17, + 37, + 76 + ] + }, + { + "Answer": 26, + "Explanation": [ + 47, + 111, + 128 + ] + }, + { + "Answer": 59, + "Explanation": [ + 43, + 73, + 116 + ] + }, + { + "Answer": 9, + "Explanation": [ + 30, + 49, + 89 + ] + }, + { + "Answer": 23, + "Explanation": [ + 80, + 119, + 135 + ] + }, + { + "Answer": 3, + "Explanation": [ + 57, + 91, + 120 + ] + }, + { + "Answer": 40, + "Explanation": [ + 57, + 73, + 108 + ] + }, + { + "Answer": 32, + "Explanation": [ + 30, + 48, + 99 + ] + }, + { + "Answer": 34, + "Explanation": [ + 26, + 64, + 108 + ] + }, + { + "Answer": 35, + "Explanation": [ + 10, + 46, + 71 + ] + }, + { + "Answer": 49, + "Explanation": [ + 37, + 86, + 62 + ] + }, + { + "Answer": 62, + "Explanation": [ + 27, + 110, + 55 + ] + }, + { + "Answer": 24, + "Explanation": [ + 11, + 79, + 32 + ] + }, + { + "Answer": 48, + "Explanation": [ + 28, + 102, + 82 + ] + }, + { + "Answer": 61, + "Explanation": [ + 12, + 86, + 57 + ] + }, + { + "Answer": 40, + "Explanation": [ + 15, + 70, + 37 + ] + }, + { + "Answer": 20, + "Explanation": [ + 15, + 72, + 52 + ] + }, + { + "Answer": 10, + "Explanation": [ + 18, + 82, + 59 + ] + }, + { + "Answer": 41, + "Explanation": [ + 14, + 79, + 42 + ] + }, + { + "Answer": 6, + "Explanation": [ + 24, + 109, + 65 + ] + }, + { + "Answer": 51, + "Explanation": [ + 15, + 72, + 52 + ] + }, + { + "Answer": 33, + "Explanation": [ + 11, + 88, + 53 + ] + }, + { + "Answer": 52, + "Explanation": [ + 14, + 86, + 59 + ] + }, + { + "Answer": 27, + "Explanation": [ + 13, + 80, + 53 + ] + }, + { + "Answer": 26, + "Explanation": [ + 14, + 79, + 42 + ] + }, + { + "Answer": 29, + "Explanation": [ + 28, + 103, + 82 + ] + }, + { + "Answer": 26, + "Explanation": [ + 37, + 87, + 62 + ] + }, + { + "Answer": 8, + "Explanation": [ + 10, + 79, + 44 + ] + }, + { + "Answer": 56, + "Explanation": [ + 42, + 109, + 88 + ] + }, + { + "Answer": 17, + "Explanation": [ + 24, + 111, + 66 + ] + }, + { + "Answer": 50, + "Explanation": [ + 14, + 78, + 42 + ] + }, + { + "Answer": 25, + "Explanation": [ + 24, + 111, + 66 + ] + }, + { + "Answer": 79, + "Explanation": [ + 10, + 73, + 46 + ] + }, + { + "Answer": 10, + "Explanation": [ + 11, + 89, + 54 + ] + }, + { + "Answer": 49, + "Explanation": [ + 15, + 73, + 53 + ] + }, + { + "Answer": 52, + "Explanation": [ + 28, + 103, + 82 + ] + }, + { + "Answer": 74, + "Explanation": [ + 40, + 106, + 86 + ] + }, + { + "Answer": 11, + "Explanation": [ + 18, + 80, + 58 + ] + }, + { + "Answer": 30, + "Explanation": [ + 24, + 85, + 48 + ] + }, + { + "Answer": 25, + "Explanation": [ + 38, + 87, + 63 + ] + }, + { + "Answer": 59, + "Explanation": [ + 12, + 75, + 48 + ] + }, + { + "Answer": 57, + "Explanation": [ + 9, + 87, + 52 + ] + }, + { + "Answer": 49, + "Explanation": [ + 25, + 84, + 48 + ] + }, + { + "Answer": 60, + "Explanation": [ + 13, + 79, + 53 + ] + }, + { + "Answer": 45, + "Explanation": [ + 10, + 78, + 31 + ] + }, + { + "Answer": 10, + "Explanation": [ + 24, + 110, + 66 + ] + }, + { + "Answer": 46, + "Explanation": [ + 26, + 100, + 50 + ] + }, + { + "Answer": 60, + "Explanation": [ + 12, + 77, + 39 + ] + }, + { + "Answer": 37, + "Explanation": [ + 28, + 110, + 56 + ] + }, + { + "Answer": 32, + "Explanation": [ + 41, + 107, + 87 + ] + }, + { + "Answer": 13, + "Explanation": [ + 15, + 68, + 36 + ] + }, + { + "Answer": 35, + "Explanation": [ + 28, + 111, + 56 + ] + }, + { + "Answer": 50, + "Explanation": [ + 26, + 100, + 50 + ] + }, + { + "Answer": 38, + "Explanation": [ + 12, + 80, + 33 + ] + }, + { + "Answer": 33, + "Explanation": [ + 15, + 74, + 53 + ] + }, + { + "Answer": 35, + "Explanation": [ + 28, + 103, + 82 + ] + }, + { + "Answer": 40, + "Explanation": [ + 37, + 86, + 62 + ] + }, + { + "Answer": 10, + "Explanation": [ + 13, + 80, + 53 + ] + }, + { + "Answer": 58, + "Explanation": [ + 26, + 87, + 50 + ] + }, + { + "Answer": 45, + "Explanation": [ + 14, + 86, + 59 + ] + }, + { + "Answer": 43, + "Explanation": [ + 9, + 74, + 36 + ] + }, + { + "Answer": 51, + "Explanation": [ + 11, + 85, + 59 + ] + }, + { + "Answer": 63, + "Explanation": [ + 15, + 73, + 53 + ] + }, + { + "Answer": 11, + "Explanation": [ + 24, + 109, + 65 + ] + }, + { + "Answer": 19, + "Explanation": [ + 11, + 73, + 46 + ] + }, + { + "Answer": 18, + "Explanation": [ + 24, + 85, + 48 + ] + }, + { + "Answer": 32, + "Explanation": [ + 11, + 89, + 54 + ] + }, + { + "Answer": 9, + "Explanation": [ + 26, + 100, + 50 + ] + }, + { + "Answer": 54, + "Explanation": [ + 40, + 107, + 86 + ] + }, + { + "Answer": 61, + "Explanation": [ + 14, + 85, + 59 + ] + }, + { + "Answer": 71, + "Explanation": [ + 11, + 86, + 56 + ] + }, + { + "Answer": 38, + "Explanation": [ + 26, + 99, + 50 + ] + }, + { + "Answer": 70, + "Explanation": [ + 40, + 107, + 86 + ] + }, + { + "Answer": 31, + "Explanation": [ + 14, + 85, + 59 + ] + }, + { + "Answer": 64, + "Explanation": [ + 12, + 91, + 55 + ] + }, + { + "Answer": 39, + "Explanation": [ + 9, + 75, + 29 + ] + }, + { + "Answer": 27, + "Explanation": [ + 10, + 76, + 37 + ] + }, + { + "Answer": 24, + "Explanation": [ + 37, + 86, + 62 + ] + }, + { + "Answer": 34, + "Explanation": [ + 13, + 80, + 53 + ] + }, + { + "Answer": 11, + "Explanation": [ + 28, + 101, + 81 + ] + }, + { + "Answer": 60, + "Explanation": [ + 15, + 87, + 60 + ] + }, + { + "Answer": 47, + "Explanation": [ + 9, + 84, + 57 + ] + }, + { + "Answer": 28, + "Explanation": [ + 11, + 89, + 54 + ] + }, + { + "Answer": 31, + "Explanation": [ + 13, + 78, + 52 + ] + }, + { + "Answer": 67, + "Explanation": [ + 10, + 78, + 31 + ] + }, + { + "Answer": 37, + "Explanation": [ + 28, + 102, + 82 + ] + }, + { + "Answer": 59, + "Explanation": [ + 37, + 87, + 62 + ] + }, + { + "Answer": 41, + "Explanation": [ + 15, + 69, + 37 + ] + }, + { + "Answer": 22, + "Explanation": [ + 11, + 81, + 46 + ] + }, + { + "Answer": 46, + "Explanation": [ + 40, + 106, + 86 + ] + }, + { + "Answer": 58, + "Explanation": [ + 10, + 85, + 55 + ] + }, + { + "Answer": 41, + "Explanation": [ + 40, + 107, + 86 + ] + }, + { + "Answer": 58, + "Explanation": [ + 11, + 74, + 47 + ] + }, + { + "Answer": 23, + "Explanation": [ + 26, + 99, + 50 + ] + }, + { + "Answer": 31, + "Explanation": [ + 24, + 111, + 66 + ] + }, + { + "Answer": 56, + "Explanation": [ + 15, + 70, + 37 + ] + }, + { + "Answer": 23, + "Explanation": [ + 9, + 86, + 51 + ] + }, + { + "Answer": 16, + "Explanation": [ + 24, + 84, + 48 + ] + }, + { + "Answer": 28, + "Explanation": [ + 14, + 79, + 42 + ] + }, + { + "Answer": 47, + "Explanation": [ + 28, + 102, + 82 + ] + }, + { + "Answer": 33, + "Explanation": [ + 12, + 77, + 39 + ] + }, + { + "Answer": 36, + "Explanation": [ + 13, + 80, + 53 + ] + }, + { + "Answer": 9, + "Explanation": [ + 26, + 85, + 49 + ] + }, + { + "Answer": 43, + "Explanation": [ + 28, + 101, + 81 + ] + }, + { + "Answer": 26, + "Explanation": [ + 14, + 86, + 59 + ] + }, + { + "Answer": 34, + "Explanation": [ + 11, + 79, + 32 + ] + }, + { + "Answer": 36, + "Explanation": [ + 15, + 68, + 36 + ] + }, + { + "Answer": 41, + "Explanation": [ + 40, + 106, + 86 + ] + }, + { + "Answer": 29, + "Explanation": [ + 10, + 79, + 44 + ] + }, + { + "Answer": 11, + "Explanation": [ + 37, + 87, + 62 + ] + }, + { + "Answer": 50, + "Explanation": [ + 105, + 50, + 78 + ] + }, + { + "Answer": 32, + "Explanation": [ + 62, + 113, + 127 + ] + }, + { + "Answer": 90, + "Explanation": [ + 14, + 47, + 59 + ] + }, + { + "Answer": 12, + "Explanation": [ + 66, + 93, + 105 + ] + }, + { + "Answer": 30, + "Explanation": [ + 87, + 12, + 41 + ] + }, + { + "Answer": 35, + "Explanation": [ + 49, + 100, + 135 + ] + }, + { + "Answer": 63, + "Explanation": [ + 106, + 12, + 55 + ] + }, + { + "Answer": 90, + "Explanation": [ + 86, + 13, + 44 + ] + }, + { + "Answer": 48, + "Explanation": [ + 17, + 48, + 62 + ] + }, + { + "Answer": 72, + "Explanation": [ + 81, + 107, + 138 + ] + }, + { + "Answer": 49, + "Explanation": [ + 63, + 114, + 128 + ] + }, + { + "Answer": 36, + "Explanation": [ + 17, + 48, + 62 + ] + }, + { + "Answer": 80, + "Explanation": [ + 86, + 13, + 44 + ] + }, + { + "Answer": 21, + "Explanation": [ + 94, + 36, + 49 + ] + }, + { + "Answer": 72, + "Explanation": [ + 126, + 63, + 97 + ] + }, + { + "Answer": 50, + "Explanation": [ + 153, + 44, + 86 + ] + }, + { + "Answer": 32, + "Explanation": [ + 64, + 93, + 135 + ] + }, + { + "Answer": 30, + "Explanation": [ + 113, + 54, + 78 + ] + }, + { + "Answer": 64, + "Explanation": [ + 71, + 128, + 158 + ] + }, + { + "Answer": 90, + "Explanation": [ + 86, + 11, + 40 + ] + }, + { + "Answer": 56, + "Explanation": [ + 48, + 99, + 134 + ] + }, + { + "Answer": 72, + "Explanation": [ + 79, + 105, + 136 + ] + }, + { + "Answer": 24, + "Explanation": [ + 106, + 12, + 55 + ] + }, + { + "Answer": 48, + "Explanation": [ + 72, + 14, + 31 + ] + }, + { + "Answer": 30, + "Explanation": [ + 66, + 91, + 103 + ] + }, + { + "Answer": 60, + "Explanation": [ + 62, + 113, + 127 + ] + }, + { + "Answer": 42, + "Explanation": [ + 125, + 62, + 96 + ] + }, + { + "Answer": 45, + "Explanation": [ + 65, + 104, + 137 + ] + }, + { + "Answer": 15, + "Explanation": [ + 154, + 45, + 87 + ] + }, + { + "Answer": 72, + "Explanation": [ + 71, + 128, + 158 + ] + }, + { + "Answer": 64, + "Explanation": [ + 68, + 122, + 152 + ] + }, + { + "Answer": 70, + "Explanation": [ + 125, + 47, + 68 + ] + }, + { + "Answer": 60, + "Explanation": [ + 65, + 104, + 137 + ] + }, + { + "Answer": 54, + "Explanation": [ + 17, + 48, + 62 + ] + }, + { + "Answer": 32, + "Explanation": [ + 72, + 14, + 31 + ] + }, + { + "Answer": 32, + "Explanation": [ + 50, + 101, + 136 + ] + }, + { + "Answer": 48, + "Explanation": [ + 14, + 47, + 59 + ] + }, + { + "Answer": 70, + "Explanation": [ + 125, + 59, + 80 + ] + }, + { + "Answer": 63, + "Explanation": [ + 106, + 51, + 79 + ] + }, + { + "Answer": 56, + "Explanation": [ + 106, + 12, + 55 + ] + }, + { + "Answer": 21, + "Explanation": [ + 126, + 60, + 81 + ] + }, + { + "Answer": 48, + "Explanation": [ + 65, + 104, + 137 + ] + }, + { + "Answer": 24, + "Explanation": [ + 153, + 44, + 86 + ] + }, + { + "Answer": 32, + "Explanation": [ + 47, + 98, + 133 + ] + }, + { + "Answer": 63, + "Explanation": [ + 14, + 47, + 59 + ] + }, + { + "Answer": 54, + "Explanation": [ + 80, + 106, + 137 + ] + }, + { + "Answer": 72, + "Explanation": [ + 126, + 48, + 69 + ] + }, + { + "Answer": 18, + "Explanation": [ + 95, + 37, + 50 + ] + }, + { + "Answer": 30, + "Explanation": [ + 88, + 13, + 42 + ] + }, + { + "Answer": 27, + "Explanation": [ + 66, + 93, + 105 + ] + }, + { + "Answer": 80, + "Explanation": [ + 60, + 111, + 125 + ] + }, + { + "Answer": 12, + "Explanation": [ + 106, + 12, + 55 + ] + }, + { + "Answer": 28, + "Explanation": [ + 86, + 13, + 44 + ] + }, + { + "Answer": 72, + "Explanation": [ + 17, + 48, + 62 + ] + }, + { + "Answer": 60, + "Explanation": [ + 63, + 91, + 133 + ] + }, + { + "Answer": 56, + "Explanation": [ + 92, + 34, + 47 + ] + }, + { + "Answer": 32, + "Explanation": [ + 79, + 105, + 136 + ] + }, + { + "Answer": 72, + "Explanation": [ + 126, + 48, + 69 + ] + }, + { + "Answer": 90, + "Explanation": [ + 126, + 60, + 81 + ] + }, + { + "Answer": 63, + "Explanation": [ + 50, + 101, + 136 + ] + }, + { + "Answer": 60, + "Explanation": [ + 66, + 93, + 105 + ] + }, + { + "Answer": 72, + "Explanation": [ + 17, + 48, + 62 + ] + }, + { + "Answer": 42, + "Explanation": [ + 114, + 55, + 79 + ] + }, + { + "Answer": 32, + "Explanation": [ + 106, + 12, + 55 + ] + }, + { + "Answer": 63, + "Explanation": [ + 14, + 47, + 59 + ] + }, + { + "Answer": 48, + "Explanation": [ + 51, + 102, + 137 + ] + }, + { + "Answer": 24, + "Explanation": [ + 123, + 45, + 66 + ] + }, + { + "Answer": 70, + "Explanation": [ + 80, + 106, + 137 + ] + }, + { + "Answer": 36, + "Explanation": [ + 127, + 61, + 82 + ] + }, + { + "Answer": 40, + "Explanation": [ + 127, + 64, + 98 + ] + }, + { + "Answer": 48, + "Explanation": [ + 66, + 95, + 107 + ] + }, + { + "Answer": 80, + "Explanation": [ + 63, + 102, + 135 + ] + }, + { + "Answer": 40, + "Explanation": [ + 73, + 15, + 32 + ] + }, + { + "Answer": 80, + "Explanation": [ + 153, + 44, + 86 + ] + }, + { + "Answer": 40, + "Explanation": [ + 17, + 48, + 62 + ] + }, + { + "Answer": 40, + "Explanation": [ + 127, + 64, + 98 + ] + }, + { + "Answer": 72, + "Explanation": [ + 81, + 107, + 138 + ] + }, + { + "Answer": 20, + "Explanation": [ + 114, + 55, + 79 + ] + }, + { + "Answer": 81, + "Explanation": [ + 49, + 100, + 135 + ] + }, + { + "Answer": 64, + "Explanation": [ + 125, + 47, + 68 + ] + }, + { + "Answer": 21, + "Explanation": [ + 61, + 112, + 126 + ] + }, + { + "Answer": 35, + "Explanation": [ + 70, + 126, + 156 + ] + }, + { + "Answer": 40, + "Explanation": [ + 14, + 47, + 59 + ] + }, + { + "Answer": 60, + "Explanation": [ + 106, + 12, + 55 + ] + }, + { + "Answer": 63, + "Explanation": [ + 125, + 62, + 96 + ] + }, + { + "Answer": 60, + "Explanation": [ + 66, + 93, + 105 + ] + }, + { + "Answer": 48, + "Explanation": [ + 63, + 102, + 135 + ] + }, + { + "Answer": 48, + "Explanation": [ + 137, + 80, + 106 + ] + }, + { + "Answer": 30, + "Explanation": [ + 124, + 46, + 67 + ] + }, + { + "Answer": 30, + "Explanation": [ + 112, + 53, + 77 + ] + }, + { + "Answer": 30, + "Explanation": [ + 155, + 46, + 88 + ] + }, + { + "Answer": 32, + "Explanation": [ + 61, + 112, + 126 + ] + }, + { + "Answer": 30, + "Explanation": [ + 106, + 51, + 79 + ] + }, + { + "Answer": 40, + "Explanation": [ + 86, + 11, + 40 + ] + }, + { + "Answer": 40, + "Explanation": [ + 127, + 64, + 98 + ] + }, + { + "Answer": 54, + "Explanation": [ + 158, + 71, + 128 + ] + }, + { + "Answer": 48, + "Explanation": [ + 72, + 14, + 31 + ] + }, + { + "Answer": 72, + "Explanation": [ + 14, + 47, + 59 + ] + }, + { + "Answer": 27, + "Explanation": [ + 106, + 12, + 55 + ] + }, + { + "Answer": 72, + "Explanation": [ + 125, + 47, + 68 + ] + }, + { + "Answer": 8, + "Explanation": [ + 29, + 41, + 91 + ] + }, + { + "Answer": 8, + "Explanation": [ + 16, + 47, + 106 + ] + }, + { + "Answer": 6, + "Explanation": [ + 20, + 55, + 94 + ] + }, + { + "Answer": 6, + "Explanation": [ + 77, + 107, + 43 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 38, + 79 + ] + }, + { + "Answer": 9, + "Explanation": [ + 34, + 53, + 113 + ] + }, + { + "Answer": 7, + "Explanation": [ + 35, + 56, + 101 + ] + }, + { + "Answer": 4, + "Explanation": [ + 135, + 170, + 71 + ] + }, + { + "Answer": 4, + "Explanation": [ + 24, + 45, + 85 + ] + }, + { + "Answer": 6, + "Explanation": [ + 83, + 99, + 57 + ] + }, + { + "Answer": 8, + "Explanation": [ + 29, + 41, + 91 + ] + }, + { + "Answer": 4, + "Explanation": [ + 67, + 101, + 12 + ] + }, + { + "Answer": 9, + "Explanation": [ + 39, + 56, + 17 + ] + }, + { + "Answer": 7, + "Explanation": [ + 19, + 42, + 65 + ] + }, + { + "Answer": 3, + "Explanation": [ + 126, + 154, + 86 + ] + }, + { + "Answer": 2, + "Explanation": [ + 17, + 84, + 136 + ] + }, + { + "Answer": 8, + "Explanation": [ + 11, + 38, + 79 + ] + }, + { + "Answer": 9, + "Explanation": [ + 96, + 110, + 45 + ] + }, + { + "Answer": 2, + "Explanation": [ + 96, + 111, + 73 + ] + }, + { + "Answer": 2, + "Explanation": [ + 17, + 47, + 106 + ] + }, + { + "Answer": 7, + "Explanation": [ + 40, + 78, + 149 + ] + }, + { + "Answer": 8, + "Explanation": [ + 11, + 39, + 80 + ] + }, + { + "Answer": 6, + "Explanation": [ + 133, + 167, + 70 + ] + }, + { + "Answer": 4, + "Explanation": [ + 16, + 47, + 106 + ] + }, + { + "Answer": 2, + "Explanation": [ + 30, + 68, + 116 + ] + }, + { + "Answer": 7, + "Explanation": [ + 76, + 106, + 42 + ] + }, + { + "Answer": 2, + "Explanation": [ + 34, + 52, + 112 + ] + }, + { + "Answer": 5, + "Explanation": [ + 19, + 42, + 65 + ] + }, + { + "Answer": 3, + "Explanation": [ + 96, + 112, + 73 + ] + }, + { + "Answer": 8, + "Explanation": [ + 125, + 153, + 85 + ] + }, + { + "Answer": 8, + "Explanation": [ + 36, + 57, + 102 + ] + }, + { + "Answer": 8, + "Explanation": [ + 29, + 41, + 90 + ] + }, + { + "Answer": 3, + "Explanation": [ + 76, + 105, + 42 + ] + }, + { + "Answer": 9, + "Explanation": [ + 30, + 68, + 117 + ] + }, + { + "Answer": 9, + "Explanation": [ + 126, + 154, + 86 + ] + }, + { + "Answer": 4, + "Explanation": [ + 18, + 48, + 108 + ] + }, + { + "Answer": 2, + "Explanation": [ + 17, + 84, + 135 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 39, + 80 + ] + }, + { + "Answer": 2, + "Explanation": [ + 41, + 78, + 149 + ] + }, + { + "Answer": 6, + "Explanation": [ + 73, + 96, + 112 + ] + }, + { + "Answer": 4, + "Explanation": [ + 83, + 99, + 57 + ] + }, + { + "Answer": 3, + "Explanation": [ + 12, + 67, + 101 + ] + }, + { + "Answer": 5, + "Explanation": [ + 17, + 47, + 107 + ] + }, + { + "Answer": 4, + "Explanation": [ + 17, + 84, + 136 + ] + }, + { + "Answer": 2, + "Explanation": [ + 126, + 153, + 86 + ] + }, + { + "Answer": 5, + "Explanation": [ + 39, + 56, + 17 + ] + }, + { + "Answer": 9, + "Explanation": [ + 135, + 170, + 71 + ] + }, + { + "Answer": 9, + "Explanation": [ + 19, + 43, + 66 + ] + }, + { + "Answer": 7, + "Explanation": [ + 34, + 53, + 114 + ] + }, + { + "Answer": 5, + "Explanation": [ + 20, + 54, + 93 + ] + }, + { + "Answer": 4, + "Explanation": [ + 83, + 99, + 57 + ] + }, + { + "Answer": 3, + "Explanation": [ + 12, + 67, + 101 + ] + }, + { + "Answer": 5, + "Explanation": [ + 17, + 47, + 107 + ] + }, + { + "Answer": 4, + "Explanation": [ + 17, + 84, + 136 + ] + }, + { + "Answer": 2, + "Explanation": [ + 126, + 153, + 86 + ] + }, + { + "Answer": 5, + "Explanation": [ + 39, + 56, + 17 + ] + }, + { + "Answer": 9, + "Explanation": [ + 135, + 170, + 71 + ] + }, + { + "Answer": 9, + "Explanation": [ + 19, + 43, + 66 + ] + }, + { + "Answer": 7, + "Explanation": [ + 34, + 53, + 114 + ] + }, + { + "Answer": 5, + "Explanation": [ + 20, + 54, + 93 + ] + }, + { + "Answer": 9, + "Explanation": [ + 19, + 42, + 65 + ] + }, + { + "Answer": 5, + "Explanation": [ + 23, + 44, + 83 + ] + }, + { + "Answer": 5, + "Explanation": [ + 18, + 52, + 90 + ] + }, + { + "Answer": 9, + "Explanation": [ + 72, + 137, + 172 + ] + }, + { + "Answer": 5, + "Explanation": [ + 34, + 53, + 113 + ] + }, + { + "Answer": 4, + "Explanation": [ + 85, + 101, + 59 + ] + }, + { + "Answer": 2, + "Explanation": [ + 11, + 38, + 78 + ] + }, + { + "Answer": 8, + "Explanation": [ + 76, + 106, + 42 + ] + }, + { + "Answer": 5, + "Explanation": [ + 29, + 40, + 90 + ] + }, + { + "Answer": 5, + "Explanation": [ + 21, + 37, + 107 + ] + }, + { + "Answer": 8, + "Explanation": [ + 34, + 54, + 99 + ] + }, + { + "Answer": 3, + "Explanation": [ + 96, + 112, + 73 + ] + }, + { + "Answer": 2, + "Explanation": [ + 84, + 124, + 151 + ] + }, + { + "Answer": 2, + "Explanation": [ + 34, + 52, + 112 + ] + }, + { + "Answer": 6, + "Explanation": [ + 22, + 43, + 82 + ] + }, + { + "Answer": 6, + "Explanation": [ + 76, + 105, + 42 + ] + }, + { + "Answer": 9, + "Explanation": [ + 96, + 110, + 45 + ] + }, + { + "Answer": 2, + "Explanation": [ + 19, + 42, + 64 + ] + }, + { + "Answer": 5, + "Explanation": [ + 39, + 76, + 148 + ] + }, + { + "Answer": 6, + "Explanation": [ + 67, + 101, + 12 + ] + }, + { + "Answer": 3, + "Explanation": [ + 96, + 110, + 45 + ] + }, + { + "Answer": 2, + "Explanation": [ + 19, + 53, + 91 + ] + }, + { + "Answer": 9, + "Explanation": [ + 12, + 40, + 81 + ] + }, + { + "Answer": 5, + "Explanation": [ + 38, + 76, + 148 + ] + }, + { + "Answer": 9, + "Explanation": [ + 125, + 153, + 85 + ] + }, + { + "Answer": 4, + "Explanation": [ + 139, + 174, + 73 + ] + }, + { + "Answer": 9, + "Explanation": [ + 19, + 42, + 65 + ] + }, + { + "Answer": 3, + "Explanation": [ + 21, + 36, + 107 + ] + }, + { + "Answer": 8, + "Explanation": [ + 83, + 99, + 57 + ] + }, + { + "Answer": 6, + "Explanation": [ + 16, + 47, + 106 + ] + }, + { + "Answer": 3, + "Explanation": [ + 17, + 85, + 137 + ] + }, + { + "Answer": 6, + "Explanation": [ + 131, + 166, + 69 + ] + }, + { + "Answer": 9, + "Explanation": [ + 84, + 100, + 58 + ] + }, + { + "Answer": 8, + "Explanation": [ + 33, + 53, + 98 + ] + }, + { + "Answer": 4, + "Explanation": [ + 127, + 155, + 87 + ] + }, + { + "Answer": 3, + "Explanation": [ + 19, + 53, + 92 + ] + }, + { + "Answer": 9, + "Explanation": [ + 16, + 47, + 107 + ] + }, + { + "Answer": 6, + "Explanation": [ + 96, + 112, + 73 + ] + }, + { + "Answer": 2, + "Explanation": [ + 30, + 67, + 116 + ] + }, + { + "Answer": 9, + "Explanation": [ + 12, + 39, + 80 + ] + }, + { + "Answer": 36, + "Explanation": [ + 92, + 23, + 69 + ] + }, + { + "Answer": 45, + "Explanation": [ + 81, + 22, + 57 + ] + }, + { + "Answer": 42, + "Explanation": [ + 90, + 12, + 49 + ] + }, + { + "Answer": 30, + "Explanation": [ + 96, + 12, + 56 + ] + }, + { + "Answer": 25, + "Explanation": [ + 14, + 58, + 93 + ] + }, + { + "Answer": 18, + "Explanation": [ + 119, + 19, + 54 + ] + }, + { + "Answer": 16, + "Explanation": [ + 107, + 27, + 67 + ] + }, + { + "Answer": 12, + "Explanation": [ + 48, + 73, + 113 + ] + }, + { + "Answer": 45, + "Explanation": [ + 14, + 69, + 97 + ] + }, + { + "Answer": 9, + "Explanation": [ + 35, + 51, + 88 + ] + }, + { + "Answer": 54, + "Explanation": [ + 92, + 14, + 51 + ] + }, + { + "Answer": 15, + "Explanation": [ + 40, + 75, + 97 + ] + }, + { + "Answer": 72, + "Explanation": [ + 95, + 40, + 11 + ] + }, + { + "Answer": 72, + "Explanation": [ + 48, + 73, + 114 + ] + }, + { + "Answer": 72, + "Explanation": [ + 96, + 12, + 56 + ] + }, + { + "Answer": 20, + "Explanation": [ + 92, + 23, + 69 + ] + }, + { + "Answer": 36, + "Explanation": [ + 13, + 57, + 92 + ] + }, + { + "Answer": 64, + "Explanation": [ + 120, + 19, + 55 + ] + }, + { + "Answer": 56, + "Explanation": [ + 100, + 10, + 29 + ] + }, + { + "Answer": 49, + "Explanation": [ + 67, + 27, + 107 + ] + }, + { + "Answer": 15, + "Explanation": [ + 95, + 12, + 55 + ] + }, + { + "Answer": 27, + "Explanation": [ + 120, + 19, + 55 + ] + }, + { + "Answer": 63, + "Explanation": [ + 99, + 9, + 28 + ] + }, + { + "Answer": 42, + "Explanation": [ + 35, + 51, + 86 + ] + }, + { + "Answer": 16, + "Explanation": [ + 90, + 13, + 49 + ] + }, + { + "Answer": 24, + "Explanation": [ + 137, + 14, + 50 + ] + }, + { + "Answer": 10, + "Explanation": [ + 48, + 73, + 113 + ] + }, + { + "Answer": 54, + "Explanation": [ + 14, + 58, + 93 + ] + }, + { + "Answer": 4, + "Explanation": [ + 45, + 80, + 121 + ] + }, + { + "Answer": 36, + "Explanation": [ + 81, + 22, + 57 + ] + }, + { + "Answer": 18, + "Explanation": [ + 91, + 23, + 68 + ] + }, + { + "Answer": 81, + "Explanation": [ + 110, + 25, + 74 + ] + }, + { + "Answer": 21, + "Explanation": [ + 91, + 13, + 50 + ] + }, + { + "Answer": 10, + "Explanation": [ + 10, + 39, + 93 + ] + }, + { + "Answer": 32, + "Explanation": [ + 66, + 27, + 106 + ] + }, + { + "Answer": 20, + "Explanation": [ + 35, + 51, + 87 + ] + }, + { + "Answer": 15, + "Explanation": [ + 81, + 23, + 40 + ] + }, + { + "Answer": 16, + "Explanation": [ + 17, + 52, + 97 + ] + }, + { + "Answer": 40, + "Explanation": [ + 136, + 14, + 49 + ] + }, + { + "Answer": 45, + "Explanation": [ + 45, + 80, + 122 + ] + }, + { + "Answer": 6, + "Explanation": [ + 80, + 22, + 56 + ] + }, + { + "Answer": 45, + "Explanation": [ + 45, + 80, + 122 + ] + }, + { + "Answer": 18, + "Explanation": [ + 35, + 51, + 87 + ] + }, + { + "Answer": 24, + "Explanation": [ + 67, + 27, + 107 + ] + }, + { + "Answer": 36, + "Explanation": [ + 91, + 13, + 50 + ] + }, + { + "Answer": 28, + "Explanation": [ + 40, + 75, + 97 + ] + }, + { + "Answer": 20, + "Explanation": [ + 119, + 19, + 54 + ] + }, + { + "Answer": 12, + "Explanation": [ + 101, + 11, + 30 + ] + }, + { + "Answer": 35, + "Explanation": [ + 64, + 97, + 113 + ] + }, + { + "Answer": 32, + "Explanation": [ + 80, + 23, + 39 + ] + }, + { + "Answer": 48, + "Explanation": [ + 92, + 23, + 69 + ] + }, + { + "Answer": 45, + "Explanation": [ + 15, + 70, + 98 + ] + }, + { + "Answer": 72, + "Explanation": [ + 81, + 22, + 57 + ] + }, + { + "Answer": 30, + "Explanation": [ + 94, + 40, + 11 + ] + }, + { + "Answer": 64, + "Explanation": [ + 13, + 57, + 92 + ] + }, + { + "Answer": 24, + "Explanation": [ + 96, + 12, + 56 + ] + }, + { + "Answer": 40, + "Explanation": [ + 48, + 73, + 113 + ] + }, + { + "Answer": 63, + "Explanation": [ + 67, + 27, + 107 + ] + }, + { + "Answer": 32, + "Explanation": [ + 100, + 10, + 29 + ] + }, + { + "Answer": 32, + "Explanation": [ + 17, + 52, + 98 + ] + }, + { + "Answer": 14, + "Explanation": [ + 17, + 52, + 98 + ] + }, + { + "Answer": 36, + "Explanation": [ + 64, + 97, + 114 + ] + }, + { + "Answer": 35, + "Explanation": [ + 40, + 75, + 97 + ] + }, + { + "Answer": 42, + "Explanation": [ + 70, + 34, + 11 + ] + }, + { + "Answer": 20, + "Explanation": [ + 66, + 27, + 106 + ] + }, + { + "Answer": 16, + "Explanation": [ + 35, + 51, + 90 + ] + }, + { + "Answer": 16, + "Explanation": [ + 13, + 68, + 95 + ] + }, + { + "Answer": 24, + "Explanation": [ + 92, + 23, + 69 + ] + }, + { + "Answer": 63, + "Explanation": [ + 81, + 22, + 57 + ] + }, + { + "Answer": 35, + "Explanation": [ + 120, + 19, + 55 + ] + }, + { + "Answer": 48, + "Explanation": [ + 81, + 22, + 57 + ] + }, + { + "Answer": 45, + "Explanation": [ + 120, + 19, + 55 + ] + }, + { + "Answer": 18, + "Explanation": [ + 35, + 51, + 89 + ] + }, + { + "Answer": 10, + "Explanation": [ + 72, + 37, + 14 + ] + }, + { + "Answer": 24, + "Explanation": [ + 17, + 52, + 98 + ] + }, + { + "Answer": 27, + "Explanation": [ + 80, + 23, + 39 + ] + }, + { + "Answer": 27, + "Explanation": [ + 64, + 97, + 114 + ] + }, + { + "Answer": 18, + "Explanation": [ + 90, + 12, + 49 + ] + }, + { + "Answer": 12, + "Explanation": [ + 40, + 75, + 97 + ] + }, + { + "Answer": 32, + "Explanation": [ + 15, + 59, + 94 + ] + }, + { + "Answer": 56, + "Explanation": [ + 92, + 23, + 69 + ] + }, + { + "Answer": 30, + "Explanation": [ + 90, + 12, + 49 + ] + }, + { + "Answer": 30, + "Explanation": [ + 10, + 39, + 94 + ] + }, + { + "Answer": 72, + "Explanation": [ + 40, + 75, + 97 + ] + }, + { + "Answer": 27, + "Explanation": [ + 110, + 26, + 74 + ] + }, + { + "Answer": 72, + "Explanation": [ + 15, + 38, + 74 + ] + }, + { + "Answer": 21, + "Explanation": [ + 48, + 73, + 114 + ] + }, + { + "Answer": 56, + "Explanation": [ + 45, + 80, + 122 + ] + }, + { + "Answer": 30, + "Explanation": [ + 96, + 12, + 56 + ] + }, + { + "Answer": 6, + "Explanation": [ + 80, + 23, + 39 + ] + }, + { + "Answer": 63, + "Explanation": [ + 110, + 25, + 74 + ] + }, + { + "Answer": 63, + "Explanation": [ + 17, + 52, + 98 + ] + }, + { + "Answer": 12, + "Explanation": [ + 119, + 19, + 54 + ] + }, + { + "Answer": 30, + "Explanation": [ + 100, + 10, + 29 + ] + }, + { + "Answer": 36, + "Explanation": [ + 15, + 59, + 93 + ] + }, + { + "Answer": 14, + "Explanation": [ + 40, + 75, + 96 + ] + }, + { + "Answer": 54, + "Explanation": [ + 72, + 36, + 13 + ] + }, + { + "Answer": 15, + "Explanation": [ + 95, + 12, + 55 + ] + }, + { + "Answer": 6, + "Explanation": [ + 135, + 13, + 48 + ] + }, + { + "Answer": 72, + "Explanation": [ + 14, + 69, + 97 + ] + }, + { + "Answer": 5, + "Explanation": [ + 10, + 34, + 67 + ] + }, + { + "Answer": 3, + "Explanation": [ + 17, + 50, + 93 + ] + }, + { + "Answer": 6, + "Explanation": [ + 10, + 48, + 107 + ] + }, + { + "Answer": 8, + "Explanation": [ + 15, + 54, + 149 + ] + }, + { + "Answer": 5, + "Explanation": [ + 13, + 79, + 133 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 49, + 95 + ] + }, + { + "Answer": 7, + "Explanation": [ + 16, + 49, + 94 + ] + }, + { + "Answer": 8, + "Explanation": [ + 12, + 47, + 72 + ] + }, + { + "Answer": 6, + "Explanation": [ + 19, + 56, + 130 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 65, + 110 + ] + }, + { + "Answer": 5, + "Explanation": [ + 50, + 83, + 125 + ] + }, + { + "Answer": 9, + "Explanation": [ + 60, + 108, + 166 + ] + }, + { + "Answer": 3, + "Explanation": [ + 63, + 84, + 150 + ] + }, + { + "Answer": 8, + "Explanation": [ + 13, + 66, + 111 + ] + }, + { + "Answer": 5, + "Explanation": [ + 17, + 50, + 94 + ] + }, + { + "Answer": 6, + "Explanation": [ + 11, + 68, + 137 + ] + }, + { + "Answer": 2, + "Explanation": [ + 9, + 33, + 66 + ] + }, + { + "Answer": 7, + "Explanation": [ + 15, + 107, + 81 + ] + }, + { + "Answer": 8, + "Explanation": [ + 30, + 59, + 106 + ] + }, + { + "Answer": 7, + "Explanation": [ + 11, + 49, + 95 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 68, + 136 + ] + }, + { + "Answer": 9, + "Explanation": [ + 19, + 56, + 131 + ] + }, + { + "Answer": 9, + "Explanation": [ + 17, + 50, + 94 + ] + }, + { + "Answer": 2, + "Explanation": [ + 55, + 67, + 109 + ] + }, + { + "Answer": 4, + "Explanation": [ + 12, + 65, + 110 + ] + }, + { + "Answer": 7, + "Explanation": [ + 11, + 46, + 71 + ] + }, + { + "Answer": 7, + "Explanation": [ + 14, + 107, + 81 + ] + }, + { + "Answer": 4, + "Explanation": [ + 11, + 49, + 108 + ] + }, + { + "Answer": 2, + "Explanation": [ + 19, + 48, + 103 + ] + }, + { + "Answer": 8, + "Explanation": [ + 58, + 106, + 162 + ] + }, + { + "Answer": 6, + "Explanation": [ + 17, + 50, + 94 + ] + }, + { + "Answer": 2, + "Explanation": [ + 17, + 50, + 95 + ] + }, + { + "Answer": 8, + "Explanation": [ + 50, + 83, + 125 + ] + }, + { + "Answer": 8, + "Explanation": [ + 19, + 48, + 102 + ] + }, + { + "Answer": 4, + "Explanation": [ + 14, + 46, + 93 + ] + }, + { + "Answer": 5, + "Explanation": [ + 13, + 95, + 157 + ] + }, + { + "Answer": 7, + "Explanation": [ + 11, + 68, + 137 + ] + }, + { + "Answer": 6, + "Explanation": [ + 54, + 66, + 108 + ] + }, + { + "Answer": 9, + "Explanation": [ + 59, + 107, + 163 + ] + }, + { + "Answer": 6, + "Explanation": [ + 63, + 84, + 150 + ] + }, + { + "Answer": 9, + "Explanation": [ + 10, + 34, + 67 + ] + }, + { + "Answer": 6, + "Explanation": [ + 64, + 85, + 151 + ] + }, + { + "Answer": 3, + "Explanation": [ + 14, + 46, + 93 + ] + }, + { + "Answer": 5, + "Explanation": [ + 11, + 68, + 137 + ] + }, + { + "Answer": 5, + "Explanation": [ + 19, + 56, + 131 + ] + }, + { + "Answer": 6, + "Explanation": [ + 13, + 79, + 134 + ] + }, + { + "Answer": 9, + "Explanation": [ + 13, + 96, + 158 + ] + }, + { + "Answer": 3, + "Explanation": [ + 17, + 50, + 95 + ] + }, + { + "Answer": 8, + "Explanation": [ + 11, + 46, + 71 + ] + }, + { + "Answer": 4, + "Explanation": [ + 11, + 64, + 109 + ] + }, + { + "Answer": 3, + "Explanation": [ + 10, + 48, + 107 + ] + }, + { + "Answer": 7, + "Explanation": [ + 13, + 66, + 110 + ] + }, + { + "Answer": 3, + "Explanation": [ + 63, + 84, + 150 + ] + }, + { + "Answer": 4, + "Explanation": [ + 11, + 68, + 136 + ] + }, + { + "Answer": 2, + "Explanation": [ + 50, + 83, + 124 + ] + }, + { + "Answer": 4, + "Explanation": [ + 13, + 79, + 134 + ] + }, + { + "Answer": 2, + "Explanation": [ + 16, + 49, + 94 + ] + }, + { + "Answer": 7, + "Explanation": [ + 13, + 95, + 157 + ] + }, + { + "Answer": 9, + "Explanation": [ + 19, + 56, + 130 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 47, + 72 + ] + }, + { + "Answer": 3, + "Explanation": [ + 11, + 49, + 94 + ] + }, + { + "Answer": 6, + "Explanation": [ + 31, + 59, + 106 + ] + }, + { + "Answer": 5, + "Explanation": [ + 19, + 48, + 103 + ] + }, + { + "Answer": 8, + "Explanation": [ + 16, + 49, + 94 + ] + }, + { + "Answer": 9, + "Explanation": [ + 17, + 51, + 95 + ] + }, + { + "Answer": 8, + "Explanation": [ + 11, + 50, + 109 + ] + }, + { + "Answer": 2, + "Explanation": [ + 14, + 106, + 80 + ] + }, + { + "Answer": 6, + "Explanation": [ + 14, + 80, + 135 + ] + }, + { + "Answer": 7, + "Explanation": [ + 11, + 46, + 70 + ] + }, + { + "Answer": 6, + "Explanation": [ + 11, + 68, + 137 + ] + }, + { + "Answer": 5, + "Explanation": [ + 14, + 106, + 80 + ] + }, + { + "Answer": 2, + "Explanation": [ + 14, + 46, + 93 + ] + }, + { + "Answer": 5, + "Explanation": [ + 53, + 65, + 107 + ] + }, + { + "Answer": 3, + "Explanation": [ + 13, + 79, + 134 + ] + }, + { + "Answer": 3, + "Explanation": [ + 17, + 50, + 93 + ] + }, + { + "Answer": 3, + "Explanation": [ + 13, + 95, + 156 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 49, + 95 + ] + }, + { + "Answer": 2, + "Explanation": [ + 11, + 35, + 67 + ] + }, + { + "Answer": 3, + "Explanation": [ + 63, + 84, + 150 + ] + }, + { + "Answer": 5, + "Explanation": [ + 16, + 49, + 94 + ] + }, + { + "Answer": 2, + "Explanation": [ + 19, + 48, + 103 + ] + }, + { + "Answer": 5, + "Explanation": [ + 51, + 85, + 127 + ] + }, + { + "Answer": 3, + "Explanation": [ + 30, + 58, + 105 + ] + }, + { + "Answer": 7, + "Explanation": [ + 63, + 84, + 150 + ] + }, + { + "Answer": 2, + "Explanation": [ + 13, + 95, + 157 + ] + }, + { + "Answer": 4, + "Explanation": [ + 59, + 107, + 163 + ] + }, + { + "Answer": 8, + "Explanation": [ + 17, + 50, + 94 + ] + }, + { + "Answer": 7, + "Explanation": [ + 19, + 56, + 131 + ] + }, + { + "Answer": 4, + "Explanation": [ + 11, + 49, + 108 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 64, + 109 + ] + }, + { + "Answer": 7, + "Explanation": [ + 11, + 65, + 110 + ] + }, + { + "Answer": 4, + "Explanation": [ + 31, + 59, + 106 + ] + }, + { + "Answer": 9, + "Explanation": [ + 53, + 65, + 107 + ] + }, + { + "Answer": 9, + "Explanation": [ + 17, + 50, + 94 + ] + }, + { + "Answer": 9, + "Explanation": [ + 11, + 49, + 95 + ] + }, + { + "Answer": 3, + "Explanation": [ + 11, + 35, + 68 + ] + }, + { + "Answer": 3, + "Explanation": [ + 12, + 51, + 146 + ] + }, + { + "Answer": 7, + "Explanation": [ + 19, + 56, + 131 + ] + }, + { + "Answer": 3, + "Explanation": [ + 13, + 79, + 134 + ] + }, + { + "Answer": 2, + "Explanation": [ + 16, + 49, + 94 + ] + } + ] +} \ No newline at end of file