diff --git "a/all/asdiv.json" "b/all/asdiv.json" deleted file mode 100644--- "a/all/asdiv.json" +++ /dev/null @@ -1,29864 +0,0 @@ -{ - "Source": "https://aclanthology.org/2020.acl-main.92/", - "Categories": [ - { - "Math complexity": 2, - "Language complexity": 7, - "Domain knowledge complexity": 0 - } - ], - "Instances": [ - { - "Input": "A delivery driver had to make 3 stops on his route. After he finished those deliveries he made 4 more stops. How many stops did he make total?", - "Output Program": [ - "ans=3+4\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Tom already had 2 pieces of candy. His friend gave him 7 more and then Tom bought another 10. How many pieces does Tom have now?", - "Output Program": [ - "ans=2+7+10\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Mark has 13 trees in his backyard. If he plants 12 more, how many trees will he have?", - "Output Program": [ - "ans=13+12\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "train" - }, - { - "Input": "Carmen is creating lollipop bouquets using 4 cherry lollipops and 6 orange lollipops. She wants each bouquet to be identical, with no lollipops left over. What is the greatest number of lollipop bouquets Carmen can create?", - "Output Program": [ - "import math\nans=math.gcd(4,6)\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Roger had sixty-three dollars. If he spent forty-eight bucks on a new game, how many three dollar toys could he buy with the money he had left?", - "Output Program": [ - "ans=(63-48)/3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "There were ninety-eight onions on the shelf. Sixty-five were sold. How many onions is there on the shelf now?", - "Output Program": [ - "ans=98-65\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "train" - }, - { - "Input": "A bicycle and a bicycle helmet cost 240 dollars. How much did each cost, if the bicycle cost 5 times as much as the helmet?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of the bicycle; y:The cost of the helmet\n# x+y=240; x=5y\nsolution=solve([x+y-240, x-5*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Haley's old washing machine could only wash seven pieces of clothing at a time. If she had to wash two shirts and thirty-three sweaters, how many loads would she have to do?", - "Output Program": [ - "ans=(2+33)/7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "At an ice cream shop the ratio of sugar cones sold to waffle cones sold is 5:4. If there are 45 sugar cones sold, how many waffles cones would be sold?", - "Output Program": [ - "ans=(4/5)*45\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Peter had 33 marbles in his pocket. He lost some when he went outside to play. Now he only has 18 marbles. How many marbles did Peter lose?", - "Output Program": [ - "ans=33-18\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "There are 96 cupcakes for 8 children to share. How much will each person get if they share the cupcakes equally?", - "Output Program": [ - "ans=96/8\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "The ages of Peter, Margaret and Jack are consecutive odd numbers. The sum of the ages of Peter and Margaret equals Jack's age before 5 years. Find the ages of Peter, Margaret and Jack.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Peter's age\n# x+(x+2)-5=(x+4)\nsolution=solve([x+(x+2)-5-((x+4))], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "White t-shirts can be purchased in packages of 6. If Mom buys 71 packages, how many white t-shirts will she have?", - "Output Program": [ - "ans=6*71\nprint(ans)" - ], - "Output Answer": [ - "426" - ], - "split": "train" - }, - { - "Input": "Both of them were also asked to take note of the total number of chicken in the farm. Ben counted a total of 9 chicken coops and Daniel said that there are 60 chickens in one coop. How many chickens do they have in total?", - "Output Program": [ - "ans=9*60\nprint(ans)" - ], - "Output Answer": [ - "540" - ], - "split": "train" - }, - { - "Input": "In 3 seconds, Kevin can dribble a basketball 13 times. If Kevin dribbles at this same rate for 27 seconds, how many times will he dribble the basketball?", - "Output Program": [ - "ans=(13/3)*27\nprint(ans)" - ], - "Output Answer": [ - "117" - ], - "split": "train" - }, - { - "Input": "John can read 4 books a day. He reads every Monday and Tuesday. How many books would he read in 6 weeks?", - "Output Program": [ - "ans=(4+4)*6\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Anita needs 26 cartons of berries to make a berry cobbler. She already has 10 cartons of strawberries and 9 cartons of blueberries. How many more cartons of berries should Anita buy?", - "Output Program": [ - "ans=26-(10+9)\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "After the aviary was the zoo's swamp area. Penny counted a total of 55 tree frogs, 10 poison frogs and 13 wood frogs. How many frogs was Penny able to count?", - "Output Program": [ - "ans=55+10+13\nprint(ans)" - ], - "Output Answer": [ - "78" - ], - "split": "train" - }, - { - "Input": "Adam could fit nine action figures on each shelf in his room. His room has three shelves. How many action figures total could his shelves hold?", - "Output Program": [ - "ans=9*3\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt had 43 cents. She bought a pencil for 20 cents and a piece of candy for 5 cents. How much money did she have left?", - "Output Program": [ - "ans=43-20-5\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "On a track for remote-controlled racing cars, racing car A completes the track in 28 seconds, while racing car B completes it in 24 seconds. If they both start at the same time, after how many seconds will they be side by side again?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([28,24])\nprint(ans)" - ], - "Output Answer": [ - "168" - ], - "split": "train" - }, - { - "Input": "During a sale, a shoe store sold 2 pairs of sneakers, 4 pairs of sandals and 11 pairs of boots. How many pairs of shoes did the store sell?", - "Output Program": [ - "ans=2+4+11\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Billy was painting a wall in his room. The total area was 8 square feet. If the wall was 2 feet wide, how tall is it?", - "Output Program": [ - "ans=8/2\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "There are 100 books on a shelf. 32 of them are history books, 25 of them are geography books and the rest are math books. How many math books are there on the shelf?", - "Output Program": [ - "ans=(100-32)-25\nprint(ans)" - ], - "Output Answer": [ - "43" - ], - "split": "train" - }, - { - "Input": "Frannie and Meg are in a jump rope contest. Frannie jumped 53 times without missing. She jumped 18 fewer times than Meg. How many times did Meg jump?", - "Output Program": [ - "ans=53+18\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "train" - }, - { - "Input": "A clown had sixteen balloons. He gave four away at a party. What's the difference between the number of balloons the clown had in the beginning and he gave away at a party?", - "Output Program": [ - "ans=16-4\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Marcus and his friends are starting a recycling project to help the school raise some money for charity. They were tasked to collect different materials and create useful things from those. If Marcus was able to gather 25 milk bottles, and John was able to gather 20 milk bottles, how many milk bottles do they have available for recycling?", - "Output Program": [ - "ans=20+25\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "A washing machine can wash 28 pounds of clothes per day. If there are 200 pounds of clothes to be washed per day, how many pounds of clothes does the washing machine that isn't fully loaded wash per day?", - "Output Program": [ - "ans=200%28\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Rachel baked some brownies. She brought 16 brownies to school that day. She left 24 brownies at home. How many brownies did Rachel bake?", - "Output Program": [ - "ans=16+24\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt bought 15 books. She paid $11 for each book. She later sold all 15 books for $25 each. What is the difference between the total amount of money Mrs. Hilt sold the books for and the total amount of money she paid for the books?", - "Output Program": [ - "ans=(15*25)-(15*11)\nprint(ans)" - ], - "Output Answer": [ - "210" - ], - "split": "train" - }, - { - "Input": "The second angle of a triangle is five times as large as the first. The measure of the third angle is 12 degrees greater than that of the first angle. How large are the angles?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The first angle of a triangle; y:The second angle of a triangle\n# y=5x; 180-(x+y)=x+12\nsolution=solve([y-5*x, 180-(x+y)-(x+12)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "At the carnival, nine friends bought eight hundred sixty-five tickets. If they wanted to split all the tickets so each friend got the same amount, how many more tickets would they need to buy?", - "Output Program": [ - "ans=9-865%9\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Edward spent $2 on a board game and then he bought 4 action figures for $7 each. How much money did he spend on the game and figures?", - "Output Program": [ - "ans=4*7+2\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "He then went to see the oranges being harvested. He found out that they harvest 83 sacks per day. How many sacks of oranges will they have after 6 days of harvest?", - "Output Program": [ - "ans=83*6\nprint(ans)" - ], - "Output Answer": [ - "498" - ], - "split": "train" - }, - { - "Input": "Dave was working as a sacker at a grocery store where he made six dollars an hour. On Monday he worked six hours and on Tuesday he worked two hours. How much money did Dave make in those two days?", - "Output Program": [ - "ans=(6+2)*6\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Haley had 2 dollars. If she got 13 more dollars in total for doing chores and her birthday, what's the difference between the number of dollars before Haley got money and she got from events?", - "Output Program": [ - "ans=13-2\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Austin is putting stickers in a sticker book. He put 8 stickers on the first page, 16 stickers on the second page, 24 stickers on the third page, and 32 stickers on the fourth page. If this pattern continues, how many stickers will Austin put on the fifth page?", - "Output Program": [ - "lst=[8,16,24,32,40]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Philip is buying pens and pencils from the store. Pens come in packages of 12, but pencils are sold in packages of 15. If Philip wishes to purchase the same number of pens as pencils, what is the smallest number of pens that he can buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([12,15])\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "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": [ - "ans=(25+17)-10\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Jeremy has two pieces of wood: one is 90 inches and the other is 72 inches. He wants to cut both pieces of wood into smaller pieces so that all these pieces are the same length. How long does he cut the both pieces of wood?", - "Output Program": [ - "import math\nans=math.gcd(72,90)\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "I see 23 boys. How many eyes do I see?", - "Output Program": [ - "ans=23*2\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "train" - }, - { - "Input": "Each CD rack holds 8 CDs. A shelf can hold four racks. How many total CDs can fit on the shelf?", - "Output Program": [ - "ans=8+8+8+8\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "A clown had sixteen balloons. He gave four away at a party. How many balloons does he still have?", - "Output Program": [ - "ans=16-4\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Bianca spent twenty-two minutes drawing at school and nineteen minutes drawing at home. How many minutes total did she spend drawing?", - "Output Program": [ - "ans=22+19\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "train" - }, - { - "Input": "Billy was playing basketball with his friend. Billy scored 7 points and his friend scored 9 points. What's the difference between Billy's points and his friend's points?", - "Output Program": [ - "ans=9-7\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "While playing a game Sam had ninety-two points. If he scored another three points, how many points would he have total?", - "Output Program": [ - "ans=92+3\nprint(ans)" - ], - "Output Answer": [ - "95" - ], - "split": "train" - }, - { - "Input": "2 toucans are sitting on a tree limb. 1 more toucan joins them. How many toucans in all?", - "Output Program": [ - "ans=2+1\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "It's Halloween in Chicago. Bob, Mary, John, Sue and Sam dressed as superheroes and went out to do some trick or treating. After passing through the houses on Main Street, the five friends counted how much candy they have. If Bob has 10 candies, Mary has 5, Sue has 20, John has 5 as well and Sam has also 10 candies. How many candies did they have together?", - "Output Program": [ - "ans=10+5+20+5+10\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "Input": "A pet store was selling mice 2 for $5.34. If they ended up selling 7 mice, how much money would they have earned?", - "Output Program": [ - "ans=(5.34/2)*7\nprint(ans)" - ], - "Output Answer": [ - "18.69" - ], - "split": "train" - }, - { - "Input": "A pet store had 2 dogs. On Sunday they got 5 more. On Monday they got 3 more. How many dogs does the pet store have now?", - "Output Program": [ - "ans=2+5+3\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Drew gave 12 marbles to Marcus. Each boy then had 25 marbles. How many more marbles did Drew have than Marcus at first?", - "Output Program": [ - "ans=(25+12)-(25-12)\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "At a bake sale there were 104 items sold total. If 48 of the items sold were cookies and the rest were brownies, what is the ratio of brownies sold to cookies sold?", - "Output Program": [ - "from fractions import Fraction\ndif=104-48\nfrac=Fraction(dif,48)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "7:6" - ], - "split": "train" - }, - { - "Input": "There were ninety-four dollars in Olivia's wallet. After she visited a supermarket, there were seventy-eight dollars left. How much did she spend?", - "Output Program": [ - "ans=94-78\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Frank had $16. After buying some new toys he had $8 left. How much did he spend on toys?", - "Output Program": [ - "ans=16-8\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "An architect was building a hotel downtown. He bought 147 lamps to put in the rooms. If each room gets 7 lamps, how many rooms does the hotel have?", - "Output Program": [ - "ans=147/7\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "A rectangular living room measures 12 feet by 10 feet. A carpet placed on the floor leaves a border 2 feet wide all around it. What is the area of the border?", - "Output Program": [ - "ans=(12*10)-(12-2*2)*(10-2*2)\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "train" - }, - { - "Input": "Janet has nine oranges and Sharon has seven oranges. How many oranges do Janet and Sharon have together?", - "Output Program": [ - "ans=9+7\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "The perimeter of a rectangle is 150 cm. The length is 15 cm greater than the width. Find the dimensions.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The length of a rectangle; y:The width of a rectangle\n# 2x+2y=150; x=y+15\nsolution=solve([2*x+2*y-150, x-(y+15)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "Craig and Brian looked for seashells. For every 9 seashells Craig found, Brian found 7. Craig found 54 seashells. How many fewer seashells did Brian find than Craig?", - "Output Program": [ - "ans=54-42\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "A chef had seventy-seven cherries. If he used sixty of them to make a pie, how many cherries would he still have?", - "Output Program": [ - "ans=77-60\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Serena wants to create snack bags for a trip she is going on. She has 6 granola bars and 10 pieces of dried fruit. If the snack bags should be identical without any food left over, what is the greatest number of snack bags Serena can make?", - "Output Program": [ - "import math\nans=math.gcd(6,10)\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "A pet shop has a total of 77 animals. 32 of them are kittens and 15 of them hamsters, the rest are birds. How many birds are there?", - "Output Program": [ - "ans=(77-32)-15\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "Melody made 26 cut-outs of Christmas trees with red shiny balls. If she planned to paste 4 of this to the front cover of a certain number of cards, how many cards will she be able to make?", - "Output Program": [ - "ans=26//4\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Ned mowed his lawn six times in the spring and five times in the summer. How many times did he mow total?", - "Output Program": [ - "ans=6+5\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "There are some passengers on a bus. At a bus stop, 7 more passengers got on the bus and 9 passengers got off. If there are 26 passengers in the bus in the end, how many passengers were there at first?", - "Output Program": [ - "ans=26+9-7\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "A buffet offers ranch or caesar dressing. The ratio of ranch dressing used to caesar dressing used is 7:1. If the buffet uses 28 cases of ranch dressing, how many cases of caesar do they use?", - "Output Program": [ - "ans=(1/7)*28\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Nathan is stocking bathrooms at the hotel where he works. He has 18 rolls of toilet paper and 9 bars of soap. If he wants all bathrooms to be stocked identically, with the same combination of supplies in each one and nothing left over, what is the greatest combination of bathrooms Nathan can stock?", - "Output Program": [ - "import math\nans=math.gcd(18,9)\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Carla has some marbles. She bought 134 marbles. Now she has 187 marbles. How many did she start with?", - "Output Program": [ - "ans=187-134\nprint(ans)" - ], - "Output Answer": [ - "53" - ], - "split": "train" - }, - { - "Input": "Jenny and her family just moved into a new city and today would be her first day on a new school. She wanted to make sure that she is well rested so she made sure that she had 8 hours of sleep. If an hour is composed of 60 minutes, how many minutes of sleep did she have?", - "Output Program": [ - "ans=8*60\nprint(ans)" - ], - "Output Answer": [ - "480" - ], - "split": "train" - }, - { - "Input": "For a party Henry spent forty-five dollars on food and thirty-three dollars on drinks. How much did Henry spend total?", - "Output Program": [ - "ans=45+33\nprint(ans)" - ], - "Output Answer": [ - "78" - ], - "split": "train" - }, - { - "Input": "12 less than twice a number is 20. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# 2x-12=20\nsolution=solve([2*x-12-20], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Aside from drawing animals, Shiela is fond of painting flowers. If she has 18 paintings of flowers, how many paintings can she give to each of her two grandmothers?", - "Output Program": [ - "ans=18/2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Britney brewed lemon tea that's enough to fill ten cups. If she serves this to her parents and three siblings and they share this equally, how many cups will each have?", - "Output Program": [ - "ans=10/(2+3)\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Kaleb has seventeen shirts. If he got rid of seven of them, how many shirts would Kaleb have?", - "Output Program": [ - "ans=17-7\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Amy was planting vegetables in her garden. She started with one hundred one seeds and planted forty-seven of them in the big garden and in each of her small gardens put six seeds each. How many small gardens did Amy have?", - "Output Program": [ - "ans=(101-47)/6\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Rob is very fond of tall structures. He likes collecting pictures and comparing them. Two of his favorite buildings are Chicago's Sears Tower and Dubai's Burj Khalifa. If Burj Khalifa stands at 830 meters high and Sears stands at 527 meters high, how much higher is Burj Khalifa than Sears?", - "Output Program": [ - "ans=830-527\nprint(ans)" - ], - "Output Answer": [ - "303" - ], - "split": "train" - }, - { - "Input": "Adam put eighteen items in the shopping cart. After deleting some, he had eight left. How many items did Adam delete?", - "Output Program": [ - "ans=18-8\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "There are 6 birds and 3 nests. What's the difference of the number of birds and nests over there?", - "Output Program": [ - "ans=6-3\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Kevin collected toys to use as prizes at the fair. He collected 14 stuffed animals. He also collected 18 frisbees and several yo-yos. Kevin has 50 prizes in all. How many yo-yos did Kevin collect?", - "Output Program": [ - "ans=50-18-14\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Annie is about to celebrate her birthday next week so her friends decided to throw her a surprise birthday party. Jessica, Annie's best friend, is hosting the party. She plans on making pizza for everyone. If she bought 15 pieces of pepperoni, 10 pieces of salami and 30 pieces of bacon as meat ingredients, how many pieces of meat did she buy in total?", - "Output Program": [ - "ans=15+10+30\nprint(ans)" - ], - "Output Answer": [ - "55" - ], - "split": "train" - }, - { - "Input": "Kate gave the clerk $1.00. Her candy cost 54 cents. How much change should Kate get back?", - "Output Program": [ - "ans=1.00-0.54\nprint(ans)" - ], - "Output Answer": [ - "0.46" - ], - "split": "train" - }, - { - "Input": "There are 5 boys and 4 girls in a classroom. After 3 boys left the classroom, another 2 girls came in the classroom. How many children were there in the classroom in the end?", - "Output Program": [ - "ans=5+4-3+2\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Camryn practices the trumpet every 11th day and the flute every 3rd day. Camryn practiced both the trumpet and the flute today. How many days until Camryn practices the trumpet and flute again in the same day?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([11,3])\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "train" - }, - { - "Input": "While organizing the magazines at the doctor's office, Blanca put 3 magazines in the first pile, 4 magazines in the second pile, 6 magazines in the third pile, and 9 magazines in the fourth pile. If this pattern continues, how many magazines will Blanca put in the fifth pile?", - "Output Program": [ - "lst=[3,4,6,9,13]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "John has twelve shirts. Later he bought four more shirts. How many shirts does John have total?", - "Output Program": [ - "ans=12+4\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Ann has $777 and Bill has $1,111. How much does Bill need to give to Ann, so that they would have the same amount of money?", - "Output Program": [ - "ans=(1111-777)/2\nprint(ans)" - ], - "Output Answer": [ - "167" - ], - "split": "train" - }, - { - "Input": "The following week, they decided to go to Lake Huron and Lake Michigan. During their stay there, they caught a total of 30 pikes, 40 sturgeons and 75 herrings. How many fishes did they catch from the two lakes?", - "Output Program": [ - "ans=30+40+75\nprint(ans)" - ], - "Output Answer": [ - "145" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt saw a rollercoaster. Seven students rode the rollercoaster every 5 minutes. How many students rode the rollercoaster in 15 minutes?", - "Output Program": [ - "ans=7*(15/5)\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "A chef had forty-six apples. After making some pies he had fourteen left. What's the difference between the number of apples before the chef made pies and the after the chef making pies?", - "Output Program": [ - "ans=46-14\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Marcia spent 300 minutes working on her science project. How many hours did she spend on her science project?", - "Output Program": [ - "ans=300/60\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "At a bake sale there were 42 raisin cookies sold. If the ratio of raisin cookies sold to oatmeal cookies sold was 6:1, what is the combined amount of raisin and oatmeal cookies sold?", - "Output Program": [ - "ans=(7/6)*42\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "train" - }, - { - "Input": "After visiting the museum, Benjamin went back to the hotel where he prepared for New Year's Eve at the annual Times Square Ball Drop. To get there, he took 354 steps to the Rockefeller Center then 228 steps to Times Square itself. How many steps did he take before reaching Times Square?", - "Output Program": [ - "ans=354+228\nprint(ans)" - ], - "Output Answer": [ - "582" - ], - "split": "train" - }, - { - "Input": "At the arcade Billy had won forty-eight tickets. After buying a yoyo he had thirty-two tickets left. What's the difference between the number of Billy's tickets he won and he had the left after buying yoyo?", - "Output Program": [ - "ans=48-32\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "There are a total of 90 items at a bakery. 49 of them are bread rolls and 19 of them are croissants. How many bagels are there?", - "Output Program": [ - "ans=(90-49)-19\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "Billy had seventy-four cherries. He ate seventy-two of them. How many cherries does Billy have left?", - "Output Program": [ - "ans=74-72\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "On Facebook Debby had sixty-three photos of her friends and twenty-three photos of her family. How many photos did she have total?", - "Output Program": [ - "ans=63+23\nprint(ans)" - ], - "Output Answer": [ - "86" - ], - "split": "train" - }, - { - "Input": "Candies come in packages of 4. Shirley ate 10 candies. How many candies does she have left?", - "Output Program": [ - "ans=10%4\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "It is harvest season in the country. Lewis, whose family owns a fruit farm, is busy overseeing their farmers while they are harvesting the fruits. His day starts by going to the apple orchard. The farmers reported that they harvest 45 sacks of apples from each of the 8 sections of the orchard daily. How many apples are harvested every day?", - "Output Program": [ - "ans=45*8\nprint(ans)" - ], - "Output Answer": [ - "360" - ], - "split": "train" - }, - { - "Input": "Rachel took two dollars from her piggy bank. Now she has three dollars in her piggy bank. How much money was originally in there?", - "Output Program": [ - "ans=2+3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "The coach of a cricket team buys 7 bats and 6 balls for $3800. Later, he buys 3 bats and 5 balls for $1750. Find the cost of each bat and each ball.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Cost of each bat; y:Cost of each ball\n# 7x+6y=3800; 3x+5y=1750\nsolution=solve([7*x+6*y-3800, 3*x+5*y-1750], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "500" - ], - "split": "train" - }, - { - "Input": "There are 45 questions on the math test. 17 questions are word problems. 28 questions are addition and subtraction problems. Steve can only answer 38 questions. What's the difference between the number of all questions on the math test and the number of questions that Steve can answer?", - "Output Program": [ - "ans=45-38\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "The store has CD's and DVD's that you need. How many packs of DVD's can you buy with 132 dollars if one pack costs 12 dollars ?", - "Output Program": [ - "ans=132/12\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "One stamp costs $0.34. Two stamps cost $0.68. Three stamps cost $1.02. If the cost of each stamp remains the same, how much would 4 stamps cost?", - "Output Program": [ - "ans=1.02+0.34\nprint(ans)" - ], - "Output Answer": [ - "1.36" - ], - "split": "train" - }, - { - "Input": "Trevor counted 77 coins in his bank. He counted 29 quarters. The rest are dimes. How many more coints of the total than quarts does Trevor have?", - "Output Program": [ - "ans=77-29\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Andrew, Annie's other friend, was assigned with the preparation of appetizers. He decided to bring 30 hotdogs on sticks, 20 pieces of bite-sized cheese pops and 40 pieces of chicken nuggets. How many portions of appetizers did Andrew bring in all?", - "Output Program": [ - "ans=30+20+40\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "train" - }, - { - "Input": "Five years hence, the age of Jacob will be three times that of his son. Five years ago, Jacob's age was seven times that of his son. What are their present ages?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Jacob's age; y:The age of Jacob's son\n# x+5=3(y+5); x-5=7(y-5)\nsolution=solve([x+5-(3*(y+5)), x-5-(7*(y-5))], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "A package had eighteen cookies in it. After eating some there were nine left. How many were eaten?", - "Output Program": [ - "ans=18-9\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "There are 315 cups of puddings to be distributed to 218 students. If each of them wants an equal number of pudding cups, at least how many more pudding cups are needed?", - "Output Program": [ - "ans=218-315%218\nprint(ans)" - ], - "Output Answer": [ - "121" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt saw an iPod for sale. The price tag said the iPod cost $128, but a sign announced that it was on sale for \"35% off.\" How much would the iPod cost after the discount?", - "Output Program": [ - "ans=128-(128*0.35)\nprint(ans)" - ], - "Output Answer": [ - "83.2" - ], - "split": "train" - }, - { - "Input": "A recipe for cookies calls for 3 cups of sugar. Katie has already put in half a cup. How many more cups does she need to put in?", - "Output Program": [ - "ans=3.0-0.5\nprint(ans)" - ], - "Output Answer": [ - "2.5" - ], - "split": "train" - }, - { - "Input": "Lex read another book with 240 pages. If he read the same number of pages for 12 days, how many pages did he read every day?", - "Output Program": [ - "ans=240/12\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Third-grade students went to a concert in 8 buses. Each bus took 45 students. How many students went to the concert?", - "Output Program": [ - "ans=8*45\nprint(ans)" - ], - "Output Answer": [ - "360" - ], - "split": "train" - }, - { - "Input": "Michael and Tom both love collecting robots. They meet up every month so that they can check out and compare their collections. On their latest meeting, they found out that Tom has twice as many animal robots than Michael. If Michael has 8 animal robots, how many animal robots does Tom have?", - "Output Program": [ - "ans=2*8\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Ben on the other hand, was asked to count the number of cows that they have. He saw that there are a total of 40 cows for every cow herd. How many cows do they have in total if there are 8 cow herds in the farm?", - "Output Program": [ - "ans=40*8\nprint(ans)" - ], - "Output Answer": [ - "320" - ], - "split": "train" - }, - { - "Input": "Mike had fifty-one books, but he sold forty-five at a garage sale. How many books does Mike still have?", - "Output Program": [ - "ans=51-45\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "She also found out that she has 10 pieces of $5 bills. What is the total value of money does she have in $5 bills?", - "Output Program": [ - "ans=10*5\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "Input": "Twenty-two boys went down the slide. Thirteen more boys went down the slide. How many boys went down the slide?", - "Output Program": [ - "ans=22+13\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "The perimeter of a college basketball court is 96 meters and the length is 14 meters more than the width. What are the dimensions?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The length of the court; y:The width of the court\n# 2x+2y=96; x=y+14\nsolution=solve([2*x+2*y-96, x-(y+14)], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "A builder needed to buy one hundred fifty-four boards for his latest project. If the boards he needs come in packs of three, how many packages will he need to buy?", - "Output Program": [ - "ans=154//3+1\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "train" - }, - { - "Input": "There were 150 book shelves. Each book shelf had 15 books. How many books were on the shelves?", - "Output Program": [ - "ans=150*15\nprint(ans)" - ], - "Output Answer": [ - "2250" - ], - "split": "train" - }, - { - "Input": "The Wholesome Bakery baked 5 loaves of bread on Wednesday, 7 loaves of bread on Thursday, 10 loaves of bread on Friday, 14 loaves of bread on Saturday, and 19 loaves of bread on Sunday. If this pattern continues, how many loaves of bread will they bake on Monday?", - "Output Program": [ - "lst=[5,7,10,14,19,25]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "train" - }, - { - "Input": "There are 38 books on the shelf. Marta put 10 more books on the shelf. How many books are on the shelf now?", - "Output Program": [ - "ans=38+10\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "To have a more stable treehouse, Charlie's father decided to tie the corner posts of the house to the tree itself. He used 24 inches of rope for the first post, 20 inches on the second, 14 inches on the third and 12 inches on the fourth. How many inches of rope were used?", - "Output Program": [ - "ans=24+14+12+20\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "train" - }, - { - "Input": "Adam was painting a wall in his room. The wall was 4 feet wide and 4 feet tall. What is the area of the wall he has to paint?", - "Output Program": [ - "ans=4*4\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Jerry had to sell boxes of candy. He started out with 10 boxes and then sold 5. How many boxes did he have left?", - "Output Program": [ - "ans=10-5\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Wendy is a very generous kid. Every time her parents buy her some stuff, she always gives some of it to her friends. For her birthday this year, she received a new set of shoes. She now has a total of 33 pairs of shoes. If she gave away 14 pairs of shoes to her friends, how many pairs of shoes were left to her?", - "Output Program": [ - "ans=33-14\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Yadira's mom is buying hot dogs and hot dog buns for the family barbecue. Hot dogs come in packs of 12 and hot dog buns come in packs of 9. The store does not sell parts of a pack and Yadira's mom wants the same number of hot dogs as hot dog buns. What is the smallest total number of hot dogs that Yadira's mom can purchase?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([12,9])\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Charlie, an aspiring inventor, is planning to make some wings to fulfill his dream to fly around the world. He started by collecting feathers. He needs 900 feathers and he already has 387. How many more feathers does he need to collect?", - "Output Program": [ - "ans=900-387\nprint(ans)" - ], - "Output Answer": [ - "513" - ], - "split": "train" - }, - { - "Input": "At the fair Amy started with thirty-three tickets and then bought twenty-one more. How many tickets did Amy have total?", - "Output Program": [ - "ans=33+21\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "train" - }, - { - "Input": "Jovana filled her bucket with 5 pounds of shells. If a friend comes to add 15 pounds of shells, and another friend comes to add 17 pounds of shells, how many pounds does she have altogether?", - "Output Program": [ - "ans=5+15+17\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "Tom used 2 batteries on his flashlights, 15 in his toys and 2 in his controllers. How many batteries did Tom use?", - "Output Program": [ - "ans=2+15+2\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "A waiter had sixty-two customers in his section. If seventeen of them left and the rest of his tables had nine people at each table, how many tables did he have?", - "Output Program": [ - "ans=(62-17)/9\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Janice and Jasmine were each given a piece of ribbon of equal length. Janice cuts her ribbons into equal lengths of 2 m, while Jasmine cuts her ribbons into equal lengths of 5 m. If there was no remainder in both cases, what is the shortest possible length of ribbon given to them?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([2,5])\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "A small school has 42 boys. If the ratio of boys to girls is 7:1, how many students are there total?", - "Output Program": [ - "ans=(8/7)*42\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Debby received twenty-one text messages before noon and another eighteen after noon. How many text messages did Debby receive total?", - "Output Program": [ - "ans=21+18\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "Maria stored ninety-three cloves of garlic in the kitchen. She used eighty-six for roast chicken for dinner. How many cloves of garlic does she have left?", - "Output Program": [ - "ans=93-86\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Jawbreakers come in packages of 8. Sarah ate 20 Jawbreakers. How many Jawbreakers does she have left?", - "Output Program": [ - "ans=20%8\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "A restaurant added a new outdoor section that was 35 square feet. It was 7 feet wide. How long is their new section?", - "Output Program": [ - "ans=35/7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "In a basket, there are 24 good oranges and rest are bad oranges. The ratio of good oranges to the bad oranges is 3:1, find the number of bad oranges.", - "Output Program": [ - "ans=(1/3)*24\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Jerry was weighing boxes for moving. The first was 2 pounds, the second was 11 pounds and the last was 5 pounds. What is the combined weight of all three boxes?", - "Output Program": [ - "ans=2+11+5\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "A fast food restaurant sells two sizes of fries, small and large. On Friday they sold 24 fries total. If 4 of the fries sold were small, what is the ratio of large fries sold to small fries sold?", - "Output Program": [ - "from fractions import Fraction\ndif=24-4\nfrac=Fraction(dif,4)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "5:1" - ], - "split": "train" - }, - { - "Input": "Shannon is making identical balloon arrangements for a party. She has 32 maroon balloons, 24 white balloons, and 16 orange balloons. She wants each arrangement to have the same number of each color. What is the greatest number of arrangements that she can make if every balloon is used?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(32,24),16)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Mrs. Walker will have 56 apples for bobbing for apples. Each bucket will hold 9 apples. How many buckets will she need?", - "Output Program": [ - "ans=56//9+1\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "For a dinner party, Abraham is creating individual servings of starters. He has 9 carrot sticks and 18 celery sticks. If he wants each serving to be identical, with no food left over, what is the greatest number of servings Abraham can create?", - "Output Program": [ - "import math\nans=math.gcd(9,18)\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "When Amy got to the fair she had $15. When she left she had $11. How much money did she spend at the fair?", - "Output Program": [ - "ans=15-11\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Matt and his friends were thinking of making Christmas decors for the clubhouse in their neighborhood. They are to repaint 350 balls in ten different colors. If they painted an equal number of balls for every color, how many balls are there for each color?", - "Output Program": [ - "ans=350/10\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "At the bank, a customer turned in 2 dimes, 2 nickels and 7 quarters. What is the total number of coins the customer turned in?", - "Output Program": [ - "ans=2+2+7\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Having this kind of collection made Jack a fast reader. If he can read 9 books in a day, how many books can he read in a year (a year = 365 days)?", - "Output Program": [ - "ans=9*365\nprint(ans)" - ], - "Output Answer": [ - "3285" - ], - "split": "train" - }, - { - "Input": "Two clocks are turned on at the same time. One clock chimes every 15 minutes. The other clock chimes every 25 minutes. In how many minutes will they chime together?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([15,25])\nprint(ans)" - ], - "Output Answer": [ - "75" - ], - "split": "train" - }, - { - "Input": "A rectangle flower bed had a total area of 35 square yards. If it was 5 yards wide, how long was it?", - "Output Program": [ - "ans=35/5\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "On Monday, three hundred ninety-six students went on a trip to the zoo. All seven buses were filled and four students had to travel in cars. How many students were in each bus ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number of students in each bus\n# 7x+4=396\nsolution=solve([7*x+4-396], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "train" - }, - { - "Input": "Winnie completed eighty-six consecutive repetitions for rope jumping yesterday. Today she completed only seventy-three. How many repetitions did she fell behind?", - "Output Program": [ - "ans=86-73\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "There are 45 questions on the math test. 17 questions are word problems. 28 questions are addition and subtraction problems. Steve can only answer 38 questions. How many questions did Steve leave blank?", - "Output Program": [ - "ans=45-38\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "There were 22 bales of hay in the barn. Keith stacked more bales in the barn today. There are now 89 bales of hay in the barn. How many bales did he store in the barn ?", - "Output Program": [ - "ans=89-22\nprint(ans)" - ], - "Output Answer": [ - "67" - ], - "split": "train" - }, - { - "Input": "The Razorback t-shirt Shop sells their t-shirts for $16. Last week they sold 45 t-shirts. How much money did they make last week?", - "Output Program": [ - "ans=16*45\nprint(ans)" - ], - "Output Answer": [ - "720" - ], - "split": "train" - }, - { - "Input": "Jake set up a candy stand in his front yard. He has 80 pieces of candy to sell. He sold 15 pieces of candy on Monday. He sold much more than that on Tuesday. By Wednesday, Jakes only had 7 pieces left. How many pieces of candy did Jake sell on Tuesday?", - "Output Program": [ - "ans=80-15-7\nprint(ans)" - ], - "Output Answer": [ - "58" - ], - "split": "train" - }, - { - "Input": "The ratio of the weight of Meg's cat to the weight of Anne's cat is 5:7. Meg's cat weighs 20 kg. How much more does Anne's cat weigh?", - "Output Program": [ - "ans=28-20\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "At the carnival, 6 friends bought 234 tickets total. If they each bought the same amount, how many tickets did each person buy?", - "Output Program": [ - "ans=234/6\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "Vanessa received six hundred twenty-two dollars for her birthday. Later she found some toys that cost nine dollars each. How much money would she have left if she bought as many as she could?", - "Output Program": [ - "ans=622%9\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "In one day a movie store rented out 15 comedies. If the ratio of comedies rented to action movies rented was 3:1, how many action movies were rented?", - "Output Program": [ - "ans=(1/3)*15\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Mike owned sixty-four baseball cards. For his birthday he got eighteen more. How many cards does Mike have total?", - "Output Program": [ - "ans=64+18\nprint(ans)" - ], - "Output Answer": [ - "82" - ], - "split": "train" - }, - { - "Input": "Cody had a bag of marbles. Later he gave five to his brother. Now Cody has seven marbles. How many marbles did Cody have to start with?", - "Output Program": [ - "ans=5+7\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "A box can hold 18 pieces of chalk. If there are 3,484 pieces of chalk, how many boxes are full to hold all the chalk?", - "Output Program": [ - "ans=3484//18+1\nprint(ans)" - ], - "Output Answer": [ - "194" - ], - "split": "train" - }, - { - "Input": "Dan has $3.00. He bought a candy bar for $1.00. How much money is left?", - "Output Program": [ - "ans=3.00-1.00\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Blithe has a lot of toys. He lost 6 of them and found 9 in his closet. If he had 43 after that, how many toys did Blithe have at first?", - "Output Program": [ - "ans=43-9+6\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Paul made forty-four dollars mowing lawns and twenty-eight dollars weed eating. If he only spent nine dollar a week, how long would the money last him?", - "Output Program": [ - "ans=(44+28)/9\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "It's spring break at Rosewood High so Rachel and her family decided to take a trip across Europe. Since Rachel has always been fascinated by the French people, they began their tour with a visit to France. During their stay there, Rachel went to the famous Eiffel Tower. If she climbed 567 flights of stairs going up and 325 going down, what is the total number of steps that she took?", - "Output Program": [ - "ans=567+325\nprint(ans)" - ], - "Output Answer": [ - "892" - ], - "split": "train" - }, - { - "Input": "Willy has 5,092 crayons. Lucy has 3,971 crayons. How many more crayons does Willy have than Lucy?", - "Output Program": [ - "ans=5092-3971\nprint(ans)" - ], - "Output Answer": [ - "1121" - ], - "split": "train" - }, - { - "Input": "Mary is baking a cake. The recipe calls for 9 cups of flour and 3 cups of sugar. She already put in 2 cups of flour. How many more cups of flour does she need to add ?", - "Output Program": [ - "ans=9-2\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "A merry-go-round has a circular platform with a diameter of 2 yards. What is the platform's area?", - "Output Program": [ - "ans=(2/2)**2*3.14\nprint(ans)" - ], - "Output Answer": [ - "3.14" - ], - "split": "train" - }, - { - "Input": "An international group had 49 Chinese, Americans and Australians. 16 of them were Americans and 11 of them were Australians. How many Chinese were there?", - "Output Program": [ - "ans=(49-16)-11\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "Henry already had 5 dollars, but earned another 2 dollars doing chores. His friend had 13 dollars. If they put their money together, how much would they have?", - "Output Program": [ - "ans=5+2+13\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Ben was also given 7 trays of eggs to examine. If each tray has 10 eggs, how many eggs did Ben examine in total?", - "Output Program": [ - "ans=7*10\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "train" - }, - { - "Input": "Instead of buying from the store, Melody made Christmas cards for the elderly in a nursing home. She had 99 blue sequins which she plans to use as snowflakes for the cards. If she distributes the sequins equally to 12 cards, how many sequins will Melody have left?", - "Output Program": [ - "ans=99%12\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt made 5 Rice Krispie Treats. She used 8 large marshmallows and 10 mini marshmallows. How many marshmallows did she use altogether?", - "Output Program": [ - "ans=8+10\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "For Gwen's birthday she received five dollars. If she spent three dollars. How much money did she still have?", - "Output Program": [ - "ans=5-3\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Johnny practiced for the track team and ran 3 laps per minute. How many minutes did it take Johnny to run 10 laps?", - "Output Program": [ - "ans=10/3\nprint(ans)" - ], - "Output Answer": [ - "3.333" - ], - "split": "train" - }, - { - "Input": "After eating a hearty meal, they went to see the Buckingham Palace. There, Rachel learned that 583 visitors came to the palace that day. If there were 246 visitors the previous day, how many visited the palace within 2 days?", - "Output Program": [ - "ans=583+246\nprint(ans)" - ], - "Output Answer": [ - "829" - ], - "split": "train" - }, - { - "Input": "Oliver collected two seashells from the beach on Monday and two more on Tuesday. How many seashells did Oliver collect all together?", - "Output Program": [ - "ans=2+2\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Shiela has started writing a list of gifts that she plans to give to her family and friends this Christmas. For her classmates, she made colorful paper stars which will be placed in small clear bottles. She was able to prepare 45 paper stars. How many stars will be placed in each bottle if Shiela has 9 classmates?", - "Output Program": [ - "ans=45/9\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "There are 32 students in the class. The teacher divided them into 5 equal groups. How many students are there in each group?", - "Output Program": [ - "ans=32//5\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Amy's hair was eleven inches long. After a haircut it was seven inches long. How much did she cut off?", - "Output Program": [ - "ans=11-7\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Being a nature lover, she also gave some money to three forest reserves. If she donated $570.00 to Treetown National Park and The Forest Reserve which is $140.00 more than what she gave to Animal Preservation Park, how much did she donate to all three parks?", - "Output Program": [ - "ans=(570-140)+570\nprint(ans)" - ], - "Output Answer": [ - "1000" - ], - "split": "train" - }, - { - "Input": "Victor and his friend were buying trick decks from the magic shop for eight dollars each. How much did they spend if Victor bought six decks and his friend bought two decks?", - "Output Program": [ - "ans=(6+2)*8\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "Sam put 86 pretzels in a bowl for the party. His friends ate 49 of them. Sam put in 27 more pretzels. How many pretzels were in the bowl then?", - "Output Program": [ - "ans=86-49+27\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "At a bus stop forty-seven people got off the bus. Now there were forty-three people on the bus. How many people were on the bus before?", - "Output Program": [ - "ans=47+43\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "train" - }, - { - "Input": "Girl Scout cookies come packed 12 boxes to a case. Scout Deborah sold 31 boxes of Lemon Chalet Cremes. How many boxes will not be packed to a case?", - "Output Program": [ - "ans=31%12\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "There are 25 pencils in Frances's pencil collection. If the pencils are organized into 5 groups, how big is each group?", - "Output Program": [ - "ans=25/5\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Paige raised fifteen goldfish in the pond but stray cats loved eating them. Now she has four left. How many goldfish disappeared?", - "Output Program": [ - "ans=15-4\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "If the cave is 974 feet deep and they are already at 588 feet, how much farther until they reach the end of the cave?", - "Output Program": [ - "ans=974-588\nprint(ans)" - ], - "Output Answer": [ - "386" - ], - "split": "train" - }, - { - "Input": "A car salesman sold 8 on Monday, 3 on Tuesday, 10 on Wednesday, 4 on Thursday, 4 on Friday and 4 on Saturday. What is the mean of the number of cars he sold?", - "Output Program": [ - "ans=(8+3+10+4+4+4)/6\nprint(ans)" - ], - "Output Answer": [ - "5.5" - ], - "split": "train" - }, - { - "Input": "For an art show, an artist painted 153 pictures. During the show he sold 72 of his pictures. What is the ratio of pictures he still has to pictures he sold?", - "Output Program": [ - "from fractions import Fraction\ndif=153-72\nfrac=Fraction(dif,72)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "9:8" - ], - "split": "train" - }, - { - "Input": "Christian's father and the senior ranger gathered firewood as they walked towards the lake in the park and brought with them sacks. If every sack can contain around 20 pieces of wood, how many sacks were they able to fill if they gathered 80 pieces of wood?", - "Output Program": [ - "ans=80/20\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Isabella's hair is 18 inches long. By the end of the year her hair is 24 inches long. How much hair did she grow?", - "Output Program": [ - "ans=24-18\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Carol had ninety-seven pieces of tissue paper. After blowing her nose she had ninety-three left. How many pieces of tissue paper did she use?", - "Output Program": [ - "ans=97-93\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Donna and her friend found some money. They split the money evenly, each getting $32.50. How much money did they find?", - "Output Program": [ - "ans=32.5*2\nprint(ans)" - ], - "Output Answer": [ - "65.0" - ], - "split": "train" - }, - { - "Input": "Frank has a round tablecloth with a diameter of 10 feet. What is the tablecloth's radius?", - "Output Program": [ - "ans=10/2\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "A florist needed to use 2 pounds of fertilizer for 9 days and then on the final day use the normal amount plus another 4 pounds. How many pounds of fertilizer will she use all together?", - "Output Program": [ - "ans=2*9+4\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "Paul had 7 baseball cards he's putting into a binder with 3 on each page. How many cards will he have on the page that isn't full?", - "Output Program": [ - "ans=7%3\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "A railway half ticket costs half the full fare and the reservation charge is the same on half ticket as on full ticket. One reserved first class from Michigan to Massachusetts costs $216 and one full and one half reserved first class tickets cost $327. What is the basic first class full fare and what is the reservation charge?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of full first class ticket; y:The cost of reservation\n# x+y=216; 3/2x+2y=327\nsolution=solve([x+y-216, 3/2*x+2*y-327], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "210" - ], - "split": "train" - }, - { - "Input": "A piece of plywood was cut so its length was 6 feet by 5 feet. What is the perimeter of the wood?", - "Output Program": [ - "ans=(6+5)*2\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "Lawrence has 5504 marbles. If he shares them among 64 friends, how many marbles does each friend get?", - "Output Program": [ - "ans=5504/64\nprint(ans)" - ], - "Output Answer": [ - "86" - ], - "split": "train" - }, - { - "Input": "There were 10 students riding on the school bus. At the first stop, 3 students got off of the bus. How many students are left on the bus?", - "Output Program": [ - "ans=10-3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "It's getting dark so he decided to take one last stop. He took a cab to the Metropolitan Museum of Art. If he saw 465 pieces of Asian art and 527 pieces of Egyptian art, how many pieces of art did he see?", - "Output Program": [ - "ans=465+527\nprint(ans)" - ], - "Output Answer": [ - "992" - ], - "split": "train" - }, - { - "Input": "Each side of a square newspaper ad is 8 centimeters long. What is the newspaper ad's perimeter?", - "Output Program": [ - "ans=8*4\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Daniel and his brother Ben went to their grandfather's farm for a few weeks of vacation. During their stay at the farm, they were asked to take care of the animals. One day, his grandfather asked if he could count the total number of sheep that they have. If there are 3 herds of sheep and each herd has 20 sheep, how many sheep do they have in total?", - "Output Program": [ - "ans=3*20\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "Input": "A horse and a saddle cost 5000 dollars. If the horse cost 4 times as much as the saddle, what was the cost of each?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of the horse; y:The cost of the saddle\n# x+y=5000; x=4y\nsolution=solve([x+y-5000, x-4*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "1000" - ], - "split": "train" - }, - { - "Input": "Paige used three of her pencils. Now she has ninety-one pencils. How many pencils did Paige have to begin with?", - "Output Program": [ - "ans=3+91\nprint(ans)" - ], - "Output Answer": [ - "94" - ], - "split": "train" - }, - { - "Input": "John was given $14.00 in order to buy a gift. This covered half of the cost. How much did the gift cost?", - "Output Program": [ - "ans=14.0*2\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "The last place that he went to was the city animal shelter. There he donated some money to make sure the dogs and cats there are being taken care of. If there are 645 cats and 567 dogs there, how many animals are there in the shelter?", - "Output Program": [ - "ans=645+567\nprint(ans)" - ], - "Output Answer": [ - "1212" - ], - "split": "train" - }, - { - "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": [ - "ans=47-41+20\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": "Gwen's class is going on a field trip to the zoo. If each van can hold seven people and there are thirty-three students and nine adults going, how many vans will they need?", - "Output Program": [ - "ans=(9+33)/7\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Divide 39 balloons into 7 equal groups. How many balloons are left?", - "Output Program": [ - "ans=39%7\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "A pet store had eighty-five gerbils. If they sold sixty-nine of them, how many would they have left?", - "Output Program": [ - "ans=85-69\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "After visiting France, Rachel's sister Bella, requested that they see the Buckingham Palace in London. If they travelled 451 miles by land and 150 miles by sea across the English Channel, what is the total distance that they travelled?", - "Output Program": [ - "ans=451+150\nprint(ans)" - ], - "Output Answer": [ - "601" - ], - "split": "train" - }, - { - "Input": "Julia played tag with 12 kids on Monday. She played tag with 7 kids on Tuesday. How many kids did she play with altogether?", - "Output Program": [ - "ans=12+7\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "A sofa and a love seat together costs $444. The sofa costs double the love seat. How much do they each cost?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of the sofa; y:The cost of the love seat\n# x+y=444; x=2y\nsolution=solve([x+y-444, x-2*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "148" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt spent 25 cents on one caramel apple and 15 cents on one ice cream cone. How much more did the apple cost?", - "Output Program": [ - "ans=25-15\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "After going down the falls, he then went to Rock Mist Mountains. If the mountain is 50 times farther from the city than Sky Falls and Sky Falls is 8 miles from the city, how far is the Rocky Mist from the city?", - "Output Program": [ - "ans=50*8\nprint(ans)" - ], - "Output Answer": [ - "400" - ], - "split": "train" - }, - { - "Input": "While comparing the other robots that they have, Tom and Michael talked about Bob who has a large collection of car robots. If Tom and Michael have 9 car robots and Bob has 9 times more than that, how many car robots does Bob have in total?", - "Output Program": [ - "ans=9*9\nprint(ans)" - ], - "Output Answer": [ - "81" - ], - "split": "train" - }, - { - "Input": "An ice company charged $1.46 for 2 bags of ice. If a convenience store bought 4 bags of ice, how much would it have cost them?", - "Output Program": [ - "ans=(1.46/2)*4\nprint(ans)" - ], - "Output Answer": [ - "2.92" - ], - "split": "train" - }, - { - "Input": "At the top of the Empire State Building, he saw the Madison Square Garden so he decided to go there as well. It took him 676 steps to get down the building and 315 steps from the building to Madison Square Garden. How many steps did he take to get to Madison Square?", - "Output Program": [ - "ans=676+315\nprint(ans)" - ], - "Output Answer": [ - "991" - ], - "split": "train" - }, - { - "Input": "Last year, Springtown Hardware ordered 3 hammers in June, 4 hammers in July, 6 hammers in August, and 9 hammers in September. If this pattern continues, how many hammers will the store order in October?", - "Output Program": [ - "lst=[3,4,6,9,13]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Amanda and her friends decided to go to an amusement park for the weekend. The nearest amusement park from their city is Super Fun-tastic Land. If they cover a distance of 27 miles for every hour of travel and they travelled for 3 hours, how far is SFL from the city?", - "Output Program": [ - "ans=27*3\nprint(ans)" - ], - "Output Answer": [ - "81" - ], - "split": "train" - }, - { - "Input": "Victor bought several boxes of books at a yard sale and ended up with twenty-four books total. If each box had three books, how many boxes did he buy?", - "Output Program": [ - "ans=24/3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "For a party Cody bought eleven cupcakes. After the party he had two left. How many were eaten at the party?", - "Output Program": [ - "ans=11-2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Sarah had some trucks. She gave 13 to Jeff, and now she has 38 trucks left. How many trucks did Sarah have to start with?", - "Output Program": [ - "ans=38+13\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "train" - }, - { - "Input": "Olivia picked up sixteen pieces of paper from the floor. If Edward picked up three pieces, how many did they pick up total?", - "Output Program": [ - "ans=16+3\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt read 2 books per day. How many books did she read in one week?", - "Output Program": [ - "ans=2+2+2+2+2+2+2\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "There are 4 squirrels in a tree with 2 nuts. What's the difference of the number of squirrels and nuts over there?", - "Output Program": [ - "ans=4-2\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Alexa is reading a Nancy Drew mystery. There are 95 pages in her book. She read 18 pages the first day. The next day, Alexa just couldn't stop reading. She read 58 pages. How many pages does Alexa have left to read?", - "Output Program": [ - "ans=95-18-58\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Bridget needs to make rectangular cards measuring 2 inches by 3 inches. She will cut them from a square sheet of poster board measuring 1 foot on each side. What is the greatest number of cards that Bridget can make?", - "Output Program": [ - "ans=((1*12)*(1*12))/(3*2)\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Chris, tasked to lead the newspaper collection, was able to obtain 42 newspapers from their neighborhood. If his sister Lily helped him and was able to get 23 more newspapers from another block, how many newspapers were they able to collect together?", - "Output Program": [ - "ans=42+23\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "train" - }, - { - "Input": "A pet store had 2 white cats, 10 black cats and 3 gray cats. How many cats did they have total?", - "Output Program": [ - "ans=2+10+3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Vanessa uploaded twenty-three pictures from her phone and seven from her camera to Facebook. If she sorted the pics into five different albums with the same amount of pics in each album, how many pictures were in each of the albums?", - "Output Program": [ - "ans=(23+7)/5\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt bought an ice cream cone for 99 cents. How much would 2 ice cream cones cost?", - "Output Program": [ - "ans=99+99\nprint(ans)" - ], - "Output Answer": [ - "198" - ], - "split": "train" - }, - { - "Input": "Shiela has 6 neighbors who like to collect animal drawings. Shiela has a talent for drawing and so she drew 54 animals on small pieces of paper. If she plans to give the same number of animal drawings to her neighbors, how many will each of them receive?", - "Output Program": [ - "ans=54/6\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt bought 6 hot dogs. Each hot dog cost 50 cents. How much money did she pay for all of the hot dogs?", - "Output Program": [ - "ans=6*50\nprint(ans)" - ], - "Output Answer": [ - "300" - ], - "split": "train" - }, - { - "Input": "A truck can hold four boxes. If you needed to move eight hundred seventy-one boxes across town, how many trips would you need to make?", - "Output Program": [ - "ans=871//4+1\nprint(ans)" - ], - "Output Answer": [ - "218" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt bought a notebook for $1.30. She paid with nickels. How many nickels did she use to buy the notebook?", - "Output Program": [ - "ans=1.3*100/5\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": "Joshua has 3 toy boxes for his toy cars. He puts in 21 toy cars in the first toy box, 31 toy cars in the second toy box and 19 toy cars in the third box. How many toy cars does Joshua have together?", - "Output Program": [ - "ans=21+31+19\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "train" - }, - { - "Input": "Belle collected 97 animal stickers. Carolyn collected 18 fewer stickers than Belle. How many stickers did Carolyn collect?", - "Output Program": [ - "ans=97-18\nprint(ans)" - ], - "Output Answer": [ - "79" - ], - "split": "train" - }, - { - "Input": "At the back of the zoo is a mountain where the birds can roam free in a natural habitat. The children saw 6 types of eagles living on each section of the mountain. If the mountain has 3 sections, how many types of eagles did the children see in total?", - "Output Program": [ - "ans=6*3\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Tim has a bag of 36 orange-flavoured sweets and Peter has a bag of 44 grape-flavoured sweets. They have to divide up the sweets into small trays with equal number of sweets; each tray containing either orange-flavoured or grape-flavoured sweets only. If there is no remainder, what is the largest possible number of sweets in each tray?", - "Output Program": [ - "import math\nans=math.gcd(36,44)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Malia is picking berries in the berry patch. She picks 3 berries from the first bush, 4 berries from the second bush, 7 berries from the third bush, and 12 berries from the fourth bush. If this pattern continues, how many berries will Malia pick from the fifth bush?", - "Output Program": [ - "lst=[3,4,7,12,19]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Greg wants to buy a $90 scooter. He has saved $57 so far. How much more money does Greg need?", - "Output Program": [ - "ans=90-57\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "train" - }, - { - "Input": "Isha's pencil is 12 cubes long. If she gets another pencil that is 12 cubes long, how many cubes long are both pencils?", - "Output Program": [ - "ans=12+12\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "For homework Megan had thirty-six math problems and twenty-eight spelling problems. If she can finish eight problems in an hour, how long will it take her to finish all the problems?", - "Output Program": [ - "ans=(36+28)/8\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "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": [ - "ans=(9-3)*2\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "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": [ - "ans=4-3+10\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Edward earned 8 dollars for every lawn he mowed. If he mowed 5 lawns and he already had 7 dollars saved up, how much money does he have total?", - "Output Program": [ - "ans=5*8+7\nprint(ans)" - ], - "Output Answer": [ - "47" - ], - "split": "train" - }, - { - "Input": "After resting, they decided to go for a swim. If the depth of the water is 10 times Dean's height and he stands at 6 feet, how deep was the water?", - "Output Program": [ - "ans=10*6\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "Input": "Radio station Z-100 was giving away a $100 bill to every 100th caller during a contest and gave Jingle Ball tickets to every 40th caller. How many callers must call before someone wins both a $100 bill and a Jingle Ball ticket?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([100,40])\nprint(ans)" - ], - "Output Answer": [ - "200" - ], - "split": "train" - }, - { - "Input": "A paper bag can hold 16 cookies. If Edgar buys 292 cookies, how many cookies are there in the paper bag that is not full?", - "Output Program": [ - "ans=292%16\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Maria had fifty sheets of paper in her desk and forty-one more in her backpack. How many did she have total?", - "Output Program": [ - "ans=50+41\nprint(ans)" - ], - "Output Answer": [ - "91" - ], - "split": "train" - }, - { - "Input": "The Wildcats scored 36 points in the first half of the game. The Panthers scored 17 points. How many more points did the Wildcats score?", - "Output Program": [ - "ans=36-17\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "While playing a trivia game, Team A scored 2 points, Team B scored 9 points and Team C scored 4 points. How many points were scored total?", - "Output Program": [ - "ans=2+9+4\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "I think of a number. If I subtract 6 from the number and divide it by 13, I will get the result as 2. Find the number in my mind.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# (x-6)/13=2\nsolution=solve([(x-6)/13-2], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Thanksgiving is coming and Dr. Mary wants to celebrate it by sharing her blessing to different charities. She first went to Oldtown where she donated $700.00 in total to three different nursing homes. If she gave $245.00 to the first home and $225.00 to the second, how much did she give to the third home?", - "Output Program": [ - "ans=700-(245+225)\nprint(ans)" - ], - "Output Answer": [ - "230" - ], - "split": "train" - }, - { - "Input": "A pet store sold 2 kittens and 1 puppy over the weekend. The kittens sold for $6 each and the puppy sold for $5. How much money did they earn from selling the pets?", - "Output Program": [ - "ans=(2*6)+(1*5)\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "A company was buying new uniforms for its employees. They bought 121 uniforms total for their 32 stores. About how many uniforms should each store get?", - "Output Program": [ - "ans=121//32+1\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "At Billy's Restaurant a group with two adults and five children came in to eat. If each meal cost three dollars, how much was the bill?", - "Output Program": [ - "ans=(2+5)*3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Faye had 12 apps on her phone. To free up some space she deleted 8 of the apps. How many apps did she have left?", - "Output Program": [ - "ans=12-8\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Brian has 39 pencils. He gives 18 pencils to a friend. He buys 22 more pencils. How many pencils does Brian have now?", - "Output Program": [ - "ans=39-18+22\nprint(ans)" - ], - "Output Answer": [ - "43" - ], - "split": "train" - }, - { - "Input": "Jerry had $18. He spent $6 on new video games. How much money does he have now?", - "Output Program": [ - "ans=18-6\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "A class collected 122 cans for recycling. If they could put 57 cans in each bag, approximately how many bags would they need?", - "Output Program": [ - "ans=122//57\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "For the second main course, they were asked to make 500 pieces of fish fillets. If the first team made 189 pieces and the second team made 131 pieces, how many pieces should the third team make?", - "Output Program": [ - "ans=500-(189+131)\nprint(ans)" - ], - "Output Answer": [ - "180" - ], - "split": "train" - }, - { - "Input": "Tom read 2 books in May, 6 in June and 10 in July. How many books did Tom read?", - "Output Program": [ - "ans=2+6+10\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Lizzie lives in a very big and polluted city. Being an advocate for the environment, she organized a cleanup drive to help reduce the pollution. They started by cleaning the rivers that flow through and around the city. If her group was able to collect 387 pounds of garbage and another group gathered 39 pounds less than Lizzie's group, how much garbage were the two groups able to gather?", - "Output Program": [ - "ans=(387-39)+387\nprint(ans)" - ], - "Output Answer": [ - "735" - ], - "split": "train" - }, - { - "Input": "Garrett went shopping for snack supplies and bought 6 oatmeal raisin granola bars and 8 peanut granola bars. How many granola bars did he buy in all?", - "Output Program": [ - "ans=6+8\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Gabe and Steven make money by walking neighborhood pets. During a conversation about their work, they realize that they are both walking the same total number of pets, even though Gabe walks pets in groups of 2 and Steven walks pets in groups of 10. What is the smallest total number of pets each could be walking?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([2,10])\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "I see 115 cows grazing in the pasture. How many legs do I see?", - "Output Program": [ - "ans=115*4\nprint(ans)" - ], - "Output Answer": [ - "460" - ], - "split": "train" - }, - { - "Input": "The last stop of their tour was Italy; there they visited Naples, the place where modern pizza was invented. During their stay there, she ate 598 grams of pizza and her sister ate 354. How many grams of pizza did Rachel and Bella ate there?", - "Output Program": [ - "ans=598+354\nprint(ans)" - ], - "Output Answer": [ - "952" - ], - "split": "train" - }, - { - "Input": "Two years ago, a father was five times as old as his son. Two years later, his age will be 8 more than the age of the son. Find the present ages of father and son.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The age of the father; y:The age of the father's son\n# x-2=5(y-2); x+2=y+2+8\nsolution=solve([x-2-(5*(y-2)), x+2-(y+2+8)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Mrs. Wilson, the math teacher, has 18 logic puzzles and 9 visual puzzles that she wants to group into sets for students who finish their tests early. Mrs. Wilson wants each set to be identical, containing the same combination of logic puzzles and visual puzzles, with no puzzles left over. What is the greatest number of sets she can create?", - "Output Program": [ - "import math\nans=math.gcd(18,9)\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Zoe's school sold 620 dollars in raffle tickets. If each ticket cost 4 dollars, how many tickets did they sell?", - "Output Program": [ - "ans=620/4\nprint(ans)" - ], - "Output Answer": [ - "155" - ], - "split": "train" - }, - { - "Input": "They planned to serve some cold drinks as well. If they plan to make 9 pitchers of drinks and each pitcher can fill 6 glasses, how many glasses of drinks are they planning to prepare in total?", - "Output Program": [ - "ans=9*6\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "train" - }, - { - "Input": "2 beavers were working on their home. 1 went for a swim. How many beavers are still working on their home?", - "Output Program": [ - "ans=2-1\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "Alexa and Katerina stood on a scale together. The scale read 95 pounds. Alexa knows she weighs 46 pounds. How much does Katerina weigh?", - "Output Program": [ - "ans=95-46\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "train" - }, - { - "Input": "A movie poster was 4 inches wide and 7 inches tall. What is the area of the poster?", - "Output Program": [ - "ans=4*7\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "Ben had some baseball cards. His friend, Tim, had 20 cards. After Ben bought 3 more cards, he had twice as many cards as Tim. How many cards did Ben have at first?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number of Ben's cards at first\n# 20*2=x+3\nsolution=solve([20*2-(x+3)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "Consider two-third of number and add up six to it. The result is ten. Find the unknown number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The unknown number\n# (2/3)*x+6=10\nsolution=solve([(2/3)*x+6-10], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "While sorting some buttons, Malia put 1 button in the first box, 3 buttons in the second box, 9 buttons in the third box, 27 buttons in the fourth box, and 81 buttons in the fifth box. If this pattern continues, how many buttons will Malia put in the sixth box?", - "Output Program": [ - "lst=[1,3,9,27,81,243]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "243" - ], - "split": "train" - }, - { - "Input": "Maggie bought 9 books about plants and 1 book about fish. She also bought 10 science magazines. Each book cost $15 and each magazine cost $2. How much did Maggie spend in all?", - "Output Program": [ - "ans=((9+1)*15)+(10*2)\nprint(ans)" - ], - "Output Answer": [ - "170" - ], - "split": "train" - }, - { - "Input": "A grocery store needed eight hundred ten cans of peas. If the peas come in boxes with four cans in each box, how many boxes would they need to order?", - "Output Program": [ - "ans=810//4+1\nprint(ans)" - ], - "Output Answer": [ - "203" - ], - "split": "train" - }, - { - "Input": "A farmer planted twenty seeds on Wednesday and another two seeds on Thursday. How many seeds did he plant total?", - "Output Program": [ - "ans=20+2\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "The weight of 5 foxes is 25 kg. The total weight of 3 foxes and 5 dogs is 65 kg. How much heavier is a dog than a fox?", - "Output Program": [ - "ans=((65-(25/5)*3)/5)-(25/5)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "For Halloween Faye scored 47 pieces of candy. She ate 25 pieces the first night and then her sister gave her 40 more pieces. How many pieces of candy does Faye have now?", - "Output Program": [ - "ans=47-25+40\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "train" - }, - { - "Input": "A store owner had two employees and bought nine hundred twenty-seven uniforms for them. If he wanted to give each employee the same number of uniforms, how many more should he buy so he doesn't have any extra?", - "Output Program": [ - "ans=927%2\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "Mrs. Evans has 120 crayons and 30 pieces of paper to give to her students. What is the largest number of students she can have in her class so that each student gets equal number of crayons and equal number of paper?", - "Output Program": [ - "import math\nans=math.gcd(120,30)\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "Since the townspeople requested that he makes a chocolate cake, he will need 306 lbs. of cocoa powder. If the mayor already gave him 259 lbs., how much cocoa powder does he still need?", - "Output Program": [ - "ans=306-259\nprint(ans)" - ], - "Output Answer": [ - "47" - ], - "split": "train" - }, - { - "Input": "The library has 75 science books. The second graders borrowed 18 of them. What's the difference between the number of science books the library has in the beginning and the second graders borrowed?", - "Output Program": [ - "ans=75-18\nprint(ans)" - ], - "Output Answer": [ - "57" - ], - "split": "train" - }, - { - "Input": "A video game map was 10 meters wide and 2 meters long, what is the area of the map?", - "Output Program": [ - "ans=10*2\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "1 lonely pigeons was eating breadcrumbs. Another pigeon came to eat breadcrumbs, too. How many pigeons are eating breadcrumbs now?", - "Output Program": [ - "ans=1+1\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "52 children and 29 adults went to the track meet. The stadium has 95 seats. How many seats were empty?", - "Output Program": [ - "ans=95-52-29\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Jerry is helping to put away books. If he has twelve books to put away and each shelf can hold four books, how many shelves will he need?", - "Output Program": [ - "ans=12/4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "There are 5 birds in a tree. How many bird legs do you see?", - "Output Program": [ - "ans=5*2\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "A summer sports camp had 88 soccer campers, basketball campers and football campers. If 24 of them were basketball campers and 32 of them were football campers, how many soccer campers were there?", - "Output Program": [ - "ans=(88-24)-32\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "The roller coaster at the state fair costs five tickets per ride. If you had ten tickets, how many times could you ride it?", - "Output Program": [ - "ans=10/5\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Jovana had 5 pounds of shells in her bucket. She added some shells and now has 28 pounds of shells. How many pounds did she add?", - "Output Program": [ - "ans=28-5\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "train" - }, - { - "Input": "Victor had nine books. During the book fair he bought three more. How many books did Victor have total?", - "Output Program": [ - "ans=9+3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Megan had 217 markers. Robert gave her 109 more markers. How many markers does Megan have altogether?", - "Output Program": [ - "ans=217+109\nprint(ans)" - ], - "Output Answer": [ - "326" - ], - "split": "train" - }, - { - "Input": "Jasmine and her mom went to the grocery to buy some food. Her mom gave her $100.00 to spend. Since she loves fruits, she went to the fruits section first. There she bought apples and oranges worth $15.00. From the original $100.00 given by her mom, how much money was left for her to spend?", - "Output Program": [ - "ans=100-15\nprint(ans)" - ], - "Output Answer": [ - "85" - ], - "split": "train" - }, - { - "Input": "Drew prepared 61 servings of butterscotch. If she expects her 6 sweet-tooth guests to share the butterscotch among them equally, how many will be left unconsumed?", - "Output Program": [ - "ans=61%6\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "Paige was helping her mom plant flowers and together they planted 54 seeds. If they put 6 seeds in each flower bed, how many flower beds did they have?", - "Output Program": [ - "ans=54/6\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "The flower shop displays a different number of roses in the front window every month. It displayed 108 roses in October, 120 roses in November, 132 roses in December, and 144 roses in January. If this pattern continues, how many roses will the flower shop window display in February?", - "Output Program": [ - "lst=[108,120,132,144,156]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "156" - ], - "split": "train" - }, - { - "Input": "A chef served 3 different foods for a banquet: 25 plates lobster rolls, 14 plates of spicy hot noodles and 16 plates of seafood noodles. How many plates of food did the chef make altogether?", - "Output Program": [ - "ans=25+14+16\nprint(ans)" - ], - "Output Answer": [ - "55" - ], - "split": "train" - }, - { - "Input": "Two angles of a triangle are the same size. The third angle is 12 degrees smaller than the first angle. Find the measure the angles.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The first angle of a triangle; y:The second angle of a triangle\n# x=y; 180-(x+y)=x-12\nsolution=solve([x-y, 180-(x+y)-(x-12)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "While playing at the arcade, Kaleb won eight tickets playing 'whack a mole' and seven tickets playing 'skee ball'. If he was trying to buy candy that cost five tickets a piece, how many could he buy?", - "Output Program": [ - "ans=(8+7)/5\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "While playing a trivia game Adam scored 283 points total. If he scored 71 points each round, about how many rounds did he play?", - "Output Program": [ - "ans=283//71+1\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "A bus can transport 48 passengers. If a school of 1,230 students and teachers are going on a field trip, how many buses should be rented?", - "Output Program": [ - "ans=1230//48+1\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": "Benny sold half of his comic books and then bought 6 more. He now has 17. How many did he begin with ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Benny's comic books\n# (x/2)+6=17\nsolution=solve([(x/2)+6-17], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "An experienced ice skater spins on the ice, creating a perfect circle. Afterwards, she calculates that it must have a circumference of 6.28 yards. What is the circle's diameter?", - "Output Program": [ - "ans=6.28/3.14\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "While driving past stores, Dave counted the number of cars in the parking lots. He counted: 30, 14, 14, 21 and 25. What is the mean of the cars he counted?", - "Output Program": [ - "ans=(30+14+14+21+25)/5\nprint(ans)" - ], - "Output Answer": [ - "20.8" - ], - "split": "train" - }, - { - "Input": "The dance troupe used ribbob to form a rectangle. The rectangle was 20 feet long and 15 feet wide. How long was the piece of ribbon?", - "Output Program": [ - "ans=20+20+15+15\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "train" - }, - { - "Input": "Alicia loves collecting art. She has a whole house filled with all the art she obtained since she was a little kid. When she decided to move away, she started donating some of her art to different museums. First museum she went to was the Metropolitan museum in New York. She donated 46 medieval art pieces from the 70 she originally has. How many medieval art pieces were left with her?", - "Output Program": [ - "ans=70-46\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Tom had 54 songs on his MP3 player. If he deleted 9 songs, what is the ratio of songs he kept to songs he deleted?", - "Output Program": [ - "from fractions import Fraction\ndif=54-9\nfrac=Fraction(dif,9)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "5:1" - ], - "split": "train" - }, - { - "Input": "There are 820 blocks in Bridget's block collection. If the blocks are organized into 82 groups, how big is each group?", - "Output Program": [ - "ans=820/82\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "The weight of 3 glass bottles is 600 g. The total weight of 4 glass bottles and 5 plastic bottles is 1 kg 50 g. How much heavier is a glass bottle than a plastic bottle?", - "Output Program": [ - "ans=(600/3)-((1050-(600/3)*4)/5)\nprint(ans)" - ], - "Output Answer": [ - "150" - ], - "split": "train" - }, - { - "Input": "Amy bought 7 pencils at the school store, but she already had 3 pencils. How many pencils does she have totaled?", - "Output Program": [ - "ans=7+3\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Maura collects seashells every summer. Her family stays at the beach house for 21 days. This summer, Maura found 75 seashells. She gave some to her little sister. Maura then had 57 seashells. How many seashells did Maura give to her sister?", - "Output Program": [ - "ans=75-57\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Isabel had ninety DS games. If she gave eighty-seven to her friend, how many would she have left?", - "Output Program": [ - "ans=90-87\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "A botanist picked six hundred one flowers. She wanted to put them into eight bouquets with the same number of flowers in each. How many more should she pick so she doesn't have any extra?", - "Output Program": [ - "ans=8-601%8\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Chris is inviting 82 friends to a party. He has 1804 cookies and 10 peices of candy. How many cookies will each friend get?", - "Output Program": [ - "ans=1804/82\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "Allan brought two balloons and Jake brought four balloons to the park. How many balloons did Allan and Jake have in the park?", - "Output Program": [ - "ans=2+4\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Vidya's mother's age is 5 years more than the three times of Vidya's present age. Find Vidya's present age, if her mother is 44 years old.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Vidya's present age\n# 3*x+5=44\nsolution=solve([3*x+5-44], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "To get to school, Jenny decided to ride the school's double decker bus. The bus has a total of 20 rows of seats and each row has a capacity of 4 kids. How many kids in total can ride the school bus?", - "Output Program": [ - "ans=20*4\nprint(ans)" - ], - "Output Answer": [ - "80" - ], - "split": "train" - }, - { - "Input": "Dave spent 21 minutes completing a race. He walked 9 minutes and jogged the rest. What is the ratio of time he jogged to time he walked?", - "Output Program": [ - "from fractions import Fraction\ndif=21-9\nfrac=Fraction(dif,9)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "4:3" - ], - "split": "train" - }, - { - "Input": "Debby makes 67 pancakes. She adds blueberries to 20 of them and bananas to 24 of them. The rest are plain. How many plain pancakes are there?", - "Output Program": [ - "ans=(67-20)-24\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "train" - }, - { - "Input": "He also needed some nails. If he already has 247 nails with him and he found another 144 in his toolshed, how many more nails does he need to buy if he needs a total of 500 nails?", - "Output Program": [ - "ans=500-(247+144)\nprint(ans)" - ], - "Output Answer": [ - "109" - ], - "split": "train" - }, - { - "Input": "Cristina baked 17 croissants. If Cristina's croissants were served equally among her seven guests, how many will Cristina have left?", - "Output Program": [ - "ans=17%7\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Haley loves to collect things. This year, she decided to give away part of her collection as it was taking too much space in her room. Nine of her closest friends like stickers. If she plans to give all of them an equal number of stickers, how many will each receive if she has 72 stickers?", - "Output Program": [ - "ans=72/9\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "A square traffic sign has a perimeter of 16 feet. How long is each side of the traffic sign?", - "Output Program": [ - "ans=16/4\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Nancy had forty-three files on her computer. She deleted thirty-one of them and put the rest into folders with six files in each one. How many folders did Nancy end up with?", - "Output Program": [ - "ans=(43-31)/6\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "A tourist group has 26 people. At a hotel, they want to rent some large rooms for 3 people each and some small rooms for 2 each. In order to rent the least number of rooms and have every room fully occupied, how many small rooms should be rented?", - "Output Program": [ - "ans=3-26%3\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "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": [ - "ans=(9-3)*3\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "George was comparing the points the Bulls scored for different games. He recorded: 81, 73, 83, 86 and 73. What is the mean of the points scored?", - "Output Program": [ - "ans=(81+73+83+86+73)/5\nprint(ans)" - ], - "Output Answer": [ - "79.2" - ], - "split": "train" - }, - { - "Input": "If a number is subtracted from 32, the digits of 32 are interchanged. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# x-32=23\nsolution=solve([x-32-23], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "55" - ], - "split": "train" - }, - { - "Input": "Jerry was counting the money he received for his birthday. From his aunt he received $9. From his uncle he received $9. His best friends gave him $22, $23 and $22 and $22. And his sister gave him $7. What is the mean of the money he received?", - "Output Program": [ - "ans=(9+9+22+23+22+22+7)/7\nprint(ans)" - ], - "Output Answer": [ - "16.3" - ], - "split": "train" - }, - { - "Input": "There were 105 parents in the program and 698 pupils, too. How many people were present in the program?", - "Output Program": [ - "ans=105+698\nprint(ans)" - ], - "Output Answer": [ - "803" - ], - "split": "train" - }, - { - "Input": "Greg's mom made some cookies for the family. The cookies were so huge that she decided to cut them in half. Greg ate 4 halves and his brother, Brad, had 6 halves. There were 18 halves left. How many whole cookies did Greg's mom make?", - "Output Program": [ - "ans=18/2+4/2+6/2\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Victor was playing checkers with a friend. The ratio of games Victor won was 9:5. If Victor won 36 games, how many games did his friend win?", - "Output Program": [ - "ans=(5/9)*36\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Paige had one hundred ten homework problems. She finished forty-seven of them but still had seven 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": [ - "ans=(110-47)/7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Billy can play 24 songs in his music book. He knows the names of 18 different guitar chords. Billy's music book has 52 songs in it. How many songs does Billy still need to learn?", - "Output Program": [ - "ans=52-24\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "An industrial machine can make 6 shirts every minute. How many shirts would it have made in 6 minutes?", - "Output Program": [ - "ans=6*6\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Edward had 763 baseball cards in 7 binders. If each binder has the same number of cards, how many cards are in each binder?", - "Output Program": [ - "ans=763/7\nprint(ans)" - ], - "Output Answer": [ - "109" - ], - "split": "train" - }, - { - "Input": "A produce store sold 32 red apples. If the ratio of red apples to green apples sold was 8:3, what is the combined amount of red and green apples sold?", - "Output Program": [ - "ans=(11/8)*32\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "train" - }, - { - "Input": "Isha's pencil is 22 inches long. If she sharpens two inches off on Monday and two inches on Tuesday, how long will her pencil be then?", - "Output Program": [ - "ans=22-2-2\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Their neighbors, wanting to welcome them, also brought in some food. If one neighbor brought 75 hotdogs and another neighbor brought 25 less hotdogs than the first one, how many hotdogs were brought by the neighbors in total?", - "Output Program": [ - "ans=(75-25)+75\nprint(ans)" - ], - "Output Answer": [ - "125" - ], - "split": "train" - }, - { - "Input": "Laurie has 12 more marbles than Kurt. Kurt has 45 marbles less than Dennis. Dennis has 70 marbles. How many marbles does Laurie have?", - "Output Program": [ - "ans=70-45+12\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "Connie has 41 red markers and 64 blue markers. How many markers does she have altogether?", - "Output Program": [ - "ans=41+64\nprint(ans)" - ], - "Output Answer": [ - "105" - ], - "split": "train" - }, - { - "Input": "Chris gave his 35 friends 12 pieces of candy each. How many pieces of candy did Chris give his friends?", - "Output Program": [ - "ans=35*12\nprint(ans)" - ], - "Output Answer": [ - "420" - ], - "split": "train" - }, - { - "Input": "Kaleb deleted 20 songs from his MP3 player. If the ratio of songs he deleted to songs he kept was 10:3, how many songs did he originally have on his MP3 player?", - "Output Program": [ - "ans=(13/10)*20\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": "Next food item she has to prepare is soup. She needs 280 cups of mushroom soup. If the first team made 90 cups, and the third team made 70 cups, how any cups should the second team prepare in order to meet the required amount of soup?", - "Output Program": [ - "ans=280-(90+70)\nprint(ans)" - ], - "Output Answer": [ - "120" - ], - "split": "train" - }, - { - "Input": "Anthony gets 75 cents every day for lunch. He bought a juice box for 27 cents. He also bought a cupcake. Anthony had 8 cents left. How much did the cupcake cost?", - "Output Program": [ - "ans=75-27-8\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Linda buys strawberry gum in packs of 6 pieces and blueberry gum in packs of 5 pieces. If Linda wants to buy the same amount of each type of gum, what is the smallest number of pieces of each flavor that she must buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([6,5])\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "You have $12 in nickels and quarters. If you have the same number of each kind of coin, how many nickels do you have?", - "Output Program": [ - "ans=(12*100)/(5+5*5)\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Amy had some candy. She gave her friend six pieces and had five left. What's the difference between of the pieces of candy Amy gave away and the left?", - "Output Program": [ - "ans=6-5\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "The larger of two supplementary angles exceeds the smaller by 18 degrees. Find them.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The larger angle; y:The smaller angle\n# x+y=180; x-y=18\nsolution=solve([x+y-180, x-y-18], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "99" - ], - "split": "train" - }, - { - "Input": "Emily owned 6 songs by her favorite artists. Later on she bought 7 more songs. How many songs did she have totaled?", - "Output Program": [ - "ans=6+7\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Seven red apples and two green apples are in the basket. How many apples are in the basket?", - "Output Program": [ - "ans=7+2\nprint(ans)" - ], - "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": [ - "ans=35-10+10\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "For every 3 sit-ups Peter does, Greg does 4. Peter did 24 sit-ups. How many sit-ups did Greg do?", - "Output Program": [ - "ans=(4/3)*24\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Bruno had some story books. He lost 4 of them and his dad gave him 10 more books. If he had 39 books after that, how many books did Bruno have at first?", - "Output Program": [ - "ans=39-10+4\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "train" - }, - { - "Input": "A group of science students went on a field trip. They took 2 vans and 3 buses. There were 8 people in each van and 20 people in each bus. How many people went on the field trip?", - "Output Program": [ - "ans=(8*2)+(3*20)\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "train" - }, - { - "Input": "The Khan Corporation would like to donate 48 computers and 32 printers to local schools. The corporation would like to make sure that each school receives the same set of computers and printers, with none left over. What is the greatest number of schools that The Khan Corporation can donate to?", - "Output Program": [ - "import math\nans=math.gcd(48,32)\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "There were 28 girls and 35 boys on the playground at recess. How many children were there in all?", - "Output Program": [ - "ans=28+35\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": "A farmer had ninety-seven tomatoes from his garden. If he picked eighty-three of them, how many would he have left?", - "Output Program": [ - "ans=97-83\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Jessie weighted seventy-four kilograms. After she started to go jogging everyday, now she weights sixty-seven kilograms. How much weight did she lose in the past?", - "Output Program": [ - "ans=74-67\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "While playing a game Kaleb had ninety-eight lives. After losing some lives he had seventy-three left. How many lives did Kaleb lose?", - "Output Program": [ - "ans=98-73\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "train" - }, - { - "Input": "The Central City Zoo has 45 chimpanzees. Every day the chimps eat a total of 72 bananas. Next week, the zoo is moving 18 chimps to a new cage. How many chimps will stay in the old cage?", - "Output Program": [ - "ans=45-18\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "train" - }, - { - "Input": "After counting all her money, she went to her mom and had all her savings exchanged into whole $100 bills. After the exchange, she has 8 pieces of $100 bills. How much was total amount of Michelle's savings?", - "Output Program": [ - "ans=8*100\nprint(ans)" - ], - "Output Answer": [ - "800" - ], - "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": [ - "ans=(8-3)*3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Emma has a can of fruit cocktail in the pantry. The circular lid has a diameter of 2 inches. What is the lid's circumference?", - "Output Program": [ - "ans=2*3.14\nprint(ans)" - ], - "Output Answer": [ - "6.28" - ], - "split": "train" - }, - { - "Input": "There are 43 dogs, 72 fish, and 34 cats at my farm. How many pets do I have at my farm?", - "Output Program": [ - "ans=43+72+34\nprint(ans)" - ], - "Output Answer": [ - "149" - ], - "split": "train" - }, - { - "Input": "Adam had to wash fourteen loads of clothes. By noon he had only washed eight loads. How many does he still need to wash?", - "Output Program": [ - "ans=14-8\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "At the first day back in school, her parents bought her different colored pens. If her parents bought her 56 pens and she gave 22 of those to her friends, how many pens were left for her to use?", - "Output Program": [ - "ans=56-22\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt found a quarter, 1 dime, and 2 nickels. How much money did she find?", - "Output Program": [ - "ans=1*25+1*10+2*5\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "Greg and Brad started reading their books at the same time. Greg read 18 pages a day. Brad read 26 pages a day. How many more pages did Brad read than Greg?", - "Output Program": [ - "ans=26-18\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "A bathroom had a length of 4 feet and a total area of 8 square feet. What is the width of the bathroom?", - "Output Program": [ - "ans=8/4\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Molly swam 45 meters on Saturday. She swam 28 meters on Sunday. The pool is 25 meters long. How many meters did Molly swim in all?", - "Output Program": [ - "ans=45+28\nprint(ans)" - ], - "Output Answer": [ - "73" - ], - "split": "train" - }, - { - "Input": "Shirley sold 54 boxes of Trefoils. How many cases of 6 boxes does Shirley need to deliver?", - "Output Program": [ - "ans=54/6\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Sandra took six cups of coffee and Marcie took two cups of coffee. How many cups of coffee did Sandra and Marcie take in total?", - "Output Program": [ - "ans=2+6\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "He also has a section filled with short story booklets. If each booklet has 9 pages and there are 49 booklets in the short story section, how many pages will Jack need to go through if he plans to read them all?", - "Output Program": [ - "ans=9*49\nprint(ans)" - ], - "Output Answer": [ - "441" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt has two pennies, two dimes, and two nickels. Jacob has four pennies, one nickel, and one dime. How much more?", - "Output Program": [ - "ans=(2*1+2*10+2*5)-(4*1+1*5+1*10)\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "At a candy store you could get 2 giant lollipops for $2.40. How much would it cost to buy 6 lollipops?", - "Output Program": [ - "ans=(2.40/2)*6\nprint(ans)" - ], - "Output Answer": [ - "7.2" - ], - "split": "train" - }, - { - "Input": "Jerry's freezer had 30 ice cubes in it. If he had to get ice for 6 cups, how many pieces should he put in each cup to make them have the same amount?", - "Output Program": [ - "ans=30/6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Adam has five more apples than Jackie. Jackie has nine apples. How many apples does Adam have?", - "Output Program": [ - "ans=5+9\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "There were 31 groups of people at the bowling alley. If the total number of people was 177, about how many people were in each group?", - "Output Program": [ - "ans=177//31+1\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "The drama club meets in the school auditorium every 3 days, and the choir meets there every 5 days. If the groups are both meeting in the auditorium today, then how many days from now will they next have to share the auditorium?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([3,5])\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "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": [ - "ans=(12-8)*9\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "If the all the participants found a total 40 eggs from the club house, 25 eggs from the park and 15 eggs from the town hall, how many Easter eggs were found that day?", - "Output Program": [ - "ans=40+25+15\nprint(ans)" - ], - "Output Answer": [ - "80" - ], - "split": "train" - }, - { - "Input": "After they vacation, they figured out that the farm was divided into 5 sections and each section has a land area of 60 acres. What is the total area of the farm?", - "Output Program": [ - "ans=60*5\nprint(ans)" - ], - "Output Answer": [ - "300" - ], - "split": "train" - }, - { - "Input": "Feeling good about what he did, Mr. Anderson decided to continue giving to others. He went around the city and gave clothes to homeless people. If he gave 589 shirts and 345 trousers, how many pieces of clothing did he gave out in total?", - "Output Program": [ - "ans=589+345\nprint(ans)" - ], - "Output Answer": [ - "934" - ], - "split": "train" - }, - { - "Input": "When five is added to three more than a certain number, the result is 19. What is the number?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The certain number\n# 5+3+x=19\nsolution=solve([5+3+x-19], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Edeena is packing equal numbers of apple slices and grapes for snacks. Edeena bags the apple slices in groups of 18 and the grapes in groups of 9. What is the smallest number of grapes that she can pack?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([18,9])\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Dean went to the beach with his friends to enjoy the last weeks of summer. When they got to the beach, they rented a house for them to stay in for a couple of weeks. If there are seven of them including Dean, and each paid $70.00 for the rent, how much did they pay in total?", - "Output Program": [ - "ans=7*70\nprint(ans)" - ], - "Output Answer": [ - "490" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt measured the distance from her desk to the water fountain. It was 30 feet. How many feet will Mrs. Hilt walk on her trips TO the fountain if she goes to the water fountain four times today?", - "Output Program": [ - "ans=30*4\nprint(ans)" - ], - "Output Answer": [ - "120" - ], - "split": "train" - }, - { - "Input": "I have 648 pencils. If I put 4 pencils in each pencil box, how many pencil boxes will I fill?", - "Output Program": [ - "ans=648/4\nprint(ans)" - ], - "Output Answer": [ - "162" - ], - "split": "train" - }, - { - "Input": "A window had a length of 6 feet and a width of 10 feet. What is the area of the window?", - "Output Program": [ - "ans=6*10\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "Input": "She wants to know how many children will go trick or treating in their village. If there are 6 children on each of the 9 blocks, how many children will go trick or treating in Annie's village?", - "Output Program": [ - "ans=6*9\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "train" - }, - { - "Input": "Last stop in their field trip was the aquarium. Penny identified 35 species of sharks, 15 species of eels and 5 different species of whales. How many species was Penny able to identify?", - "Output Program": [ - "ans=35+15+5\nprint(ans)" - ], - "Output Answer": [ - "55" - ], - "split": "train" - }, - { - "Input": "Marco and his dad went strawberry picking. Together their strawberries weighed 23 pounds. Marco's strawberries weighed 14 pounds. How much did his dad's strawberries weigh?", - "Output Program": [ - "ans=23-14\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "A number machine changes the value of the numbers placed inside it. My number machine will add 15 to a number and then subtract 6 from the sum. If I put in the number 68, what number will come out of the machine?", - "Output Program": [ - "ans=68+15-6\nprint(ans)" - ], - "Output Answer": [ - "77" - ], - "split": "train" - }, - { - "Input": "A piece of square paper has a perimeter of 32 centimeters. Nicky's dog, Rocky, tore off 1/4 of the paper. What is the area of the remaining paper?", - "Output Program": [ - "ans=(32/4)**2*(1-(1/4))\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Joy will see her grandma in two days. How many hours until she sees her?", - "Output Program": [ - "ans=24*2\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Fabric is sold in stores from bolts that are 45 or 60 inches wide. What is the width of the widest strips of fabric you can cut from either bolt without wasting any of the fabric if each strip has the same width?", - "Output Program": [ - "import math\nans=math.gcd(45,60)\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "The Razorback T-shirt Shop makes $9 dollars off each t-shirt sold. During the Arkansas and Texas Tech game they sold 245 t-shirts. How much money did they make from selling the t-shirts?", - "Output Program": [ - "ans=9*245\nprint(ans)" - ], - "Output Answer": [ - "2205" - ], - "split": "train" - }, - { - "Input": "Carey and Pat are moving chairs to the gym. They agreed to move 74 chairs. Carey moved 28 chairs. Pat has moved 29 chairs. How many more chairs do they have left to move?", - "Output Program": [ - "ans=74-28-29\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Ned gave away thirteen of his video games to a friend. Now Ned has six games. How many games did Ned have before he gave the games away?", - "Output Program": [ - "ans=13+6\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "A waiter had fourteen customers. After some left he still had three customers. How many customers left?", - "Output Program": [ - "ans=14-3\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "A fruit salad made on a TV cooking program requires chunks of cantaloupe and honeydew. What is the greatest number of servings you can make using all of the fruit if you have 30 chunks of cantaloupe and 42 chunks of honeydew?", - "Output Program": [ - "import math\nans=math.gcd(30,42)\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "A sandbox is 312 centimeters long and 146 centimeters wide. How many square centimeters of ground does the sandbox cover?", - "Output Program": [ - "ans=312*146\nprint(ans)" - ], - "Output Answer": [ - "45552" - ], - "split": "train" - }, - { - "Input": "After New York, she decided to visit the Smithsonian in Washington DC. If she has 63 miniature aircrafts and she gave away 49 to the National Air and Space Museum, how many are left with her?", - "Output Program": [ - "ans=63-49\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "A food company has seven hundred seventy-seven kilograms of food to put into boxes. If each box gets exactly two kilograms, how many full boxes will they have?", - "Output Program": [ - "ans=777//2\nprint(ans)" - ], - "Output Answer": [ - "388" - ], - "split": "train" - }, - { - "Input": "At Kentucky Fried Chicken, the kitchen staff baked 96 chicken legs, 144 thighs, and 224 wings. The staff had to prepare platters for a catered lunch at an office. Each platter will have the same number of legs, thighs, and wings. How many platters can the staff make if they want the greatest number of chicken pieces on each platter?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(96,144),224)\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "For a party Janet bought some cupcakes. She bought 2 chocolate, 13 vanilla and 2 strawberry. How many cupcakes did she buy?", - "Output Program": [ - "ans=2+13+2\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "A container can hold four orange slices. If a company had three hundred twenty-nine orange slices to put into containers, how many more slices would they need to fill up the last container?", - "Output Program": [ - "ans=4-329%4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Beryl has 88 radishes. She puts them into two baskets. If there are 37 radishes in the first basket, how many more radishes are there in the second basket than the first?", - "Output Program": [ - "ans=88-37*2\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Pinky made 147 miniature pumpkin pies for everyone and Helen made 56. How many miniature pies do they have in total?", - "Output Program": [ - "ans=147+56\nprint(ans)" - ], - "Output Answer": [ - "203" - ], - "split": "train" - }, - { - "Input": "There's only a week left before Christmas. John went out to buy gifts for his family. Having $999.00 for his budget, he went to a sports store and bought his brother a new pair of shoes for $165.00. How much money does he have left?", - "Output Program": [ - "ans=999-165\nprint(ans)" - ], - "Output Answer": [ - "834" - ], - "split": "train" - }, - { - "Input": "Laura has 28 blocks and 8 cards. If she shares the blocks among 4 friends, how many blocks does each friend get?", - "Output Program": [ - "ans=28/4\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt saw 3 bugs eat two flowers each. How many flowers total did the bugs eat?", - "Output Program": [ - "ans=2+2+2\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Mrs. Heine is buying Valentine's Day treats for her 2 dogs. If she wants to buy them 5 heart biscuits each and a set of puppy boots each, how many items will she buy?", - "Output Program": [ - "ans=(5+1)+(5+1)\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Mrs. Sheridan has 17 cats. Mr. Sheridan gave her 14 more cats. How many cats does Mrs. Sheridan have altogether?", - "Output Program": [ - "ans=17+14\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "train" - }, - { - "Input": "Tyler, an animal rights advocate, decided to build his own animal sanctuary to protect different animals from poachers. The sanctuary was divided into different regions. The first region to be built was a bird sanctuary. Initially, he had 29 endangered bird species on that region. If each species has 7 pairs of birds, how many pairs does he have in total?", - "Output Program": [ - "ans=29*7\nprint(ans)" - ], - "Output Answer": [ - "203" - ], - "split": "train" - }, - { - "Input": "Adam was painting a picture frame. The frame was 6 inches wide and 9 inches tall. What is the perimeter of the picture frame?", - "Output Program": [ - "ans=(6+9)*2\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "Emily collected eggs from the hen and put them into 303 baskets. She put 28 eggs into each basket. How many eggs did Emily collect?", - "Output Program": [ - "ans=303*28\nprint(ans)" - ], - "Output Answer": [ - "8484" - ], - "split": "train" - }, - { - "Input": "The Vance family walked over to the post office. They bought 2 rooster stamps and 2 daffodil stamps. What's the difference between of the number of the two kinds of stamps?", - "Output Program": [ - "ans=2-2\nprint(ans)" - ], - "Output Answer": [ - "0" - ], - "split": "train" - }, - { - "Input": "89 cookies are being shared equally among 4 people. How many does each person get?", - "Output Program": [ - "ans=89//4\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "9 boys went to water trees. There were 29 trees. If each of them watered the equal amount of trees, how many trees did each boy water?", - "Output Program": [ - "ans=29//9\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "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": [ - "ans=(13-4)*4\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Martin is pasting pieces of square colored paper of equal size onto a board measuring 72 cm by 90 cm. If only whole square pieces are used, and the board is to be completely covered, what is the largest possible length of the side of each square colored paper?", - "Output Program": [ - "import math\nans=math.gcd(72,90)\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Mike has 64 action figures he wants to display. If each shelf in his room can hold 8 figures, how many shelves does he need?", - "Output Program": [ - "ans=64/8\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "A chef was making pies. He made 2 apple, 4 pecan and 7 pumpkin pies. How many pies did he make total?", - "Output Program": [ - "ans=2+4+7\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "An electrician cuts a 30 ft piece of wire into two pieces. One piece is 2 ft longer than the other. How long are the pieces?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The longer piece; y:The shorter piece\n# x+y=30; x=y+2\nsolution=solve([x+y-30, x-(y+2)], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "An industrial machine can make three hundred twenty-one crayons a day. If each box of crayons has seven crayons in it, how many full boxes does the machine make a day?", - "Output Program": [ - "ans=321//7\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "Olivia had 7 math problems to complete. She spent about 4 minutes on each problem and then she spent 3 minutes checking her answers. How many minutes did she spend total?", - "Output Program": [ - "ans=7*4+3\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "train" - }, - { - "Input": "At a restaurant the ratio of kids meals sold to adult meals sold was 10:7. If there were 70 kids meals sold, how many adult meals were sold?", - "Output Program": [ - "ans=(7/10)*70\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "train" - }, - { - "Input": "Robin had seven hundred thirty-six photos to put into a photo album. If each page holds six photos, how many full pages will she have?", - "Output Program": [ - "ans=736//6\nprint(ans)" - ], - "Output Answer": [ - "122" - ], - "split": "train" - }, - { - "Input": "Alvin had 57 marbles and played two games. He lost 18 marbles during the first game. He won 25 marbles during the second game. How many marbles did Alvin have then?", - "Output Program": [ - "ans=57-18+25\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "Skittles come in packages of 6. Juan ate 24 Skittles. How many Skittles does he have left?", - "Output Program": [ - "ans=24%6\nprint(ans)" - ], - "Output Answer": [ - "0" - ], - "split": "train" - }, - { - "Input": "The sum of two numbers is 62. One of the numbers is 27. What is the other number?", - "Output Program": [ - "ans=62-27\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "There are 32 students in the class. The teacher divided them into 5 equal groups. How many students are left?", - "Output Program": [ - "ans=32%5\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "George bought 17 pieces of candy to give to 5 of his friends. If he wants to give each friend the same amount, how many pieces would he have left over?", - "Output Program": [ - "ans=17%5\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "For the final touches, John wanted to paint the house using the 3 primary colors. If he has 5 liters of paint for each color, how many liters of paint does he have in all?", - "Output Program": [ - "ans=3*5\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "There are 3 more sections that are undeveloped. Each of the remaining sections has a land area of 2435 square feet. What is the total area of the undeveloped land?", - "Output Program": [ - "ans=3*2435\nprint(ans)" - ], - "Output Answer": [ - "7305" - ], - "split": "train" - }, - { - "Input": "172 students are forming teams for a mountaineering competition. Each team should have 18 students. How many teams can they form?", - "Output Program": [ - "ans=172//18\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "A pet store had sixty-four birds that talked and thirteen that didn't. How many birds did the pet store have total?", - "Output Program": [ - "ans=64+13\nprint(ans)" - ], - "Output Answer": [ - "77" - ], - "split": "train" - }, - { - "Input": "Gwen was organizing her book case making sure each of the shelves had exactly four books on it. If she had five shelves of mystery books and three shelves of picture books, how many books did she have total?", - "Output Program": [ - "ans=(5+3)*4\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Jake has 34 fewer balls than Audrey. Audrey has 41 balls. How many balls does Jake have?", - "Output Program": [ - "ans=41-34\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Their next opponent was the Green Team. If their final score is 68 points and they led by 29 points, what is Green Team's final score?", - "Output Program": [ - "ans=68-29\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "While heating the wings, Charlie decided to make metal supports for the wings. If he needs 635 lbs of metal and he has 276 lbs in storage, how much additional metal does he need to buy?", - "Output Program": [ - "ans=635-276\nprint(ans)" - ], - "Output Answer": [ - "359" - ], - "split": "train" - }, - { - "Input": "Isabel had sixty-eight pieces of candy. Her friend gave her twenty-five more pieces. How many pieces of candy did Isabel have total?", - "Output Program": [ - "ans=68+25\nprint(ans)" - ], - "Output Answer": [ - "93" - ], - "split": "train" - }, - { - "Input": "A painter needed to paint 10 rooms in a building. Each room takes 8 hours to paint. If he already painted 8 rooms, how much longer will he take to paint the rest?", - "Output Program": [ - "ans=(10-8)*8\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Lenny has $84. He spent $24 on video games, and $21 at the grocery store. How much does Lenny have left?", - "Output Program": [ - "ans=84-24-21\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "9 boys went to water trees. There were 29 trees. If each of them watered the equal amount of trees, how many trees are left?", - "Output Program": [ - "ans=29%9\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "A store had 3 packs of paper for $3.87. How much would it cost if you were to buy 6 packs?", - "Output Program": [ - "ans=(3.87/3)*6\nprint(ans)" - ], - "Output Answer": [ - "7.74" - ], - "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": [ - "ans=(11-2)*8\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "train" - }, - { - "Input": "There are 96 trees in a park. 15 of them are huge ancient oaks and another 23 of them are medium-sized fir trees. The rest are saplings. How many saplings are in the park?", - "Output Program": [ - "ans=(96-15)-23\nprint(ans)" - ], - "Output Answer": [ - "58" - ], - "split": "train" - }, - { - "Input": "A designer was buying furniture for her new house. She bought 3 chairs for the living room and 6 for her kitchen. How many chairs did she buy total?", - "Output Program": [ - "ans=3+6\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Two neon signs are turned on at the same time. both signs blink as they are turned on. One sign blinks every 9 seconds. The other sign blinks every 15 seconds. In how many seconds will they blink together again?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([9,15])\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "Our class got fifty-four books from the library. Then we got twenty-three more books from the library. How many books did our class get from the library?", - "Output Program": [ - "ans=54+23\nprint(ans)" - ], - "Output Answer": [ - "77" - ], - "split": "train" - }, - { - "Input": "Mrs. Sheridan has 22 fish. Her sister gave her 47 more fish. How many fish does she have now?", - "Output Program": [ - "ans=22+47\nprint(ans)" - ], - "Output Answer": [ - "69" - ], - "split": "train" - }, - { - "Input": "My car gets 20 miles per gallon of gas. If Grandma's house is 100 miles away, how many gallons of gas would it take to get to her house?", - "Output Program": [ - "ans=100/20\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Finally, they had to roam around 169 factories to make sure they are throwing their wastes properly. If their group went to 69 factories and the second went to 52, how many factories remain unchecked?", - "Output Program": [ - "ans=169-(69+52)\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "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": [ - "ans=17-2+23\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "train" - }, - { - "Input": "After paying 6 dollars for the pie, Sandy has 57 dollars left. How much money did she have before buying the pie ?", - "Output Program": [ - "ans=6+57\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": "There were 3,409 pieces of candy in a jar. If 145 pieces were red and the rest were blue, how many were blue?", - "Output Program": [ - "ans=3409-145\nprint(ans)" - ], - "Output Answer": [ - "3264" - ], - "split": "train" - }, - { - "Input": "Jack is reading a 285-page book. If he reads 23 pages per day, how many days will he take to finish reading the book?", - "Output Program": [ - "ans=285//23+1\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Oscar needs to ship 14 rock CDs, 12 classical CDs, and 8 pop CDs. He can pack only one type of CD in each box and he must pack the same number of CDs in each box. What is the greatest number of CDs Oscar can pack in each box?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(14,12),8)\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Robin drank seven bottles of water in the morning and seven in the afternoon. How many bottles did Robin drink total?", - "Output Program": [ - "ans=7+7\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Even the chipmunks are trying to get away to find other warmer places to stay. If 21 chipmunk families were left from the original 86 families, how many chipmunk families went away?", - "Output Program": [ - "ans=86-21\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "train" - }, - { - "Input": "The farmer had 127 apples. He gave 88 apples to his neighbor. How many apples does he have now?", - "Output Program": [ - "ans=127-88\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "Frank got fifteen pounds of mushroom for family barbecue. If they ate eight pounds, how many pounds were left?", - "Output Program": [ - "ans=15-8\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Kayla got a new video game. She scored 2 points on the first level, 3 points on the second level, 5 points on the third level, 8 points on the fourth level, and 12 points on the fifth level. If this pattern continues, how many points will Kayla score on the sixth level?", - "Output Program": [ - "lst=[2,3,5,8,12,17]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Billy was making ice using ice trays. Each tray held nine ice cubes. If he had eight trays, how many cubes could he make?", - "Output Program": [ - "ans=9*8\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "train" - }, - { - "Input": "On a table there were 2 green apples, 3 red apples and 14 yellow apples. How many apples were on the table?", - "Output Program": [ - "ans=2+3+14\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Mrs. Franklin had 58 Valentines. Mrs. Franklin gave some to her students. Now she has 16. How many Valentines did Mrs. Franklin give to her students?", - "Output Program": [ - "ans=58-16\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "train" - }, - { - "Input": "Kiera has 14 blue envelopes. She has 6 fewer yellow envelopes than blue envelopes. She has 3 times as many green envelopes as yellow envelopes. How many envelopes does Kiera have in all?", - "Output Program": [ - "ans=14+(14-6)+((14-6)*3)\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "train" - }, - { - "Input": "If each bus have nine rows of seats and each row of seats can accommodate 4 children, how many children can each bus accommodate?", - "Output Program": [ - "ans=9*4\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Colton has 16 blue marbles and 8 white ones. If he wants to place them in identical groups without any marbles left over, what is the greatest number of groups Colton can make?", - "Output Program": [ - "import math\nans=math.gcd(16,8)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Will was drawing super heroes on a sheet of scrap paper. He drew two heroes on the front and seven heroes on the back. How many heroes did he draw total?", - "Output Program": [ - "ans=2+7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt had 38 marbles. She lost 15 of them. How many marbles does she have left?", - "Output Program": [ - "ans=38-15\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "train" - }, - { - "Input": "A store has forty-nine shirts. After selling some there were twenty-eight left. How many did they sell?", - "Output Program": [ - "ans=49-28\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "There were 18 girls and 15 boys on the track team. 7 more girls joined the team. 4 boys quit the team. How many children were on the track team then?", - "Output Program": [ - "ans=(18+15)+7-4\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "There are 54 passengers on a bus. 18 of them are men, 26 of them are women and the rest are children. How many children are there on the bus?", - "Output Program": [ - "ans=(54-18)-26\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt read 4 books. Each book had 17 chapters in it. How many chapters did Mrs. Hilt read?", - "Output Program": [ - "ans=4*17\nprint(ans)" - ], - "Output Answer": [ - "68" - ], - "split": "train" - }, - { - "Input": "The tallest giraffe at the zoo is 96 inches tall. There are 14 adult giraffes at the zoo. The shortest giraffe is 68 inches. How much taller is the bigger giraffe?", - "Output Program": [ - "ans=96-68\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "Their next destination is Lake Erie. Still in a contest, Hazel caught 48 different fishes while her father caught 46. How many fishes did they catch in Lake Erie?", - "Output Program": [ - "ans=48+46\nprint(ans)" - ], - "Output Answer": [ - "94" - ], - "split": "train" - }, - { - "Input": "Aside from frogs, the swamp area is also home to a few dangerous animals. Penny's teacher pointed out 22 crocodiles, 23 alligators and 5 vipers. How many dangerous animals did the teacher point out in total?", - "Output Program": [ - "ans=22+23+5\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "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": [ - "ans=(39+12)-49\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "The teacher's helper was putting cookies onto plates. He put 5 cookies on the first plate, 7 cookies on the second plate, 10 cookies on the third plate, 14 cookies on the fourth plate, and 19 cookies on the fifth plate. If this pattern continues, how many cookies will the helper put on the sixth plate?", - "Output Program": [ - "lst=[5,7,10,14,19,25]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "train" - }, - { - "Input": "A book has two chapters. The first chapter is 48 pages long. The second chapter is 46 pages long. How many pages does the book have altogether?", - "Output Program": [ - "ans=48+46\nprint(ans)" - ], - "Output Answer": [ - "94" - ], - "split": "train" - }, - { - "Input": "There were 86 pineapples in a store. The owner sold 48 pineapples. 9 of the remaining pineapples were rotten and thrown away. How many fresh pineapples are left?", - "Output Program": [ - "ans=86-48-9\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "train" - }, - { - "Input": "Teacher buys 4 black pens and 4 blue pens for students as awards. How many pens does the teacher buy altogether?", - "Output Program": [ - "ans=4+4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "While playing a game Frank defeated 6 enemies. Each enemy earned him 9 points. Then he got another 8 points for completing the level. How many points did he earn total?", - "Output Program": [ - "ans=6*9+8\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "train" - }, - { - "Input": "There are 64 marbles in Phyllis's marble collection. If the marbles are organized into 32 groups, how big is each group?", - "Output Program": [ - "ans=64/32\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "The host prepared nineteen cakes for the party. After the party he had nine left. How many cakes did people eat in the party?", - "Output Program": [ - "ans=19-9\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "While performing a piece of music, Jacob strikes the cymbals every 7 beats and the triangle is every 2 beats. If he just struck both at the same time, how many beats will pass before he again strikes them at the same time?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([7,2])\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Ben and Matt received votes in the ratio 2:3. The total number of votes cast was 60. How many votes did Ben get?", - "Output Program": [ - "ans=(2/5)*60\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Jake has 36 comic books. His brother has 15 more comic books than Jake. How many comic books do they have altogether?", - "Output Program": [ - "ans=36+(36+15)\nprint(ans)" - ], - "Output Answer": [ - "87" - ], - "split": "train" - }, - { - "Input": "Charles found 6 pennies on his way to school. He also had 3 nickels already at home. How much money does he now have in all?", - "Output Program": [ - "ans=6*1+3*5\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt saw 144 bees in the hive. The next day she saw 3 times that many. How many bees did she see on the second day?", - "Output Program": [ - "ans=144*3\nprint(ans)" - ], - "Output Answer": [ - "432" - ], - "split": "train" - }, - { - "Input": "Mike collected seventy-one cans to recycle on Monday and twenty-seven more on Tuesday. How many cans did Mike collect all together?", - "Output Program": [ - "ans=71+27\nprint(ans)" - ], - "Output Answer": [ - "98" - ], - "split": "train" - }, - { - "Input": "An architect built a house with ten bedrooms total. If the second floor had two bedrooms. How many bedrooms does the first floor have?", - "Output Program": [ - "ans=10-2\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "A piece of sheetrock was cut so its length was 6 feet by 5 feet. What is the area of the sheetrock?", - "Output Program": [ - "ans=6*5\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "After buying a dress, he went to a gardening store and bought his mom some ornamental plants. If the plants originally cost $467.00 and he was able to get a $399.00 discount, how much did he actually spend on buying the plants?", - "Output Program": [ - "ans=467-399\nprint(ans)" - ], - "Output Answer": [ - "68" - ], - "split": "train" - }, - { - "Input": "Katie loves to travel. On her birthday, she decided to go on a trip on a mysterious continent. Her first destination was in an island of statues which is 436 miles from her place. She took a plane that made two stopovers, the 1st stopover after covering 132 miles and the 2nd stopover after another 236 miles. How much farther is the island from the 2nd stopover?", - "Output Program": [ - "ans=436-(132+236)\nprint(ans)" - ], - "Output Answer": [ - "68" - ], - "split": "train" - }, - { - "Input": "To get to school, Chad must either walk around a circular lake or canoe across it. The diameter of the lake is 2 miles. How much shorter is his trip if he canoes across the lake rather than walks around it? (Use the value of pi = 3.14)", - "Output Program": [ - "ans=3.14-2\nprint(ans)" - ], - "Output Answer": [ - "1.14" - ], - "split": "train" - }, - { - "Input": "The present ages of Lewis and Brown are in the ratio 1:2. Three years from now, the ages will be in the ratio 3:5. Find the present ages of Lewis and Brown.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Lewis's present age\n# (x+3)/(2x+3)=3/5\nsolution=solve([(x+3)/(2*x+3)-(3/5)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Peter's Party Zone sells cups in packages of 6 and plates in packages of 8. Shaniya is hosting a birthday party for her little sister and wants to have the same number of each item. What is the least number of packages of plates Shaniya needs to buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nans=lcm(6,8)\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "A square name tag has sides that are 9 centimeters long. What is the name tag's perimeter?", - "Output Program": [ - "ans=9*4\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Adi bought a pencil for 35 cents. He paid with a one-dollar bill. How much change will he get?", - "Output Program": [ - "ans=100-35\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "train" - }, - { - "Input": "Rosa had sixty-seven flowers. Andre gave her some more flowers. Now, Rosa has ninety flowers. How many flowers did Andre give to Rosa?", - "Output Program": [ - "ans=90-67\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "train" - }, - { - "Input": "I have 9 pennies, 4 nickels, and 3 dimes. How much money do I have?", - "Output Program": [ - "ans=(9*1+4*5+3*10)/100\nprint(ans)" - ], - "Output Answer": [ - "0.59" - ], - "split": "train" - }, - { - "Input": "After the day, they were able to make 6 institutions happy. If each institution has 80 people. How many people were made happy by the mayor and vice-mayor?", - "Output Program": [ - "ans=6*80\nprint(ans)" - ], - "Output Answer": [ - "480" - ], - "split": "train" - }, - { - "Input": "A group of 8 friends were dressing as pirates for Halloween. If each costume cost 5 dollars, how much did they spend?", - "Output Program": [ - "ans=8*5\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Bill observed two types of birds in the bushes: sparrows and parrots. While the sparrows were in flocks of 13, the parrots were in flocks of 14. If Bill observed the same total number of sparrows and parrots, what is the smallest number of sparrows that he could have observed?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([13,14])\nprint(ans)" - ], - "Output Answer": [ - "182" - ], - "split": "train" - }, - { - "Input": "A choir teacher is dividing 10 sopranos and 15 altos into singing groups. He wants each group to have the same combination of sopranos and altos, with no singers left over. What is the greatest number of groups he can make?", - "Output Program": [ - "import math\nans=math.gcd(10,15)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "At a company picnic three managers and three employees decided to start a game of volleyball. If they split into three teams, how many people would be on each team?", - "Output Program": [ - "ans=(3+3)/3\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Jake has six fewer peaches than Steven. Steven has 13 peaches. How many peaches does Jake have?", - "Output Program": [ - "ans=13-6\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "It takes Mike ninety-eight minutes to walk to school. If he rides a bicycle to school, it would save him sixty-four minutes. How much time did Mike save?", - "Output Program": [ - "ans=98-64\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "train" - }, - { - "Input": "Mei has 15 oranges, 9 peaches and 18 pears. She wants to put all of the fruit into baskets with each basket having the same number of pieces of fruit in it. Without mixing the fruit, what is the greatest number of pieces of fruit Mei can put in each basket?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(15,9),18)\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Oliver had sixteen cherries. After eating some, he had six left. What's the difference between the number of cherries that Oliver had before eating and the left after eating?", - "Output Program": [ - "ans=16-6\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Kiera is making trail mix out of 16 bags of nuts and 6 bags of dried fruit. She wants each new portion of trail mix to be identical, containing the same combination of bags of nuts and bags of dried fruit, with no bags left over. What is the greatest number of portions of trail mix Kiera can make?", - "Output Program": [ - "import math\nans=math.gcd(16,6)\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "On Friday, 1,250 people visited the zoo. Three times as many people visited on Saturday than on Friday. How many people visited the zoo on Saturday?", - "Output Program": [ - "ans=1250*3\nprint(ans)" - ], - "Output Answer": [ - "3750" - ], - "split": "train" - }, - { - "Input": "Mario made 18 posters to help advertise the fair. Samantha made 15 more posters than Mario. How many posters did they make altogether?", - "Output Program": [ - "ans=18+(18+15)\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "train" - }, - { - "Input": "There is a snail problem in Centerville. People work together to get rid 3,482 snails, but 8,278 of them remain. About how many snails were originally in Centerville?", - "Output Program": [ - "ans=3482+8278\nprint(ans)" - ], - "Output Answer": [ - "11760" - ], - "split": "train" - }, - { - "Input": "Mike found sixty-two seashells on the beach, he gave Tom some of his seashells. He has thirteen seashell left. How many seashells did he give to Tom ?", - "Output Program": [ - "ans=62-13\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "train" - }, - { - "Input": "A cafeteria offered two types of milk, regular or chocolate. If they sold 24 cartons total and 3 of them were regular flavor, what is the ratio of chocolate milk sold to regular milk sold?", - "Output Program": [ - "from fractions import Fraction\ndif=24-3\nfrac=Fraction(dif,3)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "7:1" - ], - "split": "train" - }, - { - "Input": "The Math Counts Club had a party at school. There were 20 cookies and 40 slices of pizza to be shared equally. Each student had the same number of whole cookies and the same number of slices of pizza with nothing left over. What is the greatest number of cookies and pizza slices the students can each get?", - "Output Program": [ - "import math\nans=math.gcd(20,40)\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Lexie's mom gathered all her watercolor paintings and thought of placing an equal number of paintings in four of the rooms in the house. If Lexie has 32 watercolor paintings, how many paintings will be placed in each of the four rooms?", - "Output Program": [ - "ans=32/4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Dora is having her tenth birthday party next Saurday. She invited 64 people. Her mom ordered 36 sandwiches. 16 people can not come to the party. How many people will be at Dora's party?", - "Output Program": [ - "ans=64-16\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Charlie has 31 more snowballs than Lucy. She has 19 snowballs. How many does Charlie have?", - "Output Program": [ - "ans=31+19\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "Input": "There were 44 laptops in the shop, and Mike divided them equally into 5 rows. How many are left?", - "Output Program": [ - "ans=44%5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Sunday morning was spent for making wood carvings which can be sold as souvenir for tourists. They were placed in shelves that can contain 8 wood carvings at a time. If 56 wood carvings were displayed, how many shelves were filled with carvings?", - "Output Program": [ - "ans=56/8\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "I see 105 puppies. How many ears do they have?", - "Output Program": [ - "ans=105*2\nprint(ans)" - ], - "Output Answer": [ - "210" - ], - "split": "train" - }, - { - "Input": "If one pack costs 11 dollars, how many packs of DVD's can you buy with 110 dollars?", - "Output Program": [ - "ans=110/11\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Haley bought 11 new shirts for school. If she returned 6 of them, how many did she end up with?", - "Output Program": [ - "ans=11-6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Alissa picked 16 flowers. Her twin sister, Melissa, also picked 16 flowers. They gave their mother 18 flowers. How many flowers did the sisters have left?", - "Output Program": [ - "ans=16*2-18\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Henry was playing tic-tac-toe. He won 2 times, lost 2 times and it was a draw 10 times. How many times did Henry play?", - "Output Program": [ - "ans=2+2+10\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Ronald and Tim both did their laundry today. Ronald does laundry every 6 days and Tim does laundry every 9 days. How many days will it be until Ronald and Tim both do laundry on the same day again?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([6,9])\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Isabel received 14 dollars for her birthday. Later she found some toys that cost 2 dollars each. How many of the toys could she buy?", - "Output Program": [ - "ans=14/2\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Amy had 2 dollars. If she got 13 more dollars for doing chores and 3 more for her birthday, how much money does she have now?", - "Output Program": [ - "ans=2+13+3\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "For lunch, 2 students selected chocolate milk, 15 selected strawberry milk and 3 selected regular milk. How many milks were taken total?", - "Output Program": [ - "ans=2+15+3\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Lucy went to the grocery store. She bought 12 packs of cookies and 16 packs of noodles. How many packs of groceries did she buy in all?", - "Output Program": [ - "ans=12+16\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "Monroe Vitamin Shop sold equal quantities of Vitamin A and Vitamin D supplements this morning, even though the Vitamin A supplements come in packs of 7 and the Vitamin D supplements in packs of 17. What is the smallest number of each type that the store could have sold?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([7,17])\nprint(ans)" - ], - "Output Answer": [ - "119" - ], - "split": "train" - }, - { - "Input": "Corey earns extra money finding lost golf balls. His goal is to find 48 golfballs every weekend. He found 16 golf balls on Saturday. He found 18 more golf balls on Sunday. How many more golf balls does Corey need to find to reach his goal?", - "Output Program": [ - "ans=48-16-18\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "A lawn had an area of 20 square feet. If it was 5 feet width, how long was it?", - "Output Program": [ - "ans=20/5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Bryan took a look at his books as well. If he has 56 books in each of his 9 bookshelves, how many books does he have in total?", - "Output Program": [ - "ans=56*9\nprint(ans)" - ], - "Output Answer": [ - "504" - ], - "split": "train" - }, - { - "Input": "Adam had some quarters. He spent nine of them at the arcade and had seventy-nine left over. How many quarters did he have to start with?", - "Output Program": [ - "ans=9+79\nprint(ans)" - ], - "Output Answer": [ - "88" - ], - "split": "train" - }, - { - "Input": "Two numbers are in the ratio 3:8. Their sum is 44. What is the difference between the two numbers?", - "Output Program": [ - "ans=32-12\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Jordon put a new number into her machine. The machine doubled it then added 3 more. The number 27 came out of the machine. What number do you think Jordon put in her machine?", - "Output Program": [ - "ans=(27-3)/2\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Debby owned thirteen DVDs. If she sold six of them, how many would she have left?", - "Output Program": [ - "ans=13-6\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "The sanctuary also includes several swamp areas where most of the reptiles usually reside. If there are 4 swamps, each having 356 different reptiles, how many reptiles are living in the swamp areas?", - "Output Program": [ - "ans=4*356\nprint(ans)" - ], - "Output Answer": [ - "1424" - ], - "split": "train" - }, - { - "Input": "Tom has to sell eight hundred forty-nine chocolate bars to win a trip. If each box contains five chocolate bars, how many boxes will he need to sell to win the trip?", - "Output Program": [ - "ans=849//5+1\nprint(ans)" - ], - "Output Answer": [ - "170" - ], - "split": "train" - }, - { - "Input": "For Halloween Will got fifteen pounds of candy. After giving some to Haley, he had nine pounds left. How many pounds did he give to Haley?", - "Output Program": [ - "ans=15-9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "A pile of clean white paper was stacked in the corner of her room. She decided to place these papers in paper envelopes which can contain 10 white papers. How many paper envelopes does she need if she has 120 clean white papers?", - "Output Program": [ - "ans=120/10\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Mrs. Garvey's bathroom measures 6 feet by 10 feet. She wants to cover the floor with square tiles. The sides of the tiles are 6 inches. How many tiles will Mrs. Garvey need?", - "Output Program": [ - "ans=((6*12)*(10*12))/(6*6)\nprint(ans)" - ], - "Output Answer": [ - "240" - ], - "split": "train" - }, - { - "Input": "A malt shop used 4 ounces of chocolate syrup in their shakes and 6 ounces of syrup on their cones. If they sold 2 shakes and 1 cone, how many ounces of chocolate would they use total?", - "Output Program": [ - "ans=(4*2)+(6*1)\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "With the end of the month coming in two days, they decided to sell cookies to the neighboring villages as well. If they sold 23 packs on one village and 28 on the other, how many cookies were they able to sell in the other villages?", - "Output Program": [ - "ans=23+28\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "train" - }, - { - "Input": "For a potluck lunch Debby brought 10 bottles of soda. If everyone only drank 8 of the sodas, how many did she have to take back home?", - "Output Program": [ - "ans=10-8\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Mr. Lee gave out first place ribbons after each event. He had 38 ribbons at the start. He gave away 14 ribbons in the morning. He gave out 16 ribbons in the afternoon. How many ribbons did Mr. Lee have left?", - "Output Program": [ - "ans=38-14-16\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "A tourist group has 26 people. At a hotel, they want to rent some large rooms for 3 people each and some small rooms for 2 each. In order to rent the least number of rooms and have every room fully occupied, how many large rooms should be rented?", - "Output Program": [ - "ans=26//3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Jack is reading a 285-page book. If he reads 23 pages per day, how many pages will he read on the last day?", - "Output Program": [ - "ans=285%23\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Diane wants to buy a package of cookies. The cookies cost 65 cents. Diane has 27 cents. What's the difference between the cost of the cookies and the money of Diane?", - "Output Program": [ - "ans=65-27\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "train" - }, - { - "Input": "There were nine kinds of sandwiches on the menu. Unfortunately, five of them had been sold out, how many kinds of sandwiches do they actually provide now?", - "Output Program": [ - "ans=9-5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Oliver bought eight boxes of candy. Later he bought six more boxes. How many boxes did he have totaled?", - "Output Program": [ - "ans=8+6\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "An English teacher would like to divide 10 boys and 15 girls into groups, each with the same combination of boys and girls and nobody left out. What is the greatest number of groups that can be formed?", - "Output Program": [ - "import math\nans=math.gcd(10,15)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "During summer break, 564,237 kids from Lawrence County go to camp, and the other 495,718 kids stay home. About how many kids are in Lawrence County?", - "Output Program": [ - "ans=564237+495718\nprint(ans)" - ], - "Output Answer": [ - "1059955" - ], - "split": "train" - }, - { - "Input": "The exit door leads to a river 487 inches across, if the bridge he needs to cross is only 295 inches, how much longer does he need to build if he wants to cross the river using the bridge?", - "Output Program": [ - "ans=487-295\nprint(ans)" - ], - "Output Answer": [ - "192" - ], - "split": "train" - }, - { - "Input": "Rebecca wants to split a collection of eggs into groups of 2. Rebecca has 16 eggs and 3 marbles. How many groups will be created?", - "Output Program": [ - "ans=16/2\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Suzanne read the first 15 pages of her book on Monday. She read 16 more pages than that on Tuesday. Then there were 18 pages left. How many pages are in Suzanne's book altogether?", - "Output Program": [ - "ans=15+15+16+18\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "The perimeter of a postcard is 20 inches. The postcard is 6 inches wide. How tall is it?", - "Output Program": [ - "ans=(20/2)-6\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Faye was cutting out some fabric for a friend. She cut a piece that was 3 centimeters wide and had an area of 24 square centimeters. How long was the piece?", - "Output Program": [ - "ans=24/3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Paul was reading through his favorite book series. Each week he read four different books. How many books would he have read through after five weeks?", - "Output Program": [ - "ans=4*5\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Anne had 15 Sweettarts. If Anne gave equal numbers of Sweettarts to her 3 friends, how many Sweettarts did each person eat?", - "Output Program": [ - "ans=15/3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "The ratio of Kate's stickers to Jenna's stickers is 7:4. Kate has 21 stickers. How many stickers does Jenna have?", - "Output Program": [ - "ans=(4/7)*21\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "At the school Halloween party 2 girls and 9 boys dressed as ghosts. How many people total dressed as a ghost?", - "Output Program": [ - "ans=2+9\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Georgia has 4 yellow buttons, 2 black buttons and 3 green buttons. She gives some of the buttons to Mary, and she has 5 left. How many buttons did Georgia give to Marry?", - "Output Program": [ - "ans=4+2+3-5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Terry cut a rope 35 inches long into two pieces in the ratio 3:4. What is the length of the longer piece?", - "Output Program": [ - "ans=(4/7)*35\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Lavender is making punch for the school dance. She mixes 3 parts lemonade with 5 parts cranberry juice. She wants to fill a 72 cup bowl. How many more cups of cranberry juice will she need than lemonade?", - "Output Program": [ - "ans=45-27\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "A lawn care company bought 4 lawnmower blade for $8 each. They also bought a spool of weed eater string for $7. How much money did they spend on supplies?", - "Output Program": [ - "ans=4*8+7\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "The ring toss game at the carnival made 420 dollars in 3 days. If they made the same amount of money each day, how much did they make per day?", - "Output Program": [ - "ans=420/3\nprint(ans)" - ], - "Output Answer": [ - "140" - ], - "split": "train" - }, - { - "Input": "Luke was helping his mom wash clothes. They washed six loads with seven towels in each load. How many towels did they wash total?", - "Output Program": [ - "ans=6*7\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "train" - }, - { - "Input": "You have 7 balloons and your friend has 5 balloons. What's the difference of the number of your balloons and your friend's balloons?", - "Output Program": [ - "ans=7-5\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "A number plus itself, plus twice itself, plus 4 times itself, is equal to 104. What is the number?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# x+x+2x+4x=104\nsolution=solve([x+x+2*x+4*x-104], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "A company was offering a special on cell phones for $2 each. But only if you spent 7 dollars a month for 4 months. How much would it end up costing you total if you bought 1 phone?", - "Output Program": [ - "ans=7*4+2\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "Brian has zero fewer oranges than Marcie. Marcie has 12 oranges. How many oranges does Brian have?", - "Output Program": [ - "ans=12-0\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Ryan collected 89 leaves. He lost 24 leaves. After a while, 43 more leaves broke. How many leaves are left in his collection?", - "Output Program": [ - "ans=89-24-43\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "During a race Gwen jogged for 15 minutes. If the ratio of time she jogged to time she walked was 5:3, how many minutes did Gwen walk?", - "Output Program": [ - "ans=(3/5)*15\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt traveled 6, 760 miles to Japan. She read one book every 450 miles she traveled. How many books had she finished when she got to Japan?", - "Output Program": [ - "ans=6760//450\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "There is 1 green bead, 2 brown beads and 3 red beads in a container. Tom took some beads out of the container and left 4 in. How many beads did Tom take out?", - "Output Program": [ - "ans=1+2+3-4\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "The clown blew up forty-seven balloons. Then he blew up thirteen more balloons. How many balloons does the clown have now?", - "Output Program": [ - "ans=47+13\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "Input": "At a school event, adults are seated in groups of exactly 17 and children are seated in groups of exactly 15. If there are the same number of adults as children, what is the minimum number of adults attending?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([17,15])\nprint(ans)" - ], - "Output Answer": [ - "255" - ], - "split": "train" - }, - { - "Input": "Paul was packing up his old toys. He managed to squeeze eight toys into a box. If Paul filled up four boxes, how many toys did he pack total?", - "Output Program": [ - "ans=8*4\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Sarah picked 45 apples. Her brother picked 9 apples. How many times as many apples did Sarah pick?", - "Output Program": [ - "ans=45/9\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "A car goes uphill at the rate of 30 km an hour and downhill at the rate of 50 km an hour after 15 hours it has covered 650 km. How long did it go downhill and uphill respectively?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Distance when uphill; y:Distance when downhill\n# x+y=15; 30x+50y=650\nsolution=solve([x+y-15, 30*x+50*y-650], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Lastly, he went to a music store and bought a new set of speakers for his dad's entertainment system. If the initial price of the speakers is $475.00 he got it for $199.00, how much money was he able to save from having a discount?", - "Output Program": [ - "ans=475-199\nprint(ans)" - ], - "Output Answer": [ - "276" - ], - "split": "train" - }, - { - "Input": "Mr. Lee harvested 495 apples and he packed them evenly in some baskets. If there are 25 apples in each basket, how many baskets of apples are there?", - "Output Program": [ - "ans=495//25\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "If one cartridge costs 15 dollars, how many ink cartridges can you buy with 180 dollars?", - "Output Program": [ - "ans=180/15\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Jill invited 37 people to her birthday party. They each ate 8 pieces of pizza. How many pieces of pizza did they eat?", - "Output Program": [ - "ans=37*8\nprint(ans)" - ], - "Output Answer": [ - "296" - ], - "split": "train" - }, - { - "Input": "Edward had beaten 24 levels in a video game. If the ratio of levels he had beaten to not beaten was 3:1, how many levels does the game have total?", - "Output Program": [ - "ans=(4/3)*24\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Destiny just received two separate gifts from her great-great-grandmother. The first gift is a box of 18 chocolate candy bars, and the second gift is a pack of 12 cookies. Destiny wants to use all of the chocolate candy bars and cookies to make identical snack bags for her cousins. What is the greatest number of snack bags that Destiny can make?", - "Output Program": [ - "import math\nans=math.gcd(18,12)\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Adolfo made a tower with thirty-five blocks. He added some more blocks and now he has sixty-five blocks. How many did he have to add?", - "Output Program": [ - "ans=65-35\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "Janet had eighty-five paper clips on the desk when she woke up in the morning. Before going to bed, she found there were twenty-six left. How many paper clips did she use today?", - "Output Program": [ - "ans=85-26\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "train" - }, - { - "Input": "Amanda has two pieces of ribbon, one 8 inches long and the other 16 inches long. To decorate an album, she wants to cut them up to produce many pieces of ribbon that are all of the same length, with no ribbon left over. What is the greatest length, in inches, that she can make them?", - "Output Program": [ - "import math\nans=math.gcd(8,16)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Ezra is buying nuts and bolts at a local hardware store. The store sells nuts in packs of 13 and bolts in packs of 8. If Ezra wishes to buy the same number of nuts and bolts, what is the smallest number of nuts that he can buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([13,8])\nprint(ans)" - ], - "Output Answer": [ - "104" - ], - "split": "train" - }, - { - "Input": "At a restaurant the ratio of kids meals sold to adult meals sold was 2:1. If there were 8 kids meals sold, what is the combined amount of kids and adult meals sold?", - "Output Program": [ - "ans=(3/2)*8\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Haley has 63 magazines in her cabinet. She plans to send it to the recycling office in their area. If she places it in boxes which can contain 9 magazines, how many boxes will she use?", - "Output Program": [ - "ans=63/9\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "For a party Adam bought ninety-seven cupcakes. If fifty-eight were eaten, how many cupcakes would Adam have left?", - "Output Program": [ - "ans=97-58\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "Mike got twenty-eight GB of space on his disk drive to backup his files. If his files would take up twenty-six GB, how many GB would he have left?", - "Output Program": [ - "ans=28-26\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt measured her bookcase. It was 48 inches long. How many feet long was the bookcase?", - "Output Program": [ - "ans=48/12\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt's favorite first grade classes are baking muffins. Mrs. Brier's class bakes 18 muffins, Mrs. MacAdams's class bakes 20 muffins, and Mrs. Flannery's class bakes 17 muffins. How many muffins does first grade bake in all?", - "Output Program": [ - "ans=18+20+17\nprint(ans)" - ], - "Output Answer": [ - "55" - ], - "split": "train" - }, - { - "Input": "For Halloween Oliver got seventy-eight pounds of candy. After giving some to Janet, he had sixty-eight pounds left. How many pounds did he give to Janet?", - "Output Program": [ - "ans=78-68\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Roger collected 42 pennies, 36 nickels and 15 dimes. He donated some of his coins and had 27 coins left. How many coins did Roger donate?", - "Output Program": [ - "ans=42+36+15-27\nprint(ans)" - ], - "Output Answer": [ - "66" - ], - "split": "train" - }, - { - "Input": "He wanted to make sure that he is protected from the cold evenings in the forest so he decided to build a fireplace made of cement. If he bought 215 lbs of cement and his son brought another 137 lbs, how much cement did he have originally if he now has 450 lbs?", - "Output Program": [ - "ans=450-(215+137)\nprint(ans)" - ], - "Output Answer": [ - "98" - ], - "split": "train" - }, - { - "Input": "Across the river, he fell into a hole. To get out, he needs to fill it with 823 gallons of water. If the hole initially has 676 gallons, how much water does he need to fill it?", - "Output Program": [ - "ans=823-676\nprint(ans)" - ], - "Output Answer": [ - "147" - ], - "split": "train" - }, - { - "Input": "A box of computer paper has two hundred twenty-one sheets left in it. If each printer in a computer lab needed seven sheets, how many printers would the box fill up?", - "Output Program": [ - "ans=221//7\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "train" - }, - { - "Input": "Coach Mike bought several cups of lemonade. The girls told him it would cost 58 cents. The coach gave the girls 75 cents. How much change did Coach Mike get back?", - "Output Program": [ - "ans=75-58\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "The school bought 54 basketballs and distribute them into 7 classes equally. How many basketballs are left?", - "Output Program": [ - "ans=54%7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Andrew found some empty bins to put cans into for recycling. He put 2 empty cans in the first bin, 4 empty cans in the second bin, 7 empty cans in the third bin, 11 empty cans in the fourth bin, and 16 empty cans in the fifth bin. If this pattern continues, how many empty cans will Andrew put in the sixth bin?", - "Output Program": [ - "lst=[2,4,7,11,16,22]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "A farmer bought 164 rabbits. If the farmer wanted to fill 17 cages with the same number of rabbits, how many more rabbits should the farmer buy?", - "Output Program": [ - "ans=17-164%17\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Packages of cheddar cheese come with 12 slices, while packages of Swiss cheese come with 28 slices. If Randy bought the same number of slices of each type of cheese, what is the smallest number of slices of each type that Randy could have bought?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([12,28])\nprint(ans)" - ], - "Output Answer": [ - "84" - ], - "split": "train" - }, - { - "Input": "Out of the 26 students in the gym, 4 are sitting on the bleachers and the rest are sitting on the floor. What is the ratio of the number of students sitting on the floor to the total number of students?", - "Output Program": [ - "from fractions import Fraction\ndif=26-4\nfrac=Fraction(dif,26)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "11:13" - ], - "split": "train" - }, - { - "Input": "Thirteen ducks are swimming in a lake. Twenty more ducks come to join them. How many ducks are swimming in the lake?", - "Output Program": [ - "ans=13+20\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "train" - }, - { - "Input": "Zoe bought an app that cost $5 dollars. Then each month you have to pay $8 to play online. If she played the game online for 2 months, how much money would she have spent total for the app and the online access?", - "Output Program": [ - "ans=8*2+5\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Upon finishing the treehouse, Charlie's mother served them freshly baked cookies. If Charlie ate 15 cookies, his father ate 10 and his mother only ate 5, how many cookies were eaten in total?", - "Output Program": [ - "ans=15+10+5\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "A museum had ninety-eight paintings. After they got rid of some, they had ninety-five left. How many paintings did they get rid of?", - "Output Program": [ - "ans=98-95\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Janice has 316 bottle caps that must be put away in boxes. Douglas comes to help and brings 17 cookies to share with Janice. If there are 79 boxes, how many bottle caps must go in each box?", - "Output Program": [ - "ans=316/79\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "The sum total of the ages of father and the son is 55 years. If the father was to live till his son's age equals his present age. The total of their ages would be 93 years. Find their present ages.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The present age of the father; y:The present age of the son\n# x+y=55; (x+(x-y))+(y+(x-y))=93\nsolution=solve([x+y-55, (x+(x-y))+(y+(x-y))-93], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "The Hawks scored three touchdowns worth 7 points each. How many points do they have?", - "Output Program": [ - "ans=7*3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Olivia was buying DVDs of her favorite TV series. Each season had 8 DVDs. If she bought 5 seasons, how many DVDs did she buy total?", - "Output Program": [ - "ans=8*5\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Another region was the aquatic reserve for freshwater organisms. If there are 6 bodies of water in the region, each having 175 different fishes, how many fishes does he have in total?", - "Output Program": [ - "ans=6*175\nprint(ans)" - ], - "Output Answer": [ - "1050" - ], - "split": "train" - }, - { - "Input": "An industrial machine made 12 shirts. It can make 2 shirts a minute. How many minutes was the machine working?", - "Output Program": [ - "ans=12/2\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "A movie store had 9 movies they were putting on 2 shelves. If the owner wanted to make sure each shelf had the same number of movies, how many more movies would he need?", - "Output Program": [ - "ans=9%2\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "The age of a father is equal to the sum of the ages of his 5 children. After 15 years sum of the ages of the children will be twice the age of the father. Find the age of the father.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The age of the father; y:The sum of the ages of five children\n# x=y; y+5*15=2x\nsolution=solve([x-y, y+5*15-2*x], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "75" - ], - "split": "train" - }, - { - "Input": "The school's debate team had thirty-one boys and thirty-two girls on it. If they were split into groups of nine, how many groups could they make?", - "Output Program": [ - "ans=(31+32)/9\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "On a modern art painting, there are 3 green dots in the first row, 6 green dots in the second row, 9 green dots in the third row, and 12 green dots in the fourth row. If this pattern continues, how many green dots will there be in the fifth row?", - "Output Program": [ - "lst=[3,6,9,12,15]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "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": [ - "ans=(6-2)*3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "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": [ - "ans=(9-6)*2\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "There were forty-seven bales of hay in the barn and forty bales in the shed. Benny stacked more bales in the barn today. There are now eighty-two bales of hay in the barn. How many bales did he store in the barn ?", - "Output Program": [ - "ans=82-47\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "Susie's mother collected all family pictures and wanted to place all of them in an album. If an album can contain 20 pictures, how many albums will she need if there are 480 pictures?", - "Output Program": [ - "ans=480/20\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt picked up a book that has 17 pages in it. She read 11 of the pages. How many pages did she have left to read?", - "Output Program": [ - "ans=17-11\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Billy was trying to beat his old score of seven hundred twenty-five points in a video game. If he scores exactly two points each round, how many rounds would he need to play to beat his old score?", - "Output Program": [ - "ans=725//2+1\nprint(ans)" - ], - "Output Answer": [ - "363" - ], - "split": "train" - }, - { - "Input": "Adam picked thirty-five strawberries. After eating some, he had thirty-three left. How many strawberries did Adam eat?", - "Output Program": [ - "ans=35-33\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "She also estimated the number of candies that she will receive from each block. If she will receive around 7 pieces of candies from every house, and there are 5 houses in a block, how many candies will she receive from each block?", - "Output Program": [ - "ans=7*5\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "Emily's mom was buying extra school supplies for Emily and her sister. She bought 13 packs of glue sticks total. If she gave Emily 6 packs, how many did her sister get?", - "Output Program": [ - "ans=13-6\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "While organizing his DVD collection, Seth put 2 DVDs on the first rack, 4 DVDs on the second rack, 8 DVDs on the third rack, 16 DVDs on the fourth rack, and 32 DVDs on the fifth rack. If this pattern continues, how many DVDs will Seth put on the sixth rack?", - "Output Program": [ - "lst=[2,4,8,16,32,64]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "Wilson has a number in mind. If he takes away one-third of the number from it the result is sixteen-third. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# x-(1/3)*x=16/3\nsolution=solve([x-(1/3)*x-(16/3)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "For the fifth grade play, the chairs have been put into 27 rows with 16 chairs in each row. How many chairs have been put out for the play?", - "Output Program": [ - "ans=27*16\nprint(ans)" - ], - "Output Answer": [ - "432" - ], - "split": "train" - }, - { - "Input": "A restaurant sold seventy-seven sodas in the morning and nineteen in the afternoon. How many sodas did they sell total?", - "Output Program": [ - "ans=77+19\nprint(ans)" - ], - "Output Answer": [ - "96" - ], - "split": "train" - }, - { - "Input": "For Bianca's birthday 5 of her friends gave her 6 dollars. How much money did she get for her birthday?", - "Output Program": [ - "ans=5*6\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "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": [ - "ans=(14-5)*6\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "train" - }, - { - "Input": "There are 84 leaves. There are 139 ladybugs on each leaf. How many ladybugs are there in all?", - "Output Program": [ - "ans=84*139\nprint(ans)" - ], - "Output Answer": [ - "11676" - ], - "split": "train" - }, - { - "Input": "Lucy has an aquarium with 212 fish. She wants to buy 68 more fish. How many fish would Lucy have then?", - "Output Program": [ - "ans=212+68\nprint(ans)" - ], - "Output Answer": [ - "280" - ], - "split": "train" - }, - { - "Input": "Annette and Caitlin weigh 95 pounds together. Caitlin and Sara weigh 87 pounds together. How much more does Annette weigh than Sara?", - "Output Program": [ - "ans=95-87\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "A company buys 88 bureaus for 14 offices. If each office should get an equal number of bureaus, how many more bureaus are needed at least?", - "Output Program": [ - "ans=14-88%14\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "A library buys 4,305 new books. If it wants to shelve them equally onto 83 shelves, how many more new books should be purchased?", - "Output Program": [ - "ans=83-4305%83\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "In the first half of a trivia game Kaleb scored forty-three points. In the second half he scored twenty-three points. How many points did he score total?", - "Output Program": [ - "ans=43+23\nprint(ans)" - ], - "Output Answer": [ - "66" - ], - "split": "train" - }, - { - "Input": "A pet store had 4 snakes. They had the snakes in cages with 2 snakes in each cage. How many cages did the pet store have?", - "Output Program": [ - "ans=4/2\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Maria was placing her spare change into stacks. Each stack had three coins. If she had five stacks, how many coins did she have?", - "Output Program": [ - "ans=3*5\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "After a week, Sofia did a survey to ask if the students liked the new menu. She found out that 235 students liked the new menu while 165 didn't. How many students took part in Sofia's survey?", - "Output Program": [ - "ans=235+165\nprint(ans)" - ], - "Output Answer": [ - "400" - ], - "split": "train" - }, - { - "Input": "Cristina baked 17 croissants. If she planned to serve this equally to her seven guests, how many will each have?", - "Output Program": [ - "ans=17//7\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Mr. Guzman bought 48 doughnuts packed equally into 4 boxes. How many doughnuts were in each box?", - "Output Program": [ - "ans=48/4\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "A gas station sold 2 boxes of chocolate candy, 5 boxes of sugar candy and 2 boxes of gum. What is the total number of boxes they sold?", - "Output Program": [ - "ans=2+5+2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Gavin has 23 shirts. 6 are blue the rest are green. How many green shirts does Gavin have?", - "Output Program": [ - "ans=23-6\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Oliver was yard sale shopping. He ended up buying 11 video games, but only 6 of them worked. How many bad games did he buy?", - "Output Program": [ - "ans=11-6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Debby was placing her spare change into stacks. One stack had 4 coins and the other had 8. How many coins did she have total?", - "Output Program": [ - "ans=4+8\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "For homework, a student had to complete 15 problems total. If she finished 6 problems in class, what is the ratio of problems she still needs to complete to problems that she's already finished?", - "Output Program": [ - "from fractions import Fraction\ndif=15-6\nfrac=Fraction(dif,6)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "3:2" - ], - "split": "train" - }, - { - "Input": "If Carl has a total of 89 stamps and Kevin has 57, how many more stamps does Carl have more than Kevin?", - "Output Program": [ - "ans=89-57\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Mila's father has 2 jobs. 1st job pays $375 more than the 2nd job. How much does he get from the 1st job if he gets per week a total of $3,875?", - "Output Program": [ - "ans=((3875-375)/2)+375\nprint(ans)" - ], - "Output Answer": [ - "2125" - ], - "split": "train" - }, - { - "Input": "A sailor goes 8 km downstream in 40 minutes and comes back in 1 hour. Determine the speed of the sailor in still water and the speed of current.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Speed of sailor in still water; y:Speed of current\n# 8/(x+y)=40/60; 8/(x-y)=1\nsolution=solve([8/(x+y)-(40/60), 8/(x-y)-1], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Kim has 4 cousins. She wants to give each one 5 pieces of gum. How much gum will she need?", - "Output Program": [ - "ans=4*5\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "While organizing her files, Bianca deleted 2 pictures, 8 songs and 7 text files. What is the total number of files she deleted?", - "Output Program": [ - "ans=2+8+7\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Finally, he wanted to add color to the wings so he decided to paint it like a rainbow. If he wanted to use 333 liters of paint and he still have 157 liters left from his last project, how much more paint does he need to buy?", - "Output Program": [ - "ans=333-157\nprint(ans)" - ], - "Output Answer": [ - "176" - ], - "split": "train" - }, - { - "Input": "A car dealer sold 14 cars on the first day, 16 cars on the second day, and 27 cars on the third day. How many cars did the car dealer sell on the 3 days?", - "Output Program": [ - "ans=14+16+27\nprint(ans)" - ], - "Output Answer": [ - "57" - ], - "split": "train" - }, - { - "Input": "Megan and her sister, Tara, wanted to buy a scooter for $26. Tara had $4 more than Megan. Together they had enough money to buy the scooter. How much money did Tara have?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number of Tara's dollars\n# x+(x-4)=26\nsolution=solve([x+(x-4)-26], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "At the baseball stadium the price for popcorn is $14.70 for 5 bags. If you wanted to buy 4 bags of popcorn, how much would it cost?", - "Output Program": [ - "ans=(14.70/5)*4\nprint(ans)" - ], - "Output Answer": [ - "11.76" - ], - "split": "train" - }, - { - "Input": "The second angle of a triangle is three times the first, and the third is 12 degrees less than twice the first. Find the measures of the angles.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The first angle of a triangle; y:The second angle of a triangle\n# y=3x; 180-(x+y)=2x-12\nsolution=solve([y-3*x, 180-(x+y)-(2*x-12)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "The giant Ferris wheel can seat 56 people. There are 92 people waiting in line. How many people won't get on the ride this time?", - "Output Program": [ - "ans=92-56\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "The weight of 2 bags of chips is 800 g. The total weight of 5 such bags of chips and 4 bottles of juice is 2 kg 200 g. How much heavier is a bag of chips than a bottle of juice?", - "Output Program": [ - "ans=(800/2)-((2200-(800/2)*5)/4)\nprint(ans)" - ], - "Output Answer": [ - "350" - ], - "split": "train" - }, - { - "Input": "Frank had thirteen boxes. If he filled eight with toys, how many boxes does he still have?", - "Output Program": [ - "ans=13-8\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Mrs. Sheridan has 11 cats. How many more cats does Mrs. Sheridan need to have 43 cats?", - "Output Program": [ - "ans=43-11\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Henry and Margo both began traveling around a circular track. Henry is riding his bike, and Margo is walking. It takes Henry 7 minutes to make it all the way around, and Margo takes 12 minutes. How much time will pass until they meet at the starting line?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([7,12])\nprint(ans)" - ], - "Output Answer": [ - "84" - ], - "split": "train" - }, - { - "Input": "Brian ran around the school track in 96 seconds. Todd ran around it in 88 seconds. How many fewer seconds did it take Todd to run around the tracl?", - "Output Program": [ - "ans=96-88\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "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": [ - "ans=16+33-48\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "A book had a length of 5 inches and a total area of 50 square inches. How wide is the book?", - "Output Program": [ - "ans=50/5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "There are twelve birds on the fence. Eight more birds land on the fence. How many birds are on the fence?", - "Output Program": [ - "ans=12+8\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "During Christmas a book store sold 72 books. If the ratio of books to bookmarks sold was 9:2, how many bookmarks did the store sell?", - "Output Program": [ - "ans=(2/9)*72\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "The total cost for tuition plus room and board at State University is $2,584. Tuition costs $704 more than room and board. What is the tuition fee?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of tuition; y:The cost of room and board\n# x+y=2584; x=y+704\nsolution=solve([x+y-2584, x-(y+704)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "1644" - ], - "split": "train" - }, - { - "Input": "At an ice cream parlor, the owner was tracking the number of chocolate cones he sold over a week. His results were: 100, 92, 109, 96, 103, 96 and 105. What is the mean of the cones sold?", - "Output Program": [ - "ans=(100+92+109+96+103+96+105)/7\nprint(ans)" - ], - "Output Answer": [ - "100.1" - ], - "split": "train" - }, - { - "Input": "A baker already had seventy-eight cakes but made nine extra. How many cakes did the baker have total?", - "Output Program": [ - "ans=78+9\nprint(ans)" - ], - "Output Answer": [ - "87" - ], - "split": "train" - }, - { - "Input": "There are some children at a bakery. As they were deciding what to buy, 24 girls came in and 31 boys left. If there are 78 children in the bakery in the end, how many children were there at first?", - "Output Program": [ - "ans=78+31-24\nprint(ans)" - ], - "Output Answer": [ - "85" - ], - "split": "train" - }, - { - "Input": "On the day of the awarding ceremony, Robyn and Lucy decided to sell more cookies during the morning to make sure they get the badge. Lucy sold 19 packs and Robyn sold 16. How many packs did they sell on their last day?", - "Output Program": [ - "ans=19+16\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "When Maria got to the fair she had $87. When she left she had $16. What's the difference between the number of dollars when Maria got and left the fair?", - "Output Program": [ - "ans=87-16\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "train" - }, - { - "Input": "Gwen had ninety-eight DS games. After she gave some to her friends she had ninety-one left. How many games did she give away?", - "Output Program": [ - "ans=98-91\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Sam has 58 Power Ranger stickers. He bundles them up in two boxes. If there are 23 Power Ranger stickers in the first box, how many more Power Ranger stickers are there in the second box than the first box?", - "Output Program": [ - "ans=58-23*2\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Before reaching the mountains, Stanley stopped over a car shop to buy new tires for the road. If he bought four tires each for $60.00, how much did he spend for tires in total?", - "Output Program": [ - "ans=4*60\nprint(ans)" - ], - "Output Answer": [ - "240" - ], - "split": "train" - }, - { - "Input": "A restaurant added a new outdoor section that was 4 feet wide and 6 feet long. What is the area of their new outdoor section?", - "Output Program": [ - "ans=4*6\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Cora sliced 18 kg of green apples for a party. She divided the apple slices equally between 5 large bowls. How many grams of apple slices did Cora put in each bowl?", - "Output Program": [ - "ans=(18*1000)/5\nprint(ans)" - ], - "Output Answer": [ - "3600" - ], - "split": "train" - }, - { - "Input": "Upon arriving at the school, Buddy immediately went to his teacher where he was introduced to all the third grade students in the school. There were 57 girl students and 66 boy students. How many third graders did Buddy meet in the school?", - "Output Program": [ - "ans=57+66\nprint(ans)" - ], - "Output Answer": [ - "123" - ], - "split": "train" - }, - { - "Input": "Josh had 142 pencils. He gave 31 pencils to Dorothy. How many pencils does Josh have left?", - "Output Program": [ - "ans=142-31\nprint(ans)" - ], - "Output Answer": [ - "111" - ], - "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": [ - "ans=32+42-35\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "Philip has 60 bottle caps stored in boxes. If the are 60 boxes, how many bottle caps must go in each box?", - "Output Program": [ - "ans=60/60\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "Aaron had 7 times as many sheep as Beth, and both together had 608. How many sheep had each?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The number of Aaron's sheep; y:The number of Beth's sheep\n# 7x=y; x+y=608\nsolution=solve([7*x-y, x+y-608], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "train" - }, - { - "Input": "The saucer for Mika's teacup has a radius of 3 centimeters. What is the saucer's area?", - "Output Program": [ - "ans=3**2*3.14\nprint(ans)" - ], - "Output Answer": [ - "28.26" - ], - "split": "train" - }, - { - "Input": "At lunch a waiter had 10 customers and 5 of them didn't leave a tip. If he got $3 each from the ones who did tip, how much money did he earn?", - "Output Program": [ - "ans=(10-5)*3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "While playing a game Edward had fifteen lives. He lost eight lives on a hard level. How many lives does he have left?", - "Output Program": [ - "ans=15-8\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "At the fair Dave rode 4 rides the first day he went and 3 rides the second day. How many times did he ride total?", - "Output Program": [ - "ans=4+3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Emma's room measures 12 feet by 20 feet. She purchased 40 tiles for a section of the floor. Each tile is 1 square foot. What fractional part of the room will have tile?", - "Output Program": [ - "ans=40/(12*20)\nprint(ans)" - ], - "Output Answer": [ - "1/6" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt went to a concert. A total of 65,899 people attended the concert. The next week, she went to a second concert, which had 119 more people in attendance. How many people were at the second concert?", - "Output Program": [ - "ans=65899+119\nprint(ans)" - ], - "Output Answer": [ - "66018" - ], - "split": "train" - }, - { - "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": [ - "ans=26-20+20\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": "The weight of 5 single beds is 50 kg. The total weight of 2 single beds and 4 double beds is 100 kg. How much heavier is a double bed than a single bed?", - "Output Program": [ - "ans=((100-(50/5)*2)/4)-(50/5)\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "There are 407 bananas in Philip's banana collection. If the bananas are organized into 11 groups, how big is each group?", - "Output Program": [ - "ans=407/11\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "After the framework was finished, they asked 239 monkeys and 622 termites to finish the rest of the building. How many workers finished the rest of the construction?", - "Output Program": [ - "ans=239+622\nprint(ans)" - ], - "Output Answer": [ - "861" - ], - "split": "train" - }, - { - "Input": "Olivia's dad took her and some friends out to eat for her birthday. If each meal costs 7 dollars and her dad paid for 3 meals, how much did he spend?", - "Output Program": [ - "ans=7*3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Chloe and her friends were recycling paper for their class. For every six pounds they recycled they earned 1 point. If Chloe recycled twenty-eight pounds and her friends recycled two pounds, how many points did they earn?", - "Output Program": [ - "ans=(28+2)/6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Jovana filled her bucket with 5 pounds of shells. If she adds 12 more pounds of shell to fill her bucket, how many pounds does she have?", - "Output Program": [ - "ans=5+12\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "In a play school, there are 16 red balls and the rest are white balls. The ratio of red balls to white balls is 4:5. Find the number of white balls.", - "Output Program": [ - "ans=(5/4)*16\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Joe's Bath Shop sells bars of soap in boxes of 5 bars and bottles of soap in boxes of 19 bottles. An employee is surprised to discover that the shop sold the same number of bars and bottles last week. What is the smallest number of each type of soap that the shop could have sold?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([5,19])\nprint(ans)" - ], - "Output Answer": [ - "95" - ], - "split": "train" - }, - { - "Input": "The cafeteria had fifty-one apples. For lunch they handed out forty-one to students and decided to use the rest to make pies. If each pie takes five apples, how many pies could they make?", - "Output Program": [ - "ans=(51-41)/5\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Jerry walked nine miles on Monday and nine more on Tuesday. How many miles did Jerry walk?", - "Output Program": [ - "ans=9+9\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Amelia works at the candy store. She has to sell 90 Jet Bars each week. She sold 45 on Monday. She sold 16 fewer Jet Bars on Tuesday. How many more Jet Bars does Ameila have to sell?", - "Output Program": [ - "ans=(90-45)-(45-16)\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Jane can arrange 16 vases of flowers in a day. If there are 248 vases of flowers to be arranged, how many vases of flowers will she arrange on the last day?", - "Output Program": [ - "ans=248%16\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "A pallet of boxes weighed 267 kilograms. If there were 3 boxes on the pallet and each box weighed the same amount, how much did each weigh?", - "Output Program": [ - "ans=267/3\nprint(ans)" - ], - "Output Answer": [ - "89" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt bought 3 pizzas for $8 each. What was the total amount she paid for the three pizzas?", - "Output Program": [ - "ans=3*8\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Isabella's hair is 18 inches long. If she gets a haircut and now her hair is 9 inches long, how much of Isabella's hair got cut off?", - "Output Program": [ - "ans=18-9\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Isabella's hair is 18 cubes long. She gets hair extensions and it doubles her length. How much hair does she have now?", - "Output Program": [ - "ans=18+18\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "3 tons of mulch cost $15,000.00. What is the price per pound?", - "Output Program": [ - "ans=15000/(3*2000)\nprint(ans)" - ], - "Output Answer": [ - "2.5" - ], - "split": "train" - }, - { - "Input": "The Ferris wheel in Paradise Park has 14 seats. Each seat can hold 6 people. How many people can ride the Ferris wheel at the same time?", - "Output Program": [ - "ans=14*6\nprint(ans)" - ], - "Output Answer": [ - "84" - ], - "split": "train" - }, - { - "Input": "Wendy's brother had 6 pieces of candy. Wendy had 2 boxes with 3 pieces each. How many pieces did they have total?", - "Output Program": [ - "ans=2*3+6\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Peter has 18 oranges, 27 pears and 12 bananas. He wants to make fruit baskets with the same number of each fruit in each basket. What is the greatest number of fruit baskets he can make?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(18,27),12)\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Sarah's Shipping and Ryan's Mail Services both ship packages. Sarah's trucks will only carry loads of 18 packages. In contrast, Ryan's trucks will only carry loads of 11 packages. If both businesses ended up shipping the same number of packages this morning, what is the minimum number of packages each must have shipped?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([18,11])\nprint(ans)" - ], - "Output Answer": [ - "198" - ], - "split": "train" - }, - { - "Input": "The perimeter of a hexagonal display board is 42 cm. The board has to be bordered around with satin ribbon. Find the length of ribbon required to border each side.", - "Output Program": [ - "ans=42/6\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Billy bought 7 boxes of candy with each box having 3 pieces inside of it. How many pieces of candy did he have totaled?", - "Output Program": [ - "ans=7*3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "For dessert, Jane's mom prepared 12 pieces of bite-size cinnamon swirls. If the three of them ate an equal number of pieces of cinnamon swirls, how many pieces did Jane eat?", - "Output Program": [ - "ans=12/3\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Cody cooked fourteen dumplings. He ate seven. How many dumplings does Cody have now?", - "Output Program": [ - "ans=14-7\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Ben draws a circle inside a square piece of paper whose area is 400 square inches. He makes sure than the circle touches each side of the square. What is the area of the circle?", - "Output Program": [ - "ans=(400**(1/2)/2)*(400**(1/2)/2)*3.14\nprint(ans)" - ], - "Output Answer": [ - "314" - ], - "split": "train" - }, - { - "Input": "Olivia was collecting cans for recycling. She had four bags with five cans inside each bag. How many cans did she have?", - "Output Program": [ - "ans=4*5\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Kiara baked 30 oatmeal cookies and 48 chocolate chip cookies to package in plastic containers for her teacher friends at school. She wants to divide the cookies into identical containers so that each container has the same number of each kind of cookie. If she wants each container to have the greatest number of cookies possible, how many plastic containers does she need?", - "Output Program": [ - "import math\nans=math.gcd(30,48)\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Jake read 37 pages of his new book. It has 8 chapters and 95 pages. Jake read 25 more pages later that day. How many pages has he read in all?", - "Output Program": [ - "ans=37+25\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "train" - }, - { - "Input": "A bakery cookie sheet was 10 inches wide and 2 inches long. What is the perimeter of their cookie sheet?", - "Output Program": [ - "ans=(10+2)*2\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "A pet supply store has 600 bags of dog food and 327 bags of cat food. How many more bags of dog food are there than cat food?", - "Output Program": [ - "ans=600-327\nprint(ans)" - ], - "Output Answer": [ - "273" - ], - "split": "train" - }, - { - "Input": "Pinky the Pig bought 36 apples while Danny the Duck bought 73. How many apples do they have altogether?", - "Output Program": [ - "ans=36+73\nprint(ans)" - ], - "Output Answer": [ - "109" - ], - "split": "train" - }, - { - "Input": "The map led them through the forest and into a cave. To open the cave doors, they need to put weights on the switch. If the switch already has 234 lbs. of weights and the total needed is 712 lbs., how much more weight to they need to add?", - "Output Program": [ - "ans=712-234\nprint(ans)" - ], - "Output Answer": [ - "478" - ], - "split": "train" - }, - { - "Input": "Paige uploaded thirty-five pictures to Facebook. She put fourteen pics into one album and put the rest into three different albums. How many pictures were in each of the three albums?", - "Output Program": [ - "ans=(35-14)/3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "A number divided by 7 is five-fourteenth. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# x/7=5/14\nsolution=solve([x/7-(5/14)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "5/2" - ], - "split": "train" - }, - { - "Input": "Tripp and Charlotte are going on a 36 mile hike. Tripp's backpack weighs 25 pounds. Charlotte's back pack weighs 7 pounds less. They hiked 9 miles the first day. How many miles do they have left?", - "Output Program": [ - "ans=36-9\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "train" - }, - { - "Input": "Josh had $1.80. He paid 45 cents for a candy car. How much change will he get?", - "Output Program": [ - "ans=1.80-0.45\nprint(ans)" - ], - "Output Answer": [ - "1.35" - ], - "split": "train" - }, - { - "Input": "Peter wants to split a collection of pencils into groups of 11. Peter has 154 pencils. How many groups will be created?", - "Output Program": [ - "ans=154/11\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "The zookeeper has 68 fish to feed to the penguins. 19 penguins have already gotten a fish. The zoo has 36 penguins. How many more penguins need to get a fish?", - "Output Program": [ - "ans=36-19\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "A company invited sixty-eight people to a luncheon, but fifty of them didn't show up. If the tables they had held three people each, how many tables do they need?", - "Output Program": [ - "ans=(68-50)/3\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Bianca was practicing for a marathon. To prepare she ran 8 miles the first day and 4 miles the next day. How many miles did Bianca run altogether?", - "Output Program": [ - "ans=8+4\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Will was picking up sticks from his yard. He picked up thirty-eight but there were still sixty-one left. How many sticks were originally in the yard?", - "Output Program": [ - "ans=38+61\nprint(ans)" - ], - "Output Answer": [ - "99" - ], - "split": "train" - }, - { - "Input": "Victor was selling chocolate for a school fund raiser. On the first week he sold 75. On the second week he sold 67. On the third week he sold 75. On the fourth week he sold 70 and on the last week he sold 68. What is the mean of the chocolate bars he sold?", - "Output Program": [ - "ans=(75+67+75+70+68)/5\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "train" - }, - { - "Input": "Gino has 63 popsicle sticks. I have 50 popsicle sticks. What is the sum of our popsicle sticks?", - "Output Program": [ - "ans=63+50\nprint(ans)" - ], - "Output Answer": [ - "113" - ], - "split": "train" - }, - { - "Input": "On Friday a pizza store sold 2 pepperoni, 6 bacon and 6 cheese pizzas. How many pizzas did they sell total?", - "Output Program": [ - "ans=2+6+6\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Lou's Shoes must sell 80 pairs of shoes each month. They sold 27 pairs last week and 12 pairs this week. How many more pairs of shoes must they sell?", - "Output Program": [ - "ans=80-27-12\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "train" - }, - { - "Input": "Lisa invited the entire third grade to her party. There are 48 students altogether. 23 of the students are boys and 25 are girls. 9 students will not be able to go to the party. How many students will be there?", - "Output Program": [ - "ans=48-9\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": "Jose has 28 chickens and 18 ducks. How many fowls does he have?", - "Output Program": [ - "ans=28+18\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "train" - }, - { - "Input": "The ratio of the length of Joey's rope to Chad's rope is 8:3. Joey's rope is 56 cm long. How long is Chad's rope?", - "Output Program": [ - "ans=(3/8)*56\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Sam was playing basketball with his friend. Sam scored seventy-five points and his friend scored twelve points. How many points did they score total?", - "Output Program": [ - "ans=75+12\nprint(ans)" - ], - "Output Answer": [ - "87" - ], - "split": "train" - }, - { - "Input": "If you had 37 bags of cookies with 19 cookies in each bag, how many cookies would you have?", - "Output Program": [ - "ans=37*19\nprint(ans)" - ], - "Output Answer": [ - "703" - ], - "split": "train" - }, - { - "Input": "Kate has 223 pennies. John has 388 pennies. How many more pennies does John have?", - "Output Program": [ - "ans=388-223\nprint(ans)" - ], - "Output Answer": [ - "165" - ], - "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": [ - "ans=(13+5)-10\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt wants to make a border around her garden. She needs 125 rocks to complete the border. She has 64 rocks. How many more rocks does she need to complete the border?", - "Output Program": [ - "ans=125-64\nprint(ans)" - ], - "Output Answer": [ - "61" - ], - "split": "train" - }, - { - "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": [ - "ans=45+9-19\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "At a school several teachers were holding a contest to see which class could earn the most trivia points. Mrs.William's class scored 50 points. Mr. Adams class earned 57 points. Mrs. Brown's class earned 49 and Mrs.Daniel's class earned 57. What is the mean of the number of points scored?", - "Output Program": [ - "ans=(50+57+49+57)/4\nprint(ans)" - ], - "Output Answer": [ - "53.3" - ], - "split": "train" - }, - { - "Input": "Linda has 34 candies. Chloe has 28. How many candies do they have in all?", - "Output Program": [ - "ans=34+28\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "train" - }, - { - "Input": "There are 83 trees in a park. 36 of them willows and the rest are oaks. How many more oaks than willows are there in the park?", - "Output Program": [ - "ans=83-36*2\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "The total weight of Jack and Sam is 96 pounds. If Jack weighs 52 pounds, how much heavier is Jack than Sam?", - "Output Program": [ - "ans=52-(96-52)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "For the roof, John would need 2 sets of metal bars for support. If each set has 7 metal bars, how many metal bars are there in all?", - "Output Program": [ - "ans=2*7\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "2 birds were sitting on the fence. 4 more birds came to join them. How many birds are sitting on the fence?", - "Output Program": [ - "ans=2+4\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Marian also prepared 59 croissants which she plans to give to her 8 neighbors. If each neighbor received and equal number of croissants, how many will be left with Marian?", - "Output Program": [ - "ans=59%8\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "The teacher gave 42 pencils to 12 students equally. How many pencils did each student get?", - "Output Program": [ - "ans=42//12\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "In Mrs. Hutchinson's kindergarten class, children make handprints in a round clay mold for their parents. The mold has a diameter of 4 inches. What is the mold's radius?", - "Output Program": [ - "ans=4/2\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Each table in a break room can seat eight people. If the break room has four tables, how many people can sit in there?", - "Output Program": [ - "ans=8*4\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "Having been to Paris, Rob also remembered the Eiffel Tower which was the tallest structure in the world at the time it was built. If the height of Eiffel Tower is 324 m, how much lower is it compared to 830m height, today\u2019s tallest man-made structure, the Burj Khalifa?", - "Output Program": [ - "ans=830-324\nprint(ans)" - ], - "Output Answer": [ - "506" - ], - "split": "train" - }, - { - "Input": "Dave had sixteen apps on his phone. After deleting some, he had eight left. How many apps did he delete?", - "Output Program": [ - "ans=16-8\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Adam needed to climb ninety-six stair steps to reach the rooftop. He already climbed seventy-four. How many stair steps do left for Adam to climb now?", - "Output Program": [ - "ans=96-74\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "Being his favorite, he saved checking on the grapevines for his last stop. He was told by one the pickers that they fill 324 drums of grapes per day. How many drums of grapes would be filled in 9 days?", - "Output Program": [ - "ans=324*9\nprint(ans)" - ], - "Output Answer": [ - "2916" - ], - "split": "train" - }, - { - "Input": "Next on his list is the famous Empire State Building. There he learned that the building stands 1250 feet to the top floor and the antenna spire is 204 feet. How tall is the Empire State Building?", - "Output Program": [ - "ans=1250+204\nprint(ans)" - ], - "Output Answer": [ - "1454" - ], - "split": "train" - }, - { - "Input": "Eight balls were in the basket. Some of the balls were removed from the basket. Now there are six balls. How many balls were removed from the basket?", - "Output Program": [ - "ans=8-6\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "There are 30 students in a class. If the teacher put them into groups with 5 students in each group, how many groups would she have?", - "Output Program": [ - "ans=30/5\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "There are 22 dogs in the farm. They live in 5 dog-houses equally. How many dogs are there in each dog-house?", - "Output Program": [ - "ans=22//5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Shelby's teacher gives out gold stars for great math work. Yesterday, Shelby earned 4 gold stars. Today, she earned 3 more. How many gold stars did Shelby earn in all?", - "Output Program": [ - "ans=4+3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Fifteen more than three times a number is the same as ten less than six times the number. What is the number?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# 3x+15=6x-10\nsolution=solve([3*x+15-(6*x-10)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "25/3" - ], - "split": "train" - }, - { - "Input": "Susie and her family woke up early on the first weekend of spring. They had a long list of activities for spring cleaning. Susie's mom prepared 74 carrot sticks for breakfast. If the carrots were served equally to 12 people, how many carrot sticks were left uneaten?", - "Output Program": [ - "ans=74%12\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Before his friends gave him more stamps, Simon initially had 34 stamps. If he now has 61 stamps, how many stamps did he receive from his friends?", - "Output Program": [ - "ans=61-34\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "train" - }, - { - "Input": "Kaleb had saved up thirty-nine dollars. If he received another twenty-five dollars for his allowance, how many eight dollar toys could he buy?", - "Output Program": [ - "ans=(39+25)/8\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "William sells hot dogs at the ball park. He sold 19 hot dogs during the first three innings. He sold 27 hot dogs during the next three innings. William had 45 hot dogs left to sell. How many hot dogs did William have at first?", - "Output Program": [ - "ans=45+27+19\nprint(ans)" - ], - "Output Answer": [ - "91" - ], - "split": "train" - }, - { - "Input": "After the final bell rang, Buddy ran to the school bus with his new friends. On his ride home, he counted 36 students sitting on the left side of the bus and 27 sitting on the right. How many students are on the bus ride home?", - "Output Program": [ - "ans=36+27\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": "Mary sold 9 boxes of Do-Si-Dos. How many cases of 6 boxes, plus extra boxes does Mary need to deliver?", - "Output Program": [ - "ans=9//6+1\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "There are 5 roses and 5 carnations in a vase. How many flowers are there in the vase in all?", - "Output Program": [ - "ans=5+5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "There are 261 fishbowls. Each fishbowl has 23 fish. How many fish are there?", - "Output Program": [ - "ans=261*23\nprint(ans)" - ], - "Output Answer": [ - "6003" - ], - "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": [ - "ans=33-19+13\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "train" - }, - { - "Input": "Roden went to a pet shop. He bought 15 gold fish and 7 blue fish. How many fish did he buy?", - "Output Program": [ - "ans=15+7\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "It's Rachel's birthday. Her parents wanted her to have fun so they went to the circus that happened to be in town that day. Upon arriving at the circus, they went to the ticket booth and asked how much each ticket cost. If each ticket costs $44.00 and they bought 7 tickets, how much money did they spend on tickets?", - "Output Program": [ - "ans=44*7\nprint(ans)" - ], - "Output Answer": [ - "308" - ], - "split": "train" - }, - { - "Input": "The capacity of a tank is 32 gallons. If a company bought 728 gallons of oil, how many tanks are needed to hold all the oil?", - "Output Program": [ - "ans=728//32+1\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "train" - }, - { - "Input": "A mailman had to give 6 pieces of junk mail and 5 magazines to a house. How many pieces of mail did he deliver total?", - "Output Program": [ - "ans=6+5\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Sam and Erica have $91 together. Sam has $38. How does Erica have?", - "Output Program": [ - "ans=91-38\nprint(ans)" - ], - "Output Answer": [ - "53" - ], - "split": "train" - }, - { - "Input": "Tyler had 15 dogs. Each dog had five puppies. How many puppies does Tyler now have?", - "Output Program": [ - "ans=15*5\nprint(ans)" - ], - "Output Answer": [ - "75" - ], - "split": "train" - }, - { - "Input": "A school had nine hundred thirty-five students sign up for the trivia teams. If they wanted to have six team, with the same number of students on each team, how many more students would need to sign up?", - "Output Program": [ - "ans=6-935%6\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "Kale mowed his lawn 8 times total during the spring. If he mowed it 5 times in the summer. What's the difference between the number of times on mowing in the spring and summer?", - "Output Program": [ - "ans=8-5\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Jacqueline had 16 plums, 18 guavas and 21 apples. She gave some of them to Jane and had 15 fruits left. How many fruits did Jacqueline give Jane?", - "Output Program": [ - "ans=16+18+21-15\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "A group of nine friends went into a restaurant. The chef already had two chicken wings cooked but cooked twenty-five more for the group. If they each got the same amount, how many would each person get?", - "Output Program": [ - "ans=(2+25)/9\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Oceanside Bike Rental Shop charges a 17 dollar fixed fee plus 7 dollars an hour for renting a bike. Mary paid 80 dollars to rent a bike. How many hours did she pay to have the bike checked out ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Dollars for renting an hour\n# 17+7x=80\nsolution=solve([17+7*x-80], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Debby had twelve pounds of flour. If she bought another four pounds, how many pounds would she have total?", - "Output Program": [ - "ans=12+4\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "If the group was able to make 65 recycled materials from what they gathered and the teachers were able to make 28, how many recycled products will they be able to sell at the fair?", - "Output Program": [ - "ans=65+28\nprint(ans)" - ], - "Output Answer": [ - "93" - ], - "split": "train" - }, - { - "Input": "A coat factory had 29 coats. If they wanted to put them into 3 boxes, with the same number of coats in each box, how many extra coats would they have left over?", - "Output Program": [ - "ans=29%3\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Joan is baking a cake. The recipe calls for 7 cups of flour. She already put in 3 cups. How many more cups does she need to add ?", - "Output Program": [ - "ans=7-3\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Amy was buying different soups. She bought 6 cans of chicken soup and 3 cans of tomato soup. How many soups did she buy?", - "Output Program": [ - "ans=6+3\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "If he spent a total of $700.00 and all the gifts cost a total of $561.00, how much money did he spend on giftwrapping and other expenses?", - "Output Program": [ - "ans=700-561\nprint(ans)" - ], - "Output Answer": [ - "139" - ], - "split": "train" - }, - { - "Input": "Mr. Lee wants to load 134 tons of his fruits. A large truck can load 15 tons of fruits and small truck can load 7 tons. In order to use the least number of trucks and have every truck fully occupied, how many large trucks should be used?", - "Output Program": [ - "ans=134//15\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "At the end of the cave, they found a golden chest. If the chest contains 421 diamonds and 377 rubies, how many more diamonds are there than rubies?", - "Output Program": [ - "ans=421-377\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "train" - }, - { - "Input": "Sofia, president of the school student organization, held a meeting to talk about the food being served at the school cafeteria. The first order of business is to discuss whether the students like the food being served at the school. If 383 students said that they like the food and 431 students said they didn't, how many students participated in the discussion?", - "Output Program": [ - "ans=383+431\nprint(ans)" - ], - "Output Answer": [ - "814" - ], - "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": [ - "ans=12-2+21\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "train" - }, - { - "Input": "A company donates 935 pencils to a school. The pencils are divided evenly among 9 classrooms. The rest of the pencils are given to the library. How many pencils were donated to the library?", - "Output Program": [ - "ans=935%9\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Ariel is making flower arrangements. He has 7 roses and 14 daisies. If Ariel wants to make all the arrangements identical and have no flowers left over, what is the greatest number of flower arrangements that he can make?", - "Output Program": [ - "import math\nans=math.gcd(7,14)\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Adam had seventy-nine dollars saved up. After doing some chores his mother gave him another thirteen dollars. How much money does he have total?", - "Output Program": [ - "ans=79+13\nprint(ans)" - ], - "Output Answer": [ - "92" - ], - "split": "train" - }, - { - "Input": "They had 119 matchboxes wrapped in colorful shiny wrappers. If they are to distribute the matchboxes equally to the 9 houses in the first block, how many colorful matchboxes will they have left?", - "Output Program": [ - "ans=119%9\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "A mountain cabin on 1 acre of land costs $30,000. If the land cost 4 times as much as the cabin, what was the cost of each?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of the cabin; y:The cost of the land\n# x+y=30000; 4x=y\nsolution=solve([x+y-30000, 4*x-y], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "6000" - ], - "split": "train" - }, - { - "Input": "Ned ordered some pizzas for a party. During the party four were eaten. Now he has seven left. How many pizzas did Ned order for the party?", - "Output Program": [ - "ans=4+7\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Megan had seventeen bottles of water. If she drank three of them, how many bottles would Megan have left?", - "Output Program": [ - "ans=17-3\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Kendra learns 12 new spelling words each week. Her goal is to learn 60 new words before her eighth birthday. She has already learned 36 new words. How many more words does Kendra need to learn?", - "Output Program": [ - "ans=60-36\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Isha's pencil is 31 inches long. If she sharpens it, now her pencil is 14 inches long. How much did she sharpen off of her pencil?", - "Output Program": [ - "ans=31-14\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Christmas came and as usual she received 77 gifts to put under the Christmas tree. She wanted to make other kids happy so she sent 66 of her gifts to the orphanage downtown. How many gifts were left under their Christmas tree?", - "Output Program": [ - "ans=77-66\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Tara can row downstream 20 km in 2 hours, and upstream 4 km in 2 hours. Find her speed of rowing in still water and the speed of the current.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Speed of rowing in still water; y:Speed of current\n# 20/(x+y)=2; 4/(x-y)=2\nsolution=solve([20/(x+y)-2, 4/(x-y)-2], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt had 15 cents. She bought a pencil for 11 cents. How much money did she have left?", - "Output Program": [ - "ans=15-11\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Katie had 9 math problems for homework. If she finished 5 of them on the bus ride home, how many more did she have to do?", - "Output Program": [ - "ans=9-5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "A quarter equals $0.25. How many quarters equal $2.25?", - "Output Program": [ - "ans=2.25/0.25\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt has 50 cents. A pencil costs 5 cents. How many pencils can she buy with the money she has?", - "Output Program": [ - "ans=50/5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "A restaurant offers diet soda and regular soda. In one day they sold 64 sodas. If 28 of the sodas they sold were diet, what is the ratio of regular sodas sold to diet sodas sold?", - "Output Program": [ - "from fractions import Fraction\ndif=64-28\nfrac=Fraction(dif,28)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "9:7" - ], - "split": "train" - }, - { - "Input": "Amy baked fifty cupcakes for her school's bake sale. If her brother, Todd, ate five of them, how many packages could she make if she put five cupcake in each package?", - "Output Program": [ - "ans=(50-5)/5\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt has a picture frame that is 12 inches high and 10 inches long. What is the perimeter of that picture frame?", - "Output Program": [ - "ans=(12+10)+(12+10)\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "train" - }, - { - "Input": "Paige had 2 pencils in her desk, 2 in her backpack and 15 at home. What's the difference between the number of pencils in Paige's backpack and at Paige's home?", - "Output Program": [ - "ans=15-2\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Ralph has a photo album with 50 pages. He has 26 pictures of wild animals. Ralph's friend, Derrick, has 34 pictures of wild animals. How many fewer pictures of wild animals does Ralph have?", - "Output Program": [ - "ans=34-26\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Faye picked eighty-eight flowers for her friend's wedding. She was making bouquets with five flowers in each one. If forty-eight of the flowers wilted before the wedding, how many bouquets could she still make?", - "Output Program": [ - "ans=(88-48)/5\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Jessica spent half of her allowance going to the movies. She washed the family car and earned six dollars. What is her weekly allowance if she ended with eleven dollars ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Jessica's weekly allowance\n# x/2+6=11\nsolution=solve([x/2+6-11], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Victor had $10. For his allowance he got another $8. How much money does he have total?", - "Output Program": [ - "ans=10+8\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt has 40 markers. They are divided equally into 7 packages. Mrs. Hilt wants to know how many markers are in each package?", - "Output Program": [ - "ans=40%7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "There are 757 pounds of sand to be filled into bags. If each bag has a capacity of 65 pounds, how many pounds of sand are there in the bag that is not full?", - "Output Program": [ - "ans=757%65\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "train" - }, - { - "Input": "A recipe called for the ratio of sugar to flour to be 10:1. If you used 50 ounce of sugar, how many ounces of flour would you need to use?", - "Output Program": [ - "ans=(1/10)*50\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "There were 51 geese in the farmer's field. 28 of the geese flew away. How many geese were left in the field?", - "Output Program": [ - "ans=51-28\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "train" - }, - { - "Input": "A new video game console needs five computer chips. If a machine can create four hundred sixty-seven computer chips a day, how many video game consoles can be created in a day?", - "Output Program": [ - "ans=467//5\nprint(ans)" - ], - "Output Answer": [ - "93" - ], - "split": "train" - }, - { - "Input": "There are 22 dogs in the farm. They live in 5 dog-houses equally. How many dogs are left?", - "Output Program": [ - "ans=22%5\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "One day, Trent and his friends had lunch while sitting at tables of 2. Another day, they had lunch at tables of 8. What is the smallest number of people that could be in the group?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([2,8])\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Jazmin is completing an art project. She has two pieces of construction paper. The first piece is 44 inches wide and the second piece is 33 inches wide. Jazmin wants to cut the paper into strips that are equal in width and are as wide as possible. How wide should Jazmin cut each strip?", - "Output Program": [ - "import math\nans=math.gcd(44,33)\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "172 students are forming teams for a mountaineering competition. Each team should have 18 students. How many students will not be on a team?", - "Output Program": [ - "ans=172%18\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Kyle bought 3 presents. The first present cost $18. The second present cost $7 more than the first. The third present cost $11 less than the first. How much did Kyle pay for all 3 presents?", - "Output Program": [ - "ans=18+(18+7)+(18-11)\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "Input": "David has zero fewer apples than Marin. Marin has three apples. How many apples does David have?", - "Output Program": [ - "ans=3-0\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "A rectangular piece of metal is 16 centimeters wide and 19 centimeters long. What is its perimeter?", - "Output Program": [ - "ans=(16+19)*2\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "train" - }, - { - "Input": "There are 2 red water bottles, 3 black water bottles, and 4 blue water bottles in the fridge. If 5 water bottles are taken out, how many water bottles are left in the fridge?", - "Output Program": [ - "ans=2+3+4-5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Denise is getting older and feels like she should donate her collection of stuffed animals to children who are less fortunate. She has 14 stuffed cats and 7 stuffed dogs, which she wants to divide into identical groups, with no stuffed animals left over. What is the greatest number of groups Denise can place her stuffed animals into?", - "Output Program": [ - "import math\nans=math.gcd(14,7)\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Next on his checklist are the strawberry fields. There he found out that they can get 268 kg of fruit for every row of strawberry plants. If there are 7 rows of strawberry plants, how many kilograms of strawberries can they harvest?", - "Output Program": [ - "ans=268*7\nprint(ans)" - ], - "Output Answer": [ - "1876" - ], - "split": "train" - }, - { - "Input": "There were sixty-one people in line at lunch when twenty-two more got in line. How many people were there total in line?", - "Output Program": [ - "ans=61+22\nprint(ans)" - ], - "Output Answer": [ - "83" - ], - "split": "train" - }, - { - "Input": "Mr. Johnson used 80 meters of fencing to enclose a rectangular garden. The length of the garden is 25 meters. How wide is the garden?", - "Output Program": [ - "ans=(80-(25*2))/2\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "A mailman has to give out 192 pieces of junk mail. If he goes to 4 blocks, how many pieces of junk mail should he give each block?", - "Output Program": [ - "ans=192/4\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "Tom had thirty-six pieces of clothing to wash. He put eighteen of them in one load, but decided to split the rest into two equal loads. How many pieces of clothing could go in each of the small loads?", - "Output Program": [ - "ans=(36-18)/2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Tom saw that Michael has the rare robot that would complete one of his robot sets. Michael offered to sell it but he said that Tom will need to pay 3 times the original price. If the rare robot has an original price of $3.00, how much should Tom pay?", - "Output Program": [ - "ans=3.00*3\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Jerry had 8 action figures on a shelf in his room. Later he added 2 more figures to the shelf. How many action figures were on his shelf total?", - "Output Program": [ - "ans=8+2\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Arthur baked 35 muffins. How many more muffins does Arthur have to bake to have 83 muffins?", - "Output Program": [ - "ans=83-35\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "After recess, Buddy changed clothes for gym class. Down at the gym, all the students were divided into two groups. If one group has 34 members and the other has 37, how many students are in Buddy's gym class?", - "Output Program": [ - "ans=34+37\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "train" - }, - { - "Input": "A vase can hold nine flowers. If you had four carnations and twenty-three roses, how many vases would you need to hold the flowers?", - "Output Program": [ - "ans=(4+23)/9\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "For the frosting and final touches, Willie will need to have 300 lbs. of whipped cream. If he got 149 lbs. of cream from his farm, how much more cream is needed to be bought?", - "Output Program": [ - "ans=300-149\nprint(ans)" - ], - "Output Answer": [ - "151" - ], - "split": "train" - }, - { - "Input": "Kate, Maggie, and Sue added up their ages. The total was 48. Kate is 19 and Maggie is 17. How old is Sue?", - "Output Program": [ - "ans=48-19-17\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "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": [ - "ans=(10-2)*4\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": "The company has large and small ink cartridges in stock. How many ink cartridges can you buy with 182 dollars if one cartridge costs 14 dollars ?", - "Output Program": [ - "ans=182/14\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Zoe is on vacation. She has already taken 28 pictures. She has enough film left to take 32 more pictures. Zoe took 16 more pictures at the dolphin show. How many pictures has Zoe taken altogether?", - "Output Program": [ - "ans=28+16\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "train" - }, - { - "Input": "Diane wants to buy a package of cookies. The cookies cost 65 cents. Diane has 27 cents. How much more money does she need?", - "Output Program": [ - "ans=65-27\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "train" - }, - { - "Input": "Her mom also baked some cookies. If she baked 5 pans of cookies and there are 8 cookies per pan, how many cookies did her mom bake for her birthday?", - "Output Program": [ - "ans=5*8\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "James had 39 stickers. He got some more stickers for his birthday. Then he had 61 stickers. How many stickers did James get for his birthday?", - "Output Program": [ - "ans=61-39\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": "Jean had a bag of candy. She gave 18 pieces to her friend. Jean ate 7 pieces. Now she has 16 pieces left. How many pieces of candy did Jean have at first?", - "Output Program": [ - "ans=16+7+18\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "train" - }, - { - "Input": "Kendra took a road trip. In the afternoon, she saw 4 minivans like hers. Later, in the evening, she saw one more minivan like hers. How many minivans like hers did she see in all?", - "Output Program": [ - "ans=1+4\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "In the freezer there are 2 grape popsicles, 13 cherry popsicles and 2 banana popsicles. How many popsicles are there total?", - "Output Program": [ - "ans=2+13+2\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Father's age is three times the sum of the ages of his two children. After 5 years his age will be twice the sum of age of two children. Find the age of father.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The age of the father; y:The sum of the ages of two children\n# x=3y; x+5=2(y+5)\nsolution=solve([x-3*y, x+5-(2*(y+5))], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "If Simon needs to make 519 gift bags at a rate of 42 bags per day, how many days does he need to finish making all the gift boxes?", - "Output Program": [ - "ans=519//42+1\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Connie saved up $39. She wants to buy a watch that costs $55. How much more money does Connie need?", - "Output Program": [ - "ans=55-39\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Morgan has 65 red pens, 45 blue pens, and 58 black pens. How many pens does she have?", - "Output Program": [ - "ans=65+45+58\nprint(ans)" - ], - "Output Answer": [ - "168" - ], - "split": "train" - }, - { - "Input": "While counting chairs in the lunch room, Marie noticed that there were 14 chairs in the first row, 23 chairs in the second row, 32 chairs in the third row, 41 chairs in the fourth row, and 50 chairs in the fifth row. If this pattern continues, how many chairs will there be in the sixth row?", - "Output Program": [ - "lst=[14,23,32,41,50]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "Input": "After eating at the restaurant, Mary, Nancy, and Fred decided to divide the bill evenly. Nancy did not have dessert. If each person paid 33 dollars, what was the total of the bill ?", - "Output Program": [ - "ans=3*33\nprint(ans)" - ], - "Output Answer": [ - "99" - ], - "split": "train" - }, - { - "Input": "The Spurs basketball team has 22 players. Each player has eleven basketballs. How many basketballs do they have in all?", - "Output Program": [ - "ans=22*11\nprint(ans)" - ], - "Output Answer": [ - "242" - ], - "split": "train" - }, - { - "Input": "Henry bought 2 new fireworks and his friend bought 3. If they already had 6 saved from last year, how many do they have now?", - "Output Program": [ - "ans=2+3+6\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Jasper is in charge of the refreshments. He sold 27 bags of chips. He sold 8 fewer hot dogs than chips. He sold 12 more drinks than hot dogs. How many drinks did Jasper sell?", - "Output Program": [ - "ans=27-8+12\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "train" - }, - { - "Input": "Frankie and Max went trick-or-treating. Frankie got 74 pieces of candy. Max got 92 pieces of candy. How many more pieces of candy did Max get?", - "Output Program": [ - "ans=92-74\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Some oranges were in the basket. Five oranges were taken from the basket. Now there are three oranges. How many oranges were in the basket before some of the oranges were taken?", - "Output Program": [ - "ans=5+3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Christian's mother prepared lemonade. Every pitcher of lemonade can serve 5 glasses. If she was able to serve 30 glasses of lemonade, how many pitchers of lemonade did she prepare?", - "Output Program": [ - "ans=30/5\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt has 40 markers. They are divided equally into 7 packages. Mrs. Hilt wants to know how many markers are leftover?", - "Output Program": [ - "ans=40%7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Helen's mother brought 101 hotdogs. After a few hours, Dylan's mother arrived with 379 hotdogs. How many hotdogs do they have altogether?", - "Output Program": [ - "ans=101+379\nprint(ans)" - ], - "Output Answer": [ - "480" - ], - "split": "train" - }, - { - "Input": "P and Q start at the same time in the same direction to run around a stadium. P completes a round in 252 seconds and Q in 198 seconds, both starting at the same point. After what time will they meet again at the starting point?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([252,198])\nprint(ans)" - ], - "Output Answer": [ - "2772" - ], - "split": "train" - }, - { - "Input": "Mrs. Sheridan has 11 cats. Mrs. Garrett has 24 cats. What's the difference of the number of Mrs. Sheridan's cats and Mrs. Garrett's cats?", - "Output Program": [ - "ans=24-11\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Each side of a square piece of sheet metal is 7 meters long. What is the sheet metal's perimeter?", - "Output Program": [ - "ans=7*4\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "Mrs. Randall has taught third grade for 18 years. She has 26 students this year. She also taught second grade for 8 years. How many years has Mrs. Randall been teaching?", - "Output Program": [ - "ans=18+8\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": "Lavinia has 9 glasses and 6 mugs. She would like to set them out in identical groups, with none left over, in preparation for a dinner party. What is the greatest number of groups Lavinia can set out?", - "Output Program": [ - "import math\nans=math.gcd(9,6)\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Annie's friends wanted to make sure that there will be enough utensils to go around. If they already have 10 spoons and 10 forks and they bought 30 more for forks and 20 more spoons, how many utensils do they have available for the party?", - "Output Program": [ - "ans=10+10+30+20\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "train" - }, - { - "Input": "Nancy was buying soap for her bathroom. She bought 6 packs with each pack having 5 bars. How many bars of soap did she buy?", - "Output Program": [ - "ans=6*5\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "Lastly, she baked 53 lemon cupcakes for the children living in the city orphanage. If two lemon cupcakes were left at home, how many boxes with 3 lemon cupcakes each were given away?", - "Output Program": [ - "ans=(53-2)/3\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "There are 5 flowers and 3 bees. What's the difference of the number of flowers and bees over there?", - "Output Program": [ - "ans=5-3\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Zachary collects cans for the recycling club. On the first day, he found 4 cans. On the second day, he found 9 cans. He found 14 cans on the third day. If this pattern continues, how many cans do you think Zachary will find on the seventh day?", - "Output Program": [ - "ans=4+(9-4)*(7-1)\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "train" - }, - { - "Input": "Maria had sixty-seven pieces of candy. She ate sixty-four pieces. How many pieces of candy does Maria have now?", - "Output Program": [ - "ans=67-64\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Wendy earned 5 points for each bag of cans she recycled. If she had 11 bags, but didn't recycle 2 of them, how many points would she have earned?", - "Output Program": [ - "ans=(11-2)*5\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "To carry heavy construction materials, they employed 413 red ants and 487 black ants. How many ants did they employ in total?", - "Output Program": [ - "ans=413+487\nprint(ans)" - ], - "Output Answer": [ - "900" - ], - "split": "train" - }, - { - "Input": "Everyday I eat 3 servings of veggies. How many servings of veggies do I eat in one week?", - "Output Program": [ - "ans=3*7\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "At a farm the ratio of cows to horses was 7:2. If there were 21 cows at the farm, how many horses were there?", - "Output Program": [ - "ans=(2/7)*21\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "A rectangle swimming pool was 3 meters wide with a surface area of 30 square meters. What is the length of the pool?", - "Output Program": [ - "ans=30/3\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Dave was making ice using ice trays. He originally had two ice cubes. But made seven more cubes. How many ice cubes did he have totaled?", - "Output Program": [ - "ans=2+7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "On the last day of school only sixteen students showed up. If seven of them were checked out early, how many students were left?", - "Output Program": [ - "ans=16-7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Amanda and Sadie each have a band. Amanda's band plays songs in sets of 2 and Sadie's band plays songs in sets of 9. After performing together, both bands realize that they have played the same number of songs. What is the smallest number of songs each band could have performed?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([2,9])\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "Ricky has a magic money box. Every day the box doubles the number of coins placed inside of it. Ricky put in 3 pennies on Monday. He looked inside his box on Friday. How many pennies did Ricky see?", - "Output Program": [ - "ans=((((3*2)*2)*2)*2)\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": "A man is thrice as old as his son. After 12 years, he will be twice as old as his son. Find their present ages.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The present age of the man; y:The present age of the man's son\n# x=3*y; x+12=(y+12)*2\nsolution=solve([x-(3*y), x+12-((y+12)*2)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Andy, another part of the recycling team decided he would gather tin foil wrappers. If he was able to pick up 34 wrappers around the village dumpster and his best friend Max was able to collect 15, how many wrappers were gathered in total?", - "Output Program": [ - "ans=34+15\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "train" - }, - { - "Input": "A report said that each day the average Youtube viewer watches 2 videos with each video lasting 7 minutes. Additionally they also watch 3 minutes of ads. According to the report, how many minutes total do people spend on Youtube?", - "Output Program": [ - "ans=2*7+3\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Billy had 72 Lemon Heads. If Billy gave equal numbers of Lemon Heads to his 6 friends, how many Lemon Heads did each person eat?", - "Output Program": [ - "ans=72/6\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "James has 1222 balloons. Amy has 513 balloons. How many more balloons does James have than Amy?", - "Output Program": [ - "ans=1222-513\nprint(ans)" - ], - "Output Answer": [ - "709" - ], - "split": "train" - }, - { - "Input": "It's Valentine's Day in the city and Mayor Harvey wants to celebrate by giving the institutions for women some flowers. His first beneficiary was the nursing home for old women. He bought 3 sets of flowers, 90 pieces each. How many flowers did he buy for the nursing home?", - "Output Program": [ - "ans=3*90\nprint(ans)" - ], - "Output Answer": [ - "270" - ], - "split": "train" - }, - { - "Input": "Randy has 78 blocks. He uses 19 blocks to build a tower. How many blocks are left?", - "Output Program": [ - "ans=78-19\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "train" - }, - { - "Input": "Jerry had caught some butterflies. He let eleven go and now he has eighty-two left. How many did he originally have?", - "Output Program": [ - "ans=11+82\nprint(ans)" - ], - "Output Answer": [ - "93" - ], - "split": "train" - }, - { - "Input": "There are 5929 Skittles in Steven's Skittle collection. Steven also has 11 erasers. If the Skittles are organized into 77 groups, how big is each group?", - "Output Program": [ - "ans=5929/77\nprint(ans)" - ], - "Output Answer": [ - "77" - ], - "split": "train" - }, - { - "Input": "There are 37 baskets. There are 17 apples in each basket. How many apples are there in all?", - "Output Program": [ - "ans=37*17\nprint(ans)" - ], - "Output Answer": [ - "629" - ], - "split": "train" - }, - { - "Input": "Megan had three hundred seventy-two songs on her mp3 player. If she wanted to put the songs equally into nine different playlists, how many songs would she have left over?", - "Output Program": [ - "ans=372%9\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Virginia had 13 Sweettarts. If Virginia gave equal numbers of Sweettarts to her 4 friends and then she ate what was left, how many Sweettarts did each person eat?", - "Output Program": [ - "ans=13//4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "The book fair had a sale where 3 books were $18.72. If you wanted to buy 6 books, how much money would you need?", - "Output Program": [ - "ans=(18.72/3)*6\nprint(ans)" - ], - "Output Answer": [ - "37.44" - ], - "split": "train" - }, - { - "Input": "Next on his list is the nursing home near his office. There he 472 boxes of vitamins and 288 boxes of supplements. How many boxes of medicine did the nursing home receive from Mr. Anderson?", - "Output Program": [ - "ans=472+288\nprint(ans)" - ], - "Output Answer": [ - "760" - ], - "split": "train" - }, - { - "Input": "At a pet store the ratio of cats to dogs sold was 2:1. If there were 16 cats that were sold, how many dogs were sold?", - "Output Program": [ - "ans=(1/2)*16\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Paul had 28 strawberries in his basket. He picked 35 more strawberries. How many strawberries did he have then?", - "Output Program": [ - "ans=28+35\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": "If Lizzie's group is composed of 54 people and they have 17 more members than the other group, how many people are working together to clean the city?", - "Output Program": [ - "ans=(54-17)+54\nprint(ans)" - ], - "Output Answer": [ - "91" - ], - "split": "train" - }, - { - "Input": "Megan has 19 seashells. How many more seashells does she need to find to have 25 seashells in her collection?", - "Output Program": [ - "ans=25-19\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Sarah bought 8 new shirts for school. If she already had 9 shirts, how many did she own total?", - "Output Program": [ - "ans=8+9\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "During a class election the ratio of students who voted for candidate A compared to candidate B was 2:1. If candidate A received 14 votes, what is the combined amount of votes candidate A and candidate B received?", - "Output Program": [ - "ans=(3/2)*14\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Iesha has 344 books. 136 are about school and the rest are about sports. How many books about sports does Iesha have?", - "Output Program": [ - "ans=344-136\nprint(ans)" - ], - "Output Answer": [ - "208" - ], - "split": "train" - }, - { - "Input": "Lisa is making activity baskets to donate to charity. She has 12 coloring books, 28 markers, and 36 crayons. What is the greatest number of baskets she can make if each type of toy is equally distributed among the baskets?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(12,28),36)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Her last stop was the post office. There she sent her rock collection to the Geological Museum in London. She was left with her 15 favorite stones after sending away a part of her collection. If she originally has 78 stones in her collection, how many did she send away?", - "Output Program": [ - "ans=78-15\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": "There were 6 soccer balls in the bag. Coach B. found several additional soccer balls, and placed them in the bag. There are now 24 balls in the bag. How many soccer balls did he pick up?", - "Output Program": [ - "ans=24-6\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "For the final act, the circus brought out dancing animals wearing crowns. If each crown is made with 7 different colored feathers, how many feathers are needed for 934 crowns?", - "Output Program": [ - "ans=7*934\nprint(ans)" - ], - "Output Answer": [ - "6538" - ], - "split": "train" - }, - { - "Input": "Zack tutors students in groups of 14. Meanwhile, Karen tutors students in groups of 10. While discussing their work, the tutors realize that they both work with the same total number of students. What is the smallest number of students each can have?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([14,10])\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "train" - }, - { - "Input": "A school ordered 195 new pencils for the state tests. If they gave each student 3 pencils, how many students are in the school?", - "Output Program": [ - "ans=195/3\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "train" - }, - { - "Input": "A box of apples was delivered to Paul's Pies and Cakes. He put half of the apples aside for a pie he would make later. He put 25 of the remaining apples in the refrigerator. That left 6 apples to use in his muffins. How many apples were in the box at first?", - "Output Program": [ - "ans=(6+25)*2\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "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": [ - "ans=10-2+2\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Cindy and Dan have the same number of stickers. Cindy used 15 of her stickers. Dan bought 18 more stickers. How many more stickers did Dan have than Cindy then?", - "Output Program": [ - "ans=15+18\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "train" - }, - { - "Input": "At the arcade Dave had won thirteen tickets. If he used six to buy some toys, how many tickets did Dave have left?", - "Output Program": [ - "ans=13-6\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Six students were sitting at each table in the lunchroom. There are 34 tables. How many students were sitting in the lunchroom?", - "Output Program": [ - "ans=6*34\nprint(ans)" - ], - "Output Answer": [ - "204" - ], - "split": "train" - }, - { - "Input": "Two bikers are riding a circular path. The first rider completes a round in 12 minutes. The second rider completes a round in 18 minutes. If they both started at the same place and time and go in the same direction, after how many minutes will they meet again at the starting point?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([12,18])\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "train" - }, - { - "Input": "Dan's high school played eighteen baseball games this year and two were at night. The team won most of their games. They were defeated during three games. How many games did they win ?", - "Output Program": [ - "ans=18-3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Feeling sad about their loss on their first game, Chuck and his teammates were determined to win on their next match against the Yellow Team. They scored 72 points and the Yellow Team scored 55, how large was their lead?", - "Output Program": [ - "ans=72-55\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Janine owns a catering service company. She was hired to cater for the mayor's 50th birthday. For the appetizers, she needs to make 750 mini meat pies. She divided her crew into 3 teams. If the first team made 235, and the second made 275, how many pies should the third team make?", - "Output Program": [ - "ans=750-(235+275)\nprint(ans)" - ], - "Output Answer": [ - "240" - ], - "split": "train" - }, - { - "Input": "A square garden has a perimeter of 48 meters. A pond inside the garden has an area of 20 square meters. What is the area of the garden that is not taken up by the pond?", - "Output Program": [ - "ans=((48/4)**2)-20\nprint(ans)" - ], - "Output Answer": [ - "124" - ], - "split": "train" - }, - { - "Input": "Denver the Dog is a famous architect in the city of Animapolis. Together with his engineer friend Wally the Wolf, they decided to build the tallest building ever, the Animus Tower. To make sure the framework of the tower is strongly built, they hired the best builders in town. If they hired 318 beavers and 544 spiders, how many workers in total did they hire to make the framework?", - "Output Program": [ - "ans=318+544\nprint(ans)" - ], - "Output Answer": [ - "862" - ], - "split": "train" - }, - { - "Input": "There are 250 vitamins in a bottle. Gil takes 12 vitamins per day. How many vitamins short of his usual 12 vitamins is Gil on the day the bottle runs out?", - "Output Program": [ - "ans=12-250%12\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Maddie, Luisa, and Amy counted their books. Maddie had 15 books. Luisa had 18 books. Together, Amy and Luisa had 9 more books than Maddie. How many books did Amy have?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Amy's books\n# (x+18)-15=9\nsolution=solve([(x+18)-15-9], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Chris has 18 soccer cards. His friend, Charlie, has 32 cards. How many fewer cards does Chris have?", - "Output Program": [ - "ans=32-18\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "For the championship game, they faced the powerful Red Team. Wanting redemption, Chuck and his teammates did their best and gave everything that they've got. In the end, they won the game with the final score of 95. If the Red Team scored 76 points, how large was the difference of their scores?", - "Output Program": [ - "ans=95-76\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Carol was helping her mom plant vegetables in the garden. Together they planted 6 rows of potatoes with 9 seeds in each row. How many potatoes did they plant total?", - "Output Program": [ - "ans=6*9\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "train" - }, - { - "Input": "There are 757 pounds of sand to be filled into bags. If each bag has a capacity of 65 pounds, how many bags are needed?", - "Output Program": [ - "ans=757//65+1\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "If you add 45 to a mystery number you will get 92. What is the mystery number?", - "Output Program": [ - "ans=92-45\nprint(ans)" - ], - "Output Answer": [ - "47" - ], - "split": "train" - }, - { - "Input": "Cody had nine old video games he wanted to get rid of. If he gave his friend four of the games, how many does he still have?", - "Output Program": [ - "ans=9-4\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Christian and his parents went to Mt. Falton National Park for the weekend. They were welcomed warmly by the rangers who invite volunteers and call them \"earth keepers\". The junior ranger asked Christian to help him place 420 seedlings in packets. If every packet needs to contain 7 seeds, how many packets do they need?", - "Output Program": [ - "ans=420/7\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "Input": "The length of a rectangular field is 75 meters. Its width is 15 meters. Sofie ran around the track 3 times. How far did she run?", - "Output Program": [ - "ans=3*(75+15+75+15)\nprint(ans)" - ], - "Output Answer": [ - "540" - ], - "split": "train" - }, - { - "Input": "Recently, the postal service sold stamps with famous people pictured on them. They sold 578,833 color stamps, as well as 523,776 black-and-white ones. About how many stamps did they sell?", - "Output Program": [ - "ans=578833+523776\nprint(ans)" - ], - "Output Answer": [ - "1102609" - ], - "split": "train" - }, - { - "Input": "Yoda Soda is the intergalactic party drink that will have all your friends saying, \"Mmmmmm, good this is!\" You are throwing a party, and you need 5 liters of Yoda Soda for every 12 guests. If you have 36 guests, how many liters of Yoda Soda do you need?", - "Output Program": [ - "ans=(5/12)*36\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Rosa is making a game board that is 16 inches by 24 inches. She wants to use square tiles. What is the largest tile she can use?", - "Output Program": [ - "import math\nans=math.gcd(16,24)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "The ratio of boys to girls at the basketball game is 8:5. There are 30 girls. How many more boys are there than girls?", - "Output Program": [ - "ans=48-30\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "An industrial machine made 196 shirts. If it made one minute to make 7 shirts, how many minutes was it working?", - "Output Program": [ - "ans=196/7\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "An event has 12 adults and 20 children. The event planner wants to make each table identical, with the same combination of adults and children and no people left over. What is the greatest number of tables the planner can set up?", - "Output Program": [ - "import math\nans=math.gcd(12,20)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt is baking bread. She needs 5 cups of flour to bake two loaves of bread. How much flour will she need to make one loaf of bread?", - "Output Program": [ - "ans=5/2\nprint(ans)" - ], - "Output Answer": [ - "2.5" - ], - "split": "train" - }, - { - "Input": "Rob also compared the Empire State Building and the Petronas Towers. What is the height difference between the two if the Empire State Building is 443 m tall and the Petronas Towers is 452 m tall?", - "Output Program": [ - "ans=452-443\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Emily was selling some of her old toys at a garage sale. She started out with seven toys and sold three of them. How many does she have left?", - "Output Program": [ - "ans=7-3\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "Alex had some candles for his Jack O'Lanterns. He used 32 of them. Now he has 12 left. How many candles did Alex have to start with?", - "Output Program": [ - "ans=32+12\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "train" - }, - { - "Input": "Lexie has a lot of art materials. She needs to organize all these materials into containers. She counted her crayons and found out that she has 80 crayons which she will place in crayon boxes. Every crayon box can contain 8 crayons. How many crayon boxes does she need?", - "Output Program": [ - "ans=80/8\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Millie had 9 bracelets. She lost 2 of them. How many bracelets does Millie have left?", - "Output Program": [ - "ans=9-2\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Last week Adam ran 25 miles more than Katie. Adam ran 35 miles. How many miles did Katie run?", - "Output Program": [ - "ans=35-25\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "A piece of plywood had a total area of 24 square feet, with a width of 6 feet. What is the length of the wood?", - "Output Program": [ - "ans=24/6\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "The ratio of boys to girls in a kindergarten is 2:3. If the number of boys is 12, find the number of girls.", - "Output Program": [ - "ans=(3/2)*12\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "The ratio of the area of a rectangle to the area of a triangle is 2:5. The rectangle has a length of 6 cm and a width of 4 cm. What is the area of the triangle?", - "Output Program": [ - "ans=(6*4)/2*5\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "Input": "This afternoon, Alec noticed that the number of the page assigned for homework is divisible by both 4 and 13. What is the smallest possible page number that could have been assigned?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([4,13])\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "train" - }, - { - "Input": "Lucy put sixty-eight shells in her bucket. She found some more shells and now she has eighty-nine shells. How many more did she find?", - "Output Program": [ - "ans=89-68\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Kaleb had sixty-seven cherries. After eating some, he had forty-two left. How many cherries did Kaleb eat?", - "Output Program": [ - "ans=67-42\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "train" - }, - { - "Input": "I want to plant 45 sunflower plants, 81 corn plants and 63 tomato plants in my garden. If I put the same number of plants in each row and each row has only one type of plant, what is the greatest number of plants I can put in one row?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(45,81),63)\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Two marbles are in the basket. Two marbles are taken out of the basket. How many marbles are in the basket now?", - "Output Program": [ - "ans=2-2\nprint(ans)" - ], - "Output Answer": [ - "0" - ], - "split": "train" - }, - { - "Input": "Robin bought 11 sodas for her and her friends. If they only drank 3 of them, how many extras did she have?", - "Output Program": [ - "ans=11-3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "John threw a Halloween party where 13 people showed up. If only 6 dressed up, how many people didn't wear costumes?", - "Output Program": [ - "ans=13-6\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "A group of 4 friends were playing video games. Later 3 more friends came over. How many people were there total?", - "Output Program": [ - "ans=4+3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "17 plums were in the basket. More plums were added to the basket. Now there are 21 plums. How many plums were added to the basket?", - "Output Program": [ - "ans=21-17\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "A number added with thrice a number is 20. Convert this statement into algebraic equations and find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# x+3x=20\nsolution=solve([x+3*x-20], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "A man bought a cow and a calf for $990, paying 8 times as much for the cow as for the calf. What was the cost of each?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of the cow; y:The cost of the calf\n# x+y=990; x=8y\nsolution=solve([x+y-990, x-8*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "110" - ], - "split": "train" - }, - { - "Input": "Shannon, Brenda's neighbor, joined Brenda in making bracelets. She brought 48 heart-shaped stones and wanted to have 8 of this type of stone in each of the bracelet she makes. How many bracelets with heart-shaped stones can Shannon make?", - "Output Program": [ - "ans=48/8\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "Mike played six games of basketball with his friends. If Mike scored four points each game, how many points did he score total?", - "Output Program": [ - "ans=6*4\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "train" - }, - { - "Input": "Sarah's team played 8 games of basketball. During those 8 games her team's score was: 69, 68, 70, 61, 74, 62, 65 and 74. What is the mean of the scores?", - "Output Program": [ - "ans=(69+68+70+61+74+62+65+74)/8\nprint(ans)" - ], - "Output Answer": [ - "67.9" - ], - "split": "train" - }, - { - "Input": "Faye's team won their baseball game and scored sixty-eight points total. If Faye scored twenty-eight of the points and everyone else scored eight points each, how many players were on her team?", - "Output Program": [ - "ans=(68-28)/8\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Haley collected 9 cans for recycling. If she put 7 cans in one bag, what's the difference between the number of recycling cans that Haley collected and put in the bag?", - "Output Program": [ - "ans=9-7\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "Christine has 11 stickers on her good helper chart. She needs 30 stickers to get a prize. How many more stickers does Christine need?", - "Output Program": [ - "ans=30-11\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "A video uploaded had 18 'up votes'. If the ratio of 'up votes' to 'down votes' was 9:2, how many 'down votes' did the video get?", - "Output Program": [ - "ans=(2/9)*18\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "The school is planning a field trip. There are 60 students and 10 seats on each school bus. How many buses are needed to take the trip?", - "Output Program": [ - "ans=60/10\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": "An island in the Pacific Ocean was 5 miles wide. It had a total area of 50 square miles. How long is the island?", - "Output Program": [ - "ans=50/5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "After the mountain country, she went to the famous beach on the continent. There, she collected 291 seashells of different colors. If she has 76 red shells and 49 green shells, how many shells are not red or green?", - "Output Program": [ - "ans=291-(76+49)\nprint(ans)" - ], - "Output Answer": [ - "166" - ], - "split": "train" - }, - { - "Input": "At the carnival, the ratio of people who won the ring toss game to lost it was 4:1. If 28 people won, how many people would have lost?", - "Output Program": [ - "ans=(1/4)*28\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Sam received eighty-seven dollars for his birthday. He went to a sporting goods store and bought a baseball glove, baseball, and bat. He had twenty-three dollars left over, how much did he spent on the baseball gear ?", - "Output Program": [ - "ans=87-23\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "Jenny was told to clean up her room in fourteen days or she could not go to her best friend's birthday party. It is three days left but Jenny has cleaned up her room. How many days did she spend?", - "Output Program": [ - "ans=14-3\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Denise has 210 crayons and 3 blocks. If she shares the crayons among 30 friends, how many crayons does each friend get?", - "Output Program": [ - "ans=210/30\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "The third graders are having a fair. They have 90 tickets to sell. They sold 38 tickets the first week and 17 tickets the second week. How many tickets do they have left to sell?", - "Output Program": [ - "ans=90-17-38\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "The path opened to a beautiful garden enclosed by a wall. The exit door will open when the number of white flowers is the same as the number of red flowers. If there are 555 white flowers and 347 red flowers, how many more red flowers are needed?", - "Output Program": [ - "ans=555-347\nprint(ans)" - ], - "Output Answer": [ - "208" - ], - "split": "train" - }, - { - "Input": "There were forty-eight people on the train. After the first stop there were thirty-one people left. How many people got off?", - "Output Program": [ - "ans=48-31\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "Some deer families are also moving out to avoid the shortage of grass that will result from occasional blizzards. If there are 79 deer families in the area and around 45 of them stayed, how many deer families moved out?", - "Output Program": [ - "ans=79-45\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "train" - }, - { - "Input": "They entered the circus tent and saw that there are four seating sections for the audience. If each section can accommodate 246 people, how many people can the tent accommodate in total?", - "Output Program": [ - "ans=4*246\nprint(ans)" - ], - "Output Answer": [ - "984" - ], - "split": "train" - }, - { - "Input": "Nancy was counting the number of people on different toys on the playground. She counted: 6, 12, 1, 12, 7, 3 and 8. What is the mean of the people?", - "Output Program": [ - "ans=(6+12+1+12+7+3+8)/7\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "An art museum had 15 pictures to split equally into 2 different exhibits. How many more pictures would they need to make sure each exhibit had the same amount?", - "Output Program": [ - "ans=15%2\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "An online toy store stocked some toys. It sold 38 toys at the first week and 26 toys at the second week. If it had 19 toys left, how many toys were in stock at the beginning?", - "Output Program": [ - "ans=38+26+19\nprint(ans)" - ], - "Output Answer": [ - "83" - ], - "split": "train" - }, - { - "Input": "The weight of 4 watermelons is 5 kg 200 g. The total weight of 3 such watermelons and 4 pineapples is 5 kg 700 g. How much heavier is a watermelon than a pineapple?", - "Output Program": [ - "ans=(5200/4)-((5700-(5200/4)*3)/4)\nprint(ans)" - ], - "Output Answer": [ - "850" - ], - "split": "train" - }, - { - "Input": "Tuition at the music school is $45 per person. There is a $15 discount for siblings. Ali and her brother, Matt, signed up for classes. How much will it cost for both children?", - "Output Program": [ - "ans=45*2-15\nprint(ans)" - ], - "Output Answer": [ - "75" - ], - "split": "train" - }, - { - "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": [ - "ans=48-11+21\nprint(ans)" - ], - "Output Answer": [ - "58" - ], - "split": "train" - }, - { - "Input": "The weight of 4 cakes is 800 g. The total weight of 3 cakes and 5 pieces of bread is 1 kg 100 g. How much heavier is a cake than a piece of bread?", - "Output Program": [ - "ans=(800/4)-((1100-(800/4)*3)/5)\nprint(ans)" - ], - "Output Answer": [ - "100" - ], - "split": "train" - }, - { - "Input": "Faye was placing her pencils into rows with eight pencils in each row. If she had thirty-two pencils, how many rows could she make?", - "Output Program": [ - "ans=32/8\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "There are 35 eggs in Margaret's egg collection. If the eggs are organized into 5 groups, how big is each group?", - "Output Program": [ - "ans=35/5\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Rita is buying flower bulbs for her garden. She wants to buy the same number of tulips and daffodils. If tulip bulbs come in packs of 15 and daffodil bulbs come in packs of 16, what is the least number of each type of bulb Rita will need to buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([15,16])\nprint(ans)" - ], - "Output Answer": [ - "240" - ], - "split": "train" - }, - { - "Input": "Lemon heads come in packages of 3. Patricia ate 15 Lemon Heads. How many Lemon Heads does she have left?", - "Output Program": [ - "ans=15%3\nprint(ans)" - ], - "Output Answer": [ - "0" - ], - "split": "train" - }, - { - "Input": "18 children were riding on the bus. At the bus stop, some more children got on the bus. Then there were 25 children altogether on the bus. How many children got on the bus at the bus stop?", - "Output Program": [ - "ans=25-18\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "On a Saturday, a library checked out 52 books. If 24 of the books were fiction, what is the ratio of non-fiction books to fiction books checked out?", - "Output Program": [ - "from fractions import Fraction\ndif=52-24\nfrac=Fraction(dif,24)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "7:6" - ], - "split": "train" - }, - { - "Input": "Megan gave seven acorns to her sister. Now Megan has nine acorns left. How many acorns did Megan have in the beginning?", - "Output Program": [ - "ans=7+9\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "Joe, Susie's brother, collected all 94 trading cards scattered in his room and placed them in boxes. If a full box can hold a maximum of 8 cards, how many boxes were fully filled?", - "Output Program": [ - "ans=94//8\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Sushi's father bought x lollipops. 5 were eaten by the the children. If 7 lollipops are left, how many lollipops did sushi's father bring?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Lollipops that Sushi's father bought\n# x=5+7\nsolution=solve([x-(5+7)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "The ratio of shoes sold to sandals sold was 9:5. If there were 72 shoes sold, how many sandals were sold?", - "Output Program": [ - "ans=(5/9)*72\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Mrs. Smith gave 53 strawberries to 8 girls equally. How many strawberries were left?", - "Output Program": [ - "ans=53%8\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Robert wants to practice goal kicks for soccer. He decides to have 98 kicks before going home from the park. He takes 43 kicks before taking a break to get a drink of water. He then takes another 36 kicks. How many more kicks does he need to make before he goes home?", - "Output Program": [ - "ans=98-43-36\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Lastly, Andrew tried to compute his expenses for the game night. If he spent $9.00 for each game they played and they played a total of 5 games, how much money did he spend that night?", - "Output Program": [ - "ans=9*5\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "Susie and her sister gathered all 98 of their teddy bears and placed them on the shelves in their bedroom. If every shelf can carry a maximum of 7 teddy bears, how many shelves will be filled?", - "Output Program": [ - "ans=98/7\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "Mrs. Hilt spent 74 cents at the school store. She bought a notebook for 35 cents, a ruler for 18 cents, and 3 pencils. What is the cost of one pencil?", - "Output Program": [ - "ans=(74-(35+18))/3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "If one round costs $80, how many rounds of golf can you play with $400?", - "Output Program": [ - "ans=400/80\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Connie has 323 marbles. Juan has 175 more marbles than Connie. How many marbles does Juan have?", - "Output Program": [ - "ans=323+175\nprint(ans)" - ], - "Output Answer": [ - "498" - ], - "split": "train" - }, - { - "Input": "A washing machine can wash 28 pounds of clothes per day. If there are 200 pounds of clothes to be washed per day, how many washing machines are needed?", - "Output Program": [ - "ans=200//28+1\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Your local radio station is having their yearly music player and concert ticket giveaway. For one minute, every 5th caller will win a music player and every 7th caller will win concert tickets. You were just the first caller to win both a music player and concert tickets! What number caller were you?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([5,7])\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "Emily was helping her mom pick apples from the tree in their front yard. Together they picked fourteen totals. If six of the apples weren't ripe yet, how many good apples did they pick?", - "Output Program": [ - "ans=14-6\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Jane has 28 old, brown sheets of drawing paper and 27 old, yellow sheets of drawing paper. How many pieces of drawing paper does she have?", - "Output Program": [ - "ans=28+27\nprint(ans)" - ], - "Output Answer": [ - "55" - ], - "split": "dev" - }, - { - "Input": "Sean is playing Monopoly with his friends. He already has 27 houses. Sean traded in 8 houses for money to buy Park Place. He collected so much rent that he decided to buy 12 more houses. How many houses did Sean have then?", - "Output Program": [ - "ans=27-8+12\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "dev" - }, - { - "Input": "The coach bought 2 extra large pizzas for the team. There were 32 slices of pizza totally. After the team ate some of the slices, there were 7 slices left. How many slices of pizza did the team eat?", - "Output Program": [ - "ans=32-7\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": "Susan started her homework at 1:59 p.m. and finished her homework 96 minutes later. Susan had volleyball practice at 4:00 p.m. How much time did Susan have between finishing her homework and the beginning of volleyball practice?", - "Output Program": [ - "ans=4*60-((1*60+59)+96)\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": "An envelope from the post office is 6 inches wide with a total area of 36 square inches. What is the height of the envelope?", - "Output Program": [ - "ans=36/6\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Olivia had eighty-one pieces of paper in her folder. She used fifty-six pieces. How many pieces does she have now?", - "Output Program": [ - "ans=81-56\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": "Bianca wanted to drink exactly 5 bottles of water each day, so she bought 47 bottles when they were on sale. How many more bottles will she need to buy on the last day?", - "Output Program": [ - "ans=5-47%5\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "Edward was playing basketball with his friend. Together they scored 13 points. If Edward scored 7 of the points. How many points did his friend score?", - "Output Program": [ - "ans=13-7\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "The next museum on her list is the Guggenheim in New York as well. There she gave 51 sets of Egyptian mask from her collection of 90. How many sets of masks were left in Alicia's collection?", - "Output Program": [ - "ans=90-51\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt met 15 friends. Nine of the friends were carrying pears. The rest were carrying oranges. How many friends were carrying oranges?", - "Output Program": [ - "ans=15-9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Sum of a number and 15 is 96. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# x+15=96\nsolution=solve([x+15-96], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "81" - ], - "split": "dev" - }, - { - "Input": "Sammy has 9 math problems to do for homework. He has already finished 2 of them. How many math problems does Sammy have left?", - "Output Program": [ - "ans=9-2\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "A pet store had sixty-eight gerbils. If they sold fourteen of them, what's the difference between the number of gerbils that they had before selling and they sold?", - "Output Program": [ - "ans=68-14\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "dev" - }, - { - "Input": "Hay's Linens sells hand towels in sets of 17 and bath towels in sets of 6. If the store sold the same number of each this morning, what is the smallest number of each type of towel that the store must have sold?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([17,6])\nprint(ans)" - ], - "Output Answer": [ - "102" - ], - "split": "dev" - }, - { - "Input": "Dave was organizing his baseball cards in a binder with eight on each page. If he had three new cards and thirteen old cards to put in the binder, how many pages would he use?", - "Output Program": [ - "ans=(3+13)/8\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "Mike and his brother Joe found a map leading to a buried treasure in an unknown island so they decided to go on a treasure hunt. After decoding the clues on the map, they found out that they need to go to the Island of Mysteries. To get there, they could either take a plane for $600.00 or a boat for $254.00. How much money can they save if they took a boat to the island?", - "Output Program": [ - "ans=600-254\nprint(ans)" - ], - "Output Answer": [ - "346" - ], - "split": "dev" - }, - { - "Input": "There were 36 dogs and 29 cats in a pet center. After 20 of the dogs were adopted by people, the pet center collected another 12 cats. How many pets were there in the pet center in the end?", - "Output Program": [ - "ans=36+29-20+12\nprint(ans)" - ], - "Output Answer": [ - "57" - ], - "split": "dev" - }, - { - "Input": "Kristen notices an identical number of two types of insects in her neighborhood: butterflies and fireflies. She always seems to observe butterflies in groups of 44 and fireflies in groups of 17. What is the smallest number of butterflies that she could have seen?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([44,17])\nprint(ans)" - ], - "Output Answer": [ - "748" - ], - "split": "dev" - }, - { - "Input": "Morris observed two types of birds traveling: ducks and cranes. While the ducks traveled in flocks of 13, the cranes traveled in flocks of 17. If Morris observed the same total number of ducks and cranes, what is the smallest number of ducks that he could have observed?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([13,17])\nprint(ans)" - ], - "Output Answer": [ - "221" - ], - "split": "dev" - }, - { - "Input": "Last Saturday, Marie sold 425 magazines and 275 newspapers. What is the total number of reading materials she sold?", - "Output Program": [ - "ans=425+275\nprint(ans)" - ], - "Output Answer": [ - "700" - ], - "split": "dev" - }, - { - "Input": "Magellan has decided to make party baskets for the fund raiser. Balloons are sold in bags of 20, party horns are sold in bags of 10, and there are 8 candy bars in a package. How many of each should he buy so there are an equal number of balloons, horns and candy bars in each basket?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([20,10,8])\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "One of his favorites is a book called Encyclopedia of Life and Everything Else. The book has 7 large chapters, each having 566 pages. How many pages does the encyclopedia have in total?", - "Output Program": [ - "ans=7*566\nprint(ans)" - ], - "Output Answer": [ - "3962" - ], - "split": "dev" - }, - { - "Input": "While playing basketball Team A scored 18 points. If each person scored 2 points, how many people were playing?", - "Output Program": [ - "ans=18/2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Debby bought 355 bottles of water when they were on sale. If she drank 5 bottles a day, how many days would they last her?", - "Output Program": [ - "ans=355/5\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "dev" - }, - { - "Input": "There are 16 bicycles and 7 tricycles in the storage area at Braden's apartment building. Each bicycle has 2 wheels and each tricycle has 3 wheels. How many wheels are there in all?", - "Output Program": [ - "ans=(2*16)+(3*7)\nprint(ans)" - ], - "Output Answer": [ - "53" - ], - "split": "dev" - }, - { - "Input": "Rupert and Ronald aced their math test. So their mother bought for them a wonderful trampoline yesterday. Ronald jumped 157 times on the trampoline. Rupert jumped 86 more times than Ronald. How many times did they jump altogether?", - "Output Program": [ - "ans=(157+86)+157\nprint(ans)" - ], - "Output Answer": [ - "400" - ], - "split": "dev" - }, - { - "Input": "At the arcade Dave spent forty-three tickets on stuffed tiger. Then he had fifty-five left. How many tickets did Dave have to start with?", - "Output Program": [ - "ans=43+55\nprint(ans)" - ], - "Output Answer": [ - "98" - ], - "split": "dev" - }, - { - "Input": "Lizette has 813 stamps. She has 125 more stamps than Minerva. How many stamps does Minerva have?", - "Output Program": [ - "ans=813-125\nprint(ans)" - ], - "Output Answer": [ - "688" - ], - "split": "dev" - }, - { - "Input": "Veronica is making emergency-preparedness kits to share with friends. She has 20 bottles of water and 12 cans of food, which she would like to distribute equally among the kits, with nothing left over. What is the greatest number of kits Veronica can make?", - "Output Program": [ - "import math\nans=math.gcd(20,12)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "It is Buddy's first day at a new school and he is feeling very nervous. His day begins with some bacon and egg prepared by his mother. After eating and preparing, Buddy headed out to catch the school bus from the nearest bus stop. Including Buddy, there were 39 students that got on the bus during the first stop. If 29 more students got on the bus at the second stop, how many students are riding the bus?", - "Output Program": [ - "ans=39+29\nprint(ans)" - ], - "Output Answer": [ - "68" - ], - "split": "dev" - }, - { - "Input": "Will went to the state fair and rode the Ferris wheel thirteen times. If he rode it seven times during the day, how many times did he ride it at night?", - "Output Program": [ - "ans=13-7\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Joe, one of the best Easter egg hunters, found 12 eggs around the club house, 5 eggs around the park and 3 eggs in the town hall garden. How many eggs did Joe find?", - "Output Program": [ - "ans=12+5+3\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "dev" - }, - { - "Input": "She then went to three orphanages and donated a total of $650.00. If she gave $175.00 to the first orphanage and $250.00 to the third, how much did she donate to the second orphanage?", - "Output Program": [ - "ans=650-(175+250)\nprint(ans)" - ], - "Output Answer": [ - "225" - ], - "split": "dev" - }, - { - "Input": "Chris has been saving his allowance to buy a new pair of soccer cleats and a ball. His grandmother gave him $25 for his birthday. His aunt and uncle gave him $20 and his parents gave him $75. Now he had $279. How much money did he have before his birthday?", - "Output Program": [ - "ans=279-25-20-75\nprint(ans)" - ], - "Output Answer": [ - "159" - ], - "split": "dev" - }, - { - "Input": "There were 58 geese and 37 ducks in the marsh. How many birds were there in all?", - "Output Program": [ - "ans=58+37\nprint(ans)" - ], - "Output Answer": [ - "95" - ], - "split": "dev" - }, - { - "Input": "An island in the Indian Ocean was 4 miles wide and 7 miles long. What is the perimeter of the island?", - "Output Program": [ - "ans=(4+7)*2\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": "A family is preparing backpacks filled with school supplies to donate to children in need. They have 9 pencils and 15 notebooks. If they want to make all the backpacks the same, with no school supplies left over, what is the greatest number of backpacks they can fill?", - "Output Program": [ - "import math\nans=math.gcd(9,15)\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "Cade had 87 marbles. He gave 8 to Dylan. How many does he have left?", - "Output Program": [ - "ans=87-8\nprint(ans)" - ], - "Output Answer": [ - "79" - ], - "split": "dev" - }, - { - "Input": "I put another number into my machine. The machine added 15 and then subtracted 6. The number 35 came out of the machine. What number did I put in?", - "Output Program": [ - "ans=35+6-15\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "dev" - }, - { - "Input": "Alvin is trying to build a small house in the forest so that he has a place to stay whenever he goes hunting. He started by gathering some wood. According to his blueprint, he will need 376 pieces of wood. If his friend gave him 123 pieces and his brother gave him 136 pieces, how many more wood does he need to gather?", - "Output Program": [ - "ans=376-123-136\nprint(ans)" - ], - "Output Answer": [ - "117" - ], - "split": "dev" - }, - { - "Input": "For finishing touches, he needed 70 gallons of paint. If he bought 23 gallons to add to his existing 36 gallons of paint, how much more paint will he need?", - "Output Program": [ - "ans=70-23-36\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "dev" - }, - { - "Input": "It takes 4 feet of cotton to make a tee-shirt. How many tee-shirts can be made with 60 feet of material?", - "Output Program": [ - "ans=60/4\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "On the first Saturday of spring, Jane woke up early to enjoy the whole day and help with chores at home. Jane had been saving large empty cans to serve as pots for sunflowers. If she has 54 sunflower seeds and there are 9 cans, how many seeds will be placed in each can if she places an equal number of seeds in each can?", - "Output Program": [ - "ans=54/9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Each side of a square kitchen tile is 7 inches long. What is the tile's area?", - "Output Program": [ - "ans=7*7\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "dev" - }, - { - "Input": "After the cleaning the rivers they went on to tidy up the farmlands. If Lizzie's group covered 250 square feet of land and the other group covered 265, how many more square feet of land remains to be cleaned if there is total of 900 square feet of land?", - "Output Program": [ - "ans=900-(250+265)\nprint(ans)" - ], - "Output Answer": [ - "385" - ], - "split": "dev" - }, - { - "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 67 bird families living near the mountain. If 32 bird families flew away for winter, how many bird families were left near the mountain?", - "Output Program": [ - "ans=67-32\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "dev" - }, - { - "Input": "A fast food restaurant had ninety-nine hotdogs. After selling some they had ninety-seven left. How many hotdogs did they sell?", - "Output Program": [ - "ans=99-97\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "A delivery driver had to make three more stops on his route. At each stop he had to drop off nine boxes. How many boxes does he have?", - "Output Program": [ - "ans=3*9\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt bought 2 pizzas. Each pizza had 8 slices. How many total slices of pizza did she have?", - "Output Program": [ - "ans=8+8\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "Bob who is Sam's next door neighbor decided that he will accompany Sam home. He also took his share which consists of 15 chewing gums, 20 chocolate bars and 15 assorted candies. How many candies did he get?", - "Output Program": [ - "ans=15+20+15\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "dev" - }, - { - "Input": "Being his favorite, Michael has 4 times more flying robots than Tom. If Tom has 3 flying robots, how many flying robots does Michael have?", - "Output Program": [ - "ans=4*3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "Isabella's hair is 18 cubes long. If her hair grows 4 more inches, how long will it be?", - "Output Program": [ - "ans=18+4\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": "Maria took sixteen fish out of her fish tank. Now there are three fish in the tank. How many fish were in the tank to start with?", - "Output Program": [ - "ans=16+3\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "Danny collects bottle caps. He found 18 bottle caps at the park. Now he has 55 bottle caps in his collection. How many bottle caps did Danny have at first?", - "Output Program": [ - "ans=55-18\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "dev" - }, - { - "Input": "Tom used 2 batteries on his flashlights, 15 in his toys and 2 in his controllers. What's the difference between the number of Tom's batteries on flashlights and in toys?", - "Output Program": [ - "ans=15-2\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Andrew's 4 friends decided to bring food as well. If each of them brought 4 slices of pizza, how many slices of pizza do they have in total?", - "Output Program": [ - "ans=4*4\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "The group then went on to check out the houses along Broadway Street and the scary Werewolf Avenue. After the long walk, they decided to count their candy again. If Mary has 5 chewing gums, Sam has 10 chewing gums and Sue has 15 chewing gums, how many chewing gums did the three have in all?", - "Output Program": [ - "ans=5+10+15\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "Mom made 32 chocolate chip cookies. It took 24 minutes to mix the ingredients and 16 minutes to bake. Julie and Matt ate 9 cookies after dinner. How many cookies were left?", - "Output Program": [ - "ans=32-9\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "dev" - }, - { - "Input": "Jason and Lexi are shelving books at a public library. Jason shelves 6 books at a time, whereas Lexi shelves 17 at a time. If they end up shelving the same number of books, what is the smallest number of books each could have shelved?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([6,17])\nprint(ans)" - ], - "Output Answer": [ - "102" - ], - "split": "dev" - }, - { - "Input": "After agreeing that the school menu needs to be changed, they had a vote for food suggestions. If 337 voted to add more veggies to the menu and 335 voted to add more meat, how many students voted?", - "Output Program": [ - "ans=337+335\nprint(ans)" - ], - "Output Answer": [ - "672" - ], - "split": "dev" - }, - { - "Input": "67 medals are displayed in the sports center. There are 19 gold medals and 32 silver medals. How many bronze medals are displayed?", - "Output Program": [ - "ans=(67-19)-32\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "Tom had $19 and he wanted to buy as many folders as he could. If one folder costs $2, how much is left after he bought the folders?", - "Output Program": [ - "ans=19%2\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "dev" - }, - { - "Input": "There were 44 laptops in the shop, and Mike divided them equally into 5 rows. How many laptops are there in each row?", - "Output Program": [ - "ans=44//5\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "The wings now need to be heated. If the oven is at 150 degrees and the required temperature is 546 degrees, how many more degrees does the oven temperature need to increase?", - "Output Program": [ - "ans=546-150\nprint(ans)" - ], - "Output Answer": [ - "396" - ], - "split": "dev" - }, - { - "Input": "The difference between one-third of a number and 5 is 10. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# (1/3)*x-5=10\nsolution=solve([(1/3)*x-5-10], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "dev" - }, - { - "Input": "We ordered 21 pizzas. Each pizza has 8 slices. How many slices of pizza are there altogether?", - "Output Program": [ - "ans=21*8\nprint(ans)" - ], - "Output Answer": [ - "168" - ], - "split": "dev" - }, - { - "Input": "It is 78 miles to Grandma's house. Mr. Welch drove 35 miles. He stopped to buy a pie for dessert. Then he drove 18 miles and stopped to put gas in the car. How many more miles until he reaches Grandma's house?", - "Output Program": [ - "ans=78-35-18\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": "Maria was buying DVDs of her old favorite TV series. She bought eight DVDs at the store and she bought two online. How many DVDs did she buy total?", - "Output Program": [ - "ans=8+2\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "dev" - }, - { - "Input": "A movie store had nine hundred ninety-nine movies they were putting on five shelves. If the owner wanted to make sure each shelf had the same number of movies, how many more movies would he need?", - "Output Program": [ - "ans=5-999%5\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "dev" - }, - { - "Input": "Charles was curious about Greek mythology and so he read 8 pages a day of a 96-page book entitled \"Greek Mythology: Fast Facts.\" How many days did it take Charles to finish the book?", - "Output Program": [ - "ans=96/8\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "He also made some juice from fresh oranges. If he used 2 oranges per glass of juice and he made 6 glasses of juice, how many oranges did he use?", - "Output Program": [ - "ans=2*6\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "Kim sold 54 boxes of Girl Scout cookies. Jennifer sold 17 more boxes than Kim. How many boxes of cookies did Jennifer sell?", - "Output Program": [ - "ans=54+17\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "dev" - }, - { - "Input": "Jane can arrange 16 vases of flowers in a day. If there are 248 vases of flowers to be arranged, how many days are needed for her to finish all the flower arrangements?", - "Output Program": [ - "ans=248//16+1\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "It takes 4 ounces of cheese to make a burrito and 9 ounces for a taco. If you wanted 7 burritos and 1 taco, how many ounces of cheese would you need?", - "Output Program": [ - "ans=(7*4)+(1*9)\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "dev" - }, - { - "Input": "The teacher gave 29 gold stickers to the first student, 35 gold stickers to the second student, 41 gold stickers to the third student, 47 gold stickers to the fourth student, and 53 gold stickers to the fifth student. If this pattern continues, how many gold stickers will the teacher give to the sixth student?", - "Output Program": [ - "lst=[29,35,41,47,53,59]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "dev" - }, - { - "Input": "To make sure that the cake is sweet, he needs 450 lbs. of sugar. If he has 287 lbs. of sugar stored in his house, how much additional sugar will he need?", - "Output Program": [ - "ans=450-287\nprint(ans)" - ], - "Output Answer": [ - "163" - ], - "split": "dev" - }, - { - "Input": "Warren has 252 guests coming to his party. Each table will hold 4 guests. How many tables will he need?", - "Output Program": [ - "ans=252/4\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "dev" - }, - { - "Input": "Two bicycle enthusiasts are leaving Cincinnati at the same time. One is biking 840 miles to Boston. The other is biking 440 miles to Atlanta. What is the greatest number of miles a day each can bike if they want to cover equal distances each day?", - "Output Program": [ - "import math\nans=math.gcd(840,440)\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "Marin has nine apples and Donald has two apples. How many apples do Marin and Donald have together?", - "Output Program": [ - "ans=9+2\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "dev" - }, - { - "Input": "Marian baked bread, cookies and pastries one Saturday at home for her family and friends this holiday season. She made 47 gingerbread cookies which she will distribute equally in tiny glass jars. If each jar is to contain six cookies each, how many cookies will not be placed in a jar?", - "Output Program": [ - "ans=47%6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Two angles of a triangle are the same size. The third angle is 3 times as large as the first. How large are the angles?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The first angle of a triangle; y:The second angle of a triangle\n# x=y; 180-(x+y)=3x\nsolution=solve([x-y, 180-(x+y)-3*x], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "dev" - }, - { - "Input": "A 6 ft board is cut into two pieces, one twice as long as the other. How long are the pieces?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The longer piece; y:The shorter piece\n# x+y=6; x=2y\nsolution=solve([x+y-6, x-2*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "At a farming supply store 2 pounds of seed cost $44.68. If a farmer needed 6 pounds of seeds, how much would it cost him?", - "Output Program": [ - "ans=(44.68/2)*6\nprint(ans)" - ], - "Output Answer": [ - "134.04" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt gave 2 pieces of candy to each student in the group. The group had a total of 9 students in it. How many pieces of candy did Mrs. Hilt give away?", - "Output Program": [ - "ans=2+2+2+2+2+2+2+2+2\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "dev" - }, - { - "Input": "A book had a length of 2 inches and a width of 3 inches. What is the area of the book?", - "Output Program": [ - "ans=2*3\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Ed had 22 more marbles than Doug. Doug lost 8 of his marbles at the playground. How many more marble did Ed have than Doug then?", - "Output Program": [ - "ans=22+8\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "There are 32 forwards and 80 guards in Leo's basketball league. Leo must include all players on a team and wants each team to have the same number of forwards and the same number of guards. If Leo creates the greatest number of teams possible, how many guards will be on each team?", - "Output Program": [ - "import math\ngcd=math.gcd(32,80)\nans=80/gcd\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Beth has 106 crayons. She gives 54 of them away to Jen. How many crayons does Beth have left?", - "Output Program": [ - "ans=106-54\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "dev" - }, - { - "Input": "Richard and Bruno played miniature golf. Richard's score was 62. Bruno's score was 14 points lower than Richard's score. What was Bruno's score?", - "Output Program": [ - "ans=62-14\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "dev" - }, - { - "Input": "Lindsey has 16 cans of regular soda and 8 cans of diet soda. She wants to create some identical refreshment tables that will operate during the football game. She also doesn't want to have any sodas left over. What is the greatest number of refreshment tables that Lindsey can stock?", - "Output Program": [ - "import math\nans=math.gcd(16,8)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "On the first day of the week Pat had 39 stickers. Pat earned 22 more during the week. How many stickers did Pat have at the end of the week?", - "Output Program": [ - "ans=39+22\nprint(ans)" - ], - "Output Answer": [ - "61" - ], - "split": "dev" - }, - { - "Input": "Rose bought a blouse at a discount of 18% for 147.60. What was the marked price of the blouse?", - "Output Program": [ - "ans=147.6/(1-0.18)\nprint(ans)" - ], - "Output Answer": [ - "180" - ], - "split": "dev" - }, - { - "Input": "Thrice the sum of a number and 2 equals 24 added with the same number. Write algebraic equation and find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# 3*(x+2)=24+x\nsolution=solve([3*(x+2)-(24+x)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "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": [ - "ans=(13+17)-15\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "At a party, the cheese pizza is cut into 6 slices and the veggie pizza is cut into 12 slices. If the host wants to serve identical platters that contain the same combination of cheese and veggie slices, with no slices left over, what is the greatest number of platters the host can prepare?", - "Output Program": [ - "import math\nans=math.gcd(6,12)\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "The little league stadium has 92 seats. 47 people came to the game today. 38 people were holding banners. How many seats were empty?", - "Output Program": [ - "ans=92-47\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "dev" - }, - { - "Input": "650 lollipops are to be distributed to 42 kids. If all the kids share all of the lollipops equally, at least how many more lollipops are needed?", - "Output Program": [ - "ans=42-650%42\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": "Zach scored 42 points in the football game. Ben scored 21 points. How many more points did Zach score?", - "Output Program": [ - "ans=42-21\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "dev" - }, - { - "Input": "He also had 8 aquariums for saltwater animals. Each aquarium has 64 animals in it. How many saltwater animals does Tyler have?", - "Output Program": [ - "ans=8*64\nprint(ans)" - ], - "Output Answer": [ - "512" - ], - "split": "dev" - }, - { - "Input": "Paige's dresser drawers could hold 2 pieces of clothing each. If she had 4 drawers, how many pieces of clothing could it hold?", - "Output Program": [ - "ans=2*4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Students from Flora Middle School were asked to participate in the event. They planted 47 apple trees and 27 orange trees in the forest near their school. How many trees in total did the students plant?", - "Output Program": [ - "ans=47+27\nprint(ans)" - ], - "Output Answer": [ - "74" - ], - "split": "dev" - }, - { - "Input": "A fast food restaurant sold fifty-eight small hotdogs and twenty-one large hotdogs. How many hotdogs did they sell total?", - "Output Program": [ - "ans=58+21\nprint(ans)" - ], - "Output Answer": [ - "79" - ], - "split": "dev" - }, - { - "Input": "532 people are watching a movie in a theater. The theater has 750 seats. How many seats are empty in the theater?", - "Output Program": [ - "ans=750-532\nprint(ans)" - ], - "Output Answer": [ - "218" - ], - "split": "dev" - }, - { - "Input": "A student finished 45 of her homework problems in class. If the ratio of problems she finished to problems she still had left was 9:4, how many homework problems did she have total?", - "Output Program": [ - "ans=(13/9)*45\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "dev" - }, - { - "Input": "Three paper bags contain a total of 24 apples. The first and second bags contain a total of 11 apples. The second and third bags contain a total of 18 apples. How many apples are in the first and third bags together?", - "Output Program": [ - "ans=(24-11)+(24-18)\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "John bought some cupcakes for a party. During the party eleven were eaten. Now he has twenty-one left. How many cupcakes did John get for the party?", - "Output Program": [ - "ans=11+21\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "dev" - }, - { - "Input": "Ronald has 16 eggs and 3 candies. If he shares the eggs among 8 friends, how many eggs does each friend get?", - "Output Program": [ - "ans=16/8\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "Sam cut equal-length pieces of ribbon from a 3,730-cm long ribbon. If each piece was 73 cm long, how many 73 cm pieces of ribbon did Sam make?", - "Output Program": [ - "ans=3730//73\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "dev" - }, - { - "Input": "Eddie is thinking of a number that is divisible by both 8 and 5. What is the smallest possible number that Eddie could be thinking of?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([8,5])\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "A farmer had seventeen tomatoes from his garden. If he picked nine of them, what's the difference between the number of tomatoes before picking and he picked?", - "Output Program": [ - "ans=17-9\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Vice-mayor Alexander wanted to join in with the mayor's advocacy. He organized a party and invited the whole city to attend. If he hired 5 caterers having 50 employees each, how many people are working for the party?", - "Output Program": [ - "ans=5*50\nprint(ans)" - ], - "Output Answer": [ - "250" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt ran 3 miles on Monday, 2 miles on Wednesday, and 7 miles on Friday. How many total miles did she run that week?", - "Output Program": [ - "ans=3+2+7\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "The treehouse is almost done; all they need is to paint it. His father estimated that they will use 20 ounces of white paint, 15 ounces of green paint and 34 ounces of brown paint. How many ounces of paint would they buy in total?", - "Output Program": [ - "ans=20+15+34\nprint(ans)" - ], - "Output Answer": [ - "69" - ], - "split": "dev" - }, - { - "Input": "Tiffany had six pages of math homework and four pages of reading homework. If each page had three problems on it, how many problems did she have to complete total?", - "Output Program": [ - "ans=(6+4)*3\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "Melody printed 53 identical snowman drawings. If she was able to prepare cards with 4 identical snowman drawings each, how many cards was she able to prepare?", - "Output Program": [ - "ans=53//4\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Being concerned with the ecology of lakes, Hazel and her dad returned the youngling fishes they caught. If they took 23 fishes from Lake Ontario and Erie, 30 fishes from Lake Huron and Michigan and 44 from Lake Superior, how many fishes will they bring home with them?", - "Output Program": [ - "ans=23+30+44\nprint(ans)" - ], - "Output Answer": [ - "97" - ], - "split": "dev" - }, - { - "Input": "Joe had fifty toy cars. If he gets twelve more cars, how many cars will he have then?", - "Output Program": [ - "ans=50+12\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "dev" - }, - { - "Input": "If twice the son's age is added to the father's, the sum is 70. But if twice the father's age is added to the son's age, the sum is 95. Find the ages of father and son.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The father's age; y:The son's age\n# 2y+x=70; 2x+y=95\nsolution=solve([2*y+x-70, 2*x+y-95], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "Oliver was weighing boxes for moving. The first was 2 pounds, the second was 3 pounds and the last was 13 pounds. What's the difference between the weight of the first box and the third box?", - "Output Program": [ - "ans=13-2\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "dev" - }, - { - "Input": "Sharon has seven plums. Allan has 10 plums. What's the difference of the number of Sharon's plums and Allan's plums?", - "Output Program": [ - "ans=10-7\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "At the end of the party, Mona gave away some souvenirs to her 6 closest friends. If each of them received 2 souvenir items, how many souvenirs did Mona give away?", - "Output Program": [ - "ans=6*2\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "At the arcade Debby spent 2 tickets on a hat, 10 on a stuffed animal and 2 on a yoyo. How many tickets did she spend total?", - "Output Program": [ - "ans=2+10+2\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "dev" - }, - { - "Input": "Lexie's younger brother helped pick up all the paper clips in Lexie's room. He was able to collect 81 paper clips. If he wants to distribute the paper clips in 9 boxes, how many paper clips will each box contain?", - "Output Program": [ - "ans=81/9\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Finn has 89 goldfish. 32 of the goldfish die. How many goldfish are left?", - "Output Program": [ - "ans=89-32\nprint(ans)" - ], - "Output Answer": [ - "57" - ], - "split": "dev" - }, - { - "Input": "Katie was selling her necklaces at a garage sale. She sold four bead necklaces and three gem stone necklaces. If each necklace cost three dollars, how much money did she earn?", - "Output Program": [ - "ans=(4+3)*3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "dev" - }, - { - "Input": "Adam had 91 dollars. If he spent 21 dollars on new books, what is the ratio of money he still has to money he's spent?", - "Output Program": [ - "from fractions import Fraction\ndif=91-21\nfrac=Fraction(dif,21)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "10:3" - ], - "split": "dev" - }, - { - "Input": "Harry Hound had a terrible earache yesterday. When I peered into his ears yesterday, I found 36 frisky fleas having a party in his right ear and 85 baby fleas sleeping peacefully in his left ear. I cleaned out Harry Hound's ears. How many fleas perished?", - "Output Program": [ - "ans=36+85\nprint(ans)" - ], - "Output Answer": [ - "121" - ], - "split": "dev" - }, - { - "Input": "Melissa scored 120 points in each game. How many points did she score in 10 games?", - "Output Program": [ - "ans=120*10\nprint(ans)" - ], - "Output Answer": [ - "1200" - ], - "split": "dev" - }, - { - "Input": "At the gym, Hillary swims every 6 days, runs every 4 days and cycles every 16 days. If she did all three activities today, in how many days will she do all three activities again on the same day?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([6,4,16])\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "dev" - }, - { - "Input": "Wendy bought 84 inches of ribbon. She used 46 inches to wrap presents. How much ribbon did Wendy have left?", - "Output Program": [ - "ans=84-46\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "dev" - }, - { - "Input": "If Simon needs to make 519 gift bags at a rate of 42 bags per day, how many gift bags will he make on the last day?", - "Output Program": [ - "ans=519%42\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "Sara has 16 red flowers and 24 yellow flowers. She wants to make bouquets with the same number of each color flower in each bouquet. What is the greatest number of bouquets she can make?", - "Output Program": [ - "import math\nans=math.gcd(16,24)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Daniel has 44 commemorative plates and 33 commemorative spoons. He wants to display them in groups throughout his house, each with the same combination of plates and spoons, with none left over. What is the greatest number of groups Daniel can display?", - "Output Program": [ - "import math\nans=math.gcd(44,33)\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "dev" - }, - { - "Input": "Olivia had 11 quarters. If she spent 4 of them buying a soda, how many coins did she have left?", - "Output Program": [ - "ans=11-4\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "Cody counted the number of times people sharpened their pencils in class for a week. He counted: 13, 8, 13, 21, 7 and 23. What is the mean of the numbers?", - "Output Program": [ - "ans=(13+8+13+21+7+23)/6\nprint(ans)" - ], - "Output Answer": [ - "14.2" - ], - "split": "dev" - }, - { - "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": [ - "ans=(17+32)-10\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "dev" - }, - { - "Input": "Marian also baked oatmeal cookies for her classmates. If she can place 12 cookies on a tray at a time, how many trays will she need to prepare 276 oatmeal cookies at a time?", - "Output Program": [ - "ans=276/12\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "dev" - }, - { - "Input": "Lukas averages 12 points per game in basketball. How many points would he score in 5 games?", - "Output Program": [ - "ans=12*5\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "dev" - }, - { - "Input": "Ned was helping the cafeteria workers pick up lunch trays, but he could only carry eight trays at a time. If he had to pick up twenty-seven trays from one table and five trays from another, how many trips will he make?", - "Output Program": [ - "ans=(5+27)/8\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "Kaleb was playing 'Connect Four' with a friend. The ratio of games he won to games he lost was 3:2, if he won 18 games, how many games did they play total?", - "Output Program": [ - "ans=(5/3)*18\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "Jasmine also bought some chips for her friends in which she got for a discount of $17.00. If the chips originally cost $35.00, how much did she actually spend on chips?", - "Output Program": [ - "ans=35-17\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "dev" - }, - { - "Input": "Jessica wants of make a garland out of 8 roses, 12 daisies and 48 marigolds. How many arrangements can she make with those flowers so that, there is no flower left.", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(8,12),48)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "There are 13 different books in the 'Crazy Silly School' series. If you read 9 of the books, how many more do you still have to read?", - "Output Program": [ - "ans=13-9\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "Kelly had 56 apples. How many more apples does Kelly need to pick to have 105 apples altogether?", - "Output Program": [ - "ans=105-56\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "dev" - }, - { - "Input": "Bert runs 2 miles every day. How many miles will Bert run in 3 weeks?", - "Output Program": [ - "ans=(3*7)*2\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "dev" - }, - { - "Input": "A chef used fifteen apples to make a pie. Now he has four apples left. How many apples did he have before he made the pie?", - "Output Program": [ - "ans=15+4\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "Kathleen is a dental sales representative who wants to distribute 18 brochures and 12 pamphlets to local dental offices. She wants to deliver the same combination of brochures and pamphlets to each office, without having any materials left over. What is the greatest number of dental offices Kathleen can distribute materials to?", - "Output Program": [ - "import math\nans=math.gcd(18,12)\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Amy has 67 balloons. 29 of them are red and 17 are green. The rest of the balloons are blue. How many blue balloons does Amy have?", - "Output Program": [ - "ans=67-29-17\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "dev" - }, - { - "Input": "Rob has seven quarters, three dimes, five nickels, and twelve pennies. How much money does Rob have?", - "Output Program": [ - "ans=(7*25+3*10+5*5+12*1)/100\nprint(ans)" - ], - "Output Answer": [ - "2.42" - ], - "split": "dev" - }, - { - "Input": "The teacher gave 42 pencils to 12 students equally. How many pencils are left?", - "Output Program": [ - "ans=42%12\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "A chef used five potatoes to make fries for the lunch crowd. Later he used another two potatoes for the dinner crowd. How many potatoes did he use total?", - "Output Program": [ - "ans=5+2\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "For Halloween Frank got ten pounds of candy and Gwen got seven pounds of candy. What is the combined weight they received?", - "Output Program": [ - "ans=10+7\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "dev" - }, - { - "Input": "Rachel bought seven new chairs and three new tables for her house. If she spent four minutes on each piece furniture putting it together, how many minutes did it take her to finish?", - "Output Program": [ - "ans=(7+3)*4\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "Last week Howard had 26 dollars. He washed windows over the weekend and now has 52 dollars. How much money did he make washing windows?", - "Output Program": [ - "ans=52-26\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "dev" - }, - { - "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": [ - "ans=5-2+5\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "A shop stocked 22 pairs of large-size shoes, 50 pairs of medium-size shoes and 24 pairs of small-size shoes. After selling some of the shoes, it had 13 pairs of shoes left. How many pairs of shoes did the shop sell?", - "Output Program": [ - "ans=22+50+24-13\nprint(ans)" - ], - "Output Answer": [ - "83" - ], - "split": "dev" - }, - { - "Input": "A square has sides that measure 15 cm. A rectangle has a length of 18 cm. The perimeter of the square is equal to the perimeter of the rectangle. What is the area of the rectangle?", - "Output Program": [ - "ans=18*((15*4-18*2)/2)\nprint(ans)" - ], - "Output Answer": [ - "216" - ], - "split": "dev" - }, - { - "Input": "The school bought 54 basketballs and distribute them into 7 classes equally. How many basketballs did each class get?", - "Output Program": [ - "ans=54//7\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "Bob and his four friends decided to divide the pizza bill evenly. If each person paid $8, then what was the total price for the pizza?", - "Output Program": [ - "ans=8*(1+4)\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "If you can choose between a regular or waffle cone and vanilla, strawberry, caramel, and bubblegum flavored ice cream, how many different ways can ice cream be ordered?", - "Output Program": [ - "ans=2*4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "A baker had 7 boxes for donuts. He ended up making 48 donuts and splitting them evenly between the boxes. How many extra donuts did he end up with?", - "Output Program": [ - "ans=48%7\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "The distance around a rectangular garden is 36 feet. One side measures 10 feet. What is the area of the garden?", - "Output Program": [ - "ans=((36-(10*2))/2)*10\nprint(ans)" - ], - "Output Answer": [ - "80" - ], - "split": "dev" - }, - { - "Input": "Nell collects baseball cards. She had 304 cards. She gave some of her cards to Jeff and now has 276 cards left. How many cards did Nell give to Jeff?", - "Output Program": [ - "ans=304-276\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "dev" - }, - { - "Input": "Haley watched TV for six hours on Saturday and three hours on Sunday. How many hours did Haley watch TV total?", - "Output Program": [ - "ans=6+3\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "At the fair the 'Twirly Tea Cups' ride can hold nine people per teacup. If the ride has seven tea cups, how many total people can ride at a time?", - "Output Program": [ - "ans=9*7\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "dev" - }, - { - "Input": "Sandra is sorting pencils into boxes. She put 78 pencils in the first box, 87 pencils in the second box, 96 pencils in the third box, and 105 pencils in the fourth box. If this pattern continues, how many pencils will Sandra put in the fifth box?", - "Output Program": [ - "lst=[78,87,96,105,114]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "114" - ], - "split": "dev" - }, - { - "Input": "Zachary did 47 push-ups in gym class today. David did 15 more push-ups than Zachary. How many push-ups did David do?", - "Output Program": [ - "ans=47+15\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "dev" - }, - { - "Input": "John was drawing super heroes one sheet of scrap paper. He drew fifteen pictures total. If he drew nine on the back. How many heroes did he draw on the front?", - "Output Program": [ - "ans=15-9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Connie had some marbles. She gave 183 to Juan. Now she has 593 marbles left. How many did she have to start with?", - "Output Program": [ - "ans=593+183\nprint(ans)" - ], - "Output Answer": [ - "776" - ], - "split": "dev" - }, - { - "Input": "Haley collected 9 cans for recycling. If she put 7 cans in one bag, how many cans did she have left?", - "Output Program": [ - "ans=9-7\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "Will had twenty-eight bottles of water. If he drank seven each day, how many days would they last him?", - "Output Program": [ - "ans=28/7\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "George had 648 pieces of candy. If he split the candy into 8 bags with the same amount of candy in each bag, how many pieces would each bag have in it?", - "Output Program": [ - "ans=648/8\nprint(ans)" - ], - "Output Answer": [ - "81" - ], - "split": "dev" - }, - { - "Input": "A paper bag can hold 16 cookies. If Edgar buys 292 cookies, how many paper bags does he need?", - "Output Program": [ - "ans=292//16+1\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "Gary had some stickers. He gave 42 stickers to Lucy and 26 stickers to Alex. If he had 31 stickers left, how many stickers did Gary have at first?", - "Output Program": [ - "ans=42+26+31\nprint(ans)" - ], - "Output Answer": [ - "99" - ], - "split": "dev" - }, - { - "Input": "Maggi had 3 packages of cupcakes. There are 4 cupcakes in each package. She ate 5 cupcakes. How many are left?", - "Output Program": [ - "ans=(3*4)-5\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "To encourage public transportation, Russom wants to give some friends envelopes with bus tickets and subway tickets in them. If he has 18 bus tickets and 12 subway tickets to split equally among the envelopes, and wants no tickets left over, what is the greatest number of envelopes Russom can make?", - "Output Program": [ - "import math\nans=math.gcd(18,12)\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "A video game store was getting rid of old games, selling them 3 for $34.26. If they sold 2 games, how much money would they have made?", - "Output Program": [ - "ans=(34.26/3)*2\nprint(ans)" - ], - "Output Answer": [ - "22.84" - ], - "split": "dev" - }, - { - "Input": "Robin is making bead necklaces. She wants to use 31 beads to make 4 necklaces. If she wants each necklace to have the same number of beads, how many beads will she have left over?", - "Output Program": [ - "ans=31%4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "Divide 39 balloons into 7 equal groups. How many balloons are there in each group?", - "Output Program": [ - "ans=39//7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "A box can hold seven brownies. If a baker made three hundred forty-nine brownies, how many full boxes of brownies did he make?", - "Output Program": [ - "ans=349//7\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "dev" - }, - { - "Input": "Paul and Vinnie deliver newspapers. Paul made $14 in tips. Vinnie made $16 more than Paul. How much did Vinnie make?", - "Output Program": [ - "ans=14+16\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "An ice machine had 294 ice cubes in it. If you were filling up 7 ice chests and each chest got the same number of cubes, how many ice cubes would each chest get?", - "Output Program": [ - "ans=294/7\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "dev" - }, - { - "Input": "Melanie has pieces of train track that are 8 inches long that she is connecting together to form a track that her train can travel on. Martin is also trying to construct a track for his train but is using track pieces that are 20 inches long. How long will the shortest track be if the track that Melanie builds ends up being the same length as Martin's track?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([8,20])\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "Sean had 45 Starbursts. If Sean gave equal numbers of Starbursts to his 18 friends and then he ate what was left, how many Starbursts did each person eat?", - "Output Program": [ - "ans=45//18\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "The ratio of the cost of a DVD player to the cost of a movie is 9:2. A DVD player costs $63 more than a movie. What is the cost of a DVD player?", - "Output Program": [ - "ans=(9/7)*63\nprint(ans)" - ], - "Output Answer": [ - "81" - ], - "split": "dev" - }, - { - "Input": "An envelope from the post office is 4 inches wide and 4 inches long. What is the area of the envelope?", - "Output Program": [ - "ans=4*4\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "An aquarium had ten fish in it. Later they added three fish. How many fish are in the aquarium now?", - "Output Program": [ - "ans=10+3\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Virginia has 40 bananas and 4 marbles. If she shares the bananas among 40 friends, how many bananas does each friend get?", - "Output Program": [ - "ans=40/40\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "dev" - }, - { - "Input": "Ms. Baker has 17 cupcakes. She wants to share them equally among her 3 children so that no one gets more than anyone else. If she gives each child as many cupcakes as possible, how many cupcakes will be left over for Ms. Baker to eat?", - "Output Program": [ - "ans=17%3\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "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": [ - "ans=24+12-14\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": "Lana had 72 extra nickels. If she put them into stacks with 8 in each stack, how many stacks could she make?", - "Output Program": [ - "ans=72/8\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Math Magazine charges $8 per square inch for advertising. Jason decides to order a half page ad. Each page of the magazine measures 9 inches by 12 inches. How much will Jason have to pay?", - "Output Program": [ - "ans=((12*9)/2)*8\nprint(ans)" - ], - "Output Answer": [ - "432" - ], - "split": "dev" - }, - { - "Input": "Gino has 15 brown bears, 24 white bears, and 27 black bears. How many bears does Gino have?", - "Output Program": [ - "ans=15+24+27\nprint(ans)" - ], - "Output Answer": [ - "66" - ], - "split": "dev" - }, - { - "Input": "Brad has 17 balloons. 8 balloons are red and the rest are green. How many green balloons does Brad have?", - "Output Program": [ - "ans=17-8\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Sara bought decorations for her party. She paid $5 for balloons and $18 for tablecloths. She also spent $9 for streamers. She paid the cashier and got $8 back. How much money did Sara give to the cashier?", - "Output Program": [ - "ans=5+18+9+8\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "The ratio of white chocolate to dark chocolate sold at a candy shop was 4:3. If there were 20 bars of white chocolate sold, how many bars of dark chocolate were sold?", - "Output Program": [ - "ans=(3/4)*20\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "Ellen had 380 legos, but she lost 57 of them. How many legos does she have now?", - "Output Program": [ - "ans=380-57\nprint(ans)" - ], - "Output Answer": [ - "323" - ], - "split": "dev" - }, - { - "Input": "In the park, I see 109 dogs. How many legs do I see?", - "Output Program": [ - "ans=109*4\nprint(ans)" - ], - "Output Answer": [ - "436" - ], - "split": "dev" - }, - { - "Input": "Todd had 85 cents in his pocket. He bought a candy bar for 14 cents. He bought a box of cookies for 39 cents. How much money did Todd spend altogether?", - "Output Program": [ - "ans=14+39\nprint(ans)" - ], - "Output Answer": [ - "53" - ], - "split": "dev" - }, - { - "Input": "Finally, she planned on going to the Halloween party in the village club house. She wanted to make sure that she will have the perfect costume so she rented 4 different costumes from the Halloween store. If each costume rent costs $2.00, how much did she spend on all the costumes?", - "Output Program": [ - "ans=4*2\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "The sum of present age of Abe and the age before 7 years is 31. Find the present age of Abe.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Abe's present age\n# x+(x-7)=31\nsolution=solve([x+(x-7)-31], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt wants to buy a television that regularly costs $600. If the sale price is 20% off the regular price, what was the sale price?", - "Output Program": [ - "ans=600-(600*0.2)\nprint(ans)" - ], - "Output Answer": [ - "480" - ], - "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": [ - "ans=(35+21)-34\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": "Maria had twenty-five pieces of gum. Tommy gave her sixteen more pieces. Luis gave her twenty more pieces. How many pieces of gum does Maria have now?", - "Output Program": [ - "ans=25+16+20\nprint(ans)" - ], - "Output Answer": [ - "61" - ], - "split": "dev" - }, - { - "Input": "Emily is making bead necklaces for her friends. She has twenty-eight beads and each necklace takes seven beads. How many necklaces can Emily make?", - "Output Program": [ - "ans=28/7\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "I have 3 hundreds, 8 tens, and 3 ones. What number am I?", - "Output Program": [ - "ans=(3*100)+(8*10)+(3*1)\nprint(ans)" - ], - "Output Answer": [ - "383" - ], - "split": "dev" - }, - { - "Input": "Charlie and his father, an engineer, decided to build a treehouse in their backyard. In order to start constructing the house, Charlie and his father needed to gather some wood from the forest. If they initially have 15 extra planks of wood in the house and Charlie and his father got 10 planks of wood each, how many pieces of wood do they have in total?", - "Output Program": [ - "ans=15+10+10\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "dev" - }, - { - "Input": "A baker has a pan of fudge that measures 18 inches on one side and 29 inches on another side. If the fudge is cut into square pieces 1 inch on each side, how many pieces of fudge does the pan hold?", - "Output Program": [ - "ans=18*29\nprint(ans)" - ], - "Output Answer": [ - "522" - ], - "split": "dev" - }, - { - "Input": "There are ninety-eight cats in the little town. If ninety-two of them are a asleep, how many cats are still awake?", - "Output Program": [ - "ans=98-92\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Josh had 16 marbles in his collection. He lost 7 marbles. How many marbles does he have now?", - "Output Program": [ - "ans=16-7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Hannah is a professional skater. She practices 8 hours every weekend. She practices 17 more hours than that during the week. How many hours does Hannah practice each week?", - "Output Program": [ - "ans=8+(8+17)\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "dev" - }, - { - "Input": "Robyn and Lucy are members of their village's Girl Scout troop. During weekends and some weekdays, they go around selling cookies in the neighborhood. They have a week before the month ends and they are doing their best to get a badge from selling cookies. Working overtime, Robyn sold 47 packs of cookies while Lucy sold 29. How many packs of cookies were they able to sell that day?", - "Output Program": [ - "ans=47+29\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "dev" - }, - { - "Input": "Martha's Blossoms sells roses in groups of 9. Across town, Rachel's Blooms sells roses in groups of 19. If a customer wants to buy the same number of roses from both vendors, what is the smallest number of roses the customer will have to buy from each vendor?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([9,19])\nprint(ans)" - ], - "Output Answer": [ - "171" - ], - "split": "dev" - }, - { - "Input": "It takes eight grams of plastic to make a ruler. If a company had eight hundred twenty-eight grams of plastic, how many entire rulers could they make?", - "Output Program": [ - "ans=828//8\nprint(ans)" - ], - "Output Answer": [ - "103" - ], - "split": "dev" - }, - { - "Input": "An artist painted 2 pictures in June. He painted 2 more in July and in August he painted 9. How many pictures did he paint total?", - "Output Program": [ - "ans=2+2+9\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Robin has 27 packages of gum. There are 18 pieces in each package. How many pieces of gum does Robin have?", - "Output Program": [ - "ans=27*18\nprint(ans)" - ], - "Output Answer": [ - "486" - ], - "split": "dev" - }, - { - "Input": "There are 270 seats in a movie theater. If the movie theater has 9 sections with the same number of seats in each section, how many seats are in each section?", - "Output Program": [ - "ans=270/9\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "Luke was played 5 rounds of a trivia game and scored 300 points. If he gained the same number of points each round, how many points did he score per round?", - "Output Program": [ - "ans=300/5\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "dev" - }, - { - "Input": "Charlene made 60 bead necklaces. She sold 16 at a craft fair. She gave 18 to her friends. How many necklaces did Charlene have then?", - "Output Program": [ - "ans=60-16-18\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "dev" - }, - { - "Input": "The radio station gave away a $100 bill for every 100th caller. Every 30th caller received free concert tickets. How many callers must get through before one of them receives both a coupon and a concert ticket?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([100,30])\nprint(ans)" - ], - "Output Answer": [ - "300" - ], - "split": "dev" - }, - { - "Input": "Sweet Time Bakery just opened and is increasing the number of items they bake. For example, the bakery made 19 carrot cakes in October, 21 carrot cakes in November, 23 carrot cakes in December, and 25 carrot cakes in January. If this pattern continues, how many carrot cakes will the bakery make in February?", - "Output Program": [ - "lst=[19,21,23,25,27]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "dev" - }, - { - "Input": "During a period of 112 minutes, a music station played 40 minutes of commercials. What is the ratio of music they played to commercials they played?", - "Output Program": [ - "from fractions import Fraction\ndif=112-40\nfrac=Fraction(dif,40)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "9:5" - ], - "split": "dev" - }, - { - "Input": "My ice cream shop was really busy today. It was 98 degrees and we sold 67 ice cream cones. We sold 15 more milkshakes than ice cream cones. How many milkshakes were sold?", - "Output Program": [ - "ans=67+15\nprint(ans)" - ], - "Output Answer": [ - "82" - ], - "split": "dev" - }, - { - "Input": "A ballet class wants to divide its 90 members into some large groups at 7 members each and some small groups at 3 members each. In order to make the least number of groups, how many large groups should be made?", - "Output Program": [ - "ans=90//7\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "There are 95 pretzels in a bowl. John ate 28 pretzels. Alan ate 9 fewer pretzels than John. Marcus ate 12 more pretzels than John. How many pretzels did Marcus eat?", - "Output Program": [ - "ans=28+12\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "John is building a tree house to serve as his hideout whenever he wanted to spend some time alone with himself. The first thing he did is to gather some materials. For the pillars, he needs two sets of wood with different lengths. If the first set of wood is 4 feet long and the second set is 5 times longer than the first set, how long is the second set of wood?", - "Output Program": [ - "ans=4*5\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "dev" - }, - { - "Input": "A restaurant charges 4% service charge. If your order amounted to 450, how much did you pay?", - "Output Program": [ - "ans=450+(450*0.04)\nprint(ans)" - ], - "Output Answer": [ - "468" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt uses 2 ounces of detergent to wash a pound of clothes. How many ounces of soap will she use to wash 9 pounds of clothes?", - "Output Program": [ - "ans=2*9\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "dev" - }, - { - "Input": "A store had eighty-seven coloring books in stock. They ended up putting them on sale and getting rid of thirty-three of them. The put the ones they still had onto shelves with six on each shelf. How many shelves did they use?", - "Output Program": [ - "ans=(87-33)/6\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Edward spent $13. Now he has $6. How much did Edward have before he spent his money?", - "Output Program": [ - "ans=13+6\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "While playing a video game Victor lost fourteen lives. Now he has two lives. What's the difference between the number of the lives that Victor lost and now?", - "Output Program": [ - "ans=14-2\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "Jared is reviewing his cell phone bill. When he gets to the text message part, he notices that he sent 1 text message in November, 2 text messages in December, 4 text messages in January, and 8 text messages in February. If this pattern continues, how many text messages will Jared send in March?", - "Output Program": [ - "lst=[2,4,8,16]\nans=lst[4-1]\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "Kaleb has to sell 710 chocolate bars to get a prize. If each box contains 5 chocolate bars, how many boxes does he need to sell?", - "Output Program": [ - "ans=710/5\nprint(ans)" - ], - "Output Answer": [ - "142" - ], - "split": "dev" - }, - { - "Input": "3 owls were sitting on the fence. 2 more owls joined them. How many owls are on the fence now?", - "Output Program": [ - "ans=3+2\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Your class is having a pizza party. You buy 5 pizzas. Each pizza has 4 slices. How many slices is that altogether?", - "Output Program": [ - "ans=5*4\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "dev" - }, - { - "Input": "After 15 years, Ariel will be four times as old as she is now. Determine her present age.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Ariel's present age\n# 4x=x+15\nsolution=solve([4*x-(x+15)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Adam has 29 marbles in his collection. Mary has 11 fewer marbles than Adam. Greg has 14 more marbles than Adam. How many marbles does Greg have?", - "Output Program": [ - "ans=29+14\nprint(ans)" - ], - "Output Answer": [ - "43" - ], - "split": "dev" - }, - { - "Input": "Melody made 26 cut-outs of Christmas trees with red shiny balls. If she planned to paste 4 of this to the front cover of a certain number of cards, how many cut-outs of Christmas trees will Melody have left?", - "Output Program": [ - "ans=26%4\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "Steve is stacking cups; he put 17 plastic cups in the first stack, 21 plastic cups in the second stack, 25 plastic cups in the third stack, and 29 plastic cups in the fourth stack. If this pattern continues, how many plastic cups will Steve put in the fifth stack?", - "Output Program": [ - "lst=[17,21,25,29,33]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "dev" - }, - { - "Input": "Sally memorized eight poems. After some time she could only recite three of them. How many poems did she forget?", - "Output Program": [ - "ans=8-3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "20 peaches are in the basket. 25 more peaches are put in the basket. How many peaches are in the basket now?", - "Output Program": [ - "ans=20+25\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "dev" - }, - { - "Input": "December is a busy month for the toy store. They had 95 games on the shelf. 68 games were sold the first week. The store got 47 more games from the factory. How many games did they have then?", - "Output Program": [ - "ans=95-68+47\nprint(ans)" - ], - "Output Answer": [ - "74" - ], - "split": "dev" - }, - { - "Input": "Willy has 1400 crayons. Lucy has 290 crayons. How many more crayons does Willy have then Lucy?", - "Output Program": [ - "ans=1400-290\nprint(ans)" - ], - "Output Answer": [ - "1110" - ], - "split": "dev" - }, - { - "Input": "There 95 colored lights on a Christmas tree. 26 of them are red, 37 of them are yellow and the rest are blue. How many blue lights are there on the Christmas tree?", - "Output Program": [ - "ans=(95-26)-37\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "dev" - }, - { - "Input": "Jerry was playing the ring toss at the carnival. All together he used forty-eight rings. If each game you get six rings, how many games did he play?", - "Output Program": [ - "ans=48/6\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "At the state fair Paul bought eleven tickets. If he spent three tickets on the Ferris wheel. How many tickets did he have left?", - "Output Program": [ - "ans=11-3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Misha has 34 dollars. How many dollars does she have to earn to have 47 dollars to buy a dog?", - "Output Program": [ - "ans=47-34\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Tiffany was collecting cans for recycling. On Monday she had four bags of cans. The next day she found eight more bags worth. How many bags did she have totaled?", - "Output Program": [ - "ans=4+8\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "Allen, Charles, Lex and Shiela spent days reading books for their book report. The texts were printed very small so they were only able to cover very few pages a day. Allen read about the Solar System. He read 10 pages a day of a book which has 120 pages. How many days did it take Allen to finish reading the book?", - "Output Program": [ - "ans=120/10\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "On Monday Debby jogged 2 kilometers. On Tuesday she jogged 5 kilometers and on Wednesday she jogged 9. How many kilometers did she jog total?", - "Output Program": [ - "ans=2+5+9\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "A number equals 5 times the difference between the number and 4. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# (x-4)*5=x\nsolution=solve([(x-4)*5-x], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "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": [ - "ans=(9-5)*4\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "Roger had 2 new crayons, 4 used crayons and 8 broken crayons. How many crayons did Roger have total?", - "Output Program": [ - "ans=2+4+8\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "dev" - }, - { - "Input": "Haley's mom was buying extra school supplies for Haley and her sister. If she bought 2 reams of paper for Haley and 3 reams for her sister, how many did she buy total?", - "Output Program": [ - "ans=2+3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Ben had 18 marbles and John had 17 marbles. Ben gave half of his marbles to John. How many more marbles did John have than Ben then?", - "Output Program": [ - "ans=(17+18/2)-18/2\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "dev" - }, - { - "Input": "The roller coaster at the state fair costs 6 tickets per ride. If 8 friends were going to ride the roller coaster, how many tickets would they need?", - "Output Program": [ - "ans=6*8\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "dev" - }, - { - "Input": "Bryan has always been fond of studying rocks and minerals. He has a room full of books about and samples of the different types of rocks. One particular day, he went in the room to take a look at his mineral samples. If he has 65 samples of minerals per shelf, and he has a total of 7 shelves, how many mineral samples does he have?", - "Output Program": [ - "ans=65*7\nprint(ans)" - ], - "Output Answer": [ - "455" - ], - "split": "dev" - }, - { - "Input": "The grasshopper and the frog had a jumping contest. The grasshopper jumped 25 inches. The frog jumped 15 inches farther than the grasshopper. How far did the frog jump?", - "Output Program": [ - "ans=25+15\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": "After Sam and Bob left, Mary, John and Sue decided to go home as well. They counted the total amount of treats that the three of them got. They were able to sort out 60 chewing gums, 55 chocolate bars and another 40 candies of different flavors. How many treats did Mary, John and Sue have in total?", - "Output Program": [ - "ans=60+55+40\nprint(ans)" - ], - "Output Answer": [ - "155" - ], - "split": "dev" - }, - { - "Input": "Abe is going to plant 54 oak trees and 27 pine trees. Abe would like to plant the trees in rows that all have the same number of trees and are made up of only one type of tree. What is the greatest number of trees Abe can have in each row?", - "Output Program": [ - "import math\nans=math.gcd(54,27)\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "dev" - }, - { - "Input": "A vat of orange juice was one hundred fifty-three pints. If you wanted to pour the vat into five glasses with the same amount in each glass, how many pints would be in each glass?", - "Output Program": [ - "ans=153//5\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "Amy worked as a sacker at the grocery store where she made $2/hr. If she worked for 7 hours and also made $9 in tips, how much money did she earn?", - "Output Program": [ - "ans=7*2+9\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "dev" - }, - { - "Input": "Mika measures the lens on a magnifying glass and calculates that it has a circumference of 31.4 centimeters. What is the lens's diameter?", - "Output Program": [ - "ans=31.4/3.14\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "dev" - }, - { - "Input": "Still a little behind, Robyn asked her mother to drive them around town on Wednesday to cover more houses. That day Robyn sold 55 packs of cookies while Lucy sold 43. How many packs were they able to sell that day?", - "Output Program": [ - "ans=55+43\nprint(ans)" - ], - "Output Answer": [ - "98" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt has 15 friends. She can only take 8 of her friends to the movies. How many friends can't go to the movies?", - "Output Program": [ - "ans=15-8\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "In a game you start with 2 lives. If you got 6 extra lives in the first level and 11 more in the second, how many lives would you have?", - "Output Program": [ - "ans=2+6+11\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "Mrs. Smith gave 53 strawberries to 8 girls equally. How many strawberries did each girl get?", - "Output Program": [ - "ans=53//8\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "A vet was weighing 3 cats. The first weighed 2 pounds. The second weighed 7 pounds and the last weighed 4 pounds. What is their combined weight?", - "Output Program": [ - "ans=2+7+4\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Andrew is having his friends over for game night. So he decided to prepare the snacks and the games. He started by making mini sandwiches. If he has 4 friends coming over and he made 3 sandwiches for each one of them, how many sandwiches did he make in total?", - "Output Program": [ - "ans=4*3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "A pet store took ten birds out of a cage and had nine still left inside. How many birds were in the cage to start with?", - "Output Program": [ - "ans=10+9\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "dev" - }, - { - "Input": "Adam bought a new flat screen TV with an area of 21 square feets. The screen is 3 feet wide. How tall is it?", - "Output Program": [ - "ans=21/3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "A transport company bought 95 tons of oil. A large barrel can hold 6 tons of oil and a small barrel can hold 5 tons of oil. In order to use the least number of barrels and have every barrel fully occupied, how many small barrels should be used?", - "Output Program": [ - "ans=6-95%6\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "dev" - }, - { - "Input": "Tess is decorating papers with a total of 45 heart stickers and 27 star stickers for the child she is babysitting. If she wants to make all the papers identical, with the same combination of heart and star stickers and no stickers left over, what is the greatest number of pages Tess can decorate?", - "Output Program": [ - "import math\nans=math.gcd(45,27)\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Bernard had 15 red notebooks, 17 blue notebooks and 19 white notebooks. He gave some of them to Tom and had 5 left. How many notebooks did Bernard give Tom?", - "Output Program": [ - "ans=15+17+19-5\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "dev" - }, - { - "Input": "Helen the Hippo and her friends are preparing for Thanksgiving at Helen's house. Helen baked 435 chocolate chip cookies yesterday and 139 cookies this morning. How many cookies did Helen bake?", - "Output Program": [ - "ans=435+139\nprint(ans)" - ], - "Output Answer": [ - "574" - ], - "split": "dev" - }, - { - "Input": "The cost of a private pilot course is $1,275. The flight portion costs $625 more than the ground school portion. What is the cost of each?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The cost of flight portion; y:The cost of ground school portion\n# x+y=1275; x=y+625\nsolution=solve([x+y-1275, x-(y+625)], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "325" - ], - "split": "dev" - }, - { - "Input": "35 campers went rowing in the morning. 27 campers went rowing in the afternoon. How many campers went rowing in all?", - "Output Program": [ - "ans=35+27\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "dev" - }, - { - "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": [ - "ans=(43+12)-44\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "dev" - }, - { - "Input": "Jerry owned seven video games. For his birthday he got two more. How many games did Jerry have total?", - "Output Program": [ - "ans=7+2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Next on his shopping list are the eggs. If he needs 222 eggs for his cake and his friend Andrew gave him 155, how many more eggs should he buy?", - "Output Program": [ - "ans=222-155\nprint(ans)" - ], - "Output Answer": [ - "67" - ], - "split": "dev" - }, - { - "Input": "Sean has 8-inch pieces of toy train track and Ruth has 18-inch pieces of train track. How many of each piece would each child need to build tracks that are equal in length?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([8,18])\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "dev" - }, - { - "Input": "The ratio of the length of a rectangle to its width is 6:5. Its length is 24 inches. What is its width?", - "Output Program": [ - "ans=24/6*5\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "dev" - }, - { - "Input": "The woods behind Wendy's house were 8 miles wide and have an area of 24 square miles. What is the length of the woods?", - "Output Program": [ - "ans=24/8\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "A contractor was buying wall outlets for a new house he was building. Each room needed 6 outlets. If the house has 7 rooms, how many outlets does he need total?", - "Output Program": [ - "ans=6*7\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "dev" - }, - { - "Input": "In a school, there are 542 girls and 387 boys. How many pupils are there in that school?", - "Output Program": [ - "ans=542+387\nprint(ans)" - ], - "Output Answer": [ - "929" - ], - "split": "dev" - }, - { - "Input": "19 children take a minibus to the zoo. They are to sit 2 or 3 to a seat. There are 7 seats. How many seats will have 3 children seated on them?", - "Output Program": [ - "ans=19-(7*2)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Vanessa had saved up eight hundred fifty-five quarters and decided to spend them on sodas. If it costs seven quarters for each soda from a soda machine, how many more quarters would she need to buy the final soda?", - "Output Program": [ - "ans=7-855%7\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "A video game map had a total area of 10 square meters. If the map was 5 meters long, how wide is it?", - "Output Program": [ - "ans=10/5\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "You have collected 7 crickets. How many more crickets do you need to collect to have 11 crickets?", - "Output Program": [ - "ans=11-7\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "Paul got a box of 479 crayons for his birthday. At the end of the school year, he only had 134 left. How many crayons had been lost or given away?", - "Output Program": [ - "ans=479-134\nprint(ans)" - ], - "Output Answer": [ - "345" - ], - "split": "dev" - }, - { - "Input": "105 people are going to a movie. 6 people can ride in each car. How many cars are needed to get all 105 people to the movie?", - "Output Program": [ - "ans=105//6+1\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "dev" - }, - { - "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": [ - "ans=30-8+10\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "dev" - }, - { - "Input": "Scott and Sam decided to sell their old comic books. They had 90 comic books altogether. After the sale, they only had 25 comic books. How many comic books did Scott and Sam sell?", - "Output Program": [ - "ans=90-25\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "dev" - }, - { - "Input": "Robin wanted to drink exactly nine bottles of water each day, so she bought six hundred seventeen bottles when they were on sale. How many more bottles will she need to buy on the last day?", - "Output Program": [ - "ans=9-617%9\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "Jenny goes to dance class every 6 days, karate class every 12 days, and to the library every 18 days. On December 1st she went to both classes and the libary. How many days from December 1st will she do both classes and go to the library?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([6,12,18])\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "dev" - }, - { - "Input": "A school buys 1,093 chairs. If it wants to distribute them equally into 35 classrooms, how many more chairs should be purchased?", - "Output Program": [ - "ans=35-1093%35\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "dev" - }, - { - "Input": "There are 650 students in a school. If the number of girls is 106 more than the boys, how many boys are there in the school?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The number of boys; y:The number of girls\n# x+y=650; y-x=106\nsolution=solve([x+y-650, y-x-106], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "272" - ], - "split": "dev" - }, - { - "Input": "Of 240 stamps that Harry and his sister collected, Harry collected 3 times as many as his sisters. How many did each collect?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Harry's collected stamps; y:Harry's sister collected stamps\n# x+y=240; x=3y\nsolution=solve([x+y-240, x-3*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "dev" - }, - { - "Input": "A waiter had nineteen customers. After some left he still had four customers. What's the difference between the number of customers before leaving and after leaving?", - "Output Program": [ - "ans=19-4\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "While sorting some change into piggy banks, Diane put 72 coins in the first piggy bank, 81 coins in the second piggy bank, 90 coins in the third piggy bank, 99 coins in the fourth piggy bank, and 108 coins in the fifth piggy bank. If this pattern continues, how many coins will Diane put in the sixth piggy bank?", - "Output Program": [ - "lst=[72,81,90,108,117]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "117" - ], - "split": "dev" - }, - { - "Input": "Lino picked up 292 shells at the seashore in the morning and 324 shells in the afternoon. How many shells did he pick up in all?", - "Output Program": [ - "ans=292+324\nprint(ans)" - ], - "Output Answer": [ - "616" - ], - "split": "dev" - }, - { - "Input": "Then he started to prepare the games. If each game takes 5 minutes to prepare and he prepared a total of 5 games, how many minutes did it take for Andrew to prepare all the games?", - "Output Program": [ - "ans=5*5\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": "Harry walked along the beach and collected 34 sea stars, 21 seashells and 29 snails. He lost some of the items and had 59 items left at the end of his walk. How many sea creatures did he lose in all?", - "Output Program": [ - "ans=34+21+29-59\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": "When they got there, they saw that SFL is already filled with people. Every entrance has a long line, with 283 people waiting to get in. If SFL has 5 entrances, how many people in total are waiting to get in?", - "Output Program": [ - "ans=283*5\nprint(ans)" - ], - "Output Answer": [ - "1415" - ], - "split": "dev" - }, - { - "Input": "Dave was picking up sticks from his yard. He picked up fourteen but there were still four left. What's the difference between the number of sticks that Dave picked up and the left?", - "Output Program": [ - "ans=14-4\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "dev" - }, - { - "Input": "Hazel and her father both love going on fishing trips. This year, they planned to go around the Great Lakes for a unique fishing experience. Their first stop is Lake Ontario. Hazel and her father decided to have a contest between them. If Hazel caught 24 salmons and her dad caught 27, how many salmons did they catch in total?", - "Output Program": [ - "ans=24+27\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "dev" - }, - { - "Input": "A large bag of balls was kept under Haley's bed. Her mom placed the balls in bags for children in foster homes. If every bag can contain 4 balls and Haley has 36 balls, how many bags will be used?", - "Output Program": [ - "ans=36/4\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Heather enjoys bird-watching and observed two types of birds traveling this season: ducks and seagulls. While the ducks traveled in flocks of 18, the seagulls traveled in flocks of 10. If Heather observed the same total number of ducks and seagulls, what is the smallest number of ducks that she could have observed?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([18,10])\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "dev" - }, - { - "Input": "Roger was reading through his favorite book series. He had 30 books to read total. If he read 6 books each week, how many weeks would it take him to finish the series?", - "Output Program": [ - "ans=30/6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "The kids from Oakwood Elementary School are visiting a bird zoo for their field trip. To get to the bird zoo from the school, the kids have to ride some buses. If there are 7 buses and each bus has 3 adult supervisors to guide the children, how many supervisors are there in total?", - "Output Program": [ - "ans=7*3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "dev" - }, - { - "Input": "There are 9 students in the class and 27 Skittles. If the Skittles are divided equally among the students, how many does each student get?", - "Output Program": [ - "ans=27/9\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "Ethan and Frank went rowing. Ethan rowed the boat from 10:50 to 11:15. Frank rowed the boat twice as long. How long did the boys row the boat altogether?", - "Output Program": [ - "ans=(11*60+15)-(10*60+50)+(((11*60+15)-(10*60+50))*2)\nprint(ans)" - ], - "Output Answer": [ - "75" - ], - "split": "dev" - }, - { - "Input": "A rectangular roof shingle is 10 inches long and 7 inches wide. What is its area?", - "Output Program": [ - "ans=10*7\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "dev" - }, - { - "Input": "Kevin and his family just moved to a new neighborhood so they are holding a party to be able to meet their new neighbors. For the party, they prepared a few snacks for everyone. If his sister prepared 25 mini cupcakes and his mother prepared 30, how many did his grandmother prepare if they have a total of 100 cupcakes?", - "Output Program": [ - "ans=100-(25+30)\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "dev" - }, - { - "Input": "Whitney has collected 4 T-shirts and 20 buttons from her favorite band. She wants to combine them into identical sets to sell, with no pieces left over. What is the greatest number of sets Whitney can make?", - "Output Program": [ - "import math\nans=math.gcd(4,20)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "There are 40 girls and 32 boys who want to participate in 6th grade intramurals. If each team must have the same number of girls and the same number of boys, what is the greatest number of teams that can participate in intramurals?", - "Output Program": [ - "import math\nans=math.gcd(40,32)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Angela won a contest. She gets $90 to spend at Puzzle Palace. She bought many wonderful puzzles. She had $12 left. How much did she spend?", - "Output Program": [ - "ans=90-12\nprint(ans)" - ], - "Output Answer": [ - "78" - ], - "split": "dev" - }, - { - "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": [ - "ans=(12-6)*6\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "dev" - }, - { - "Input": "I am three times as old as my son. Five years later, I shall be two and a half times as old as my son. How old am I and how old is my son?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:My age; y:The age of my son\n# x=3y; x+5=2.5(y+5)\nsolution=solve([x-3*y, x+5-(2.5*(y+5))], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "dev" - }, - { - "Input": "Jesse's room is 12 feet long and 8 feet wide. How much carpet does she need to cover the whole floor?", - "Output Program": [ - "ans=12*8\nprint(ans)" - ], - "Output Answer": [ - "96" - ], - "split": "dev" - }, - { - "Input": "Martha bought 18 small cakes. She has 3 children. She would like to divide the cakes among her children so that each child gets the same amount. How many cakes would each child get?", - "Output Program": [ - "ans=18/3\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Janet was practicing for a marathon. She practiced for 9 days, running 8 miles each day. How many miles did Janet run altogether?", - "Output Program": [ - "ans=9*8\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "dev" - }, - { - "Input": "Catherine has 18 bottle caps and 19 blocks. If she shares the bottle caps among 6 friends, how many bottle caps does each friend get?", - "Output Program": [ - "ans=18/6\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "A chess player played 44 games total. If he won 16 of the games, what is the ratio of games he lost to games he won?", - "Output Program": [ - "from fractions import Fraction\ndif=44-16\nfrac=Fraction(dif,16)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "7:4" - ], - "split": "dev" - }, - { - "Input": "Martin works at the Hungry Hippo. He sells 48 hamburgers before 6 o'clock. He sells 28 more hamburgers than that after 6 o'clock. He works 24 hours each week. How many hamburgers does Martin sell after 6 o'clock?", - "Output Program": [ - "ans=48+28\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "dev" - }, - { - "Input": "Rachel bought 8 music albums online. If each album had 2 songs, how many songs did she buy total?", - "Output Program": [ - "ans=8*2\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "Mother bought some potatoes. She used 15 of the potatoes to make salads and 24 of the potatoes for mashed potatoes. If there were 13 potatoes left, how many potatoes did mother buy at first?", - "Output Program": [ - "ans=15+24+13\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "dev" - }, - { - "Input": "In preparation for a party, Brant is putting desserts onto platters. The chocolate cake is cut into 15 pieces and the cheesecake is cut into 6 pieces. If he wants to prepare identical platters without having any cake left over, what is the greatest number of platters he can prepare?", - "Output Program": [ - "import math\nans=math.gcd(15,6)\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "A new store opened up at the mall. During the first hour, 94 people came in and 27 people left. During the second hour, 18 people came in and 9 people left. How many people were still in the store after 2 hours?", - "Output Program": [ - "ans=94-27+18-9\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "dev" - }, - { - "Input": "Andrew and Jeffrey walk together. When the ratio of Andrew's steps to Jeffrey's steps was 3:4. If Andrew walks 150 steps, how many steps does Jeffrey walk?", - "Output Program": [ - "ans=(4/3)*150\nprint(ans)" - ], - "Output Answer": [ - "200" - ], - "split": "dev" - }, - { - "Input": "There are 46 birds perched on the branches of a tree. How many feet are there on the branches?", - "Output Program": [ - "ans=46*2\nprint(ans)" - ], - "Output Answer": [ - "92" - ], - "split": "dev" - }, - { - "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": [ - "ans=11-5+10\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "Antonieta wants to ride the Ferris wheel, the roller coaster, and the log ride. The Ferris wheel costs 6 tickets, the roller coaster costs 5 tickets and the log ride costs 7 tickets. Antonieta has 2 tickets. How many more tickets should Antonieta buy?", - "Output Program": [ - "ans=(6+5+7)-2\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "A group was sitting at a lunch table. After finishing, six people left and there were five left at the table. How many people were at the table to start with?", - "Output Program": [ - "ans=6+5\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "dev" - }, - { - "Input": "Vincent has learned the words to 56 songs. He learned 18 more songs at summer camp. How many songs does Vincent know now?", - "Output Program": [ - "ans=56+18\nprint(ans)" - ], - "Output Answer": [ - "74" - ], - "split": "dev" - }, - { - "Input": "A baker made 2 batches of chocolate chip cookies. Each batch had 3 cookies in it. Then he made an additional 4 oatmeal cookies just in case someone didn't want chocolate chip. How many cookies did he bake total?", - "Output Program": [ - "ans=2*3+4\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "dev" - }, - { - "Input": "Each house a carpenter builds needs six sinks. If he bought two hundred sixty-six sinks, how many houses would that cover?", - "Output Program": [ - "ans=266//6\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "dev" - }, - { - "Input": "They also prepared some chips. If he prepared 350 grams of chips and his father prepared 268 grams, how much chips should his brother prepare if they are to have 800 grams of chips?", - "Output Program": [ - "ans=800-(350+268)\nprint(ans)" - ], - "Output Answer": [ - "182" - ], - "split": "dev" - }, - { - "Input": "Tom read three chapters of a book. If each chapter was eight pages, how many pages did he read?", - "Output Program": [ - "ans=3*8\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "dev" - }, - { - "Input": "The train left for the station at 9:45 and arrived at 10:00. How long did it take?", - "Output Program": [ - "ans=(10*60-(9*60+45))\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "Alyssa had 129 cookies. Aiyanna has 140. What's the difference of the number of Alyssa's cookies and Aiyanna's cookies?", - "Output Program": [ - "ans=140-129\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "dev" - }, - { - "Input": "The capacity of a tank is 32 gallons. If a company bought 728 gallons of oil, how much oil is in the tank that is not full?", - "Output Program": [ - "ans=728%32\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "dev" - }, - { - "Input": "There are 560 bottle caps in Terry's bottle cap collection. If the bottle caps are organized into 80 groups, how big is each group?", - "Output Program": [ - "ans=560/80\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "Uncle Dave bought 143 ice cream sandwiches. If he wants to give them to his 11 hungry nieces, how many can each niece get?", - "Output Program": [ - "ans=143/11\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Tiffany was buying hand towels for her house. She bought 9 packs with each pack having 3 towels in it. How many towels did she buy?", - "Output Program": [ - "ans=9*3\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "dev" - }, - { - "Input": "Matt has two pieces of cord, one 15 feet long and the other 12 feet long. He wants to cut them up to produce many pieces of cord that are all of the same length, with no cord left over. What is the greatest length, in feet, that he can make them?", - "Output Program": [ - "import math\nans=math.gcd(15,12)\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "The Greene family went to the amusement park. They spent $45 on admission tickets. They spent $13 less than that on food. How much did the Greene family spend in all?", - "Output Program": [ - "ans=45+(45-13)\nprint(ans)" - ], - "Output Answer": [ - "77" - ], - "split": "dev" - }, - { - "Input": "Audrey has 26 peaches. Paul has 48 peaches. What's the difference of the number of Audrey's peaches and Paul's peaches?", - "Output Program": [ - "ans=48-26\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": "Tommy had some balloons. His mom gave him 34 more balloons for his birthday. Then, Tommy had 60 balloons. How many balloons did Tommy have to start with?", - "Output Program": [ - "ans=60-34\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "dev" - }, - { - "Input": "Amy was doing a classroom survey. She asked the girls in the class how many siblings they had and recorded the results: 1, 6, 10, 4, 3, 3, 11, 3 and 10. What is the mean of the results?", - "Output Program": [ - "ans=(1+6+10+4+3+3+11+3+10)/9\nprint(ans)" - ], - "Output Answer": [ - "5.7" - ], - "split": "dev" - }, - { - "Input": "Vivian sent 5 pieces of mail in April, 10 pieces of mail in May, 20 pieces of mail in June, and 40 pieces of mail in July. If this pattern continues, how many pieces of mail will Vivian send in August?", - "Output Program": [ - "lst=[5,10,20,40,80]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "80" - ], - "split": "dev" - }, - { - "Input": "Jane helped her mom prepare fresh lemonade. If each glass needs two lemons, how many glasses of fresh lemonade can she make if they have 18 lemons?", - "Output Program": [ - "ans=18/2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt bought carnival tickets. The tickets cost $1 for 4 tickets. If Mrs. Hilt bought 12 tickets, how much did she pay?", - "Output Program": [ - "ans=12/4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "Elizabeth studied 25 minutes for her science test. She studied 35 minutes for her math test. How long did Elizabeth study altogether?", - "Output Program": [ - "ans=25+35\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "dev" - }, - { - "Input": "A cafeteria was putting milk cartons into stacks. They had seven hundred ninety-nine cartons and were putting them into stacks with six cartons in each stack. How many full stacks could they make?", - "Output Program": [ - "ans=799//6\nprint(ans)" - ], - "Output Answer": [ - "133" - ], - "split": "dev" - }, - { - "Input": "Amy uploaded 180 pics to Facebook. If she put the pics into 9 albums with the same number of photos in each album, how many photos were in each album?", - "Output Program": [ - "ans=180/9\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "dev" - }, - { - "Input": "Since the result of the vote was close, it was decided that they will balance the menu with both meat and vegetables. This decision was agreed upon by 154 third grade students and 237 fourth grade students. How many students agreed with the decision?", - "Output Program": [ - "ans=154+237\nprint(ans)" - ], - "Output Answer": [ - "391" - ], - "split": "dev" - }, - { - "Input": "Next on her list are the homeless people where she spent a total of $900.00. If she gave $325.00 to the first set of homeless families and $260.00 to the second set of families, how much did she give to the last set of homeless families?", - "Output Program": [ - "ans=900-(325+260)\nprint(ans)" - ], - "Output Answer": [ - "315" - ], - "split": "dev" - }, - { - "Input": "While playing a video game Ned lost thirteen lives. Now he has seventy lives. How many lives did Ned have at the start?", - "Output Program": [ - "ans=13+70\nprint(ans)" - ], - "Output Answer": [ - "83" - ], - "split": "dev" - }, - { - "Input": "Aylin is making a scrapbook using 18 photos and 20 newspaper clippings. She wants all the pages to be set up in the same way, with the same combination of photos and newspaper clippings on every page. She also wants to make sure that no items are left over. What is the greatest number of scrapbook pages that Aylin can create?", - "Output Program": [ - "import math\nans=math.gcd(18,20)\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "An airplane hangar is 300 feet long. How many planes can fit into it, end to end, if each plane is 40 feet long?", - "Output Program": [ - "ans=300//40\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt saw 2 dogs and 2 chickens. How many animal legs did she see?", - "Output Program": [ - "ans=(4+4)+(2+2)\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "Carol was sending out birthday invitations to her friends. If each package of invitations she bought had 9 invitations in it and she bought 5 packs, how many friends can she invite?", - "Output Program": [ - "ans=9*5\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "dev" - }, - { - "Input": "A movie theater needed four hundred twenty-six popcorn buckets. If each package has eight buckets in it, how many packages will they need to buy?", - "Output Program": [ - "ans=426//8+1\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "dev" - }, - { - "Input": "There was 1,050 ml of tea in a pot. Anna poured the tea into some cups. If there were 65 ml of tea in each cup, how many cups were filled with tea?", - "Output Program": [ - "ans=1050//65\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": "An airline lets each passenger take eight pieces of luggage. If there were four people flying, how many bags could they take?", - "Output Program": [ - "ans=8*4\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "dev" - }, - { - "Input": "If Lillian split 20 Skittles between 8 people in her class and kept the left overs, how many Skittles did each classmate get?", - "Output Program": [ - "ans=20//8\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "Jane's dad brought home 24 marble potatoes. If Jane's mom made potato salad for lunch and served an equal amount of potatoes to Jane, herself and her husband, how many potatoes did each of them have?", - "Output Program": [ - "ans=24/3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Christmas is near. Mr. Anderson, president of Nice People Inc. organized a charity event to share happiness to the less fortunate people. The first thing that he did is to visit an orphanage. There he dressed up as Santa and gave toys to the children. If he gave 134 toy cars to the boys and 269 dolls to the girls, how many toys did he give to all?", - "Output Program": [ - "ans=134+269\nprint(ans)" - ], - "Output Answer": [ - "403" - ], - "split": "dev" - }, - { - "Input": "If each piece costs 18 cents, how much would 136 pieces of bubble gum cost?", - "Output Program": [ - "ans=136*18\nprint(ans)" - ], - "Output Answer": [ - "2448" - ], - "split": "dev" - }, - { - "Input": "A length of wire is cut into several smaller pieces. Each of the smaller pieces are bent into squares. Each square has a side that measures 2 centimeters. The total area of the smaller squares is 92 square centimeters. What was the original length of wire?", - "Output Program": [ - "ans=(92/(2*2))*(2*4)\nprint(ans)" - ], - "Output Answer": [ - "184" - ], - "split": "dev" - }, - { - "Input": "Debby had twelve pieces of candy. After eating some, she had three pieces. How many pieces did Debby eat?", - "Output Program": [ - "ans=12-3\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "If books came from all the 4 continents that Bryan had been into and he collected 122 books per continent, how many books does he have from all 4 continents combined?", - "Output Program": [ - "ans=4*122\nprint(ans)" - ], - "Output Answer": [ - "488" - ], - "split": "dev" - }, - { - "Input": "Before she went home, she bought t-shirts, key chains and handmade bracelets as souvenirs. She spent $347.00 on key chains and bracelets which is $146.00 more than she spent on t-shirts. How much money did she spend on all the souvenirs?", - "Output Program": [ - "ans=(347-146)+347\nprint(ans)" - ], - "Output Answer": [ - "548" - ], - "split": "dev" - }, - { - "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": [ - "ans=(44+44)-20\nprint(ans)" - ], - "Output Answer": [ - "68" - ], - "split": "dev" - }, - { - "Input": "Cindy's mom baked 1215 cookies. Paul's dad baked 1112 cookies. They both brought them to school for a party. How many cookies did they have altogether?", - "Output Program": [ - "ans=1215+1112\nprint(ans)" - ], - "Output Answer": [ - "2327" - ], - "split": "dev" - }, - { - "Input": "Next on his list is the city's Orphanage for Young Girls. He bought roses, lilies, sunflowers and daisies. If he bought 40 pieces of each flower, how many flowers did the orphanage receive?", - "Output Program": [ - "ans=4*40\nprint(ans)" - ], - "Output Answer": [ - "160" - ], - "split": "dev" - }, - { - "Input": "A rectangle had a length of 2 inches and a width of 4 inches. What is the area of the rectangle?", - "Output Program": [ - "ans=2*4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Cody was helping his mom wash clothes. They washed 4 short sleeve shirts and 5 long sleeve shirts. How many shirts did they wash total?", - "Output Program": [ - "ans=4+5\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "You want to share 34 pencils among 6 friends. How many would each friend get?", - "Output Program": [ - "ans=34//6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Lastly, Rob compared Canada's CN Tower and Seattle's Space Needle. How tall is the Space Needle if the CN Tower stands at 553 m high and it is taller than the Space Needle by 369 m?", - "Output Program": [ - "ans=553-369\nprint(ans)" - ], - "Output Answer": [ - "184" - ], - "split": "dev" - }, - { - "Input": "A pet store had six kittens. If they got another three kittens, how many would they have total?", - "Output Program": [ - "ans=6+3\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "Joe, Susie's brother, collected all 94 trading cards scattered in his room and placed them in boxes. If a full box can hold a maximum of 8 cards, how many cards are there in the unfilled box?", - "Output Program": [ - "ans=94%8\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": "Mrs. Hilt has $10. She spends $3 on a toy truck and $2 on a pencil case. How much money does she have left?", - "Output Program": [ - "ans=10-(3+2)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "A pet store had forty-five puppies. In one day they sold thirty-nine of them and put the rest into cages with two in each cage. How many cages did they use?", - "Output Program": [ - "ans=(45-39)/2\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "Adam has $5.00 to buy an airplane that costs $4.28. How much change will he get?", - "Output Program": [ - "ans=5.00-4.28\nprint(ans)" - ], - "Output Answer": [ - "0.72" - ], - "split": "dev" - }, - { - "Input": "An electronics store had 163 video games. If they put them on shelves with 84 on each shelf, about how many shelves would they need?", - "Output Program": [ - "ans=163//84+1\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "During Halloween, she was able to get a lot of candies from trick or treating. She decided to give away some of them to the homeless kids nearby. If she has 60 candies and gave away 40, how many does she have left?", - "Output Program": [ - "ans=60-40\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "dev" - }, - { - "Input": "A worker needs to cut a 27-yard long rope into some long pieces at 4 yard each and some short pieces at 1 yard each. In order to make the least number of pieces, how many short pieces should be cut for?", - "Output Program": [ - "ans=27%4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "The weight of 5 diamonds is 100 g. The total weight of 4 diamonds and 2 jades is 140 g. How much heavier is a jade than a diamond?", - "Output Program": [ - "ans=((140-(100/5)*4)/2)-(100/5)\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "dev" - }, - { - "Input": "Mayor Harvey wanted to add color to the party. He bought 7 flowers each representing the 7 colors of the rainbow. If he had 70 bouquets of flowers for each color, how many bouquets are there in all?", - "Output Program": [ - "ans=7*70\nprint(ans)" - ], - "Output Answer": [ - "490" - ], - "split": "dev" - }, - { - "Input": "Todd has some gum. Steve gave him 16 more pieces of gum. Now Todd has 54 pieces of gum. How many pieces did Todd have to start with?", - "Output Program": [ - "ans=54-16\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "dev" - }, - { - "Input": "At the produce store you can buy 2 bags of bananas for $12.46. How much would it cost if you were to buy 6 bags?", - "Output Program": [ - "ans=(12.46/2)*6\nprint(ans)" - ], - "Output Answer": [ - "37.38" - ], - "split": "dev" - }, - { - "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": [ - "ans=40-25+21\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "dev" - }, - { - "Input": "The Smart Mart sells educational toys. They sold 45 science kits last week. The sold 9 fewer puzzles than science kits. How many puzzles did the Smart Mart sell?", - "Output Program": [ - "ans=45-9\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "dev" - }, - { - "Input": "A furniture store had fifteen chairs. After selling some, there was three left. What's the difference between the number of chairs before selling and the left?", - "Output Program": [ - "ans=15-3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "You have 7 cookies and you ate 2 of them. How many cookies do you have left?", - "Output Program": [ - "ans=7-2\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "The Sweet Shop gets a new candy shipment every 35 days. There are 25 cases of chocolate bars. There are 55 cases of lollipops. How many cases of candy altogether?", - "Output Program": [ - "ans=25+55\nprint(ans)" - ], - "Output Answer": [ - "80" - ], - "split": "dev" - }, - { - "Input": "A group of 8 friends were playing a video game. In the game, each player started with 8 lives. How many lives did they have totaled?", - "Output Program": [ - "ans=8*8\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "dev" - }, - { - "Input": "The library has 75 science books. The second graders borrowed 18 of them. How many science books are left?", - "Output Program": [ - "ans=75-18\nprint(ans)" - ], - "Output Answer": [ - "57" - ], - "split": "dev" - }, - { - "Input": "There are 124 students making 3 stars each for the school wall. How many stars will they make all together?", - "Output Program": [ - "ans=124*3\nprint(ans)" - ], - "Output Answer": [ - "372" - ], - "split": "dev" - }, - { - "Input": "Chef Pillsbury's secret recipe requires 7 eggs for every 2 cups of flour. How many eggs will he need if he uses 8 cups of flour?", - "Output Program": [ - "ans=(7/2)*8\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "dev" - }, - { - "Input": "Because of an upcoming exam, Robyn will not be able to sell cookies on Tuesday. To make up for it, Lucy decided to do double the work to catch up. She sold 34 cookies on her first round and 27 on her second round. How many cookies were sold by Lucy?", - "Output Program": [ - "ans=34+27\nprint(ans)" - ], - "Output Answer": [ - "61" - ], - "split": "dev" - }, - { - "Input": "Ted has 15 candy bars. He wants to put them into 5 bags so there are the same number of candy bars in each bag. How many candy bars should go in each bag?", - "Output Program": [ - "ans=15/5\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "A square has a perimeter of 24 inches. What is the area of the square?", - "Output Program": [ - "ans=(24/4)**2\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "dev" - }, - { - "Input": "One zoo guide spoke to a group of 19 children. Another guide spoke to a group of 25 children. There are 22 guides at the zoo. How many children did the zoo guides speak to?", - "Output Program": [ - "ans=19+25\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "dev" - }, - { - "Input": "She also tried to get to know the teachers in the school. She found out that there are 7 departments in the school and each department has 20 teachers. How many teachers are there in total?", - "Output Program": [ - "ans=7*20\nprint(ans)" - ], - "Output Answer": [ - "140" - ], - "split": "dev" - }, - { - "Input": "Luke was putting his spare change into piles. He had five piles of quarters and five piles of dimes. If each pile had three coins in it, how many coins did he have total?", - "Output Program": [ - "ans=(5+5)*3\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": "15 students split 122 portfolios of paintings. Each student should get the same number of portfolios. How many portfolios of paintings will each of them get?", - "Output Program": [ - "ans=122//15\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "The sum of three consecutive numbers is 90. What is the smallest of the three numbers ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The first number\n# x+(x+1)+(x+2)=90\nsolution=solve([x+(x+1)+(x+2)-90], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "dev" - }, - { - "Input": "Samuel had 14 Skittles. If Samuel gave equal numbers of Skittles to his 4 friends and then he ate what was left, how many Skittles did each person eat?", - "Output Program": [ - "ans=14//4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "dev" - }, - { - "Input": "There were 86 trees in a park. 15 of them died and another 23 of them were cut. How many trees were still left?", - "Output Program": [ - "ans=86-15-23\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "dev" - }, - { - "Input": "Victor wanted to give each of his six friends an equal amount of candy. At the store he bought three hundred seventy-nine pieces total to give to them. How many more pieces should he have bought so he didn't have any extra?", - "Output Program": [ - "ans=6-379%6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "There are thirty-three rose bushes and thirty-seven oak trees currently in the park. Park workers will plant more rose bushes today. When the workers are finished there will be ninety-eight rose bushes in the park. How many rose bushes did the workers plant today ?", - "Output Program": [ - "ans=98-33\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "test" - }, - { - "Input": "Julian is writing a comic book. His story has 143 frames in all. If he wants to put exactly 11 frames on each page, how many pages would he have?", - "Output Program": [ - "ans=143/11\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "While completing a race, Ned spent 63 minutes walking. If his ratio of time walking to jogging was 9:1, how many minutes did he spend completing the race?", - "Output Program": [ - "ans=(10/9)*63\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "test" - }, - { - "Input": "There were fifty-eight people on the train. At the next stop forty-five people got off. How many people are there on the train now?", - "Output Program": [ - "ans=58-45\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "A chef was making soups. She made 2 bowls of chicken soup, 2 bowls of mushroom soup and 7 bowls of tomato soup. How many bowls of soup did she make total?", - "Output Program": [ - "ans=2+2+7\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "Since pizza is a favorite in Kevin's family, they also bought some. His sister bought 48 slices of pizza and his brother bought 48 as well. How many slices of pizza do they have for their neighbors if the family already ate 27 slices?", - "Output Program": [ - "ans=(48+48)-27\nprint(ans)" - ], - "Output Answer": [ - "69" - ], - "split": "test" - }, - { - "Input": "Savant has 3 jars. He puts in 34 coins in the first jar, 29 coins in the second jar and 13 coins in the third jar. How many coins does Savant save together?", - "Output Program": [ - "ans=34+29+13\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "test" - }, - { - "Input": "At the town carnival Billy rode the ferris wheel seven times and the bumper cars three times. If each ride cost five tickets, how many tickets did he use?", - "Output Program": [ - "ans=(7+3)*5\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "test" - }, - { - "Input": "Gwen prepared ninety-eight books to sell in the flea market. After the activity ended she had ninety-six books left. How many did she sell?", - "Output Program": [ - "ans=98-96\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Every day, Ryan spends 4 hours on learning English and 3 hours on learning Chinese. How many hours does he spend on learning English and Chinese in all?", - "Output Program": [ - "ans=4+3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Five years ago, Nancy was thrice as old as Sam. Ten years later, Nancy will be twice as old as Sam. How old are Nancy and Sam?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Sam's present age; y:Nancy's present age\n# y-5=3(x-5); y+10=2(x+10)\nsolution=solve([y-5-(3*(x-5)), y+10-(2*(x+10))], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "test" - }, - { - "Input": "Frank was reading through his favorite book. The book had 672 pages and it took Frank 2 days to finish the book. How many pages did he read per day?", - "Output Program": [ - "ans=672/2\nprint(ans)" - ], - "Output Answer": [ - "336" - ], - "split": "test" - }, - { - "Input": "Annie takes trick or treating seriously. So, days before Halloween, she makes sure that the details of her trick or treating are well planned. First, she wanted to find out the number of houses in her village. If the village has 5 houses per block and has a total of 9 blocks, how many houses are there in her village?", - "Output Program": [ - "ans=5*9\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "The sum of three consecutive odd numbers is one hundred twenty-three. What is the smallest of the three numbers ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The first number\n# x+(x+2)+(x+4)=123\nsolution=solve([x+(x+2)+(x+4)-123], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "39" - ], - "split": "test" - }, - { - "Input": "If five is subtracted from three times a certain number, the result is 10. What is the number?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The certain number\n# 3x-5=10\nsolution=solve([3*x-5-10], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "A new cookbook is becoming popular. The local bookstore ordered 4 copies in September, 6 copies in October, 8 copies in November, and 10 copies in December. If this pattern continues, how many copies will the bookstore order in January?", - "Output Program": [ - "lst=[4,6,8,10,12]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Mrs. Dalloway made 85 tarts. If she wants to fill 10 boxes with the same number of tarts, how many more tarts should she make?", - "Output Program": [ - "ans=85%10\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "A group of 4 children and 3 adults are going to the zoo. Child tickets cost $3, and adult tickets cost $6. How much will the zoo tickets cost in all?", - "Output Program": [ - "ans=(4*3)+(3*6)\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "Armand cuts a piece of wire into two smaller pieces that are in a ratio 7:5. The shorter piece is 40 cm. What was the length of the original piece of wire?", - "Output Program": [ - "ans=(12/5)*40\nprint(ans)" - ], - "Output Answer": [ - "96" - ], - "split": "test" - }, - { - "Input": "A museum had fourteen paintings. After they got rid of some, they had four left. What's the difference between the number of paintings before they got rid of and the left?", - "Output Program": [ - "ans=14-4\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "Ellen has six more balls than Marin. Marin has nine balls. How many balls does Ellen have?", - "Output Program": [ - "ans=6+9\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "Vanessa had to complete 3 pages of homework. Each page had 4 problems on it. How many problems did she have to complete total?", - "Output Program": [ - "ans=3*4\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "A small school has 55 students. If 10 of the students are boys, what is the ratio of girls to boys?", - "Output Program": [ - "from fractions import Fraction\ndif=55-10\nfrac=Fraction(dif,10)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "9:2" - ], - "split": "test" - }, - { - "Input": "Billy bought five boxes of books at a yard sale. If each box had seven books, how many books did he buy?", - "Output Program": [ - "ans=5*7\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "test" - }, - { - "Input": "There are 28 students in Mrs. Riley's class but she only has 19 pencils. How many more pencils does Mrs. Riley need?", - "Output Program": [ - "ans=28-19\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "A box of cupcakes cost $six. If you had eight hundred twenty-one dollars and bought as many boxes as you could, how much money would you have left?", - "Output Program": [ - "ans=821%6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "A store has fifty-six shirts. Later they got in eleven more shirts. How many shirts does the store have now?", - "Output Program": [ - "ans=56+11\nprint(ans)" - ], - "Output Answer": [ - "67" - ], - "split": "test" - }, - { - "Input": "If the second angle is 32 degree less than thrice the first angle and the third angle is 28 degree less than twice the first angle. Find the angles of the triangle.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The first angle; y:The second angle\n# y=3x-32; 180-(x+y)=2x-28\nsolution=solve([y-(3*x-32), 180-(x+y)-(2*x-28)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "There are 396 students going to a trivia competition. If each school van can hold 9 students, how many vans will they need?", - "Output Program": [ - "ans=396/9\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "test" - }, - { - "Input": "The wolves, though accustomed to cold weather, also wanted to move away from the incoming winter. If there are 43 packs of wolves living in the forest and 31 packs went away, how many wolf packs were left in the forest?", - "Output Program": [ - "ans=43-31\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Juan purchased 6 soccer jerseys for $105, how much would 12 soccer jerseys cost?", - "Output Program": [ - "ans=(105/6)*12\nprint(ans)" - ], - "Output Answer": [ - "210" - ], - "split": "test" - }, - { - "Input": "Sandy had twenty-six pet fish. She bought six more fish. How many pet fish does Sandy have now?", - "Output Program": [ - "ans=26+6\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "Olivia owned ninety-three pennies. After she bought an apple, she had fifty-six pennies left. How many did she spend for the apple?", - "Output Program": [ - "ans=93-56\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "test" - }, - { - "Input": "When they arrived at HappyLand, they immediately went in and bought their tickets. If each ticket cost $17.00 and they bought 8 tickets, how much did they spend on tickets?", - "Output Program": [ - "ans=17*8\nprint(ans)" - ], - "Output Answer": [ - "136" - ], - "split": "test" - }, - { - "Input": "For Halloween Isabel received sixteen pieces of candy from neighbors and five pieces from her older sister. If she only ate three pieces a day, how long would the candy last her?", - "Output Program": [ - "ans=(16+5)/3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Cody made 12 dollars mowing lawns over the summer. If he charged 4 bucks for each lawn, how many lawns did he mow?", - "Output Program": [ - "ans=12/4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "A candy store has 6 boxes of chocolates. Each box has 500 pieces. How many pieces are there altogether in the 6 boxes?", - "Output Program": [ - "ans=6*500\nprint(ans)" - ], - "Output Answer": [ - "3000" - ], - "split": "test" - }, - { - "Input": "Christine is dividing cherries among some bowls. She put 35 cherries in the first bowl, 40 cherries in the second bowl, 45 cherries in the third bowl, 50 cherries in the fourth bowl, and 55 cherries in the fifth bowl. If this pattern continues, how many cherries will Christine put in the sixth bowl?", - "Output Program": [ - "lst=[35,40,45,50,55,60]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "test" - }, - { - "Input": "A farmer planted 2 tomato seeds, 10 cucumber seeds and 3 pumpkin seeds. How many seeds did he plant all together?", - "Output Program": [ - "ans=2+10+3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "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": [ - "ans=(4+11)-11\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Marcus has 210 baseball cards. He has 58 more than Carter. How many baseball cards does Carter have?", - "Output Program": [ - "ans=210-58\nprint(ans)" - ], - "Output Answer": [ - "152" - ], - "split": "test" - }, - { - "Input": "David spent 74 cents. He bought a ruler for 29 cents and a folder for 25 cents. He also bought 2 pencils. How much does one pencil cost?", - "Output Program": [ - "ans=(74-(29+25))/2\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "Our watermelons have 100 seeds each. If we have 4 watermelons, how many seeds should there be when all seeds are taken out of the watermelons?", - "Output Program": [ - "ans=100*4\nprint(ans)" - ], - "Output Answer": [ - "400" - ], - "split": "test" - }, - { - "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": [ - "ans=42-25+30\nprint(ans)" - ], - "Output Answer": [ - "47" - ], - "split": "test" - }, - { - "Input": "Warren ran 1 lap on Wednesday, 2 laps on Thursday, 4 laps on Friday, 8 laps on Saturday, and 16 laps on Sunday. If this pattern continues, how many laps will Warren run on Monday?", - "Output Program": [ - "lst=[1,2,4,8,16,32]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "Two numbers are in the ratio 5:7. The difference between the numbers is 12. What is the larger number?", - "Output Program": [ - "ans=(7/2)*12\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt had $4,000 in her savings account. She earned 10% interest each year. If she left that money in the account for one year, how much will she have in the account at the end of that year?", - "Output Program": [ - "ans=4000+(4000*0.1*1)\nprint(ans)" - ], - "Output Answer": [ - "4400" - ], - "split": "test" - }, - { - "Input": "94 students signed up for computer classes. There were 24 second graders and 29 third graders. The rest of the students were fourth graders. How many fourth graders took computer classes?", - "Output Program": [ - "ans=94-24-29\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "test" - }, - { - "Input": "Katie had seventy-two DS games and her friend had twenty-three games. How many do they have total?", - "Output Program": [ - "ans=72+23\nprint(ans)" - ], - "Output Answer": [ - "95" - ], - "split": "test" - }, - { - "Input": "The book store is very busy today. There are 25 children listening to a story. 36 people are shopping for books. 17 people are at the checkout counter. How many people are at the bookstore?", - "Output Program": [ - "ans=25+36+17\nprint(ans)" - ], - "Output Answer": [ - "78" - ], - "split": "test" - }, - { - "Input": "Carl, on the other hand, was able to collect 74 stamps which are 36 more than what Mark was able to collect. How many stamps was Mark able to collect?", - "Output Program": [ - "ans=74-36\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "A P.E. teacher needs to divide 14 male students and 7 female students into teams, each with the same combination of male students and female students and nobody left out. What is the greatest number of teams that can be formed?", - "Output Program": [ - "import math\nans=math.gcd(14,7)\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "My car gets 20 miles per gallon. How many miles can I drive on 5 gallons of gas?", - "Output Program": [ - "ans=20*5\nprint(ans)" - ], - "Output Answer": [ - "100" - ], - "split": "test" - }, - { - "Input": "A committee organizing a marathon has 16 jugs of water and 12 jugs of sports drink. The committee would like to set up a number of refreshment stations along the marathon course, with the same combination of jugs of water and jugs of sports drink at each station, with no beverages left over. What is the greatest number of refreshment stations that can be set up?", - "Output Program": [ - "import math\nans=math.gcd(16,12)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "They served a total of 179 adults and 141 children, if 156 of all the people they served are male, how many are female?", - "Output Program": [ - "ans=(179+141)-156\nprint(ans)" - ], - "Output Answer": [ - "164" - ], - "split": "test" - }, - { - "Input": "Lastly, she donated $800.00 to three different soup kitchens in her town. If she gave $300.00 to the first soup kitchen and $238.00 to the second, how much did she donate to the third?", - "Output Program": [ - "ans=800-(300+238)\nprint(ans)" - ], - "Output Answer": [ - "262" - ], - "split": "test" - }, - { - "Input": "Oliver won 11 tickets playing games at the arcade. If he spent 5 tickets buying a water gun, how many tickets did he still have?", - "Output Program": [ - "ans=11-5\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "A post office has five hundred eighty-two pieces of junk mail they want to split evenly between seven mail trucks. How many extra pieces of junk mail will they have if they give each truck the same amount?", - "Output Program": [ - "ans=582%7\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "Paige had a sheet of paper that was 9 inches long and 10 inches wide. What is the area of the paper?", - "Output Program": [ - "ans=9*10\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "Input": "Tommy has $79. He wants to buy a $35 camera. He also wants to buy a $59 CD player. How much more money does Tommy need?", - "Output Program": [ - "ans=35+59-79\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "A clown needed two hundred twenty-seven balloons for a party he was going to, but the balloons only came in packs of two. How many packs of balloons would he need to buy?", - "Output Program": [ - "ans=227//2+1\nprint(ans)" - ], - "Output Answer": [ - "114" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt baked pies last weekend for a holiday dinner. She baked 16 pecan pies and 14 apples pies. If she wants to arrange all of the pies in rows of 5 pies each, how many rows will she have?", - "Output Program": [ - "ans=(16+14)/5\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Omar loves to play checkers. He played 37 games yesterday. He played 49 games today. Omar lost 18 games. How many games did he win?", - "Output Program": [ - "ans=37+49-18\nprint(ans)" - ], - "Output Answer": [ - "68" - ], - "split": "test" - }, - { - "Input": "Martha is buying 18 packs of pencils and 14 packs of pens from the store. If Martha wishes to purchase the same number of pencils as pens, what is the smallest number of pens that she can buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([18,14])\nprint(ans)" - ], - "Output Answer": [ - "126" - ], - "split": "test" - }, - { - "Input": "One-third of a number minus seven gives eight. Find the number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number\n# (1/3)*x-7=8\nsolution=solve([(1/3)*x-7-8], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "A waiter had five tables he was waiting on, with five women and three men at each table. How many customers total did the waiter have?", - "Output Program": [ - "ans=(5+3)*5\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Paul bought six boxes of chocolate candy and four boxes of caramel candy. If each box has nine pieces inside it, how much candy did he have total?", - "Output Program": [ - "ans=(6+4)*9\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "Input": "Dylan the Dog prepared 241 hotdog sticks in a brown bag. His father placed 426 more hotdog sticks in the same brown bag. How many hotdog sticks did Dylan and his father place in the brown bag?", - "Output Program": [ - "ans=241+426\nprint(ans)" - ], - "Output Answer": [ - "667" - ], - "split": "test" - }, - { - "Input": "While shopping for music online, Zoe bought three country albums and five pop albums. Each album came with a lyric sheet and had three songs. How many songs did Zoe buy total?", - "Output Program": [ - "ans=(3+5)*3\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "Their last stop before leaving the zoo is the bird museum. There, they went through 7 bird exhibits, spending 9 minutes going around each exhibit. How much time did they spend going through the museum?", - "Output Program": [ - "ans=7*9\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "test" - }, - { - "Input": "There are thirty-eight dogwood trees currently in the park. Park workers will plant more dogwood trees today. When the workers are finished there will be fifty-six dogwood trees in the park. How many dogwood trees did the workers plant today ?", - "Output Program": [ - "ans=56-38\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "There are 3 spiders. How many spider legs are there?", - "Output Program": [ - "ans=3*8\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "The rest of the kids around town got 13 more eggs around the club house, 9 eggs around the park and 8 eggs in the town hall garden. If we add all the eggs that they got, how many eggs would that be?", - "Output Program": [ - "ans=13+8+9\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "Another material that he needs is rope. If he already has 6 feet of rope and he needs additional ropes having 5 times the length of what he already have, how long should be the additional rope?", - "Output Program": [ - "ans=6*5\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "Betty has 367 beads and wants to use all the beads to make necklaces. If she wants to make 15 necklaces with each having the same number of beads, how many more beads does she need?", - "Output Program": [ - "ans=15-367%15\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "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": [ - "ans=(5-3)*5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "A transport company bought 95 tons of oil. A large barrel can hold 6 tons of oil and a small barrel can hold 5 tons of oil. In order to use the least number of barrels and have every barrel fully occupied, how many large barrels should be used?", - "Output Program": [ - "ans=95//6\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "If Tom plans to fix 158 watches at the rate of 12 watches per day, how many days does he need to fix the watches?", - "Output Program": [ - "ans=158//12+1\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "It's basketball season in Ashford Elementary School. Chuck, the team captain of the Blue Team is feeling nervous about it. Their first opponent is the Red Team, composed of other 3rd graders, gave them a hard time. If they lost by 13 points and the Red Team scored 61 points, what is their team's final score?", - "Output Program": [ - "ans=61-13\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "test" - }, - { - "Input": "There are 72 boys and 90 girls on the math team. For the next math competition, Mr. Johnson would like to arrange all of the students in equal rows with only girls or only boys in each row. What is the greatest number of students that can be in each row?", - "Output Program": [ - "import math\nans=math.gcd(72,90)\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "If you have 1 ten dollar bill, 1 quarter and 1 nickel, how much money do you have?", - "Output Program": [ - "ans=(1*10*100+1*25+1*5)/100\nprint(ans)" - ], - "Output Answer": [ - "10.3" - ], - "split": "test" - }, - { - "Input": "Gwen's hair was twenty-eight centimeters long. After a haircut it was seventeen centimeters long. How much did she cut off?", - "Output Program": [ - "ans=28-17\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "When relatives visit Haley and her family, she and her cousins do origami. If she has 48 origami papers to give away to her six cousins, how many will each receive if she gives everyone the same number of origami papers?", - "Output Program": [ - "ans=48/6\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Tripp and Charlotte are going on a 36 mile hike. Tripp's backpack weighs 25 pounds. Charlotte's backpack weighs 18 pounds. They hiked 9 miles the first day. What's the difference between the pounds of backpack of Tripp and Charlotte?", - "Output Program": [ - "ans=25-18\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Rafaela is a physical education teacher and has 25 girls and 35 boys in her class. She wants to divide the class into teams of the same size, where each team has the same number of girls and the same number of boys. If Rafaela creates the greatest number of teams possible, how many boys will be on each team?", - "Output Program": [ - "import math\ngcd=math.gcd(25,35)\nans=35/gcd\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Dennis has 4028 pencils stored in boxes. If the are 53 boxes, how many pencils must go in each box?", - "Output Program": [ - "ans=4028/53\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "test" - }, - { - "Input": "Carol had eighty-one pieces of paper in her folder. After a week she had thirty-eight left. How many pieces did she use in the week?", - "Output Program": [ - "ans=81-38\nprint(ans)" - ], - "Output Answer": [ - "43" - ], - "split": "test" - }, - { - "Input": "86 students are going hiking. Each school- bus can take 9 students. How many students are left?", - "Output Program": [ - "ans=86%9\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "While exercising Paul did fifty-nine push-ups in the morning and thirty-eight more in the afternoon. How many push-ups did Paul do total?", - "Output Program": [ - "ans=59+38\nprint(ans)" - ], - "Output Answer": [ - "97" - ], - "split": "test" - }, - { - "Input": "Bobby has 142 books. Kristi has 78 books. What's the difference of the number of Bobby's books and Kristi's books?", - "Output Program": [ - "ans=142-78\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "test" - }, - { - "Input": "The ice rink has 85 pairs of skates to rent. 18 people rented skates when the ice rink opened. 25 more people rented skates during the first hour. How many pairs of skates are left?", - "Output Program": [ - "ans=85-18-25\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "Jack loves to collect and read books. In fact, he has a mini-library in their house and he usually spends most of his time in it. The library is divided into different sections for different type of books. The science fiction section has 8 books. If each book has 478 pages, how many pages do all the 8 books have in total?", - "Output Program": [ - "ans=8*478\nprint(ans)" - ], - "Output Answer": [ - "3824" - ], - "split": "test" - }, - { - "Input": "A pizza store had 11 pieces of pepperoni to put on their pizzas. If each pizza got 2 pieces, how many extra pieces of pepperoni would they have?", - "Output Program": [ - "ans=11%2\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "Her friends are coming over the next day so she also bought some refreshments. If she has $50.00 left from the money she had after buying cookies, and she has $69.00 before, how much did she spend on juice?", - "Output Program": [ - "ans=69-50\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - }, - { - "Input": "Robert made $76 at work. He spent $6 on a pen and $14 for a calculator. How much money did he have left?", - "Output Program": [ - "ans=76-6-14\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "If one pack of gum costs $2, how many packs of gum can you buy with $16?", - "Output Program": [ - "ans=16/2\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "A pet store had seven Siamese cats. If they sold four of them, how many cats did they still have?", - "Output Program": [ - "ans=7-4\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "Maria and her sister want to buy a present for their mother. Maria has $17. Her sister has double that amount. They want to buy their mom a coat that costs $80. How much more money do they need?", - "Output Program": [ - "ans=80-(17+17*2)\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "test" - }, - { - "Input": "Crackers come in packages of 18. Betty ate 45 crackers. How many crackers does she have left?", - "Output Program": [ - "ans=45%18\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "The music room has 27 violins. There are also 15 flutes. 18 students are in the school band. How many instruments are in the music room?", - "Output Program": [ - "ans=27+15\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "At the arcade Billy had won forty-eight tickets. After buying a yoyo he had thirty-two tickets left. How many tickets did the yoyo cost?", - "Output Program": [ - "ans=48-32\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "test" - }, - { - "Input": "Tom bought sixty-three tickets at the state fair. He spent fourteen tickets at the 'dunk a clown' booth and decided to use the rest on rides. If each ride cost seven tickets, how many rides could he go on?", - "Output Program": [ - "ans=(63-14)/7\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Five red peaches and 14 green peaches are in the basket. How many peaches are in the basket?", - "Output Program": [ - "ans=5+14\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - }, - { - "Input": "When Jose rode on a bus, he noticed some people sitting. At the next bus stop, 5 people got on and 2 people got off. Two stops later, 7 people got on 15 people got off the bus at the terminal station. How many people were in the bus when Jose got on the bus?", - "Output Program": [ - "ans=15-7+2-5\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Shaquira is baking cookies to put in packages for a fundraiser. Shaquira has made 86 chocolate chip cookies and 42 sugar cookies. Shaquira wants to create identical packages of cookies to sell, and she must use all of the cookies. What is the greatest number of identical packages that Shaquira can make?", - "Output Program": [ - "import math\nans=math.gcd(86,42)\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Dean knew that they are going to stay at the beach for a while, so he brought 30 sets of clothes for every week of their stay. If Dean is staying for 4 weeks there, how many sets of clothes did he bring?", - "Output Program": [ - "ans=30*4\nprint(ans)" - ], - "Output Answer": [ - "120" - ], - "split": "test" - }, - { - "Input": "Miki bought 4 packs of red bouncy balls and 3 packs of yellow bouncy balls. Each package contained 7 bouncy balls. How many more packs of red bouncy balls than yellow bouncy balls did Miki buy?", - "Output Program": [ - "ans=4-3\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "J.T. has some superhero trading cards. He lost 14 of them. He gave 19 of them to his best friend. Now he has 45 cards left. How many cards did J.T. have at first?", - "Output Program": [ - "ans=45+14+19\nprint(ans)" - ], - "Output Answer": [ - "78" - ], - "split": "test" - }, - { - "Input": "When he arrived there, he went on to climb to the top of the falls. It usually takes 30 minutes for someone to get to the top. Stanley took time to see the view so his climb took 7 times longer than the usual. How many minutes did it take Stanley to get to the top?", - "Output Program": [ - "ans=30*7\nprint(ans)" - ], - "Output Answer": [ - "210" - ], - "split": "test" - }, - { - "Input": "Matthew and Billie went apple picking. Matthew found 46 big, red apples. Billie found some as well. Together they found 80 apples. How many apples did Billie find?", - "Output Program": [ - "ans=80-46\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "test" - }, - { - "Input": "A shoe store was having a back to school sale where you could buy 2 pairs of shoes for $23.10. If a large family decided to buy 7 pairs of shoes, how much would it cost them?", - "Output Program": [ - "ans=(23.10/2)*7\nprint(ans)" - ], - "Output Answer": [ - "80.85" - ], - "split": "test" - }, - { - "Input": "For a birthday party a clown gave away six balloons. Now he has fifty-five balloons left. How many balloons did the clown have to start with?", - "Output Program": [ - "ans=6+55\nprint(ans)" - ], - "Output Answer": [ - "61" - ], - "split": "test" - }, - { - "Input": "Jordon has a different kind of number machine. Her machine doubles the number and adds 3 more. So when Jordon put in 25, the number 53 came out of the machine. Jordon put in the number 16. What number do you think came out of her machine?", - "Output Program": [ - "ans=(16*2)+3\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "test" - }, - { - "Input": "Mona is having a party at her house to celebrate her birthday. She invited some friends and family. Mona prepared rainbow colored cupcakes for dessert. If she made 7 sets for each of the 7 colors of the rainbow and each set has 6 cupcakes, how many cupcakes did Mona prepare in total?", - "Output Program": [ - "ans=7*6\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "Cheryl and Lori started a lemonade stand on Friday. They bought 85 plastic cups. They sold a lot of lemonade and only had 18 cups left. How many cups did Cheryl and Lori use?", - "Output Program": [ - "ans=85-18\nprint(ans)" - ], - "Output Answer": [ - "67" - ], - "split": "test" - }, - { - "Input": "It takes 7 minutes to bake one pan of cookies. How long will it take to bake 4 pans of cookies?", - "Output Program": [ - "ans=7*4\nprint(ans)" - ], - "Output Answer": [ - "28" - ], - "split": "test" - }, - { - "Input": "Sean has 223 whistles. He has 95 more whistles that Charles. How many whistles does Charles have?", - "Output Program": [ - "ans=223-95\nprint(ans)" - ], - "Output Answer": [ - "128" - ], - "split": "test" - }, - { - "Input": "A regular octagon whose sides measure 3 ft each. Find the perimeter.", - "Output Program": [ - "ans=8*3\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "The very first thing that Rachel tried when they reached England was the food. If she ate 276 grams of bacon and 147 grams of sausages, how much food did she eat in total?", - "Output Program": [ - "ans=276+147\nprint(ans)" - ], - "Output Answer": [ - "423" - ], - "split": "test" - }, - { - "Input": "Mr. Peter harvested some pears. He picked 43 kg of the pears into a bag and 35 kg of the pears into another bag. If there were still 15 kg of pears left unpacked, how many kilograms of pears did Mr. Peter harvest?", - "Output Program": [ - "ans=43+35+15\nprint(ans)" - ], - "Output Answer": [ - "93" - ], - "split": "test" - }, - { - "Input": "Chloe was making baggies of cookies with seven cookies in each bag. If she had thirty-four chocolate chip cookies and twenty-nine oatmeal cookies, how many baggies could she make?", - "Output Program": [ - "ans=(29+34)/7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "Matthew had 27 crackers. If Matthew gave equal numbers of crackers to his 9 friends, how many crackers did each person eat?", - "Output Program": [ - "ans=27/9\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "Sarah is making bead necklaces. She has 945 beads and is making 7 necklaces with each necklace using the same number of beads. How many beads will each necklace use?", - "Output Program": [ - "ans=945/7\nprint(ans)" - ], - "Output Answer": [ - "135" - ], - "split": "test" - }, - { - "Input": "Fred bought five new baseball trading cards to add to his collection. The next day his dog ate half of his collection. There are now only twenty-six cards left. How many cards did Fred start with ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The number of cards that Fred started with\n# (x+5)-(x+5)/2=26\nsolution=solve([(x+5)-(x+5)/2-26], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "47" - ], - "split": "test" - }, - { - "Input": "For the walls of the house, he would use 9 large planks of wood. If each plank of wood needs 8 pieces of nails to be secured, how many nails does John need for the house wall?", - "Output Program": [ - "ans=9*8\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "test" - }, - { - "Input": "A bee has 6 legs. How many legs do 8 bees have?", - "Output Program": [ - "ans=6*8\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "test" - }, - { - "Input": "Rachel bought some wrapping paper for Christmas that was 4 feet long and with an area of 20 square feet. What is the width of the wrapping paper?", - "Output Program": [ - "ans=20/4\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "If Lewis earns $1367.00 every week during the 5 weeks of harvest. How much money does he earn during harvest season?", - "Output Program": [ - "ans=1367*5\nprint(ans)" - ], - "Output Answer": [ - "6835" - ], - "split": "test" - }, - { - "Input": "A state seal, which is round, hangs in the capitol building. It has a diameter of 2 meters. What is the seal's area?", - "Output Program": [ - "ans=(2/2)**2*3.14\nprint(ans)" - ], - "Output Answer": [ - "3.14" - ], - "split": "test" - }, - { - "Input": "For Paige's birthday she received 2 dollars from her friends and 3 dollars from her relatives. How much money did she get for her birthday?", - "Output Program": [ - "ans=2+3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Jared owns a hardware store and is looking over his past orders. Jared's hardware store ordered 5 power drills in January, 6 power drills in February, 8 power drills in March, and 11 power drills in April. If this pattern continues, how many power drills will the store order in May?", - "Output Program": [ - "lst=[5,6,8,11,15]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "Cheryl counted 16 lemons. Lori bought 28 more lemons. How many lemons do the girls have altogether?", - "Output Program": [ - "ans=16+28\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "test" - }, - { - "Input": "At the fair Rachel spent 2 dollars on rides, 8 dollars on games and 2 dollars on food. How much money did she spend total?", - "Output Program": [ - "ans=2+8+2\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Thirty dogs are barking. Ten more dogs start to bark. How many dogs are barking?", - "Output Program": [ - "ans=30+10\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Jae bought 12 cartons of ice cream and 3 cartons of yogurt. Each carton of ice cream cost $9 and each carton of yogurt cost $2. How much more did Jae spend on ice cream than on yogurt?", - "Output Program": [ - "ans=(12*9)-(3*2)\nprint(ans)" - ], - "Output Answer": [ - "102" - ], - "split": "test" - }, - { - "Input": "A teacher is to arrange 60 boys and 72 girls in rows. He wishes to arrange them in such a way that only boys or girls will be there in a row. Find the greatest number of students that could be arranged in a row.", - "Output Program": [ - "import math\nans=math.gcd(60,72)\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "The following month, the four friends met again to share their collections. Carl, having the most number of stamps among all of them decided to give away some of his collections. If he has 96 stamps during that month, and he gave away 48, how many stamps were left with him?", - "Output Program": [ - "ans=96-48\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "test" - }, - { - "Input": "58 children are taking a bus to the zoo. They sit 2 children in every seat. How many seats will the children need in all?", - "Output Program": [ - "ans=58/2\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "test" - }, - { - "Input": "Tess is writing a poem. She writes 23 words on the first line, 26 words on the second line, 29 words on the third line, 32 words on the fourth line, and 35 words on the fifth line. If this pattern continues, how many words will Tess write on the sixth line?", - "Output Program": [ - "lst=[23,26,29,32,35,38]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "Zoe was unboxing some of her old winter clothes. She found eight boxes of clothing and inside each box there were four scarves and six mittens. How many pieces of winter clothing did Zoe have total?", - "Output Program": [ - "ans=(4+6)*8\nprint(ans)" - ], - "Output Answer": [ - "80" - ], - "split": "test" - }, - { - "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": [ - "ans=(5-3)*2\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Shelby had 92 pieces of candy. She gave 4 pieces each to 9 friends. How many pieces of candy does Shelby have left?", - "Output Program": [ - "ans=92-(4*9)\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "Mrs. Wong had 30 Valentines. She gave 8 Valentines to her children. How many does she have left?", - "Output Program": [ - "ans=30-8\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "test" - }, - { - "Input": "During the first 6 hours of the fair there were the following number of customers: 58, 58, 62, 55, 49 and 48. What is the mean of the number of customers?", - "Output Program": [ - "ans=(58+58+62+55+49+48)/6\nprint(ans)" - ], - "Output Answer": [ - "55" - ], - "split": "test" - }, - { - "Input": "Tiffany was buying sodas for her and her friends. They needed nine sodas, but Tiffany bought seven extra. How many did she buy?", - "Output Program": [ - "ans=9+7\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "test" - }, - { - "Input": "Next, she went to a country full of mountains. There she saw 532 species of insects, reptiles and birds. If she saw 253 insect species and 143 bird species, how many reptile species did she see?", - "Output Program": [ - "ans=532-(253+143)\nprint(ans)" - ], - "Output Answer": [ - "136" - ], - "split": "test" - }, - { - "Input": "At the arcade Amy had 6 tickets she saved from the last time she went. This time she played a game 7 times and earned 5 tickets each time she played. How many tickets does she have now?", - "Output Program": [ - "ans=7*5+6\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "test" - }, - { - "Input": "At a candy store, there are 3 brown candy boxes, 3 black candy boxes, and 2 blue candy boxes. If 5 boxes are bought, how many candy boxes are left?", - "Output Program": [ - "ans=3+3+2-5\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "At a store, there are 92 computers. 31 are sold. 20 are shipped away to a company. How many computers are left?", - "Output Program": [ - "ans=92-31-20\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt needs to share $3.75 equally among three total people. How much money will each person get?", - "Output Program": [ - "ans=3.75/3\nprint(ans)" - ], - "Output Answer": [ - "1.25" - ], - "split": "test" - }, - { - "Input": "Lemon heads come in packages of 5. Ann ate 78 Lemon Heads. How many Lemon Heads does she have left?", - "Output Program": [ - "ans=78%5\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "An airline has 41 pieces of luggage to put away. If each luggage compartment will hold 5 pieces of luggage, how many will be in the compartment that isn't full?", - "Output Program": [ - "ans=41%5\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "At the playground, the new sandbox was 4 meters wide and 2 meters long. What is the area of the sandbox?", - "Output Program": [ - "ans=4*2\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "There were six roses in the vase. Jessica cut some more roses from her flower garden. There are now eighteen roses in the vase. How many roses did she cut ?", - "Output Program": [ - "ans=18-6\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Penny's class is going to Animaland, the largest zoo on earth, for their science field trip. The zoo has a variety of wild animals in captivity. Their first destination was the aviary. The aviary has 3 species of eagles on show that day. They have 20 Bald Eagles, 15 Harpy Eagles, and 30 Crowned Eagles. How many eagles are on display that day?", - "Output Program": [ - "ans=20+15+30\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "test" - }, - { - "Input": "The school is planning a field trip. The school has 11 classrooms. There are 100 students in the school and 20 seats on each school bus. How many buses are needed to take the trip?", - "Output Program": [ - "ans=100/20\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Mike is serving vegetables at a soup kitchen. He has 15 carrot sticks and 10 baby potatoes that he wants to divide evenly, with no food left over. What is the greatest number of plates Mike can prepare?", - "Output Program": [ - "import math\nans=math.gcd(15,10)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "A waiter had eighteen customers. If six left, how many customers would the waiter still have?", - "Output Program": [ - "ans=18-6\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "A produce store offers red and green apples. In one morning they sold 77 apples total. If 7 of the apples they sold were red, what is the ratio of green apples sold to red apples sold?", - "Output Program": [ - "from fractions import Fraction\ndif=77-7\nfrac=Fraction(dif,7)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "10:1" - ], - "split": "test" - }, - { - "Input": "At a bus stop five people got off the bus. Now there were ninety people on the bus. What's the difference between the number of people getting off the bus and still on the bus?", - "Output Program": [ - "ans=90-5\nprint(ans)" - ], - "Output Answer": [ - "85" - ], - "split": "test" - }, - { - "Input": "A triangle has a perimeter of 90 cm. The lengths of the three sides are in the ratio 5:12:13. What is the length of the shortest side?", - "Output Program": [ - "ans=(90/(5+12+13))*5\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "Zoe picked five apples from her tree. Now the tree has six apples still on it. What's the difference between the number of apples Zoe picked and now the tree has?", - "Output Program": [ - "ans=6-5\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "Henry had $54. Later he sold some of his old toys and got another $2. How much money does he have total?", - "Output Program": [ - "ans=54+2\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "Molly had 14 candles on her birthday cake. She grew older and got 6 more on her birthday cake. How old is Molly now?", - "Output Program": [ - "ans=14+6\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "With flu season coming up, Lexi decides to make get-well-soon kits. She has 10 cans of chicken soup and 15 boxes of tissue, which she wants to use to make identical kits with no materials left over. What is the greatest number of get-well-soon kits Lexi can make?", - "Output Program": [ - "import math\nans=math.gcd(10,15)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Beside the pile of clean white paper was a stack of 700 sheets of used paper. She wants to place it in boxes for recycling. If every box can contain 100 sheets, how many boxes does she need?", - "Output Program": [ - "ans=700/100\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Ten years ago, the sum of the ages of two sons was one-third of their father's age. One son is two years older than the other and sum of their present ages is 14 years less than the father's present age. Find the present ages of all.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:A age of one of sons; y:The age of the father\n# x+(x+2)=y/3; x+(x+2)=y-14\nsolution=solve([x+(x+2)-(y/3), x+(x+2)-(y-14)], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "test" - }, - { - "Input": "A music teacher had 2 recorders, but she decided to buy 9 more boxes with each box having 3 recorders in it. How many recorders did she have after buying the 9 boxes?", - "Output Program": [ - "ans=9*3+2\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "test" - }, - { - "Input": "Olivia gave her cat two cheese cubes. Now Olivia has ninety-eight cheese cubes left. How many cheese cubes did Olivia have originally?", - "Output Program": [ - "ans=2+98\nprint(ans)" - ], - "Output Answer": [ - "100" - ], - "split": "test" - }, - { - "Input": "Mitch owns a business and assigns two of his employees their shifts. He assigns the first employee shifts in blocks of 2 hours, and he assigns the second worker shifts in blocks of 11 hours. If both workers must receive the same number of hours, what is the minimum number of hours each must be assigned?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([2,11])\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "test" - }, - { - "Input": "Betty also bought 140 shiny blue round stones. If 14 pieces of this stone is in each bracelet, how many bracelets of blue shiny round stones will there be?", - "Output Program": [ - "ans=140/14\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "Matthew goes hiking every 12 days and swimming every 6 days. He did both kinds of exercise today. How many days from now will he go both hiking and swimming again?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([12,6])\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "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": [ - "ans=15+48-12\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "test" - }, - { - "Input": "A parking lot has 35 empty space. If the ratio of empty spaces to taken spaces is 5:4, how many spaces are there total?", - "Output Program": [ - "ans=(9/5)*35\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "test" - }, - { - "Input": "To add support on the house's connections, he decided to tie the wood joints with rope. He needs 185 feet of rope. If he has 46 feet of rope with him and at the moment he only needed 57 feet, how many feet of rope did his friends give to him?", - "Output Program": [ - "ans=185-(57+46)\nprint(ans)" - ], - "Output Answer": [ - "82" - ], - "split": "test" - }, - { - "Input": "Jerry was selling his old games. He started out with sixty-eight but sold four of them. He packed the rest up putting eight games into each box. How many boxes did he have to use?", - "Output Program": [ - "ans=(68-4)/8\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "One bright sunny day, Betty decided to make bracelets from beautiful stones she bought from a local store. She bought 88 pink flower stones and wanted to make 8 bracelets out of these stones. How many pink flower stones will each bracelet have if she used the same number of stones in each bracelet?", - "Output Program": [ - "ans=88/8\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "John's dad bought four hundred fourteen meters of string. If he wanted to cut the string into pieces with each piece being seven meters long, how many full sized pieces could he make?", - "Output Program": [ - "ans=414//7\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "test" - }, - { - "Input": "4 birds are sitting on a branch. 1 flies away. How many birds are left on the branch?", - "Output Program": [ - "ans=4-1\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "Lana had eleven DS games. If she bought two more games, how many would she have total?", - "Output Program": [ - "ans=11+2\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Terry and Grace are building a gear machine. Terry used 37 building pieces. Grace used 45 pieces. How many building pieces did they use altogether?", - "Output Program": [ - "ans=37+45\nprint(ans)" - ], - "Output Answer": [ - "82" - ], - "split": "test" - }, - { - "Input": "Caitlin is on the 13th step of a giant slide. She walked down 4 steps to talk to her friend Dana. Then she walked up 12 steps to the top. How many steps does the giant slide have?", - "Output Program": [ - "ans=13-4+12\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "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": [ - "ans=(7-5)*5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "A flash drive could hold nine gigs of data. If you needed to store four hundred sixty-two gigs, how many flash drive would you need?", - "Output Program": [ - "ans=462//9+1\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "test" - }, - { - "Input": "With the win streak that they have, Chuck's team was able to get into the playoffs. They reached the semi-finals where they played against the Black Team. If they finished the game with 83 points and won it by 18 points, what is the Black Team's final score?", - "Output Program": [ - "ans=83-18\nprint(ans)" - ], - "Output Answer": [ - "65" - ], - "split": "test" - }, - { - "Input": "At the store beef jerky was $34.23 for 3 pounds. If you bought 7 pounds, how much would it cost?", - "Output Program": [ - "ans=(34.23/3)*7\nprint(ans)" - ], - "Output Answer": [ - "79.87" - ], - "split": "test" - }, - { - "Input": "Michelle likes to save money every now and then so that she has money to buy the things that she wants. One day, she decided to count her savings. She opened her piggy bank and sorted out the different coins and dollar bills. If she counted a total of 20 nickels (a nickel is equivalent to 5 cents), what is the total value of money does she have in nickels?", - "Output Program": [ - "ans=20*5\nprint(ans)" - ], - "Output Answer": [ - "100" - ], - "split": "test" - }, - { - "Input": "Alyssa has 30 books in her library. She bought several books at a yard sale over the weekend. She now has 88 books in her library. How many books did she buy at the yard sale ?", - "Output Program": [ - "ans=88-30\nprint(ans)" - ], - "Output Answer": [ - "58" - ], - "split": "test" - }, - { - "Input": "For the first main dish, they were asked to cook steak. If the third and second team cooked 240 plates of steak. And the first team cooked 75 plates less than what the second and third team made, how many steaks did they cook altogether?", - "Output Program": [ - "ans=(240-75)+240\nprint(ans)" - ], - "Output Answer": [ - "405" - ], - "split": "test" - }, - { - "Input": "The twins Ellie and Amy were able to locate 10 eggs around the club house, 4 eggs in the town hall garden and 6 more around the park. How many eggs do they have in total?", - "Output Program": [ - "ans=10+4+6\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "There are 2 American people, 4 French people and 4 Chinese people a meeting room. 3 of them leave. How many people are left the meeting room?", - "Output Program": [ - "ans=2+4+4-3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "A square piece of glass has an area of 64 square centimeters. How long is each side?", - "Output Program": [ - "ans=64**(1/2)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Mark, Dean's friend, decided to go for a boat ride. If the ride costs $8.00 for every mile and they travelled for 40 miles, how much would the ride cost Mark?", - "Output Program": [ - "ans=8*40\nprint(ans)" - ], - "Output Answer": [ - "320" - ], - "split": "test" - }, - { - "Input": "Lena had some pocket money. She lost $4 and her mom gave her $9. If she had $66 after that, how many dollars did Lena have at first?", - "Output Program": [ - "ans=66-9+4\nprint(ans)" - ], - "Output Answer": [ - "61" - ], - "split": "test" - }, - { - "Input": "Sam and Carlos are bowling with plastic pins in Sam's living room. Remarkably, Sam knocks down 8 pins on every bowl, and Carlos knocks down 9 pins on every bowl. At the end of the day, Sam and Carlos have knocked down the same total number of pins. What is the least number of total pins that Sam and Carlos could have each knocked down?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([8,9])\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "test" - }, - { - "Input": "During a senate campaign, a volunteer passed out a \"Vote for Hatfield\" button. The campaign button has a diameter of 8 centimeters. What is the button's circumference?", - "Output Program": [ - "ans=8*3.14\nprint(ans)" - ], - "Output Answer": [ - "25.12" - ], - "split": "test" - }, - { - "Input": "At the fair Haley went on six rides in the day and three at night. How many rides did Haley go on total?", - "Output Program": [ - "ans=6+3\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "Simon, Mark, Kevin, and Carl love collecting stamps. They meet up every month to compare and share their collections with each other. During the previous month, Kevin was able to collect 45 stamps while Simon was only able to collect 27. How many more stamps does Kevin have more than Simon?", - "Output Program": [ - "ans=45-27\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Daniel had some noodles. He gave 12 noodles to William. Now Daniel only has 54 noodles. How many noodles did Daniel have to begin with?", - "Output Program": [ - "ans=54+12\nprint(ans)" - ], - "Output Answer": [ - "66" - ], - "split": "test" - }, - { - "Input": "If Helen sold 12 boxes of Trefoils, how many cases of 12 boxes does Helen pickup from the cookie mom?", - "Output Program": [ - "ans=12/12\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "Andy had 31 baseball cards. His dad gave him some more. Then Andy had 50 baseball cards. How many baseball cards did Andy get from his dad?", - "Output Program": [ - "ans=50-31\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - }, - { - "Input": "The elephant had 407 peanuts. She ate 129 of them. How many peanuts did the elephant have left?", - "Output Program": [ - "ans=407-129\nprint(ans)" - ], - "Output Answer": [ - "278" - ], - "split": "test" - }, - { - "Input": "Kevin can mow a square lawn that is 30 meters of each side in 45 minutes. If he works at the same rate, how many minutes will it take Kevin to mow a square lawn that measures 60 meters on each side?", - "Output Program": [ - "ans=4*45\nprint(ans)" - ], - "Output Answer": [ - "180" - ], - "split": "test" - }, - { - "Input": "There are sixty-four pigs in the barn. Some more come to join them. Now there are eighty-six pigs. How many pigs came to join them?", - "Output Program": [ - "ans=86-64\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "test" - }, - { - "Input": "There were ten people on the bus. At the next stop three more people got on the bus. How many people are there on the bus now?", - "Output Program": [ - "ans=10+3\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "If you have 2 quarters, 1 dime and 3 pennies, how much money do you have?", - "Output Program": [ - "ans=(2*25+1*10+3*1)/100\nprint(ans)" - ], - "Output Answer": [ - "0.63" - ], - "split": "test" - }, - { - "Input": "In a room containing 45 students there were twice as many girls as boys. How many of each, were there?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The number of boys; y:The number of girls\n# x+y=45; 2x=y\nsolution=solve([x+y-45, 2*x-y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "Paco had 35 cookies. He ate 6 of them. How many cookies did Paco have left?", - "Output Program": [ - "ans=35-6\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "test" - }, - { - "Input": "It usually takes Stanley 10 hours to go around his two favorite places. If he took 10 times longer than the usual, how many hours did it take him to go around the places this time?", - "Output Program": [ - "ans=10*10\nprint(ans)" - ], - "Output Answer": [ - "100" - ], - "split": "test" - }, - { - "Input": "Rick and Todd have the same number of candy bars. Rick ate 11 candy bars. Todd gave away 18 of his candy bars. How many more candy bars did Rick have than Todd then?", - "Output Program": [ - "ans=18-11\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Mark had 24 marbles and Evan had 3 marbles. Mark gave some of his marbles to Evan. Now Mark has exactly double the number of marbles that Evan has. How many marbles did Mark give to Evan?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Marbles that Mark gave to Evan\n# 24-x=(3+x)*2\nsolution=solve([24-x-((3+x)*2)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Kristen found gift bags in packs of 12 and bows in packs of 5. If Kristen wanted to have the same number of gift bags as bows, what is the smallest number of gift bags she would have to buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([12,5])\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "test" - }, - { - "Input": "Amy's dad was taking everyone out to eat for her birthday. They spent 5 dollars on the adults and 5 dollars on the kids. How much did it cost for everyone?", - "Output Program": [ - "ans=5+5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "For a birthday party Cody bought thirty regular sodas and five diet sodas. If his fridge would only hold seven on each shelf, how many shelves would he fill up?", - "Output Program": [ - "ans=(30+5)/7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Tiffany was sending out birthday invitations to her friends. She sent out nine on Monday and eight on Tuesday. How many did she send total?", - "Output Program": [ - "ans=9+8\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "test" - }, - { - "Input": "Mrs. Santiago has 58 red roses. Mrs. Garrett has 24. What's the difference of the number of Mrs. Santiago's red roses and Mrs. Garrett's red roses?", - "Output Program": [ - "ans=58-24\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "test" - }, - { - "Input": "A baker made ninety cakes. If he sold eighty-three of them, how many cakes would the baker still have?", - "Output Program": [ - "ans=90-83\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "A farm was 7 miles wide and 8 miles long. What is the area of the farm?", - "Output Program": [ - "ans=7*8\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "The next act involved several jugglers. If each juggler is juggling 6 balls at a time, how many balls are needed if there are 378 jugglers putting a show at the same time?", - "Output Program": [ - "ans=6*378\nprint(ans)" - ], - "Output Answer": [ - "2268" - ], - "split": "test" - }, - { - "Input": "Before lunch a waitress had already earned $5 in tips. After lunch she had 7 customers and each customer gave her a 2 dollar tip. How much money did she earn total?", - "Output Program": [ - "ans=7*2+5\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - }, - { - "Input": "Hayley had 25 meatballs on her plate. Kirsten stole some of her meatballs. Now she has 11 meatballs on her plate. How many meatballs did Kirsten steal?", - "Output Program": [ - "ans=25-11\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "If Mr. Brown and his son together had $220, and Mr. Brown had 10 times as much as his son, how much money had each?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The money of Mr.Brown; y:The money of Mr.Brown's son\n# x+y=220; x=10y\nsolution=solve([x+y-220, x-10*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "At the river, 25 out of 55 salmon families went to warmer waters to avoid being frozen. How many salmon families were left in the river?", - "Output Program": [ - "ans=55-25\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "A full moon occurs every 30 days. If the last full moon occurred on a Friday, how many days will pass before a full moon occurs again on a Friday?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([30,7])\nprint(ans)" - ], - "Output Answer": [ - "210" - ], - "split": "test" - }, - { - "Input": "The sum of the ages of Tony and Teddy equals their mother's age. Tony is two years younger than Teddy. If the age of the mother is 42, find the ages of Tony and Teddy?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Tony's age\n# x+(x+2)=42\nsolution=solve([x+(x+2)-42], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "A chef had fourteen apples. If he used eight of them to make a pie, how many apples would he still have?", - "Output Program": [ - "ans=14-8\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt reads 5 books a day. How many books does she read in 3 days?", - "Output Program": [ - "ans=5+5+5\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "A vase can hold 5 flowers. If you had 25 flowers, how many vases would you need?", - "Output Program": [ - "ans=25/5\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Tim has 39 pairs of headphones and 13 music players. Tim wants to sell all of the headphones and music players in identical packages. What is the greatest number of packages Tim can make?", - "Output Program": [ - "import math\nans=math.gcd(39,13)\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Debby had 873 quarters. If it costs 3 quarters for each coke from a coke machine, how many could she buy?", - "Output Program": [ - "ans=873/3\nprint(ans)" - ], - "Output Answer": [ - "291" - ], - "split": "test" - }, - { - "Input": "Victor had nineteen apps on his phone. He deleted eight of them. How many apps does Victor have left?", - "Output Program": [ - "ans=19-8\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "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": [ - "ans=43-14+27\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "The zee Theme Park's fountain wall is in the shape of equilateral triangle. The total perimeter of the wall is 51 yards. Find the measure of each side of the wall.", - "Output Program": [ - "ans=51/3\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "test" - }, - { - "Input": "They also gathered paper to create some star-shaped papier-mache. If each star requires 20 pieces of paper and they had 680 pieces of paper, how many stars were they able to make?", - "Output Program": [ - "ans=680/20\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "test" - }, - { - "Input": "A mirror store has 78 mirrors in stock. 8 mirrors are broken, and 57 mirrors are sold. How many mirrors are left?", - "Output Program": [ - "ans=78-8-57\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Mrs. Griffin went to the grocery store with $70. She had $16 left after shopping. How much did Mrs. Griffin spend?", - "Output Program": [ - "ans=70-16\nprint(ans)" - ], - "Output Answer": [ - "54" - ], - "split": "test" - }, - { - "Input": "A chef used thirty-nine cherries to make a pie. Now he has fifty-eight cherries left. How many cherries did he have before he made the pie?", - "Output Program": [ - "ans=39+58\nprint(ans)" - ], - "Output Answer": [ - "97" - ], - "split": "test" - }, - { - "Input": "This year on your 11th birthday your mother tells you that she is exactly 3 times as old as you are. How old is she?", - "Output Program": [ - "ans=11*3\nprint(ans)" - ], - "Output Answer": [ - "33" - ], - "split": "test" - }, - { - "Input": "The parents are making sandwiches for the class picnic. They have 72 turkey slices, 48 cheese slices, and 96 tomato slices. What is the greatest number of sandwiches they can make if each sandwich has the same filling?", - "Output Program": [ - "import math\nans=math.gcd(72,48)\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "A grocery store had forty-nine bottles of regular soda and thirty-five bottles of diet soda. How many bottles did they have total?", - "Output Program": [ - "ans=49+35\nprint(ans)" - ], - "Output Answer": [ - "84" - ], - "split": "test" - }, - { - "Input": "Determined to have fun, they travelled to the next amusement park, HappyLand. If they cover a distance of 328 feet for every minute of travel and they travelled for 9 minutes, how far is HappyLand from SFL?", - "Output Program": [ - "ans=328*9\nprint(ans)" - ], - "Output Answer": [ - "2952" - ], - "split": "test" - }, - { - "Input": "Karlene read 3 pages on Tuesday, 6 pages on Wednesday, 12 pages on Thursday, 24 pages on Friday, and 48 pages on Saturday. If this pattern continues, how many pages will Karlene read on Sunday?", - "Output Program": [ - "lst=[3,6,12,24,48,96]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "96" - ], - "split": "test" - }, - { - "Input": "A garden has 52 rows and 15 columns of bean plants. How many plants are there in all?", - "Output Program": [ - "ans=52*15\nprint(ans)" - ], - "Output Answer": [ - "780" - ], - "split": "test" - }, - { - "Input": "Liz and Jenn had a book sale. They sold 27 detective books and 15 puzzle books. How many books did they sell altogether?", - "Output Program": [ - "ans=27+15\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "Mr. Lee harvested 495 apples and he packed them evenly in some baskets. If there are 25 apples in each basket, how many apples were left unpacked?", - "Output Program": [ - "ans=495%25\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "Jack received 8 emails in the morning and 2 emails in the afternoon. How many emails did Jack receive in the day?", - "Output Program": [ - "ans=8+2\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "In one week, an airplane pilot flew 1,134 miles on Tuesday and 1,475 miles on Thursday. If the pilot flies the same number of miles 3 weeks in a row, how many miles does he fly in all?", - "Output Program": [ - "ans=(1134+1475)*3\nprint(ans)" - ], - "Output Answer": [ - "7827" - ], - "split": "test" - }, - { - "Input": "After paying $2.30 for a drink, Bryon has $17.15. How much money did he have before buying the drink?", - "Output Program": [ - "ans=2.3+17.15\nprint(ans)" - ], - "Output Answer": [ - "19.45" - ], - "split": "test" - }, - { - "Input": "A store owner had six employees and bought five hundred eighty-three uniforms for them. If he wanted to give each employee the same number of uniforms, how many more should he buy so he doesn't have any extra?", - "Output Program": [ - "ans=6-583%6\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Paul had eighty-six books. After selling some in a garage sale he had seventy-eight left. How many books did he sell?", - "Output Program": [ - "ans=86-78\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Willie, the town baker, wanted to make the biggest cake their town has ever seen. First, he prepared the flour. He is planning to use 501 lbs. of flour. If he has 294 lbs. of flour stored in his bakery, how much more flour does he need to buy?", - "Output Program": [ - "ans=501-294\nprint(ans)" - ], - "Output Answer": [ - "207" - ], - "split": "test" - }, - { - "Input": "At the zoo a cage had sixty-eight snakes. If forty-two were hiding, how many snakes were not hiding?", - "Output Program": [ - "ans=68-42\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "test" - }, - { - "Input": "Shiela was into history of Asia. She can read 11 pages per hour of the book entitled \"Asia's History Made Easy\". If the encyclopedia has 143 pages, how many hours did it take Shiela to finish reading the book?", - "Output Program": [ - "ans=143/11\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Larry's Lawn Care charges nine bucks to trim a hedge. If Henry has three hedges, how much money would he spend?", - "Output Program": [ - "ans=9*3\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "test" - }, - { - "Input": "Paige sent out fifteen birthday party invitations. If nine people showed up, how many people didn't come?", - "Output Program": [ - "ans=15-9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "The friends then proceeded to the rest of the houses in their village. However, Sam had to go home earlier. She got her share of candies which are composed of 10 chewing gums, 15 chocolate bars, and 20 assorted fruit candies. How many candies did she get in total?", - "Output Program": [ - "ans=10+15+20\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "Gary had 73 dollars. He spent 55 dollars on a pet snake. How many dollars did Gary have left?", - "Output Program": [ - "ans=73-55\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Gwen had ten fish and her sister had five fish. How many fish did they have total?", - "Output Program": [ - "ans=10+5\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "Nancy sold 45 boxes of Tagalongs. How many cases of 12 boxes, plus extra boxes does Nancy need?", - "Output Program": [ - "ans=45//12+1\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "15 students split 122 portfolios of paintings. Each student should get the same number of portfolios. How many portfolios of paintings will be left?", - "Output Program": [ - "ans=122%15\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "A pet store sold 12 siamese cats. If the ratio of siamese cats to house cats sold was 2:1, what is the combined amount of cats sold?", - "Output Program": [ - "ans=(3/2)*12\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "There are 56 students in the class. The teacher wants to split them into two groups. The first group has 24 students. How many more students will there be in the second group?", - "Output Program": [ - "ans=56-24*2\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "At the zoo, I see 35 elephants and 48 tigers. How many legs do I see?", - "Output Program": [ - "ans=(35+48)*4\nprint(ans)" - ], - "Output Answer": [ - "332" - ], - "split": "test" - }, - { - "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": [ - "ans=(26+36)-48\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "Keith has 5530 marbles and 3 pencils. If he shares the marbles among 79 friends, how many marbles does each friend get?", - "Output Program": [ - "ans=5530/79\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "test" - }, - { - "Input": "The town of Milburg has 5,256 grown-ups and 2,987 children. How many people live in Milburg?", - "Output Program": [ - "ans=5256+2987\nprint(ans)" - ], - "Output Answer": [ - "8243" - ], - "split": "test" - }, - { - "Input": "A lab technician cuts a 12 inch piece of tubing into two pieces in such a way that one piece is 2 times longer than the other. How long are the pieces?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The longer piece; y:The shorter piece\n# x+y=12; x=2y\nsolution=solve([x+y-12, x-2*y], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Marian's friends were coming over that afternoon so she made 480 bite-sized pretzels. If one serving is equal to 12 pretzels, how many servings of bite-sized pretzels was Marian able to prepare?", - "Output Program": [ - "ans=480/12\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "The roller coaster at the state fair costs six tickets per ride. If you had eight hundred sixty-eight tickets, how many tickets would you have left if you rode it as many times as you could?", - "Output Program": [ - "ans=868%6\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "HappyLand has twice the land area of Super Fun-tastic Land. If Super Fun-tastic Land has a land area of 4897 square feet, what would be the total land area of HappyLand?", - "Output Program": [ - "ans=2*4897\nprint(ans)" - ], - "Output Answer": [ - "9794" - ], - "split": "test" - }, - { - "Input": "Mr. Bradley gave his class a math problem to solve. He said, \"Begin with the number 28. Add 12 to it. Then add 7 more.\" Ned followed the instructions perfectly but Billy subtracted 7. What is the difference between the boys' answers?", - "Output Program": [ - "ans=(28+12+7)-(28+12-7)\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "A chess player won 48 of the games he played. If his ratio of wins to loses was 8:7, how many games did he play total?", - "Output Program": [ - "ans=(15/8)*48\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "Input": "A parking lot has 117 spaces total. If 36 of the spaces have cars in them, what is the ratio of empty spaces to filled spaces?", - "Output Program": [ - "from fractions import Fraction\ndif=117-36\nfrac=Fraction(dif,36)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "9:4" - ], - "split": "test" - }, - { - "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": [ - "ans=(23+5)-12\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "test" - }, - { - "Input": "Kaleb was collecting cans for recycling. On Saturday he filled five bags up and on Sunday he filled five more bags. If each bag had four cans in it, how many cans did he pick up total?", - "Output Program": [ - "ans=(5+5)*4\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Jaden is putting together first-aid kits. He has 39 large bandages and 26 small bandages, and he wants each kit to be identical, with no bandages left over. What is the greatest number of first-aid kits Jaden could put together?", - "Output Program": [ - "import math\nans=math.gcd(39,26)\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Next on his checklist are wax glues to stick the feathers together. If the feathers require 469 g of wax and right now he just needs 257 g, how many grams of wax glue does he already have?", - "Output Program": [ - "ans=469-257\nprint(ans)" - ], - "Output Answer": [ - "212" - ], - "split": "test" - }, - { - "Input": "Lana's mom was buying extra school supplies for her and her siblings. If she bought three packs of glue sticks with seven glue sticks in each pack, how many did she get total?", - "Output Program": [ - "ans=3*7\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "test" - }, - { - "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": [ - "ans=50-15+21\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "Frank had forty-two pieces of candy. If he put them into bags with seven pieces in each bag, how many bags would he have?", - "Output Program": [ - "ans=42/7\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "After collecting materials, they started making recycled products to sell during the school's recycling fair. If Marcus made 26 pen holders from the milk bottles and Annie was able to make 37, how many pen holders were made?", - "Output Program": [ - "ans=26+37\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "test" - }, - { - "Input": "Jennifer has an 87 cm long ribbon. She uses 24 cm of the ribbon to tie a present for her friend and 45 cm of the ribbon to make a bow. How much of the ribbon is left in the end?", - "Output Program": [ - "ans=87-24-45\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Sam has 389 riddles for 18 of his students to guess. If he wants the students to guess the same number of riddles, at least how many more riddles does he need to distribute?", - "Output Program": [ - "ans=18-389%18\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "She had 35 mistletoe stickers and wanted to place them equally in 8 cards. How many mistletoe stickers will she have left?", - "Output Program": [ - "ans=35%8\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "There are fifty-eight students trying out for the school's trivia teams. If twenty-eight of them didn't get picked for the team and the rest were put into five groups, how many students would be in each group?", - "Output Program": [ - "ans=(58-28)/5\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Using the $834.00 left from buying the shoes, he went to a fashion store to buy a dress for his sister. If the dress costs $129.00, how much money does he have left with him?", - "Output Program": [ - "ans=834-129\nprint(ans)" - ], - "Output Answer": [ - "705" - ], - "split": "test" - }, - { - "Input": "Edward started his own lawn mowing business. In the spring he made 2 dollars mowing lawns and in the summer he made 27 dollars. If he had to spend 5 dollars buying supplies, how much money did he end up with?", - "Output Program": [ - "ans=2+27-5\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "There are 43 students and 1720 apples. Each student has 9 Skittles. If the apples are divided equally among the students, how many does each student get?", - "Output Program": [ - "ans=1720/43\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Lex read a 420 page book about music and instruments. If he can read exactly 30 pages a day, how many days will it take Lex to finish reading the book?", - "Output Program": [ - "ans=420/30\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "A librarian had to pack five hundred ninety books into boxes. If each box can hold three books, how many boxes did she need?", - "Output Program": [ - "ans=590//3+1\nprint(ans)" - ], - "Output Answer": [ - "197" - ], - "split": "test" - }, - { - "Input": "A worker at a medical lab is studying blood samples. The first sample contained 1,410 blood cells. The second one contained 6,908 more than the first. About how many blood cells were in the second sample?", - "Output Program": [ - "ans=1410+6908\nprint(ans)" - ], - "Output Answer": [ - "8318" - ], - "split": "test" - }, - { - "Input": "A florist has 12 tulips and 18 carnations. If the florist wants to create identical bouquets without any leftover flowers, what is the greatest number of bouquets the florist can make?", - "Output Program": [ - "import math\nans=math.gcd(12,18)\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt bought 15 boxes of citrus fruits from a fundraiser. She paid $12 for each box. If 6% sales tax was added to the total cost, how much was her total bill?", - "Output Program": [ - "ans=(15*12)*(1+6/100)\nprint(ans)" - ], - "Output Answer": [ - "190.8" - ], - "split": "test" - }, - { - "Input": "Stanley, a car enthusiast, loves to drive across different places as a hobby. So for his vacation, he decided to go around his favorite places. His first destination is the famous Sky Falls, one of the tallest waterfalls in his country. It is said to be 20 times as tall as the tallest building in their city. If the building is 9 feet tall, how tall is Sky Falls?", - "Output Program": [ - "ans=20*9\nprint(ans)" - ], - "Output Answer": [ - "180" - ], - "split": "test" - }, - { - "Input": "Your dog ate 12 of your notecards for school. That was 3/4 of your notecards that you need to turn in. How many notecards had you completed?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The total number of notecards\n# 12=3/4*x\nsolution=solve([12-(3/4*x)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "16" - ], - "split": "test" - }, - { - "Input": "Irene's Bakery sells muffins in packages of 18 and cookies in packages of 5. Going through yesterday's receipts, a store manager notices that the bakery sold the same number of muffins and cookies yesterday afternoon. What is the smallest number of muffins that the bakery could have sold?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([18,5])\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "Input": "The first act included 5 clown mobiles, each stuffed with 28 clowns. How many clowns are inside all the clown mobiles combined?", - "Output Program": [ - "ans=5*28\nprint(ans)" - ], - "Output Answer": [ - "140" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt bought a yoyo for 24 cents and a whistle for 14 cents. How much did she spend in all for the two toys?", - "Output Program": [ - "ans=24+14\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "Paige had 2 pencils in her desk, 2 in her backpack and 15 at home. How many pencils does Paige have?", - "Output Program": [ - "ans=2+2+15\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - }, - { - "Input": "Mary's mom is getting ready for Mary's birthday party. She blew up 6 balloons this morning and 5 balloons this afternoon. How many balloons did she blow up in all?", - "Output Program": [ - "ans=6+5\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "A vase can hold seven flowers. If a florist had nine hundred five flowers she wanted to put equally into vases, how many flowers would be in the last vase that isn't full?", - "Output Program": [ - "ans=905%7\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "There are 10 stickers on a page. If you have 22 pages of stickers, how many stickers do you have?", - "Output Program": [ - "ans=10*22\nprint(ans)" - ], - "Output Answer": [ - "220" - ], - "split": "test" - }, - { - "Input": "Bryan has 50 skittles. Ben has 20 M&M's. How many more does Brian have?", - "Output Program": [ - "ans=50-20\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "46 apples were in the basket. 22 are red and the rest are green. How many apples are green?", - "Output Program": [ - "ans=46-22\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "There were 27 boys and 35 girls on the playground at recess. How many children were on the playground at recess?", - "Output Program": [ - "ans=27+35\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "test" - }, - { - "Input": "Allen, Shiela's brother, likes to play with blocks. Shiela repainted Allen's old blocks in different colors. If Allen has 49 identical blocks and there are 7 blocks for every color of paint used, how many colors did Shiela use?", - "Output Program": [ - "ans=49/7\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "I have 80 cents to buy candy. If each gumdrop costs 4 cents, how many gumdrops can I buy?", - "Output Program": [ - "ans=80/4\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "A farmer had forty-six tomatoes from his garden. After picking some he had three left. How many did he pick?", - "Output Program": [ - "ans=46-3\nprint(ans)" - ], - "Output Answer": [ - "43" - ], - "split": "test" - }, - { - "Input": "Peter has 54 tickets and 4 pencils. If he shares the tickets among 9 friends, how many tickets does each friend get?", - "Output Program": [ - "ans=54/9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "A chef had sixteen apples. After making a pie he had seven left. How many apples did he use in the pie?", - "Output Program": [ - "ans=16-7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "Samantha has two pieces of cloth. One piece is 72 inches wide and the other piece is 90 inches wide. She wants to cut both pieces into strips of equal width that are as wide as possible. How wide should she cut the strips?", - "Output Program": [ - "import math\nans=math.gcd(72,90)\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "I am planting 50 apple trees and 30 peach trees. I want the same number and type of trees per row. What is the maximum number of trees I can plant per row?", - "Output Program": [ - "import math\nans=math.gcd(50,30)\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "Tom had $19 and he wanted to buy as many folders as he could. If one folder costs $2, how many folders can Tom buy?", - "Output Program": [ - "ans=19//2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "Katie spent a total $350.00 on her whole stay in the island. If she spent $125.00 on food and $135.00 on hotel rooms, how much did she spend on buying other stuff?", - "Output Program": [ - "ans=350-(125+135)\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "Input": "She also decided to contribute to the collection of the Museum of Natural History. After donating some of her bug collection, she was left with 39 bug species. If she originally has 98 bug species, how many did she donate?", - "Output Program": [ - "ans=98-39\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "test" - }, - { - "Input": "Isabel had some candy. She gave her friend twenty-seven pieces and had sixty-one left. How many pieces did she have to start with?", - "Output Program": [ - "ans=27+61\nprint(ans)" - ], - "Output Answer": [ - "88" - ], - "split": "test" - }, - { - "Input": "An island in the Atlantic Ocean was 2 miles wide and 6 miles long. What is the area of the island?", - "Output Program": [ - "ans=2*6\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "A rectangle has an area of 360 square centimeters. It is 20 centimeters long. What is its perimeter?", - "Output Program": [ - "ans=(360/20)*2+20*2\nprint(ans)" - ], - "Output Answer": [ - "76" - ], - "split": "test" - }, - { - "Input": "There are 7 basketballs at a school. If the school buys another 3 basketballs, how many basketballs will the school have?", - "Output Program": [ - "ans=7+3\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "A school had 14 students sign up for the trivia teams. If they wanted to have 4 team, with the same number of students on each team, how many more students would need to sign up?", - "Output Program": [ - "ans=14%4\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "At the edge of the forest, an anthill is blocking the way out. In order to pass through, he needs to help the ants gather food. If the ants need 911 grains of food and they already have 762, how many more grains are needed to be gathered?", - "Output Program": [ - "ans=911-762\nprint(ans)" - ], - "Output Answer": [ - "149" - ], - "split": "test" - }, - { - "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": [ - "ans=45-6+20\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "test" - }, - { - "Input": "Sam cut equal-length pieces of ribbon from a 3,730-cm long ribbon. If each piece was 73 cm long, how much of the original ribbon was left?", - "Output Program": [ - "ans=3730%73\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "There were 46 passengers on the bus. 19 passengers got off at the first stop. 15 passengers got off at the second stop. How many passengers were left on the bus?", - "Output Program": [ - "ans=46-19-15\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "A restaurant needs to buy three hundred eighty-seven new plates. If each box has five plates in it, how many boxes will they need to buy?", - "Output Program": [ - "ans=387//5+1\nprint(ans)" - ], - "Output Answer": [ - "78" - ], - "split": "test" - }, - { - "Input": "In a morning walk, two persons start off together. Their steps measure 75 cm, and 90 cm respectively. What is the minimum distance each should walk so that all can cover the same distance in complete steps?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([75,90])\nprint(ans)" - ], - "Output Answer": [ - "450" - ], - "split": "test" - }, - { - "Input": "Laverne has 20 baseballs and 15 basketballs. If she wants to divide them into identical groups without any balls left over, what is the greatest number of groups Laverne can make?", - "Output Program": [ - "import math\nans=math.gcd(20,15)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Three pieces of timber 42 m, 49 m and 63 m long have to be divided into planks of the same length. What is the greatest possible length of each plank?", - "Output Program": [ - "import math\nans=math.gcd(math.gcd(42,49),63)\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt and her sister drove to a concert 78 miles away. They drove 32 miles and then stopped for gas. Her sister put 28 gallons of gas in the car. How many miles did they have left to drive?", - "Output Program": [ - "ans=78-32\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "test" - }, - { - "Input": "The book fair sold four posters. Now they have two posters left. How many posters did they have to begin with?", - "Output Program": [ - "ans=4+2\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Janet's dad took the family out to eat for her birthday. There were 10 people total. There were 8 kids and everyone else was an adult. How many adults were there?", - "Output Program": [ - "ans=10-8\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Frank was reading a book. He read 2 pages at school, 3 on the bus and 3 at home. How many pages did Frank read?", - "Output Program": [ - "ans=2+3+3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "If 28 less than five times a certain number is 232. What is the number?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The certain number\n# 5x-28=232\nsolution=solve([5*x-28-232], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "test" - }, - { - "Input": "At a carnival, there are 87 kids, teenagers, and adults waiting to get in. 24 are teenagers, 19 are adults, and the rest are kids. How many kids are waiting in line at the carnival?", - "Output Program": [ - "ans=(87-24)-19\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "test" - }, - { - "Input": "When she came back to her mother, she returned $27.00 worth of change. From the initial $100.00 that her mom gave her, how much money in total did she spend on buying groceries?", - "Output Program": [ - "ans=100-27\nprint(ans)" - ], - "Output Answer": [ - "73" - ], - "split": "test" - }, - { - "Input": "Roger is at the library helping put away books. There are fifty-four book to put away total but a librarian takes nineteen of them and leaves Roger with the rest. If he can fit five books on a shelf, how many shelves will he need?", - "Output Program": [ - "ans=(54-19)/5\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "An architect was building a hotel downtown. He built it 3 stories tall with 8 rooms on each story. How many rooms does the hotel have totaled?", - "Output Program": [ - "ans=3*8\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "Antonia has 79 Barbie Dolls. She packs away them in two wardrobes. If there are 35 Barbie Dolls in the first wardrobe, how many more Barbie Dolls are there in the second wardrobe than the first?", - "Output Program": [ - "ans=79-35*2\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "When she was finished sorting all her savings, she counted the number of her $10 bills. If she counted a total of 9 pieces of $10 bills, what is the total value of all her $10 bills combined?", - "Output Program": [ - "ans=9*10\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "Input": "One-third of certain number added with one-fifth gives eight-fifteenth of the number. Find the number and check your calculation.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The certain number\n# x*(1/3)+(1/5)=x*(8/15)\nsolution=solve([x*(1/3)+(1/5)-(x*(8/15))], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "Andy is buying AA batteries and D batteries. The store sells AA batteries in packs of 38 and D batteries in packs of 44. If Andy wishes to buy the same number of AA and D batteries, what is the smallest number of each battery type that he can buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([38,44])\nprint(ans)" - ], - "Output Answer": [ - "836" - ], - "split": "test" - }, - { - "Input": "Brenda's mother made cookies for five. If she prepared 35 cookies and each of them had the same number of cookies, how many did each of them have?", - "Output Program": [ - "ans=35/5\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Beth has 4 packs of crayons. Each pack has 10 crayons in it. She also has 6 extra crayons. How many crayons does Beth have altogether?", - "Output Program": [ - "ans=(4*10)+6\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "test" - }, - { - "Input": "There are 3300 bananas in Janice's banana collection. Janice also has 5 crayons. If the bananas are organized into 75 groups, how big is each group?", - "Output Program": [ - "ans=3300/75\nprint(ans)" - ], - "Output Answer": [ - "44" - ], - "split": "test" - }, - { - "Input": "A store has forty-nine shirts. After selling some there were twenty-eight left. What's the difference between of the number of shirts before selling and after selling?", - "Output Program": [ - "ans=49-28\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "test" - }, - { - "Input": "Cindy had 41 pieces of candy. She ate six pieces in the morning, and twelve more pieces in the afternoon. How many pieces of candy does she have left?", - "Output Program": [ - "ans=41-6-12\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "test" - }, - { - "Input": "Luke had 9 pieces of candy. If he wants to split the candy into 2 bags with the same amount of candy in each bag, how many more pieces would he need to make sure each bag had the same amount?", - "Output Program": [ - "ans=9%2\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "For Halloween Bianca received seventeen pieces of candy. She ate two pieces then placed the rest into piles with three in each pile. How many piles could she make?", - "Output Program": [ - "ans=(17-2)/3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Using $85.00 left buying fruits, she decided to buy some cookies. If she spent $16.00 on cookies, how much money was left with her?", - "Output Program": [ - "ans=85-16\nprint(ans)" - ], - "Output Answer": [ - "69" - ], - "split": "test" - }, - { - "Input": "Kim wants to buy a new watch that costs $87.60. How much change does she receive if she gives the cashier $100?", - "Output Program": [ - "ans=100-87.6\nprint(ans)" - ], - "Output Answer": [ - "12.4" - ], - "split": "test" - }, - { - "Input": "Megan had five hundred sixteen pennies. She wanted to place the pennies into nine stacks, with the same amount in each stack. How many more pennies would she need so all the stacks would be equal?", - "Output Program": [ - "ans=9-516%9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt has 6 pizzas. Each pizza has 6 slices. She sold one-fourth of the pizza slices. How many slices were left?", - "Output Program": [ - "ans=(6*6)-(36/4)\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "test" - }, - { - "Input": "Vanessa bought twelve old CDs at a garage sale. If seven of the CDs were scratched up, how many good CDs did she buy?", - "Output Program": [ - "ans=12-7\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "The Book Nook sold 27 computer books last week. The sold 15 more cook books than computer books. How many cook books did the Book Nook sell?", - "Output Program": [ - "ans=27+15\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "There are five hundred fifty-four students going to a trivia competition. If each school van can hold nine students, how many vans will they need?", - "Output Program": [ - "ans=554//9+1\nprint(ans)" - ], - "Output Answer": [ - "62" - ], - "split": "test" - }, - { - "Input": "Atomic fireballs come in packages of 9. Barbara ate 59 Atomic Fireballs. How many Atomic Fireballs does she have left?", - "Output Program": [ - "ans=59%9\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "A baker sold twelve cakes. Now he has three cakes. How many cakes did the baker have to start with?", - "Output Program": [ - "ans=12+3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "Bobby ate twenty-six pieces of candy. Then, he ate seventeen more. How many pieces of candy did Bobby eat?", - "Output Program": [ - "ans=26+17\nprint(ans)" - ], - "Output Answer": [ - "43" - ], - "split": "test" - }, - { - "Input": "Rachel had to complete 9 pages of math homework and 2 pages of reading homework. How many pages did she have to complete total?", - "Output Program": [ - "ans=9+2\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "If each ball costs $1.54, how much must Kyoko pay for three balls?", - "Output Program": [ - "ans=1.54*3\nprint(ans)" - ], - "Output Answer": [ - "4.62" - ], - "split": "test" - }, - { - "Input": "Doug built a tent in the shape of a regular pentagon. Its perimeter is 60 feet. What is the length of each side of the tent?", - "Output Program": [ - "ans=60/5\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Ava bagged the plastic bottles after a recycling drive. She placed 45 bottles in the first bag, 53 bottles in the second bag, 61 bottles in the third bag, and 69 bottles in the fourth bag. If this pattern continues, how many plastic bottles will Ava put in the fifth bag?", - "Output Program": [ - "lst=[45,53,61,69,77]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "77" - ], - "split": "test" - }, - { - "Input": "In Haley's class, 5 are boys who love to play marbles. If Haley has 35 marbles, how many will each of the boys receive?", - "Output Program": [ - "ans=35/5\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Melanie had 276 dollars to spend on 9 books. After buying them she had 15 dollars. How much did each book cost ?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Each book cost\n# 276-9x=15\nsolution=solve([276-9*x-15], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "test" - }, - { - "Input": "Allie has 5 math books and 10 science books. If she wants to distribute them evenly among some bookshelves so that each bookshelf has the same combination of math and science books, with no books left over, what is the greatest number of bookshelves Allie can use?", - "Output Program": [ - "import math\nans=math.gcd(5,10)\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "A pet shelter had twenty-three puppies when another two were brought in. If five puppies a day are adopted, how long would it take for all of them to be adopted?", - "Output Program": [ - "ans=(23+2)/5\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Jerry had eleven cherries. He ate eight of them. How many cherries does Jerry have left?", - "Output Program": [ - "ans=11-8\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "A chef had forty-six apples. After making some pies he had fourteen left. How many apples did he use?", - "Output Program": [ - "ans=46-14\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "63 people are going to the zoo. There are 3 cars to take people to the zoo. How many will go in each car if the same number go in each car?", - "Output Program": [ - "ans=63/3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "test" - }, - { - "Input": "Cody had 36 boxes. Together the boxes weighed 243 kilograms. About how much did each box weigh?", - "Output Program": [ - "ans=243//36\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "A clown gave away eleven balloons to girls and three balloons to boys. How many balloons did he give away total?", - "Output Program": [ - "ans=11+3\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "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": [ - "ans=38-4+15\nprint(ans)" - ], - "Output Answer": [ - "49" - ], - "split": "test" - }, - { - "Input": "Last week Fred had 46 dollars and Jason had 13 dollars. Fred washed cars over the weekend and now has 57 dollars. How much money did Fred make washing cars ?", - "Output Program": [ - "ans=57-46\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "A chef bought 2 purple grapes and 2 green grapes. If he already had 3 grapes, how many grapes does he have now?", - "Output Program": [ - "ans=2+2+3\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Matt had 4 small cans of gold paint. If the 34 stars that they made were to be distributed equally to the cans of paint, how many stars will be left unpainted?", - "Output Program": [ - "ans=34%4\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "There was 1,050 ml of tea in a pot. Anna poured the tea into some cups. If there were 65 ml of tea in each cup, how much tea was left in the pot?", - "Output Program": [ - "ans=1050%65\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "At the arcade Henry had won fifty-eight tickets. Later he won forty more tickets. How many tickets did Henry have total?", - "Output Program": [ - "ans=58+40\nprint(ans)" - ], - "Output Answer": [ - "98" - ], - "split": "test" - }, - { - "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": [ - "ans=(6-3)*9\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "test" - }, - { - "Input": "Susie's father repaired the bookshelves in the reading room. If he has 210 books to be distributed equally on the 10 shelves he repaired, how many books will each shelf contain?", - "Output Program": [ - "ans=210/10\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "test" - }, - { - "Input": "David has 7 boxes of stuffed toy dogs. Each box has four dogs in it. How many legs are there in all?", - "Output Program": [ - "ans=(7*4)*4\nprint(ans)" - ], - "Output Answer": [ - "112" - ], - "split": "test" - }, - { - "Input": "86 students are going hiking. Each school- bus can take 9 students. How many school-buses are needed?", - "Output Program": [ - "ans=86//9\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "There are 5 people on the Green Bay High track team. If a relay race is 150 meters long, and all 5 team members participate, how far will each team member have to run?", - "Output Program": [ - "ans=150/5\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "A restaurant has 94 pieces of cutlery. 38 are forks, 27 are knives, and the rest are spoons. How many spoons are there?", - "Output Program": [ - "ans=(94-38)-27\nprint(ans)" - ], - "Output Answer": [ - "29" - ], - "split": "test" - }, - { - "Input": "Sam had eleven friends over for his birthday party. Later three of his friends had to go home. How many friends were left?", - "Output Program": [ - "ans=11-3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Brenda, Betty's sister, wanted to have 3 bracelets with star-shaped stones. She also bought 36 star-shaped stones from the local store and gave it to Betty. How many star-shaped stones will there be in each of the bracelet Betty makes for Brenda?", - "Output Program": [ - "ans=36/3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "A worker needs to cut a 27-yard long rope into some long pieces at 4 yard each and some short pieces at 1 yard each. In order to make the least number of pieces, how many long pieces should be cut for?", - "Output Program": [ - "ans=27//4\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "The two groups will also collect garbage from all the 453 houses in the city. If Lizzie's group covered 238 houses while the other group covered 190, how many more houses remain?", - "Output Program": [ - "ans=453-(238+190)\nprint(ans)" - ], - "Output Answer": [ - "25" - ], - "split": "test" - }, - { - "Input": "When the building is done, they wanted to make it shine brightly in the night. To fix that, they commissioned 432 fireflies and 297 glow worms. How many animals worked in the lights?", - "Output Program": [ - "ans=432+297\nprint(ans)" - ], - "Output Answer": [ - "729" - ], - "split": "test" - }, - { - "Input": "A clothing company used 2 buttons on jeans and 5 buttons on shirts. If they made 9 shirts and 1 pair of jeans, how many buttons would they use total?", - "Output Program": [ - "ans=(5*9)+(2*1)\nprint(ans)" - ], - "Output Answer": [ - "47" - ], - "split": "test" - }, - { - "Input": "Mikey had 356 leaves. Some of her leaves blew away. Now she has 112 leaves left. How many of her leaves blew away?", - "Output Program": [ - "ans=356-112\nprint(ans)" - ], - "Output Answer": [ - "244" - ], - "split": "test" - }, - { - "Input": "There are 40 students in the school band. If the band instructor put the students into rows with 5 students in each row, how many rows could he make?", - "Output Program": [ - "ans=40/5\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Dave bought a new flat screen TV. The screen was 2 feet wide and 4 feet tall. What is the area of the screen?", - "Output Program": [ - "ans=2*4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Mrs. Heine is buying Valentine's Day treats for her 2 dogs. If she wants to buy them 3 heart biscuits each, how many biscuits does she need to buy?", - "Output Program": [ - "ans=3+3\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "While building the house, Charlie noticed that they were running out of nails so he told his father he's going to buy some. If they still have 9 nails left and Charlie bought 2 boxes of nails, the big one containing 55 nails and the small one containing 31, how many nails will they have?", - "Output Program": [ - "ans=9+31+55\nprint(ans)" - ], - "Output Answer": [ - "95" - ], - "split": "test" - }, - { - "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": [ - "ans=(2+2)-2\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "There are two hundred eighty-seven people attending a luncheon. If a table can hold nine people, how many tables do they need?", - "Output Program": [ - "ans=287//9+1\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "A club has 16 girls and 8 boys as members. The president wants to break the club into groups, with each group containing the same combination of girls and boys. The president also wants to make sure that no one is left out. What is the greatest number of groups the president can make?", - "Output Program": [ - "import math\nans=math.gcd(16,8)\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "The difference of two numbers is 100. If one of the numbers is 91, find the other number.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The other number\n# x-91=100\nsolution=solve([x-91-100], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "191" - ], - "split": "test" - }, - { - "Input": "There were 8 ducks swimming in the pond. 3 ducks flew away. How many ducks are still swimming in the pond?", - "Output Program": [ - "ans=8-3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Karen is packing equal quantities of pretzels and crackers for snacks. Karen bags the pretzels in groups of 5 and the crackers in groups of 7. What is the smallest number of crackers that she can pack?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([5,7])\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "test" - }, - { - "Input": "A tape was thirteen meters long. Haley used some to seal cartons. Now the tape is six meters long. How much tape did she use?", - "Output Program": [ - "ans=13-6\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Sarah could send ten text messages a day. If she sent eight, how many text messages does she have left she can send?", - "Output Program": [ - "ans=10-8\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Haley's favorite band was holding a concert where tickets were four dollars each. Haley bought three tickets for herself and her friends and five extra tickets in case anyone else wanted to go. How much did she spend?", - "Output Program": [ - "ans=(3+5)*4\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "At the zoo Zoe took sixty-seven pictures. If her sister took another seventeen pictures, how many did they take total?", - "Output Program": [ - "ans=67+17\nprint(ans)" - ], - "Output Answer": [ - "84" - ], - "split": "test" - }, - { - "Input": "There are 22 bicycles and 3 cars in the garage at Gordon's apartment building. How many wheels are there in the garage?", - "Output Program": [ - "ans=(22*2)+(3*4)\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "Thanksgiving came and their family hosted their building's Thanksgiving dinner. They prepared a lot of food so she asked her parents if they could donate some to the soup kitchen next bock. If they prepared 36 turkeys and gave 18 of it to the soup kitchen, how many were left for them to eat?", - "Output Program": [ - "ans=36-18\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "The difference between two numbers is 24. The smaller number is 46. What is the larger number?", - "Output Program": [ - "ans=46+24\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "test" - }, - { - "Input": "3 raccoons are playing in the woods. 2 go home to eat dinner. How many raccoons are left in the woods?", - "Output Program": [ - "ans=3-2\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "Dave earned $53.90. Sara earned $39.33. How much more money did Dave earn than Sara?", - "Output Program": [ - "ans=53.90-39.33\nprint(ans)" - ], - "Output Answer": [ - "14.57" - ], - "split": "test" - }, - { - "Input": "During recess, Buddy went to the cafeteria where he met other students from different grades. If he met 14 second grade students, 10 fourth grade students and 16 fifth grade students, how many more students did Buddy meet during recess?", - "Output Program": [ - "ans=14+10+16\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Adam had 8 boxes of toys. Each box had 6 toys. Later Adam bought 5 more toys. How many toys did he have total?", - "Output Program": [ - "ans=8*6+5\nprint(ans)" - ], - "Output Answer": [ - "53" - ], - "split": "test" - }, - { - "Input": "Joey checked his pockets for money. He found 17 cents in his pants pocket. He found 24 cents more than that in his jacket pocket. How much money did Joey find altogether?", - "Output Program": [ - "ans=17+(24+17)\nprint(ans)" - ], - "Output Answer": [ - "58" - ], - "split": "test" - }, - { - "Input": "A certain number added twice to itself equals 96. What is the number?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The certain number\n# x+2x=96\nsolution=solve([x+2*x-96], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "There are 336 students in a school. If the school has 7 grades and each grade had the same number of students, how many students were in each grade?", - "Output Program": [ - "ans=336/7\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "test" - }, - { - "Input": "For a potluck lunch Bianca brought nine bottles of soda. If someone else had already brought eight sodas, how many were there total?", - "Output Program": [ - "ans=9+8\nprint(ans)" - ], - "Output Answer": [ - "17" - ], - "split": "test" - }, - { - "Input": "The perimeter of a rectangular cutting board is 50 inches. It is 10 inches wide. How long is it?", - "Output Program": [ - "ans=(50/2)-10\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "A farmer had 225 seeds to plant. He planted the same number of seeds each day and it took him 5 days to plant them all. How many seeds did he plant per day?", - "Output Program": [ - "ans=225/5\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "Amy had 180 video games. If she placed the games into 9 different stacks, how many games would be in each stack?", - "Output Program": [ - "ans=180/9\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "Vondra is putting together bags of groceries to donate to charity. She has 7 boxes of macaroni and cheese and 14 cans of vegetables. Vondra wants to divide them up evenly, so that each bag has the same contents and no items are left over. What is the greatest number of bags of groceries Vondra can put together?", - "Output Program": [ - "import math\nans=math.gcd(7,14)\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt reads 13 books on every day that starts with the letters T and S. How many books does she read in one week?", - "Output Program": [ - "ans=13*4\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "test" - }, - { - "Input": "When she got to school, she saw that the school is composed of 9 buildings, each having 30 classrooms. How many classrooms does the school have?", - "Output Program": [ - "ans=9*30\nprint(ans)" - ], - "Output Answer": [ - "270" - ], - "split": "test" - }, - { - "Input": "It takes 3 eggs to make a cake. How many cakes can you make with 37 eggs?", - "Output Program": [ - "ans=37//3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Sara's mother gave her $69 to go to the store. Sara bought 3 loaves of bread and 5 cartons of orange juice. Each loaf of bread cost $2 and each carton of orange juice cost $3. How much money does Sara have left?", - "Output Program": [ - "ans=69-(3*2)-(5*3)\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "test" - }, - { - "Input": "Simon, an adventurer, got trapped in the magical Blackwood Forest. In order to find the way out, he needs to solve a series of puzzles. The first puzzle involved two giant trees. To open the path, he needs to find the height difference between the two trees. If the first tree is 465 ft high and the second is 399 ft, what is the height difference?", - "Output Program": [ - "ans=465-399\nprint(ans)" - ], - "Output Answer": [ - "66" - ], - "split": "test" - }, - { - "Input": "Joanne is campaigning for class president and plans to distribute some campaign materials: 20 flyers and 16 buttons. She wants each classroom to receive an identical set of campaign materials, without having any materials left over. What is the greatest number of classrooms Joanne can distribute materials to?", - "Output Program": [ - "import math\nans=math.gcd(20,16)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Mike made ninety dollars mowing lawns over the summer. If he spent forty-five dollars buying new mower blades, how many five dollar games could he buy with the money he had left?", - "Output Program": [ - "ans=(90-45)/5\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "Brian has four more plums than Paul. Paul has seven plums. How many plums does Brian have?", - "Output Program": [ - "ans=4+7\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "There are some rooms in a building. 35 of them are classrooms, 10 of them are office and the remaining 6 are reading rooms. How many rooms are in the building?", - "Output Program": [ - "ans=35+10+6\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "test" - }, - { - "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": [ - "ans=(14-5)*4\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "test" - }, - { - "Input": "Michelle also noticed that she was able to save a few $50 dollar bills. If she has a total of 7 pieces of $50 dollar bills, what is the total value of all her $50 bills combined?", - "Output Program": [ - "ans=50*7\nprint(ans)" - ], - "Output Answer": [ - "350" - ], - "split": "test" - }, - { - "Input": "He then classified some of the rocks into igneous, metamorphic and sedimentary. If each classification has 246 samples each, how many rocks does he have in all?", - "Output Program": [ - "ans=3*246\nprint(ans)" - ], - "Output Answer": [ - "738" - ], - "split": "test" - }, - { - "Input": "The ski resort reported 65 inches of snow in January. They measured 18 inches of snow during the first week. They measured 25 inches of snow the second week. How much snow did they get the rest of the month?", - "Output Program": [ - "ans=65-18-25\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "test" - }, - { - "Input": "Each day you put a bag of garbage that weighs 55 pounds in the dumpster. How many pounds of garbage will you put in the dumpster in 4 weeks?", - "Output Program": [ - "ans=(4*7)*55\nprint(ans)" - ], - "Output Answer": [ - "1540" - ], - "split": "test" - }, - { - "Input": "There are 544 pots. Each pot has 32 flowers in it. How many flowers are there in all?", - "Output Program": [ - "ans=544*32\nprint(ans)" - ], - "Output Answer": [ - "17408" - ], - "split": "test" - }, - { - "Input": "Ted and Fred measured their height. Fred's height is 98 inches. Ted is 39 inches tall. What's the difference between Ted's height and Fred's height?", - "Output Program": [ - "ans=98-39\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "test" - }, - { - "Input": "29 birds were sitting in a tree. Some more fly up to the tree. Then there were 42 birds in the tree. How many more flew up to the tree?", - "Output Program": [ - "ans=42-29\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "At John's Pizza Palace in the 6 hours they were open they sold the following number of pizzas: 92 pepperoni, 106 sausage, 96 cheese, 104 mushroom, 96 anchovies and 88 pineapple. What is the mean of the number of pizzas sold?", - "Output Program": [ - "ans=(92+106+96+104+96+88)/6\nprint(ans)" - ], - "Output Answer": [ - "97" - ], - "split": "test" - }, - { - "Input": "Two clocks ring once at the same time. After that, the first clock rings after every 90 minutes, and the second after every 60 minutes. After how many minutes will they again ring together?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([90,60])\nprint(ans)" - ], - "Output Answer": [ - "180" - ], - "split": "test" - }, - { - "Input": "At the bird zoo, the kids were able to visit 5 different bird cages, each containing 8 different kinds of birds. How many different kinds of birds did the children see from the bird cages?", - "Output Program": [ - "ans=5*8\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Rachel picked three apples from her tree. Now the tree has four apples still on it. How many apples did the tree have to begin with?", - "Output Program": [ - "ans=3+4\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Amy had twelve pencils. If she used four of them, how many would she have left?", - "Output Program": [ - "ans=12-4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Their last stop was the largest of them all, Lake Superior. Tired with their travels, they decided to do less fishing and enjoy the lake's beauty instead. They were able to catch 15 catfishes, 20 sturgeons, 25 pikes and 10 eels. How many fishes were caught from Lake Superior?", - "Output Program": [ - "ans=15+20+25+10\nprint(ans)" - ], - "Output Answer": [ - "70" - ], - "split": "test" - }, - { - "Input": "The area of square photo is 25 square inches. Angie decided to enlarge the photo by doubling the sides. What will the new area be?", - "Output Program": [ - "ans=((25)**(1/2)*2)**2\nprint(ans)" - ], - "Output Answer": [ - "100" - ], - "split": "test" - }, - { - "Input": "Bridget wants to win the giant stuffed panda bear. She needs a total of 75 points to get it. Bridget already scored 35 points at the penny pitch booth. She scored 18 more points on her next try. How many more points does Bridget need?", - "Output Program": [ - "ans=75-35-18\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "test" - }, - { - "Input": "An eight ft board is cut into two pieces. One piece is 2 ft longer than the other. How long are the pieces?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The longer piece; y:The shorter piece\n# x+y=8; x=y+2\nsolution=solve([x+y-8, x-(y+2)], [\"x\", \"y\"])\nans=solution[y]\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "Mikayla has a huge collection of music CDs. She gave 15 CDs to her friend. Now she has 78 CDs left. How many CDs were in Mikayla's collection at first?", - "Output Program": [ - "ans=15+78\nprint(ans)" - ], - "Output Answer": [ - "93" - ], - "split": "test" - }, - { - "Input": "It has been tradition in Shiela's home to hang a sock above the fireplace for each member of the family. This year, she placed a cinnamon ball every day in the socks for 5 of her family members. How long can she do this if she bought 50 cinnamon balls?", - "Output Program": [ - "ans=50/5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "Cindy has 105 stickers. She uses 23 stickers. She buys 45 more stickers. How many stickers does Cindy have now?", - "Output Program": [ - "ans=105-23+45\nprint(ans)" - ], - "Output Answer": [ - "127" - ], - "split": "test" - }, - { - "Input": "On the actual day of Annie's birthday, almost everyone in her class came to surprise her. If Annie has 15 girl classmates, 20 boy classmates and 3 teachers in her class, how many people attended her birthday party?", - "Output Program": [ - "ans=15+20+3\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "Lucy has 212 fish. How many more fish does she need to buy to have 280 fish?", - "Output Program": [ - "ans=280-212\nprint(ans)" - ], - "Output Answer": [ - "68" - ], - "split": "test" - }, - { - "Input": "When they arrived at the island's starting point, they looked at the clues and found out that the number of steps they need to take to get to the next clue is the difference between 537 and 369. How many steps do they have to take to get to the next clue?", - "Output Program": [ - "ans=537-369\nprint(ans)" - ], - "Output Answer": [ - "168" - ], - "split": "test" - }, - { - "Input": "A mailman has to give twenty-eight pieces of junk mail to each block. If there are four houses on a block, how many pieces of junk mail should he give each house?", - "Output Program": [ - "ans=28/4\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Georgia had 24 yellow buttons, 16 black buttons and 19 green buttons. She gave some of the buttons to Mary and now Georgia has 13 buttons left. How many buttons did Georgia give Mary?", - "Output Program": [ - "ans=24+16+19-13\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "test" - }, - { - "Input": "Annie's mother has also been asked to be a part of the surprise. She was tasked to be in charge of drinks. She made 25 glasses of orange juice, 15 glasses of grape juice and 5 glasses of apple juice. How many glasses of juice would there be?", - "Output Program": [ - "ans=25+15+5\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "Robin had 18 pieces of gum. Her brother gave her some more pieces. Now Robin has 44 pieces in all. How many pieces of gum did Robin's brother give her?", - "Output Program": [ - "ans=44-18\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "test" - }, - { - "Input": "Katie had twelve pencils in her desk and three more in her backpack. How many did she have total?", - "Output Program": [ - "ans=12+3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "A restaurant has 67 tomatoes. 32 are made into salads. Another 21 are made into pasta sauce. How many tomatoes are left?", - "Output Program": [ - "ans=67-32-21\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "A classroom had 35 glue sticks. If the ratio of glue sticks to glue bottles was 5:2, how many glue bottles did the classroom have?", - "Output Program": [ - "ans=(2/5)*35\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "An architect was building his two story house. On the first floor the house had 6 bedrooms and the second floor had 4 bedrooms. How many bedrooms does the house have totaled?", - "Output Program": [ - "ans=6+4\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "Miguel is 46 years old. He is 4 years older than thrice his son's age. Find the age of his son.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:The age of Miguel's son\n# 46=4+3x\nsolution=solve([46-(4+3*x)], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "Wendy was playing a video game where she scores five points for each treasure she finds. If she found four treasures on the first level and three on the second, what would her score be?", - "Output Program": [ - "ans=(4+3)*5\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "test" - }, - { - "Input": "Michael has some fish in his fish tank. Ben gave him 18 more fish. Now he has 49. How many fish did he have to begin with?", - "Output Program": [ - "ans=49-18\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "test" - }, - { - "Input": "While sorting some beads, Jenna put 74 beads in the first jar, 83 beads in the second jar, 92 beads in the third jar, and 101 beads in the fourth jar. If this pattern continues, how many beads will Jenna put in the fifth jar?", - "Output Program": [ - "lst=[74,83,92,101,110]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "110" - ], - "split": "test" - }, - { - "Input": "A store has thirty-five shirts. If they sold thirty of them, how many shirts would they have?", - "Output Program": [ - "ans=35-30\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "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": [ - "ans=33-11+23\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "Sullivan Stationery sells cards in packs of 20 and envelopes in packs of 17. If Vera wants the same number of each, what is the minimum number of cards that she will have to buy?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([20,17])\nprint(ans)" - ], - "Output Answer": [ - "340" - ], - "split": "test" - }, - { - "Input": "For Halloween Adam received 201 pieces of candy. If he put them into piles with 43 in each pile, approximately how many piles could he make?", - "Output Program": [ - "ans=201//43+1\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Rob also matched the London Eye which stands at 443 ft and Las Vegas' High Roller standing at 550 ft. Being the tallest Ferris wheel in the world, how much taller is High Roller than the London Eye?", - "Output Program": [ - "ans=550-443\nprint(ans)" - ], - "Output Answer": [ - "107" - ], - "split": "test" - }, - { - "Input": "A recipe for fruit punch says to use 8 ounces of orange juice for every 3 ounces of grape juice. Nicky used 72 ounces of orange juice. How many fewer ounces of grape juice were used?", - "Output Program": [ - "ans=72-27\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "There are 234 people attending a luncheon. If a table can hold 9 people, how many tables do they need?", - "Output Program": [ - "ans=234/9\nprint(ans)" - ], - "Output Answer": [ - "26" - ], - "split": "test" - }, - { - "Input": "Ted and Fred measured their height. Their total height is 98 inches. Ted is 39 inches tall. How tall is Fred?", - "Output Program": [ - "ans=98-39\nprint(ans)" - ], - "Output Answer": [ - "59" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt will buy a new pair of shoes in 11 days. How many minutes must she wait before she can buy her new pair of shoes?", - "Output Program": [ - "ans=11*24*60\nprint(ans)" - ], - "Output Answer": [ - "15840" - ], - "split": "test" - }, - { - "Input": "For Halloween Tom received twenty pieces of candy. If he put them into piles with five in each pile, how many piles could he make?", - "Output Program": [ - "ans=20/5\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "A fast food restaurant had ninety-one hotdogs. After selling some they had twenty left. What's the difference between the number of hotdogs before selling and after selling?", - "Output Program": [ - "ans=91-20\nprint(ans)" - ], - "Output Answer": [ - "71" - ], - "split": "test" - }, - { - "Input": "35 people visited the Statue of Liberty in the morning. 56 more people visited in the afternoon than in the morning. How many people visited the Statue of Liberty in the afternoon?", - "Output Program": [ - "ans=35+56\nprint(ans)" - ], - "Output Answer": [ - "91" - ], - "split": "test" - }, - { - "Input": "The Vance family walked over to the post office. They bought 2 rooster stamps and 2 daffodil stamps. How many stamps did they buy in all?", - "Output Program": [ - "ans=2+2\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Ned was buying books about astronomy. He bought 8 books about the planets and 4 about the space program. How many books did he buy total?", - "Output Program": [ - "ans=8+4\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "14 red plums and four green plums are in the basket. How many plums are in the basket?", - "Output Program": [ - "ans=4+14\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Jeff has twice as many crayons as Joan. Joan has 12 crayons. How many does Jeff have?", - "Output Program": [ - "ans=12*2\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "Sweettarts come in packages of 7. Stephen ate 64 Sweettarts. How many Sweettarts does he have left?", - "Output Program": [ - "ans=64%7\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "Carol is making bead necklaces for her friends. She has 159 beads and each necklace takes 37 beads. About how many necklaces can Carol make?", - "Output Program": [ - "ans=159//37\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Roger went to the movies fifteen times last year and three times this year. How many times did Roger go to the movies all together?", - "Output Program": [ - "ans=15+3\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "There are 15 shapes. How many groups of 3 can you make with them?", - "Output Program": [ - "ans=15//3\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "At Mrs. Hilt's house, there was 29 inches of snow, and Brecknock Elementary School received 17 inches of snow. How much more snow did Mrs. Hilt's house have?", - "Output Program": [ - "ans=29-17\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "The Sumata family took a five-day vacation by car. Each day they drove 250 miles. How many total miles did they drive?", - "Output Program": [ - "ans=250*5\nprint(ans)" - ], - "Output Answer": [ - "1250" - ], - "split": "test" - }, - { - "Input": "Li Na is going to plant 63 tomato plants and 81 rhubarb plants. Li Na would like to plant the plants in rows where each row has the same number of tomato plants and each row has the same number of rhubarb plants. What is the greatest number of rows Li Na can plant?", - "Output Program": [ - "import math\nans=math.gcd(63,81)\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "5 boats are in the lake. Each boat has 3 people. How many people are on boats in the lake?", - "Output Program": [ - "ans=5*3\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "Annie also planned the time she would spend going around the 9 blocks in her village. If she plans on spending just 8 minutes on each block, how much time would it take for her to finish trick or treating?", - "Output Program": [ - "ans=9*8\nprint(ans)" - ], - "Output Answer": [ - "72" - ], - "split": "test" - }, - { - "Input": "Students at Memorial School voted for their favorite snack. For every 5 students that voted for candy, 2 students voted for popcorn. There were a total of 45 votes for candy. How many fewer students voted for popcorn than candy?", - "Output Program": [ - "ans=45-18\nprint(ans)" - ], - "Output Answer": [ - "27" - ], - "split": "test" - }, - { - "Input": "A video game had 35 levels in it. If you beat 5 of the levels, what is the ratio of levels left to the levels that have been beaten?", - "Output Program": [ - "from fractions import Fraction\ndif=35-5\nfrac=Fraction(dif,5)\nans=f\"{frac.numerator}:{frac.denominator}\"\nprint(ans)" - ], - "Output Answer": [ - "6:1" - ], - "split": "test" - }, - { - "Input": "Alex, Brad, Calvin, and Dennis are playing checkers. Each of the 4 boys played 2 games with every other player. How many games of checkers were played altogether?", - "Output Program": [ - "ans=4*(1+2)\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Jamal and Moshe began a business with a capital of $7500. If Jamal furnished half as much capital as Moshe, how much did each furnish?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:Jamal's capital; y:Moshe's capital\n# x+y=7500; x=(1/2)*y\nsolution=solve([x+y-7500, x-((1/2)*y)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "2500" - ], - "split": "test" - }, - { - "Input": "After giving out clothes, he invited the homeless to the nearest soup kitchen to give them a proper meal. If he fed 219 men and 328 women, how many homeless people was he able to feed?", - "Output Program": [ - "ans=219+328\nprint(ans)" - ], - "Output Answer": [ - "547" - ], - "split": "test" - }, - { - "Input": "Evan has a large collection of books. He gave his best friend 14 books. He gave his little brother 8 books. Now Evan has 60 books in his collection. How many books did he have at first?", - "Output Program": [ - "ans=60+14+8\nprint(ans)" - ], - "Output Answer": [ - "82" - ], - "split": "test" - }, - { - "Input": "Erin and Dana finished a two day bike-a-thon. They rode 37 miles the first day The rode 55 miles the second day. How many miles did they ride altogether?", - "Output Program": [ - "ans=37+55\nprint(ans)" - ], - "Output Answer": [ - "92" - ], - "split": "test" - }, - { - "Input": "Frank bought his family 14 pieces of chicken for dinner. If they only ate 7, how many pieces does he have left?", - "Output Program": [ - "ans=14-7\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "By coincidence, Luther's Paint Supplies sold equal quantities of two paint colors yesterday: yellow and blue. All yellow paint comes in 2-liter containers while blue paint is sold in containers of 19 liter. What is the smallest amount of each paint color the store must have sold?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([19,2])\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "A square kitchen has an area of 100 square feet. What is the kitchen's perimeter?", - "Output Program": [ - "ans=100**(1/2)*4\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Mrs. Snyder made 86 heart cookies. She made 36 red cookies and the rest are pink. How many pink cookies did she make?", - "Output Program": [ - "ans=86-36\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "test" - }, - { - "Input": "An industrial machine can make three hundred sixty-one crayons a day. If each box of crayons has four crayons in it, how many full boxes does the machine make a day?", - "Output Program": [ - "ans=360//4\nprint(ans)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "Input": "Jane's mom picked cherry tomatoes from their backyard. If she gathered 56 cherry tomatoes and is about to place them in small jars which can contain 8 cherry tomatoes at a time, how many jars will she need?", - "Output Program": [ - "ans=56/8\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Farmer Singleton has a plot of tomato plants. There are 4 tomato plants in the first row, 8 tomato plants in the second row, 16 tomato plants in the third row, 32 tomato plants in the fourth row, and 64 tomato plants in the fifth row. If this pattern continues, how many tomato plants will there be in the sixth row?", - "Output Program": [ - "lst=[4,8,16,32,64,128]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "128" - ], - "split": "test" - }, - { - "Input": "179 birds were sitting in a tree. 38 more birds flew up to the tree. How many birds were there altogether in the tree?", - "Output Program": [ - "ans=179+38\nprint(ans)" - ], - "Output Answer": [ - "217" - ], - "split": "test" - }, - { - "Input": "Because of the decision, Sofia asked the students to suggest specific types of food. If 279 students suggested adding mashed potatoes while 234 suggested adding bacon to the menu, how many students participated in the suggestion of new food items?", - "Output Program": [ - "ans=279+234\nprint(ans)" - ], - "Output Answer": [ - "513" - ], - "split": "test" - }, - { - "Input": "They had 119 matchboxes wrapped in colorful shiny wrappers. If they are to distribute the matchboxes equally to the 9 houses in the first block, how may matchboxes will each house receive?", - "Output Program": [ - "ans=119//9\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Bryan had 8 precious stones in his collection which he sold to his friend from the jewelry store. If the stones were sold at $1785.00 each, how much money did Bryan get in total?", - "Output Program": [ - "ans=8*1785\nprint(ans)" - ], - "Output Answer": [ - "14280" - ], - "split": "test" - }, - { - "Input": "Evan delivers packages in a building. He started on the first floor and went up 7 floors. He went down 3 floors and then up 16 floors. Then he was only 2 floors away from the top of the building. How many floors are in the building altogether?", - "Output Program": [ - "ans=1+7-3+16+2\nprint(ans)" - ], - "Output Answer": [ - "23" - ], - "split": "test" - }, - { - "Input": "Tayli wishes to advertise her business, so she gives packs of 13 red flyers to each restaurant owner and sets of 20 blue flyers to each clothing store owner. At the end of the day, Tayli realizes that she gave out the same number of red and blue flyers. What is the minimum number of flyers of each color she distributed?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([13,20])\nprint(ans)" - ], - "Output Answer": [ - "260" - ], - "split": "test" - }, - { - "Input": "The second angle of a triangle is double the first. The third angle is 40 less than the first. Find the three angles.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The second angle of a triangle; y:The first angle of a triangle\n# 2y=x; 180-(x+y)=x-40\nsolution=solve([2*y-x, 180-(x+y)-(x-40)], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "88" - ], - "split": "test" - }, - { - "Input": "Sherman goes golfing every 6th day and Brad goes golfing every 7th day. If Sherman and Brad both went golfing today, how many days until they will go golfing on the same day again?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([6,7])\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "The school's baseball team had two new players and twenty-two returning players. If the coach put them into groups with three players in each group, how many groups would there be?", - "Output Program": [ - "ans=(2+22)/3\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Ethan has 31 presents. Alissa has 22 more than Ethan. How many presents does Alissa have?", - "Output Program": [ - "ans=31+22\nprint(ans)" - ], - "Output Answer": [ - "53" - ], - "split": "test" - }, - { - "Input": "Oliver is organizing his books and putting them on shelves. He put 2 books on the first shelf, 6 books on the second shelf, 18 books on the third shelf, and 54 books on the fourth shelf. If this pattern continues, how many books will Oliver put on the fifth shelf?", - "Output Program": [ - "lst=[2,6,18,54,162]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "162" - ], - "split": "test" - }, - { - "Input": "A comic book costs 37 cents. The store owner reversed the digits by mistake. He wrote that number on the comic book. How much did the store owner overcharge his customer?", - "Output Program": [ - "ans=73-37\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "test" - }, - { - "Input": "Four girls were home all day one weekend preparing homemade treats. Anna made 33 blueberry cookies. If she shares this equally among her four friends, how many will each receive?", - "Output Program": [ - "ans=33//4\nprint(ans)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "For Halloween Frank got fifteen pounds of candy. If he gave eight pounds to Nancy, what's the difference between the pounds of Frank's candy before he gave Nancy and he gave to?", - "Output Program": [ - "ans=15-8\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Ramon works at the supermarket. He put 26 boxes of Choco Delights on the shelf. There were already 15 boxes there. Later that day, Ramon counted 22 boxes on the shelf. How many boxes of Choco Delights were missing?", - "Output Program": [ - "ans=26-22+15\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt saw 21 snakes, 11 alligators, 36 frogs, and 57 bears. How many reptiles did Mrs. Hilt see?", - "Output Program": [ - "ans=21+11\nprint(ans)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "The ratio of red cars to blue cars in a parking lot was 5:3. If there were 40 red cars, how many blue cars were there?", - "Output Program": [ - "ans=(3/5)*40\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "Professor Treehead of the Flora University requested his students to participate. He said that they planted 15 species of trees in the natural park, 20 species of trees in the neighboring forest and 10 species of trees all around different locations in town. How many species of trees were planted by the students?", - "Output Program": [ - "ans=15+10+20\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "A factory produced 50 printers and 21 scanners. After 41 of the printers were sold, it produced another 16 scanners. How many printers and scanners did the factory have in the end?", - "Output Program": [ - "ans=50+21-41+16\nprint(ans)" - ], - "Output Answer": [ - "46" - ], - "split": "test" - }, - { - "Input": "They decided to hold the party in their backyard. If they have 8 sets of tables and each set has 7 chairs, how many chairs do they have for the guests?", - "Output Program": [ - "ans=8*7\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "Carmen did 4 sit-ups on Sunday, 8 sit-ups on Monday, 16 sit-ups on Tuesday, 32 sit-ups on Wednesday, and 64 sit-ups on Thursday. If this pattern continues, how many sit-ups will Carmen do on Friday?", - "Output Program": [ - "lst=[4,8,16,32,64,128]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "128" - ], - "split": "test" - }, - { - "Input": "There are 2 green books, 1 blue book, and 4 orange books in a bookshelf. If 3 of them are taken out to be read, how many books are left on the bookshelf?", - "Output Program": [ - "ans=2+1+4-3\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Paul spent $75. Now he has $11. What's the difference between the number of dollars that he spent and he has now?", - "Output Program": [ - "ans=75-11\nprint(ans)" - ], - "Output Answer": [ - "64" - ], - "split": "test" - }, - { - "Input": "At the carnival, 6 friends bought 27 tickets. If they wanted to split all the tickets so each friend got the same amount, how many more tickets would they need to buy?", - "Output Program": [ - "ans=27%6\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "Derek is picking flowers in the garden. He picked 18 flowers from the first bush, 22 flowers from the second bush, 26 flowers from the third bush, 30 flowers from the fourth bush, and 34 flowers from the fifth bush. If this pattern continues, how many flowers will Derek pick from the sixth bush?", - "Output Program": [ - "lst=[18,22,26,30,34,38]\nans=lst[6-1]\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "It is Easter time and the kids in the neighborhood of Easterville are very excited about the annual Easter egg hunt. The parents have decided to hide the eggs in a lot of different places. They hid 55 eggs around the club house, 33 eggs around the village park and 22 eggs in the town hall garden. How many eggs were hidden in total?", - "Output Program": [ - "ans=55+33+22\nprint(ans)" - ], - "Output Answer": [ - "110" - ], - "split": "test" - }, - { - "Input": "Lisa rented 4 DVDs for $4.80. How much did each DVD cost to rent?", - "Output Program": [ - "ans=4.80/4\nprint(ans)" - ], - "Output Answer": [ - "1.2" - ], - "split": "test" - }, - { - "Input": "Adam was reading through his favorite book series. The first week he read 5 different books. The next week he read 8 books. How many books did he read total?", - "Output Program": [ - "ans=5+8\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "It's Earth Awareness Day and the town of Flora is celebrating by planting trees in areas where the forest has been damaged. Mayor Fauna, leader of the town of Flora, donated 27 oak tree seedlings and 16 seedlings of holly. How many seedlings did he donate altogether?", - "Output Program": [ - "ans=27+16\nprint(ans)" - ], - "Output Answer": [ - "43" - ], - "split": "test" - }, - { - "Input": "Last Thursday Drew had $30. Over the weekend he received some money for cutting the grass. He now has $61. How much money did he get paid for cutting the grass?", - "Output Program": [ - "ans=61-30\nprint(ans)" - ], - "Output Answer": [ - "31" - ], - "split": "test" - }, - { - "Input": "Tony had $20. He paid $8 for a ticket to a baseball game. At the game, he bought a hot dog for $3. What amount of money did Tony have then?", - "Output Program": [ - "ans=20-8-3\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "There were eight red roses and two white roses in the vase. Melanie cut some more roses from her flower garden. There are now fourteen red roses in the vase. How many red roses did she cut ?", - "Output Program": [ - "ans=14-8\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Christian and the junior ranger brought a bag of 140 nails as they visited every station assigned to the junior ranger. If they left exactly 7 nails in every station they visited, how many stations did Joline and the junior ranger visit?", - "Output Program": [ - "ans=140/7\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "After the party, Kevin estimated that the total money they spent on food, drinks, and utensils sums up to $560.00. If they spent $268.00 on food and $118.00 on utensils and other stuff, how much did they spend on drinks?", - "Output Program": [ - "ans=560-(268+118)\nprint(ans)" - ], - "Output Answer": [ - "174" - ], - "split": "test" - }, - { - "Input": "There are 42 boys in the computer club. There are 9 fewer girls than boys in the club. How many children are in the computer club altogether?", - "Output Program": [ - "ans=42+(42-9)\nprint(ans)" - ], - "Output Answer": [ - "75" - ], - "split": "test" - }, - { - "Input": "There are four pieces of paper in a bag. Each paper has a number on it. The numbers are 19, 23, 34, and 38. Harry took out one piece of paper. The sum of the remaining numbers was 76. What number did Harry remove from the bag?", - "Output Program": [ - "ans=(19+23+34+38)-76\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "A chef only had 3 apples so he ordered 2 more bags. If each bag has 9 apples, how many apples does he have total?", - "Output Program": [ - "ans=2*9+3\nprint(ans)" - ], - "Output Answer": [ - "21" - ], - "split": "test" - }, - { - "Input": "At summer camp the ratio of boys to girls was 10:1. If there were 30 boys, how many girls were there?", - "Output Program": [ - "ans=(1/10)*30\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "By coincidence, Monica's Obedience School trained the same number of dogs and cats last week. The school teaches dogs in groups of 18 and cats in groups of 3. What is the smallest number of cats the school could have had?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([18,3])\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Two of the lights at the local stadium are flickering. They both just flickered at the same time. One of the lights flickers every 7 seconds and the other light flickers every 8 seconds. How many seconds until both lights will flicker at the same time again?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([7,8])\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "James ate 22 carrot sticks before dinner and 15 more after dinner. How many carrot sticks did he eat?", - "Output Program": [ - "ans=22+15\nprint(ans)" - ], - "Output Answer": [ - "37" - ], - "split": "test" - }, - { - "Input": "Nick saved $68.50. If Nick saved $25.43 more than Lee, how much did Lee save?", - "Output Program": [ - "ans=68.50-25.43\nprint(ans)" - ], - "Output Answer": [ - "43.07" - ], - "split": "test" - }, - { - "Input": "Kelly has 121 Nintendo games. How many does she need to give away so that she will have 22 games left?", - "Output Program": [ - "ans=121-22\nprint(ans)" - ], - "Output Answer": [ - "99" - ], - "split": "test" - }, - { - "Input": "Shelley has 12 forks and 16 knives to place in silverware holders at the fast food restaurant where she works. She wants to distribute them equally, with no forks or knives left over. What is the greatest number of silverware holders Shelley can stock?", - "Output Program": [ - "import math\nans=math.gcd(12,16)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "While playing a trivia game, Adam answered five questions correct in the first half and five questions correct in the second half. If each question was worth five points, what was his final score?", - "Output Program": [ - "ans=(5+5)*5\nprint(ans)" - ], - "Output Answer": [ - "50" - ], - "split": "test" - }, - { - "Input": "The school cafeteria serves tacos every sixth day and cheeseburgers every eighth day. If tacos and cheeseburgers are both on today's menu, how many days will it be before they are both on the menu again?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([6,8])\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "She also ate a hearty breakfast so that she would have enough energy. She bought 5 pieces of her favorite bread. If each piece of bread costs 30 cents, how much did Jenny spend for her breakfast?", - "Output Program": [ - "ans=5*30\nprint(ans)" - ], - "Output Answer": [ - "150" - ], - "split": "test" - }, - { - "Input": "I see 349 frogs. How many legs do they have?", - "Output Program": [ - "ans=349*4\nprint(ans)" - ], - "Output Answer": [ - "1396" - ], - "split": "test" - }, - { - "Input": "Isabel had sixteen bottles of water. After a week she had seven left. How many did she drink?", - "Output Program": [ - "ans=16-7\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "At a comic convention Janet wanted to buy 8 comics, but each one costs 4 dollars, plus it costs 2 to even get in. How much money should she take with her so she can get in and buy what she wants?", - "Output Program": [ - "ans=8*4+2\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "test" - }, - { - "Input": "The Razorback T-shirt Shop ordered 12 cases of t-shirts. If each case contains 24 t-shirts, how many t-shirts did they order?", - "Output Program": [ - "ans=12*24\nprint(ans)" - ], - "Output Answer": [ - "288" - ], - "split": "test" - }, - { - "Input": "George is trying to earn one hundred nineteen dollars for some new toys. If he charges three dollars to mow a lawn, how many lawns will he need to mow to earn the money?", - "Output Program": [ - "ans=119//3+1\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "Two wires with lengths of 448 cm and 616 cm are to be cut into pieces of all the same length without remainder. What is the greatest possible length of the pieces?", - "Output Program": [ - "import math\nans=math.gcd(448,616)\nprint(ans)" - ], - "Output Answer": [ - "56" - ], - "split": "test" - }, - { - "Input": "There are less than 6 dozen eggs in a basket. If the eggs are counted 2, 3, 4, or 5 at a time, there are none left over. How many eggs are there in the basket?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([2,3,4,5])\nprint(ans)" - ], - "Output Answer": [ - "60" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt saw 33 butterflies. Some of the butterflies were red and others were orange. If 20 of the butterflies were orange, how many of them were red?", - "Output Program": [ - "ans=33-20\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "There are 397 butterflies. Each butterfly has 12 black dots and 17 yellow dots. How many black dots are there in all?", - "Output Program": [ - "ans=397*12\nprint(ans)" - ], - "Output Answer": [ - "4764" - ], - "split": "test" - }, - { - "Input": "Before they end the meeting, Tom counted the total number of robots in his collection. He has 6 sets of robots and each set is composed of 7 robots. How many robots does Tom have in his collection?", - "Output Program": [ - "ans=6*7\nprint(ans)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "Four weeks has passed. It's time for Dean to go home. Before they left, seven of them bought some souvenirs. Each of them spent $90.00 buying gifts. How much did all of them spend altogether?", - "Output Program": [ - "ans=7*90\nprint(ans)" - ], - "Output Answer": [ - "630" - ], - "split": "test" - }, - { - "Input": "Next in their itinerary was the insectarium, home to hundreds of insect species. Penny, who likes butterflies and ants, took pictures of the different species. She was able to capture 60 species of butterflies, 15 species of ants and 20 species of other insects. How many species of insects did Penny capture?", - "Output Program": [ - "ans=60+15+20\nprint(ans)" - ], - "Output Answer": [ - "95" - ], - "split": "test" - }, - { - "Input": "The mini library also has a section for the classics. If Jack has a collection of 6 classic authors, with each author having 33 books, how many books does he have in the classics section?", - "Output Program": [ - "ans=6*33\nprint(ans)" - ], - "Output Answer": [ - "198" - ], - "split": "test" - }, - { - "Input": "Roger mowed his lawn 15 times total during the spring and summer. If he mowed it 9 times in the summer. How many times did he mow in the spring?", - "Output Program": [ - "ans=15-9\nprint(ans)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "A bus can transport 48 passengers. If a school of 1,230 students and teachers are going on a field trip, how many passengers are there on the bus that is not fully occupied?", - "Output Program": [ - "ans=1230%48\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "Bob strikes the drums every 9 seconds and the cymbals every 12 seconds. If he just struck both at the same time, how many seconds will pass before he again strikes them at the same time?", - "Output Program": [ - "import math\ndef lcm(x, y):\n\tres = x * y / math.gcd(x, y)\n\treturn res\nimport math\ndef LCMofList(lst):\n\tlcm = lst[0]\n\tfor i in range(1, len(lst)):\n\t\tlcm = lcm * lst[i] // math.gcd(lcm, lst[i])\n\treturn lcm\nans=LCMofList([9,12])\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "test" - }, - { - "Input": "Adam has two oranges. Michele has two oranges. What's the difference of the number of Adam's oranges and Michele's oranges?", - "Output Program": [ - "ans=2-2\nprint(ans)" - ], - "Output Answer": [ - "0" - ], - "split": "test" - }, - { - "Input": "5 years hence the age of a father shall be three times the age of his son while 5 years earlier the age of father was 7 times the age of his son. Find the present ages.", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\ny = Symbol(\"y\")\n\n# x:The age of the father; y:The age of the father's son\n# x+5=3(y+5); x-5=7(y-5)\nsolution=solve([x+5-(3*(y+5)), x-5-(7*(y-5))], [\"x\", \"y\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": "The teacher is handing out note cards to her students. She gave 3 note cards to the first student, 12 note cards to the second student, 48 note cards to the third student, and 192 note cards to the fourth student. If this pattern continues, how many note cards will the teacher give to the fifth student?", - "Output Program": [ - "lst=[3,12,48,192,768]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "768" - ], - "split": "test" - }, - { - "Input": "On Tuesday, Mrs. Hilt saw 88 raisins on a tray in the cafeteria. That was 8 more raisins than she saw the day before. How many raisins were on the table on Monday?", - "Output Program": [ - "ans=88-8\nprint(ans)" - ], - "Output Answer": [ - "80" - ], - "split": "test" - }, - { - "Input": "Ryan collected 89 leaves. He lost 24 leaves and threw away 43 leaves. How many leaves did Ryan have left?", - "Output Program": [ - "ans=89-24-43\nprint(ans)" - ], - "Output Answer": [ - "22" - ], - "split": "test" - }, - { - "Input": "A chef had five potatoes to make fries with, but he only used three of them. How many potatoes does he still have?", - "Output Program": [ - "ans=5-3\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Ron and Chanarong had breakfast at a cafe. Muffins cost $2 each, and fruit cups cost $2 each. Ron had 1 muffin and 2 fruit cups. Chanarong had 1 muffin and 2 fruit cups. How much did their breakfast cost?", - "Output Program": [ - "ans=(2*1)+(2*2)+(2*1)+(2*2)\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Billy had six hundred fifty pieces of candy. If he wants to split the candy into three bags with the same amount of candy in each bag, how many more pieces would he need to make sure each bag had the same amount?", - "Output Program": [ - "ans=3-650%3\nprint(ans)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": "At a concert, the band has 20 men's T-shirts and 8 women's T-shirts. The band wants to set up tables to sell the shirts, with an equal number of men's and women's shirts available at each table and no shirts left over. What is the greatest number of tables the band can sell shirts from?", - "Output Program": [ - "import math\nans=math.gcd(20,8)\nprint(ans)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "At a Halloween store, there are 3 green capes, 2 blue capes, and 3 red capes. If 6 capes are bought, how many capes are left?", - "Output Program": [ - "ans=3+2+3-6\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Kale was drawing on scrap paper. He could fit 5 drawings on each page. If he has 6 pages, how many drawings can he make?", - "Output Program": [ - "ans=5*6\nprint(ans)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": "A clown had eighty-two balloons. After a party he had sixteen left. How many balloons did he use at the party?", - "Output Program": [ - "ans=82-16\nprint(ans)" - ], - "Output Answer": [ - "66" - ], - "split": "test" - }, - { - "Input": "There are 10 shapes. How many will you have left over after making the groups of 5?", - "Output Program": [ - "ans=10%5\nprint(ans)" - ], - "Output Answer": [ - "0" - ], - "split": "test" - }, - { - "Input": "A DVD book holds 126 DVDs. There are 81 DVDs already in the book. How many more DVDs can be put in the book?", - "Output Program": [ - "ans=126-81\nprint(ans)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "It took all of the workers one year to finish the Animus Tower and it was indeed the brightest and tallest structure that can be seen at Animapolis' skyline. If the first half of the building has 145 stories and the second half has 255 stories. How many stories do the Animus Tower has?", - "Output Program": [ - "ans=145+255\nprint(ans)" - ], - "Output Answer": [ - "400" - ], - "split": "test" - }, - { - "Input": "There are 4 boys and 5 girls in a preschool daycare. How many children are there in the daycare?", - "Output Program": [ - "ans=4+5\nprint(ans)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "April's discount flowers was having a sale where each flower was eight dollars. If Vanessa bought three roses and three daisies, how much did she spend?", - "Output Program": [ - "ans=(3*8)+(3*8)\nprint(ans)" - ], - "Output Answer": [ - "48" - ], - "split": "test" - }, - { - "Input": "The distance travelled by Ben and Tim is in the ratio 3:4. The distance travelled by Ben is 18 miles. Find the distance travelled by Tim.", - "Output Program": [ - "ans=(4/3)*18\nprint(ans)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "For a party Janet bought some cupcakes. She bought 2 chocolate, 13 vanilla and 2 strawberry. What's the difference between the number of cupcakes of chocolate flavor and the vanilla flavor?", - "Output Program": [ - "ans=13-2\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "The woods behind Jerry's house were 6 miles wide and 3 miles long. What is the area of the woods?", - "Output Program": [ - "ans=6*3\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Edward's dad bought 459 centimeters of string. If he cut the string into 9 equal pieces, what would be the length of each piece?", - "Output Program": [ - "ans=459/9\nprint(ans)" - ], - "Output Answer": [ - "51" - ], - "split": "test" - }, - { - "Input": "Faye had seven books. If she bought twelve more at a yard sale, how many would she have total?", - "Output Program": [ - "ans=7+12\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - }, - { - "Input": "Each bag contains 23 pounds of oranges. How many pounds of oranges are in 45 bags?", - "Output Program": [ - "ans=23*45\nprint(ans)" - ], - "Output Answer": [ - "1035" - ], - "split": "test" - }, - { - "Input": "Haley grew sixteen trees in her backyard. After a typhoon five died. How many trees does she have left?", - "Output Program": [ - "ans=16-5\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "At band practice there were 4 rows of students with 8 students in each row and then another 9 students in the back. How many students were there total?", - "Output Program": [ - "ans=4*8+9\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "test" - }, - { - "Input": "A museum had thirteen paintings. If they got rid of eight of them, how many pictures would they have left?", - "Output Program": [ - "ans=13-8\nprint(ans)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Zayed is helping his classmates get ready for their math test by making them identical packages of pencils and calculators. He has 72 pencils and 24 calculators and he must use all of the pencils and calculators. If Zayed creates the greatest number of identical packages possible, how many pencils will be in each package?", - "Output Program": [ - "import math\ngcd=math.gcd(72,24)\nans=72/gcd\nprint(ans)" - ], - "Output Answer": [ - "3" - ], - "split": "test" - }, - { - "Input": "There are 40 boys and some girls on the playground. There are 117 children altogether. How many girls are on the playground?", - "Output Program": [ - "ans=117-40\nprint(ans)" - ], - "Output Answer": [ - "77" - ], - "split": "test" - }, - { - "Input": "A box can hold 18 pieces of chalk. If there are 3,484 pieces of chalk, how many chalks are there in the box that is not full?", - "Output Program": [ - "ans=3484%18\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "It's New Year's Eve. Benjamin and his family went to New York City to take part in the celebration that is going to take place later that night. Before the evening celebrations, Benjamin wanted to see some of the famous places in NYC first. From the hotel, he walked 234 steps to the nearest restaurant then another 378 steps to Central Park. How many steps did he take to get to Central Park from the hotel?", - "Output Program": [ - "ans=234+378\nprint(ans)" - ], - "Output Answer": [ - "612" - ], - "split": "test" - }, - { - "Input": "Roger was packing up his old toys. He filled eleven boxes with action figures and two boxes with old games. How many boxes did he pack total?", - "Output Program": [ - "ans=11+2\nprint(ans)" - ], - "Output Answer": [ - "13" - ], - "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": [ - "ans=29+17-12\nprint(ans)" - ], - "Output Answer": [ - "34" - ], - "split": "test" - }, - { - "Input": "Jason had 27 peaches and 17 pears left at his roadside fruit stand. He went to the orchard and picked more peaches to stock up the stand. There are now 90 peaches at the stand, how many did he pick ?", - "Output Program": [ - "ans=90-27\nprint(ans)" - ], - "Output Answer": [ - "63" - ], - "split": "test" - }, - { - "Input": "For a new year's party 2 red balloons, 12 green balloons and 6 white balloons were used. What is the total number of balloons used?", - "Output Program": [ - "ans=2+12+6\nprint(ans)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "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": [ - "ans=(39+47)-20\nprint(ans)" - ], - "Output Answer": [ - "66" - ], - "split": "test" - }, - { - "Input": "A store sold eight cold drinks and three hot drinks. How many drinks did they sell total?", - "Output Program": [ - "ans=8+3\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "Mr. Fortree, a businessman also gave seedlings for the tree planting activity. If he gave 14 seedlings of cedar and 38 seedlings of pine, how many seedlings did he give in total?", - "Output Program": [ - "ans=14+38\nprint(ans)" - ], - "Output Answer": [ - "52" - ], - "split": "test" - }, - { - "Input": "Robin's hair was fifteen inches long. If she cut off five inches, how long is her hair now?", - "Output Program": [ - "ans=15-5\nprint(ans)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": "Karen has 252 markers. Her mother gives her 34 more markers. Karen loses 11 markers. How many markers does she have now?", - "Output Program": [ - "ans=252+34-11\nprint(ans)" - ], - "Output Answer": [ - "275" - ], - "split": "test" - }, - { - "Input": "There were 14 kids on the soccer field. 22 kids decided to join in. Now how many kids are on the soccer field?", - "Output Program": [ - "ans=14+22\nprint(ans)" - ], - "Output Answer": [ - "36" - ], - "split": "test" - }, - { - "Input": "Mrs. Hilt ate 5 apples every hour. How many apples had she eaten at the end of 3 hours?", - "Output Program": [ - "ans=5+5+5\nprint(ans)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "I read 21 pages of my English book yesterday. Today, I read 17 pages. What is the total number of pages did I read?", - "Output Program": [ - "ans=21+17\nprint(ans)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "If Tom plans to fix 158 watches at the rate of 12 watches per day, how many watches will he fix on the last day?", - "Output Program": [ - "ans=158%12\nprint(ans)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Paige had eleven pencils. After using some she had four left. How many did she use?", - "Output Program": [ - "ans=11-4\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "A furniture store had fifteen chairs. After selling some, there was three left. How many chairs did they sell?", - "Output Program": [ - "ans=15-3\nprint(ans)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "If 10 years ago he was 25 years old, how old is Rojer now?", - "Output Program": [ - "from sympy import solve, Symbol\n\nx = Symbol(\"x\")\n# x:Rojer's age\n# x-10=25\nsolution=solve([x-10-25], [\"x\"])\nans=solution[x]\nprint(ans)" - ], - "Output Answer": [ - "35" - ], - "split": "test" - }, - { - "Input": "The Litter Patrol picked up 10 glass bottles and 8 aluminum cans on Saturday. How many pieces of litter did they pick up altogether?", - "Output Program": [ - "ans=10+8\nprint(ans)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "At the fair Megan had $17 to spend. She spent $6 on rides. How much money does she have left?", - "Output Program": [ - "ans=17-6\nprint(ans)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "Albert is inviting 34 friends to a party. He has 1802 cookies. How many cookies will each friend get?", - "Output Program": [ - "ans=1802/34\nprint(ans)" - ], - "Output Answer": [ - "53" - ], - "split": "test" - }, - { - "Input": "Rangers from Flora Natural Park and Wildlife Reserve also joined the activities on that day. They planted 75 redwood trees and 25 cypress trees to replace the trees that were destroyed during a recent forest fire. How many trees did the rangers plant?", - "Output Program": [ - "ans=25+75\nprint(ans)" - ], - "Output Answer": [ - "100" - ], - "split": "test" - }, - { - "Input": "Hugo had seventy-nine stickers in his sticker book. He got some more to add to his book and now he has one hundred-twenty stickers. How many did he add to his book?", - "Output Program": [ - "ans=120-79\nprint(ans)" - ], - "Output Answer": [ - "41" - ], - "split": "test" - }, - { - "Input": "A chess club has 3 members. If 4 new members are enrolled, how many total members are there in the chess club?", - "Output Program": [ - "ans=3+4\nprint(ans)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Alec has a garden and likes to put flowers from his garden into pretty vases. Alec put 5 flowers in the first vase, 7 flowers in the second vase, 10 flowers in the third vase, and 14 flowers in the fourth vase. If this pattern continues, how many flowers will Alec put in the fifth vase?", - "Output Program": [ - "lst=[5,7,10,14,19]\nans=lst[5-1]\nprint(ans)" - ], - "Output Answer": [ - "19" - ], - "split": "test" - } - ], - "Metadata": [ - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "15", - "Explanation": "Addition" - }, - { - "Answer": "16", - "Explanation": "Addition" - }, - { - "Answer": "6", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "8", - "Explanation": "Addition" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "24", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "45", - "Explanation": "Addition" - }, - { - "Answer": "0", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Addition" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "1", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Addition" - }, - { - "Answer": "5", - "Explanation": "Addition" - }, - { - "Answer": "1", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Addition" - }, - { - "Answer": "Mrs. Hilt", - "Explanation": "Comparison" - }, - { - "Answer": "13", - "Explanation": "Subtraction" - }, - { - "Answer": "45", - "Explanation": "Sum" - }, - { - "Answer": "55", - "Explanation": "Sum" - }, - { - "Answer": "38", - "Explanation": "Addition" - }, - { - "Answer": "18", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "15", - "Explanation": "Sum" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "6", - "Explanation": "Sum" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Sum" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Sum" - }, - { - "Answer": "15", - "Explanation": "Sum" - }, - { - "Answer": "18", - "Explanation": "Sum" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "18", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "28", - "Explanation": "Addition" - }, - { - "Answer": "22", - "Explanation": "Addition" - }, - { - "Answer": "38", - "Explanation": "Addition" - }, - { - "Answer": "929", - "Explanation": "Addition" - }, - { - "Answer": "62", - "Explanation": "Addition" - }, - { - "Answer": "46", - "Explanation": "Addition" - }, - { - "Answer": "113", - "Explanation": "Addition" - }, - { - "Answer": "616", - "Explanation": "Addition" - }, - { - "Answer": "803", - "Explanation": "Addition" - }, - { - "Answer": "700", - "Explanation": "Addition" - }, - { - "Answer": "20", - "Explanation": "Addition" - }, - { - "Answer": "35", - "Explanation": "Addition" - }, - { - "Answer": "33", - "Explanation": "Addition" - }, - { - "Answer": "40", - "Explanation": "Addition" - }, - { - "Answer": "43", - "Explanation": "Addition" - }, - { - "Answer": "32", - "Explanation": "Addition" - }, - { - "Answer": "60", - "Explanation": "Addition" - }, - { - "Answer": "77", - "Explanation": "Addition" - }, - { - "Answer": "Yes", - "Explanation": "Comparison" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "20", - "Explanation": "Addition" - }, - { - "Answer": "37", - "Explanation": "Addition" - }, - { - "Answer": "21", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Addition" - }, - { - "Answer": "37", - "Explanation": "Sum" - }, - { - "Answer": "24", - "Explanation": "Addition" - }, - { - "Answer": "36", - "Explanation": "Addition" - }, - { - "Answer": "22", - "Explanation": "Addition" - }, - { - "Answer": "31", - "Explanation": "Addition" - }, - { - "Answer": "69", - "Explanation": "Addition" - }, - { - "Answer": "6", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "79", - "Explanation": "Subtraction" - }, - { - "Answer": "31", - "Explanation": "Subtraction" - }, - { - "Answer": "66", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "23", - "Explanation": "Subtraction" - }, - { - "Answer": "17", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "TVQ-Final" - }, - { - "Answer": "32", - "Explanation": "Subtraction" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "42", - "Explanation": "Subtraction" - }, - { - "Answer": "50", - "Explanation": "Subtraction" - }, - { - "Answer": "13", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "63", - "Explanation": "Addition" - }, - { - "Answer": "278", - "Explanation": "Subtraction" - }, - { - "Answer": "95", - "Explanation": "Addition" - }, - { - "Answer": "26", - "Explanation": "Subtraction" - }, - { - "Answer": "26", - "Explanation": "Subtraction" - }, - { - "Answer": "44", - "Explanation": "Addition" - }, - { - "Answer": "36", - "Explanation": "Addition" - }, - { - "Answer": "57", - "Explanation": "Subtraction" - }, - { - "Answer": "55", - "Explanation": "Addition" - }, - { - "Answer": "244", - "Explanation": "Subtraction" - }, - { - "Answer": "152", - "Explanation": "Subtraction" - }, - { - "Answer": "17", - "Explanation": "Subtraction" - }, - { - "Answer": "53", - "Explanation": "Addition" - }, - { - "Answer": "23", - "Explanation": "TVQ-Final" - }, - { - "Answer": "19", - "Explanation": "TVQ-Final" - }, - { - "Answer": "127", - "Explanation": "TVQ-Final" - }, - { - "Answer": "43", - "Explanation": "TVQ-Final" - }, - { - "Answer": "275", - "Explanation": "TVQ-Final" - }, - { - "Answer": "61", - "Explanation": "Addition" - }, - { - "Answer": "49", - "Explanation": "Subtraction" - }, - { - "Answer": "38", - "Explanation": "Subtraction" - }, - { - "Answer": "111", - "Explanation": "Subtraction" - }, - { - "Answer": "28", - "Explanation": "Subtraction" - }, - { - "Answer": "51", - "Explanation": "Addition" - }, - { - "Answer": "77", - "Explanation": "Subtraction" - }, - { - "Answer": "32", - "Explanation": "Sum" - }, - { - "Answer": "53", - "Explanation": "Subtraction" - }, - { - "Answer": "29", - "Explanation": "Subtraction" - }, - { - "Answer": "105", - "Explanation": "Addition" - }, - { - "Answer": "62", - "Explanation": "Addition" - }, - { - "Answer": "61", - "Explanation": "Sum" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "23", - "Explanation": "Subtraction" - }, - { - "Answer": "30", - "Explanation": "Subtraction" - }, - { - "Answer": "21", - "Explanation": "Subtraction" - }, - { - "Answer": "41", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "48", - "Explanation": "Addition" - }, - { - "Answer": "48", - "Explanation": "Multiplication" - }, - { - "Answer": "198", - "Explanation": "Addition" - }, - { - "Answer": "61", - "Explanation": "Subtraction" - }, - { - "Answer": "23", - "Explanation": "Subtraction" - }, - { - "Answer": "46", - "Explanation": "Subtraction" - }, - { - "Answer": "135", - "Explanation": "Sum" - }, - { - "Answer": "300", - "Explanation": "Multiplication" - }, - { - "Answer": "52", - "Explanation": "Multiplication" - }, - { - "Answer": "10", - "Explanation": "Common-Division" - }, - { - "Answer": "13", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Sum" - }, - { - "Answer": "18", - "Explanation": "TVQ-Final" - }, - { - "Answer": "80", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "32", - "Explanation": "Addition" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "4", - "Explanation": "Addition" - }, - { - "Answer": "21", - "Explanation": "Subtraction" - }, - { - "Answer": "Purple", - "Explanation": "Comparison" - }, - { - "Answer": "383", - "Explanation": "Number-Operation" - }, - { - "Answer": "3:30 p.m.", - "Explanation": "Sum" - }, - { - "Answer": "February 3rd", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "165", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Multiplication" - }, - { - "Answer": "Yes", - "Explanation": "Comparison" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "Yes", - "Explanation": "Comparison" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "5:45", - "Explanation": "Sum" - }, - { - "Answer": "0.46", - "Explanation": "Subtraction" - }, - { - "Answer": "25", - "Explanation": "Addition" - }, - { - "Answer": "48", - "Explanation": "Multiplication" - }, - { - "Answer": "20", - "Explanation": "Multiplication" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "15", - "Explanation": "Multiplication" - }, - { - "Answer": "149", - "Explanation": "Sum" - }, - { - "Answer": "12:50", - "Explanation": "Addition" - }, - { - "Answer": "No", - "Explanation": "Comparison" - }, - { - "Answer": "50", - "Explanation": "Addition" - }, - { - "Answer": "1.35", - "Explanation": "Subtraction" - }, - { - "Answer": "0.59", - "Explanation": "Sum" - }, - { - "Answer": "59", - "Explanation": "Subtraction" - }, - { - "Answer": "6th", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "No", - "Explanation": "Comparison" - }, - { - "Answer": "66", - "Explanation": "Sum" - }, - { - "Answer": "2.42", - "Explanation": "Sum" - }, - { - "Answer": "168", - "Explanation": "Sum" - }, - { - "Answer": "65", - "Explanation": "Subtraction" - }, - { - "Answer": "1st", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "Bryan", - "Explanation": "Comparison" - }, - { - "Answer": "30", - "Explanation": "Subtraction" - }, - { - "Answer": "6:10", - "Explanation": "Subtraction" - }, - { - "Answer": "8:15", - "Explanation": "Subtraction" - }, - { - "Answer": "15", - "Explanation": "Subtraction" - }, - { - "Answer": "35", - "Explanation": "Sum" - }, - { - "Answer": "95", - "Explanation": "Sum" - }, - { - "Answer": "70", - "Explanation": "Sum" - }, - { - "Answer": "69", - "Explanation": "Sum" - }, - { - "Answer": "30", - "Explanation": "Sum" - }, - { - "Answer": "55", - "Explanation": "Sum" - }, - { - "Answer": "90", - "Explanation": "Sum" - }, - { - "Answer": "45", - "Explanation": "Sum" - }, - { - "Answer": "70", - "Explanation": "Sum" - }, - { - "Answer": "38", - "Explanation": "Sum" - }, - { - "Answer": "50", - "Explanation": "Sum" - }, - { - "Answer": "30", - "Explanation": "Sum" - }, - { - "Answer": "45", - "Explanation": "Sum" - }, - { - "Answer": "50", - "Explanation": "Sum" - }, - { - "Answer": "155", - "Explanation": "Sum" - }, - { - "Answer": "110", - "Explanation": "Sum" - }, - { - "Answer": "20", - "Explanation": "Sum" - }, - { - "Answer": "20", - "Explanation": "Sum" - }, - { - "Answer": "30", - "Explanation": "Sum" - }, - { - "Answer": "80", - "Explanation": "Sum" - }, - { - "Answer": "65", - "Explanation": "Sum" - }, - { - "Answer": "78", - "Explanation": "Sum" - }, - { - "Answer": "50", - "Explanation": "Sum" - }, - { - "Answer": "95", - "Explanation": "Sum" - }, - { - "Answer": "55", - "Explanation": "Sum" - }, - { - "Answer": "45", - "Explanation": "Addition" - }, - { - "Answer": "65", - "Explanation": "Addition" - }, - { - "Answer": "49", - "Explanation": "Addition" - }, - { - "Answer": "63", - "Explanation": "Addition" - }, - { - "Answer": "93", - "Explanation": "Addition" - }, - { - "Answer": "76", - "Explanation": "Addition" - }, - { - "Answer": "61", - "Explanation": "Addition" - }, - { - "Answer": "98", - "Explanation": "Addition" - }, - { - "Answer": "51", - "Explanation": "Addition" - }, - { - "Answer": "35", - "Explanation": "Addition" - }, - { - "Answer": "43", - "Explanation": "Addition" - }, - { - "Answer": "52", - "Explanation": "Addition" - }, - { - "Answer": "74", - "Explanation": "Addition" - }, - { - "Answer": "100", - "Explanation": "Addition" - }, - { - "Answer": "45", - "Explanation": "Sum" - }, - { - "Answer": "51", - "Explanation": "Addition" - }, - { - "Answer": "94", - "Explanation": "Addition" - }, - { - "Answer": "145", - "Explanation": "Sum" - }, - { - "Answer": "70", - "Explanation": "Sum" - }, - { - "Answer": "97", - "Explanation": "Sum" - }, - { - "Answer": "68", - "Explanation": "Addition" - }, - { - "Answer": "123", - "Explanation": "Addition" - }, - { - "Answer": "40", - "Explanation": "Sum" - }, - { - "Answer": "71", - "Explanation": "Addition" - }, - { - "Answer": "63", - "Explanation": "Addition" - }, - { - "Answer": "574", - "Explanation": "Addition" - }, - { - "Answer": "109", - "Explanation": "Addition" - }, - { - "Answer": "667", - "Explanation": "Addition" - }, - { - "Answer": "480", - "Explanation": "Addition" - }, - { - "Answer": "203", - "Explanation": "Addition" - }, - { - "Answer": "892", - "Explanation": "Addition" - }, - { - "Answer": "601", - "Explanation": "Addition" - }, - { - "Answer": "423", - "Explanation": "Addition" - }, - { - "Answer": "829", - "Explanation": "Addition" - }, - { - "Answer": "952", - "Explanation": "Addition" - }, - { - "Answer": "403", - "Explanation": "Addition" - }, - { - "Answer": "760", - "Explanation": "Addition" - }, - { - "Answer": "934", - "Explanation": "Addition" - }, - { - "Answer": "547", - "Explanation": "Addition" - }, - { - "Answer": "1212", - "Explanation": "Addition" - }, - { - "Answer": "862", - "Explanation": "Addition" - }, - { - "Answer": "900", - "Explanation": "Addition" - }, - { - "Answer": "861", - "Explanation": "Addition" - }, - { - "Answer": "729", - "Explanation": "Addition" - }, - { - "Answer": "400", - "Explanation": "Addition" - }, - { - "Answer": "612", - "Explanation": "Addition" - }, - { - "Answer": "1454", - "Explanation": "Addition" - }, - { - "Answer": "991", - "Explanation": "Addition" - }, - { - "Answer": "992", - "Explanation": "Addition" - }, - { - "Answer": "582", - "Explanation": "Addition" - }, - { - "Answer": "814", - "Explanation": "Addition" - }, - { - "Answer": "672", - "Explanation": "Addition" - }, - { - "Answer": "391", - "Explanation": "Addition" - }, - { - "Answer": "513", - "Explanation": "Addition" - }, - { - "Answer": "400", - "Explanation": "Addition" - }, - { - "Answer": "35", - "Explanation": "Subtraction" - }, - { - "Answer": "30", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "34", - "Explanation": "Subtraction" - }, - { - "Answer": "65", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Subtraction" - }, - { - "Answer": "34", - "Explanation": "Subtraction" - }, - { - "Answer": "20", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "24", - "Explanation": "Subtraction" - }, - { - "Answer": "39", - "Explanation": "Subtraction" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "59", - "Explanation": "Subtraction" - }, - { - "Answer": "63", - "Explanation": "Subtraction" - }, - { - "Answer": "85", - "Explanation": "Subtraction" - }, - { - "Answer": "69", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "73", - "Explanation": "Subtraction" - }, - { - "Answer": "48", - "Explanation": "Subtraction" - }, - { - "Answer": "17", - "Explanation": "Subtraction" - }, - { - "Answer": "39", - "Explanation": "Subtraction" - }, - { - "Answer": "65", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "38", - "Explanation": "Subtraction" - }, - { - "Answer": "32", - "Explanation": "Subtraction" - }, - { - "Answer": "48", - "Explanation": "Subtraction" - }, - { - "Answer": "27", - "Explanation": "Subtraction" - }, - { - "Answer": "303", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "506", - "Explanation": "Subtraction" - }, - { - "Answer": "107", - "Explanation": "Subtraction" - }, - { - "Answer": "184", - "Explanation": "Subtraction" - }, - { - "Answer": "346", - "Explanation": "Subtraction" - }, - { - "Answer": "168", - "Explanation": "Subtraction" - }, - { - "Answer": "478", - "Explanation": "Subtraction" - }, - { - "Answer": "386", - "Explanation": "Subtraction" - }, - { - "Answer": "44", - "Explanation": "Subtraction" - }, - { - "Answer": "66", - "Explanation": "Subtraction" - }, - { - "Answer": "208", - "Explanation": "Subtraction" - }, - { - "Answer": "192", - "Explanation": "Subtraction" - }, - { - "Answer": "147", - "Explanation": "Subtraction" - }, - { - "Answer": "149", - "Explanation": "Subtraction" - }, - { - "Answer": "513", - "Explanation": "Subtraction" - }, - { - "Answer": "212", - "Explanation": "Subtraction" - }, - { - "Answer": "396", - "Explanation": "Subtraction" - }, - { - "Answer": "359", - "Explanation": "Subtraction" - }, - { - "Answer": "176", - "Explanation": "Subtraction" - }, - { - "Answer": "207", - "Explanation": "Subtraction" - }, - { - "Answer": "67", - "Explanation": "Subtraction" - }, - { - "Answer": "163", - "Explanation": "Subtraction" - }, - { - "Answer": "47", - "Explanation": "Subtraction" - }, - { - "Answer": "151", - "Explanation": "Subtraction" - }, - { - "Answer": "834", - "Explanation": "Subtraction" - }, - { - "Answer": "705", - "Explanation": "Subtraction" - }, - { - "Answer": "68", - "Explanation": "Subtraction" - }, - { - "Answer": "276", - "Explanation": "Subtraction" - }, - { - "Answer": "139", - "Explanation": "Subtraction" - }, - { - "Answer": "240", - "Explanation": "Subtraction" - }, - { - "Answer": "120", - "Explanation": "Subtraction" - }, - { - "Answer": "405", - "Explanation": "Addition" - }, - { - "Answer": "180", - "Explanation": "Subtraction" - }, - { - "Answer": "164", - "Explanation": "Subtraction" - }, - { - "Answer": "117", - "Explanation": "TVQ-Change" - }, - { - "Answer": "109", - "Explanation": "Subtraction" - }, - { - "Answer": "82", - "Explanation": "Subtraction" - }, - { - "Answer": "98", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "TVQ-Change" - }, - { - "Answer": "735", - "Explanation": "Addition" - }, - { - "Answer": "385", - "Explanation": "Subtraction" - }, - { - "Answer": "25", - "Explanation": "Subtraction" - }, - { - "Answer": "91", - "Explanation": "Addition" - }, - { - "Answer": "48", - "Explanation": "Subtraction" - }, - { - "Answer": "45", - "Explanation": "Subtraction" - }, - { - "Answer": "182", - "Explanation": "Subtraction" - }, - { - "Answer": "69", - "Explanation": "Subtraction" - }, - { - "Answer": "125", - "Explanation": "Addition" - }, - { - "Answer": "174", - "Explanation": "Subtraction" - }, - { - "Answer": "68", - "Explanation": "Subtraction" - }, - { - "Answer": "90", - "Explanation": "Subtraction" - }, - { - "Answer": "136", - "Explanation": "Subtraction" - }, - { - "Answer": "166", - "Explanation": "Subtraction" - }, - { - "Answer": "548", - "Explanation": "Addition" - }, - { - "Answer": "230", - "Explanation": "Subtraction" - }, - { - "Answer": "225", - "Explanation": "Subtraction" - }, - { - "Answer": "315", - "Explanation": "Subtraction" - }, - { - "Answer": "1000", - "Explanation": "Addition" - }, - { - "Answer": "262", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "25", - "Explanation": "Multiplication" - }, - { - "Answer": "16", - "Explanation": "Multiplication" - }, - { - "Answer": "45", - "Explanation": "Multiplication" - }, - { - "Answer": "42", - "Explanation": "Multiplication" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "54", - "Explanation": "Multiplication" - }, - { - "Answer": "56", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "20", - "Explanation": "Multiplication" - }, - { - "Answer": "30", - "Explanation": "Multiplication" - }, - { - "Answer": "72", - "Explanation": "Multiplication" - }, - { - "Answer": "14", - "Explanation": "Multiplication" - }, - { - "Answer": "15", - "Explanation": "Multiplication" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "36", - "Explanation": "Multiplication" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "18", - "Explanation": "Multiplication" - }, - { - "Answer": "63", - "Explanation": "Multiplication" - }, - { - "Answer": "45", - "Explanation": "Multiplication" - }, - { - "Answer": "35", - "Explanation": "Multiplication" - }, - { - "Answer": "54", - "Explanation": "Multiplication" - }, - { - "Answer": "72", - "Explanation": "Multiplication" - }, - { - "Answer": "8", - "Explanation": "Multiplication" - }, - { - "Answer": "16", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "81", - "Explanation": "Multiplication" - }, - { - "Answer": "9", - "Explanation": "Multiplication" - }, - { - "Answer": "42", - "Explanation": "Multiplication" - }, - { - "Answer": "100", - "Explanation": "Multiplication" - }, - { - "Answer": "50", - "Explanation": "Multiplication" - }, - { - "Answer": "90", - "Explanation": "Multiplication" - }, - { - "Answer": "350", - "Explanation": "Multiplication" - }, - { - "Answer": "800", - "Explanation": "Multiplication" - }, - { - "Answer": "60", - "Explanation": "Multiplication" - }, - { - "Answer": "320", - "Explanation": "Multiplication" - }, - { - "Answer": "540", - "Explanation": "Multiplication" - }, - { - "Answer": "70", - "Explanation": "Multiplication" - }, - { - "Answer": "300", - "Explanation": "Multiplication" - }, - { - "Answer": "480", - "Explanation": "Multiplication" - }, - { - "Answer": "150", - "Explanation": "Multiplication" - }, - { - "Answer": "80", - "Explanation": "Multiplication" - }, - { - "Answer": "270", - "Explanation": "Multiplication" - }, - { - "Answer": "140", - "Explanation": "Multiplication" - }, - { - "Answer": "180", - "Explanation": "Multiplication" - }, - { - "Answer": "210", - "Explanation": "Multiplication" - }, - { - "Answer": "400", - "Explanation": "Multiplication" - }, - { - "Answer": "240", - "Explanation": "Multiplication" - }, - { - "Answer": "100", - "Explanation": "Multiplication" - }, - { - "Answer": "270", - "Explanation": "Multiplication" - }, - { - "Answer": "160", - "Explanation": "Multiplication" - }, - { - "Answer": "250", - "Explanation": "Multiplication" - }, - { - "Answer": "490", - "Explanation": "Multiplication" - }, - { - "Answer": "480", - "Explanation": "Multiplication" - }, - { - "Answer": "490", - "Explanation": "Multiplication" - }, - { - "Answer": "120", - "Explanation": "Multiplication" - }, - { - "Answer": "60", - "Explanation": "Multiplication" - }, - { - "Answer": "320", - "Explanation": "Multiplication" - }, - { - "Answer": "630", - "Explanation": "Multiplication" - }, - { - "Answer": "455", - "Explanation": "Multiplication" - }, - { - "Answer": "738", - "Explanation": "Multiplication" - }, - { - "Answer": "504", - "Explanation": "Multiplication" - }, - { - "Answer": "488", - "Explanation": "Multiplication" - }, - { - "Answer": "14280", - "Explanation": "Multiplication" - }, - { - "Answer": "360", - "Explanation": "Multiplication" - }, - { - "Answer": "1876", - "Explanation": "Multiplication" - }, - { - "Answer": "498", - "Explanation": "Multiplication" - }, - { - "Answer": "2916", - "Explanation": "Multiplication" - }, - { - "Answer": "6835", - "Explanation": "Multiplication" - }, - { - "Answer": "203", - "Explanation": "Multiplication" - }, - { - "Answer": "1050", - "Explanation": "Multiplication" - }, - { - "Answer": "512", - "Explanation": "Multiplication" - }, - { - "Answer": "1424", - "Explanation": "Multiplication" - }, - { - "Answer": "7305", - "Explanation": "Multiplication" - }, - { - "Answer": "308", - "Explanation": "Multiplication" - }, - { - "Answer": "984", - "Explanation": "Multiplication" - }, - { - "Answer": "140", - "Explanation": "Multiplication" - }, - { - "Answer": "2268", - "Explanation": "Multiplication" - }, - { - "Answer": "6538", - "Explanation": "Multiplication" - }, - { - "Answer": "81", - "Explanation": "Multiplication" - }, - { - "Answer": "1415", - "Explanation": "Multiplication" - }, - { - "Answer": "2952", - "Explanation": "Multiplication" - }, - { - "Answer": "136", - "Explanation": "Multiplication" - }, - { - "Answer": "9794", - "Explanation": "Multiplication" - }, - { - "Answer": "3824", - "Explanation": "Multiplication" - }, - { - "Answer": "441", - "Explanation": "Multiplication" - }, - { - "Answer": "3962", - "Explanation": "Multiplication" - }, - { - "Answer": "198", - "Explanation": "Multiplication" - }, - { - "Answer": "3285", - "Explanation": "Multiplication" - }, - { - "Answer": "10", - "Explanation": "Common-Division" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "60", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "20", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "10", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "11", - "Explanation": "Common-Division" - }, - { - "Answer": "10", - "Explanation": "Common-Division" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "23", - "Explanation": "Common-Division" - }, - { - "Answer": "40", - "Explanation": "Common-Division" - }, - { - "Answer": "17", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "14", - "Explanation": "Common-Division" - }, - { - "Answer": "24", - "Explanation": "Common-Division" - }, - { - "Answer": "11", - "Explanation": "Floor-Division" - }, - { - "Answer": "6", - "Explanation": "Surplus" - }, - { - "Answer": "21", - "Explanation": "Common-Division" - }, - { - "Answer": "35", - "Explanation": "Common-Division" - }, - { - "Answer": "13", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "34", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "8", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Floor-Division" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "14", - "Explanation": "Common-Division" - }, - { - "Answer": "20", - "Explanation": "Common-Division" - }, - { - "Answer": "13", - "Explanation": "Common-Division" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "6", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "13", - "Explanation": "Floor-Division" - }, - { - "Answer": "345", - "Explanation": "Subtraction" - }, - { - "Answer": "217", - "Explanation": "Addition" - }, - { - "Answer": "2327", - "Explanation": "Addition" - }, - { - "Answer": "52", - "Explanation": "Subtraction" - }, - { - "Answer": "13", - "Explanation": "Subtraction" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "23", - "Explanation": "Subtraction" - }, - { - "Answer": "62", - "Explanation": "Addition" - }, - { - "Answer": "63", - "Explanation": "Addition" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "92", - "Explanation": "Multiplication" - }, - { - "Answer": "460", - "Explanation": "Multiplication" - }, - { - "Answer": "4764", - "Explanation": "Multiplication" - }, - { - "Answer": "332", - "Explanation": "Multiplication" - }, - { - "Answer": "436", - "Explanation": "Multiplication" - }, - { - "Answer": "703", - "Explanation": "Multiplication" - }, - { - "Answer": "1540", - "Explanation": "Multiplication" - }, - { - "Answer": "2448", - "Explanation": "Multiplication" - }, - { - "Answer": "33", - "Explanation": "Multiplication" - }, - { - "Answer": "432", - "Explanation": "Multiplication" - }, - { - "Answer": "522", - "Explanation": "Multiplication" - }, - { - "Answer": "84", - "Explanation": "Multiplication" - }, - { - "Answer": "780", - "Explanation": "Multiplication" - }, - { - "Answer": "45552", - "Explanation": "Multiplication" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Multiplication" - }, - { - "Answer": "6003", - "Explanation": "Multiplication" - }, - { - "Answer": "168", - "Explanation": "Multiplication" - }, - { - "Answer": "420", - "Explanation": "Multiplication" - }, - { - "Answer": "8484", - "Explanation": "Multiplication" - }, - { - "Answer": "2250", - "Explanation": "Multiplication" - }, - { - "Answer": "46", - "Explanation": "Multiplication" - }, - { - "Answer": "210", - "Explanation": "Multiplication" - }, - { - "Answer": "1396", - "Explanation": "Multiplication" - }, - { - "Answer": "11676", - "Explanation": "Multiplication" - }, - { - "Answer": "629", - "Explanation": "Multiplication" - }, - { - "Answer": "17408", - "Explanation": "Multiplication" - }, - { - "Answer": "20", - "Explanation": "Multiplication" - }, - { - "Answer": "46", - "Explanation": "Addition" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "3000", - "Explanation": "Multiplication" - }, - { - "Answer": "5", - "Explanation": "Floor-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "13", - "Explanation": "Common-Division" - }, - { - "Answer": "96", - "Explanation": "Multiplication" - }, - { - "Answer": "30", - "Explanation": "Common-Division" - }, - { - "Answer": "15", - "Explanation": "Common-Division" - }, - { - "Answer": "60", - "Explanation": "Multiplication" - }, - { - "Answer": "100", - "Explanation": "Multiplication" - }, - { - "Answer": "28", - "Explanation": "Multiplication" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "1200", - "Explanation": "Multiplication" - }, - { - "Answer": "3.333", - "Explanation": "Common-Division" - }, - { - "Answer": "400", - "Explanation": "Multiplication" - }, - { - "Answer": "21", - "Explanation": "Common-Division" - }, - { - "Answer": "20", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "29", - "Explanation": "Common-Division" - }, - { - "Answer": "288", - "Explanation": "Multiplication" - }, - { - "Answer": "2205", - "Explanation": "Multiplication" - }, - { - "Answer": "720", - "Explanation": "Multiplication" - }, - { - "Answer": "7", - "Explanation": "Ceil-Division" - }, - { - "Answer": "63", - "Explanation": "Common-Division" - }, - { - "Answer": "323", - "Explanation": "Subtraction" - }, - { - "Answer": "48", - "Explanation": "Subtraction" - }, - { - "Answer": "1110", - "Explanation": "Subtraction" - }, - { - "Answer": "220", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "688", - "Explanation": "Subtraction" - }, - { - "Answer": "426", - "Explanation": "Multiplication" - }, - { - "Answer": "162", - "Explanation": "Common-Division" - }, - { - "Answer": "13", - "Explanation": "Common-Division" - }, - { - "Answer": "326", - "Explanation": "Addition" - }, - { - "Answer": "45", - "Explanation": "Subtraction" - }, - { - "Answer": "99", - "Explanation": "Subtraction" - }, - { - "Answer": "776", - "Explanation": "Addition" - }, - { - "Answer": "208", - "Explanation": "Subtraction" - }, - { - "Answer": "709", - "Explanation": "Subtraction" - }, - { - "Answer": "128", - "Explanation": "Subtraction" - }, - { - "Answer": "498", - "Explanation": "Addition" - }, - { - "Answer": "486", - "Explanation": "Multiplication" - }, - { - "Answer": "0.72", - "Explanation": "Subtraction" - }, - { - "Answer": "4.62", - "Explanation": "Multiplication" - }, - { - "Answer": "9", - "Explanation": "TVQ-Final" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "1250", - "Explanation": "Multiplication" - }, - { - "Answer": "1.36", - "Explanation": "Addition" - }, - { - "Answer": "8243", - "Explanation": "Addition" - }, - { - "Answer": "1.2", - "Explanation": "Common-Division" - }, - { - "Answer": "3264", - "Explanation": "Subtraction" - }, - { - "Answer": "3750", - "Explanation": "Multiplication" - }, - { - "Answer": "360", - "Explanation": "Multiplication" - }, - { - "Answer": "372", - "Explanation": "Multiplication" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "7827", - "Explanation": "Multiplication" - }, - { - "Answer": "204", - "Explanation": "Multiplication" - }, - { - "Answer": "75", - "Explanation": "Multiplication" - }, - { - "Answer": "39", - "Explanation": "Subtraction" - }, - { - "Answer": "48", - "Explanation": "Multiplication" - }, - { - "Answer": "296", - "Explanation": "Multiplication" - }, - { - "Answer": "242", - "Explanation": "Multiplication" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "18", - "Explanation": "Multiplication" - }, - { - "Answer": "66018", - "Explanation": "Addition" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "1.25", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Floor-Division" - }, - { - "Answer": "5", - "Explanation": "Surplus" - }, - { - "Answer": "68", - "Explanation": "Multiplication" - }, - { - "Answer": "Rug B", - "Explanation": "Comparison" - }, - { - "Answer": "44", - "Explanation": "Geometry" - }, - { - "Answer": "2.5", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "26", - "Explanation": "UnitTrans" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "432", - "Explanation": "Multiplication" - }, - { - "Answer": "120", - "Explanation": "Multiplication" - }, - { - "Answer": "280", - "Explanation": "Addition" - }, - { - "Answer": "68", - "Explanation": "Subtraction" - }, - { - "Answer": "159", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "400", - "Explanation": "Addition" - }, - { - "Answer": "121", - "Explanation": "Addition" - }, - { - "Answer": "273", - "Explanation": "Subtraction" - }, - { - "Answer": "112", - "Explanation": "Multiplication" - }, - { - "Answer": "218", - "Explanation": "Subtraction" - }, - { - "Answer": "1035", - "Explanation": "Multiplication" - }, - { - "Answer": "42", - "Explanation": "Multiplication" - }, - { - "Answer": "46", - "Explanation": "Sum" - }, - { - "Answer": "48", - "Explanation": "Subtraction" - }, - { - "Answer": "56", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Sum" - }, - { - "Answer": "7.95", - "Explanation": "Subtraction" - }, - { - "Answer": "102", - "Explanation": "Subtraction" - }, - { - "Answer": "1", - "Explanation": "Subtraction" - }, - { - "Answer": "1", - "Explanation": "Subtraction" - }, - { - "Answer": "0.65", - "Explanation": "Subtraction" - }, - { - "Answer": "25", - "Explanation": "Sum" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "170", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Sum" - }, - { - "Answer": "4.7", - "Explanation": "Subtraction" - }, - { - "Answer": "30", - "Explanation": "Addition" - }, - { - "Answer": "76", - "Explanation": "Addition" - }, - { - "Answer": "15", - "Explanation": "Sum" - }, - { - "Answer": "7", - "Explanation": "Floor-Division" - }, - { - "Answer": "12", - "Explanation": "Floor-Division" - }, - { - "Answer": "18", - "Explanation": "Ceil-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "22", - "Explanation": "Floor-Division" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "21", - "Explanation": "Floor-Division" - }, - { - "Answer": "8", - "Explanation": "Surplus" - }, - { - "Answer": "8", - "Explanation": "Surplus" - }, - { - "Answer": "210", - "Explanation": "Subtraction" - }, - { - "Answer": "27", - "Explanation": "Subtraction" - }, - { - "Answer": "83.2", - "Explanation": "Subtraction" - }, - { - "Answer": "480", - "Explanation": "Subtraction" - }, - { - "Answer": "15", - "Explanation": "Floor-Division" - }, - { - "Answer": "4400", - "Explanation": "Addition" - }, - { - "Answer": "190.8", - "Explanation": "Multiplication" - }, - { - "Answer": "15840", - "Explanation": "UnitTrans" - }, - { - "Answer": "8", - "Explanation": "TVQ-Final" - }, - { - "Answer": "4", - "Explanation": "TVQ-Final" - }, - { - "Answer": "2", - "Explanation": "TVQ-Final" - }, - { - "Answer": "4", - "Explanation": "TVQ-Final" - }, - { - "Answer": "2", - "Explanation": "TVQ-Change" - }, - { - "Answer": "4", - "Explanation": "TVQ-Change" - }, - { - "Answer": "7", - "Explanation": "TVQ-Final" - }, - { - "Answer": "3", - "Explanation": "TVQ-Final" - }, - { - "Answer": "85", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "40", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "61", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "28", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "33", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "32", - "Explanation": "Subtraction" - }, - { - "Answer": "40", - "Explanation": "TVQ-Change" - }, - { - "Answer": "57", - "Explanation": "TVQ-Final" - }, - { - "Answer": "18", - "Explanation": "TVQ-Final" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "46", - "Explanation": "TVQ-Change" - }, - { - "Answer": "56", - "Explanation": "TVQ-Final" - }, - { - "Answer": "83", - "Explanation": "TVQ-Change" - }, - { - "Answer": "43", - "Explanation": "Subtraction" - }, - { - "Answer": "66", - "Explanation": "TVQ-Change" - }, - { - "Answer": "46", - "Explanation": "TVQ-Final" - }, - { - "Answer": "25", - "Explanation": "TVQ-Change" - }, - { - "Answer": "46", - "Explanation": "TVQ-Change" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "30", - "Explanation": "Subtraction" - }, - { - "Answer": "29", - "Explanation": "Subtraction" - }, - { - "Answer": "23", - "Explanation": "Subtraction" - }, - { - "Answer": "44", - "Explanation": "Subtraction" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "32", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "41", - "Explanation": "TVQ-Final" - }, - { - "Answer": "29", - "Explanation": "TVQ-Final" - }, - { - "Answer": "39", - "Explanation": "TVQ-Final" - }, - { - "Answer": "58", - "Explanation": "Subtraction" - }, - { - "Answer": "48", - "Explanation": "TVQ-Final" - }, - { - "Answer": "13", - "Explanation": "TVQ-Final" - }, - { - "Answer": "14", - "Explanation": "TVQ-Final" - }, - { - "Answer": "22", - "Explanation": "TVQ-Final" - }, - { - "Answer": "5", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "4", - "Explanation": "Addition" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Addition" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "8", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "22", - "Explanation": "TVQ-Final" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "76", - "Explanation": "Sum" - }, - { - "Answer": "83", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "52", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "71", - "Explanation": "Sum" - }, - { - "Answer": "51", - "Explanation": "Sum" - }, - { - "Answer": "93", - "Explanation": "TVQ-Change" - }, - { - "Answer": "99", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "55", - "Explanation": "Sum" - }, - { - "Answer": "57", - "Explanation": "Sum" - }, - { - "Answer": "8", - "Explanation": "Ceil-Division" - }, - { - "Answer": "4", - "Explanation": "Surplus" - }, - { - "Answer": "12", - "Explanation": "Ceil-Division" - }, - { - "Answer": "42", - "Explanation": "Surplus" - }, - { - "Answer": "13", - "Explanation": "Ceil-Division" - }, - { - "Answer": "15", - "Explanation": "Surplus" - }, - { - "Answer": "16", - "Explanation": "Ceil-Division" - }, - { - "Answer": "8", - "Explanation": "Surplus" - }, - { - "Answer": "194", - "Explanation": "Ceil-Division" - }, - { - "Answer": "10", - "Explanation": "Surplus" - }, - { - "Answer": "19", - "Explanation": "Ceil-Division" - }, - { - "Answer": "4", - "Explanation": "Surplus" - }, - { - "Answer": "26", - "Explanation": "Ceil-Division" - }, - { - "Answer": "30", - "Explanation": "Surplus" - }, - { - "Answer": "14", - "Explanation": "Ceil-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "13", - "Explanation": "Ceil-Division" - }, - { - "Answer": "9", - "Explanation": "Surplus" - }, - { - "Answer": "23", - "Explanation": "Ceil-Division" - }, - { - "Answer": "24", - "Explanation": "Surplus" - }, - { - "Answer": "6", - "Explanation": "Floor-Division" - }, - { - "Answer": "5", - "Explanation": "Surplus" - }, - { - "Answer": "9", - "Explanation": "Floor-Division" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "9", - "Explanation": "Floor-Division" - }, - { - "Answer": "5", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Floor-Division" - }, - { - "Answer": "6", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "8", - "Explanation": "Floor-Division" - }, - { - "Answer": "4", - "Explanation": "Surplus" - }, - { - "Answer": "4", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "5", - "Explanation": "Floor-Division" - }, - { - "Answer": "4", - "Explanation": "Surplus" - }, - { - "Answer": "7", - "Explanation": "Floor-Division" - }, - { - "Answer": "5", - "Explanation": "Surplus" - }, - { - "Answer": "6", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "15", - "Explanation": "Floor-Division" - }, - { - "Answer": "1", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Floor-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "9", - "Explanation": "Floor-Division" - }, - { - "Answer": "10", - "Explanation": "Surplus" - }, - { - "Answer": "8", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "51", - "Explanation": "Floor-Division" - }, - { - "Answer": "7", - "Explanation": "Surplus" - }, - { - "Answer": "8", - "Explanation": "Floor-Division" - }, - { - "Answer": "1", - "Explanation": "Common-Division" - }, - { - "Answer": "19", - "Explanation": "Floor-Division" - }, - { - "Answer": "20", - "Explanation": "Surplus" - }, - { - "Answer": "12", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "16", - "Explanation": "Floor-Division" - }, - { - "Answer": "10", - "Explanation": "Surplus" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "121", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "27", - "Explanation": "Subtraction" - }, - { - "Answer": "Cesar's toothbrush", - "Explanation": "Comparison" - }, - { - "Answer": "Sara", - "Explanation": "Comparison" - }, - { - "Answer": "John", - "Explanation": "Comparison" - }, - { - "Answer": "Harry", - "Explanation": "Comparison" - }, - { - "Answer": "John", - "Explanation": "Comparison" - }, - { - "Answer": "Alex", - "Explanation": "Comparison" - }, - { - "Answer": "Jim", - "Explanation": "Comparison" - }, - { - "Answer": "Jimmy", - "Explanation": "Comparison" - }, - { - "Answer": "350", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "150", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "850", - "Explanation": "Subtraction" - }, - { - "Answer": "100", - "Explanation": "Subtraction" - }, - { - "Answer": "11:30", - "Explanation": "Addition" - }, - { - "Answer": "14:55", - "Explanation": "Addition" - }, - { - "Answer": "20:13", - "Explanation": "Addition" - }, - { - "Answer": "3:45", - "Explanation": "Addition" - }, - { - "Answer": "12:10", - "Explanation": "Addition" - }, - { - "Answer": "14:10", - "Explanation": "Addition" - }, - { - "Answer": "17:03", - "Explanation": "Addition" - }, - { - "Answer": "9:24", - "Explanation": "Addition" - }, - { - "Answer": "15:55", - "Explanation": "Addition" - }, - { - "Answer": "43.07", - "Explanation": "Subtraction" - }, - { - "Answer": "14.57", - "Explanation": "Difference" - }, - { - "Answer": "5:6", - "Explanation": "Ratio" - }, - { - "Answer": "3:4", - "Explanation": "Ratio" - }, - { - "Answer": "4:5", - "Explanation": "Ratio" - }, - { - "Answer": "2:3", - "Explanation": "Ratio" - }, - { - "Answer": "3:4", - "Explanation": "Ratio" - }, - { - "Answer": "2:3", - "Explanation": "Ratio" - }, - { - "Answer": "3:5", - "Explanation": "Ratio" - }, - { - "Answer": "9:10", - "Explanation": "Ratio" - }, - { - "Answer": "17:12", - "Explanation": "Ratio" - }, - { - "Answer": "2:5", - "Explanation": "Ratio" - }, - { - "Answer": "6:7", - "Explanation": "Ratio" - }, - { - "Answer": "3:4", - "Explanation": "Ratio" - }, - { - "Answer": "18", - "Explanation": "Ratio" - }, - { - "Answer": "8", - "Explanation": "Ratio" - }, - { - "Answer": "20", - "Explanation": "Ratio" - }, - { - "Answer": "24", - "Explanation": "Ratio" - }, - { - "Answer": "5", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "40", - "Explanation": "LCM" - }, - { - "Answer": "The 60th caller.", - "Explanation": "LCM" - }, - { - "Answer": "3", - "Explanation": "Addition" - }, - { - "Answer": "3", - "Explanation": "GCD" - }, - { - "Answer": "48", - "Explanation": "LCM" - }, - { - "Answer": "2", - "Explanation": "GCD" - }, - { - "Answer": "9", - "Explanation": "GCD" - }, - { - "Answer": "210", - "Explanation": "LCM" - }, - { - "Answer": "48", - "Explanation": "Multiplication" - }, - { - "Answer": "77", - "Explanation": "TVQ-Final" - }, - { - "Answer": "26", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "35", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "24", - "Explanation": "Subtraction" - }, - { - "Answer": "38", - "Explanation": "Set-Operation" - }, - { - "Answer": "36", - "Explanation": "Set-Operation" - }, - { - "Answer": "14", - "Explanation": "Number-Operation" - }, - { - "Answer": "21", - "Explanation": "TVQ-Final" - }, - { - "Answer": "6", - "Explanation": "Algebra-1" - }, - { - "Answer": "8", - "Explanation": "Difference" - }, - { - "Answer": "14", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "15", - "Explanation": "Algebra-1" - }, - { - "Answer": "75", - "Explanation": "Addition" - }, - { - "Answer": "36", - "Explanation": "TVQ-Final" - }, - { - "Answer": "6", - "Explanation": "Algebra-1" - }, - { - "Answer": "18", - "Explanation": "Algebra-1" - }, - { - "Answer": "33", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Difference" - }, - { - "Answer": "30", - "Explanation": "Addition" - }, - { - "Answer": "40", - "Explanation": "Sum" - }, - { - "Answer": "34", - "Explanation": "Number-Pattern" - }, - { - "Answer": "64", - "Explanation": "Sum" - }, - { - "Answer": "29", - "Explanation": "Subtraction" - }, - { - "Answer": "60", - "Explanation": "Sum" - }, - { - "Answer": "10", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Algebra-1" - }, - { - "Answer": "8", - "Explanation": "Difference" - }, - { - "Answer": "50", - "Explanation": "Sum" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "5", - "Explanation": "Floor-Division" - }, - { - "Answer": "46", - "Explanation": "Algebra-1" - }, - { - "Answer": "76", - "Explanation": "TVQ-Final" - }, - { - "Answer": "37", - "Explanation": "Algebra-1" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "62", - "Explanation": "Multiplication" - }, - { - "Answer": "15", - "Explanation": "Algebra-1" - }, - { - "Answer": "23", - "Explanation": "TVQ-Final" - }, - { - "Answer": "30", - "Explanation": "Sum" - }, - { - "Answer": "82", - "Explanation": "Addition" - }, - { - "Answer": "53", - "Explanation": "Addition" - }, - { - "Answer": "45", - "Explanation": "Subtraction" - }, - { - "Answer": "42", - "Explanation": "Addition" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "28", - "Explanation": "Subtraction" - }, - { - "Answer": "27", - "Explanation": "Subtraction" - }, - { - "Answer": "17", - "Explanation": "Subtraction" - }, - { - "Answer": "44", - "Explanation": "Addition" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "39", - "Explanation": "Subtraction" - }, - { - "Answer": "73", - "Explanation": "Addition" - }, - { - "Answer": "28", - "Explanation": "Subtraction" - }, - { - "Answer": "23", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "24", - "Explanation": "Subtraction" - }, - { - "Answer": "62", - "Explanation": "Addition" - }, - { - "Answer": "43", - "Explanation": "Addition" - }, - { - "Answer": "76", - "Explanation": "Addition" - }, - { - "Answer": "44", - "Explanation": "Addition" - }, - { - "Answer": "27", - "Explanation": "Subtraction" - }, - { - "Answer": "80", - "Explanation": "Addition" - }, - { - "Answer": "48", - "Explanation": "Subtraction" - }, - { - "Answer": "40", - "Explanation": "Addition" - }, - { - "Answer": "26", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "TVQ-Final" - }, - { - "Answer": "78", - "Explanation": "Sum" - }, - { - "Answer": "19", - "Explanation": "TVQ-Final" - }, - { - "Answer": "64", - "Explanation": "TVQ-Final" - }, - { - "Answer": "87", - "Explanation": "Addition" - }, - { - "Answer": "15", - "Explanation": "TVQ-Change" - }, - { - "Answer": "75", - "Explanation": "Subtraction" - }, - { - "Answer": "68", - "Explanation": "TVQ-Change" - }, - { - "Answer": "41", - "Explanation": "TVQ-Final" - }, - { - "Answer": "78", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "82", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "25", - "Explanation": "TVQ-Final" - }, - { - "Answer": "31", - "Explanation": "TVQ-Final" - }, - { - "Answer": "41", - "Explanation": "TVQ-Final" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "38", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Subtraction" - }, - { - "Answer": "60", - "Explanation": "Addition" - }, - { - "Answer": "62", - "Explanation": "Addition" - }, - { - "Answer": "19", - "Explanation": "Subtraction" - }, - { - "Answer": "40", - "Explanation": "Addition" - }, - { - "Answer": "37", - "Explanation": "Subtraction" - }, - { - "Answer": "35", - "Explanation": "Subtraction" - }, - { - "Answer": "71", - "Explanation": "Addition" - }, - { - "Answer": "79", - "Explanation": "Subtraction" - }, - { - "Answer": "15", - "Explanation": "Subtraction" - }, - { - "Answer": "93", - "Explanation": "Addition" - }, - { - "Answer": "74", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "240", - "Explanation": "LCM" - }, - { - "Answer": "6", - "Explanation": "GCD" - }, - { - "Answer": "5", - "Explanation": "GCD" - }, - { - "Answer": "3", - "Explanation": "GCD" - }, - { - "Answer": "7", - "Explanation": "GCD" - }, - { - "Answer": "3", - "Explanation": "GCD" - }, - { - "Answer": "9", - "Explanation": "GCD" - }, - { - "Answer": "60", - "Explanation": "LCM" - }, - { - "Answer": "40", - "Explanation": "LCM" - }, - { - "Answer": "90", - "Explanation": "LCM" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "95", - "Explanation": "LCM" - }, - { - "Answer": "48", - "Explanation": "Difference" - }, - { - "Answer": "37", - "Explanation": "TVQ-Final" - }, - { - "Answer": "12", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "40", - "Explanation": "TVQ-Change" - }, - { - "Answer": "74", - "Explanation": "TVQ-Final" - }, - { - "Answer": "35", - "Explanation": "TVQ-Final" - }, - { - "Answer": "18", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "51", - "Explanation": "Addition" - }, - { - "Answer": "31", - "Explanation": "TVQ-Change" - }, - { - "Answer": "22", - "Explanation": "TVQ-Change" - }, - { - "Answer": "42", - "Explanation": "TVQ-Final" - }, - { - "Answer": "58", - "Explanation": "TVQ-Change" - }, - { - "Answer": "22", - "Explanation": "TVQ-Final" - }, - { - "Answer": "14", - "Explanation": "TVQ-Change" - }, - { - "Answer": "77", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Substraction" - }, - { - "Answer": "17", - "Explanation": "TVQ-Final" - }, - { - "Answer": "41", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "91", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "26", - "Explanation": "TVQ-Final" - }, - { - "Answer": "25", - "Explanation": "Difference" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "TVQ-Change" - }, - { - "Answer": "33", - "Explanation": "Addition" - }, - { - "Answer": "75", - "Explanation": "Addition" - }, - { - "Answer": "21", - "Explanation": "TVQ-Initial" - }, - { - "Answer": "14", - "Explanation": "TVQ-Final" - }, - { - "Answer": "8", - "Explanation": "TVQ-Final" - }, - { - "Answer": "64", - "Explanation": "TVQ-Final" - }, - { - "Answer": "58", - "Explanation": "Addition" - }, - { - "Answer": "67", - "Explanation": "Subtraction" - }, - { - "Answer": "44", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Subtraction" - }, - { - "Answer": "42", - "Explanation": "Addition" - }, - { - "Answer": "65", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "42", - "Explanation": "Addition" - }, - { - "Answer": "82", - "Explanation": "Addition" - }, - { - "Answer": "36", - "Explanation": "Subtraction" - }, - { - "Answer": "48", - "Explanation": "Subtraction" - }, - { - "Answer": "78", - "Explanation": "Subtraction" - }, - { - "Answer": "91", - "Explanation": "Addition" - }, - { - "Answer": "36", - "Explanation": "Subtraction" - }, - { - "Answer": "92", - "Explanation": "Addition" - }, - { - "Answer": "33", - "Explanation": "Subtraction" - }, - { - "Answer": "30", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "34", - "Explanation": "Subtraction" - }, - { - "Answer": "62", - "Explanation": "Addition" - }, - { - "Answer": "54", - "Explanation": "Subtraction" - }, - { - "Answer": "57", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "49", - "Explanation": "Subtraction" - }, - { - "Answer": "71", - "Explanation": "Addition" - }, - { - "Answer": "70", - "Explanation": "Addition" - }, - { - "Answer": "47", - "Explanation": "Subtraction" - }, - { - "Answer": "53", - "Explanation": "Subtraction" - }, - { - "Answer": "94", - "Explanation": "Addition" - }, - { - "Answer": "59", - "Explanation": "Subtraction" - }, - { - "Answer": "38", - "Explanation": "Subtraction" - }, - { - "Answer": "40", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "The men's track team", - "Explanation": "Comparison" - }, - { - "Answer": "Fall", - "Explanation": "Comparison" - }, - { - "Answer": "Lisa's soccer team", - "Explanation": "Comparison" - }, - { - "Answer": "Shannon", - "Explanation": "Comparison" - }, - { - "Answer": "Ezra's class", - "Explanation": "Comparison" - }, - { - "Answer": "Mrs. Doyle's class", - "Explanation": "Comparison" - }, - { - "Answer": "Jacob's punch recipe", - "Explanation": "Comparison" - }, - { - "Answer": "They are equal", - "Explanation": "Comparison" - }, - { - "Answer": "Daniel's pizza restaurant", - "Explanation": "Comparison" - }, - { - "Answer": "They are equal", - "Explanation": "Comparison" - }, - { - "Answer": "This year", - "Explanation": "Comparison" - }, - { - "Answer": "Jesse's class", - "Explanation": "Comparison" - }, - { - "Answer": "They are equal", - "Explanation": "Comparison" - }, - { - "Answer": "The Cooper wedding", - "Explanation": "Comparison" - }, - { - "Answer": "The first rest stop", - "Explanation": "Comparison" - }, - { - "Answer": "Westford location", - "Explanation": "Comparison" - }, - { - "Answer": "They are equal", - "Explanation": "Comparison" - }, - { - "Answer": "Georgetown Middle School", - "Explanation": "Comparison" - }, - { - "Answer": "25", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "40", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "114", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "162", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "17", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "38", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "13", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "59", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "15", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "96", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "25", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "156", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "48", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "15", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "33", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "50", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "12", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "128", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "56", - "Explanation": "Addition" - }, - { - "Answer": "53", - "Explanation": "Addition" - }, - { - "Answer": "1", - "Explanation": "Difference" - }, - { - "Answer": "2.5", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Addition" - }, - { - "Answer": "1121", - "Explanation": "Difference" - }, - { - "Answer": "40", - "Explanation": "Common-Division" - }, - { - "Answer": "8318", - "Explanation": "Addition" - }, - { - "Answer": "1059955", - "Explanation": "Addition" - }, - { - "Answer": "11760", - "Explanation": "Addition" - }, - { - "Answer": "1102609", - "Explanation": "Addition" - }, - { - "Answer": "167", - "Explanation": "Common-Division" - }, - { - "Answer": "4500", - "Explanation": "Subtraction" - }, - { - "Answer": "25", - "Explanation": "Subtraction" - }, - { - "Answer": "3550", - "Explanation": "Common-Division" - }, - { - "Answer": "9.6", - "Explanation": "Multiplication" - }, - { - "Answer": "11.7", - "Explanation": "Addition" - }, - { - "Answer": "12.5", - "Explanation": "Multiplication" - }, - { - "Answer": "53", - "Explanation": "Subtraction" - }, - { - "Answer": "21.9", - "Explanation": "Addition" - }, - { - "Answer": "0.395", - "Explanation": "Multiplication" - }, - { - "Answer": "38", - "Explanation": "Subtraction" - }, - { - "Answer": "3600", - "Explanation": "Common-Division" - }, - { - "Answer": "1.2", - "Explanation": "Sum" - }, - { - "Answer": "6000", - "Explanation": "Multiplication" - }, - { - "Answer": "468", - "Explanation": "Addition" - }, - { - "Answer": "180", - "Explanation": "Common-Division" - }, - { - "Answer": "2125", - "Explanation": "Addition" - }, - { - "Answer": "11:45 p.m.", - "Explanation": "Subtraction" - }, - { - "Answer": "11:55 p.m. on 24 December 2014.", - "Explanation": "Subtraction" - }, - { - "Answer": "50", - "Explanation": "Ratio" - }, - { - "Answer": "8", - "Explanation": "Difference" - }, - { - "Answer": "18", - "Explanation": "Difference" - }, - { - "Answer": "12", - "Explanation": "Difference" - }, - { - "Answer": "45", - "Explanation": "Difference" - }, - { - "Answer": "32", - "Explanation": "Ratio" - }, - { - "Answer": "27", - "Explanation": "Difference" - }, - { - "Answer": "18", - "Explanation": "Ratio" - }, - { - "Answer": "24", - "Explanation": "Ratio" - }, - { - "Answer": "12", - "Explanation": "Ratio" - }, - { - "Answer": "28", - "Explanation": "Ratio" - }, - { - "Answer": "200", - "Explanation": "Ratio" - }, - { - "Answer": "21", - "Explanation": "Ratio" - }, - { - "Answer": "20", - "Explanation": "Difference" - }, - { - "Answer": "24", - "Explanation": "Ratio" - }, - { - "Answer": "20", - "Explanation": "Ratio" - }, - { - "Answer": "18", - "Explanation": "Difference" - }, - { - "Answer": "42", - "Explanation": "Ratio" - }, - { - "Answer": "81", - "Explanation": "Ratio" - }, - { - "Answer": "96", - "Explanation": "Ratio" - }, - { - "Answer": "9:7", - "Explanation": "Ratio" - }, - { - "Answer": "210", - "Explanation": "Ratio" - }, - { - "Answer": "117", - "Explanation": "Ratio" - }, - { - "Answer": "12.5", - "Explanation": "Ratio" - }, - { - "Answer": "15", - "Explanation": "Ratio" - }, - { - "Answer": "19:31", - "Explanation": "Ratio" - }, - { - "Answer": "13:1", - "Explanation": "Ratio" - }, - { - "Answer": "20:7", - "Explanation": "Ratio" - }, - { - "Answer": "11:9", - "Explanation": "Ratio" - }, - { - "Answer": "9:41", - "Explanation": "Ratio" - }, - { - "Answer": "7:50", - "Explanation": "Ratio" - }, - { - "Answer": "22:15", - "Explanation": "Ratio" - }, - { - "Answer": "11:13", - "Explanation": "Ratio" - }, - { - "Answer": "9:43", - "Explanation": "Ratio" - }, - { - "Answer": "1:7", - "Explanation": "Ratio" - }, - { - "Answer": "11:17", - "Explanation": "Ratio" - }, - { - "Answer": "27:2", - "Explanation": "Ratio" - }, - { - "Answer": "3:14", - "Explanation": "Ratio" - }, - { - "Answer": "2:13", - "Explanation": "Ratio" - }, - { - "Answer": "500", - "Explanation": "Common-Division" - }, - { - "Answer": "26", - "Explanation": "Subtraction" - }, - { - "Answer": "4000", - "Explanation": "Common-Division" - }, - { - "Answer": "5.6", - "Explanation": "Common-Division" - }, - { - "Answer": "3050", - "Explanation": "Subtraction" - }, - { - "Answer": "13000", - "Explanation": "Common-Division" - }, - { - "Answer": "519", - "Explanation": "Subtraction" - }, - { - "Answer": "28", - "Explanation": "Subtraction" - }, - { - "Answer": "3400", - "Explanation": "Subtraction" - }, - { - "Answer": "1.33", - "Explanation": "Subtraction" - }, - { - "Answer": "Clara", - "Explanation": "Comparison" - }, - { - "Answer": "Mabel", - "Explanation": "Comparison" - }, - { - "Answer": "Adams County College", - "Explanation": "Comparison" - }, - { - "Answer": "Leon", - "Explanation": "Comparison" - }, - { - "Answer": "Richard's recipe", - "Explanation": "Comparison" - }, - { - "Answer": "History", - "Explanation": "Comparison" - }, - { - "Answer": "Yardley", - "Explanation": "Comparison" - }, - { - "Answer": "They are equal", - "Explanation": "Comparison" - }, - { - "Answer": "Jake's stables", - "Explanation": "Comparison" - }, - { - "Answer": "Ivan", - "Explanation": "Comparison" - }, - { - "Answer": "27", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "16", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "19", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "80", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "32", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "22", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "38", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "128", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "77", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "64", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "768", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "13", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "243", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "60", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "110", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "117", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "19", - "Explanation": "Sequential-Operation" - }, - { - "Answer": "6", - "Explanation": "GCD" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "7", - "Explanation": "GCD" - }, - { - "Answer": "5", - "Explanation": "GCD" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "13", - "Explanation": "GCD" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "9", - "Explanation": "GCD" - }, - { - "Answer": "11", - "Explanation": "GCD" - }, - { - "Answer": "5", - "Explanation": "GCD" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "6", - "Explanation": "GCD" - }, - { - "Answer": "7", - "Explanation": "GCD" - }, - { - "Answer": "2", - "Explanation": "GCD" - }, - { - "Answer": "5", - "Explanation": "GCD" - }, - { - "Answer": "2", - "Explanation": "GCD" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "3", - "Explanation": "GCD" - }, - { - "Answer": "16", - "Explanation": "GCD" - }, - { - "Answer": "18", - "Explanation": "GCD" - }, - { - "Answer": "9", - "Explanation": "GCD" - }, - { - "Answer": "6", - "Explanation": "GCD" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "6", - "Explanation": "GCD" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "255", - "Explanation": "LCM" - }, - { - "Answer": "119", - "Explanation": "LCM" - }, - { - "Answer": "18", - "Explanation": "LCM" - }, - { - "Answer": "52", - "Explanation": "LCM" - }, - { - "Answer": "748", - "Explanation": "LCM" - }, - { - "Answer": "30", - "Explanation": "LCM" - }, - { - "Answer": "18", - "Explanation": "LCM" - }, - { - "Answer": "15", - "Explanation": "LCM" - }, - { - "Answer": "8", - "Explanation": "LCM" - }, - { - "Answer": "10", - "Explanation": "LCM" - }, - { - "Answer": "84", - "Explanation": "LCM" - }, - { - "Answer": "35", - "Explanation": "LCM" - }, - { - "Answer": "90", - "Explanation": "LCM" - }, - { - "Answer": "70", - "Explanation": "LCM" - }, - { - "Answer": "171", - "Explanation": "LCM" - }, - { - "Answer": "836", - "Explanation": "LCM" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "6", - "Explanation": "Surplus" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "4", - "Explanation": "Surplus" - }, - { - "Answer": "0", - "Explanation": "Difference" - }, - { - "Answer": "22", - "Explanation": "Difference" - }, - { - "Answer": "3", - "Explanation": "Difference" - }, - { - "Answer": "2", - "Explanation": "Difference" - }, - { - "Answer": "3", - "Explanation": "Difference" - }, - { - "Answer": "2", - "Explanation": "Difference" - }, - { - "Answer": "2", - "Explanation": "Difference" - }, - { - "Answer": "11", - "Explanation": "Difference" - }, - { - "Answer": "13", - "Explanation": "Difference" - }, - { - "Answer": "34", - "Explanation": "Difference" - }, - { - "Answer": "64", - "Explanation": "Difference" - }, - { - "Answer": "38", - "Explanation": "Difference" - }, - { - "Answer": "7", - "Explanation": "Difference" - }, - { - "Answer": "16", - "Explanation": "Difference" - }, - { - "Answer": "7", - "Explanation": "Difference" - }, - { - "Answer": "2", - "Explanation": "Difference" - }, - { - "Answer": "71", - "Explanation": "Difference" - }, - { - "Answer": "2", - "Explanation": "Difference" - }, - { - "Answer": "64", - "Explanation": "Difference" - }, - { - "Answer": "13", - "Explanation": "Difference" - }, - { - "Answer": "32", - "Explanation": "Difference" - }, - { - "Answer": "59", - "Explanation": "Difference" - }, - { - "Answer": "11", - "Explanation": "Difference" - }, - { - "Answer": "11", - "Explanation": "Difference" - }, - { - "Answer": "3", - "Explanation": "Difference" - }, - { - "Answer": "8", - "Explanation": "Difference" - }, - { - "Answer": "10", - "Explanation": "Difference" - }, - { - "Answer": "15", - "Explanation": "Difference" - }, - { - "Answer": "12", - "Explanation": "Difference" - }, - { - "Answer": "54", - "Explanation": "Difference" - }, - { - "Answer": "7", - "Explanation": "Difference" - }, - { - "Answer": "10", - "Explanation": "Difference" - }, - { - "Answer": "12", - "Explanation": "Difference" - }, - { - "Answer": "21", - "Explanation": "Difference" - }, - { - "Answer": "13", - "Explanation": "Difference" - }, - { - "Answer": "0", - "Explanation": "Difference" - }, - { - "Answer": "1", - "Explanation": "Difference" - }, - { - "Answer": "10", - "Explanation": "Difference" - }, - { - "Answer": "12", - "Explanation": "Difference" - }, - { - "Answer": "11", - "Explanation": "Difference" - }, - { - "Answer": "57", - "Explanation": "Difference" - }, - { - "Answer": "1", - "Explanation": "Difference" - }, - { - "Answer": "85", - "Explanation": "Difference" - }, - { - "Answer": "71", - "Explanation": "Difference" - }, - { - "Answer": "14", - "Explanation": "Algebra-1" - }, - { - "Answer": "5", - "Explanation": "Algebra-1" - }, - { - "Answer": "17", - "Explanation": "Algebra-1" - }, - { - "Answer": "6", - "Explanation": "Algebra-1" - }, - { - "Answer": "26", - "Explanation": "Algebra-1" - }, - { - "Answer": "20", - "Explanation": "Algebra-1" - }, - { - "Answer": "32", - "Explanation": "Algebra-1" - }, - { - "Answer": "3", - "Explanation": "Algebra-1" - }, - { - "Answer": "19", - "Explanation": "Algebra-1" - }, - { - "Answer": "5", - "Explanation": "Algebra-1" - }, - { - "Answer": "8", - "Explanation": "Algebra-1" - }, - { - "Answer": "7", - "Explanation": "Algebra-1" - }, - { - "Answer": "20", - "Explanation": "Algebra-1" - }, - { - "Answer": "5", - "Explanation": "Algebra-1" - }, - { - "Answer": "6", - "Explanation": "Algebra-1" - }, - { - "Answer": "9", - "Explanation": "Algebra-1" - }, - { - "Answer": "11; 12; 13", - "Explanation": "Algebra-1" - }, - { - "Answer": "5", - "Explanation": "Algebra-1" - }, - { - "Answer": "5/2", - "Explanation": "Algebra-1" - }, - { - "Answer": "81", - "Explanation": "Algebra-1" - }, - { - "Answer": "191", - "Explanation": "Algebra-1" - }, - { - "Answer": "16", - "Explanation": "Algebra-1" - }, - { - "Answer": "55", - "Explanation": "Algebra-1" - }, - { - "Answer": "8; 40", - "Explanation": "Algebra-1" - }, - { - "Answer": "45", - "Explanation": "Algebra-1" - }, - { - "Answer": "6", - "Explanation": "Algebra-1" - }, - { - "Answer": "32", - "Explanation": "Algebra-1" - }, - { - "Answer": "8", - "Explanation": "Algebra-1" - }, - { - "Answer": "9; 11", - "Explanation": "Algebra-1" - }, - { - "Answer": "4", - "Explanation": "Algebra-1" - }, - { - "Answer": "1", - "Explanation": "Algebra-1" - }, - { - "Answer": "45", - "Explanation": "Algebra-1" - }, - { - "Answer": "60; 72", - "Explanation": "Algebra-2" - }, - { - "Answer": "87", - "Explanation": "Algebra-2" - }, - { - "Answer": "3/7", - "Explanation": "Algebra-2" - }, - { - "Answer": "84; 14", - "Explanation": "Algebra-2" - }, - { - "Answer": "2; 6", - "Explanation": "Algebra-2" - }, - { - "Answer": "-", - "Explanation": "Algebra-1" - }, - { - "Answer": "5", - "Explanation": "Algebra-1" - }, - { - "Answer": "5/2", - "Explanation": "Algebra-2" - }, - { - "Answer": "4", - "Explanation": "Geometry" - }, - { - "Answer": "6", - "Explanation": "Geometry" - }, - { - "Answer": "6", - "Explanation": "Geometry" - }, - { - "Answer": "18", - "Explanation": "Geometry" - }, - { - "Answer": "25", - "Explanation": "Geometry" - }, - { - "Answer": "8", - "Explanation": "Geometry" - }, - { - "Answer": "28", - "Explanation": "Geometry" - }, - { - "Answer": "45", - "Explanation": "Geometry" - }, - { - "Answer": "7", - "Explanation": "Geometry" - }, - { - "Answer": "63", - "Explanation": "Geometry" - }, - { - "Answer": "17", - "Explanation": "Geometry" - }, - { - "Answer": "8", - "Explanation": "Geometry" - }, - { - "Answer": "12", - "Explanation": "Geometry" - }, - { - "Answer": "30", - "Explanation": "Geometry" - }, - { - "Answer": "40", - "Explanation": "Algebra-2" - }, - { - "Answer": "18; 12", - "Explanation": "Algebra-2" - }, - { - "Answer": "90", - "Explanation": "Algebra-2" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "65.0", - "Explanation": "Multiplication" - }, - { - "Answer": "12.4", - "Explanation": "Subtraction" - }, - { - "Answer": "19.45", - "Explanation": "Addition" - }, - { - "Answer": "2.5", - "Explanation": "Subtraction" - }, - { - "Answer": "28", - "Explanation": "Multiplication" - }, - { - "Answer": "16", - "Explanation": "Algebra-1" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "31", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "26", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "67", - "Explanation": "Subtraction" - }, - { - "Answer": "18", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "58", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "64", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "63", - "Explanation": "Addition" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "63", - "Explanation": "Subtraction" - }, - { - "Answer": "49", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Common-Division" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "35", - "Explanation": "Subtraction" - }, - { - "Answer": "13", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Common-Division" - }, - { - "Answer": "65", - "Explanation": "Subtraction" - }, - { - "Answer": "15", - "Explanation": "Subtraction" - }, - { - "Answer": "99", - "Explanation": "Multiplication" - }, - { - "Answer": "56", - "Explanation": "Algebra-1" - }, - { - "Answer": "22", - "Explanation": "Algebra-1" - }, - { - "Answer": "47", - "Explanation": "Algebra-1" - }, - { - "Answer": "10", - "Explanation": "Algebra-1" - }, - { - "Answer": "29", - "Explanation": "Algebra-1" - }, - { - "Answer": "39", - "Explanation": "Algebra-1" - }, - { - "Answer": "29", - "Explanation": "Algebra-1" - }, - { - "Answer": "4", - "Explanation": "Algebra-1" - }, - { - "Answer": "9", - "Explanation": "Algebra-1" - }, - { - "Answer": "272", - "Explanation": "Algebra-2" - }, - { - "Answer": "36", - "Explanation": "Algebra-2" - }, - { - "Answer": "13", - "Explanation": "Algebra-1" - }, - { - "Answer": "6", - "Explanation": "Algebra-1" - }, - { - "Answer": "12", - "Explanation": "Algebra-1" - }, - { - "Answer": "35", - "Explanation": "Algebra-1" - }, - { - "Answer": "5", - "Explanation": "Algebra-1" - }, - { - "Answer": "46", - "Explanation": "Algebra-2" - }, - { - "Answer": "45", - "Explanation": "Geometry" - }, - { - "Answer": "336", - "Explanation": "Algebra-2" - }, - { - "Answer": "31; 21", - "Explanation": "Algebra-2" - }, - { - "Answer": "45", - "Explanation": "Algebra-2" - }, - { - "Answer": "16", - "Explanation": "Algebra-2" - }, - { - "Answer": "7; 8; 9", - "Explanation": "Algebra-1" - }, - { - "Answer": "40", - "Explanation": "Algebra-2" - }, - { - "Answer": "50", - "Explanation": "Algebra-2" - }, - { - "Answer": "26", - "Explanation": "Algebra-2" - }, - { - "Answer": "12", - "Explanation": "Algebra-2" - }, - { - "Answer": "15", - "Explanation": "Algebra-2" - }, - { - "Answer": "40", - "Explanation": "Algebra-2" - }, - { - "Answer": "75", - "Explanation": "Algebra-2" - }, - { - "Answer": "21", - "Explanation": "Algebra-2" - }, - { - "Answer": "40", - "Explanation": "Algebra-2" - }, - { - "Answer": "45", - "Explanation": "Algebra-2" - }, - { - "Answer": "37", - "Explanation": "Algebra-2" - }, - { - "Answer": "19", - "Explanation": "Algebra-2" - }, - { - "Answer": "50", - "Explanation": "Algebra-2" - }, - { - "Answer": "12", - "Explanation": "Algebra-2" - }, - { - "Answer": "36", - "Explanation": "Algebra-2" - }, - { - "Answer": "63", - "Explanation": "Algebra-2" - }, - { - "Answer": "45", - "Explanation": "Algebra-2" - }, - { - "Answer": "96", - "Explanation": "Algebra-2" - }, - { - "Answer": "93", - "Explanation": "Algebra-2" - }, - { - "Answer": "53", - "Explanation": "Algebra-2" - }, - { - "Answer": "8", - "Explanation": "Algebra-2" - }, - { - "Answer": "6", - "Explanation": "Algebra-2" - }, - { - "Answer": "10", - "Explanation": "Algebra-2" - }, - { - "Answer": "40", - "Explanation": "Algebra-2" - }, - { - "Answer": "100", - "Explanation": "Algebra-2" - }, - { - "Answer": "100", - "Explanation": "Algebra-2" - }, - { - "Answer": "180", - "Explanation": "Algebra-2" - }, - { - "Answer": "210", - "Explanation": "Algebra-2" - }, - { - "Answer": "36", - "Explanation": "Algebra-2" - }, - { - "Answer": "5", - "Explanation": "Algebra-2" - }, - { - "Answer": "60", - "Explanation": "Algebra-2" - }, - { - "Answer": "1440", - "Explanation": "Algebra-2" - }, - { - "Answer": "3.5", - "Explanation": "Algebra-2" - }, - { - "Answer": "500", - "Explanation": "Algebra-2" - }, - { - "Answer": "13; 39", - "Explanation": "Algebra-2" - }, - { - "Answer": "18", - "Explanation": "Algebra-2" - }, - { - "Answer": "7/9", - "Explanation": "Algebra-2" - }, - { - "Answer": "5/13", - "Explanation": "Algebra-2" - }, - { - "Answer": "500", - "Explanation": "Algebra-2" - }, - { - "Answer": "36", - "Explanation": "Algebra-2" - }, - { - "Answer": "99", - "Explanation": "Algebra-2" - }, - { - "Answer": "17", - "Explanation": "Algebra-2" - }, - { - "Answer": "4; 2", - "Explanation": "Algebra-1" - }, - { - "Answer": "4/7", - "Explanation": "Algebra-2" - }, - { - "Answer": "11; 24", - "Explanation": "Algebra-1" - }, - { - "Answer": "24; 32", - "Explanation": "Algebra-1" - }, - { - "Answer": "82", - "Explanation": "Algebra-1" - }, - { - "Answer": "48", - "Explanation": "Algebra-1" - }, - { - "Answer": "52", - "Explanation": "Algebra-1" - }, - { - "Answer": "25/3", - "Explanation": "Algebra-1" - }, - { - "Answer": "80; 82; 84", - "Explanation": "Algebra-1" - }, - { - "Answer": "88", - "Explanation": "Algebra-2" - }, - { - "Answer": "148", - "Explanation": "Algebra-2" - }, - { - "Answer": "1000", - "Explanation": "Algebra-2" - }, - { - "Answer": "40", - "Explanation": "Algebra-2" - }, - { - "Answer": "30", - "Explanation": "Algebra-2" - }, - { - "Answer": "14", - "Explanation": "Algebra-2" - }, - { - "Answer": "11", - "Explanation": "Algebra-1" - }, - { - "Answer": "5", - "Explanation": "Algebra-1" - }, - { - "Answer": "32", - "Explanation": "Algebra-1" - }, - { - "Answer": "13", - "Explanation": "Algebra-1" - }, - { - "Answer": "9; 11; 13", - "Explanation": "Algebra-1" - }, - { - "Answer": "64", - "Explanation": "Algebra-2" - }, - { - "Answer": "36", - "Explanation": "Algebra-2" - }, - { - "Answer": "30", - "Explanation": "Algebra-2" - }, - { - "Answer": "24", - "Explanation": "Algebra-2" - }, - { - "Answer": "32", - "Explanation": "Algebra-2" - }, - { - "Answer": "45", - "Explanation": "Algebra-2" - }, - { - "Answer": "17", - "Explanation": "Algebra-2" - }, - { - "Answer": "6000", - "Explanation": "Algebra-2" - }, - { - "Answer": "60", - "Explanation": "Algebra-2" - }, - { - "Answer": "20", - "Explanation": "Algebra-2" - }, - { - "Answer": "76", - "Explanation": "Algebra-2" - }, - { - "Answer": "110", - "Explanation": "Algebra-2" - }, - { - "Answer": "2500", - "Explanation": "Algebra-2" - }, - { - "Answer": "4", - "Explanation": "Algebra-2" - }, - { - "Answer": "2", - "Explanation": "Algebra-2" - }, - { - "Answer": "3", - "Explanation": "Algebra-2" - }, - { - "Answer": "1644", - "Explanation": "Algebra-2" - }, - { - "Answer": "325", - "Explanation": "Algebra-2" - }, - { - "Answer": "10", - "Explanation": "Geometry" - }, - { - "Answer": "36", - "Explanation": "Geometry" - }, - { - "Answer": "40", - "Explanation": "Geometry" - }, - { - "Answer": "540", - "Explanation": "Geometry" - }, - { - "Answer": "Ted", - "Explanation": "Comparison" - }, - { - "Answer": "100", - "Explanation": "Geometry" - }, - { - "Answer": "24", - "Explanation": "Common-Division" - }, - { - "Answer": "70", - "Explanation": "Geometry" - }, - { - "Answer": "12", - "Explanation": "Geometry" - }, - { - "Answer": "1/6", - "Explanation": "Common-Division" - }, - { - "Answer": "432", - "Explanation": "Multiplication" - }, - { - "Answer": "80", - "Explanation": "Geometry" - }, - { - "Answer": "240", - "Explanation": "Common-Division" - }, - { - "Answer": "15", - "Explanation": "Geometry" - }, - { - "Answer": "76", - "Explanation": "Geometry" - }, - { - "Answer": "124", - "Explanation": "Geometry" - }, - { - "Answer": "72", - "Explanation": "Geometry" - }, - { - "Answer": "216", - "Explanation": "Geometry" - }, - { - "Answer": "180", - "Explanation": "Multiplication" - }, - { - "Answer": "1.14", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "200", - "Explanation": "Common-Division" - }, - { - "Answer": "314", - "Explanation": "Geometry" - }, - { - "Answer": "48", - "Explanation": "Geometry" - }, - { - "Answer": "184", - "Explanation": "Geometry" - }, - { - "Answer": "9.80", - "Explanation": "Multiplication" - }, - { - "Answer": "15", - "Explanation": "Geometry" - }, - { - "Answer": "60", - "Explanation": "Geometry" - }, - { - "Answer": "20", - "Explanation": "Geometry" - }, - { - "Answer": "3.14", - "Explanation": "Geometry" - }, - { - "Answer": "25.12", - "Explanation": "Geometry" - }, - { - "Answer": "10", - "Explanation": "Geometry" - }, - { - "Answer": "3.14", - "Explanation": "Geometry" - }, - { - "Answer": "28.26", - "Explanation": "Geometry" - }, - { - "Answer": "2", - "Explanation": "Geometry" - }, - { - "Answer": "6.28", - "Explanation": "Geometry" - }, - { - "Answer": "2", - "Explanation": "Geometry" - }, - { - "Answer": "5", - "Explanation": "Geometry" - }, - { - "Answer": "70", - "Explanation": "Geometry" - }, - { - "Answer": "32", - "Explanation": "Geometry" - }, - { - "Answer": "15", - "Explanation": "Geometry" - }, - { - "Answer": "70", - "Explanation": "Geometry" - }, - { - "Answer": "8", - "Explanation": "Geometry" - }, - { - "Answer": "49", - "Explanation": "Geometry" - }, - { - "Answer": "4", - "Explanation": "Geometry" - }, - { - "Answer": "28", - "Explanation": "Geometry" - }, - { - "Answer": "4", - "Explanation": "Geometry" - }, - { - "Answer": "36", - "Explanation": "Geometry" - }, - { - "Answer": "5", - "Explanation": "Surplus" - }, - { - "Answer": "49", - "Explanation": "Floor-Division" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "170", - "Explanation": "Ceil-Division" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "59", - "Explanation": "Floor-Division" - }, - { - "Answer": "30", - "Explanation": "Floor-Division" - }, - { - "Answer": "197", - "Explanation": "Ceil-Division" - }, - { - "Answer": "3", - "Explanation": "Surplus" - }, - { - "Answer": "122", - "Explanation": "Floor-Division" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "62", - "Explanation": "Ceil-Division" - }, - { - "Answer": "1", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "218", - "Explanation": "Ceil-Division" - }, - { - "Answer": "78", - "Explanation": "Ceil-Division" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "133", - "Explanation": "Floor-Division" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "203", - "Explanation": "Ceil-Division" - }, - { - "Answer": "90", - "Explanation": "Common-Division" - }, - { - "Answer": "114", - "Explanation": "Ceil-Division" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "44", - "Explanation": "Floor-Division" - }, - { - "Answer": "54", - "Explanation": "Ceil-Division" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Surplus" - }, - { - "Answer": "388", - "Explanation": "Floor-Division" - }, - { - "Answer": "4", - "Explanation": "Surplus" - }, - { - "Answer": "52", - "Explanation": "Ceil-Division" - }, - { - "Answer": "93", - "Explanation": "Floor-Division" - }, - { - "Answer": "45", - "Explanation": "Floor-Division" - }, - { - "Answer": "31", - "Explanation": "Floor-Division" - }, - { - "Answer": "52", - "Explanation": "Ceil-Division" - }, - { - "Answer": "363", - "Explanation": "Ceil-Division" - }, - { - "Answer": "1", - "Explanation": "Surplus" - }, - { - "Answer": "40", - "Explanation": "Ceil-Division" - }, - { - "Answer": "103", - "Explanation": "Floor-Division" - }, - { - "Answer": "1", - "Explanation": "Subtraction" - }, - { - "Answer": "1", - "Explanation": "Subtraction" - }, - { - "Answer": "32", - "Explanation": "Ceil-Division" - }, - { - "Answer": "39", - "Explanation": "Common-Division" - }, - { - "Answer": "135", - "Explanation": "Common-Division" - }, - { - "Answer": "81", - "Explanation": "Common-Division" - }, - { - "Answer": "89", - "Explanation": "Common-Division" - }, - { - "Answer": "109", - "Explanation": "Common-Division" - }, - { - "Answer": "26", - "Explanation": "Common-Division" - }, - { - "Answer": "142", - "Explanation": "Common-Division" - }, - { - "Answer": "28", - "Explanation": "Common-Division" - }, - { - "Answer": "71", - "Explanation": "Common-Division" - }, - { - "Answer": "291", - "Explanation": "Common-Division" - }, - { - "Answer": "30", - "Explanation": "Common-Division" - }, - { - "Answer": "155", - "Explanation": "Common-Division" - }, - { - "Answer": "51", - "Explanation": "Common-Division" - }, - { - "Answer": "336", - "Explanation": "Common-Division" - }, - { - "Answer": "44", - "Explanation": "Common-Division" - }, - { - "Answer": "65", - "Explanation": "Common-Division" - }, - { - "Answer": "21", - "Explanation": "Common-Division" - }, - { - "Answer": "60", - "Explanation": "Common-Division" - }, - { - "Answer": "20", - "Explanation": "Common-Division" - }, - { - "Answer": "48", - "Explanation": "Common-Division" - }, - { - "Answer": "140", - "Explanation": "Common-Division" - }, - { - "Answer": "42", - "Explanation": "Common-Division" - }, - { - "Answer": "20", - "Explanation": "Common-Division" - }, - { - "Answer": "45", - "Explanation": "Common-Division" - }, - { - "Answer": "48", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Ceil-Division" - }, - { - "Answer": "4", - "Explanation": "Floor-Division" - }, - { - "Answer": "4", - "Explanation": "Ceil-Division" - }, - { - "Answer": "5", - "Explanation": "Ceil-Division" - }, - { - "Answer": "2", - "Explanation": "Ceil-Division" - }, - { - "Answer": "6", - "Explanation": "Floor-Division" - }, - { - "Answer": "6", - "Explanation": "Ceil-Division" - }, - { - "Answer": "2", - "Explanation": "Floor-Division" - }, - { - "Answer": "90", - "Explanation": "Geometry" - }, - { - "Answer": "4", - "Explanation": "Geometry" - }, - { - "Answer": "6", - "Explanation": "Geometry" - }, - { - "Answer": "5", - "Explanation": "Geometry" - }, - { - "Answer": "2", - "Explanation": "Geometry" - }, - { - "Answer": "16", - "Explanation": "Geometry" - }, - { - "Answer": "7", - "Explanation": "Geometry" - }, - { - "Answer": "8", - "Explanation": "Geometry" - }, - { - "Answer": "22", - "Explanation": "Geometry" - }, - { - "Answer": "30", - "Explanation": "Geometry" - }, - { - "Answer": "28", - "Explanation": "Geometry" - }, - { - "Answer": "7", - "Explanation": "Geometry" - }, - { - "Answer": "3", - "Explanation": "Geometry" - }, - { - "Answer": "8", - "Explanation": "Geometry" - }, - { - "Answer": "5", - "Explanation": "Geometry" - }, - { - "Answer": "4", - "Explanation": "Geometry" - }, - { - "Answer": "16", - "Explanation": "Geometry" - }, - { - "Answer": "18", - "Explanation": "Geometry" - }, - { - "Answer": "24", - "Explanation": "Geometry" - }, - { - "Answer": "10", - "Explanation": "Geometry" - }, - { - "Answer": "8", - "Explanation": "Geometry" - }, - { - "Answer": "22", - "Explanation": "Geometry" - }, - { - "Answer": "30", - "Explanation": "Geometry" - }, - { - "Answer": "2", - "Explanation": "Geometry" - }, - { - "Answer": "12", - "Explanation": "Geometry" - }, - { - "Answer": "60", - "Explanation": "Geometry" - }, - { - "Answer": "6", - "Explanation": "Geometry" - }, - { - "Answer": "4", - "Explanation": "Geometry" - }, - { - "Answer": "24", - "Explanation": "Geometry" - }, - { - "Answer": "20", - "Explanation": "Geometry" - }, - { - "Answer": "8", - "Explanation": "Geometry" - }, - { - "Answer": "10", - "Explanation": "Geometry" - }, - { - "Answer": "56", - "Explanation": "Geometry" - }, - { - "Answer": "10", - "Explanation": "Geometry" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "0", - "Explanation": "Surplus" - }, - { - "Answer": "14", - "Explanation": "Ratio" - }, - { - "Answer": "7:6", - "Explanation": "Ratio" - }, - { - "Answer": "24", - "Explanation": "Ratio" - }, - { - "Answer": "3:2", - "Explanation": "Ratio" - }, - { - "Answer": "16", - "Explanation": "Ratio" - }, - { - "Answer": "10:3", - "Explanation": "Ratio" - }, - { - "Answer": "21", - "Explanation": "Ratio" - }, - { - "Answer": "9:8", - "Explanation": "Ratio" - }, - { - "Answer": "70", - "Explanation": "Ratio" - }, - { - "Answer": "4:3", - "Explanation": "Ratio" - }, - { - "Answer": "3", - "Explanation": "Ratio" - }, - { - "Answer": "48", - "Explanation": "Ratio" - }, - { - "Answer": "7:4", - "Explanation": "Ratio" - }, - { - "Answer": "5", - "Explanation": "Ratio" - }, - { - "Answer": "15", - "Explanation": "Ratio" - }, - { - "Answer": "26", - "Explanation": "Ratio" - }, - { - "Answer": "20", - "Explanation": "Ratio" - }, - { - "Answer": "8", - "Explanation": "Ratio" - }, - { - "Answer": "6:1", - "Explanation": "Ratio" - }, - { - "Answer": "9:2", - "Explanation": "Ratio" - }, - { - "Answer": "4", - "Explanation": "Ratio" - }, - { - "Answer": "4", - "Explanation": "Ratio" - }, - { - "Answer": "65", - "Explanation": "Ratio" - }, - { - "Answer": "5:1", - "Explanation": "Ratio" - }, - { - "Answer": "9", - "Explanation": "Ratio" - }, - { - "Answer": "32", - "Explanation": "Ratio" - }, - { - "Answer": "49", - "Explanation": "Ratio" - }, - { - "Answer": "9:4", - "Explanation": "Ratio" - }, - { - "Answer": "63", - "Explanation": "Ratio" - }, - { - "Answer": "6", - "Explanation": "Ratio" - }, - { - "Answer": "30", - "Explanation": "Ratio" - }, - { - "Answer": "44", - "Explanation": "Ratio" - }, - { - "Answer": "9:5", - "Explanation": "Ratio" - }, - { - "Answer": "7:6", - "Explanation": "Ratio" - }, - { - "Answer": "40", - "Explanation": "Ratio" - }, - { - "Answer": "5", - "Explanation": "Ratio" - }, - { - "Answer": "12", - "Explanation": "Ratio" - }, - { - "Answer": "49", - "Explanation": "Ratio" - }, - { - "Answer": "7", - "Explanation": "Ratio" - }, - { - "Answer": "90", - "Explanation": "Ratio" - }, - { - "Answer": "18", - "Explanation": "Ratio" - }, - { - "Answer": "10:1", - "Explanation": "Ratio" - }, - { - "Answer": "7:1", - "Explanation": "Ratio" - }, - { - "Answer": "9:7", - "Explanation": "Ratio" - }, - { - "Answer": "63", - "Explanation": "Addition" - }, - { - "Answer": "5:1", - "Explanation": "Ratio" - }, - { - "Answer": "36", - "Explanation": "Ratio" - }, - { - "Answer": "22.84", - "Explanation": "Multiplication" - }, - { - "Answer": "Book store", - "Explanation": "Comparison" - }, - { - "Answer": "11.76", - "Explanation": "Multiplication" - }, - { - "Answer": "7.2", - "Explanation": "Multiplication" - }, - { - "Answer": "2.92", - "Explanation": "Multiplication" - }, - { - "Answer": "Hamburger", - "Explanation": "Comparison" - }, - { - "Answer": "Monday", - "Explanation": "Comparison" - }, - { - "Answer": "Red", - "Explanation": "Comparison" - }, - { - "Answer": "October", - "Explanation": "Comparison" - }, - { - "Answer": "Online", - "Explanation": "Comparison" - }, - { - "Answer": "7.74", - "Explanation": "Multiplication" - }, - { - "Answer": "37.44", - "Explanation": "Multiplication" - }, - { - "Answer": "Market", - "Explanation": "Comparison" - }, - { - "Answer": "18.69", - "Explanation": "Multiplication" - }, - { - "Answer": "Chicken finger", - "Explanation": "Comparison" - }, - { - "Answer": "Vendor 2", - "Explanation": "Comparison" - }, - { - "Answer": "Brand B", - "Explanation": "Comparison" - }, - { - "Answer": "134.04", - "Explanation": "Multiplication" - }, - { - "Answer": "80.85", - "Explanation": "Multiplication" - }, - { - "Answer": "79.87", - "Explanation": "Multiplication" - }, - { - "Answer": "Red", - "Explanation": "Comparison" - }, - { - "Answer": "37.38", - "Explanation": "Multiplication" - }, - { - "Answer": "10.3", - "Explanation": "UnitTrans" - }, - { - "Answer": "0.63", - "Explanation": "UnitTrans" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "35", - "Explanation": "Multiplication" - }, - { - "Answer": "63", - "Explanation": "Multiplication" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "32", - "Explanation": "Multiplication" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "32", - "Explanation": "Multiplication" - }, - { - "Answer": "27", - "Explanation": "Multiplication" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "72", - "Explanation": "Multiplication" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "14", - "Explanation": "Addition" - }, - { - "Answer": "32", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "15", - "Explanation": "Multiplication" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "42", - "Explanation": "Multiplication" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Addition" - }, - { - "Answer": "20", - "Explanation": "Multiplication" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "27", - "Explanation": "Multiplication" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Addition" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "17", - "Explanation": "Addition" - }, - { - "Answer": "27", - "Explanation": "Multiplication" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "20", - "Explanation": "Multiplication" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "30", - "Explanation": "Multiplication" - }, - { - "Answer": "16", - "Explanation": "Multiplication" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "13", - "Explanation": "Addition" - }, - { - "Answer": "30", - "Explanation": "Multiplication" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Addition" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "48", - "Explanation": "Multiplication" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "30", - "Explanation": "Multiplication" - }, - { - "Answer": "64", - "Explanation": "Multiplication" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "72", - "Explanation": "Multiplication" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "27", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Addition" - }, - { - "Answer": "54", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "36", - "Explanation": "Multiplication" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "13", - "Explanation": "Addition" - }, - { - "Answer": "8", - "Explanation": "Multiplication" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Addition" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "45", - "Explanation": "Multiplication" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "42", - "Explanation": "Multiplication" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "15", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Addition" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Addition" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Subtraction" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "37", - "Explanation": "Subtraction" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "25", - "Explanation": "Subtraction" - }, - { - "Answer": "33", - "Explanation": "Subtraction" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "25", - "Explanation": "Subtraction" - }, - { - "Answer": "88", - "Explanation": "Addition" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "25", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "21", - "Explanation": "Subtraction" - }, - { - "Answer": "98", - "Explanation": "Addition" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "88", - "Explanation": "Addition" - }, - { - "Answer": "90", - "Explanation": "Addition" - }, - { - "Answer": "34", - "Explanation": "Subtraction" - }, - { - "Answer": "43", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "93", - "Explanation": "Addition" - }, - { - "Answer": "32", - "Explanation": "Subtraction" - }, - { - "Answer": "10", - "Explanation": "Subtraction" - }, - { - "Answer": "13", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "32", - "Explanation": "Addition" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "17", - "Explanation": "Subtraction" - }, - { - "Answer": "6", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "39", - "Explanation": "Subtraction" - }, - { - "Answer": "61", - "Explanation": "Addition" - }, - { - "Answer": "97", - "Explanation": "Addition" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "13", - "Explanation": "Subtraction" - }, - { - "Answer": "83", - "Explanation": "Addition" - }, - { - "Answer": "99", - "Explanation": "Addition" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "17", - "Explanation": "Subtraction" - }, - { - "Answer": "43", - "Explanation": "Subtraction" - }, - { - "Answer": "3", - "Explanation": "Subtraction" - }, - { - "Answer": "7", - "Explanation": "Subtraction" - }, - { - "Answer": "5", - "Explanation": "Subtraction" - }, - { - "Answer": "94", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "59", - "Explanation": "Subtraction" - }, - { - "Answer": "26", - "Explanation": "Subtraction" - }, - { - "Answer": "100", - "Explanation": "Addition" - }, - { - "Answer": "66", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "14", - "Explanation": "Sum" - }, - { - "Answer": "19", - "Explanation": "TVQ-Final" - }, - { - "Answer": "13", - "Explanation": "Sum" - }, - { - "Answer": "15", - "Explanation": "Sum" - }, - { - "Answer": "18", - "Explanation": "Sum" - }, - { - "Answer": "12", - "Explanation": "Sum" - }, - { - "Answer": "19", - "Explanation": "Sum" - }, - { - "Answer": "18", - "Explanation": "Sum" - }, - { - "Answer": "15", - "Explanation": "Sum" - }, - { - "Answer": "7", - "Explanation": "Sum" - }, - { - "Answer": "17", - "Explanation": "Sum" - }, - { - "Answer": "16", - "Explanation": "TVQ-Final" - }, - { - "Answer": "10", - "Explanation": "TVQ-Final" - }, - { - "Answer": "20", - "Explanation": "Sum" - }, - { - "Answer": "19", - "Explanation": "TVQ-Final" - }, - { - "Answer": "15", - "Explanation": "Sum" - }, - { - "Answer": "8", - "Explanation": "Sum" - }, - { - "Answer": "19", - "Explanation": "Sum" - }, - { - "Answer": "17", - "Explanation": "Sum" - }, - { - "Answer": "14", - "Explanation": "Sum" - }, - { - "Answer": "20", - "Explanation": "Sum" - }, - { - "Answer": "13", - "Explanation": "Sum" - }, - { - "Answer": "20", - "Explanation": "Sum" - }, - { - "Answer": "18", - "Explanation": "TVQ-Final" - }, - { - "Answer": "19", - "Explanation": "Sum" - }, - { - "Answer": "14", - "Explanation": "Sum" - }, - { - "Answer": "9", - "Explanation": "Sum" - }, - { - "Answer": "11", - "Explanation": "Sum" - }, - { - "Answer": "14", - "Explanation": "Sum" - }, - { - "Answer": "13", - "Explanation": "TVQ-Final" - }, - { - "Answer": "11", - "Explanation": "Sum" - }, - { - "Answer": "11", - "Explanation": "Sum" - }, - { - "Answer": "17", - "Explanation": "Sum" - }, - { - "Answer": "17", - "Explanation": "Sum" - }, - { - "Answer": "16.3", - "Explanation": "Set-Operation" - }, - { - "Answer": "71", - "Explanation": "Set-Operation" - }, - { - "Answer": "55", - "Explanation": "Set-Operation" - }, - { - "Answer": "5.7", - "Explanation": "Set-Operation" - }, - { - "Answer": "14.2", - "Explanation": "Set-Operation" - }, - { - "Answer": "100.1", - "Explanation": "Set-Operation" - }, - { - "Answer": "20.8", - "Explanation": "Set-Operation" - }, - { - "Answer": "7", - "Explanation": "Set-Operation" - }, - { - "Answer": "97", - "Explanation": "Set-Operation" - }, - { - "Answer": "5.5", - "Explanation": "Set-Operation" - }, - { - "Answer": "53.3", - "Explanation": "Set-Operation" - }, - { - "Answer": "79.2", - "Explanation": "Set-Operation" - }, - { - "Answer": "67.9", - "Explanation": "Set-Operation" - }, - { - "Answer": "39", - "Explanation": "TVQ-Final" - }, - { - "Answer": "8", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "66", - "Explanation": "Subtraction" - }, - { - "Answer": "22", - "Explanation": "TVQ-Final" - }, - { - "Answer": "68", - "Explanation": "Subtraction" - }, - { - "Answer": "16", - "Explanation": "Subtraction" - }, - { - "Answer": "15", - "Explanation": "Subtraction" - }, - { - "Answer": "14", - "Explanation": "Subtraction" - }, - { - "Answer": "1", - "Explanation": "TVQ-Final" - }, - { - "Answer": "11", - "Explanation": "Subtraction" - }, - { - "Answer": "4", - "Explanation": "Subtraction" - }, - { - "Answer": "24", - "Explanation": "TVQ-Final" - }, - { - "Answer": "51", - "Explanation": "TVQ-Change" - }, - { - "Answer": "22", - "Explanation": "Subtraction" - }, - { - "Answer": "39", - "Explanation": "Subtraction" - }, - { - "Answer": "2", - "Explanation": "Subtraction" - }, - { - "Answer": "32", - "Explanation": "Subtraction" - }, - { - "Answer": "34", - "Explanation": "TVQ-Final" - }, - { - "Answer": "35", - "Explanation": "TVQ-Final" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "2", - "Explanation": "GCD" - }, - { - "Answer": "12", - "Explanation": "LCM" - }, - { - "Answer": "18", - "Explanation": "LCM" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "7", - "Explanation": "GCD" - }, - { - "Answer": "198", - "Explanation": "LCM" - }, - { - "Answer": "9", - "Explanation": "GCD" - }, - { - "Answer": "260", - "Explanation": "LCM" - }, - { - "Answer": "3", - "Explanation": "GCD" - }, - { - "Answer": "2", - "Explanation": "GCD" - }, - { - "Answer": "102", - "Explanation": "LCM" - }, - { - "Answer": "3", - "Explanation": "GCD" - }, - { - "Answer": "36", - "Explanation": "LCM" - }, - { - "Answer": "72", - "Explanation": "LCM" - }, - { - "Answer": "300", - "Explanation": "LCM" - }, - { - "Answer": "30", - "Explanation": "GCD" - }, - { - "Answer": "33", - "Explanation": "LCM" - }, - { - "Answer": "42", - "Explanation": "LCM" - }, - { - "Answer": "11", - "Explanation": "Common-Division" - }, - { - "Answer": "13", - "Explanation": "GCD" - }, - { - "Answer": "36", - "Explanation": "LCM" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "27", - "Explanation": "GCD" - }, - { - "Answer": "35", - "Explanation": "LCM" - }, - { - "Answer": "24", - "Explanation": "LCM" - }, - { - "Answer": "11", - "Explanation": "GCD" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "72", - "Explanation": "LCM" - }, - { - "Answer": "2", - "Explanation": "GCD" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "GCD" - }, - { - "Answer": "18", - "Explanation": "GCD" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "GCD" - }, - { - "Answer": "56", - "Explanation": "LCM" - }, - { - "Answer": "18", - "Explanation": "LCM" - }, - { - "Answer": "38", - "Explanation": "LCM" - }, - { - "Answer": "340", - "Explanation": "LCM" - }, - { - "Answer": "60", - "Explanation": "LCM" - }, - { - "Answer": "14", - "Explanation": "LCM" - }, - { - "Answer": "102", - "Explanation": "LCM" - }, - { - "Answer": "5", - "Explanation": "GCD" - }, - { - "Answer": "104", - "Explanation": "LCM" - }, - { - "Answer": "16", - "Explanation": "GCD" - }, - { - "Answer": "22", - "Explanation": "LCM" - }, - { - "Answer": "5", - "Explanation": "GCD" - }, - { - "Answer": "9:03:36 a.m.", - "Explanation": "Addition" - }, - { - "Answer": "126", - "Explanation": "LCM" - }, - { - "Answer": "450", - "Explanation": "LCM" - }, - { - "Answer": "180", - "Explanation": "LCM" - }, - { - "Answer": "2772", - "Explanation": "LCM" - }, - { - "Answer": "60", - "Explanation": "LCM" - }, - { - "Answer": "36", - "Explanation": "LCM" - }, - { - "Answer": "182", - "Explanation": "LCM" - }, - { - "Answer": "6:01:00 p.m.", - "Explanation": "Addition" - }, - { - "Answer": "221", - "Explanation": "LCM" - }, - { - "Answer": "200", - "Explanation": "LCM" - }, - { - "Answer": "40", - "Explanation": "LCM" - }, - { - "Answer": "20", - "Explanation": "Common-Division" - }, - { - "Answer": "84", - "Explanation": "LCM" - }, - { - "Answer": "45", - "Explanation": "LCM" - }, - { - "Answer": "24", - "Explanation": "LCM" - }, - { - "Answer": "75", - "Explanation": "LCM" - }, - { - "Answer": "36", - "Explanation": "LCM" - }, - { - "Answer": "20", - "Explanation": "GCD" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "18", - "Explanation": "GCD" - }, - { - "Answer": "56", - "Explanation": "GCD" - }, - { - "Answer": "10", - "Explanation": "LCM" - }, - { - "Answer": "168", - "Explanation": "LCM" - }, - { - "Answer": "18", - "Explanation": "GCD" - }, - { - "Answer": "8", - "Explanation": "GCD" - }, - { - "Answer": "10", - "Explanation": "GCD" - }, - { - "Answer": "7", - "Explanation": "GCD" - }, - { - "Answer": "15", - "Explanation": "GCD" - }, - { - "Answer": "24", - "Explanation": "GCD" - }, - { - "Answer": "40", - "Explanation": "GCD" - }, - { - "Answer": "6", - "Explanation": "GCD" - }, - { - "Answer": "4", - "Explanation": "GCD" - }, - { - "Answer": "12", - "Explanation": "GCD" - }, - { - "Answer": "21", - "Explanation": "Addition" - }, - { - "Answer": "47", - "Explanation": "Addition" - }, - { - "Answer": "37", - "Explanation": "Addition" - }, - { - "Answer": "34", - "Explanation": "Addition" - }, - { - "Answer": "31", - "Explanation": "Addition" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "41", - "Explanation": "Addition" - }, - { - "Answer": "39", - "Explanation": "Addition" - }, - { - "Answer": "62", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "10", - "Explanation": "Addition" - }, - { - "Answer": "29", - "Explanation": "Addition" - }, - { - "Answer": "22", - "Explanation": "Addition" - }, - { - "Answer": "47", - "Explanation": "Addition" - }, - { - "Answer": "23", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Addition" - }, - { - "Answer": "21", - "Explanation": "Addition" - }, - { - "Answer": "53", - "Explanation": "Addition" - }, - { - "Answer": "30", - "Explanation": "Addition" - }, - { - "Answer": "30", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Addition" - }, - { - "Answer": "41", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Addition" - }, - { - "Answer": "84", - "Explanation": "Addition" - }, - { - "Answer": "95", - "Explanation": "Addition" - }, - { - "Answer": "66", - "Explanation": "Addition" - }, - { - "Answer": "82", - "Explanation": "Addition" - }, - { - "Answer": "78", - "Explanation": "Addition" - }, - { - "Answer": "96", - "Explanation": "Addition" - }, - { - "Answer": "67", - "Explanation": "Addition" - }, - { - "Answer": "41", - "Explanation": "Addition" - }, - { - "Answer": "83", - "Explanation": "Addition" - }, - { - "Answer": "79", - "Explanation": "Addition" - }, - { - "Answer": "56", - "Explanation": "Addition" - }, - { - "Answer": "13", - "Explanation": "Addition" - }, - { - "Answer": "93", - "Explanation": "Addition" - }, - { - "Answer": "91", - "Explanation": "Addition" - }, - { - "Answer": "86", - "Explanation": "Addition" - }, - { - "Answer": "92", - "Explanation": "Addition" - }, - { - "Answer": "39", - "Explanation": "Addition" - }, - { - "Answer": "54", - "Explanation": "Addition" - }, - { - "Answer": "98", - "Explanation": "Addition" - }, - { - "Answer": "87", - "Explanation": "Addition" - }, - { - "Answer": "77", - "Explanation": "Addition" - }, - { - "Answer": "84", - "Explanation": "Addition" - }, - { - "Answer": "98", - "Explanation": "Addition" - }, - { - "Answer": "95", - "Explanation": "Addition" - }, - { - "Answer": "87", - "Explanation": "Addition" - }, - { - "Answer": "97", - "Explanation": "Addition" - }, - { - "Answer": "22", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "18", - "Explanation": "Addition" - }, - { - "Answer": "15", - "Explanation": "Addition" - }, - { - "Answer": "18", - "Explanation": "Addition" - }, - { - "Answer": "17", - "Explanation": "Addition" - }, - { - "Answer": "13", - "Explanation": "Addition" - }, - { - "Answer": "11", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "16", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Addition" - }, - { - "Answer": "18", - "Explanation": "Addition" - }, - { - "Answer": "19", - "Explanation": "Addition" - }, - { - "Answer": "12", - "Explanation": "Addition" - }, - { - "Answer": "15", - "Explanation": "Addition" - }, - { - "Answer": "16", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "13", - "Explanation": "Addition" - }, - { - "Answer": "9", - "Explanation": "Addition" - }, - { - "Answer": "14", - "Explanation": "Addition" - }, - { - "Answer": "13", - "Explanation": "Addition" - }, - { - "Answer": "4", - "Explanation": "Addition" - }, - { - "Answer": "62", - "Explanation": "TVQ-Final" - }, - { - "Answer": "26", - "Explanation": "TVQ-Final" - }, - { - "Answer": "26", - "Explanation": "TVQ-Final" - }, - { - "Answer": "8", - "Explanation": "TVQ-Final" - }, - { - "Answer": "56", - "Explanation": "TVQ-Final" - }, - { - "Answer": "49", - "Explanation": "TVQ-Final" - }, - { - "Answer": "11", - "Explanation": "TVQ-Final" - }, - { - "Answer": "59", - "Explanation": "TVQ-Final" - }, - { - "Answer": "45", - "Explanation": "TVQ-Final" - }, - { - "Answer": "10", - "Explanation": "TVQ-Final" - }, - { - "Answer": "35", - "Explanation": "TVQ-Final" - }, - { - "Answer": "32", - "Explanation": "TVQ-Final" - }, - { - "Answer": "38", - "Explanation": "TVQ-Final" - }, - { - "Answer": "31", - "Explanation": "TVQ-Final" - }, - { - "Answer": "27", - "Explanation": "TVQ-Final" - }, - { - "Answer": "47", - "Explanation": "TVQ-Final" - }, - { - "Answer": "58", - "Explanation": "TVQ-Final" - }, - { - "Answer": "56", - "Explanation": "TVQ-Final" - }, - { - "Answer": "16", - "Explanation": "TVQ-Final" - }, - { - "Answer": "36", - "Explanation": "TVQ-Final" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "50", - "Explanation": "Multiplication" - }, - { - "Answer": "35", - "Explanation": "Multiplication" - }, - { - "Answer": "90", - "Explanation": "Multiplication" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "50", - "Explanation": "Multiplication" - }, - { - "Answer": "32", - "Explanation": "Multiplication" - }, - { - "Answer": "30", - "Explanation": "Multiplication" - }, - { - "Answer": "64", - "Explanation": "Multiplication" - }, - { - "Answer": "21", - "Explanation": "Multiplication" - }, - { - "Answer": "30", - "Explanation": "Multiplication" - }, - { - "Answer": "80", - "Explanation": "Multiplication" - }, - { - "Answer": "32", - "Explanation": "Multiplication" - }, - { - "Answer": "24", - "Explanation": "Multiplication" - }, - { - "Answer": "48", - "Explanation": "Addition" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "40", - "Explanation": "Multiplication" - }, - { - "Answer": "48", - "Explanation": "Multiplication" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "36", - "Explanation": "Multiplication" - }, - { - "Answer": "16", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "45", - "Explanation": "Multiplication" - }, - { - "Answer": "54", - "Explanation": "Multiplication" - }, - { - "Answer": "36", - "Explanation": "Multiplication" - }, - { - "Answer": "4", - "Explanation": "Multiplication" - }, - { - "Answer": "36", - "Explanation": "Multiplication" - }, - { - "Answer": "10", - "Explanation": "Multiplication" - }, - { - "Answer": "15", - "Explanation": "Multiplication" - }, - { - "Answer": "16", - "Explanation": "Multiplication" - }, - { - "Answer": "18", - "Explanation": "Multiplication" - }, - { - "Answer": "32", - "Explanation": "Multiplication" - }, - { - "Answer": "36", - "Explanation": "Multiplication" - }, - { - "Answer": "10", - "Explanation": "Multiplication" - }, - { - "Answer": "72", - "Explanation": "Multiplication" - }, - { - "Answer": "27", - "Explanation": "Multiplication" - }, - { - "Answer": "12", - "Explanation": "Multiplication" - }, - { - "Answer": "15", - "Explanation": "Multiplication" - }, - { - "Answer": "6", - "Explanation": "Multiplication" - }, - { - "Answer": "1", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Surplus" - }, - { - "Answer": "4", - "Explanation": "Ceil-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Floor-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Ceil-Division" - }, - { - "Answer": "3", - "Explanation": "Floor-Division" - }, - { - "Answer": "2", - "Explanation": "Floor-Division" - }, - { - "Answer": "0", - "Explanation": "Surplus" - }, - { - "Answer": "9", - "Explanation": "Surplus" - }, - { - "Answer": "0", - "Explanation": "Surplus" - }, - { - "Answer": "3", - "Explanation": "Floor-Division" - }, - { - "Answer": "9", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Surplus" - }, - { - "Answer": "12", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "1", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "86", - "Explanation": "Common-Division" - }, - { - "Answer": "14", - "Explanation": "Common-Division" - }, - { - "Answer": "53", - "Explanation": "Common-Division" - }, - { - "Answer": "10", - "Explanation": "Common-Division" - }, - { - "Answer": "37", - "Explanation": "Common-Division" - }, - { - "Answer": "76", - "Explanation": "Common-Division" - }, - { - "Answer": "6", - "Explanation": "Common-Division" - }, - { - "Answer": "2", - "Explanation": "Common-Division" - }, - { - "Answer": "8", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "3", - "Explanation": "Common-Division" - }, - { - "Answer": "7", - "Explanation": "Common-Division" - }, - { - "Answer": "5", - "Explanation": "Common-Division" - }, - { - "Answer": "1", - "Explanation": "Common-Division" - }, - { - "Answer": "77", - "Explanation": "Common-Division" - }, - { - "Answer": "44", - "Explanation": "Common-Division" - }, - { - "Answer": "4", - "Explanation": "Common-Division" - }, - { - "Answer": "22", - "Explanation": "Common-Division" - }, - { - "Answer": "70", - "Explanation": "Common-Division" - }, - { - "Answer": "40", - "Explanation": "Common-Division" - } - ] -} \ No newline at end of file