diff --git "a/all/singleop.json" "b/all/singleop.json" deleted file mode 100644--- "a/all/singleop.json" +++ /dev/null @@ -1,9258 +0,0 @@ -{ - "Source": "https://arxiv.org/abs/1712.09391", - "Categories": [ - { - "Math complexity": 2, - "Language complexity": 7, - "Domain knowledge complexity": 0 - } - ], - "Instances": [ - { - "Input": "John weighs 81 pounds. Roy weighs 4 pounds. How much heavier is John than Roy?", - "Output Program": [ - "answer=(81.0-4.0)\nprint(answer)" - ], - "Output Answer": [ - "77" - ], - "split": "train" - }, - { - "Input": " There are 261 fishbowls. Each fishbowl has 23 fish. How many fish are there?", - "Output Program": [ - "answer=(261.0*23.0)\nprint(answer)" - ], - "Output Answer": [ - "6003" - ], - "split": "train" - }, - { - "Input": " There are 6 birds and 3 nests. How many more birds are there than nests?", - "Output Program": [ - "answer=(6.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "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": [ - "answer=(5.0+12.0)\nprint(answer)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": " Mark has 13 trees in his backyard. If he plants 12 more, how many trees will he have?", - "Output Program": [ - "answer=(13.0+12.0)\nprint(answer)" - ], - "Output Answer": [ - "25" - ], - "split": "train" - }, - { - "Input": "Arthur removes 4 pencils from a jar. There were originally 87 pencils in the jar. How many pencils are left in the jar?", - "Output Program": [ - "answer=(87.0-4.0)\nprint(answer)" - ], - "Output Answer": [ - "83" - ], - "split": "train" - }, - { - "Input": "Barbara has 9 candies. She buys 18 more. How many candies does Barbara have in all?", - "Output Program": [ - "answer=(9.0+18.0)\nprint(answer)" - ], - "Output Answer": [ - "27" - ], - "split": "train" - }, - { - "Input": "George has 2 boxes of blocks. Each box holds 6 blocks and there are 5 boxes in a case. How many blocks does George have?", - "Output Program": [ - "answer=(2.0*6.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": " My car gets 20 miles per gallon of gas. If Grandma\u2019s house is 100 miles away, how many gallons of gas would it take to get to her house?", - "Output Program": [ - "answer=(100.0/20.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Jennifer has 72 cards. 61 are eaten by a hippopotamus. How many cards will Jennifer have?", - "Output Program": [ - "answer=(72.0-61.0)\nprint(answer)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Bridget weighs 39 pounds. Martha weighs 2 pounds. How much heavier is Bridget than Martha?", - "Output Program": [ - "answer=(39.0-2.0)\nprint(answer)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "There are 8 marbles in each box. How many marbles are in 6 boxes?", - "Output Program": [ - "answer=(8.0*6.0)\nprint(answer)" - ], - "Output Answer": [ - "48" - ], - "split": "train" - }, - { - "Input": " You have 24 cookies and want to share them equally with 6 people. How many cookies would each person get?", - "Output Program": [ - "answer=(24.0/6.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "If Lawrence walked 4 kilometers at 3 kilometers per hour, how long was Lawrence walking?", - "Output Program": [ - "answer=(4.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "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": [ - "answer=(28.0+27.0)\nprint(answer)" - ], - "Output Answer": [ - "55" - ], - "split": "train" - }, - { - "Input": " Mrs. Sheridan has 22 fish. Her sister gave her 47 more fish. How many fish does she have now?", - "Output Program": [ - "answer=(22.0+47.0)\nprint(answer)" - ], - "Output Answer": [ - "69" - ], - "split": "train" - }, - { - "Input": " Marcus has 210 baseball cards. He has 58 more than Carter. How many baseball cards does Carter have?", - "Output Program": [ - "answer=(210.0-58.0)\nprint(answer)" - ], - "Output Answer": [ - "152" - ], - "split": "train" - }, - { - "Input": "Anne weighs 67 pounds. Douglas weighs 52 pounds. How much heavier is Anne than Douglas?", - "Output Program": [ - "answer=(67.0-52.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Gloria has 9 boxes of tickets. Each box holds 5 tickets and there are 10 boxes in a case. How many tickets does Gloria have?", - "Output Program": [ - "answer=(9.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": "Ruby has 36 candies and 6 bananas. If she shares the candies among 9 friends, how many candies does each friend get?", - "Output Program": [ - "answer=(36.0/9.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "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": [ - "answer=(14.0*6.0)\nprint(answer)" - ], - "Output Answer": [ - "84" - ], - "split": "train" - }, - { - "Input": " Carson\u2019s teacher gives out gold stars for great math work. Yesterday, Carson earned 6 gold stars. Today, he earned 9 more. How many gold stars did Carson earn in all?", - "Output Program": [ - "answer=(6.0+9.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Wayne collects 9 blocks. Wayne's father gives Wayne 6 more. How many blocks does Wayne have?", - "Output Program": [ - "answer=(9.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": " Jane buys an apple for $0.75 and pays with a $5.00 bill. How much change will she get?", - "Output Program": [ - "answer=(5.0-0.75)\nprint(answer)" - ], - "Output Answer": [ - "4.25" - ], - "split": "train" - }, - { - "Input": "Sean has 9 apples. Susan gives Sean 8 more. Later, Sean buys 18 tickets at the store. How many apples does Sean have in all?", - "Output Program": [ - "answer=(9.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": " James has 232 balloons. Amy has 101 balloons. How many more balloons does James have than Amy?", - "Output Program": [ - "answer=(232.0-101.0)\nprint(answer)" - ], - "Output Answer": [ - "131" - ], - "split": "train" - }, - { - "Input": "Arthur has 6 cards. Aaron has with 5 cards. Aaron finds another 62. How many cards does Aaron end with?", - "Output Program": [ - "answer=(5.0+62.0)\nprint(answer)" - ], - "Output Answer": [ - "67" - ], - "split": "train" - }, - { - "Input": " Maggi had 3 packages of cupcakes. There are 4 cupcakes in each package. She ate 5 cupcakes. How many are left?", - "Output Program": [ - "answer=(3.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": " One pencil weighs 28.3 grams. How much do 5 pencils weigh?", - "Output Program": [ - "answer=(28.3*5.0)\nprint(answer)" - ], - "Output Answer": [ - "141.5" - ], - "split": "train" - }, - { - "Input": " Jesse\u2019s room is 12 feet long and 8 feet wide. How much carpet does she need to cover the whole floor?", - "Output Program": [ - "answer=(12.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "96" - ], - "split": "train" - }, - { - "Input": " There were 105 parents in the program and 698 pupils, too. How many people were present in the program?", - "Output Program": [ - "answer=(105.0+698.0)\nprint(answer)" - ], - "Output Answer": [ - "803" - ], - "split": "train" - }, - { - "Input": "Heather has 60 oranges. Russell takes 35 away. How many oranges will Heather have?", - "Output Program": [ - "answer=(60.0-35.0)\nprint(answer)" - ], - "Output Answer": [ - "25" - ], - "split": "train" - }, - { - "Input": "Steven wants to split a collection of cards into groups of 6. Steven has 30 cards. How many groups will be created?", - "Output Program": [ - "answer=(30.0/6.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "There are 7 students in the class and 56 eggs. If the eggs are divided equally among the students, how many does each student get?", - "Output Program": [ - "answer=(56.0/7.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Joshua has 40 Skittles and 6 eggs. If he shares the Skittles among 5 friends, how many Skittles does each friend get?", - "Output Program": [ - "answer=(40.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "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": [ - "answer=(303.0*28.0)\nprint(answer)" - ], - "Output Answer": [ - "8484" - ], - "split": "train" - }, - { - "Input": "Clarence has 5 oranges. He gets 3 more from Joyce. Later, Clarence buys 9 Skittles at the store. How many oranges does Clarence have in all?", - "Output Program": [ - "answer=(5.0+3.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Martin has 8 boxes of crayons. Each box holds 7 crayons. How many crayons does Martin have?", - "Output Program": [ - "answer=(8.0*7.0)\nprint(answer)" - ], - "Output Answer": [ - "56" - ], - "split": "train" - }, - { - "Input": " Misha has 34 dollars. How many dollars does she have to earn to have 47 dollars to buy a dog?", - "Output Program": [ - "answer=(47.0-34.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Mildred weighs 59 pounds. Carol weighs 9 pounds. How much heavier is Mildred than Carol?", - "Output Program": [ - "answer=(59.0-9.0)\nprint(answer)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "Input": "Gumballs come in packages of 5. Nathan ate 20 gumballs. How many whole boxes did he eat and how many gumballs does he have left?", - "Output Program": [ - "answer=(20.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "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": [ - "answer=(10.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": " There are 5 flowers and 3 bees. How many fewer bees are there than flowers?", - "Output Program": [ - "answer=(5.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "There are 30 candies in Kathy's candy collection. If the candies are organized into 10 groups, how big is each group?", - "Output Program": [ - "answer=(30.0/10.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Marilyn starts with 51 bottle caps. She shares 36 with Nancy. How many bottle caps does Marilyn end with?", - "Output Program": [ - "answer=(51.0-36.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "James rode 80 miles at 16 miles per hour. How long did James ride?", - "Output Program": [ - "answer=(80.0/16.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "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": [ - "answer=(12.0+16.0)\nprint(answer)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": " Mrs. Sheridan has 11 cats. How many more cats does Mrs. Sheridan need to have 43 cats?", - "Output Program": [ - "answer=(43.0-11.0)\nprint(answer)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": " Cade had 87 marbles. He gave 8 to Dylan. How many does he have left?", - "Output Program": [ - "answer=(87.0-8.0)\nprint(answer)" - ], - "Output Answer": [ - "79" - ], - "split": "train" - }, - { - "Input": " Mrs. Hilt needs to share $3.75 equally among 3 total people. How much money will each person get?", - "Output Program": [ - "answer=(3.75/3.0)\nprint(answer)" - ], - "Output Answer": [ - "1.25" - ], - "split": "train" - }, - { - "Input": "Jennifer starts with 7 apples. She finds another 74. How many apples does Jennifer end with?", - "Output Program": [ - "answer=(7.0+74.0)\nprint(answer)" - ], - "Output Answer": [ - "81" - ], - "split": "train" - }, - { - "Input": "Rachel removes 47 bottle caps from a jar. There were originally 87 bottle caps in the jar. How many bottle caps are left in the jar?", - "Output Program": [ - "answer=(87.0-47.0)\nprint(answer)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": " You are reading a book with 120 pages. If you want to read the same number of pages each night, how many would you have to read each night to finish in 10 days?", - "Output Program": [ - "answer=(120.0/10.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Albert has 9 bottle caps. Anne has with 10 bottle caps. Anne finds another 5. How many bottle caps does Anne end with?", - "Output Program": [ - "answer=(10.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": " Bobby ate 26 pieces of candy. Then, he ate 17 more. How many pieces of candy did Bobby eat?", - "Output Program": [ - "answer=(26.0+17.0)\nprint(answer)" - ], - "Output Answer": [ - "43" - ], - "split": "train" - }, - { - "Input": " Gavin has 23 shirts. 6 are blue the rest are green. How many green shirts does Gavin have?", - "Output Program": [ - "answer=(23.0-6.0)\nprint(answer)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": " Isabella\u2019s hair is 18 inches long. If she gets a haircut and now her hair is 9 inches long, how much of Isabella\u2019s hair got cut off?", - "Output Program": [ - "answer=(18.0-9.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Brandon has 96 Skittles. Bonnie has 4 Skittles. He loses 9. How many Skittles will Brandon have?", - "Output Program": [ - "answer=(96.0-9.0)\nprint(answer)" - ], - "Output Answer": [ - "87" - ], - "split": "train" - }, - { - "Input": " There were 27 boys and 35 girls on the playground at recess. How many children were on the playground at recess?", - "Output Program": [ - "answer=(27.0+35.0)\nprint(answer)" - ], - "Output Answer": [ - "62" - ], - "split": "train" - }, - { - "Input": "Scott has 56 oranges that must be put away in boxes. Terry comes to help and brings 11 cookies to share with Scott. If there are 8 boxes, how many oranges must go in each box?", - "Output Program": [ - "answer=(56.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": " Lisa rented 4 DVDs for $4.80. How much did each DVD cost to rent?", - "Output Program": [ - "answer=(4.8/4.0)\nprint(answer)" - ], - "Output Answer": [ - "1.2" - ], - "split": "train" - }, - { - "Input": " Ted has 15 candy bars. He wants to put them into 5 bags so there are the same number of candy bars in each bag. How many candy bars should go in each bag?", - "Output Program": [ - "answer=(15.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Joyce has 8 eggs. Marie gives Joyce 6 more. Later, Joyce buys 13 erasers at the store. How many eggs does Joyce have in all?", - "Output Program": [ - "answer=(8.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": " Mrs. Hilt bought an ice cream cone for 99 cents. How much would 2 ice cream cones cost?", - "Output Program": [ - "answer=(99.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "198" - ], - "split": "train" - }, - { - "Input": "If there are 7 crayons in a box and Gerald puts 6 more crayons inside, how many crayons are in the box?", - "Output Program": [ - "answer=(7.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Ruth starts with 89 apples. She shares 5 with Peter. How many apples does Ruth end with?", - "Output Program": [ - "answer=(89.0-5.0)\nprint(answer)" - ], - "Output Answer": [ - "84" - ], - "split": "train" - }, - { - "Input": " A cereal box holds 18 cups of cereal. Each serving is 2 cups. How many servings are in the whole box?", - "Output Program": [ - "answer=(18.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Willie starts with 36 stickers. He gives 7 to Emily. How many stickers does Willie end with?", - "Output Program": [ - "answer=(36.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "29" - ], - "split": "train" - }, - { - "Input": "Adam has 13 blocks. Ann has with 9 blocks. Ann finds another 44. How many blocks does Ann end with?", - "Output Program": [ - "answer=(9.0+44.0)\nprint(answer)" - ], - "Output Answer": [ - "53" - ], - "split": "train" - }, - { - "Input": " Alyssa had 129 cookies. Aiyanna has 140. How many more cookies does Aiyanna have than Alyssa?", - "Output Program": [ - "answer=(140.0-129.0)\nprint(answer)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "There are 8 apples in a pile on the desk. Each apple comes in a package of 11. 5 apples are added to the pile. How many apples are there in the pile?", - "Output Program": [ - "answer=(8.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "Patrick jogged to Aaron's house. It is 14 miles from Patrick's house to Aaron's house. It took Patrick 2 hours to get there. How fast did Patrick go?", - "Output Program": [ - "answer=(14.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "There are 9 cards. 4 cards more are added. How many are there total?", - "Output Program": [ - "answer=(9.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": "David removes 7 eggs from a jar. There were originally 27 eggs in the jar. How many eggs are left in the jar?", - "Output Program": [ - "answer=(27.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Sara has 10 marbles. She loses 7. How many marbles will Sara have?", - "Output Program": [ - "answer=(10.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Helen starts with 9 oranges. She gets 29 more from Ann. How many oranges does Helen end with?", - "Output Program": [ - "answer=(9.0+29.0)\nprint(answer)" - ], - "Output Answer": [ - "38" - ], - "split": "train" - }, - { - "Input": "Katherine has 34 bottle caps. 8 are eaten by a hippopotamus. How many bottle caps will Katherine have?", - "Output Program": [ - "answer=(34.0-8.0)\nprint(answer)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": " Melissa scored 120 points in each game. How many points did she score in 10 games?", - "Output Program": [ - "answer=(120.0*10.0)\nprint(answer)" - ], - "Output Answer": [ - "1200" - ], - "split": "train" - }, - { - "Input": " There are 4 squirrels in a tree with 2 nuts. How many more squirrels are there than nuts?", - "Output Program": [ - "answer=(4.0-2.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": " Shelby\u2019s teacher gives out gold stars for great math work. Yesterday, Shelby earned 4 gold stars. Today, she earned 3 more. How many gold stars did Shelby earn in all?", - "Output Program": [ - "answer=(4.0+3.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Kimberly has 5 Skittles. She buys 7 more. Later, Kimberly buys 18 oranges at the store. How many Skittles does Kimberly have in all?", - "Output Program": [ - "answer=(5.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Brian has 76 cards. Wayne takes 59 away. How many cards will Brian have?", - "Output Program": [ - "answer=(76.0-59.0)\nprint(answer)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": " Kelly has 50 Nintendo games. How many does she need to give away so that she will have 35 games left?", - "Output Program": [ - "answer=(50.0-35.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "There are 69 erasers in a box. Jane has 15 erasers in a bag. Doris takes 54 erasers out of the box. How many erasers are left in the box?", - "Output Program": [ - "answer=(69.0-54.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": " Isabel bought 900 pieces of paper. She used 156 pieces of the paper. How many pieces of paper does she have left?", - "Output Program": [ - "answer=(900.0-156.0)\nprint(answer)" - ], - "Output Answer": [ - "744" - ], - "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": [ - "answer=(27.0*16.0)\nprint(answer)" - ], - "Output Answer": [ - "432" - ], - "split": "train" - }, - { - "Input": "The school is planning a field trip. There are 180 students and 60 seats on each school bus. How many buses are needed to take the trip?", - "Output Program": [ - "answer=(180.0/60.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": " The farmer had 127 apples. He gave 88 apples to his neighbor. How many apples does he have now?", - "Output Program": [ - "answer=(127.0-88.0)\nprint(answer)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": " A candy store has 6 boxes of chocolates. Each box has 500 pieces. How many pieces are there altogether in the boxes?", - "Output Program": [ - "answer=(6.0*500.0)\nprint(answer)" - ], - "Output Answer": [ - "3000" - ], - "split": "train" - }, - { - "Input": "Betty has 24 oranges stored in boxes. If there are 3 boxes, how many oranges must go in each box?", - "Output Program": [ - "answer=(24.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Brenda wants to split a collection of erasers into groups of 90. Brenda has 270 erasers. How many groups will be created?", - "Output Program": [ - "answer=(270.0/90.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "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": [ - "answer=(600.0-327.0)\nprint(answer)" - ], - "Output Answer": [ - "273" - ], - "split": "train" - }, - { - "Input": "Martha is inviting 4 friends to a party. She has 12 cookies. How many cookies will each friend get?", - "Output Program": [ - "answer=(12.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Each bottle cap costs $5.00. How much do 5 bottle caps cost?", - "Output Program": [ - "answer=(5.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "25" - ], - "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": [ - "answer=(2.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": " James ate 22 carrot sticks before dinner and 15 more after dinner. How many carrot sticks did he eat?", - "Output Program": [ - "answer=(22.0+15.0)\nprint(answer)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "Each child has 6 pencils. If there are 2 children, how many pencils are there in total?", - "Output Program": [ - "answer=(6.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": "Carol starts with 42 blocks. She loses 25. How many blocks does Carol end with?", - "Output Program": [ - "answer=(42.0-25.0)\nprint(answer)" - ], - "Output Answer": [ - "17" - ], - "split": "train" - }, - { - "Input": "There are 2 bananas in a pile on the desk. Each banana comes in a package of 13. 7 bananas are added to the pile. How many bananas are there in the pile?", - "Output Program": [ - "answer=(2.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Rose has 9 apples and 12 erasers. If she shares the apples among 3 friends, how many apples does each friend get?", - "Output Program": [ - "answer=(12.0-9.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "Harry starts with 79 apples. He buys 5 more. How many apples does Harry end with?", - "Output Program": [ - "answer=(79.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "84" - ], - "split": "train" - }, - { - "Input": "Diana starts with 65 bottle caps. 4 are eaten by a hippopotamus. How many bottle caps does Diana end with?", - "Output Program": [ - "answer=(65.0-4.0)\nprint(answer)" - ], - "Output Answer": [ - "61" - ], - "split": "train" - }, - { - "Input": " Mrs. Heine is buying Valentine\u2019s Day treats for her 2 dogs. If she wants to buy them 3 heart biscuits each, how many biscuits does she need to buy?", - "Output Program": [ - "answer=(2.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": " It takes 7 minutes to bake one pan of cookies. How long will it take to bake 4 pans of cookies?", - "Output Program": [ - "answer=(7.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": " Carla has some marbles. She bought 134 marbles. Now she has 187 marbles. How many did she start with?", - "Output Program": [ - "answer=(187.0-134.0)\nprint(answer)" - ], - "Output Answer": [ - "53" - ], - "split": "train" - }, - { - "Input": " Josh had 16 marbles in his collection. He lost 7 marbles. How many marbles does he have now?", - "Output Program": [ - "answer=(16.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "There are 6 candies in a pile on the desk. Each candy comes in a package of 15. 4 candies are added to the pile. How many candies are there in the pile?", - "Output Program": [ - "answer=(6.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "There are 16 bottle caps in a box. Marvin takes 6 bottle caps. How many are left?", - "Output Program": [ - "answer=(16.0-6.0)\nprint(answer)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Larry starts with 93 stickers. He loses 6. How many stickers does Larry end with?", - "Output Program": [ - "answer=(93.0-6.0)\nprint(answer)" - ], - "Output Answer": [ - "87" - ], - "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": [ - "answer=(37.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "296" - ], - "split": "train" - }, - { - "Input": " Mrs. Hilt had 15 cents. She bought a pencil for 11 cents. How much money did she have left?", - "Output Program": [ - "answer=(15.0-11.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": " There were 150 book shelves. Each book shelf had 15 books. How many books were on the shelves?", - "Output Program": [ - "answer=(150.0*15.0)\nprint(answer)" - ], - "Output Answer": [ - "2250" - ], - "split": "train" - }, - { - "Input": " Bob\u2019s car gets 10 kilometers per gallon. How far can he drive on 10 gallons of gas?", - "Output Program": [ - "answer=(10.0*10.0)\nprint(answer)" - ], - "Output Answer": [ - "100" - ], - "split": "train" - }, - { - "Input": "Christopher strolled 5 miles at 4 miles per hour. How long did Christopher stroll?", - "Output Program": [ - "answer=(5.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "1.25" - ], - "split": "train" - }, - { - "Input": "Sarah has 7 boxes of apples. Each box holds 7 apples. How many apples does Sarah have?", - "Output Program": [ - "answer=(7.0*7.0)\nprint(answer)" - ], - "Output Answer": [ - "49" - ], - "split": "train" - }, - { - "Input": " My dog had some bones. Then, he dug up 367 bones. Now he has 860 bones. How many bones did he start with?", - "Output Program": [ - "answer=(860.0-367.0)\nprint(answer)" - ], - "Output Answer": [ - "493" - ], - "split": "train" - }, - { - "Input": "If Stephanie ran for 3 hours at 5 miles per hour. How far did Stephanie go?", - "Output Program": [ - "answer=(3.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Patricia starts with 76 candies. Albert takes 5 away. How many candies does Patricia end with?", - "Output Program": [ - "answer=(76.0-5.0)\nprint(answer)" - ], - "Output Answer": [ - "71" - ], - "split": "train" - }, - { - "Input": "Heather starts with 86 blocks. She shares 41 with Jose. How many blocks does Heather end with?", - "Output Program": [ - "answer=(86.0-41.0)\nprint(answer)" - ], - "Output Answer": [ - "45" - ], - "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": [ - "answer=(144.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "432" - ], - "split": "train" - }, - { - "Input": "Ronald has 13 blocks. Martha has with 4 blocks. Martha finds another 80. How many blocks does Martha end with?", - "Output Program": [ - "answer=(4.0+80.0)\nprint(answer)" - ], - "Output Answer": [ - "84" - ], - "split": "train" - }, - { - "Input": "Peter has 3 candies stored in boxes. If there are 3 boxes, how many candies must go in each box?", - "Output Program": [ - "answer=(3.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "1" - ], - "split": "train" - }, - { - "Input": "The school is planning a field trip. There are 45 students and 9 seats on each school bus. How many buses are needed to take the trip?", - "Output Program": [ - "answer=(45.0/9.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": " The town of Milburg has 5256 grown-ups and 2987 children. How many people live in Milburg?", - "Output Program": [ - "answer=(5256.0+2987.0)\nprint(answer)" - ], - "Output Answer": [ - "8243" - ], - "split": "train" - }, - { - "Input": "Carlos has 58 blocks. He gives 21 to Rachel. How many blocks will Carlos have?", - "Output Program": [ - "answer=(58.0-21.0)\nprint(answer)" - ], - "Output Answer": [ - "37" - ], - "split": "train" - }, - { - "Input": "Virginia starts with 96 eggs. Amy takes 3 away. How many eggs does Virginia end with?", - "Output Program": [ - "answer=(96.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "93" - ], - "split": "train" - }, - { - "Input": " Beka flew 873 miles to visit her aunt. Jackson flew 563 miles to visit his aunt. How many more miles did Beka fly than Jackson?", - "Output Program": [ - "answer=(873.0-563.0)\nprint(answer)" - ], - "Output Answer": [ - "310" - ], - "split": "train" - }, - { - "Input": " There were 58 geese and 37 ducks in the marsh. How many birds were there in all?", - "Output Program": [ - "answer=(58.0+37.0)\nprint(answer)" - ], - "Output Answer": [ - "95" - ], - "split": "train" - }, - { - "Input": "Billy has 62 crayons. 52 are eaten by a hippopotamus. How many crayons will Billy have?", - "Output Program": [ - "answer=(62.0-52.0)\nprint(answer)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Craig has 20 apples. Judy has 11 apples. He shares 7 with Eugene. How many apples will Craig have?", - "Output Program": [ - "answer=(20.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": " Marie can bike at a speed of 12 miles an hour. How far can she bike in 31 hours?", - "Output Program": [ - "answer=(12.0*31.0)\nprint(answer)" - ], - "Output Answer": [ - "372" - ], - "split": "train" - }, - { - "Input": " Adam has $5.00 to buy an airplane that costs $4.28. How much change will he get?", - "Output Program": [ - "answer=(5.0-4.28)\nprint(answer)" - ], - "Output Answer": [ - "0.72" - ], - "split": "train" - }, - { - "Input": "Joe has 45 oranges that must be put away in boxes. Daniel comes to help and brings 16 cookies to share with Joe. If there are 9 boxes, how many oranges must go in each box?", - "Output Program": [ - "answer=(45.0/9.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "William has 2 bottle caps. He buys 41 more. How many bottle caps does William have in all?", - "Output Program": [ - "answer=(2.0+41.0)\nprint(answer)" - ], - "Output Answer": [ - "43" - ], - "split": "train" - }, - { - "Input": " Nell collects baseball cards. She had 304 cards. She gave some of her cards to Jeff and now has 276 cards left. How many cards did Nell give to Jeff?", - "Output Program": [ - "answer=(304.0-276.0)\nprint(answer)" - ], - "Output Answer": [ - "28" - ], - "split": "train" - }, - { - "Input": "Aaron starts with 81 erasers. He gives 34 to Doris. How many erasers does Aaron end with?", - "Output Program": [ - "answer=(81.0-34.0)\nprint(answer)" - ], - "Output Answer": [ - "47" - ], - "split": "train" - }, - { - "Input": "If Karen sold 36 boxes of Tagalongs, how many cases of 12 boxes does Karen pickup from the cookie mom?", - "Output Program": [ - "answer=(36.0/12.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": " Bobby has 142 books. Kristi has 78 books. How many more books does Bobby have than Kristi?", - "Output Program": [ - "answer=(142.0-78.0)\nprint(answer)" - ], - "Output Answer": [ - "64" - ], - "split": "train" - }, - { - "Input": "Michelle has 2 crayons. Janet has 2 crayons. If Janet gives all of her crayons to Michelle, how many crayons will Michelle have?", - "Output Program": [ - "answer=(2.0+2.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": "William has 10 marbles. He shares 3 with Theresa. How many marbles will William have?", - "Output Program": [ - "answer=(10.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Kimberly went to the store 3 times last month. She buys 7 peanuts each time she goes to the store. How many peanuts did Kimberly buy last month?", - "Output Program": [ - "answer=(3.0*7.0)\nprint(answer)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "Input": "Michelle has 7 boxes of crayons. Each box holds 5 crayons. How many crayons does Michelle have?", - "Output Program": [ - "answer=(7.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "Eric has 9306 erasers. If he shares them among 99 friends, how many erasers does each friend get?", - "Output Program": [ - "answer=(9306.0/99.0)\nprint(answer)" - ], - "Output Answer": [ - "94" - ], - "split": "train" - }, - { - "Input": " Isabella\u2019s 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": [ - "answer=(24.0-18.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": " 5 boats are in the lake. Each boat has 3 people. How many people are on boats in the lake?", - "Output Program": [ - "answer=(5.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": " There were 28 girls and 35 boys on the playground at recess. How many children were there in all?", - "Output Program": [ - "answer=(28.0+35.0)\nprint(answer)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": " John needs $2.50. He has $0.75. How much more money does he need?", - "Output Program": [ - "answer=(2.5-0.75)\nprint(answer)" - ], - "Output Answer": [ - "1.75" - ], - "split": "train" - }, - { - "Input": "Stephanie went to the store 8 times last month. She buys 2 oranges each time she goes to the store. How many oranges did Stephanie buy last month?", - "Output Program": [ - "answer=(8.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": "There are 97 erasers in a box. Ernest has 17 erasers in a bag. Mark takes 97 erasers out of the box. How many erasers are left in the box?", - "Output Program": [ - "answer=(97.0-97.0)\nprint(answer)" - ], - "Output Answer": [ - "0" - ], - "split": "train" - }, - { - "Input": "Maria has 3 boxes of eggs. Each box holds 7 eggs and there are 8 boxes in a case. How many eggs does Maria have?", - "Output Program": [ - "answer=(3.0*7.0)\nprint(answer)" - ], - "Output Answer": [ - "21" - ], - "split": "train" - }, - { - "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": [ - "answer=(12.0+54.0)\nprint(answer)" - ], - "Output Answer": [ - "66" - ], - "split": "train" - }, - { - "Input": " There were 44 boys and 53 girls on the playground at recess. How many children were on the playground in all?", - "Output Program": [ - "answer=(44.0+53.0)\nprint(answer)" - ], - "Output Answer": [ - "97" - ], - "split": "train" - }, - { - "Input": " 231 birds were sitting in a tree. Some more fly up to the tree. Then there were 312 birds in the tree. How many more fly up to the tree?", - "Output Program": [ - "answer=(312.0-231.0)\nprint(answer)" - ], - "Output Answer": [ - "81" - ], - "split": "train" - }, - { - "Input": "Rachel strolled to Nicholas's house. It is 10 miles from Rachel's house to Nicholas's house. It took Rachel 5 hours to get there. How fast did Rachel go?", - "Output Program": [ - "answer=(10.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": "If there are 7 eggs in a box and Daniel puts 4 more eggs inside, how many eggs are in the box?", - "Output Program": [ - "answer=(7.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": "Ralph starts with 74 peanuts. He loses 59. How many peanuts does Ralph end with?", - "Output Program": [ - "answer=(74.0-59.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Melissa has 70 oranges. John takes 19 away. How many oranges will Melissa have?", - "Output Program": [ - "answer=(70.0-19.0)\nprint(answer)" - ], - "Output Answer": [ - "51" - ], - "split": "train" - }, - { - "Input": " A box of books weighs 42 pounds. Each book weighs 3 pounds. How many books are there in the box?", - "Output Program": [ - "answer=(42.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "14" - ], - "split": "train" - }, - { - "Input": "There are 88 candies in a box. Lisa has 18 candies in a bag. Diana takes 6 candies out of the box. How many candies are left in the box?", - "Output Program": [ - "answer=(88.0-6.0)\nprint(answer)" - ], - "Output Answer": [ - "82" - ], - "split": "train" - }, - { - "Input": "Steve has 46 oranges. He shares 4 with Patrick. How many oranges will Steve have?", - "Output Program": [ - "answer=(46.0-4.0)\nprint(answer)" - ], - "Output Answer": [ - "42" - ], - "split": "train" - }, - { - "Input": " Bryan has 50 skittles. Ben has 20 M&M\u2019s. Who has more? How many more does he have?", - "Output Program": [ - "answer=(50.0-20.0)\nprint(answer)" - ], - "Output Answer": [ - "30" - ], - "split": "train" - }, - { - "Input": "Charles has 25 Skittles. Diana takes 7 away. How many Skittles will Charles have?", - "Output Program": [ - "answer=(25.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": " Connie had some marbles. She gave 73 to Juan. Now she has 70 marbles left. How many did she have to start with?", - "Output Program": [ - "answer=(73.0+70.0)\nprint(answer)" - ], - "Output Answer": [ - "143" - ], - "split": "train" - }, - { - "Input": " A perfect score is 21 points. How many points would you have after 3 perfect games in a row?", - "Output Program": [ - "answer=(21.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": "The school is planning a field trip. There are 14 students and 2 seats on each school bus. How many buses are needed to take the trip?", - "Output Program": [ - "answer=(14.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Jesse starts with 78 pencils. He gives 44 to Joshua. How many pencils does Jesse end with?", - "Output Program": [ - "answer=(78.0-44.0)\nprint(answer)" - ], - "Output Answer": [ - "34" - ], - "split": "train" - }, - { - "Input": " Gary had 73 dollars. He spent 55 dollars on a pet snake. How many dollars did Gary have left?", - "Output Program": [ - "answer=(73.0-55.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "train" - }, - { - "Input": "There are 72 cards in Jean's card collection. If the cards are organized into 9 groups, how big is each group?", - "Output Program": [ - "answer=(72.0/9.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": " There are 37 baskets. There are 17 apples in each basket. How many apples are there in all?", - "Output Program": [ - "answer=(37.0*17.0)\nprint(answer)" - ], - "Output Answer": [ - "629" - ], - "split": "train" - }, - { - "Input": " Cindy\u2019s mom baked 1215 cookies. Paul\u2019s dad baked 1112 cookies. They both brought them to school for a party. How many cookies did they have altogether?", - "Output Program": [ - "answer=(1215.0+1112.0)\nprint(answer)" - ], - "Output Answer": [ - "2327" - ], - "split": "train" - }, - { - "Input": " Julian is writing a comic book. His story has 143 frames in all. If he wants to put exactly 11 frames on each page, how many pages would he have?", - "Output Program": [ - "answer=(143.0/11.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "Input": " Warren has 252 guests coming to his party. Each table will hold 4 guests. How many tables will he need?", - "Output Program": [ - "answer=(252.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "63" - ], - "split": "train" - }, - { - "Input": "Ruby has 63 apples. Emily takes 55 away. How many apples will Ruby have?", - "Output Program": [ - "answer=(63.0-55.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "Ralph collects 4 cards. Ralph's father gives Ralph 8 more. How many cards does Ralph have?", - "Output Program": [ - "answer=(4.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "train" - }, - { - "Input": " Elisa has 37 dollars. How many more dollars does she have to earn to have 53 dollars?", - "Output Program": [ - "answer=(53.0-37.0)\nprint(answer)" - ], - "Output Answer": [ - "16" - ], - "split": "train" - }, - { - "Input": " The Sumata family took a 5-day vacation by car. Each day they drove 250 miles. How many total miles did they drive?", - "Output Program": [ - "answer=(5.0*250.0)\nprint(answer)" - ], - "Output Answer": [ - "1250" - ], - "split": "train" - }, - { - "Input": "Louise has 42 oranges stored in boxes. If there are 7 boxes, how many oranges must go in each box?", - "Output Program": [ - "answer=(42.0/7.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": " Iesha has 58 books. 19 are about school and the rest are about sports. How many books about sports does Iesha have?", - "Output Program": [ - "answer=(58.0-19.0)\nprint(answer)" - ], - "Output Answer": [ - "39" - ], - "split": "train" - }, - { - "Input": " Linda has 34 candies. Chloe has 28. How many candies do they have in all?", - "Output Program": [ - "answer=(34.0+28.0)\nprint(answer)" - ], - "Output Answer": [ - "62" - ], - "split": "train" - }, - { - "Input": "Cheryl starts with 8 Skittles. Kathryn gives Cheryl 89 more. How many Skittles does Cheryl end with?", - "Output Program": [ - "answer=(8.0+89.0)\nprint(answer)" - ], - "Output Answer": [ - "97" - ], - "split": "train" - }, - { - "Input": " Robin has 9 packages of gum. There are 15 pieces in each package. How many pieces of gum does Robin have?", - "Output Program": [ - "answer=(9.0*15.0)\nprint(answer)" - ], - "Output Answer": [ - "135" - ], - "split": "train" - }, - { - "Input": "Carol collects 2 peanuts. Carol's father gives Carol 5 more. How many peanuts does Carol have?", - "Output Program": [ - "answer=(2.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "train" - }, - { - "Input": "Bobby collects 2 blocks. Bobby's father gives Bobby 6 more. How many blocks does Bobby have?", - "Output Program": [ - "answer=(2.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": "There are 47 eggs in a box. Harry takes 5 eggs. How many are left?", - "Output Program": [ - "answer=(47.0-5.0)\nprint(answer)" - ], - "Output Answer": [ - "42" - ], - "split": "train" - }, - { - "Input": " My car gets 20 miles per gallon. How many miles can I drive on 5 gallons of gas?", - "Output Program": [ - "answer=(20.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "100" - ], - "split": "train" - }, - { - "Input": " Rupert and Ronald aced their math test. So their mother bought for them a wonderful trampoline yesterday. Ronald jumped 157 times on the trampoline. Rupert jumped 86 more times than Ronald. How many times did they jump altogether?", - "Output Program": [ - "answer=(157.0+86.0)\nprint(answer)" - ], - "Output Answer": [ - "243" - ], - "split": "train" - }, - { - "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": [ - "answer=(60.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "train" - }, - { - "Input": "Peter starts with 8 erasers. Bridget gives Peter 3 more. How many erasers does Peter end with?", - "Output Program": [ - "answer=(8.0+3.0)\nprint(answer)" - ], - "Output Answer": [ - "11" - ], - "split": "train" - }, - { - "Input": " Mr. Guzman bought 48 doughnuts packed equally into 4 boxes. How many doughnuts were in each box?", - "Output Program": [ - "answer=(48.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "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": [ - "answer=(28.0-5.0)\nprint(answer)" - ], - "Output Answer": [ - "23" - ], - "split": "train" - }, - { - "Input": "Bridget has 4 Skittles. Henry has 4 Skittles. If Henry gives all of his Skittles to Bridget, how many Skittles will Bridget have?", - "Output Program": [ - "answer=(4.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": " Ceasar needs to read a 563 page book for school. He has already read 147 pages. How many pages does he have left to read?", - "Output Program": [ - "answer=(563.0-147.0)\nprint(answer)" - ], - "Output Answer": [ - "416" - ], - "split": "train" - }, - { - "Input": " Our class got 54 books from the library. Then we got 23 more books from the library. How many books did our class get from the library?", - "Output Program": [ - "answer=(54.0+23.0)\nprint(answer)" - ], - "Output Answer": [ - "77" - ], - "split": "train" - }, - { - "Input": "Wanda has 4 blocks. Theresa gives Wanda 79 more. How many blocks does Wanda have in all?", - "Output Program": [ - "answer=(4.0+79.0)\nprint(answer)" - ], - "Output Answer": [ - "83" - ], - "split": "train" - }, - { - "Input": "Mary starts with 27 eggs. She finds another 4. How many eggs does Mary end with?", - "Output Program": [ - "answer=(27.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "31" - ], - "split": "train" - }, - { - "Input": "If Anne wandered for 3 hours at 2 miles per hour. How far did Anne go?", - "Output Program": [ - "answer=(3.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": " 22 boys went down the slide. 13 more boys went down the slide. How many boys went down the slide?", - "Output Program": [ - "answer=(22.0+13.0)\nprint(answer)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "It took Carl 5 hours to ride to Ralph's house at 2 miles per hour. How far is it between Carl's house and Ralph's house?", - "Output Program": [ - "answer=(5.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Jose wandered 4 kilometers at 2 kilometers per hour. How long did Jose wander?", - "Output Program": [ - "answer=(4.0-2.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": " Last Saturday, Marie sold 425 magazines and 275 newspapers. What is the total number of reading materials she sold?", - "Output Program": [ - "answer=(425.0+275.0)\nprint(answer)" - ], - "Output Answer": [ - "700" - ], - "split": "train" - }, - { - "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": [ - "answer=(54.0-16.0)\nprint(answer)" - ], - "Output Answer": [ - "38" - ], - "split": "train" - }, - { - "Input": "Eugene has 51 pencils. He gets 6 more from Joyce. How many pencils does Eugene have in all?", - "Output Program": [ - "answer=(51.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "57" - ], - "split": "train" - }, - { - "Input": " You want to give your baseball cards to your 5 best friends. You have 455 baseball cards. How many would each get, if you share them equally?", - "Output Program": [ - "answer=(455.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "91" - ], - "split": "train" - }, - { - "Input": " 6 students were sitting at each table in the lunchroom. There are 34 tables. How many students were sitting in the lunchroom?", - "Output Program": [ - "answer=(6.0*34.0)\nprint(answer)" - ], - "Output Answer": [ - "204" - ], - "split": "train" - }, - { - "Input": " Isabella\u2019s hair is 18 cubes long. If her hair grows 4 more inches, how long will it be?", - "Output Program": [ - "answer=(18.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "Input": " Marlee has 12 guests coming to her Halloween party. Each table will hold 3 guests. How many tables will she need?", - "Output Program": [ - "answer=(12.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": " Brian\u2019s car gets 20 miles per gallon. On his last trip, he used 3 gallons of gas. How many miles did he travel on his last trip?", - "Output Program": [ - "answer=(20.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "60" - ], - "split": "train" - }, - { - "Input": "Lillian collects 88 candies. Lillian's father gives Lillian 5 more. How many candies does Lillian have?", - "Output Program": [ - "answer=(88.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "93" - ], - "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": [ - "answer=(6.0*71.0)\nprint(answer)" - ], - "Output Answer": [ - "426" - ], - "split": "train" - }, - { - "Input": "Lisa flew 256 miles at 32 miles per hour. How long did Lisa fly?", - "Output Program": [ - "answer=(256.0/32.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "train" - }, - { - "Input": " Each cup contains 8 ounces. How many ounces are in 33 cups?", - "Output Program": [ - "answer=(8.0*33.0)\nprint(answer)" - ], - "Output Answer": [ - "264" - ], - "split": "train" - }, - { - "Input": " Kelly had 56 apples. How many more apples does Kelly need to pick to have 105 apples altogether?", - "Output Program": [ - "answer=(105.0-56.0)\nprint(answer)" - ], - "Output Answer": [ - "49" - ], - "split": "train" - }, - { - "Input": "There are 79 pencils in a box. Eric takes 4 pencils. How many are left?", - "Output Program": [ - "answer=(79.0-4.0)\nprint(answer)" - ], - "Output Answer": [ - "75" - ], - "split": "train" - }, - { - "Input": "Jack is inviting 4 friends to a party. He has 4 cookies. How many cookies will each friend get?", - "Output Program": [ - "answer=(4.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "1" - ], - "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": [ - "answer=(50.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "10" - ], - "split": "train" - }, - { - "Input": "Each banana costs $5.00. How much do 4 bananas cost?", - "Output Program": [ - "answer=(5.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "Input": "Albert has 35 oranges stored in boxes. If there are 7 boxes, how many oranges must go in each box?", - "Output Program": [ - "answer=(35.0/7.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Michael has 16 blocks stored in boxes. If there are 8 boxes, how many blocks must go in each box?", - "Output Program": [ - "answer=(16.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "train" - }, - { - "Input": " Robin has 27 packages of gum. There are 18 pieces in each package. How many pieces of gum does Robin have?", - "Output Program": [ - "answer=(27.0*18.0)\nprint(answer)" - ], - "Output Answer": [ - "486" - ], - "split": "train" - }, - { - "Input": "Sean has 55 blocks. 29 are eaten by a hippopotamus. How many blocks will Sean have?", - "Output Program": [ - "answer=(55.0-29.0)\nprint(answer)" - ], - "Output Answer": [ - "26" - ], - "split": "train" - }, - { - "Input": " Mrs. Hilt read 4 books. Each book had 17 chapters in it. How many chapters did Mrs. Hilt read?", - "Output Program": [ - "answer=(4.0*17.0)\nprint(answer)" - ], - "Output Answer": [ - "68" - ], - "split": "train" - }, - { - "Input": " Randy has 78 blocks. He uses 19 blocks to build a tower. How many blocks are left?", - "Output Program": [ - "answer=(78.0-19.0)\nprint(answer)" - ], - "Output Answer": [ - "59" - ], - "split": "train" - }, - { - "Input": "Jose starts with 7 bottle caps. He gets 2 more from Rebecca. How many bottle caps does Jose end with?", - "Output Program": [ - "answer=(7.0+2.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "train" - }, - { - "Input": "Jesse has 21 bananas. If he shares them among 3 friends, how many bananas does each friend get?", - "Output Program": [ - "answer=(21.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "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": [ - "answer=(8.0*45.0)\nprint(answer)" - ], - "Output Answer": [ - "360" - ], - "split": "train" - }, - { - "Input": "Jenny sold 24 boxes of Trefoils. How many cases of 8 boxes, plus extra boxes does Jenny need to deliver?", - "Output Program": [ - "answer=(24.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "The school is planning a field trip. There are 28 students and 7 seats on each school bus. How many buses are needed to take the trip?", - "Output Program": [ - "answer=(28.0/7.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": " Connie has 2315 red markers and 1028 blue markers. How many markers does she have altogether?", - "Output Program": [ - "answer=(2315.0+1028.0)\nprint(answer)" - ], - "Output Answer": [ - "3343" - ], - "split": "train" - }, - { - "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": [ - "answer=(58.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "29" - ], - "split": "train" - }, - { - "Input": " There are 10 stickers on a page. If you have 22 pages of stickers, how many stickers do you have?", - "Output Program": [ - "answer=(10.0*22.0)\nprint(answer)" - ], - "Output Answer": [ - "220" - ], - "split": "train" - }, - { - "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": [ - "answer=(117.0-40.0)\nprint(answer)" - ], - "Output Answer": [ - "77" - ], - "split": "train" - }, - { - "Input": "Christine wandered 20 miles at 4 miles per hour. How long did Christine wander?", - "Output Program": [ - "answer=(20.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Each child has 5 bottle caps. If there are 9 children, how many bottle caps are there in total?", - "Output Program": [ - "answer=(5.0*9.0)\nprint(answer)" - ], - "Output Answer": [ - "45" - ], - "split": "train" - }, - { - "Input": " There are 64 pigs in the barn. Some more come to join them. Now there are 86 pigs. How many pigs came to join them?", - "Output Program": [ - "answer=(86.0-64.0)\nprint(answer)" - ], - "Output Answer": [ - "22" - ], - "split": "train" - }, - { - "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": [ - "answer=(4.0*10.0)\nprint(answer)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": "Martha starts with 3 cards. She gets 76 more from Emily. How many cards does Martha end with?", - "Output Program": [ - "answer=(3.0+76.0)\nprint(answer)" - ], - "Output Answer": [ - "79" - ], - "split": "train" - }, - { - "Input": " Mrs. Hilt looked at her car's odometer before a trip. The odometer showed that she had traveled 212.3 miles. When she stopped for lunch, the odometer read 372.0. How many miles had she traveled?", - "Output Program": [ - "answer=(372.0-212.3)\nprint(answer)" - ], - "Output Answer": [ - "159.7" - ], - "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": [ - "answer=(61.0-39.0)\nprint(answer)" - ], - "Output Answer": [ - "22" - ], - "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": [ - "answer=(25.0-19.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "train" - }, - { - "Input": " Kim has 4 cousins. She wants to give each cousin 5 pieces of gum. How much gum will she need?", - "Output Program": [ - "answer=(4.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "train" - }, - { - "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": [ - "answer=(143.0/11.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "train" - }, - { - "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": [ - "answer=(356.0-112.0)\nprint(answer)" - ], - "Output Answer": [ - "244" - ], - "split": "train" - }, - { - "Input": "Nicholas starts with 8 bottle caps. He gets 85 more from Catherine. How many bottle caps does Nicholas end with?", - "Output Program": [ - "answer=(8.0+85.0)\nprint(answer)" - ], - "Output Answer": [ - "93" - ], - "split": "train" - }, - { - "Input": "Joyce has 40 bananas that must be put away in boxes. Fred comes to help and brings 18 cookies to share with Joyce. If there are 10 boxes, how many bananas must go in each box?", - "Output Program": [ - "answer=(40.0/10.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "train" - }, - { - "Input": " Lucy has 212 fish. How many more fish does she need to buy to have 280 fish?", - "Output Program": [ - "answer=(280.0-212.0)\nprint(answer)" - ], - "Output Answer": [ - "68" - ], - "split": "train" - }, - { - "Input": "Annie starts with 4 crayons. Matthew gives Annie 36 more. How many crayons does Annie end with?", - "Output Program": [ - "answer=(4.0+36.0)\nprint(answer)" - ], - "Output Answer": [ - "40" - ], - "split": "train" - }, - { - "Input": " Megan had 217 markers. Robert gave her 109 more markers. How many markers does Megan have altogether?", - "Output Program": [ - "answer=(217.0+109.0)\nprint(answer)" - ], - "Output Answer": [ - "326" - ], - "split": "train" - }, - { - "Input": "If Harold split 15 apples between 3 people in her class and kept the left overs, how many apples did each classmate get?", - "Output Program": [ - "answer=(15.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Theresa has 32 crayons. Janice has 12 crayons. She shares 13 with Nancy. How many crayons will Theresa have?", - "Output Program": [ - "answer=(32.0-13.0)\nprint(answer)" - ], - "Output Answer": [ - "19" - ], - "split": "train" - }, - { - "Input": "Marie starts with 95 erasers. She loses 42. How many erasers does Marie end with?", - "Output Program": [ - "answer=(95.0-42.0)\nprint(answer)" - ], - "Output Answer": [ - "53" - ], - "split": "train" - }, - { - "Input": "There are 9 bottle caps in each box. How many bottle caps are in 6 boxes?", - "Output Program": [ - "answer=(9.0*6.0)\nprint(answer)" - ], - "Output Answer": [ - "54" - ], - "split": "train" - }, - { - "Input": "Gloria has 2 pencils. Lisa has 99 pencils. If Lisa gives all of her pencils to Gloria, how many pencils will Gloria have?", - "Output Program": [ - "answer=(2.0+99.0)\nprint(answer)" - ], - "Output Answer": [ - "101" - ], - "split": "train" - }, - { - "Input": "Bruce has 75 eggs. Kimberly has 17 eggs. He loses 70. How many eggs will Bruce have?", - "Output Program": [ - "answer=(75.0-70.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": "Shirley starts with 98 eggs. She buys 8 more. How many eggs does Shirley end with?", - "Output Program": [ - "answer=(98.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "106" - ], - "split": "train" - }, - { - "Input": " 14 birds were sitting in a tree. 21 more birds flew up to the tree. How many birds were there altogether in the tree?", - "Output Program": [ - "answer=(14.0+21.0)\nprint(answer)" - ], - "Output Answer": [ - "35" - ], - "split": "train" - }, - { - "Input": "The school is planning a field trip. There are 9 students and 3 seats on each school bus. How many buses are needed to take the trip?", - "Output Program": [ - "answer=(9.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "split": "train" - }, - { - "Input": "There are 96 oranges in a box. Jonathan takes 45 oranges. How many are left?", - "Output Program": [ - "answer=(96.0-45.0)\nprint(answer)" - ], - "Output Answer": [ - "51" - ], - "split": "train" - }, - { - "Input": " Joe had 50 toy cars. If he gets 12 more cars, how many cars will he have then?", - "Output Program": [ - "answer=(50.0+12.0)\nprint(answer)" - ], - "Output Answer": [ - "62" - ], - "split": "train" - }, - { - "Input": "Eric has 3 boxes of pencils. Each box holds 9 pencils. How many pencils does Eric have?", - "Output Program": [ - "answer=(3.0*9.0)\nprint(answer)" - ], - "Output Answer": [ - "27" - ], - "split": "train" - }, - { - "Input": " How many cookies would you have if you had 37 bags of cookies with 19 cookies in each bag?", - "Output Program": [ - "answer=(37.0*19.0)\nprint(answer)" - ], - "Output Answer": [ - "703" - ], - "split": "train" - }, - { - "Input": "If Teresa jogged 25 kilometers at 5 kilometers per hour, how long was Teresa jogging?", - "Output Program": [ - "answer=(25.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "train" - }, - { - "Input": " Charlie has 31 more snowballs than Lucy. She has 19 snowballs. How many does Charlie have?", - "Output Program": [ - "answer=(31.0+19.0)\nprint(answer)" - ], - "Output Answer": [ - "50" - ], - "split": "train" - }, - { - "Input": " Andrew spent 3 day working on his Science report. He worked for 2.5 hours each day. How many hours did he work?", - "Output Program": [ - "answer=(3.0*2.5)\nprint(answer)" - ], - "Output Answer": [ - "7.5" - ], - "split": "train" - }, - { - "Input": " Jose has 85 peanuts. Kenya has 48 more than Jose. How many peanuts does Kenya have?", - "Output Program": [ - "answer=(85.0+48.0)\nprint(answer)" - ], - "Output Answer": [ - "133" - ], - "split": "train" - }, - { - "Input": " Sandy had 26 pet fish. She bought 6 more fish. How many pet fish does Sandy have now?", - "Output Program": [ - "answer=(26.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "32" - ], - "split": "train" - }, - { - "Input": " 64 children were riding on the bus. At the bus stop, some more children got on the bus. Then there were 78 children altogether on the bus. How many children got on the bus at the bus stop?", - "Output Program": [ - "answer=(78.0-64.0)\nprint(answer)" - ], - "Output Answer": [ - "14" - ], - "split": "dev" - }, - { - "Input": "Juan ran 80 miles at 10 miles per hour. How long did Juan run?", - "Output Program": [ - "answer=(80.0/10.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "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 4 times today?", - "Output Program": [ - "answer=(30.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "120" - ], - "split": "dev" - }, - { - "Input": "There are 86 blocks. 9 blocks more are added. How many are there total?", - "Output Program": [ - "answer=(86.0+9.0)\nprint(answer)" - ], - "Output Answer": [ - "95" - ], - "split": "dev" - }, - { - "Input": " There are 5 people on the Green Bay High track team. If a relay race is 150 meters long, how far will each team member have to run?", - "Output Program": [ - "answer=(150.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": " 2 toucans are sitting on a tree limb. 1 more toucan joins them. How many toucans in all?", - "Output Program": [ - "answer=(2.0+1.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "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": [ - "answer=(2.0*9.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "dev" - }, - { - "Input": " There were 3409 pieces of candy in a jar. If 145 pieces were red and the rest were blue, how many were blue?", - "Output Program": [ - "answer=(3409.0-145.0)\nprint(answer)" - ], - "Output Answer": [ - "3264" - ], - "split": "dev" - }, - { - "Input": "Annie has 6 apples. She gets 6 more from Nathan. Later, Annie buys 10 crayons at the store. How many apples does Annie have in all?", - "Output Program": [ - "answer=(6.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": " There were 58 geese and 37 ducks in the marsh. How many birds were in the marsh?", - "Output Program": [ - "answer=(58.0+37.0)\nprint(answer)" - ], - "Output Answer": [ - "95" - ], - "split": "dev" - }, - { - "Input": "Mark sprinted 24 miles at 6 miles per hour. How long did Mark sprint?", - "Output Program": [ - "answer=(24.0/6.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": "Evelyn starts with 76 Skittles. She shares 72 with Christine. How many Skittles does Evelyn end with?", - "Output Program": [ - "answer=(76.0-72.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "dev" - }, - { - "Input": " Gino has 63 popsicle sticks. I have 50 popsicle sticks. What is the sum of our popsicle sticks?", - "Output Program": [ - "answer=(63.0+50.0)\nprint(answer)" - ], - "Output Answer": [ - "113" - ], - "split": "dev" - }, - { - "Input": " Mrs. Hilt bought 2 pizzas. Each pizza had 8 slices. How many total slices of pizza did she have?", - "Output Program": [ - "answer=(2.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "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": [ - "answer=(42.0-29.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": " Mrs. Hilt bought 3 pizzas for $8 each. What was the total amount she paid for the three pizzas?", - "Output Program": [ - "answer=(3.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "24" - ], - "split": "dev" - }, - { - "Input": "If Victor split 25 Skittles between 5 people in her class and kept the left overs, how many Skittles did each classmate get?", - "Output Program": [ - "answer=(25.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "Janet has 3 stickers. She gets 53 more from Ruth. How many stickers does Janet have in all?", - "Output Program": [ - "answer=(3.0+53.0)\nprint(answer)" - ], - "Output Answer": [ - "56" - ], - "split": "dev" - }, - { - "Input": "Carolyn starts with 47 marbles and 6 oranges. She shares 42 with Diana. How many marbles does Carolyn end with?", - "Output Program": [ - "answer=(47.0-42.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": " Mariela was in the hospital and she got 403 get well cards from around the country. When she got home she got 287 more cards from friends and family. How many get well cards did Mariela get?", - "Output Program": [ - "answer=(403.0+287.0)\nprint(answer)" - ], - "Output Answer": [ - "690" - ], - "split": "dev" - }, - { - "Input": " Sue\u2019s family went on vacation. Her mom drove the car at 60 mph. They camped at a campground after traveling for 5 hours. How far was the campground from their home?", - "Output Program": [ - "answer=(60.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "300" - ], - "split": "dev" - }, - { - "Input": " Sue\u2019s mother made 75 cookies. She put the cookies in bags, with 3 cookies in each bag. How many bags could she fill up?", - "Output Program": [ - "answer=(75.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": "Elizabeth is inviting 5 friends to a party. She has 5 cookies. How many cookies will each friend get?", - "Output Program": [ - "answer=(5.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "1" - ], - "split": "dev" - }, - { - "Input": " Sarah picked 45 apples. Her brother picked 9 apples. How many times as many apples did Sarah pick?", - "Output Program": [ - "answer=(45.0/9.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": " In a school, there are 542 girls and 387 boys. How many pupils are there in that school?", - "Output Program": [ - "answer=(542.0+387.0)\nprint(answer)" - ], - "Output Answer": [ - "929" - ], - "split": "dev" - }, - { - "Input": " Zach scored 42 points in the football game. Ben scored 21 points. How many more points did Zach score?", - "Output Program": [ - "answer=(42.0-21.0)\nprint(answer)" - ], - "Output Answer": [ - "21" - ], - "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": [ - "answer=(17.0-8.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": " Sean has 45 whistles. He has 32 more whistles that Charles. How many whistles does Charles have?", - "Output Program": [ - "answer=(45.0-32.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "dev" - }, - { - "Input": "Jeremy strolled 20 kilometers at 2 kilometers per hour. How long did Jeremy stroll?", - "Output Program": [ - "answer=(20.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "10" - ], - "split": "dev" - }, - { - "Input": "Andrew starts with 8 eggs. He buys 62 more. How many eggs does Andrew end with?", - "Output Program": [ - "answer=(8.0+62.0)\nprint(answer)" - ], - "Output Answer": [ - "70" - ], - "split": "dev" - }, - { - "Input": " Mrs. Hilt reads 5 books a day. How many books does she read in 3 days?", - "Output Program": [ - "answer=(5.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "Anthony has 9 pencils. Kathryn gives Anthony 56 more. How many pencils does Anthony have in all?", - "Output Program": [ - "answer=(9.0+56.0)\nprint(answer)" - ], - "Output Answer": [ - "65" - ], - "split": "dev" - }, - { - "Input": "Kathleen went to the store 5 times last month. She buys 5 bottle caps each time she goes to the store. How many bottle caps did Kathleen buy last month?", - "Output Program": [ - "answer=(5.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "25" - ], - "split": "dev" - }, - { - "Input": " Tammy drove 55 miles in one hour. At that rate, how far can she drive in 36 hours?", - "Output Program": [ - "answer=(55.0*36.0)\nprint(answer)" - ], - "Output Answer": [ - "1980" - ], - "split": "dev" - }, - { - "Input": "Norma starts with 47 bananas. She loses 45. How many bananas does Norma end with?", - "Output Program": [ - "answer=(47.0-45.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": " Arthur baked 115 muffins. James baked 12 times as many. How many muffins did James bake?", - "Output Program": [ - "answer=(115.0*12.0)\nprint(answer)" - ], - "Output Answer": [ - "1380" - ], - "split": "dev" - }, - { - "Input": "Sarah has 26 bottle caps. She buys 3 more. How many bottle caps does Sarah have in all?", - "Output Program": [ - "answer=(26.0+3.0)\nprint(answer)" - ], - "Output Answer": [ - "29" - ], - "split": "dev" - }, - { - "Input": "Deborah is inviting 10 friends to a party. She has 80 cookies. How many cookies will each friend get?", - "Output Program": [ - "answer=(80.0/10.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": "Denise removes 5 bananas from a jar. There were originally 46 bananas in the jar. How many bananas are left in the jar?", - "Output Program": [ - "answer=(46.0-5.0)\nprint(answer)" - ], - "Output Answer": [ - "41" - ], - "split": "dev" - }, - { - "Input": " I walked 2 miles in 1 hour for Relay for Life. If I maintained this pace for the 8 hours I walk, how many miles total will I walk?", - "Output Program": [ - "answer=(2.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "16" - ], - "split": "dev" - }, - { - "Input": " Mrs. Wong had 30 Valentines. She gave 8 Valentines to her children. How many does she have left?", - "Output Program": [ - "answer=(30.0-8.0)\nprint(answer)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": "Joshua has 40 bottle caps. He buys 7 more. How many bottle caps does Joshua have in all?", - "Output Program": [ - "answer=(40.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "47" - ], - "split": "dev" - }, - { - "Input": " A fruit farm packs oranges in boxes that hold 10 each. One day it packs 2650 oranges. How many boxes did they use?", - "Output Program": [ - "answer=(2650.0/10.0)\nprint(answer)" - ], - "Output Answer": [ - "265" - ], - "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": [ - "answer=(36.0+85.0)\nprint(answer)" - ], - "Output Answer": [ - "121" - ], - "split": "dev" - }, - { - "Input": " Cindy\u2019s mom baked 41 cookies. Paul\u2019s dad baked 38 cookies. They both brought them to school for a party. How many cookies did they have altogether?", - "Output Program": [ - "answer=(41.0+38.0)\nprint(answer)" - ], - "Output Answer": [ - "79" - ], - "split": "dev" - }, - { - "Input": " A bee has 6 legs. How many legs do 2 bees have?", - "Output Program": [ - "answer=(6.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "Jane starts with 87 crayons. 7 are eaten by a hippopotamus. How many crayons does Jane end with?", - "Output Program": [ - "answer=(87.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "80" - ], - "split": "dev" - }, - { - "Input": " Mrs. Santiago has 58 red roses. Mrs. Garrett has 24. How many more red roses does Mrs. Santiago have than Mrs. Garrett?", - "Output Program": [ - "answer=(58.0-24.0)\nprint(answer)" - ], - "Output Answer": [ - "34" - ], - "split": "dev" - }, - { - "Input": "Diana has 3840 erasers. If she shares them among 48 friends, how many erasers does each friend get?", - "Output Program": [ - "answer=(3840.0/48.0)\nprint(answer)" - ], - "Output Answer": [ - "80" - ], - "split": "dev" - }, - { - "Input": " John walks 0.7 miles to school and Nina walks 0.4 miles to school. How much farther does John walk than Nina?", - "Output Program": [ - "answer=(0.7-0.4)\nprint(answer)" - ], - "Output Answer": [ - "0.3" - ], - "split": "dev" - }, - { - "Input": " Isha\u2019s 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": [ - "answer=(31.0-14.0)\nprint(answer)" - ], - "Output Answer": [ - "17" - ], - "split": "dev" - }, - { - "Input": " Lukas averages 12 points per game in basketball. How many points would he score in 5 games?", - "Output Program": [ - "answer=(12.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "60" - ], - "split": "dev" - }, - { - "Input": "Lemon heads come in packages of 6. Louis ate 54 Lemon Heads. How many whole boxes did he eat and how many Lemon Heads does he have left?", - "Output Program": [ - "answer=(54.0/6.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": " Frank worked 8 hours on the first 4 days of the week. How many hours did he work in all?", - "Output Program": [ - "answer=(8.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "32" - ], - "split": "dev" - }, - { - "Input": " Tim had 50 cents. He paid 45 cents for a candy bar. How much change will he get?", - "Output Program": [ - "answer=(50.0-45.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "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": [ - "answer=(10.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "3.33333" - ], - "split": "dev" - }, - { - "Input": " There are 12 birds on the fence. 8 more birds land on the fence. How many birds are on the fence?", - "Output Program": [ - "answer=(12.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "dev" - }, - { - "Input": " Connie has 39 marbles. Juan has 25 more marbles than Connie. How many marbles does Juan have?", - "Output Program": [ - "answer=(39.0+25.0)\nprint(answer)" - ], - "Output Answer": [ - "64" - ], - "split": "dev" - }, - { - "Input": " Mrs. Hilt went to a concert. A total of 65899 people attended the concert. The next week, she went to a second concert, which had 119 more people in attendance. How many people were at the second concert?", - "Output Program": [ - "answer=(65899.0+119.0)\nprint(answer)" - ], - "Output Answer": [ - "66018" - ], - "split": "dev" - }, - { - "Input": "Lori has 30 marbles. If she shares them among 5 friends, how many marbles does each friend get?", - "Output Program": [ - "answer=(30.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "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": [ - "answer=(38.0+10.0)\nprint(answer)" - ], - "Output Answer": [ - "48" - ], - "split": "dev" - }, - { - "Input": "Jacqueline has 4 boxes of erasers. Each box holds 10 erasers and there are 9 boxes in a case. How many erasers does Jacqueline have?", - "Output Program": [ - "answer=(4.0*10.0)\nprint(answer)" - ], - "Output Answer": [ - "40" - ], - "split": "dev" - }, - { - "Input": " There are 14240 books in a library. They are arranged on shelves that hold 8 books each. How many shelves are in the library?", - "Output Program": [ - "answer=(14240.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "1780" - ], - "split": "dev" - }, - { - "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": [ - "answer=(14.0+22.0)\nprint(answer)" - ], - "Output Answer": [ - "36" - ], - "split": "dev" - }, - { - "Input": " A bee has 6 legs. How many legs do 8 bees have?", - "Output Program": [ - "answer=(6.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "48" - ], - "split": "dev" - }, - { - "Input": " Mrs. Hilt ate 5 apples every hour. How many apples had she eaten at the end of 3 hours?", - "Output Program": [ - "answer=(5.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "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": [ - "answer=(292.0+324.0)\nprint(answer)" - ], - "Output Answer": [ - "616" - ], - "split": "dev" - }, - { - "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": [ - "answer=(13.0+38.0)\nprint(answer)" - ], - "Output Answer": [ - "51" - ], - "split": "dev" - }, - { - "Input": "Anna starts with 5 candies. She gets 86 more from Larry. How many candies does Anna end with?", - "Output Program": [ - "answer=(5.0+86.0)\nprint(answer)" - ], - "Output Answer": [ - "91" - ], - "split": "dev" - }, - { - "Input": "Kevin starts with 7 cards. He finds another 47. How many cards does Kevin end with?", - "Output Program": [ - "answer=(7.0+47.0)\nprint(answer)" - ], - "Output Answer": [ - "54" - ], - "split": "dev" - }, - { - "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": [ - "answer=(179.0+38.0)\nprint(answer)" - ], - "Output Answer": [ - "217" - ], - "split": "dev" - }, - { - "Input": " You have 7 balloons and your friend has 5 balloons. How many more balloons do you have than your friend?", - "Output Program": [ - "answer=(7.0-5.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": " How much would 136 pieces of bubble gum cost if each piece costs 18 cents?", - "Output Program": [ - "answer=(136.0*18.0)\nprint(answer)" - ], - "Output Answer": [ - "2448" - ], - "split": "dev" - }, - { - "Input": "Nancy starts with 91 bottle caps. She finds another 88. How many bottle caps does Nancy end with?", - "Output Program": [ - "answer=(91.0+88.0)\nprint(answer)" - ], - "Output Answer": [ - "179" - ], - "split": "dev" - }, - { - "Input": " A chocolate chip cookie recipe calls for 2 cups of chocolate chips. You want to make 23 recipes for a bake sale. How many cups of chocolate chips will be needed to make all the cookie recipes?", - "Output Program": [ - "answer=(2.0*23.0)\nprint(answer)" - ], - "Output Answer": [ - "46" - ], - "split": "dev" - }, - { - "Input": " Jorge scored 156 goals playing soccer last season. This season he scored 187 goals. What is the total number of goals Jorge scored?", - "Output Program": [ - "answer=(156.0+187.0)\nprint(answer)" - ], - "Output Answer": [ - "343" - ], - "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": [ - "answer=(60.0-34.0)\nprint(answer)" - ], - "Output Answer": [ - "26" - ], - "split": "dev" - }, - { - "Input": " 13 ducks are swimming in a lake. 20 more ducks come to join them. How many ducks are swimming in the lake?", - "Output Program": [ - "answer=(13.0+20.0)\nprint(answer)" - ], - "Output Answer": [ - "33" - ], - "split": "dev" - }, - { - "Input": " I have 224 cents to buy candy. If each piece of bulk candy costs 8 cents, how many gumdrops can I buy?", - "Output Program": [ - "answer=(224.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "28" - ], - "split": "dev" - }, - { - "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": [ - "answer=(16.0+14.0)\nprint(answer)" - ], - "Output Answer": [ - "30" - ], - "split": "dev" - }, - { - "Input": " Lansing has 25 elementary schools. There are 247 students in each school. How many elementary students are there altogether in Lansing?", - "Output Program": [ - "answer=(25.0*247.0)\nprint(answer)" - ], - "Output Answer": [ - "6175" - ], - "split": "dev" - }, - { - "Input": " I have a pet golden retriever. Each year he gains 11 pounds. He is 8 years old. How many pounds does he weigh?", - "Output Program": [ - "answer=(11.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "88" - ], - "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": [ - "answer=(750.0-532.0)\nprint(answer)" - ], - "Output Answer": [ - "218" - ], - "split": "dev" - }, - { - "Input": "Heather weighs 87 pounds. Emily weighs 9 pounds. Elizabeth weighs 8 pounds. How much heavier is Heather than Emily?", - "Output Program": [ - "answer=(87.0-9.0)\nprint(answer)" - ], - "Output Answer": [ - "78" - ], - "split": "dev" - }, - { - "Input": "There are 35 bottle caps in Beverly's bottle cap collection. If the bottle caps are organized into 7 groups, how big is each group?", - "Output Program": [ - "answer=(35.0/7.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "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": [ - "answer=(78.0-32.0)\nprint(answer)" - ], - "Output Answer": [ - "46" - ], - "split": "dev" - }, - { - "Input": "Ryan has 72 marbles and 17 blocks. If he shares the marbles among 9 friends, how many marbles does each friend get?", - "Output Program": [ - "answer=(72.0/9.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "dev" - }, - { - "Input": " If each ball costs $1.54, how much must Kyoko pay for 3 balls?", - "Output Program": [ - "answer=(1.54*3.0)\nprint(answer)" - ], - "Output Answer": [ - "4.62" - ], - "split": "dev" - }, - { - "Input": " A cake recipe requires 0.6 cup of sugar for the frosting and 0.2 cup of sugar for the cake. How much sugar is that altogether?", - "Output Program": [ - "answer=(0.6+0.2)\nprint(answer)" - ], - "Output Answer": [ - "0.8" - ], - "split": "dev" - }, - { - "Input": "Marilyn has 40 bananas that must be put away in boxes. Daniel comes to help and brings 10 cookies to share with Marilyn. If there are 8 boxes, how many bananas must go in each box?", - "Output Program": [ - "answer=(40.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "dev" - }, - { - "Input": "George has 5 boxes of eggs. Each box holds 3 eggs and there are 9 boxes in a case. How many eggs does George have?", - "Output Program": [ - "answer=(5.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "dev" - }, - { - "Input": "Evelyn has 95 marbles. She gets 9 more from Henry. Later, Evelyn buys 6 cards at the store. How many marbles does Evelyn have in all?", - "Output Program": [ - "answer=(95.0+9.0)\nprint(answer)" - ], - "Output Answer": [ - "104" - ], - "split": "dev" - }, - { - "Input": " 2 beavers were working on their home. 1 went for a swim. How many beavers are still working on their home?", - "Output Program": [ - "answer=(2.0-1.0)\nprint(answer)" - ], - "Output Answer": [ - "1" - ], - "split": "dev" - }, - { - "Input": " The Hawks scored 3 touchdowns worth 7 points each. How many points do they have?", - "Output Program": [ - "answer=(3.0*7.0)\nprint(answer)" - ], - "Output Answer": [ - "21" - ], - "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": [ - "answer=(479.0-134.0)\nprint(answer)" - ], - "Output Answer": [ - "345" - ], - "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": [ - "answer=(18.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "dev" - }, - { - "Input": " A sandbox is 312 centimeters long and 146 centimeters wide. How many square centimeters of ground does the sandbox cover?", - "Output Program": [ - "answer=(312.0*146.0)\nprint(answer)" - ], - "Output Answer": [ - "45552" - ], - "split": "dev" - }, - { - "Input": "Jack starts with 62 marbles. He shares 33 with Rebecca. How many marbles does Jack end with?", - "Output Program": [ - "answer=(62.0-33.0)\nprint(answer)" - ], - "Output Answer": [ - "29" - ], - "split": "dev" - }, - { - "Input": " After a party, 0.625 of the cake is left over. That night, big brother eats 0.25 of the cake. How much is left over after that?", - "Output Program": [ - "answer=(0.625-0.25)\nprint(answer)" - ], - "Output Answer": [ - "0.375" - ], - "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": [ - "answer=(183.0+593.0)\nprint(answer)" - ], - "Output Answer": [ - "776" - ], - "split": "dev" - }, - { - "Input": " There are 96 cupcakes for 8 children to share. How much will each person get if they share the cupcakes equally?", - "Output Program": [ - "answer=(96.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "dev" - }, - { - "Input": "Martin strolled to Lawrence's house. It is 12 miles from Martin's house to Lawrence's house. It took Martin 6 hours to get there. How fast did Martin go?", - "Output Program": [ - "answer=(12.0/6.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "dev" - }, - { - "Input": "Joyce starts with 75 apples. She gives 52 to Larry. How many apples does Joyce end with?", - "Output Program": [ - "answer=(75.0-52.0)\nprint(answer)" - ], - "Output Answer": [ - "23" - ], - "split": "dev" - }, - { - "Input": "Norma has 88 cards. She loses 70. How many cards will Norma have?", - "Output Program": [ - "answer=(88.0-70.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "dev" - }, - { - "Input": " Roden went to a pet shop. He bought 15 gold fish and 7 blue fish. How many fish did he buy?", - "Output Program": [ - "answer=(15.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "22" - ], - "split": "dev" - }, - { - "Input": " Tessa has 4 apples. Anita gave her 5 more. She needs 10 apples to make a pie. Does she have enough to make a pie?", - "Output Program": [ - "answer=(4.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "dev" - }, - { - "Input": "There are 6 marbles in each box. How many marbles are in 3 boxes?", - "Output Program": [ - "answer=(6.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "dev" - }, - { - "Input": " Adolfo made a tower with 35 blocks. He added some more blocks and now he has 65 blocks. How many did he have to add?", - "Output Program": [ - "answer=(65.0-35.0)\nprint(answer)" - ], - "Output Answer": [ - "30" - ], - "split": "test" - }, - { - "Input": " Dan has $3.00. He bought a candy bar for $1.00. How much money is left?", - "Output Program": [ - "answer=(3.0-1.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": " Ellen had 2080 Legos, but she lost 17 Legos. How many Legos does she have now?", - "Output Program": [ - "answer=(2080.0-17.0)\nprint(answer)" - ], - "Output Answer": [ - "2063" - ], - "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": [ - "answer=(14.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "William starts with 15 tickets. He buys 3 more. How many tickets does William end with?", - "Output Program": [ - "answer=(15.0+3.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Amy starts with 7 peanuts. Gerald gives Amy 55 more. How many peanuts does Amy end with?", - "Output Program": [ - "answer=(7.0+55.0)\nprint(answer)" - ], - "Output Answer": [ - "62" - ], - "split": "test" - }, - { - "Input": "It took Amanda 5 hours to stroll to Kimberly's house at 2 miles per hour. How far is it between Amanda's house and Kimberly's house?", - "Output Program": [ - "answer=(5.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "10" - ], - "split": "test" - }, - { - "Input": " Kate has 223 pennies. John has 388 pennies. How many more pennies does John have?", - "Output Program": [ - "answer=(388.0-223.0)\nprint(answer)" - ], - "Output Answer": [ - "165" - ], - "split": "test" - }, - { - "Input": "Harold has 53 marbles. He gets 16 more from Steve. How many marbles does Harold have in all?", - "Output Program": [ - "answer=(53.0+16.0)\nprint(answer)" - ], - "Output Answer": [ - "69" - ], - "split": "test" - }, - { - "Input": "It took Amanda 3 hours to stroll to Kimberly's house at 2 miles per hour. How far is it between Amanda's house and Kimberly's house?", - "Output Program": [ - "answer=(3.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Harry is inviting 3 friends to a party. He has 12 cookies. How many cookies will each friend get?", - "Output Program": [ - "answer=(12.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "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": [ - "answer=(39.0+22.0)\nprint(answer)" - ], - "Output Answer": [ - "61" - ], - "split": "test" - }, - { - "Input": "Lisa starts with 91 bananas. Maria gives Lisa 8 more. How many bananas does Lisa end with?", - "Output Program": [ - "answer=(91.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "99" - ], - "split": "test" - }, - { - "Input": "Evelyn starts with 18 bottle caps. She finds another 63. How many bottle caps does Evelyn end with?", - "Output Program": [ - "answer=(18.0+63.0)\nprint(answer)" - ], - "Output Answer": [ - "81" - ], - "split": "test" - }, - { - "Input": "Larry has 67 cards. Dennis takes 9 away. How many cards will Larry have?", - "Output Program": [ - "answer=(67.0-9.0)\nprint(answer)" - ], - "Output Answer": [ - "58" - ], - "split": "test" - }, - { - "Input": "If Joan bicycled 25 miles at 5 miles per hour, how long was Joan travelling?", - "Output Program": [ - "answer=(25.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "There are 2 apples in a pile on the desk. Each apple comes in a package of 7. 4 apples are added to the pile. How many apples are there in the pile?", - "Output Program": [ - "answer=(2.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": " I have 80 cents to buy candy. If each gumdrop costs 4 cents, how many gumdrops can I buy?", - "Output Program": [ - "answer=(80.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": " We ordered 21 pizzas. Each pizza has 8 slices. How many slices of pizza are there altogether?", - "Output Program": [ - "answer=(21.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "168" - ], - "split": "test" - }, - { - "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": [ - "answer=(5.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": " Each CD rack holds 8 CDs. A shelf can hold 4 racks. How many total CDs can fit on the shelf?", - "Output Program": [ - "answer=(8.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "If Norma wandered for 5 hours at 3 miles per hour. How far did Norma go?", - "Output Program": [ - "answer=(5.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "There are 22 oranges in a box. Paula takes 7 oranges. How many are left?", - "Output Program": [ - "answer=(22.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": "Roger has 92 blocks. 2 are eaten by a hippopotamus. How many blocks will Roger have?", - "Output Program": [ - "answer=(92.0-2.0)\nprint(answer)" - ], - "Output Answer": [ - "90" - ], - "split": "test" - }, - { - "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": [ - "answer=(10.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "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": [ - "answer=(49.0-18.0)\nprint(answer)" - ], - "Output Answer": [ - "31" - ], - "split": "test" - }, - { - "Input": "Pamela starts with 30 bottle caps. Jean takes 26 away. How many bottle caps does Pamela end with?", - "Output Program": [ - "answer=(30.0-26.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "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": [ - "answer=(86.0-36.0)\nprint(answer)" - ], - "Output Answer": [ - "50" - ], - "split": "test" - }, - { - "Input": " Misha has 34 dollars. How many more dollars does she have to earn to have 47 dollars?", - "Output Program": [ - "answer=(47.0-34.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Dorothy has 72 cards. She gives 5 to Harold. How many cards will Dorothy have?", - "Output Program": [ - "answer=(72.0-5.0)\nprint(answer)" - ], - "Output Answer": [ - "67" - ], - "split": "test" - }, - { - "Input": " Mrs. Sheridan has 17 cats. Mr. Sheridan gave her 14 more cats. How many cats does Mrs. Sheridan have altogether?", - "Output Program": [ - "answer=(17.0+14.0)\nprint(answer)" - ], - "Output Answer": [ - "31" - ], - "split": "test" - }, - { - "Input": " Isha\u2019s pencil is 12 cubes long. If she gets another pencil that is 12 cubes long, how many cubes long are both pencils?", - "Output Program": [ - "answer=(12.0+12.0)\nprint(answer)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "Carlos starts with 39 bananas. 3 are eaten by a hippopotamus. How many bananas does Carlos end with?", - "Output Program": [ - "answer=(39.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "36" - ], - "split": "test" - }, - { - "Input": " Cody is 14 years old. His grandmother is 6 times as old as he is. How old is Cody\u2019s grandmother?", - "Output Program": [ - "answer=(14.0*6.0)\nprint(answer)" - ], - "Output Answer": [ - "84" - ], - "split": "test" - }, - { - "Input": "Shawn has 13 blocks. Mildred has with 2 blocks. Mildred finds another 84. How many blocks does Mildred end with?", - "Output Program": [ - "answer=(2.0+84.0)\nprint(answer)" - ], - "Output Answer": [ - "86" - ], - "split": "test" - }, - { - "Input": "David has 8 bananas. He gets 50 more from Christopher. Later, David buys 9 cards at the store. How many bananas does David have in all?", - "Output Program": [ - "answer=(8.0+50.0)\nprint(answer)" - ], - "Output Answer": [ - "58" - ], - "split": "test" - }, - { - "Input": "Scott has 4 tickets. Ernest has with 9 tickets. Ernest finds another 72. How many tickets does Ernest end with?", - "Output Program": [ - "answer=(9.0+72.0)\nprint(answer)" - ], - "Output Answer": [ - "81" - ], - "split": "test" - }, - { - "Input": "Ronald went to the store 2 times last month. He buys 10 bananas each time he goes to the store. How many bananas did Ronald buy last month?", - "Output Program": [ - "answer=(2.0*10.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": "There are 4 marbles. 7 marbles more are added. How many are there total?", - "Output Program": [ - "answer=(4.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": " Your class had a pizza party. 0.375 of a pizza was left over, and 0.5 of another pizza was left over. You put them both into one box. How much pizza do you have altogether?", - "Output Program": [ - "answer=(0.375+0.5)\nprint(answer)" - ], - "Output Answer": [ - "0.875" - ], - "split": "test" - }, - { - "Input": "Debra removes 22 apples from a jar. There were originally 57 apples in the jar. How many apples are left in the jar?", - "Output Program": [ - "answer=(57.0-22.0)\nprint(answer)" - ], - "Output Answer": [ - "35" - ], - "split": "test" - }, - { - "Input": "There are 77 apples in a box. Louise has 9 apples in a bag. Scott takes 75 apples out of the box. How many apples are left in the box?", - "Output Program": [ - "answer=(77.0-75.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Teresa starts with 52 bananas. She gets 2 more from Rachel. How many bananas does Teresa end with?", - "Output Program": [ - "answer=(52.0+2.0)\nprint(answer)" - ], - "Output Answer": [ - "54" - ], - "split": "test" - }, - { - "Input": "Emily collects 63 cards. Emily's father gives Emily 7 more. Bruce has 13 apples. How many cards does Emily have?", - "Output Program": [ - "answer=(63.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "70" - ], - "split": "test" - }, - { - "Input": " You go out for a long walk. You walk 0.75 mile and then sit down to take a rest. Then you walk 0.25 of a mile. How far did you walk altogether?", - "Output Program": [ - "answer=(0.75+0.25)\nprint(answer)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": " Arthur baked 35 muffins. How many more muffins does Arthur have to bake to have 83 muffins?", - "Output Program": [ - "answer=(83.0-35.0)\nprint(answer)" - ], - "Output Answer": [ - "48" - ], - "split": "test" - }, - { - "Input": "Virginia has 16 eggs and 8 Skittles. If she shares the eggs among 4 friends, how many eggs does each friend get?", - "Output Program": [ - "answer=(16.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "Pamela has 50 skittles. She gives 7 to Karen. How many skittles will Pamela have?", - "Output Program": [ - "answer=(50.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "43" - ], - "split": "test" - }, - { - "Input": "Martha has 2 peanuts. Joyce has 26 peanuts. If Joyce gives all of her peanuts to Martha, how many peanuts will Martha have?", - "Output Program": [ - "answer=(2.0+26.0)\nprint(answer)" - ], - "Output Answer": [ - "28" - ], - "split": "test" - }, - { - "Input": "There are 4 crayons in each box. How many crayons are in 3 boxes?", - "Output Program": [ - "answer=(4.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "There are 4 cards. 3 cards more are added. How many are there total?", - "Output Program": [ - "answer=(4.0+3.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "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": [ - "answer=(44.0-18.0)\nprint(answer)" - ], - "Output Answer": [ - "26" - ], - "split": "test" - }, - { - "Input": "Bonnie has 10 tickets. If she shares them among 2 friends, how many tickets does each friend get?", - "Output Program": [ - "answer=(10.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": " 219 people are going to the zoo, and there are 3 buses to take people. How many will go in each bus if the same number go in each one and all of the people go to the zoo?", - "Output Program": [ - "answer=(219.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "73" - ], - "split": "test" - }, - { - "Input": "If Heather bicycled 40 kilometers at 8 kilometers per hour, how long was Heather bicycling?", - "Output Program": [ - "answer=(40.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": " Sean has 223 whistles. He has 95 more whistles that Charles. How many whistles does Charles have?", - "Output Program": [ - "answer=(223.0-95.0)\nprint(answer)" - ], - "Output Answer": [ - "128" - ], - "split": "test" - }, - { - "Input": "There are 8 oranges. 8 oranges more are added. How many are there total?", - "Output Program": [ - "answer=(8.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "16" - ], - "split": "test" - }, - { - "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": [ - "answer=(344.0-136.0)\nprint(answer)" - ], - "Output Answer": [ - "208" - ], - "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": [ - "answer=(397.0*12.0)\nprint(answer)" - ], - "Output Answer": [ - "4764" - ], - "split": "test" - }, - { - "Input": "There are 7 students in the class and 42 apples. If the apples are divided equally among the students, how many does each student get?", - "Output Program": [ - "answer=(42.0/7.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "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": [ - "answer=(125.0-64.0)\nprint(answer)" - ], - "Output Answer": [ - "61" - ], - "split": "test" - }, - { - "Input": " Albert\u2019s cabbage patch has 12 rows of cabbage. In each row, there are 15 heads of cabbage. How many heads of cabbage does Albert have in all?", - "Output Program": [ - "answer=(12.0*15.0)\nprint(answer)" - ], - "Output Answer": [ - "180" - ], - "split": "test" - }, - { - "Input": "Henry wants to split a collection of crayons into groups of 6. Henry has 42 crayons. How many groups will be created?", - "Output Program": [ - "answer=(42.0/6.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": " Brett drove 55 miles every hour. How many miles would he drive in 8 hours?", - "Output Program": [ - "answer=(55.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "440" - ], - "split": "test" - }, - { - "Input": "Ashley sold 12 boxes of Samoas. How many cases of 12 boxes, plus extra boxes does Ashley need?", - "Output Program": [ - "answer=(12.0/12.0)\nprint(answer)" - ], - "Output Answer": [ - "1" - ], - "split": "test" - }, - { - "Input": " Mary\u2019s car gets 20 miles per gallon of gas. How far can she drive on 14 gallons of gas?", - "Output Program": [ - "answer=(20.0*14.0)\nprint(answer)" - ], - "Output Answer": [ - "280" - ], - "split": "test" - }, - { - "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": [ - "answer=(25.0-18.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "split": "test" - }, - { - "Input": "Clarence has 99 tickets. He gives 7 to Eugene. How many tickets will Clarence have?", - "Output Program": [ - "answer=(99.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "92" - ], - "split": "test" - }, - { - "Input": "Brenda has 34 apples. She gets 37 more from Willie. How many apples does Brenda have in all?", - "Output Program": [ - "answer=(34.0+37.0)\nprint(answer)" - ], - "Output Answer": [ - "71" - ], - "split": "test" - }, - { - "Input": " Mrs. Hilt saw 3 bugs eat 2 flowers each. How many flowers total did the bugs eat?", - "Output Program": [ - "answer=(3.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Angela has 11 tickets. Annie gives Angela 4 more. How many tickets does Angela have in all?", - "Output Program": [ - "answer=(11.0+4.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "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": [ - "answer=(63.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "21" - ], - "split": "test" - }, - { - "Input": "Jose strolled to Jane's house. It is 24 miles from Jose's house to Jane's house. It took Jose 12 hours to get there. How fast did Jose go?", - "Output Program": [ - "answer=(24.0/12.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": " Jazmin had 1209 dolls and Geraldine had 2186 dolls. If they put their dolls together, how many would they have?", - "Output Program": [ - "answer=(1209.0+2186.0)\nprint(answer)" - ], - "Output Answer": [ - "3395" - ], - "split": "test" - }, - { - "Input": " You have collected 7 crickets. How many more crickets do you need to collect to have 11 crickets?", - "Output Program": [ - "answer=(11.0-7.0)\nprint(answer)" - ], - "Output Answer": [ - "4" - ], - "split": "test" - }, - { - "Input": "There are 36 bananas in Diane's banana collection. If the bananas are organized into 6 groups, how big is each group?", - "Output Program": [ - "answer=(36.0/6.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Eric wants to split a collection of peanuts into groups of 8. Eric has 64 peanuts. How many groups will be created?", - "Output Program": [ - "answer=(64.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": " Mrs. Sheridan has 11 cats. Mrs. Garrett has 24 cats. How many more cats does Mrs. Garrett have than Mrs. Sheridan?", - "Output Program": [ - "answer=(24.0-11.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "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": [ - "answer=(126.0-81.0)\nprint(answer)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "Mildred collects 77 oranges. Mildred's father gives Mildred 2 more. How many oranges does Mildred have?", - "Output Program": [ - "answer=(77.0+2.0)\nprint(answer)" - ], - "Output Answer": [ - "79" - ], - "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": [ - "answer=(21.0+17.0)\nprint(answer)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": "Each ticket costs $9.00. How much do 4 tickets cost?", - "Output Program": [ - "answer=(9.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "36" - ], - "split": "test" - }, - { - "Input": " 30 dogs are barking. 10 more dogs start to bark. How many dogs are barking?", - "Output Program": [ - "answer=(30.0+10.0)\nprint(answer)" - ], - "Output Answer": [ - "40" - ], - "split": "test" - }, - { - "Input": " Albert has two snakes. The garden snake is 10 inches long. The boa constrictor is 7 times longer than the garden snake. How long is the boa constrictor?", - "Output Program": [ - "answer=(10.0*7.0)\nprint(answer)" - ], - "Output Answer": [ - "70" - ], - "split": "test" - }, - { - "Input": "Donna weighs 69 pounds. Willie weighs 51 pounds. How much heavier is Donna than Willie?", - "Output Program": [ - "answer=(69.0-51.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": " Paul had 42 strawberries in his basket. He picked 78 more strawberries. How many strawberries did he have then?", - "Output Program": [ - "answer=(42.0+78.0)\nprint(answer)" - ], - "Output Answer": [ - "120" - ], - "split": "test" - }, - { - "Input": "If Benjamin skated 80 kilometers at 10 kilometers per hour, how long was Benjamin skating?", - "Output Program": [ - "answer=(80.0/10.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Tina has 82 bananas. She gets 3 more from Joyce. How many bananas does Tina have in all?", - "Output Program": [ - "answer=(82.0+3.0)\nprint(answer)" - ], - "Output Answer": [ - "85" - ], - "split": "test" - }, - { - "Input": " Megan had 49 markers. Robert gave her 39 more markers. How many markers does Megan have altogether?", - "Output Program": [ - "answer=(49.0+39.0)\nprint(answer)" - ], - "Output Answer": [ - "88" - ], - "split": "test" - }, - { - "Input": " I have 648 pencils. If I put 4 pencils in each pencil box, how many pencil boxes will I fill?", - "Output Program": [ - "answer=(648.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "162" - ], - "split": "test" - }, - { - "Input": "There are 9 students in the class and 81 tickets. If the tickets are divided equally among the students, how many does each student get?", - "Output Program": [ - "answer=(81.0/9.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "If Charles strolled 6 miles at 3 miles per hour, how long was Charles travelling?", - "Output Program": [ - "answer=(6.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Emily sprinted to Timothy's house. It is 10 miles from Emily's house to Timothy's house. It took Emily 2 hours to get there. How fast did Emily go?", - "Output Program": [ - "answer=(10.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "Ernest has 45 bananas that must be put away in boxes. Julie comes to help and brings 3 cookies to share with Ernest. If there are 5 boxes, how many bananas must go in each box?", - "Output Program": [ - "answer=(45.0/5.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": " It takes 4 apples to make 1 pie. How many apples does it take to make 504 pies?", - "Output Program": [ - "answer=(4.0*504.0)\nprint(answer)" - ], - "Output Answer": [ - "2016" - ], - "split": "test" - }, - { - "Input": "If there are 76 erasers in a box and Patrick puts 9 more erasers inside, how many erasers are in the box?", - "Output Program": [ - "answer=(76.0+9.0)\nprint(answer)" - ], - "Output Answer": [ - "85" - ], - "split": "test" - }, - { - "Input": "It took Amanda 2 hours to stroll to Kimberly's house at 4 miles per hour. How far is it between Amanda's house and Kimberly's house?", - "Output Program": [ - "answer=(2.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": "Each child has 3 oranges. If there are 4 children, how many oranges are there in total?", - "Output Program": [ - "answer=(3.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "It took Katherine 3 hours to run to Louis's house at 8 miles per hour. How far is it between Katherine's house and Louis's house?", - "Output Program": [ - "answer=(3.0*8.0)\nprint(answer)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": "Larry starts with 91 cards. 17 are eaten by a hippopotamus. How many cards does Larry end with?", - "Output Program": [ - "answer=(91.0-17.0)\nprint(answer)" - ], - "Output Answer": [ - "74" - ], - "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": [ - "answer=(121.0-22.0)\nprint(answer)" - ], - "Output Answer": [ - "99" - ], - "split": "test" - }, - { - "Input": " The clown blew up 47 balloons. Then he blew up 13 more balloons. How many balloons does the clown have now?", - "Output Program": [ - "answer=(47.0+13.0)\nprint(answer)" - ], - "Output Answer": [ - "60" - ], - "split": "test" - }, - { - "Input": "Ernest starts with 17 crayons. Jennifer takes 6 away. How many crayons does Ernest end with?", - "Output Program": [ - "answer=(17.0-6.0)\nprint(answer)" - ], - "Output Answer": [ - "11" - ], - "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": [ - "answer=(25.0-11.0)\nprint(answer)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": "Roger has 95 candies. He gives 3 to Stephanie. How many candies will Roger have?", - "Output Program": [ - "answer=(95.0-3.0)\nprint(answer)" - ], - "Output Answer": [ - "92" - ], - "split": "test" - }, - { - "Input": " Omar and Karen made egg rolls to share at the school potluck. Omar rolled 219 egg rolls. Karen rolled 229 egg rolls. What is the total number of egg rolls Omar and Karen rolled?", - "Output Program": [ - "answer=(219.0+229.0)\nprint(answer)" - ], - "Output Answer": [ - "448" - ], - "split": "test" - }, - { - "Input": " Each bag contains 23 pounds of oranges. How many pounds of oranges are in 45 bags?", - "Output Program": [ - "answer=(23.0*45.0)\nprint(answer)" - ], - "Output Answer": [ - "1035" - ], - "split": "test" - }, - { - "Input": "Shirley sold 20 boxes of Do-Si-Dos. How many cases of 4 boxes, plus extra boxes does Shirley need to deliver?", - "Output Program": [ - "answer=(20.0/4.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "If Madison sold 24 boxes of Tagalongs, how many cases of 12 boxes does Madison pickup from the cookie mom?", - "Output Program": [ - "answer=(24.0/12.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Willie has 48 bananas. Charles has 14 bananas. He loses 35. How many bananas will Willie have?", - "Output Program": [ - "answer=(48.0-35.0)\nprint(answer)" - ], - "Output Answer": [ - "13" - ], - "split": "test" - }, - { - "Input": "Craig starts with 5 Skittles. 2 are eaten by a hippopotamus. How many Skittles does Craig end with?", - "Output Program": [ - "answer=(5.0-2.0)\nprint(answer)" - ], - "Output Answer": [ - "3" - ], - "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": [ - "answer=(100.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "400" - ], - "split": "test" - }, - { - "Input": "If Benjamin strolled 14 miles at 2 miles per hour, how long was Benjamin travelling?", - "Output Program": [ - "answer=(14.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "7" - ], - "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": [ - "answer=(29.0-17.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Anna collects 6 blocks. Anna's father gives Anna 8 more. How many blocks does Anna have?", - "Output Program": [ - "answer=(6.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": " Josh had 142 pencils. He gave 31 pencils to Dorothy. How many pencils does Josh have left?", - "Output Program": [ - "answer=(142.0-31.0)\nprint(answer)" - ], - "Output Answer": [ - "111" - ], - "split": "test" - }, - { - "Input": "Sarah sold 24 boxes of Lemon Chalet Cremes. How many cases of 12 boxes, plus extra boxes does Sarah need?", - "Output Program": [ - "answer=(24.0/12.0)\nprint(answer)" - ], - "Output Answer": [ - "2" - ], - "split": "test" - }, - { - "Input": "Paula has 6 boxes of peanuts. Each box holds 4 peanuts. How many peanuts does Paula have?", - "Output Program": [ - "answer=(6.0*4.0)\nprint(answer)" - ], - "Output Answer": [ - "24" - ], - "split": "test" - }, - { - "Input": " A garden has 52 rows and 15 columns of bean plans. How many plants are there in all?", - "Output Program": [ - "answer=(52.0*15.0)\nprint(answer)" - ], - "Output Answer": [ - "780" - ], - "split": "test" - }, - { - "Input": " 3 owls were sitting on the fence. 2 more owls joined them. How many owls are on the fence now?", - "Output Program": [ - "answer=(3.0+2.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "split": "test" - }, - { - "Input": "There are 3 eggs in each box. How many eggs are in 2 boxes?", - "Output Program": [ - "answer=(3.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": " Mrs. Hilt impressed 2436 fans at the basketball game on Friday. If the fans were seated in equal groups on 3 sets of bleachers, how many fans were on each set?", - "Output Program": [ - "answer=(2436.0/3.0)\nprint(answer)" - ], - "Output Answer": [ - "812" - ], - "split": "test" - }, - { - "Input": "Helen starts with 82 cards. Gary takes 9 away. How many cards does Helen end with?", - "Output Program": [ - "answer=(82.0-9.0)\nprint(answer)" - ], - "Output Answer": [ - "73" - ], - "split": "test" - }, - { - "Input": "Charles has 4 apples. Jessica gives Charles 39 more. How many apples does Charles have in all?", - "Output Program": [ - "answer=(4.0+39.0)\nprint(answer)" - ], - "Output Answer": [ - "43" - ], - "split": "test" - }, - { - "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": [ - "answer=(58.0-16.0)\nprint(answer)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": " Ethan has 31 presents. Alissa has 22 more than Ethan. How many presents does Alissa have?", - "Output Program": [ - "answer=(31.0+22.0)\nprint(answer)" - ], - "Output Answer": [ - "53" - ], - "split": "test" - }, - { - "Input": " Carla has some marbles. She bought 489 marbles. Now she has 2778 marbles all together. How many did she start with?", - "Output Program": [ - "answer=(2778.0-489.0)\nprint(answer)" - ], - "Output Answer": [ - "2289" - ], - "split": "test" - }, - { - "Input": "Jessica weighs 49 pounds. Thomas weighs 44 pounds. How much heavier is Jessica than Thomas?", - "Output Program": [ - "answer=(49.0-44.0)\nprint(answer)" - ], - "Output Answer": [ - "5" - ], - "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": [ - "answer=(24.0+14.0)\nprint(answer)" - ], - "Output Answer": [ - "38" - ], - "split": "test" - }, - { - "Input": " There are 124 students making 3 stars each for the school wall. How many stars will they make all together?", - "Output Program": [ - "answer=(124.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "372" - ], - "split": "test" - }, - { - "Input": "If there are 7 bottle caps in a box and Linda puts 7 more bottle caps inside, how many bottle caps are in the box?", - "Output Program": [ - "answer=(7.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "14" - ], - "split": "test" - }, - { - "Input": " 256 students are going to the zoo. They have to be divided into groups so that each teacher has one group. There are 8 teachers. How many students will be in each group?", - "Output Program": [ - "answer=(256.0/8.0)\nprint(answer)" - ], - "Output Answer": [ - "32" - ], - "split": "test" - }, - { - "Input": "If Rose strolled for 4 hours at 2 miles per hour. How far did Rose go?", - "Output Program": [ - "answer=(4.0*2.0)\nprint(answer)" - ], - "Output Answer": [ - "8" - ], - "split": "test" - }, - { - "Input": " I walk 1 mile every 15 minutes. I walked 3 miles. How many minutes did it take me ?", - "Output Program": [ - "answer=(15.0*3.0)\nprint(answer)" - ], - "Output Answer": [ - "45" - ], - "split": "test" - }, - { - "Input": "Janet has 57 apples. She finds another 95. How many apples does Janet have in all?", - "Output Program": [ - "answer=(57.0+95.0)\nprint(answer)" - ], - "Output Answer": [ - "152" - ], - "split": "test" - }, - { - "Input": " Tyler had 15 dogs. Each dog had 5 puppies. How many puppies does Tyler now have?", - "Output Program": [ - "answer=(15.0*5.0)\nprint(answer)" - ], - "Output Answer": [ - "75" - ], - "split": "test" - }, - { - "Input": "Kenneth has 3 marbles. He buys 6 more. Later, Kenneth buys 15 apples at the store. How many marbles does Kenneth have in all?", - "Output Program": [ - "answer=(3.0+6.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "Joseph has 67 candies. Kathy gives Joseph 38 more. How many candies does Joseph have in all?", - "Output Program": [ - "answer=(67.0+38.0)\nprint(answer)" - ], - "Output Answer": [ - "105" - ], - "split": "test" - }, - { - "Input": "There are 2 students in the class and 18 pencils. If the pencils are divided equally among the students, how many does each student get?", - "Output Program": [ - "answer=(18.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": " Lucy has an aquarium with 212 fish. She wants to buy 68 more fish. How many fish would Lucy have then?", - "Output Program": [ - "answer=(212.0+68.0)\nprint(answer)" - ], - "Output Answer": [ - "280" - ], - "split": "test" - }, - { - "Input": " There are 544 pots. Each pot has 32 flowers in it. How many flowers are there in all?", - "Output Program": [ - "answer=(544.0*32.0)\nprint(answer)" - ], - "Output Answer": [ - "17408" - ], - "split": "test" - }, - { - "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": [ - "answer=(6.0*50.0)\nprint(answer)" - ], - "Output Answer": [ - "300" - ], - "split": "test" - }, - { - "Input": "Edward starts with 92 eggs. He gives 40 to Phillip. How many eggs does Edward end with?", - "Output Program": [ - "answer=(92.0-40.0)\nprint(answer)" - ], - "Output Answer": [ - "52" - ], - "split": "test" - }, - { - "Input": "There are 2 bananas in a pile on the desk. Each banana comes in a package of 17. 7 bananas are added to the pile. How many bananas are there in the pile?", - "Output Program": [ - "answer=(2.0+7.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": "Diane has 37 crayons. She gets 5 more from Frances. Later, Diane buys 16 cards at the store. How many crayons does Diane have in all?", - "Output Program": [ - "answer=(37.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "42" - ], - "split": "test" - }, - { - "Input": "Donald has 4 oranges. He finds another 5. How many oranges does Donald have in all?", - "Output Program": [ - "answer=(4.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "9" - ], - "split": "test" - }, - { - "Input": " Rosa had 67 flowers. Andre gave her some more flowers. Now, Rosa has 90 flowers. How many flowers did Andre give to Rosa?", - "Output Program": [ - "answer=(90.0-67.0)\nprint(answer)" - ], - "Output Answer": [ - "23" - ], - "split": "test" - }, - { - "Input": " There are 84 leaves. There are 139 ladybugs on each leaf. How many ladybugs are there in all?", - "Output Program": [ - "answer=(84.0*139.0)\nprint(answer)" - ], - "Output Answer": [ - "11676" - ], - "split": "test" - }, - { - "Input": " Ellen went to a garage sale to buy chairs. Each chair cost 15 dollars. How much money did Ellen spend for the 12 chairs she bought?", - "Output Program": [ - "answer=(15.0*12.0)\nprint(answer)" - ], - "Output Answer": [ - "180" - ], - "split": "test" - }, - { - "Input": " Connie has 41 red markers and 64 blue markers. How many markers does she have altogether?", - "Output Program": [ - "answer=(41.0+64.0)\nprint(answer)" - ], - "Output Answer": [ - "105" - ], - "split": "test" - }, - { - "Input": "There are 55 oranges in a box. Deborah has 11 oranges in a bag. Susan takes 35 oranges out of the box. How many oranges are left in the box?", - "Output Program": [ - "answer=(55.0-35.0)\nprint(answer)" - ], - "Output Answer": [ - "20" - ], - "split": "test" - }, - { - "Input": " Mary\u2019s mom is getting ready for Mary\u2019s 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": [ - "answer=(6.0+5.0)\nprint(answer)" - ], - "Output Answer": [ - "11" - ], - "split": "test" - }, - { - "Input": "Each child has 2 candies. If there are 9 children, how many candies are there in total?", - "Output Program": [ - "answer=(2.0*9.0)\nprint(answer)" - ], - "Output Answer": [ - "18" - ], - "split": "test" - }, - { - "Input": "Each bottle cap costs $2.00. How much do 6 bottle caps cost?", - "Output Program": [ - "answer=(2.0*6.0)\nprint(answer)" - ], - "Output Answer": [ - "12" - ], - "split": "test" - }, - { - "Input": "Jeffrey wants to split a collection of bottle caps into groups of 2. Jeffrey has 12 bottle caps. How many groups will be created?", - "Output Program": [ - "answer=(12.0/2.0)\nprint(answer)" - ], - "Output Answer": [ - "6" - ], - "split": "test" - }, - { - "Input": "Melissa has 88 bananas. She shares 4 with Joshua. How many bananas will Melissa have?", - "Output Program": [ - "answer=(88.0-4.0)\nprint(answer)" - ], - "Output Answer": [ - "84" - ], - "split": "test" - }, - { - "Input": "Brenda starts with 7 Skittles. She buys 8 more. How many Skittles does Brenda end with?", - "Output Program": [ - "answer=(7.0+8.0)\nprint(answer)" - ], - "Output Answer": [ - "15" - ], - "split": "test" - }, - { - "Input": " Darius drove 679 miles to visit his grandmother. Julia drove 998 miles to visit her grandmother. What is the total number of miles Darius and Julia drove?", - "Output Program": [ - "answer=(679.0+998.0)\nprint(answer)" - ], - "Output Answer": [ - "1677" - ], - "split": "test" - }, - { - "Input": " Paul had 28 strawberries in his basket. He picked 35 more strawberries. How many strawberries did he have then?", - "Output Program": [ - "answer=(28.0+35.0)\nprint(answer)" - ], - "Output Answer": [ - "63" - ], - "split": "test" - } - ], - "Metadata": [ - { - "Answer": 1677, - "Explanation": [ - 14, - 62 - ] - }, - { - "Answer": 4, - "Explanation": [ - 43, - 29 - ] - }, - { - "Answer": 5, - "Explanation": [ - 16, - 34 - ] - }, - { - "Answer": 12, - "Explanation": [ - 11, - 45 - ] - }, - { - "Answer": 8, - "Explanation": [ - 71, - 59 - ] - }, - { - "Answer": 2, - "Explanation": [ - 14, - 30 - ] - }, - { - "Answer": 40, - "Explanation": [ - 18, - 49 - ] - }, - { - "Answer": 41, - "Explanation": [ - 59, - 15 - ] - }, - { - "Answer": 14, - "Explanation": [ - 13, - 51 - ] - }, - { - "Answer": 9, - "Explanation": [ - 17, - 40 - ] - }, - { - "Answer": 8, - "Explanation": [ - 12, - 34 - ] - }, - { - "Answer": 15, - "Explanation": [ - 19, - 40 - ] - }, - { - "Answer": 7, - "Explanation": [ - 10, - 19 - ] - }, - { - "Answer": 11, - "Explanation": [ - 10, - 21 - ] - }, - { - "Answer": 16, - "Explanation": [ - 10, - 21 - ] - }, - { - "Answer": 7, - "Explanation": [ - 15, - 53 - ] - }, - { - "Answer": 13, - "Explanation": [ - 10, - 19 - ] - }, - { - "Answer": 14, - "Explanation": [ - 13, - 51 - ] - }, - { - "Answer": 8, - "Explanation": [ - 15, - 52 - ] - }, - { - "Answer": 11, - "Explanation": [ - 18, - 49 - ] - }, - { - "Answer": 13, - "Explanation": [ - 13, - 48 - ] - }, - { - "Answer": 4, - "Explanation": [ - 13, - 34 - ] - }, - { - "Answer": 14, - "Explanation": [ - 14, - 49 - ] - }, - { - "Answer": 9, - "Explanation": [ - 11, - 39 - ] - }, - { - "Answer": 11, - "Explanation": [ - 13, - 45 - ] - }, - { - "Answer": 15, - "Explanation": [ - 15, - 52 - ] - }, - { - "Answer": 8, - "Explanation": [ - 12, - 34 - ] - }, - { - "Answer": 12, - "Explanation": [ - 15, - 51 - ] - }, - { - "Answer": 79, - "Explanation": [ - 19, - 37 - ] - }, - { - "Answer": 95, - "Explanation": [ - 10, - 21 - ] - }, - { - "Answer": 97, - "Explanation": [ - 19, - 52 - ] - }, - { - "Answer": 85, - "Explanation": [ - 13, - 50 - ] - }, - { - "Answer": 62, - "Explanation": [ - 16, - 44 - ] - }, - { - "Answer": 54, - "Explanation": [ - 19, - 40 - ] - }, - { - "Answer": 101, - "Explanation": [ - 11, - 31 - ] - }, - { - "Answer": 79, - "Explanation": [ - 17, - 60 - ] - }, - { - "Answer": 91, - "Explanation": [ - 17, - 37 - ] - }, - { - "Answer": 28, - "Explanation": [ - 11, - 32 - ] - }, - { - "Answer": 54, - "Explanation": [ - 18, - 44 - ] - }, - { - "Answer": 47, - "Explanation": [ - 11, - 35 - ] - }, - { - "Answer": 93, - "Explanation": [ - 21, - 44 - ] - }, - { - "Answer": 31, - "Explanation": [ - 17, - 44 - ] - }, - { - "Answer": 106, - "Explanation": [ - 20, - 38 - ] - }, - { - "Answer": 18, - "Explanation": [ - 20, - 40 - ] - }, - { - "Answer": 84, - "Explanation": [ - 18, - 37 - ] - }, - { - "Answer": 27, - "Explanation": [ - 12, - 32 - ] - }, - { - "Answer": 57, - "Explanation": [ - 11, - 31 - ] - }, - { - "Answer": 65, - "Explanation": [ - 12, - 45 - ] - }, - { - "Answer": 70, - "Explanation": [ - 19, - 35 - ] - }, - { - "Answer": 15, - "Explanation": [ - 11, - 42 - ] - }, - { - "Answer": 43, - "Explanation": [ - 12, - 44 - ] - }, - { - "Answer": 99, - "Explanation": [ - 17, - 46 - ] - }, - { - "Answer": 81, - "Explanation": [ - 19, - 53 - ] - }, - { - "Answer": 71, - "Explanation": [ - 11, - 31 - ] - }, - { - "Answer": 105, - "Explanation": [ - 11, - 42 - ] - }, - { - "Answer": 152, - "Explanation": [ - 10, - 39 - ] - }, - { - "Answer": 179, - "Explanation": [ - 18, - 52 - ] - }, - { - "Answer": 69, - "Explanation": [ - 11, - 31 - ] - }, - { - "Answer": 83, - "Explanation": [ - 59, - 15 - ] - }, - { - "Answer": 23, - "Explanation": [ - 18, - 39 - ] - }, - { - "Answer": 40, - "Explanation": [ - 64, - 15 - ] - }, - { - "Answer": 15, - "Explanation": [ - 12, - 38 - ] - }, - { - "Answer": 5, - "Explanation": [ - 15, - 40 - ] - }, - { - "Answer": 35, - "Explanation": [ - 58, - 14 - ] - }, - { - "Answer": 93, - "Explanation": [ - 21, - 40 - ] - }, - { - "Answer": 18, - "Explanation": [ - 13, - 38 - ] - }, - { - "Answer": 42, - "Explanation": [ - 10, - 40 - ] - }, - { - "Answer": 52, - "Explanation": [ - 19, - 37 - ] - }, - { - "Answer": 20, - "Explanation": [ - 55, - 14 - ] - }, - { - "Answer": 75, - "Explanation": [ - 10, - 42 - ] - }, - { - "Answer": 80, - "Explanation": [ - 17, - 29 - ] - }, - { - "Answer": 92, - "Explanation": [ - 10, - 31 - ] - }, - { - "Answer": 51, - "Explanation": [ - 10, - 46 - ] - }, - { - "Answer": 53, - "Explanation": [ - 18, - 40 - ] - }, - { - "Answer": 15, - "Explanation": [ - 10, - 43 - ] - }, - { - "Answer": 84, - "Explanation": [ - 12, - 35 - ] - }, - { - "Answer": 58, - "Explanation": [ - 10, - 33 - ] - }, - { - "Answer": 77, - "Explanation": [ - 12, - 34 - ] - }, - { - "Answer": 87, - "Explanation": [ - 18, - 40 - ] - }, - { - "Answer": 36, - "Explanation": [ - 19, - 31 - ] - }, - { - "Answer": 71, - "Explanation": [ - 21, - 46 - ] - }, - { - "Answer": 10, - "Explanation": [ - 10, - 48 - ] - }, - { - "Answer": 11, - "Explanation": [ - 19, - 46 - ] - }, - { - "Answer": 50, - "Explanation": [ - 15, - 39 - ] - }, - { - "Answer": 61, - "Explanation": [ - 18, - 34 - ] - }, - { - "Answer": 8, - "Explanation": [ - 9, - 32 - ] - }, - { - "Answer": 3, - "Explanation": [ - 18, - 30 - ] - }, - { - "Answer": 42, - "Explanation": [ - 10, - 32 - ] - }, - { - "Answer": 37, - "Explanation": [ - 15, - 40 - ] - }, - { - "Answer": 17, - "Explanation": [ - 10, - 32 - ] - }, - { - "Answer": 10, - "Explanation": [ - 10, - 22 - ] - }, - { - "Answer": 4, - "Explanation": [ - 19, - 46 - ] - }, - { - "Answer": 26, - "Explanation": [ - 14, - 30 - ] - }, - { - "Answer": 51, - "Explanation": [ - 12, - 35 - ] - }, - { - "Answer": 2, - "Explanation": [ - 18, - 40 - ] - }, - { - "Answer": 29, - "Explanation": [ - 19, - 41 - ] - }, - { - "Answer": 47, - "Explanation": [ - 18, - 39 - ] - }, - { - "Answer": 18, - "Explanation": [ - 12, - 37 - ] - }, - { - "Answer": 18, - "Explanation": [ - 10, - 30 - ] - }, - { - "Answer": 43, - "Explanation": [ - 11, - 34 - ] - }, - { - "Answer": 4, - "Explanation": [ - 19, - 43 - ] - }, - { - "Answer": 73, - "Explanation": [ - 18, - 39 - ] - }, - { - "Answer": 84, - "Explanation": [ - 17, - 39 - ] - }, - { - "Answer": 37, - "Explanation": [ - 11, - 31 - ] - }, - { - "Answer": 34, - "Explanation": [ - 18, - 39 - ] - }, - { - "Answer": 90, - "Explanation": [ - 10, - 21 - ] - }, - { - "Answer": 45, - "Explanation": [ - 20, - 42 - ] - }, - { - "Answer": 15, - "Explanation": [ - 18, - 39 - ] - }, - { - "Answer": 29, - "Explanation": [ - 17, - 39 - ] - }, - { - "Answer": 92, - "Explanation": [ - 13, - 34 - ] - }, - { - "Answer": 26, - "Explanation": [ - 9, - 20 - ] - }, - { - "Answer": 85, - "Explanation": [ - 9, - 30 - ] - }, - { - "Answer": 56, - "Explanation": [ - 10, - 31 - ] - }, - { - "Answer": 81, - "Explanation": [ - 21, - 49 - ] - }, - { - "Answer": 25, - "Explanation": [ - 12, - 38 - ] - }, - { - "Answer": 38, - "Explanation": [ - 18, - 38 - ] - }, - { - "Answer": 43, - "Explanation": [ - 12, - 35 - ] - }, - { - "Answer": 67, - "Explanation": [ - 12, - 32 - ] - }, - { - "Answer": 3, - "Explanation": [ - 9, - 31 - ] - }, - { - "Answer": 11, - "Explanation": [ - 13, - 23 - ] - }, - { - "Answer": 83, - "Explanation": [ - 10, - 40 - ] - }, - { - "Answer": 7, - "Explanation": [ - 12, - 34 - ] - }, - { - "Answer": 74, - "Explanation": [ - 18, - 28 - ] - }, - { - "Answer": 29, - "Explanation": [ - 10, - 35 - ] - }, - { - "Answer": 6, - "Explanation": [ - 10, - 51 - ] - }, - { - "Answer": 12, - "Explanation": [ - 23, - 41 - ] - }, - { - "Answer": 12, - "Explanation": [ - 15, - 39 - ] - }, - { - "Answer": 20, - "Explanation": [ - 19, - 37 - ] - }, - { - "Answer": 36, - "Explanation": [ - 19, - 37 - ] - }, - { - "Answer": 25, - "Explanation": [ - 23, - 41 - ] - }, - { - "Answer": 35, - "Explanation": [ - 13, - 48 - ] - }, - { - "Answer": 48, - "Explanation": [ - 10, - 57 - ] - }, - { - "Answer": 18, - "Explanation": [ - 15, - 39 - ] - }, - { - "Answer": 45, - "Explanation": [ - 15, - 43 - ] - }, - { - "Answer": 12, - "Explanation": [ - 15, - 39 - ] - }, - { - "Answer": 45, - "Explanation": [ - 15, - 43 - ] - }, - { - "Answer": 36, - "Explanation": [ - 19, - 37 - ] - }, - { - "Answer": 16, - "Explanation": [ - 28, - 57 - ] - }, - { - "Answer": 49, - "Explanation": [ - 10, - 44 - ] - }, - { - "Answer": 56, - "Explanation": [ - 11, - 46 - ] - }, - { - "Answer": 54, - "Explanation": [ - 10, - 65 - ] - }, - { - "Answer": 24, - "Explanation": [ - 10, - 45 - ] - }, - { - "Answer": 27, - "Explanation": [ - 9, - 44 - ] - }, - { - "Answer": 18, - "Explanation": [ - 10, - 57 - ] - }, - { - "Answer": 21, - "Explanation": [ - 27, - 56 - ] - }, - { - "Answer": 20, - "Explanation": [ - 25, - 53 - ] - }, - { - "Answer": 25, - "Explanation": [ - 27, - 56 - ] - }, - { - "Answer": 12, - "Explanation": [ - 10, - 57 - ] - }, - { - "Answer": 21, - "Explanation": [ - 27, - 56 - ] - }, - { - "Answer": 7, - "Explanation": [ - 47, - 63 - ] - }, - { - "Answer": 8, - "Explanation": [ - 10, - 51 - ] - }, - { - "Answer": 3, - "Explanation": [ - 47, - 62 - ] - }, - { - "Answer": 9, - "Explanation": [ - 38, - 10 - ] - }, - { - "Answer": 9, - "Explanation": [ - 38, - 10 - ] - }, - { - "Answer": 5, - "Explanation": [ - 10, - 99 - ] - }, - { - "Answer": 6, - "Explanation": [ - 81, - 66 - ] - }, - { - "Answer": 9, - "Explanation": [ - 38, - 10 - ] - }, - { - "Answer": 1, - "Explanation": [ - 10, - 50 - ] - }, - { - "Answer": 6, - "Explanation": [ - 38, - 10 - ] - }, - { - "Answer": 3, - "Explanation": [ - 49, - 19 - ] - }, - { - "Answer": 7, - "Explanation": [ - 10, - 46 - ] - }, - { - "Answer": 8, - "Explanation": [ - 38, - 10 - ] - }, - { - "Answer": 1, - "Explanation": [ - 22, - 52 - ] - }, - { - "Answer": 8, - "Explanation": [ - 10, - 78 - ] - }, - { - "Answer": 7, - "Explanation": [ - 73, - 60 - ] - }, - { - "Answer": 1, - "Explanation": [ - 17, - 46 - ] - }, - { - "Answer": 4, - "Explanation": [ - 47, - 18 - ] - }, - { - "Answer": 3, - "Explanation": [ - 10, - 84 - ] - }, - { - "Answer": 8, - "Explanation": [ - 51, - 20 - ] - }, - { - "Answer": 4, - "Explanation": [ - 47, - 63 - ] - }, - { - "Answer": 6, - "Explanation": [ - 10, - 85 - ] - }, - { - "Answer": 6, - "Explanation": [ - 10, - 85 - ] - }, - { - "Answer": 6, - "Explanation": [ - 11, - 52 - ] - }, - { - "Answer": 5, - "Explanation": [ - 47, - 63 - ] - }, - { - "Answer": 2, - "Explanation": [ - 12, - 52 - ] - }, - { - "Answer": 5, - "Explanation": [ - 11, - 52 - ] - }, - { - "Answer": 6, - "Explanation": [ - 9, - 46 - ] - }, - { - "Answer": 3, - "Explanation": [ - 76, - 61 - ] - }, - { - "Answer": 3, - "Explanation": [ - 47, - 64 - ] - }, - { - "Answer": 5, - "Explanation": [ - 11, - 48 - ] - }, - { - "Answer": 5, - "Explanation": [ - 73, - 59 - ] - }, - { - "Answer": 94, - "Explanation": [ - 9, - 47 - ] - }, - { - "Answer": 80, - "Explanation": [ - 10, - 49 - ] - }, - { - "Answer": 1, - "Explanation": [ - 12, - 50 - ] - }, - { - "Answer": 1, - "Explanation": [ - 12, - 50 - ] - }, - { - "Answer": 1, - "Explanation": [ - 12, - 50 - ] - }, - { - "Answer": 1, - "Explanation": [ - 12, - 50 - ] - }, - { - "Answer": 2, - "Explanation": [ - 11, - 62 - ] - }, - { - "Answer": 3, - "Explanation": [ - 14, - 55 - ] - }, - { - "Answer": 3, - "Explanation": [ - 14, - 55 - ] - }, - { - "Answer": 3, - "Explanation": [ - 14, - 55 - ] - }, - { - "Answer": 2, - "Explanation": [ - 16, - 57 - ] - }, - { - "Answer": 3, - "Explanation": [ - 14, - 55 - ] - }, - { - "Answer": 5, - "Explanation": [ - 16, - 36 - ] - }, - { - "Answer": 3, - "Explanation": [ - 11, - 51 - ] - }, - { - "Answer": 5, - "Explanation": [ - 13, - 54 - ] - }, - { - "Answer": 9, - "Explanation": [ - 45, - 32 - ] - }, - { - "Answer": 9, - "Explanation": [ - 45, - 32 - ] - }, - { - "Answer": 9, - "Explanation": [ - 45, - 32 - ] - }, - { - "Answer": 15, - "Explanation": [ - 20, - 47 - ] - }, - { - "Answer": 43, - "Explanation": [ - 12, - 35 - ] - }, - { - "Answer": 17, - "Explanation": [ - 18, - 39 - ] - }, - { - "Answer": 93, - "Explanation": [ - 17, - 60 - ] - }, - { - "Answer": 43, - "Explanation": [ - 12, - 35 - ] - }, - { - "Answer": 13, - "Explanation": [ - 10, - 79 - ] - }, - { - "Answer": 17, - "Explanation": [ - 9, - 36 - ] - }, - { - "Answer": 9, - "Explanation": [ - 10, - 81 - ] - }, - { - "Answer": 10, - "Explanation": [ - 10, - 80 - ] - }, - { - "Answer": 12, - "Explanation": [ - 13, - 34 - ] - }, - { - "Answer": 8, - "Explanation": [ - 13, - 32 - ] - }, - { - "Answer": 6, - "Explanation": [ - 10, - 78 - ] - }, - { - "Answer": 12, - "Explanation": [ - 13, - 34 - ] - }, - { - "Answer": 12, - "Explanation": [ - 10, - 29 - ] - }, - { - "Answer": 14, - "Explanation": [ - 10, - 36 - ] - }, - { - "Answer": 9, - "Explanation": [ - 10, - 81 - ] - }, - { - "Answer": 9, - "Explanation": [ - 12, - 31 - ] - }, - { - "Answer": 67, - "Explanation": [ - 35, - 64 - ] - }, - { - "Answer": 81, - "Explanation": [ - 37, - 69 - ] - }, - { - "Answer": 42, - "Explanation": [ - 10, - 31 - ] - }, - { - "Answer": 53, - "Explanation": [ - 33, - 61 - ] - }, - { - "Answer": 84, - "Explanation": [ - 38, - 69 - ] - }, - { - "Answer": 15, - "Explanation": [ - 40, - 75 - ] - }, - { - "Answer": 104, - "Explanation": [ - 11, - 32 - ] - }, - { - "Answer": 58, - "Explanation": [ - 10, - 29 - ] - }, - { - "Answer": 70, - "Explanation": [ - 15, - 52 - ] - }, - { - "Answer": 5, - "Explanation": [ - 20, - 57 - ] - }, - { - "Answer": 13, - "Explanation": [ - 11, - 56 - ] - }, - { - "Answer": 20, - "Explanation": [ - 10, - 76 - ] - }, - { - "Answer": 2, - "Explanation": [ - 10, - 72 - ] - }, - { - "Answer": 5, - "Explanation": [ - 10, - 50 - ] - }, - { - "Answer": 15, - "Explanation": [ - 10, - 73 - ] - }, - { - "Answer": 0, - "Explanation": [ - 10, - 74 - ] - }, - { - "Answer": 82, - "Explanation": [ - 10, - 73 - ] - }, - { - "Answer": 87, - "Explanation": [ - 12, - 57 - ] - }, - { - "Answer": 19, - "Explanation": [ - 12, - 58 - ] - }, - { - "Answer": 13, - "Explanation": [ - 10, - 51 - ] - }, - { - "Answer": 78, - "Explanation": [ - 15, - 39 - ] - }, - { - "Answer": 21, - "Explanation": [ - 10, - 42 - ] - }, - { - "Answer": 45, - "Explanation": [ - 11, - 46 - ] - }, - { - "Answer": 15, - "Explanation": [ - 11, - 43 - ] - }, - { - "Answer": 40, - "Explanation": [ - 15, - 50 - ] - }, - { - "Answer": 5, - "Explanation": [ - 12, - 134 - ] - }, - { - "Answer": 3, - "Explanation": [ - 22, - 9 - ] - }, - { - "Answer": 8, - "Explanation": [ - 11, - 67 - ] - }, - { - "Answer": 8, - "Explanation": [ - 9, - 66 - ] - }, - { - "Answer": 4, - "Explanation": [ - 9, - 67 - ] - }, - { - "Answer": 7, - "Explanation": [ - 10, - 129 - ] - }, - { - "Answer": 4, - "Explanation": [ - 10, - 128 - ] - }, - { - "Answer": 5, - "Explanation": [ - 8, - 126 - ] - }, - { - "Answer": 9, - "Explanation": [ - 11, - 130 - ] - }, - { - "Answer": 4, - "Explanation": [ - 13, - 66 - ] - }, - { - "Answer": 86, - "Explanation": [ - 38, - 70 - ] - }, - { - "Answer": 6, - "Explanation": [ - 21, - 32 - ] - }, - { - "Answer": 6, - "Explanation": [ - 15, - 56 - ] - }, - { - "Answer": 15, - "Explanation": [ - 21, - 32 - ] - }, - { - "Answer": 2, - "Explanation": [ - 20, - 31 - ] - }, - { - "Answer": 10, - "Explanation": [ - 13, - 49 - ] - }, - { - "Answer": 5, - "Explanation": [ - 41, - 103 - ] - }, - { - "Answer": 15, - "Explanation": [ - 22, - 33 - ] - }, - { - "Answer": 2, - "Explanation": [ - 20, - 31 - ] - }, - { - "Answer": 6, - "Explanation": [ - 21, - 32 - ] - }, - { - "Answer": 8, - "Explanation": [ - 21, - 32 - ] - }, - { - "Answer": 8, - "Explanation": [ - 15, - 56 - ] - }, - { - "Answer": 2, - "Explanation": [ - 43, - 108 - ] - }, - { - "Answer": 10, - "Explanation": [ - 15, - 56 - ] - }, - { - "Answer": 2, - "Explanation": [ - 43, - 108 - ] - }, - { - "Answer": 5, - "Explanation": [ - 41, - 103 - ] - }, - { - "Answer": 2, - "Explanation": [ - 37, - 94 - ] - }, - { - "Answer": 24, - "Explanation": [ - 18, - 53 - ] - }, - { - "Answer": 7, - "Explanation": [ - 39, - 103 - ] - }, - { - "Answer": 2, - "Explanation": [ - 43, - 108 - ] - }, - { - "Answer": 5, - "Explanation": [ - 17, - 29 - ] - }, - { - "Answer": 4, - "Explanation": [ - 14, - 26 - ] - }, - { - "Answer": 7, - "Explanation": [ - 21, - 33 - ] - }, - { - "Answer": 4, - "Explanation": [ - 14, - 26 - ] - }, - { - "Answer": 5, - "Explanation": [ - 17, - 29 - ] - }, - { - "Answer": 5, - "Explanation": [ - 19, - 31 - ] - }, - { - "Answer": 5, - "Explanation": [ - 19, - 31 - ] - }, - { - "Answer": 5, - "Explanation": [ - 11, - 23 - ] - }, - { - "Answer": 8, - "Explanation": [ - 9, - 21 - ] - }, - { - "Answer": 5, - "Explanation": [ - 11, - 23 - ] - }, - { - "Answer": 8, - "Explanation": [ - 10, - 23 - ] - }, - { - "Answer": 8, - "Explanation": [ - 10, - 23 - ] - }, - { - "Answer": 1.25, - "Explanation": [ - 21, - 32 - ] - }, - { - "Answer": 5, - "Explanation": [ - 17, - 34 - ] - }, - { - "Answer": 5, - "Explanation": [ - 17, - 34 - ] - }, - { - "Answer": 5, - "Explanation": [ - 17, - 34 - ] - }, - { - "Answer": 8, - "Explanation": [ - 19, - 36 - ] - }, - { - "Answer": 5, - "Explanation": [ - 20, - 37 - ] - }, - { - "Answer": 8, - "Explanation": [ - 19, - 36 - ] - }, - { - "Answer": 10, - "Explanation": [ - 16, - 33 - ] - }, - { - "Answer": 10, - "Explanation": [ - 16, - 33 - ] - }, - { - "Answer": 1, - "Explanation": [ - 19, - 35 - ] - }, - { - "Answer": 2, - "Explanation": [ - 10, - 41 - ] - }, - { - "Answer": 6, - "Explanation": [ - 1, - 36 - ] - }, - { - "Answer": 4, - "Explanation": [ - 86, - 20 - ] - }, - { - "Answer": 12, - "Explanation": [ - 11, - 36 - ] - }, - { - "Answer": 3, - "Explanation": [ - 11, - 23 - ] - }, - { - "Answer": 2, - "Explanation": [ - 11, - 25 - ] - }, - { - "Answer": 5, - "Explanation": [ - 1, - 35 - ] - }, - { - "Answer": 1, - "Explanation": [ - 1, - 39 - ] - }, - { - "Answer": 3, - "Explanation": [ - 1, - 39 - ] - }, - { - "Answer": 2, - "Explanation": [ - 11, - 38 - ] - }, - { - "Answer": 38, - "Explanation": [ - 29, - 56 - ] - }, - { - "Answer": 12, - "Explanation": [ - 33, - 93 - ] - }, - { - "Answer": 15, - "Explanation": [ - 17, - 64 - ] - }, - { - "Answer": 6, - "Explanation": [ - 15, - 26 - ] - }, - { - "Answer": 4, - "Explanation": [ - 15, - 49 - ] - }, - { - "Answer": 16, - "Explanation": [ - 18, - 43 - ] - }, - { - "Answer": 15, - "Explanation": [ - 15, - 80 - ] - }, - { - "Answer": 11, - "Explanation": [ - 68, - 96 - ] - }, - { - "Answer": 7, - "Explanation": [ - 85, - 117 - ] - }, - { - "Answer": 18, - "Explanation": [ - 29, - 50 - ] - }, - { - "Answer": 15, - "Explanation": [ - 85, - 116 - ] - }, - { - "Answer": 7, - "Explanation": [ - 12, - 69 - ] - }, - { - "Answer": 28, - "Explanation": [ - 44, - 68 - ] - }, - { - "Answer": 22, - "Explanation": [ - 37, - 54 - ] - }, - { - "Answer": 38, - "Explanation": [ - 8, - 61 - ] - }, - { - "Answer": 929, - "Explanation": [ - 24, - 38 - ] - }, - { - "Answer": 62, - "Explanation": [ - 11, - 33 - ] - }, - { - "Answer": 113, - "Explanation": [ - 10, - 37 - ] - }, - { - "Answer": 616, - "Explanation": [ - 16, - 62 - ] - }, - { - "Answer": 803, - "Explanation": [ - 12, - 43 - ] - }, - { - "Answer": 700, - "Explanation": [ - 27, - 45 - ] - }, - { - "Answer": 20, - "Explanation": [ - 11, - 34 - ] - }, - { - "Answer": 35, - "Explanation": [ - 1, - 30 - ] - }, - { - "Answer": 33, - "Explanation": [ - 1, - 34 - ] - }, - { - "Answer": 40, - "Explanation": [ - 1, - 22 - ] - }, - { - "Answer": 43, - "Explanation": [ - 11, - 44 - ] - }, - { - "Answer": 32, - "Explanation": [ - 11, - 35 - ] - }, - { - "Answer": 60, - "Explanation": [ - 19, - 48 - ] - }, - { - "Answer": 77, - "Explanation": [ - 15, - 54 - ] - }, - { - "Answer": 9, - "Explanation": [ - 11, - 36 - ] - }, - { - "Answer": 20, - "Explanation": [ - 11, - 67 - ] - }, - { - "Answer": 37, - "Explanation": [ - 11, - 46 - ] - }, - { - "Answer": 17, - "Explanation": [ - 31, - 63 - ] - }, - { - "Answer": 24, - "Explanation": [ - 18, - 68 - ] - }, - { - "Answer": 22, - "Explanation": [ - 20, - 53 - ] - }, - { - "Answer": 31, - "Explanation": [ - 19, - 50 - ] - }, - { - "Answer": 69, - "Explanation": [ - 19, - 48 - ] - }, - { - "Answer": 6, - "Explanation": [ - 53, - 86 - ] - }, - { - "Answer": 79, - "Explanation": [ - 10, - 30 - ] - }, - { - "Answer": 31, - "Explanation": [ - 79, - 54 - ] - }, - { - "Answer": 11, - "Explanation": [ - 37, - 12 - ] - }, - { - "Answer": 66, - "Explanation": [ - 34, - 77 - ] - }, - { - "Answer": 14, - "Explanation": [ - 12, - 88 - ] - }, - { - "Answer": 9, - "Explanation": [ - 20, - 78 - ] - }, - { - "Answer": 6, - "Explanation": [ - 71, - 20 - ] - }, - { - "Answer": 23, - "Explanation": [ - 80, - 12 - ] - }, - { - "Answer": 17, - "Explanation": [ - 18, - 72 - ] - }, - { - "Answer": 32, - "Explanation": [ - 79, - 19 - ] - }, - { - "Answer": 13, - "Explanation": [ - 45, - 19 - ] - }, - { - "Answer": 22, - "Explanation": [ - 15, - 39 - ] - }, - { - "Answer": 42, - "Explanation": [ - 19, - 87 - ] - }, - { - "Answer": 50, - "Explanation": [ - 18, - 45 - ] - }, - { - "Answer": 34, - "Explanation": [ - 19, - 50 - ] - }, - { - "Answer": 35, - "Explanation": [ - 1, - 34 - ] - }, - { - "Answer": 13, - "Explanation": [ - 80, - 1 - ] - }, - { - "Answer": 79, - "Explanation": [ - 19, - 48 - ] - }, - { - "Answer": 7, - "Explanation": [ - 105, - 1 - ] - }, - { - "Answer": 13, - "Explanation": [ - 75, - 11 - ] - }, - { - "Answer": 63, - "Explanation": [ - 12, - 25 - ] - }, - { - "Answer": 97, - "Explanation": [ - 12, - 24 - ] - }, - { - "Answer": 95, - "Explanation": [ - 12, - 25 - ] - }, - { - "Answer": 120, - "Explanation": [ - 10, - 51 - ] - }, - { - "Answer": 26, - "Explanation": [ - 82, - 11 - ] - }, - { - "Answer": 64, - "Explanation": [ - 11, - 33 - ] - }, - { - "Answer": 26, - "Explanation": [ - 94, - 43 - ] - }, - { - "Answer": 36, - "Explanation": [ - 12, - 41 - ] - }, - { - "Answer": 55, - "Explanation": [ - 10, - 52 - ] - }, - { - "Answer": 244, - "Explanation": [ - 11, - 65 - ] - }, - { - "Answer": 152, - "Explanation": [ - 12, - 39 - ] - }, - { - "Answer": 17, - "Explanation": [ - 11, - 22 - ] - }, - { - "Answer": 53, - "Explanation": [ - 11, - 35 - ] - }, - { - "Answer": 61, - "Explanation": [ - 38, - 62 - ] - }, - { - "Answer": 49, - "Explanation": [ - 75, - 11 - ] - }, - { - "Answer": 38, - "Explanation": [ - 71, - 35 - ] - }, - { - "Answer": 111, - "Explanation": [ - 10, - 31 - ] - }, - { - "Answer": 28, - "Explanation": [ - 39, - 97 - ] - }, - { - "Answer": 51, - "Explanation": [ - 33, - 61 - ] - }, - { - "Answer": 77, - "Explanation": [ - 63, - 11 - ] - }, - { - "Answer": 88, - "Explanation": [ - 11, - 39 - ] - }, - { - "Answer": 32, - "Explanation": [ - 20, - 44 - ] - }, - { - "Answer": 53, - "Explanation": [ - 61, - 36 - ] - }, - { - "Answer": 15, - "Explanation": [ - 11, - 88 - ] - }, - { - "Answer": 143, - "Explanation": [ - 35, - 59 - ] - }, - { - "Answer": 105, - "Explanation": [ - 12, - 31 - ] - }, - { - "Answer": 39, - "Explanation": [ - 11, - 21 - ] - }, - { - "Answer": 131, - "Explanation": [ - 11, - 33 - ] - }, - { - "Answer": 13, - "Explanation": [ - 10, - 30 - ] - }, - { - "Answer": 64, - "Explanation": [ - 12, - 33 - ] - }, - { - "Answer": 62, - "Explanation": [ - 9, - 33 - ] - }, - { - "Answer": 22, - "Explanation": [ - 75, - 11 - ] - }, - { - "Answer": 23, - "Explanation": [ - 70, - 10 - ] - }, - { - "Answer": 30, - "Explanation": [ - 78, - 26 - ] - }, - { - "Answer": 9, - "Explanation": [ - 10, - 48 - ] - }, - { - "Answer": 6, - "Explanation": [ - 79, - 11 - ] - }, - { - "Answer": 9, - "Explanation": [ - 10, - 23 - ] - }, - { - "Answer": 48, - "Explanation": [ - 11, - 44 - ] - }, - { - "Answer": 48, - "Explanation": [ - 11, - 36 - ] - }, - { - "Answer": 198, - "Explanation": [ - 40, - 65 - ] - }, - { - "Answer": 61, - "Explanation": [ - 63, - 105 - ] - }, - { - "Answer": 46, - "Explanation": [ - 45, - 71 - ] - }, - { - "Answer": 300, - "Explanation": [ - 18, - 48 - ] - }, - { - "Answer": 10, - "Explanation": [ - 15, - 40 - ] - }, - { - "Answer": 24, - "Explanation": [ - 18, - 32 - ] - }, - { - "Answer": 21, - "Explanation": [ - 18, - 37 - ] - }, - { - "Answer": 21, - "Explanation": [ - 13, - 56 - ] - }, - { - "Answer": 165, - "Explanation": [ - 32, - 10 - ] - }, - { - "Answer": 5, - "Explanation": [ - 9, - 27 - ] - }, - { - "Answer": 25, - "Explanation": [ - 10, - 49 - ] - }, - { - "Answer": 20, - "Explanation": [ - 9, - 50 - ] - }, - { - "Answer": 2, - "Explanation": [ - 10, - 43 - ] - }, - { - "Answer": 15, - "Explanation": [ - 1, - 40 - ] - }, - { - "Answer": 50, - "Explanation": [ - 13, - 50 - ] - }, - { - "Answer": 59, - "Explanation": [ - 11, - 30 - ] - }, - { - "Answer": 30, - "Explanation": [ - 11, - 32 - ] - }, - { - "Answer": 345, - "Explanation": [ - 19, - 93 - ] - }, - { - "Answer": 217, - "Explanation": [ - 1, - 35 - ] - }, - { - "Answer": 2327, - "Explanation": [ - 19, - 50 - ] - }, - { - "Answer": 81, - "Explanation": [ - 81, - 1 - ] - }, - { - "Answer": 14, - "Explanation": [ - 105, - 1 - ] - }, - { - "Answer": 13, - "Explanation": [ - 70, - 11 - ] - }, - { - "Answer": 16, - "Explanation": [ - 75, - 11 - ] - }, - { - "Answer": 22, - "Explanation": [ - 80, - 11 - ] - }, - { - "Answer": 62, - "Explanation": [ - 12, - 24 - ] - }, - { - "Answer": 95, - "Explanation": [ - 12, - 25 - ] - }, - { - "Answer": 63, - "Explanation": [ - 10, - 51 - ] - }, - { - "Answer": 18, - "Explanation": [ - 10, - 31 - ] - }, - { - "Answer": 4764, - "Explanation": [ - 11, - 47 - ] - }, - { - "Answer": 703, - "Explanation": [ - 44, - 68 - ] - }, - { - "Answer": 2448, - "Explanation": [ - 16, - 66 - ] - }, - { - "Answer": 432, - "Explanation": [ - 57, - 70 - ] - }, - { - "Answer": 84, - "Explanation": [ - 39, - 68 - ] - }, - { - "Answer": 780, - "Explanation": [ - 14, - 26 - ] - }, - { - "Answer": 45552, - "Explanation": [ - 14, - 39 - ] - }, - { - "Answer": 5, - "Explanation": [ - 14, - 44 - ] - }, - { - "Answer": 6003, - "Explanation": [ - 11, - 44 - ] - }, - { - "Answer": 168, - "Explanation": [ - 12, - 38 - ] - }, - { - "Answer": 8484, - "Explanation": [ - 53, - 74 - ] - }, - { - "Answer": 2250, - "Explanation": [ - 12, - 50 - ] - }, - { - "Answer": 11676, - "Explanation": [ - 11, - 32 - ] - }, - { - "Answer": 629, - "Explanation": [ - 11, - 33 - ] - }, - { - "Answer": 17408, - "Explanation": [ - 11, - 34 - ] - }, - { - "Answer": 20, - "Explanation": [ - 45, - 70 - ] - }, - { - "Answer": 40, - "Explanation": [ - 10, - 44 - ] - }, - { - "Answer": 3, - "Explanation": [ - 9, - 50 - ] - }, - { - "Answer": 3000, - "Explanation": [ - 19, - 55 - ] - }, - { - "Answer": 6, - "Explanation": [ - 15, - 39 - ] - }, - { - "Answer": 13, - "Explanation": [ - 47, - 93 - ] - }, - { - "Answer": 96, - "Explanation": [ - 17, - 34 - ] - }, - { - "Answer": 30, - "Explanation": [ - 73, - 11 - ] - }, - { - "Answer": 15, - "Explanation": [ - 85, - 10 - ] - }, - { - "Answer": 60, - "Explanation": [ - 16, - 84 - ] - }, - { - "Answer": 100, - "Explanation": [ - 13, - 64 - ] - }, - { - "Answer": 28, - "Explanation": [ - 10, - 78 - ] - }, - { - "Answer": 5, - "Explanation": [ - 63, - 13 - ] - }, - { - "Answer": 1200, - "Explanation": [ - 16, - 74 - ] - }, - { - "Answer": 3.33333, - "Explanation": [ - 107, - 45 - ] - }, - { - "Answer": 400, - "Explanation": [ - 22, - 49 - ] - }, - { - "Answer": 135, - "Explanation": [ - 11, - 40 - ] - }, - { - "Answer": 21, - "Explanation": [ - 1, - 43 - ] - }, - { - "Answer": 20, - "Explanation": [ - 8, - 53 - ] - }, - { - "Answer": 12, - "Explanation": [ - 11, - 45 - ] - }, - { - "Answer": 29, - "Explanation": [ - 1, - 51 - ] - }, - { - "Answer": 4, - "Explanation": [ - 12, - 74 - ] - }, - { - "Answer": 63, - "Explanation": [ - 12, - 65 - ] - }, - { - "Answer": 48, - "Explanation": [ - 81, - 14 - ] - }, - { - "Answer": 220, - "Explanation": [ - 11, - 46 - ] - }, - { - "Answer": 12, - "Explanation": [ - 11, - 27 - ] - }, - { - "Answer": 133, - "Explanation": [ - 10, - 32 - ] - }, - { - "Answer": 426, - "Explanation": [ - 48, - 63 - ] - }, - { - "Answer": 162, - "Explanation": [ - 8, - 30 - ] - }, - { - "Answer": 13, - "Explanation": [ - 19, - 77 - ] - }, - { - "Answer": 326, - "Explanation": [ - 11, - 40 - ] - }, - { - "Answer": 45, - "Explanation": [ - 18, - 38 - ] - }, - { - "Answer": 2289, - "Explanation": [ - 61, - 36 - ] - }, - { - "Answer": 99, - "Explanation": [ - 11, - 89 - ] - }, - { - "Answer": 776, - "Explanation": [ - 35, - 60 - ] - }, - { - "Answer": 3343, - "Explanation": [ - 12, - 33 - ] - }, - { - "Answer": 208, - "Explanation": [ - 11, - 22 - ] - }, - { - "Answer": 128, - "Explanation": [ - 10, - 31 - ] - }, - { - "Answer": 486, - "Explanation": [ - 11, - 41 - ] - }, - { - "Answer": 0.72, - "Explanation": [ - 11, - 47 - ] - }, - { - "Answer": 4.62, - "Explanation": [ - 21, - 55 - ] - }, - { - "Answer": 12, - "Explanation": [ - 19, - 52 - ] - }, - { - "Answer": 1250, - "Explanation": [ - 26, - 69 - ] - }, - { - "Answer": 8243, - "Explanation": [ - 25, - 44 - ] - }, - { - "Answer": 1.2, - "Explanation": [ - 25, - 13 - ] - }, - { - "Answer": 3264, - "Explanation": [ - 12, - 46 - ] - }, - { - "Answer": 360, - "Explanation": [ - 43, - 66 - ] - }, - { - "Answer": 372, - "Explanation": [ - 11, - 31 - ] - }, - { - "Answer": 204, - "Explanation": [ - 1, - 67 - ] - }, - { - "Answer": 75, - "Explanation": [ - 11, - 33 - ] - }, - { - "Answer": 39, - "Explanation": [ - 16, - 36 - ] - }, - { - "Answer": 296, - "Explanation": [ - 14, - 61 - ] - }, - { - "Answer": 18, - "Explanation": [ - 16, - 111 - ] - }, - { - "Answer": 66018, - "Explanation": [ - 41, - 131 - ] - }, - { - "Answer": 30, - "Explanation": [ - 67, - 85 - ] - }, - { - "Answer": 1.25, - "Explanation": [ - 27, - 46 - ] - }, - { - "Answer": 68, - "Explanation": [ - 16, - 39 - ] - }, - { - "Answer": 432, - "Explanation": [ - 15, - 58 - ] - }, - { - "Answer": 120, - "Explanation": [ - 77, - 184 - ] - }, - { - "Answer": 280, - "Explanation": [ - 27, - 54 - ] - }, - { - "Answer": 68, - "Explanation": [ - 68, - 10 - ] - }, - { - "Answer": 243, - "Explanation": [ - 121, - 165 - ] - }, - { - "Answer": 121, - "Explanation": [ - 94, - 147 - ] - }, - { - "Answer": 273, - "Explanation": [ - 24, - 49 - ] - }, - { - "Answer": 218, - "Explanation": [ - 63, - 1 - ] - }, - { - "Answer": 1035, - "Explanation": [ - 19, - 75 - ] - }, - { - "Answer": 180, - "Explanation": [ - 60, - 112 - ] - }, - { - "Answer": 70, - "Explanation": [ - 44, - 83 - ] - }, - { - "Answer": 180, - "Explanation": [ - 28, - 71 - ] - }, - { - "Answer": 372, - "Explanation": [ - 30, - 72 - ] - }, - { - "Answer": 1980, - "Explanation": [ - 13, - 74 - ] - }, - { - "Answer": 2016, - "Explanation": [ - 10, - 71 - ] - }, - { - "Answer": 4, - "Explanation": [ - 10, - 57 - ] - }, - { - "Answer": 12, - "Explanation": [ - 29, - 154 - ] - }, - { - "Answer": 9, - "Explanation": [ - 20, - 55 - ] - }, - { - "Answer": 14, - "Explanation": [ - 23, - 51 - ] - }, - { - "Answer": 25, - "Explanation": [ - 19, - 65 - ] - }, - { - "Answer": 32, - "Explanation": [ - 14, - 35 - ] - }, - { - "Answer": 300, - "Explanation": [ - 57, - 113 - ] - }, - { - "Answer": 440, - "Explanation": [ - 13, - 67 - ] - }, - { - "Answer": 63, - "Explanation": [ - 20, - 68 - ] - }, - { - "Answer": 60, - "Explanation": [ - 18, - 65 - ] - }, - { - "Answer": 100, - "Explanation": [ - 16, - 66 - ] - }, - { - "Answer": 264, - "Explanation": [ - 19, - 52 - ] - }, - { - "Answer": 46, - "Explanation": [ - 42, - 86 - ] - }, - { - "Answer": 88, - "Explanation": [ - 51, - 68 - ] - }, - { - "Answer": 280, - "Explanation": [ - 17, - 70 - ] - }, - { - "Answer": 16, - "Explanation": [ - 10, - 82 - ] - }, - { - "Answer": 45, - "Explanation": [ - 21, - 42 - ] - }, - { - "Answer": 6175, - "Explanation": [ - 13, - 46 - ] - }, - { - "Answer": 32, - "Explanation": [ - 1, - 118 - ] - }, - { - "Answer": 265, - "Explanation": [ - 73, - 47 - ] - }, - { - "Answer": 91, - "Explanation": [ - 71, - 46 - ] - }, - { - "Answer": 2063, - "Explanation": [ - 11, - 36 - ] - }, - { - "Answer": 1380, - "Explanation": [ - 14, - 39 - ] - }, - { - "Answer": 1780, - "Explanation": [ - 11, - 76 - ] - }, - { - "Answer": 73, - "Explanation": [ - 1, - 48 - ] - }, - { - "Answer": 28, - "Explanation": [ - 8, - 66 - ] - }, - { - "Answer": 493, - "Explanation": [ - 62, - 40 - ] - }, - { - "Answer": 3395, - "Explanation": [ - 12, - 41 - ] - }, - { - "Answer": 690, - "Explanation": [ - 41, - 111 - ] - }, - { - "Answer": 84, - "Explanation": [ - 9, - 42 - ] - }, - { - "Answer": 343, - "Explanation": [ - 14, - 74 - ] - }, - { - "Answer": 416, - "Explanation": [ - 24, - 70 - ] - }, - { - "Answer": 448, - "Explanation": [ - 75, - 103 - ] - }, - { - "Answer": 310, - "Explanation": [ - 11, - 53 - ] - }, - { - "Answer": 744, - "Explanation": [ - 15, - 45 - ] - }, - { - "Answer": 159.7, - "Explanation": [ - 157, - 97 - ] - }, - { - "Answer": 812, - "Explanation": [ - 21, - 108 - ] - }, - { - "Answer": 0.875, - "Explanation": [ - 31, - 67 - ] - }, - { - "Answer": 0.8, - "Explanation": [ - 24, - 62 - ] - }, - { - "Answer": 0.375, - "Explanation": [ - 16, - 77 - ] - }, - { - "Answer": 1, - "Explanation": [ - 38, - 96 - ] - }, - { - "Answer": 1.75, - "Explanation": [ - 13, - 27 - ] - }, - { - "Answer": 4.25, - "Explanation": [ - 47, - 25 - ] - }, - { - "Answer": 0.3, - "Explanation": [ - 12, - 47 - ] - }, - { - "Answer": 141.5, - "Explanation": [ - 19, - 43 - ] - }, - { - "Answer": 7.5, - "Explanation": [ - 14, - 65 - ] - } - ] -} \ No newline at end of file