diff --git "a/all/svamp_structured.json" "b/all/svamp_structured.json" new file mode 100644--- /dev/null +++ "b/all/svamp_structured.json" @@ -0,0 +1,14004 @@ +{ + "Source": "https://arxiv.org/abs/2103.07191", + "Categories": [ + { + "Math complexity": 2, + "Language complexity": 7, + "Domain knowledge complexity": 0 + } + ], + "Instances": [ + { + "Input": "Paul sold some books in a garage sale leaving him with 27 books. If he had 136 books initially. How many books did he sell?", + "Output Program": [ + "print( 136.0 - 27.0 )" + ], + "Output Answer": [ + "109" + ], + "split": "train" + }, + { + "Input": "White t - shirts can be purchased in packages of 13. If mom buys 39 white t - shirts. How many packages will she have?", + "Output Program": [ + "print( 39.0 / 13.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "There are 384 oranges and 192 bananas in Philip's collection. If the bananas are organized into 345 groups and oranges are organized into 16 groups. How big is each group of oranges?", + "Output Program": [ + "print( 384.0 / 16.0 )" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "In a school there are 868 girls and the rest are boys. If there are 281 more girls than boys. How many pupils are there in that school?", + "Output Program": [ + "print( ( 868.0 + 868.0 ) - 281.0 )" + ], + "Output Answer": [ + "1455" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 9 cups of flour and 5 cups of sugar. She already put in 3 cups of flour and 62 cups of sugar.. How many more cups of flour does she need to add?", + "Output Program": [ + "print( 9.0 - 3.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 46 wrappers and 50 bottle caps at the park. Now he has 21 bottle caps and 52 wrappers in his collection.. How many more bottle caps than wrappers did danny find at the park?", + "Output Program": [ + "print( 50.0 - 46.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Robin has 43 packages of gum. There are 23 pieces in each package. Robin has 8 extra pieces of gum.. How many pieces of gum does Robin have?", + "Output Program": [ + "print( ( 43.0 * 23.0 ) + 8.0 )" + ], + "Output Answer": [ + "997" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 4 pages of reading homework, 7 pages of math homework and 19 more pages of biology homework.. How many more pages of math homework than reading homework did she have?", + "Output Program": [ + "print( 7.0 - 4.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Bryan took a look at his books as well. If he has 34 books distributed equally in 2 bookshelves. How many books are there in each bookshelf?", + "Output Program": [ + "print( 34.0 / 2.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Dan has $ 4. He bought 99 candy bar for $ 3 each one costing the same amount of money.. How much money is left?", + "Output Program": [ + "print( 4.0 - 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 11 bottle caps and 28 wrappers at the park. Now he has 68 bottle caps and 51 wrappers in his collection.. How many more wrappers than bottle caps did danny find at the park?", + "Output Program": [ + "print( 28.0 - 11.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Dave had some apps on his phone. After deleting 18 of them he had 5 left.. How many apps did he have on his phone at the start?", + "Output Program": [ + "print( 18.0 + 5.0 )" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "Jackie has 10 apples. Adam has 8 apples.. How many more apples does Jackie have than Adam?", + "Output Program": [ + "print( 10.0 - 8.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "The Razorback shop makes $ 62 dollars off each t-shirt and $ 99 off each jersey. During the Arkansas and Texas tech game they sold 183 t-shirts and 31 jerseys.. How much money did they make from selling the t-shirts?", + "Output Program": [ + "print( 62.0 * 183.0 )" + ], + "Output Answer": [ + "11346" + ], + "split": "train" + }, + { + "Input": "The grasshopper and the frog had a jumping contest. The grasshopper jumped 31 inches and the frog jumped 35 inches.. How much did they jump altogether?", + "Output Program": [ + "print( 31.0 + 35.0 )" + ], + "Output Answer": [ + "66" + ], + "split": "train" + }, + { + "Input": "Robin has 21 packages of gum and 45 packages of candy. There are 9 pieces in each package.. How many pieces of candies does Robin have?", + "Output Program": [ + "print( 45.0 * 9.0 )" + ], + "Output Answer": [ + "405" + ], + "split": "train" + }, + { + "Input": "If Lewis earns a total of $ 460 during 5 weeks of harvest. How much money does he earn each week?", + "Output Program": [ + "print( 460.0 / 5.0 )" + ], + "Output Answer": [ + "92" + ], + "split": "train" + }, + { + "Input": "Ed had 10 more marbles than Doug. Doug lost 11 of his marbles at the playground. If Ed had 45 marbles. How many more marbles did Ed have than Doug then?", + "Output Program": [ + "print( 10.0 + 11.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There were 87 bird families living near the mountain. If 7 bird families flew away for winter. How many more bird families stayed behind than those that flew away for the winter?", + "Output Program": [ + "print( ( 87.0 - 7.0 ) - 7.0 )" + ], + "Output Answer": [ + "73" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 44 sacks of ripe oranges and 25 sacks of unripe oranges per day.. How many more sacks of ripe oranges than unripe oranges are harvested per day?", + "Output Program": [ + "print( 44.0 - 25.0 )" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "We ordered some pizzas. Each pizza has 2 slices. If there were a total of 28 slices. How many pizzas did we order?", + "Output Program": [ + "print( 28.0 / 2.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "4 birds and 3 storks were sitting on the fence. 6 more storks came to join them.. How many more storks than birds are sitting on the fence?", + "Output Program": [ + "print( ( 3.0 + 6.0 ) - 4.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "7 red peaches, 15 yellow peaches and 8 green peaches are in the basket.. How many peaches are in the basket?", + "Output Program": [ + "print( ( 7.0 + 15.0 ) + 8.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Jack received 6 emails in the morning and 8 emails in the afternoon.. How many more emails did Jack receive in the afternoon than in the morning?", + "Output Program": [ + "print( 8.0 - 6.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Paige was helping her mom plant flowers and they put 10 seeds in each flower bed. If they planted 60 seeds altogther. How many flower beds did they have?", + "Output Program": [ + "print( 60.0 / 10.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Together Adam and Jackie have 12 apples. He has 9 apples more than Adam and Jackie together do. Adam has 8 more apples than Jackie.. How many apples does He have?", + "Output Program": [ + "print( 12.0 + 9.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 19 inches. The frog jumped 10 inches farther than the grasshopper and the mouse jumped 20 inches farther than the frog.. How much farther did the mouse jump than the grasshopper?", + "Output Program": [ + "print( 10.0 + 20.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Josh had 22 marbles in his collection. Jack gave him 20 marbles.. How many marbles does Josh have now?", + "Output Program": [ + "print( 22.0 + 20.0 )" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "For 19 weeks of harvest Lewis earns a total of $ 133.. How much money does he earn each week?", + "Output Program": [ + "print( 133.0 / 19.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Lucy went to the grocery store. She bought 2 packs of cookie and 12 packs of cake. In the end she had 56 amount of change remaining.. How many packs of groceries did she buy in all?", + "Output Program": [ + "print( 2.0 + 12.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Paul had 2 books. After selling some in a garage sale he bought 150 new ones. If he has 58 books now. How many books did he sell?", + "Output Program": [ + "print( ( 2.0 + 150.0 ) - 58.0 )" + ], + "Output Answer": [ + "94" + ], + "split": "train" + }, + { + "Input": "Dan has $ 4. For a total of $ 3 he bought 10 candy bar each one costing the same amount of money.. How much money is left?", + "Output Program": [ + "print( 4.0 - 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "If you had 33 cookies and each bag has 11 cookies. How many bags of cookies do you have?", + "Output Program": [ + "print( 33.0 / 11.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 324 students suggested adding mashed potatoes 374 suggested adding bacon to the menu and 128 suggested adding tomatoes. How many students participated in the suggestion of new food items?", + "Output Program": [ + "print( ( 324.0 + 374.0 ) + 128.0 )" + ], + "Output Answer": [ + "826" + ], + "split": "train" + }, + { + "Input": "Katie had 57 new games and 39 old games. Her friends had 34 new games.. How many more games does Katie have than her friends?", + "Output Program": [ + "print( ( 57.0 + 39.0 ) - 34.0 )" + ], + "Output Answer": [ + "62" + ], + "split": "train" + }, + { + "Input": "There are many different books in the ' crazy silly school ' series. If you have read 13 of the books and are yet to read 8 books. How many books are there in the ' crazy silly school ' series?", + "Output Program": [ + "print( 13.0 + 8.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "After resting they decided to go for a swim. The depth of the water is 2 times Dean's height. Dean is 8 feet shorter than Ron. If Ron stands at 14 feet. How deep was the water?", + "Output Program": [ + "print( ( 14.0 - 8.0 ) * 2.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Julia played tag with a total of 18 kids. She played with 4 kids on monday and yet with some more kids on tuesday.. How many kids did she play with on tuesday?", + "Output Program": [ + "print( 18.0 - 4.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Josh lost 11 marbles. If he had 19 marbles in his collection earlier. How many marbles does he have now?", + "Output Program": [ + "print( 19.0 - 11.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Dan has $ 7. He bought a candy bar for $ 2 and a chocolate for $ 3.. How much money is left?", + "Output Program": [ + "print( 7.0 - ( 2.0 + 3.0 ) )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "If each bag has 41 cookies and you had 53 bags of cookies. How many cookies would you have?", + "Output Program": [ + "print( 53.0 * 41.0 )" + ], + "Output Answer": [ + "2173" + ], + "split": "train" + }, + { + "Input": "44 campers went rowing in the morning 39 campers went rowing in the afternoon and 31 campers went rowing in the evening.. How many more campers went rowing in the morning than in the afternoon?", + "Output Program": [ + "print( 44.0 - 39.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "In Haley's class 11 are boys who love to play marbles. If Haley gives 9 marbles to each boy. How many marbles did she have?", + "Output Program": [ + "print( 11.0 * 9.0 )" + ], + "Output Answer": [ + "99" + ], + "split": "train" + }, + { + "Input": "David did 40 more push-ups but 17 less crunches than Zachary in gym class today. If Zachary did 34 push-ups and 62 crunches. How many crunches did David do?", + "Output Program": [ + "print( 62.0 - 17.0 )" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 8 sacks per day.. How many days will it take to harvest 24 sacks of oranges?", + "Output Program": [ + "print( 24.0 / 8.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Paul got a box of 110 crayons for his birthday. During the school year he gave 90 crayons to his friends while he lost 412 crayons.. How many more crayons did he lose than those he gave to his friends?", + "Output Program": [ + "print( 412.0 - 90.0 )" + ], + "Output Answer": [ + "322" + ], + "split": "train" + }, + { + "Input": "Faye was placing her pencils and crayons into 30 rows with 71 crayons and 24 pencils in each row.. How many pencils does she have?", + "Output Program": [ + "print( 30.0 * 24.0 )" + ], + "Output Answer": [ + "720" + ], + "split": "train" + }, + { + "Input": "Faye was placing her pencils into 14 rows with 11 pencils in each row.. How many pencils does she have?", + "Output Program": [ + "print( 14.0 * 11.0 )" + ], + "Output Answer": [ + "154" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 6 cups of flour 8 cups of sugar and 7 cups of salt. She already put in 5 cups of flour.. How many more cups of sugar than cups of salt does she need to add now?", + "Output Program": [ + "print( 8.0 - 7.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "2 red peaches, 6 yellow peaches and 14 green peaches are in the basket.. How many more green peaches than yellow peaches are in the basket?", + "Output Program": [ + "print( 14.0 - 6.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "David did 44 push-ups in gym class today. David did 9 more push-ups than Zachary.. How many push-ups did Zachary do?", + "Output Program": [ + "print( 44.0 - 9.0 )" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "Edward spent $ 16 to buy 92 books each book costing him the same amount of money. Now he has $ 6.. How much did Edward have before he spent his money?", + "Output Program": [ + "print( 16.0 + 6.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "During summer break 907611 kids from Lawrence county stay home and the other 455682 kids go to camp.. About how many kids are in Lawrence county?", + "Output Program": [ + "print( 455682.0 + 907611.0 )" + ], + "Output Answer": [ + "1363293" + ], + "split": "train" + }, + { + "Input": "Paul got a box of 531 crayons and 38 erasers for his birthday. At the end of the school year he only had 391 left while not having lost a single erasers.. How many more crayons than erasers did he have left?", + "Output Program": [ + "print( 391.0 - 38.0 )" + ], + "Output Answer": [ + "353" + ], + "split": "train" + }, + { + "Input": "Paco had 6 cookies. He gave 30 cookies to his friend and ate 23 cookies.. How many more cookies did he give to his friend than those he ate?", + "Output Program": [ + "print( 30.0 - 23.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Jerry had 2 action figures and 10 books on a shelf in his room. Later he added 4 more action figures to the shelf.. How many more books than action figures were on his shelf?", + "Output Program": [ + "print( 10.0 - ( 2.0 + 4.0 ) )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Lewis earns $ 28 every week during the 1091 weeks of harvest. He also earns $ 939 per week for working overtime. If he works overtime every week. How much money does he earn during harvest season?", + "Output Program": [ + "print( ( 28.0 + 939.0 ) * 1091.0 )" + ], + "Output Answer": [ + "1054997" + ], + "split": "train" + }, + { + "Input": "Jake has 3 fewer peaches and 4 more apples than Steven. Steven has 19 apples and 15 peaches.. How many more apples than peaches does Steven have?", + "Output Program": [ + "print( 19.0 - 15.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Paco had 36 cookies. He gave 14 cookies to his friend and ate 10 cookies.. How many cookies did Paco have left?", + "Output Program": [ + "print( ( 36.0 - 10.0 ) - 14.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps. He threw away 60 of the old ones at the park while he found 58 bottle caps new ones. Now he has 67 bottle caps in his collection.. How many bottle caps did danny have at first?", + "Output Program": [ + "print( ( 67.0 + 60.0 ) - 58.0 )" + ], + "Output Answer": [ + "69" + ], + "split": "train" + }, + { + "Input": "Paul had 108 books. After selling some books in a garage sale and giving 35 books to his friend he had 62 books left.. How many books did he sell in the garage sale?", + "Output Program": [ + "print( ( 108.0 - 35.0 ) - 62.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 11 cups of flour and 7 cups of sugar. She already put in some cups of flour. If she still needs 2 more cups of flour than sugar. How many cups of flour did she put in?", + "Output Program": [ + "print( ( 11.0 - 7.0 ) - 2.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "There are 4 different books and 17 different movies in the ' crazy silly school ' series. If you read 19 of the books and watched 7 of the movies. How many more movies do you still have to watch?", + "Output Program": [ + "print( 17.0 - 7.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "In a school there are 635 girls and the rest are boys. If there are 510 more boys than girls. How many boys are there in that school?", + "Output Program": [ + "print( 635.0 + 510.0 )" + ], + "Output Answer": [ + "1145" + ], + "split": "train" + }, + { + "Input": "6 birds were sitting on the fence. 4 more birds and 8 more storks came to join them.. How many birds are sitting on the fence?", + "Output Program": [ + "print( 6.0 + 4.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Dan has $ 5. He bought a candy bar for $ 2 and a chocolate for $ 3.. How much money did he spend to buy chocolate than he did to buy candy bar?", + "Output Program": [ + "print( 3.0 - 2.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 5 pages of math homework and yet more pages of reading homework. If she had to complete a total of 7 pages of homework. How many pages of reading homework did she have to complete?", + "Output Program": [ + "print( 7.0 - 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Robin cut off 13 inches of his hair. If his hair was 14 inches long initially. How long is his hair now?", + "Output Program": [ + "print( 14.0 - 13.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "5 red peaches and 11 green peaches are in the basket.. How many more green peaches than red peaches are in the basket?", + "Output Program": [ + "print( 11.0 - 5.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Jerry had some action figures on a shelf in his room. Later he added 2 more action figures to the shelf and removed 7 of the old ones. If there are 10 action figures on his shelf now. How many action figures did he have initially on the shelf?", + "Output Program": [ + "print( ( 10.0 + 7.0 ) - 2.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Allan brought 2 balloons and Jake brought 6 balloons to the park. Allan then bought 3 more balloons at the park.. How many more balloons did Jake have than Allan in the park?", + "Output Program": [ + "print( 6.0 - ( 2.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Baker made 19 cakes and 131 pastries. If he sold 70 cakes and 88 pastries. How many more pastries than cakes did baker make?", + "Output Program": [ + "print( 131.0 - 19.0 )" + ], + "Output Answer": [ + "112" + ], + "split": "train" + }, + { + "Input": "The school is planning a field trip. The school has 67 classrooms. There are 66 students in each classroom in the school. If there are 6 seats on each school bus. How many buses are needed to take the trip?", + "Output Program": [ + "print( 67.0 * ( 66.0 / 6.0 ) )" + ], + "Output Answer": [ + "737" + ], + "split": "train" + }, + { + "Input": "Lucy went to the grocery store. She bought 4 packs of cookie, 22 packs of cake and 16 packs of chocolate.. How many packs of groceries did she buy in all?", + "Output Program": [ + "print( ( 4.0 + 22.0 ) + 16.0 )" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "Dan had $ 3 left with him after he bought a candy bar. If he had $ 4 at the start. How much did the candy bar cost?", + "Output Program": [ + "print( 4.0 - 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "During summer break 34044 kids from Lawrence county go to camp and the other 134867 kids stay home. An additional 424944 kids from outside the county attended the camp.. How many kids in total attended the camp?", + "Output Program": [ + "print( 34044.0 + 424944.0 )" + ], + "Output Answer": [ + "458988" + ], + "split": "train" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 705 visitors came to the Buckingham palace that day. If there were 191 visitors the previous day and 457 visitors the day before that. How many more visitors visited the Buckingham palace on that day than on the previous 245 days?", + "Output Program": [ + "print( 705.0 - ( 191.0 + 457.0 ) )" + ], + "Output Answer": [ + "57" + ], + "split": "train" + }, + { + "Input": "After a typhoon, 2 trees in Haley's backyard died. If she had grown 11 trees initially. How many more trees survived the typhoon than those that died?", + "Output Program": [ + "print( ( 11.0 - 2.0 ) - 2.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "After resting they decided to go for a swim. The depth of the water is 16 times Ron's height. Dean is 9 feet taller than Ron. If Ron stands at 13 feet. How deep was the water?", + "Output Program": [ + "print( 13.0 * 16.0 )" + ], + "Output Answer": [ + "208" + ], + "split": "train" + }, + { + "Input": "Dan has $ 3. For a total of $ 4 he bought 2 candy bar each one costing the same amount of money.. How much did each candy bar cost?", + "Output Program": [ + "print( 4.0 / 2.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "There are 7 baskets of peaches. Each basket has 10 red peaches and 2 green peaches.. How many green peaches are in the baskets altogether?", + "Output Program": [ + "print( 2.0 * 7.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Katie had 84 new games and 19 old games. Her friends had 8 new games and 69 old games.. How many new games do they have together?", + "Output Program": [ + "print( 84.0 + 8.0 )" + ], + "Output Answer": [ + "92" + ], + "split": "train" + }, + { + "Input": "There were 2 roses in the vase. Jessica threw away 4 roses from the vase and cut some more new roses from her flower garden to put in the vase. There are now 23 roses in the vase.. How many roses did she cut?", + "Output Program": [ + "print( ( 23.0 + 4.0 ) - 2.0 )" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Lawrence county has 898051 kids. During summer break 629424 kids go to camp and the rest stay home.. How many kids stay home?", + "Output Program": [ + "print( 898051.0 - 629424.0 )" + ], + "Output Answer": [ + "268627" + ], + "split": "train" + }, + { + "Input": "52 campers went rowing in the morning. 61 campers went rowing in the afternoon.. How many more campers went rowing in the afternoon than in the morning?", + "Output Program": [ + "print( 61.0 - 52.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Baker made 149 cakes and 91 pastries. If he sold 10 cakes and 90 pastries. How many cakes would baker still have?", + "Output Program": [ + "print( 149.0 - 10.0 )" + ], + "Output Answer": [ + "139" + ], + "split": "train" + }, + { + "Input": "Rachel has 4 apple trees. She picked 7 apples from each of her trees. Now the trees have a total 29 apples still on them.. How many apples did Rachel pick in all?", + "Output Program": [ + "print( 4.0 * 7.0 )" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 8 pages of math homework. If she had to complete 3 more pages of math homework than reading homework. How many pages did she have to complete in all?", + "Output Program": [ + "print( ( 8.0 + 8.0 ) - 3.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Matthew had 14 crackers and 21 cakes. If Matthew gave equal numbers of crackers and cakes to his 7 friends. How many crackers and cakes did each person eat?", + "Output Program": [ + "print( ( 14.0 + 21.0 ) / 7.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Ed had 19 more marbles than Doug. Ed lost some of his marbles at the playground. Now Ed has 8 more marbles than doug.. How many marbles did Ed lose?", + "Output Program": [ + "print( 19.0 - 8.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Matthew gave equal numbers of crackers to his 18 friends. If he had 36 crackers. How many crackers did each person eat?", + "Output Program": [ + "print( 36.0 / 18.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "In a school there are 135 girls and 214 boys. 496 more girls and 910 more boys joined the school.. How many boys are there in the school now?", + "Output Program": [ + "print( 214.0 + 910.0 )" + ], + "Output Answer": [ + "1124" + ], + "split": "train" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 36 inches. The frog jumped 17 inches farther than the grasshopper and the mouse jumped 15 inches farther than the frog.. How far did the frog jump?", + "Output Program": [ + "print( 36.0 + 17.0 )" + ], + "Output Answer": [ + "53" + ], + "split": "train" + }, + { + "Input": "Baker made 54 cakes. He sold some of them. If he still has 13 cakes left. How many cakes did baker sell?", + "Output Program": [ + "print( 54.0 - 13.0 )" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "41 campers went rowing and 4 campers went hiking in the morning. 26 campers went rowing in the afternoon.. How many campers went rowing and hiking in all?", + "Output Program": [ + "print( ( 41.0 + 26.0 ) + 4.0 )" + ], + "Output Answer": [ + "71" + ], + "split": "train" + }, + { + "Input": "Paco had 17 cookies. He ate 14 cookies and gave 13 of them to his friend.. How many more cookies did he eat than those he gave to his friend?", + "Output Program": [ + "print( 14.0 - 13.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Tiffany was collecting cans for recycling. On monday she had 4 bags of cans. The next day she found some more bags worth of cans. If she had a total of 6 bags altogether. How many bags did she find on the next day?", + "Output Program": [ + "print( 6.0 - 4.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Luke played a trivia game and gained 3 points in each round of a game. If he scored 78 points in the trivia game. How many rounds did he play?", + "Output Program": [ + "print( 78.0 / 3.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "train" + }, + { + "Input": "There are 17 different movies and 11 different books in the ' crazy silly school ' series. If you read 13 of the books and watched 63 of the movies. How many more movies than books are there in the ' crazy silly school ' series?", + "Output Program": [ + "print( 17.0 - 11.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "There were 73 parents, 724 pupils and 744 teachers in the program.. How many people were present in the program?", + "Output Program": [ + "print( ( 73.0 + 724.0 ) + 744.0 )" + ], + "Output Answer": [ + "1541" + ], + "split": "train" + }, + { + "Input": "Faye had 35 packs of pencils each one having 4 pencils. She was placing her pencils into rows with 2 pencils in each row.. How many rows could she make?", + "Output Program": [ + "print( 35.0 * ( 4.0 / 2.0 ) )" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 38 sacks per day and that each sack containes 42 oranges.. How many sacks of oranges will they have after 49 days of harvest?", + "Output Program": [ + "print( 38.0 * 49.0 )" + ], + "Output Answer": [ + "1862" + ], + "split": "train" + }, + { + "Input": "He also had 56 aquariums for saltwater animals and 10 aquariums for freshwater animals. Each aquarium has 39 animals in it.. How many saltwater animals does Tyler have?", + "Output Program": [ + "print( 56.0 * 39.0 )" + ], + "Output Answer": [ + "2184" + ], + "split": "train" + }, + { + "Input": "You had 14 bags with equal number of cookies. If you had 28 cookies and 86 candies in total. How many bags of cookies do you have?", + "Output Program": [ + "print( 28.0 / 14.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Julia played tag with 17 kids on monday, 15 kids on tuesday and 2 kids on wednesday.. How many kids did she play with altogether?", + "Output Program": [ + "print( ( 17.0 + 15.0 ) + 2.0 )" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 66 sacks per day and that each sack containes 25 oranges.. How many oranges will they have after 87 days of harvest?", + "Output Program": [ + "print( ( 66.0 * 87.0 ) * 25.0 )" + ], + "Output Answer": [ + "143550" + ], + "split": "train" + }, + { + "Input": "A farmer had 171 tomatoes in his garden. If he picked 134 of them yesterday and 30 today.. How many will he have left after today?", + "Output Program": [ + "print( ( 171.0 - 134.0 ) - 30.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "2 birds were sitting on the fence. Some more birds came to join them. If there are a total of 6 birds on the fence now. How many more birds had come to sit on the fence?", + "Output Program": [ + "print( 6.0 - 2.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Jack received 3 emails in the afternoon, 5 emails in the morning and 16 emails in the evening.. How many more emails did Jack receive in the morning than in the afternoon?", + "Output Program": [ + "print( 5.0 - 3.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "A grocery store had 57 bottles of regular soda, 26 bottles of diet soda and 27 bottles of lite soda.. How many bottles did they have total?", + "Output Program": [ + "print( ( 57.0 + 26.0 ) + 27.0 )" + ], + "Output Answer": [ + "110" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 22 bottle caps and 8 wrappers at the park. Now he has 28 bottle caps and 63 wrappers in his collection.. How many bottle caps did danny have at first?", + "Output Program": [ + "print( 28.0 - 22.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "2 birds were sitting on the fence. 5 more birds and 4 more storks came to join them.. How many more birds than storks are sitting on the fence?", + "Output Program": [ + "print( ( 2.0 + 5.0 ) - 4.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "A mailman has to give 4 pieces of junk mail to each house in each of the 16 blocks. If there are 17 houses in each block. How many pieces of junk mail should he give in total?", + "Output Program": [ + "print( ( 4.0 * 17.0 ) * 16.0 )" + ], + "Output Answer": [ + "1088" + ], + "split": "train" + }, + { + "Input": "26 children were riding on the bus. At the bus stop 38 more children got on the bus.. How many children are on the bus now?", + "Output Program": [ + "print( 26.0 + 38.0 )" + ], + "Output Answer": [ + "64" + ], + "split": "train" + }, + { + "Input": "A school has 485 pupils. There are 232 girls and the rest are boys.. How many boys are there in that school?", + "Output Program": [ + "print( 485.0 - 232.0 )" + ], + "Output Answer": [ + "253" + ], + "split": "train" + }, + { + "Input": "The Razorback shop makes $ 115 dollars off each jersey and $ 25 off each t-shirt. During the Arkansas and Texas tech game they sold 113 t-shirts and 78 jerseys.. How much more does a jersey cost than a t-shirt?", + "Output Program": [ + "print( 115.0 - 25.0 )" + ], + "Output Answer": [ + "90" + ], + "split": "train" + }, + { + "Input": "A book has 2 chapters. The first chapter is 48 pages long. The second chapter is 11 pages long.. How many more pages does the first chapter have than the second chapter?", + "Output Program": [ + "print( 48.0 - 11.0 )" + ], + "Output Answer": [ + "37" + ], + "split": "train" + }, + { + "Input": "4 birds and 46 storks were sitting on the fence. 6 more birds came to join them.. How many birds are sitting on the fence?", + "Output Program": [ + "print( 4.0 + 6.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 9 cups of flour and 6 cups of sugar. She already put in 4 cups of sugar.. How many more cups of flour than cups of sugar does she need to add now?", + "Output Program": [ + "print( 9.0 - ( 6.0 - 4.0 ) )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Paul got a box of 440 crayons for his birthday. During the school year he gave 111 crayons to his friends while he lost 106 crayons.. How many crayons did he have left?", + "Output Program": [ + "print( 440.0 - ( 111.0 + 106.0 ) )" + ], + "Output Answer": [ + "223" + ], + "split": "train" + }, + { + "Input": "Jerry had 5 action figures and 9 books on a shelf in his room. Later he added 7 more action figures to the shelf.. How many more action figures than books were on his shelf?", + "Output Program": [ + "print( ( 5.0 + 7.0 ) - 9.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 7 cups of sugar and 10 cups of flour. She already put in 4 cups of sugar.. How many more cups of sugar does she need to add?", + "Output Program": [ + "print( 7.0 - 4.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Edward spent $ 6 to buy books and $ 16 to buy pens. Now he has $ 19.. How much did Edward have before he spent his money?", + "Output Program": [ + "print( ( 6.0 + 16.0 ) + 19.0 )" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Lewis earns $ 403 every week during the 233 weeks of harvest. If he has to pay $ 49 rent every week. How much money does he earn during harvest season?", + "Output Program": [ + "print( 403.0 * 233.0 )" + ], + "Output Answer": [ + "93899" + ], + "split": "train" + }, + { + "Input": "There are 20 houses in a block. If a mailman has to give 32 pieces of junk mail to each house in each block. How many pieces of junk mail should he give each block?", + "Output Program": [ + "print( 32.0 * 20.0 )" + ], + "Output Answer": [ + "640" + ], + "split": "train" + }, + { + "Input": "There were 22 parents in the program and 676 people in total.. How many pupils were present in the program?", + "Output Program": [ + "print( 676.0 - 22.0 )" + ], + "Output Answer": [ + "654" + ], + "split": "train" + }, + { + "Input": "Frank had 42 pieces of candy. If he put them equally into 2 bags. How many pieces of candy are in each bag?", + "Output Program": [ + "print( 42.0 / 2.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Last week Fred had 19 dollars and Jason had 16 dollars. They washed cars over the weekend and now Fred has 40 dollars and Jason has 69 dollars.. How much money did Fred earn over the weekend?", + "Output Program": [ + "print( 40.0 - 19.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "The school is planning a field trip. The school has 24 classrooms. There are 120 students in the school with each classroom having the same number of students. There are 84 seats on each school bus.. How many students are in each class?", + "Output Program": [ + "print( 120.0 / 24.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Haley has 20 marbles. In her class 2 boys love to play marbles. If she distributes her marbles equally. How many will each of the boys receive?", + "Output Program": [ + "print( 20.0 / 2.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "There were 78 dollars in Olivia's wallet. She spent 15 dollars at a supermarket.. How much money does she have left?", + "Output Program": [ + "print( 78.0 - 15.0 )" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "Baker made 14 cakes and 153 pastries. If he sold 8 pastries and 97 cakes. How many more cakes than pastries did baker sell?", + "Output Program": [ + "print( 97.0 - 8.0 )" + ], + "Output Answer": [ + "89" + ], + "split": "train" + }, + { + "Input": "The Ferris wheel in paradise park has 18 seats. Each seat can hold 15 people. If 10 seats are broken. How many people can ride the Ferris wheel at the same time?", + "Output Program": [ + "print( ( 18.0 - 10.0 ) * 15.0 )" + ], + "Output Answer": [ + "120" + ], + "split": "train" + }, + { + "Input": "There were 5 roses and 3 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 12 roses and 2 orchids in the vase.. How many more roses than orchids are there in the vase now?", + "Output Program": [ + "print( 12.0 - 2.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Debby bought 153 water bottles when they were on sale. She drank the same number of bottles each day. If the bottles lasted for 17 days. How many bottles did she drink each day?", + "Output Program": [ + "print( 153.0 / 17.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "If Lewis earns $ 1357 every week during the 223 weeks of a harvest season.. How much money will he earn if he works for 73 harvest seasons?", + "Output Program": [ + "print( ( 1357.0 * 223.0 ) * 73.0 )" + ], + "Output Answer": [ + "22090603" + ], + "split": "train" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 408 students suggested adding mashed potatoes while 42 suggested adding bacon to the menu. How many more students suggested mashed potatoes than those that suggested bacon?", + "Output Program": [ + "print( 408.0 - 42.0 )" + ], + "Output Answer": [ + "366" + ], + "split": "train" + }, + { + "Input": "Rebecca wants to split a collection of eggs into groups of 11. If each group has 2 eggs. How many eggs does Rebecca have?", + "Output Program": [ + "print( 11.0 * 2.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "There are 87 oranges and 290 bananas in Philip's collection. If the bananas are organized into 2 groups and oranges are organized into 93 groups. How big is each group of bananas?", + "Output Program": [ + "print( 290.0 / 2.0 )" + ], + "Output Answer": [ + "145" + ], + "split": "train" + }, + { + "Input": "There are 10 different books and 11 different movies in the ' crazy silly school ' series. If you read 13 of the books and watched 12 of the movies. How many more books than movies have you read?", + "Output Program": [ + "print( 13.0 - 12.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Marco and his dad went strawberry picking. Together their strawberries weighed 4 pounds. Marco's strawberries weighed 19 pounds.. How much more did his strawberries weigh than his dad's?", + "Output Program": [ + "print( 19.0 - ( 4.0 - 19.0 ) )" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "There are 8 different books and 5 different movies in the ' crazy silly school ' series. If you read 19 of the movies and watched 16 of the books. How many more movies than books have you read?", + "Output Program": [ + "print( 19.0 - 16.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 58 bottle caps and 25 wrappers at the park. Now he has 11 wrappers and 12 bottle caps in his collection.. How many more bottle caps than wrappers does danny have now?", + "Output Program": [ + "print( 12.0 - 11.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "A book has 2 chapters across 81 pages. The second chapter is 68 pages long.. How many pages are in the second chapter?", + "Output Program": [ + "print( 81.0 - 68.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Adam has 3 more apples than jackie. Adam has 9 apples.. How many apples does Jackie have?", + "Output Program": [ + "print( 9.0 - 3.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 39 inches. The grasshopper jumped 19 inches farther than the frog and the mouse jumped 12 inches lesser than the frog.. How far did the mouse jump?", + "Output Program": [ + "print( ( 39.0 - 19.0 ) - 12.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Every day Ryan spends 6 hours on learning english and 2 hours on learning chinese.. How many more hours does he spend on learning english than he does on learning chinese?", + "Output Program": [ + "print( 6.0 - 2.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "19 red peaches, 11 yellow peaches and 12 green peaches are in the basket.. How many more red peaches than yellow peaches are in the basket?", + "Output Program": [ + "print( 19.0 - 11.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 10 cups of flour 2 cups of sugar and 80 cups of salt. She already put in 7 cups of flour.. How many more cups of flour than cups of sugar does she need to add now?", + "Output Program": [ + "print( ( 10.0 - 7.0 ) - 2.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Steven has 19 peaches. Jake has 12 fewer peaches than Steven and 72 more peaches than Jill.. How many peaches does Jake have?", + "Output Program": [ + "print( 19.0 - 12.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "13 campers went rowing and 59 campers went hiking in the morning. 21 campers went rowing in the afternoon.. How many campers went rowing in all?", + "Output Program": [ + "print( 13.0 + 21.0 )" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "Nell collects baseball cards. She had 573 cards. She gave 195 cards to John and yet some more to Jeff. Now she has 210 cards left.. How many cards did Nell give to Jeff?", + "Output Program": [ + "print( ( 573.0 - 195.0 ) - 210.0 )" + ], + "Output Answer": [ + "168" + ], + "split": "train" + }, + { + "Input": "6 birds and 3 storks were sitting on the fence. 2 more storks came to join them.. How many more birds than storks are sitting on the fence?", + "Output Program": [ + "print( 6.0 - ( 3.0 + 2.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "A grocery store had 81 bottles of regular soda, 60 bottles of diet soda and 60 bottles of lite soda.. How many more bottles of regular soda did they have than diet soda?", + "Output Program": [ + "print( 81.0 - 60.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 12 cups of flour 5 cups of sugar and 49 cups of salt. She already put in 11 cups of flour.. How many more cups of flour does she need to add?", + "Output Program": [ + "print( 12.0 - 11.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "They decided to hold the party in their backyard. They have 2 sets of tables, each having the same number of chairs. If there are a total of 12 chairs in the backyard. How many chairs are there for each table?", + "Output Program": [ + "print( 12.0 / 2.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "If each pack costs 81 dollars. How much will it cost to buy 33 packs of dvds?", + "Output Program": [ + "print( 81.0 * 33.0 )" + ], + "Output Answer": [ + "2673" + ], + "split": "train" + }, + { + "Input": "Paco had 22 sweet cookies and 75 salty cookies. He ate 15 sweet cookies and 54 salty cookies.. How many sweet cookies did Paco have left?", + "Output Program": [ + "print( 22.0 - 15.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 25 inches. The frog jumped 32 inches farther than the grasshopper and the mouse jumped 26 inches lesser than the frog.. How far did the mouse jump?", + "Output Program": [ + "print( ( 25.0 + 32.0 ) - 26.0 )" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": "The school is planning a field trip. The school has 72 classrooms. There are 3 seats on each school bus. If there are a total of 111 students in the school. How many buses are needed to take the trip?", + "Output Program": [ + "print( 111.0 / 3.0 )" + ], + "Output Answer": [ + "37" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 12 cups of flour 14 cups of sugar and 7 cups of salt. She already put in 2 cups of flour.. How many more cups of flour than cups of salt does she need to add now?", + "Output Program": [ + "print( ( 12.0 - 2.0 ) - 7.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Bobby had 20 pieces of candy. He ate 34 pieces of candy. Then he ate 18 more.. How many pieces of candy did Bobby eat?", + "Output Program": [ + "print( 34.0 + 18.0 )" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 18 bird families living near the mountain. If 38 bird families flew away to africa and 80 bird families flew away to asia. How many bird families flew away for the winter?", + "Output Program": [ + "print( 38.0 + 80.0 )" + ], + "Output Answer": [ + "118" + ], + "split": "train" + }, + { + "Input": "Jerry had 8 action figures and 9 books on a shelf in his room. Later he added 10 more books to the shelf.. How many books were on his shelf in all?", + "Output Program": [ + "print( 9.0 + 10.0 )" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "White t - shirts can be purchased in packages. If mom buys 28 packages which contain 56 white t - shirts in total. How many white t - shirts does each package have?", + "Output Program": [ + "print( 56.0 / 28.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "A book has 2 chapters. The first chapter is 60 pages long. If there are a total of 93 pages in the book. How many pages are in the second chapter?", + "Output Program": [ + "print( 93.0 - 60.0 )" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": "Zachary did 44 push-ups in gym class today. David did 58 more push-ups than zachary.. How many push-ups did Zachary and David do altogether?", + "Output Program": [ + "print( ( 44.0 + 44.0 ) + 58.0 )" + ], + "Output Answer": [ + "146" + ], + "split": "train" + }, + { + "Input": "Emily is making bead necklaces for her friends where each necklace takes 5 beads. She made 4 necklaces.. How many beads did Emily have?", + "Output Program": [ + "print( 4.0 * 5.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "Frank was reading through his favorite book. The book had 2 chapters each with 405 pages. It took frank 664 days to finish the book.. How many chapters did he read per day?", + "Output Program": [ + "print( 664.0 / 2.0 )" + ], + "Output Answer": [ + "332" + ], + "split": "train" + }, + { + "Input": "The grasshopper and the frog had a jumping contest. The grasshopper jumped 9 inches and the frog jumped 12 inches.. How much farther did the frog jump than the grasshopper?", + "Output Program": [ + "print( 12.0 - 9.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 479 students suggested adding mashed potatoes while 489 suggested adding bacon to the menu. How many more students suggested bacon than those that suggested mashed potatoes?", + "Output Program": [ + "print( 489.0 - 479.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "5 children were riding on the bus. At the bus stop 63 children got off the bus while some more got on the bus. Then there were 14 children altogether on the bus.. How many more children got on the bus than those that got off?", + "Output Program": [ + "print( 14.0 - 5.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Faye was placing some pencils equally into 2 rows. If she had 6 pencils. How many pencils did she place in each row?", + "Output Program": [ + "print( 6.0 / 2.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 92 visitors came to the Buckingham palace that day. If there were 419 visitors the previous day and 103 visitors the day before that. How many visited the Buckingham palace before that day?", + "Output Program": [ + "print( 419.0 + 103.0 )" + ], + "Output Answer": [ + "522" + ], + "split": "train" + }, + { + "Input": "A book has 2 chapters. The first chapter is 37 pages long. The second chapter is 80 pages long.. How many more pages does the second chapter have than the first chapter?", + "Output Program": [ + "print( 80.0 - 37.0 )" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": "Paco had 25 cookies. He ate 5 of them. Then he bought 3 more cookies. How many more cookies did he eat than those he bought?", + "Output Program": [ + "print( 5.0 - 3.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "A grocery store had 72 bottles of regular soda, 32 bottles of diet soda and 78 apples.. How many more bottles than apple did they have?", + "Output Program": [ + "print( ( 72.0 + 32.0 ) - 78.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "train" + }, + { + "Input": "In a school there are 697 girls and the rest are boys. If there are 228 more girls than boys. How many boys are there in that school?", + "Output Program": [ + "print( 697.0 - 228.0 )" + ], + "Output Answer": [ + "469" + ], + "split": "train" + }, + { + "Input": "After Jessie started to go jogging everyday she lost 126 kilograms. She currently weighs 66 kilograms.. How much did she weigh before starting to jog?", + "Output Program": [ + "print( 66.0 + 126.0 )" + ], + "Output Answer": [ + "192" + ], + "split": "train" + }, + { + "Input": "Jesse needs a carpet of size 10 square feet to cover her room. If her room is 2 feet wide. What is the length of her room?", + "Output Program": [ + "print( 10.0 / 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Ed had 5 more marbles than Doug. Doug lost 3 of his marbles at the playground. If Ed had 27 marbles. How many marbles did Doug have initially?", + "Output Program": [ + "print( 27.0 - 5.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "David did 30 more push-ups than Zachary in gym class today. If David did 37 push-ups. How many push-ups did Zachary do?", + "Output Program": [ + "print( 37.0 - 30.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "41 children were riding on the bus. At the bus stop some children got off the bus. Then there were 18 children left on the bus.. How many more children were on the bus before the bus stop than there are now?", + "Output Program": [ + "print( 41.0 - 18.0 )" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "Frank was reading through his favorite book. The book had 41 chapters, each with the same number of pages. It has a total of 450 pages. It took Frank 30 days to finish the book.. How many pages did he read per day?", + "Output Program": [ + "print( 450.0 / 30.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Paul got a box of some crayons for his birthday. During the school year he gave 563 crayons to his friends while he lost 558 crayons. If he only had 332 crayons left. How many crayons did he get for his birthday?", + "Output Program": [ + "print( ( 563.0 + 558.0 ) + 332.0 )" + ], + "Output Answer": [ + "1453" + ], + "split": "train" + }, + { + "Input": "Jake has 3 fewer peaches than Steven who has 8 more peaches than Jill. Steven has 5 peaches.. How many more peaches does Jake have than Jill?", + "Output Program": [ + "print( 8.0 - 3.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "7 red peaches, 71 yellow peaches and 8 green peaches are in the basket.. How many more green peaches than red peaches are in the basket?", + "Output Program": [ + "print( 8.0 - 7.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 8 pages of math homework. If she had to complete 6 more pages of reading homework than math homework. How many pages of reading homework did she have to complete?", + "Output Program": [ + "print( 8.0 + 6.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "The ring toss game at the carnival made the same amount of money each day. In total in 5 days they earned 165 dollars.. How much did they make per day?", + "Output Program": [ + "print( 165.0 / 5.0 )" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 132 visitors came to the Buckingham palace that day. If 406 people visited the Buckingham palace within the past 327 days. How many visitors visited the Buckingham palace on the previous day?", + "Output Program": [ + "print( 406.0 - 132.0 )" + ], + "Output Answer": [ + "274" + ], + "split": "train" + }, + { + "Input": "Allan brought 5 balloons to the park. If Jake brought 6 more balloons than the number of balloons that Allan brought. How many balloons did Jake bring to the park?", + "Output Program": [ + "print( 5.0 + 6.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "There are a total of 16 peaches in a basket. If there are 13 red peaches and some more green peaches in the basket.. How many green peaches are in the basket?", + "Output Program": [ + "print( 16.0 - 13.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "A waiter had 13 customers. After some left he got 4 new customers. If he still had 9 customers. How many customers left?", + "Output Program": [ + "print( 13.0 - ( 9.0 - 4.0 ) )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Rebecca wants to split a collection of eggs into groups of 3. Rebecca has 99 bananas 9 eggs and 27 marbles.. How many groups will be created?", + "Output Program": [ + "print( 9.0 / 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Jack received 4 emails in the morning, 5 emails in the afternoon and 8 emails in the evening.. How many emails did Jack receive in the afternoon and evening?", + "Output Program": [ + "print( 5.0 + 8.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Paul got a box of some crayons for his birthday. By the end of the school year he only had 291 crayons left since he had either lost or given away 315 of them.. How many crayons did he get for his birthday?", + "Output Program": [ + "print( 315.0 + 291.0 )" + ], + "Output Answer": [ + "606" + ], + "split": "train" + }, + { + "Input": "Rachel has 3 apple trees. She picked 8 apples from each of her trees. Now the trees have a total 9 apples still on them.. How many apples were there on all trees initially?", + "Output Program": [ + "print( ( 3.0 * 8.0 ) + 9.0 )" + ], + "Output Answer": [ + "33" + ], + "split": "train" + }, + { + "Input": "At the zoo, a cage had 95 snakes and 61 alligators. If 64 snakes were hiding. How many snakes were not hiding?", + "Output Program": [ + "print( 95.0 - 64.0 )" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": "A chef had 40 apples and 54 peaches. After making some pies, he had 39 apples left.. How many apples did he use?", + "Output Program": [ + "print( 40.0 - 39.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Jack received 10 emails in the morning, 7 emails in the afternoon and 17 emails in the evening.. How many more emails did Jack receive in the morning than in the afternoon?", + "Output Program": [ + "print( 10.0 - 7.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Being his favorite, he saved checking on the grapevines for his last stop. He was told by 94 of the pickers that they fill 90 drums of grapes in 6 days.. How many drums of grapes would be filled per day?", + "Output Program": [ + "print( 90.0 / 6.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Matthew gave equal numbers of crackers and cakes to his 28 friends. If he had 13 crackers and 15 cakes initially. How many crackers and cakes did each person eat?", + "Output Program": [ + "print( ( 13.0 + 15.0 ) / 28.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "There were 13 roses and 84 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 91 orchids and 14 roses in the vase.. How many roses did she cut?", + "Output Program": [ + "print( 14.0 - 13.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 9 cups of flour and 11 cups of sugar. She already put in 4 cups of flour.. How many more cups of sugar than cups of flour does she need to add now?", + "Output Program": [ + "print( 11.0 - ( 9.0 - 4.0 ) )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Ed had 30 more marbles than Doug. Ed lost 21 of his marbles at the playground. If Ed had 91 marbles. How many more marbles did Ed have than Doug then?", + "Output Program": [ + "print( 30.0 - 21.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "At the arcade Dave had won 14 tickets and lost 2 tickets. If he used 10 to buy some toys. How many tickets did Dave have left?", + "Output Program": [ + "print( ( 14.0 - 2.0 ) - 10.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Rebecca wants to split a collection of marbles into groups of 4. Rebecca has 10 eggs and 20 marbles.. How many groups will be created?", + "Output Program": [ + "print( 20.0 / 4.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Tiffany was collecting cans for recycling. On monday she had some bags of cans. The next day she found 4 more bags worth of cans. If she had a total of 8 bags altogether. How many bags did she have on monday?", + "Output Program": [ + "print( 8.0 - 4.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Marco and his dad went strawberry picking. Marco's strawberries weighed 30 pounds. If together their strawberries weighed 47 pounds.. How much more did his strawberries weigh than his dad's?", + "Output Program": [ + "print( 30.0 - ( 47.0 - 30.0 ) )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "After making some pies, chef had 2 apples left. Initially he had 43 apples. How many apples did he use?", + "Output Program": [ + "print( 43.0 - 2.0 )" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 5 pages of math homework and 2 pages of reading homework.. How many more pages of math homework than reading homework did she have?", + "Output Program": [ + "print( 5.0 - 2.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "17 red peaches and 16 green peaches are in the basket.. How many more red peaches than green peaches are in the basket?", + "Output Program": [ + "print( 17.0 - 16.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "For Gwen's birthday she received 5 dollars from her dad. Her mom gave her 7 more dollars. If she spent 4 dollars.. How much more money did she receive from her mom than she did from her dad?", + "Output Program": [ + "print( 7.0 - 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Baker made 110 cakes. He sold 75 of them. Then he made 76 more cakes.. How many cakes would baker still have?", + "Output Program": [ + "print( ( 110.0 - 75.0 ) + 76.0 )" + ], + "Output Answer": [ + "111" + ], + "split": "train" + }, + { + "Input": "The bananas in Philip's collection are organized into groups of size 18. If there are a total of 180 bananas in Philip's banana collection. How many groups are there?", + "Output Program": [ + "print( 180.0 / 18.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Debby bought 360 soda bottles and 162 water bottles when they were on sale. If she drank 122 water bottles and 9 soda bottles a day. How many days would the soda bottles last?", + "Output Program": [ + "print( 360.0 / 9.0 )" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": "Jack received 6 emails in the morning and 2 emails in the afternoon.. How many more emails did Jack receive in the morning than in the afternoon?", + "Output Program": [ + "print( 6.0 - 2.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Paul got a box of 65 crayons for his birthday. During the school year he gave 213 crayons to his friends while he lost 16 crayons.. How many crayons had been lost or given away?", + "Output Program": [ + "print( 213.0 + 16.0 )" + ], + "Output Answer": [ + "229" + ], + "split": "train" + }, + { + "Input": "Mom buys 70 white t - shirts in total. If white t - shirts can be purchased in packages and mom buys 14 packages. How many white t - shirts does each package have?", + "Output Program": [ + "print( 70.0 / 14.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Haley grew 20 trees in her backyard. After a typhoon 4 trees were left.. How many trees died in the typhoon?", + "Output Program": [ + "print( 20.0 - 4.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 5 cups of flour and 14 cups of sugar. She already put in 10 cups of flour and 2 cups of sugar.. How many more cups of sugar does she need to add?", + "Output Program": [ + "print( 14.0 - 2.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Baker made 173 cakes. He bought 103 new cakes and sold 86 cakes.. How many cakes does baker still have?", + "Output Program": [ + "print( ( 173.0 - 86.0 ) + 103.0 )" + ], + "Output Answer": [ + "190" + ], + "split": "train" + }, + { + "Input": "He also had 26 aquariums for saltwater animals. The aquarium had 52 saltwater animals in total and every aquarium had the same number of animals.. How many saltwater animals does each aquarium have?", + "Output Program": [ + "print( 52.0 / 26.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "There were 21 roses in the vase. Jessica threw away 34 roses from the vase and cut some more new roses from her flower garden to put in the vase. There are now 15 roses in the vase.. How many more roses did she throw away than those she cut from her garden?", + "Output Program": [ + "print( 21.0 - 15.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "There were some birds sitting on the fence. 4 more birds came to join them. If there are a total of 5 birds on the fence now. How many birds had been sitting on the fence at the start?", + "Output Program": [ + "print( 5.0 - 4.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "During summer break 819058 kids from Lawrence county go to camp and the other 668278 kids stay home.. How many more kids spent their summer break at the camp compared to those who stayed home?", + "Output Program": [ + "print( 819058.0 - 668278.0 )" + ], + "Output Answer": [ + "150780" + ], + "split": "train" + }, + { + "Input": "Melissa scored 12 points in each game. If she scored a total of 36 points. How many games did she play?", + "Output Program": [ + "print( 36.0 / 12.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Jake has 84 more apples and 10 fewer peaches than Steven. Steven has 13 peaches and 52 apples.. How many peaches does Jake have?", + "Output Program": [ + "print( 13.0 - 10.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 6 cups of flour and 13 cups of sugar. She already put in some cups of flour. If she still needs 8 more cups of flour than sugar. How many more cups of flour does she need to add?", + "Output Program": [ + "print( 13.0 + 8.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Next on his checklist is wax to stick the feathers together. If the feathers require 166 g of wax and right now he has 20 g. How many more grams of wax does he need?", + "Output Program": [ + "print( 166.0 - 20.0 )" + ], + "Output Answer": [ + "146" + ], + "split": "train" + }, + { + "Input": "Because of the decision Sofia asked 310 students to suggest specific types of food. 185 students suggested adding mashed potatoes while others suggested adding bacon to the menu.. How many students suggested bacon?", + "Output Program": [ + "print( 310.0 - 185.0 )" + ], + "Output Answer": [ + "125" + ], + "split": "train" + }, + { + "Input": "In Haley's class some boys love to play marbles. Haley gives 2 marbles to each boy. If she had 28 marbles. How many boys did she give the marbles to?", + "Output Program": [ + "print( 28.0 / 2.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Paco had 40 cookies. He ate 2 of them. Then he bought 37 more cookies. How many cookies did Paco have left?", + "Output Program": [ + "print( ( 40.0 - 2.0 ) + 37.0 )" + ], + "Output Answer": [ + "75" + ], + "split": "train" + }, + { + "Input": "Lawrence county has 313473 kids. During summer break 274865 kids stay home and the rest go to camp.. How many kids go to the camp during the break?", + "Output Program": [ + "print( 313473.0 - 274865.0 )" + ], + "Output Answer": [ + "38608" + ], + "split": "train" + }, + { + "Input": "Haley grew 9 trees in her backyard. After a typhoon 4 died. Then she grew 5 more trees.. How many trees does she have left?", + "Output Program": [ + "print( ( 9.0 - 4.0 ) + 5.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 38 bird families living near the mountain. If 47 bird families flew away to africa and 94 bird families flew away to asia. How many more bird families flew away to asia than those that flew away to africa?", + "Output Program": [ + "print( 94.0 - 47.0 )" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": "Brenda's mother made cookies for guests. Each guest had 2 cookies. If she prepared a total of 10 cookies. How many guests did she prepare cookies for?", + "Output Program": [ + "print( 10.0 / 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Dave had 15 apps on his phone. He added 71 new apps. After deleting some he had 14 left.. How many more apps did he delete than he added?", + "Output Program": [ + "print( 15.0 - 14.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Paige was helping her mom plant flowers and together they planted 55 seeds. They put 15 seeds in each flower bed and only 60 seeds grew into flowers in each flower bed.. How many flowers did they grow?", + "Output Program": [ + "print( 60.0 * ( 55.0 / 15.0 ) )" + ], + "Output Answer": [ + "220" + ], + "split": "train" + }, + { + "Input": "Faye was placing her pencils into rows with 16 pencils in each row. She had 28 packs of pencils each one having 24 pencils.. How many rows could she make?", + "Output Program": [ + "print( 28.0 * ( 24.0 / 16.0 ) )" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 31 sacks of ripe oranges and 24 sacks of unripe oranges per day.. How many sacks of unripe oranges will they have after 45 days of harvest?", + "Output Program": [ + "print( 24.0 * 45.0 )" + ], + "Output Answer": [ + "1080" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 12 cups of flour and 5 cups of sugar. She already put in some cups of flour. If she still needs 2 more cups of flour. How many cups of flour did she put in?", + "Output Program": [ + "print( 12.0 - 2.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Rachel picked 4 apples from her tree. If the tree had 7 apples initially.. How many apples are still there on the tree?", + "Output Program": [ + "print( 7.0 - 4.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 82 sacks of ripe oranges and 61 sacks of unripe oranges per day.. How many sacks of ripe oranges will they have after 25 days of harvest?", + "Output Program": [ + "print( 82.0 * 25.0 )" + ], + "Output Answer": [ + "2050" + ], + "split": "train" + }, + { + "Input": "Debby bought 264 water bottles when they were on sale. If she drank 15 bottles a day for 11 days.. How many bottles does she have left?", + "Output Program": [ + "print( 264.0 - ( 15.0 * 11.0 ) )" + ], + "Output Answer": [ + "99" + ], + "split": "train" + }, + { + "Input": "The Ferris wheel in paradise park has 4 seats. If 20 people can ride the wheel at the same time. How many people can each seat hold?", + "Output Program": [ + "print( 20.0 / 4.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Allan brought 2 balloons to the park and then bought 3 more balloons there. If Jake brought 6 balloons to the park. How many more balloons did Jake have than Allan in the park?", + "Output Program": [ + "print( 6.0 - ( 2.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 9 cups of sugar 14 cups of flour and 40 cups of salt. She already put in 4 cups of flour.. How many more cups of flour than cups of sugar does she need to add now?", + "Output Program": [ + "print( ( 14.0 - 4.0 ) - 9.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 228 students suggested adding mashed potatoes 337 suggested adding bacon to the menu and 23 suggested adding tomatoes. How many more students suggested bacon than those that suggested tomatoes?", + "Output Program": [ + "print( 337.0 - 23.0 )" + ], + "Output Answer": [ + "314" + ], + "split": "train" + }, + { + "Input": "Last week Fred had 33 dollars and Jason had 95 dollars. Over the weekend Fred delivered newspapers earning 16 dollars and washed cars earning 74 dollars.. How much money did Fred earn over the weekend?", + "Output Program": [ + "print( 16.0 + 74.0 )" + ], + "Output Answer": [ + "90" + ], + "split": "train" + }, + { + "Input": "After resting they decided to go for a swim. The depth of the water is 5 times Ron's height. Dean is 11 feet shorter than Ron. If Ron stands at 12 feet. How deep was the water?", + "Output Program": [ + "print( 12.0 * 5.0 )" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "Jessie weighed 92 kilograms. After she started to go jogging everyday she lost 56 kilograms in the first week and 99 kilograms in the second week.. How much did she weigh after the first week of jogging?", + "Output Program": [ + "print( 92.0 - 56.0 )" + ], + "Output Answer": [ + "36" + ], + "split": "train" + }, + { + "Input": "A grocery store had a total of 17 bottles of which 9 were bottles of regular soda and the rest were bottles of diet soda. They also had 29 apple.. How many bottles of diet soda did they have?", + "Output Program": [ + "print( 17.0 - 9.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Matthew gave equal numbers of crackers and cakes to his 4 friends. If he had 32 crackers and 98 cakes initially. How many crackers did each person eat?", + "Output Program": [ + "print( 32.0 / 4.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Randy has 58 blocks. He uses 27 blocks to build a tower and 53 blocks to build a house.. How many blocks did he use to build the tower and the house altogether?", + "Output Program": [ + "print( 27.0 + 53.0 )" + ], + "Output Answer": [ + "80" + ], + "split": "train" + }, + { + "Input": "They decided to hold the party in their backyard. If they have 5 sets of tables and each set has 10 chairs. How many more chairs than tables do they have?", + "Output Program": [ + "print( ( 5.0 * 10.0 ) - 5.0 )" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There were 39 paintings in the Buckingham palace. There, Rachel learned that 661 visitors came to the Buckingham palace that day. If there were 600 visitors the previous day. How many more visitors visited the Buckingham palace on that day than on the previous day?", + "Output Program": [ + "print( 661.0 - 600.0 )" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": "Haley grew 14 trees in her backyard. After a typhoon 9 died.. How many more trees died in the typhoon than those that survived?", + "Output Program": [ + "print( 9.0 - ( 14.0 - 9.0 ) )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Paco had 40 sweet cookies and 25 salty cookies. He ate 28 salty cookies and 15 sweet cookies.. How many more salty cookies than sweet cookies did he eat?", + "Output Program": [ + "print( 28.0 - 15.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "An industrial machine made 13 shirts yesterday and 3 shirts today. It can make 8 shirts a minute.. How many minutes did the machine work in all?", + "Output Program": [ + "print( ( 13.0 + 3.0 ) / 8.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "After a typhoon, 13 trees in Haley's backyard died. If she had grown 3 trees initially. How many more trees died in the typhoon than those that survived?", + "Output Program": [ + "print( 13.0 - ( 3.0 - 13.0 ) )" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "Zachary did 53 push-ups and 14 crunches in gym class today. David did 17 more push-ups but 10 less crunches than zachary.. How many push-ups and crunches did Zachary do?", + "Output Program": [ + "print( 53.0 + 14.0 )" + ], + "Output Answer": [ + "67" + ], + "split": "train" + }, + { + "Input": "There are 4502 skittles in Steven's skittles collection. Steven also has 4276 erasers. If the skittles and erasers are organized into 154 groups. How big is each group?", + "Output Program": [ + "print( ( 4502.0 + 4276.0 ) / 154.0 )" + ], + "Output Answer": [ + "57" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 7 pages of math homework. If she had to complete 4 more pages of math homework than reading homework. How many pages of reading homework did she have to complete?", + "Output Program": [ + "print( 7.0 - 4.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Some campers went rowing in the morning while 7 campers went rowing in the afternoon. If a total of 60 campers went rowing that day. How many campers went rowing in the morning?", + "Output Program": [ + "print( 60.0 - 7.0 )" + ], + "Output Answer": [ + "53" + ], + "split": "train" + }, + { + "Input": "A waiter had 8 customers. After some left he still had 5 customers. Then he got 99 new customers. How many customers left?", + "Output Program": [ + "print( 8.0 - 5.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Melissa scored a total of 91 points in 13 games scoring the same for each game.. How many points did she score in each game?", + "Output Program": [ + "print( 91.0 / 13.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Jake has 5 fewer peaches than Steven. Steven has 18 more peaches than Jill. If Jill has 87 peaches. How many more peaches does Jake have than Jill?", + "Output Program": [ + "print( 18.0 - 5.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "After resting they decided to go for a swim. The depth of the water is 15 times Dean's height. Dean is 4 feet taller than Ron. If Ron stands at 13 feet. How deep was the water?", + "Output Program": [ + "print( ( 4.0 + 13.0 ) * 15.0 )" + ], + "Output Answer": [ + "255" + ], + "split": "train" + }, + { + "Input": "There are 466 pots. Each pot has 53 flowers and 181 sticks in it.. How many flowers and sticks are there in all?", + "Output Program": [ + "print( ( 53.0 + 181.0 ) * 466.0 )" + ], + "Output Answer": [ + "109044" + ], + "split": "train" + }, + { + "Input": "Adam could fit 11 action figures on each shelf in his room. His room has 4 shelves and 40 cabinets.. How many total action figures could his shelves hold?", + "Output Program": [ + "print( 11.0 * 4.0 )" + ], + "Output Answer": [ + "44" + ], + "split": "train" + }, + { + "Input": "Kelly has 20 nintendo games and 70 sony games.. How many nintendo games does she need to give away so that she will have 12 nintendo games left?", + "Output Program": [ + "print( 20.0 - 12.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Dan has $ 5. He bought a chocolate for $ 3 and a candy bar for $ 7.. How much money did he spend to buy candy bar than he did to buy chocolate?", + "Output Program": [ + "print( 7.0 - 3.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Marco and his dad went strawberry picking. Together their strawberries weighed 20 pounds. His dad's strawberries weighed 17 pounds.. How much did marco's strawberries weigh?", + "Output Program": [ + "print( 20.0 - 17.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Jerry had 3 books and 4 action figures on a shelf in his room. Later he added 2 more action figures to the shelf.. How many more action figures than books were on his shelf?", + "Output Program": [ + "print( ( 4.0 + 2.0 ) - 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Dan has $ 4. He bought a candy bar for $ 7 and a chocolate for $ 6.. How much money did he spend buying the candy bar and chocolate?", + "Output Program": [ + "print( 7.0 + 6.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "There are 22 different books and 10 different movies in the ' crazy silly school ' series. If you read 12 of the books and watched 56 of the movies. How many more books do you still have to read?", + "Output Program": [ + "print( 22.0 - 12.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "At the arcade Dave had won 13 tickets. If he used 8 to buy some toys and 18 more to buy some clothes. How many more tickets did Dave use to buy clothes than he did to buy toys?", + "Output Program": [ + "print( 18.0 - 8.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Robin's hair was 16 inches long. He cut off 11 inches. Then it again grew by 12 inches.. How long is his hair now?", + "Output Program": [ + "print( ( 16.0 - 11.0 ) + 12.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "6 storks and 2 birds were sitting on the fence. 3 more birds came to join them.. How many more storks than birds are sitting on the fence?", + "Output Program": [ + "print( 6.0 - ( 2.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 14 inches. The mouse jumped 16 inches lesser than the frog who jumped 37 inches farther than the grasshopper.. How much farther did the mouse jump than the grasshopper?", + "Output Program": [ + "print( 37.0 - 16.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Faye was placing 12 pencils equally into 3 rows.. How many pencils did she place in each row?", + "Output Program": [ + "print( 12.0 / 3.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Rachel has 52 apple trees. She picked 2 apples from 1 of her trees. Now the tree has 7 apples still on it.. How many apples did the tree have to begin with?", + "Output Program": [ + "print( 2.0 + 7.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "In a school there are 458 more girls than boys. If there are 692 girls. How many pupils are there in that school?", + "Output Program": [ + "print( ( 692.0 + 692.0 ) - 458.0 )" + ], + "Output Answer": [ + "926" + ], + "split": "train" + }, + { + "Input": "Carol was sending out birthday invitations to her friends. Each package of invitations she bought had 3 invitations in it and she bought 2 packs. If she wants to invite 9 friends. How many extra invitations will she need to buy?", + "Output Program": [ + "print( 9.0 - ( 3.0 * 2.0 ) )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "36 children were riding on the bus. At the bus stop 68 children got off the bus while some more got on the bus. Then there were 12 children altogether on the bus.. How many more children got off the bus than those that got on?", + "Output Program": [ + "print( 36.0 - 12.0 )" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Dave had 10 apps on his phone. He added 11 new apps. After deleting some he had 4 left.. How many apps did he delete?", + "Output Program": [ + "print( ( 10.0 + 11.0 ) - 4.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "For Gwen's birthday she received 7 dollars. She spent some money and has 5 dollars left with her.. How much money did she spend?", + "Output Program": [ + "print( 7.0 - 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Bobby ate 17 pieces of candy. Then he ate 15 more. If he initially had 36 pieces of candy. How many pieces of candy does he still have left?", + "Output Program": [ + "print( 36.0 - ( 17.0 + 15.0 ) )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Jack received 9 emails in the morning, 10 emails in the afternoon and 7 emails in the evening.. How many more emails did Jack receive in the morning than in the evening?", + "Output Program": [ + "print( 9.0 - 7.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Matthew gave equal numbers of crackers and cakes to his 4 friends. If he had 10 crackers and 8 cakes initially. How many cakes did each person eat?", + "Output Program": [ + "print( 8.0 / 4.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "They decided to hold the party in their backyard. They have 12 sets of tables and each set has 14 chairs. There are also 6 chairs extra.. How many chairs do they have for the guests?", + "Output Program": [ + "print( ( 12.0 * 14.0 ) + 6.0 )" + ], + "Output Answer": [ + "174" + ], + "split": "train" + }, + { + "Input": "Paul had 51 books and 106 pens. After selling some books and pens in a garage sale he had 82 books and 14 pens left.. How many pens did he sell in the garage sale?", + "Output Program": [ + "print( 106.0 - 14.0 )" + ], + "Output Answer": [ + "92" + ], + "split": "train" + }, + { + "Input": "Zachary did 51 push-ups and David did 44 push-ups in gym class today.. How many more push-ups did Zachary do than David?", + "Output Program": [ + "print( 51.0 - 44.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Robin's hair was 14 inches long. It grew by 8 inches. Then he cut off 20 inches.. How long is his hair now?", + "Output Program": [ + "print( ( 14.0 - 20.0 ) + 8.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "There were 53 dollars in Olivia's wallet. She collected 91 more dollars from an atm. After she visited a supermarket there were 14 dollars left.. How much more money did she spend at the supermarket than she collected at the atm?", + "Output Program": [ + "print( 53.0 - 14.0 )" + ], + "Output Answer": [ + "39" + ], + "split": "train" + }, + { + "Input": "Every day Ryan spends 5 hours on learning english and 4 hours on learning chinese. If he learns for 6 days. How many hours does he spend on learning chinese in all?", + "Output Program": [ + "print( 4.0 * 6.0 )" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Josh had 7 marbles in his collection. He lost 8 marbles and found 10 new ones.. How many more marbles did he find than those he lost?", + "Output Program": [ + "print( 10.0 - 8.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "There were 61 parents in the program and 177 pupils too. The program could seat 44 people. How many people were present in the program?", + "Output Program": [ + "print( 61.0 + 177.0 )" + ], + "Output Answer": [ + "238" + ], + "split": "train" + }, + { + "Input": "Matthew had 22 crackers and 34 cakes. If Matthew gave equal numbers of crackers and cakes to his 11 friends. How many crackers did each person eat?", + "Output Program": [ + "print( 22.0 / 11.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Jack received 10 emails and 12 letters in the morning. He then received 3 emails and 44 letters in the afternoon.. How many more emails did Jack receive in the morning than in the afternoon?", + "Output Program": [ + "print( 10.0 - 3.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "A farmer had 175 tomatoes and 77 potatoes in his garden. If he picked 172 potatoes. How many tomatoes and potatoes does he have left?", + "Output Program": [ + "print( ( 175.0 + 77.0 ) - 172.0 )" + ], + "Output Answer": [ + "80" + ], + "split": "train" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 45 visitors came to the Buckingham palace on the previous day. If 829 people visited the Buckingham palace within the past 85 days. How many visitors visited the Buckingham palace on that day?", + "Output Program": [ + "print( 829.0 - 45.0 )" + ], + "Output Answer": [ + "784" + ], + "split": "train" + }, + { + "Input": "Dave had 17 apps and 21 files on his phone. After deleting some apps and files he had 3 apps and 7 files left.. How many files did he delete?", + "Output Program": [ + "print( 21.0 - 7.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "The Razorback t-shirt shop sells each t-shirt for $ 51 dollars. During the Arkansas and Texas tech game they offered a discount of $ 8 per t-shirt and sold 130 t-shirts.. How much money did they make from selling the t-shirts?", + "Output Program": [ + "print( ( 51.0 - 8.0 ) * 130.0 )" + ], + "Output Answer": [ + "5590" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 11 cups of sugar and some more cups of flour. She already put in 3 cups of flour. If she still needs to add 6 more cups of flour. How many cups of flour did the recipe require?", + "Output Program": [ + "print( 3.0 + 6.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "33 campers went rowing in the morning 34 campers went rowing in the afternoon and 10 campers went rowing in the evening.. How many more campers went rowing in the afternoon than in the evening?", + "Output Program": [ + "print( 34.0 - 10.0 )" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Nell collects cards. She had 438 baseball cards and 18 Ace cards. She gave some of her cards to Jeff and now has 55 Ace cards and 178 baseball cards left.. How many more baseball cards than Ace cards does Nell have?", + "Output Program": [ + "print( 178.0 - 55.0 )" + ], + "Output Answer": [ + "123" + ], + "split": "train" + }, + { + "Input": "A grocery store had 30 bottles of regular soda, 8 bottles of diet soda and 41 apples.. How many bottles did they have total?", + "Output Program": [ + "print( 30.0 + 8.0 )" + ], + "Output Answer": [ + "38" + ], + "split": "train" + }, + { + "Input": "Jake has 8 fewer peaches and 10 more apples than Steven. Steven has 11 apples and 18 peaches.. How many more peaches than apples does Steven have?", + "Output Program": [ + "print( 18.0 - 11.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 3 pages of math homework and 4 pages of reading homework.. How many more pages of reading homework than math homework did she have?", + "Output Program": [ + "print( 4.0 - 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Steven has 14 peaches. Jake has 6 fewer peaches than Steven and 3 more peaches than Jill.. How many peaches does Jill have?", + "Output Program": [ + "print( ( 14.0 - 6.0 ) - 3.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Bryan took a look at his books as well. If he has a total of 42 books and each bookshelf contains 2 books. How many bookshelves does he have?", + "Output Program": [ + "print( 42.0 / 2.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 31 cookies yesterday 270 cookies this morning and 419 cookies the day before yesterday.. How many cookies did Helen bake till last night?", + "Output Program": [ + "print( 31.0 + 419.0 )" + ], + "Output Answer": [ + "450" + ], + "split": "train" + }, + { + "Input": "For Gwen's birthday she received some dollars. She spent 8 dollars and has 6 dollars left with her.. How much money did Gwen receive for her birthday?", + "Output Program": [ + "print( 8.0 + 6.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Jesse's room is 2 feet long and 12 feet wide. If each tile is of size 4 square feet. How many tiles does she need to cover the whole floor?", + "Output Program": [ + "print( ( 2.0 * 12.0 ) / 4.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Melissa scored a total of 21 points playing some games. Is she scored 7 points in each game.. How many games did she play?", + "Output Program": [ + "print( 21.0 / 7.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "At the zoo, a cage had 3 snakes and 75 alligators. If 82 snakes and 19 alligators were hiding. How many alligators were not hiding?", + "Output Program": [ + "print( 75.0 - 19.0 )" + ], + "Output Answer": [ + "56" + ], + "split": "train" + }, + { + "Input": "Dave had 11 apps and 3 files on his phone. After deleting some apps and files he had 24 files and 2 apps left.. How many more files than apps does he have left on the phone?", + "Output Program": [ + "print( 24.0 - 2.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "There are some baskets of peaches. Each basket has 4 red peaches and 3 green peaches. If there are a total of 7 peaches in all baskets. How many baskets of peaches are there?", + "Output Program": [ + "print( 7.0 / ( 4.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 9 pages of math homework, 2 pages of reading homework and 96 more pages of biology homework.. How many more pages of math homework than reading homework did she have?", + "Output Program": [ + "print( 9.0 - 2.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "After finding some bottle caps at the park danny has 32 bottle caps in his collection. If he had 25 bottle caps in his collection earlier. How many bottle caps did he find at the park?", + "Output Program": [ + "print( 32.0 - 25.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Frank was reading through his favorite book. The book had 555 pages equally distributed over 5 chapters. It took Frank 220 days to finish the book.. How many pages are in each chapter?", + "Output Program": [ + "print( 555.0 / 5.0 )" + ], + "Output Answer": [ + "111" + ], + "split": "train" + }, + { + "Input": "Jerry had 7 action figures on a shelf in his room. Later he added some more action figures to the shelf and removed 10 of the old ones. If there are 8 action figures on his shelf now. How many action figures did he add to the shelf?", + "Output Program": [ + "print( ( 8.0 + 10.0 ) - 7.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "A grocery store had 67 bottles of regular soda and 9 bottles of diet soda.. How many more bottles of regular soda than diet soda did they have?", + "Output Program": [ + "print( 67.0 - 9.0 )" + ], + "Output Answer": [ + "58" + ], + "split": "train" + }, + { + "Input": "Paco had 28 cookies. He ate some of them and had 7 cookies left.. How many cookies did Paco eat?", + "Output Program": [ + "print( 28.0 - 7.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "Dave had 24 files and 13 apps on his phone. After deleting some apps and files he had 17 apps and 21 files left.. How many files did he delete?", + "Output Program": [ + "print( 24.0 - 21.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Luke scored 84 points after playing 2 rounds of a trivia game. If he gained the same number of points each round. How many points did he score per round?", + "Output Program": [ + "print( 84.0 / 2.0 )" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "Paige raised 7 goldfish and 12 catfish in the pond but stray cats loved eating them. Now she has 15 left.. How many fishes disappeared?", + "Output Program": [ + "print( ( 7.0 + 12.0 ) - 15.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Matthew had 8 crackers to give to friends. If Matthew gave 2 crackers to each his friends. How many friends did he give crackers to?", + "Output Program": [ + "print( 8.0 / 2.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Jessie currently weighs 27 kilograms. After she started to go jogging everyday she lost 101 kilograms.. How much did she weigh before starting to jog?", + "Output Program": [ + "print( 27.0 + 101.0 )" + ], + "Output Answer": [ + "128" + ], + "split": "train" + }, + { + "Input": "For the walls of the house he would use 11 nails in all to secure large planks of wood. If each plank needs 3 pieces of nails to be secured and an additional 8 nails were used.. How many planks does John need for the house wall?", + "Output Program": [ + "print( ( 11.0 - 8.0 ) / 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "A farmer had 177 tomatoes and 12 potatoes in his garden. If he picked 53 tomatoes. How many tomatoes and potatoes does he have left?", + "Output Program": [ + "print( ( 177.0 + 12.0 ) - 53.0 )" + ], + "Output Answer": [ + "136" + ], + "split": "train" + }, + { + "Input": "Josh had 21 marbles in his collection. He found 7 marbles.. How many marbles does he have now?", + "Output Program": [ + "print( 21.0 + 7.0 )" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "Each pack of dvds costs 76 dollars. If there is a discount of 25 dollars on each pack. How much do you have to pay to buy each pack?", + "Output Program": [ + "print( 76.0 - 25.0 )" + ], + "Output Answer": [ + "51" + ], + "split": "train" + }, + { + "Input": "Bryan took a look at his books and magazines. If he has 23 books and 61 magazines in each of his 29 bookshelves. How many books and magazines does he have in total?", + "Output Program": [ + "print( ( 23.0 + 61.0 ) * 29.0 )" + ], + "Output Answer": [ + "2436" + ], + "split": "train" + }, + { + "Input": "Paul had 108 books and 55 pens. After selling some books and pens in a garage sale he had 66 books and 59 pens left.. How many books did he sell in the garage sale?", + "Output Program": [ + "print( 108.0 - 66.0 )" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "Nell collects baseball cards. She had 528 cards while Jeff had 11 cards. She gave some of her cards to jeff and now has 252 cards left.. How many cards did Nell give to Jeff?", + "Output Program": [ + "print( 528.0 - 252.0 )" + ], + "Output Answer": [ + "276" + ], + "split": "train" + }, + { + "Input": "There are 6 houses on a block. If a mailman has to give 24 pieces of junk mail to each block. How many pieces of junk mail should he give in each house?", + "Output Program": [ + "print( 24.0 / 6.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "The ring toss game at the carnival made 144 dollars per day. They were at the carnival for 22 days.. How much money did they make?", + "Output Program": [ + "print( 144.0 * 22.0 )" + ], + "Output Answer": [ + "3168" + ], + "split": "train" + }, + { + "Input": "You have read 8 books from the ' crazy silly school ' series. If there are a total of 14 different books in the ' crazy silly school ' series. How many more do you still have to read?", + "Output Program": [ + "print( 14.0 - 8.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "5 storks and 3 birds were sitting on the fence. 4 more birds came to join them.. How many more birds than storks are sitting on the fence?", + "Output Program": [ + "print( ( 3.0 + 4.0 ) - 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "They decided to hold the party in their backyard. They have 4 sets of tables and each set has 3 chairs. If a total of 14 people will attend the party. How many more chairs will they have to buy?", + "Output Program": [ + "print( 14.0 - ( 4.0 * 3.0 ) )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Lewis earns a total of $ 1216 during the harvest. If he earns $ 16 each week. How many weeks did the harvest last?", + "Output Program": [ + "print( 1216.0 / 16.0 )" + ], + "Output Answer": [ + "76" + ], + "split": "train" + }, + { + "Input": "Faye was placing her pencils and crayons into 16 rows with 6 crayons and 21 pencils in each row.. How many crayons does she have?", + "Output Program": [ + "print( 16.0 * 6.0 )" + ], + "Output Answer": [ + "96" + ], + "split": "train" + }, + { + "Input": "Randy has 95 blocks. He uses 20 blocks to build a house and 50 blocks to build a tower.. How many more blocks did he use to build the tower than he did to build the house?", + "Output Program": [ + "print( 50.0 - 20.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Baker made 7 cakes and 148 pastries. If he sold 15 cakes and 103 pastries. How many pastries would baker still have?", + "Output Program": [ + "print( 148.0 - 103.0 )" + ], + "Output Answer": [ + "45" + ], + "split": "train" + }, + { + "Input": "Marco and his dad went strawberry picking. Together they collected strawberries that weighed 36 pounds. On the way back Marco ' dad lost 8 pounds of strawberries. Marco's strawberries now weighed 12 pounds.. How much did his dad's strawberries weigh now?", + "Output Program": [ + "print( ( 36.0 - 12.0 ) - 8.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Rachel's tree had 4 apples. She picked 2 apples from her tree. Thereafter 3 new apples grew on the tree.. How many apples are there on the tree now?", + "Output Program": [ + "print( ( 4.0 - 2.0 ) + 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "There were 10 roses in the vase. Jessica cut 8 more roses from her flower garden and put them in the vase.. How many roses are there in the vase now?", + "Output Program": [ + "print( 10.0 + 8.0 )" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "There were some roses in the vase. Jessica cut 16 more roses from her flower garden and put them in the vase. There are now 23 roses in the vase.. How many roses were there in the vase at the beginning?", + "Output Program": [ + "print( 23.0 - 16.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "43 children were riding on the bus. At the bus stop some children got off the bus. Then there were 21 children left on the bus.. How many children got off the bus at the bus stop?", + "Output Program": [ + "print( 43.0 - 21.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "We ordered 7 pizzas. Each pizza has the same number of slices. If there were a total of 14 slices. How many slices are there in each pizza?", + "Output Program": [ + "print( 14.0 / 7.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Josh had 15 marbles in his collection. He found 9 marbles while he lost 23 marbles.. How many more marbles did he lose than those he found?", + "Output Program": [ + "print( 23.0 - 9.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Paco had 26 salty cookies and 17 sweet cookies. He ate 14 sweet cookies and 9 salty cookies.. How many salty cookies did Paco have left?", + "Output Program": [ + "print( 26.0 - 9.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Dan has $ 3 left with him after he bought a candy bar for $ 2.. How much money did he have initially?", + "Output Program": [ + "print( 3.0 + 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "There are 2 baskets of peaches. Each basket has 4 red peaches and some more green peaches. If there are a total of 12 peaches in all baskets. How many green peaches are in each basket?", + "Output Program": [ + "print( ( 12.0 / 2.0 ) - 4.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Allan brought 3 balloons and Jake brought 5 balloons to the park. Allan then bought 2 more balloons at the park.. How many balloons did Allan and Jake have in the park?", + "Output Program": [ + "print( ( 3.0 + 5.0 ) + 2.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "David did 51 push-ups in gym class today. David did 49 more push-ups than Zachary.. How many push-ups did Zachary and David do altogether?", + "Output Program": [ + "print( ( 51.0 + 51.0 ) - 49.0 )" + ], + "Output Answer": [ + "53" + ], + "split": "train" + }, + { + "Input": "Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 19 chocolate chip cookies yesterday and 231 raisin cookies and 237 chocolate chip cookies this morning.. How many more chocolate chip cookies than raisin cakes did Helen bake?", + "Output Program": [ + "print( ( 19.0 + 237.0 ) - 231.0 )" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Edward had $ 18. He spent $ 16.. How much money does Edward have now?", + "Output Program": [ + "print( 18.0 - 16.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. 86 bird families flew away for the winter from near a mountain. If there were 45 bird families living near the mountain initially. How many more bird families flew away for the winter than those that stayed behind?", + "Output Program": [ + "print( 86.0 - ( 45.0 - 86.0 ) )" + ], + "Output Answer": [ + "127" + ], + "split": "train" + }, + { + "Input": "Tiffany was collecting cans for recycling. On monday she had 10 bags of cans. She found 3 bags of cans on the next day and 7 bags of cans the day after that.. How many bags did she have altogether?", + "Output Program": [ + "print( ( 10.0 + 3.0 ) + 7.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "Paul got a box of 589 crayons for his birthday. During the school year he gave 571 crayons to his friends while he lost 161 crayons.. How many more crayons did he give to his friends than those he lost?", + "Output Program": [ + "print( 571.0 - 161.0 )" + ], + "Output Answer": [ + "410" + ], + "split": "train" + }, + { + "Input": "Matthew had 15 crackers. If Matthew gave equal numbers of crackers to his 5 friends and still had 10 crackers left. How many crackers did each friend eat?", + "Output Program": [ + "print( ( 15.0 - 10.0 ) / 5.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Allan brought 6 balloons and Jake brought 3 balloons to the park. Jake then bought 4 more balloons at the park.. How many more balloons did Jake have than Allan in the park?", + "Output Program": [ + "print( ( 3.0 + 4.0 ) - 6.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "The grasshopper and the frog had a jumping contest. The grasshopper jumped 13 inches. The grasshopper jumped 2 inches farther than the grasshopper.. How far did the frog jump?", + "Output Program": [ + "print( 13.0 - 2.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Julia played tag with 18 kids on monday. She played tag with 10 kids on tuesday.. How many more kids did she play with on monday than on tuesday?", + "Output Program": [ + "print( 18.0 - 10.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "In a school there are 632 girls and 410 boys. 465 more girls joined the school.. How many more girls than boys does the school have?", + "Output Program": [ + "print( ( 632.0 + 465.0 ) - 410.0 )" + ], + "Output Answer": [ + "687" + ], + "split": "train" + }, + { + "Input": "Faye was placing her pencils into rows with 5 pencils in each row. If she had 35 pencils and 7 crayons. How many rows could she make?", + "Output Program": [ + "print( 35.0 / 5.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Dan has $ 4. He bought a chocolate for $ 7 and a candy bar for $ 2.. How much money did he spend to buy chocolate than he did to buy candy bar?", + "Output Program": [ + "print( 7.0 - 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Last week Fred had 49 dollars and Jason had 3 dollars. Fred washed cars over the weekend and now has 112 dollars. Jason delivered newspapers and now has 63 dollars.. How much money did Jason earn by delivering newspapers?", + "Output Program": [ + "print( 63.0 - 3.0 )" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "Allan brought 5 balloons and Jake brought 3 balloons to the park.. How many more balloons did Allan have than Jake in the park?", + "Output Program": [ + "print( 5.0 - 3.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Randy has 90 blocks. He uses 89 blocks to build a house and 63 blocks to build a tower.. How many more blocks did he use to build the house than he did to build the tower?", + "Output Program": [ + "print( 89.0 - 63.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "train" + }, + { + "Input": "Last week Fred had 111 dollars and Jason had 40 dollars. Fred washed cars over the weekend and now has 115 dollars. Jason delivered newspapers and now has 44 dollars.. How much money did they earn by washing cars?", + "Output Program": [ + "print( 115.0 - 111.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "The Ferris wheel in paradise park has some seats. Each seat can hold 9 people. If 18 people can ride the wheel at the same time. How many seats does the Ferris wheel have?", + "Output Program": [ + "print( 18.0 / 9.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Adam could fit 10 action figures on each shelf in his room. His room has could hold 8 action figures.. How many total shelves did his room have?", + "Output Program": [ + "print( 8.0 * 10.0 )" + ], + "Output Answer": [ + "80" + ], + "split": "train" + }, + { + "Input": "15 campers went rowing in the morning. Some more campers went rowing in the afternoon. If a total of 32 campers went rowing that day. How many campers went rowing in the afternoon?", + "Output Program": [ + "print( 32.0 - 15.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Faye was placing her pencils and crayons into 11 rows with 31 pencils and 27 crayons in each row.. How many pencils and crayons does she have altogether?", + "Output Program": [ + "print( ( 31.0 + 27.0 ) * 11.0 )" + ], + "Output Answer": [ + "638" + ], + "split": "train" + }, + { + "Input": "For the walls of the house he would use 12 large planks of wood and 10 small planks. If large planks together need 15 pieces of nails to be secured and small planks together need 5 nails.. How many nails does John need for the house wall?", + "Output Program": [ + "print( 15.0 + 5.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "Paul got a box of 457 erasers and 617 crayons for his birthday. At the end of the school year he only had 523 crayons left while not having lost a single eraser.. How many more crayons than erasers did he have left?", + "Output Program": [ + "print( 523.0 - 457.0 )" + ], + "Output Answer": [ + "66" + ], + "split": "train" + }, + { + "Input": "3 birds and 4 storks were sitting on the fence. 2 more birds came to join them.. How many more birds than storks are sitting on the fence?", + "Output Program": [ + "print( ( 3.0 + 2.0 ) - 4.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Next on his checklist is wax to stick the feathers together and colors to paint them. He needs a total of 57 g of colors to paint them. He needs 22 g of wax more. If the feathers require a total of 353 g of wax. How many grams of wax does he already have?", + "Output Program": [ + "print( 353.0 - 22.0 )" + ], + "Output Answer": [ + "331" + ], + "split": "train" + }, + { + "Input": "Baker made 170 cakes. He sold 78 of them and bought 31 new cakes.. How many more cakes did baker sell than those he bought?", + "Output Program": [ + "print( 78.0 - 31.0 )" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": "Bobby ate 23 pieces of candy. If he initially had 30 pieces of candy. How many pieces of candy does he still have left?", + "Output Program": [ + "print( 30.0 - 23.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Paco had 97 salty cookies and 34 sweet cookies. He ate 15 sweet cookies and 56 salty cookies.. How many sweet cookies did Paco have left?", + "Output Program": [ + "print( 34.0 - 15.0 )" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "3 birds and 4 storks were sitting on the fence. 6 more storks came to join them.. How many birds and storks are sitting on the fence?", + "Output Program": [ + "print( ( 3.0 + 4.0 ) + 6.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "The Razorback shop makes $ 76 dollars off each jersey and $ 204 off each t-shirt. During the Arkansas and Texas tech game they sold 158 t-shirts and 2 jerseys.. How much money did they make from selling the jerseys?", + "Output Program": [ + "print( 76.0 * 2.0 )" + ], + "Output Answer": [ + "152" + ], + "split": "train" + }, + { + "Input": "Matthew had 23 crackers. He has 11 crackers left after he gave equal numbers of crackers to his 2 friends.. How many crackers did each friend eat?", + "Output Program": [ + "print( ( 23.0 - 11.0 ) / 2.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps. He threw away 6 of the old ones at the park while he found 50 bottle caps new ones. Now he has 60 bottle caps in his collection.. How many more bottle caps did danny find at the park than those he threw away?", + "Output Program": [ + "print( 50.0 - 6.0 )" + ], + "Output Answer": [ + "44" + ], + "split": "train" + }, + { + "Input": "Rebecca wants to split a collection of eggs into groups of 5. Rebecca has 20 eggs and 6 marbles.. How many more eggs does Rebecca have than marbles?", + "Output Program": [ + "print( 20.0 - 6.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Zachary did 15 push-ups in gym class today. David did 39 more push-ups than Zachary. John did 9 push-ups less than David.. How many more push-ups did Zachary do than John?", + "Output Program": [ + "print( 39.0 - 9.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "A book has 31 chapters. Each chapter is 61 pages long.. How many pages does the book have altogether?", + "Output Program": [ + "print( 31.0 * 61.0 )" + ], + "Output Answer": [ + "1891" + ], + "split": "train" + }, + { + "Input": "Jesse's room is 19 feet wide and 20 feet long.. How much longer is her room than it is wide?", + "Output Program": [ + "print( 20.0 - 19.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Robin has some packages of gum. There are 7 pieces in each package. Robin has 6 extra pieces of gum. In all the number of pieces of gums robin has is 41.. How many packages does Robin have?", + "Output Program": [ + "print( ( 41.0 - 6.0 ) / 7.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 269 students suggested adding bacon 330 suggested adding mashed potatoes to the menu and 76 suggested adding tomatoes. How many more students suggested mashed potatoes than those that suggested bacon?", + "Output Program": [ + "print( 330.0 - 269.0 )" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": "We ordered 17 pizzas. Each pizza has 4 slices. If there are 25 of us. How many slices of pizza are there altogether?", + "Output Program": [ + "print( 17.0 * 4.0 )" + ], + "Output Answer": [ + "68" + ], + "split": "train" + }, + { + "Input": "The ring toss game at the carnival made 120 dollars in the first 20 days and 66 dollars in the remaining 16 days.. How much did they make per day in the first 20 days at the carnival?", + "Output Program": [ + "print( 120.0 / 20.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Edward spent $ 6 to buy 2 books each book costing him the same amount of money. Now he has $ 12.. How much did each book cost?", + "Output Program": [ + "print( 6.0 / 2.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "A waiter had some customers. After 9 customers left he still had 12 customers.. How many customers did he have at the start?", + "Output Program": [ + "print( 9.0 + 12.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "A book has 3 chapters. The first chapter is 66 pages long the second chapter is 35 pages long and the third chapter is 24 pages long.. How many pages does the book have altogether?", + "Output Program": [ + "print( ( 66.0 + 35.0 ) + 24.0 )" + ], + "Output Answer": [ + "125" + ], + "split": "train" + }, + { + "Input": "Julia played tag with 4 kids on wednesday. She had played with 6 kids on monday and 17 kids on tuesday.. How many more kids did she play with on monday than on wednesday?", + "Output Program": [ + "print( 6.0 - 4.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Paul had some books. After selling 137 in a garage sale he had 105 left.. How many books did he have at the start?", + "Output Program": [ + "print( 137.0 + 105.0 )" + ], + "Output Answer": [ + "242" + ], + "split": "train" + }, + { + "Input": "Dave had 24 apps and 9 files on his phone. After deleting some apps and files he had 5 files and 12 apps left.. How many more apps than files does he have left on the phone?", + "Output Program": [ + "print( 12.0 - 5.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Haley grew some trees in her backyard. After a typhoon 5 died. If 12 trees were left. How many trees did she grow?", + "Output Program": [ + "print( 5.0 + 12.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Baker made 8 cakes. He bought 139 new cakes and sold 145 cakes.. How many more cakes did baker sell than those he bought?", + "Output Program": [ + "print( 145.0 - 139.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Bryan took a look at his books and magazines. If he has 27 books and 80 magazines in each of his 23 bookshelves. How many books does he have in total?", + "Output Program": [ + "print( 27.0 * 23.0 )" + ], + "Output Answer": [ + "621" + ], + "split": "train" + }, + { + "Input": "The Razorback shop makes $ 192 dollars off each t-shirt and $ 34 off each jersey. During the Arkansas and Texas tech game they sold 157 t-shirts and 19 jerseys.. How much more does a t-shirt cost than a jersey?", + "Output Program": [ + "print( 192.0 - 34.0 )" + ], + "Output Answer": [ + "158" + ], + "split": "train" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 703 visitors came to the Buckingham palace on the previous day. If there were 246 visitors on that day. How many visited the Buckingham palace within 25 days?", + "Output Program": [ + "print( 246.0 + 703.0 )" + ], + "Output Answer": [ + "949" + ], + "split": "train" + }, + { + "Input": "Luke played 177 rounds of a trivia game. If he gained 46 points in each round. How many points did he score in the game?", + "Output Program": [ + "print( 177.0 * 46.0 )" + ], + "Output Answer": [ + "8142" + ], + "split": "train" + }, + { + "Input": "Baker made some cakes. He sold 145 of them. If he still has 72 cakes left. How many cakes did baker make?", + "Output Program": [ + "print( 145.0 + 72.0 )" + ], + "Output Answer": [ + "217" + ], + "split": "train" + }, + { + "Input": "An industrial machine can make 3 shirts per minute. It made 6 shirts in all.. How many minutes was the machine working?", + "Output Program": [ + "print( 6.0 / 3.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Faye was placing her pencils and crayons into 7 rows with 36 pencils and 30 crayons in each row.. How many crayons does she have?", + "Output Program": [ + "print( 7.0 * 30.0 )" + ], + "Output Answer": [ + "210" + ], + "split": "train" + }, + { + "Input": "Debby drinks 6 bottles a day. If she bought a total of 12 water bottles. How many days would they last her?", + "Output Program": [ + "print( 12.0 / 6.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Edward spent $ 17. Then he received $ 10 from his friend. Now he has $ 7.. How much did Edward have before he spent his money?", + "Output Program": [ + "print( ( 17.0 - 10.0 ) + 7.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Paco had 39 sweet cookies and 6 salty cookies. He ate 23 salty cookies and 32 sweet cookies.. How many more sweet cookies than salty cookies did he eat?", + "Output Program": [ + "print( 32.0 - 23.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Jack received 4 emails in the morning and some more in the afternoon. If he received a total of 5 emails in the day. How many emails did Jack receive in the afternoon?", + "Output Program": [ + "print( 5.0 - 4.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "22 children were riding on the bus. At the bus stop 40 children got on the bus while some got off the bus. Then there were 2 children altogether on the bus.. How many children got off the bus at the bus stop?", + "Output Program": [ + "print( ( 22.0 + 40.0 ) - 2.0 )" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "Next on his checklist is wax to stick the feathers together and colors to paint them. He needs a total of 49 g of colors to paint them. If the feathers require 288 g of wax and right now he just needs 260 g. How many grams of wax does he already have?", + "Output Program": [ + "print( 288.0 - 260.0 )" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "During summer break 610769 kids from Lawrence county go to camp and the other 590796 kids stay home. An additional 22 kids from outside the county attended the camp.. About how many kids are in Lawrence county?", + "Output Program": [ + "print( 610769.0 + 590796.0 )" + ], + "Output Answer": [ + "1201565" + ], + "split": "train" + }, + { + "Input": "After Olivia visited a supermarket there were 29 dollars left. If there were 54 dollars in her wallet initially. How much did she spend?", + "Output Program": [ + "print( 54.0 - 29.0 )" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "3 birds were sitting on the fence. 2 more birds and 6 more storks came to join them.. How many more storks than birds are sitting on the fence?", + "Output Program": [ + "print( 6.0 - ( 3.0 + 2.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Nell collects cards. She had 309 baseball cards and 356 Ace cards. She gave some of her cards to Jeff and now has 415 baseball cards and Ace cards left.. How many more baseball cards than Ace cards does Nell have?", + "Output Program": [ + "print( 415.0 - 149.0 )" + ], + "Output Answer": [ + "266" + ], + "split": "train" + }, + { + "Input": "Being his favorite, he saved checking on the grapevines for his last stop. He was told by 266 of the pickers that they fill 90 drums of grapes in 5 days.. How many drums of grapes would be filled in each day?", + "Output Program": [ + "print( 90.0 / 5.0 )" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Brenda's mother made cookies for 14. If each of them had 30 cookies. How many cookies did she prepare?", + "Output Program": [ + "print( 14.0 * 30.0 )" + ], + "Output Answer": [ + "420" + ], + "split": "train" + }, + { + "Input": "Next on his checklist is wax to stick the feathers together. If he currently has 11 g of wax and the feathers require a total of 492 g of wax. How many more grams of wax does he need?", + "Output Program": [ + "print( 492.0 - 11.0 )" + ], + "Output Answer": [ + "481" + ], + "split": "train" + }, + { + "Input": "Jack received 3 emails and 64 letters in the morning. He then received 5 emails and 54 letters in the afternoon.. How many emails did jack receive in the day?", + "Output Program": [ + "print( 3.0 + 5.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Rebecca wants to split a collection of eggs into 4 groups. Rebecca has 8 eggs and 6 marbles.. How many eggs will each group have?", + "Output Program": [ + "print( 8.0 / 4.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "36 campers went rowing in the morning 13 campers went rowing in the afternoon and 49 campers went rowing in the evening.. How many campers went rowing in all?", + "Output Program": [ + "print( ( 36.0 + 13.0 ) + 49.0 )" + ], + "Output Answer": [ + "98" + ], + "split": "train" + }, + { + "Input": "In a school there are 34 girls and 841 boys.. How many more boys than girls does the school have?", + "Output Program": [ + "print( 841.0 - 34.0 )" + ], + "Output Answer": [ + "807" + ], + "split": "train" + }, + { + "Input": "There are 10 different books and 6 different movies in the ' crazy silly school ' series. If you read 14 of the movies and watched 19 of the books. How many more books than movies have you read?", + "Output Program": [ + "print( 19.0 - 14.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 15 bottle caps and 18 wrappers at the park. Now he has 67 wrappers and 35 bottle caps in his collection.. How many more wrappers than bottle caps does danny have now?", + "Output Program": [ + "print( 67.0 - 35.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "Jack received 5 emails in the morning, 8 emails in the afternoon and 72 emails in the evening.. How many emails did Jack receive in the morning and afternoon?", + "Output Program": [ + "print( 5.0 + 8.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Being his favorite, he saved checking on the grapevines after 57 stops. He was told by 252 of the pickers that they fill 108 drums of grapes per day.. How many drums of grapes would be filled in 58 days?", + "Output Program": [ + "print( 108.0 * 58.0 )" + ], + "Output Answer": [ + "6264" + ], + "split": "train" + }, + { + "Input": "Lewis earns $ 491 every week during the 1181 weeks of harvest. If he has to pay $ 216 rent every week. How much money will have at the end of the harvest season?", + "Output Program": [ + "print( ( 491.0 - 216.0 ) * 1181.0 )" + ], + "Output Answer": [ + "324775" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 65 sacks of unripe oranges and 46 sacks of ripe oranges per day.. How many sacks of unripe oranges will they have after 6 days of harvest?", + "Output Program": [ + "print( 65.0 * 6.0 )" + ], + "Output Answer": [ + "390" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 76 sacks per day and discard 64 of them.. How many oranges do they harvest per day if each sack contains 50 oranges?", + "Output Program": [ + "print( ( 76.0 - 64.0 ) * 50.0 )" + ], + "Output Answer": [ + "600" + ], + "split": "train" + }, + { + "Input": "Josh had 9 marbles in his collection. He lost some marbles. If he has 4 marbles now. How many marbles did he lose?", + "Output Program": [ + "print( 9.0 - 4.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "A mailman gives 2 junk mails to each house in a block. If the mailman has to give 14 pieces of junk mail to each block.. How many houses are there in a block?", + "Output Program": [ + "print( 14.0 / 2.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "There were 106 dollars in Olivia's wallet. After she visited a supermarket and a showroom there were 26 dollars left. If she spent 49 dollars at the showroom. How much did she spend at the supermarket?", + "Output Program": [ + "print( ( 106.0 - 26.0 ) - 49.0 )" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": "The cave is 1218 feet deep and they are already at 849 feet. If they are travelling at speed of 17. How much farther until they reach the end of the cave?", + "Output Program": [ + "print( 1218.0 - 849.0 )" + ], + "Output Answer": [ + "369" + ], + "split": "train" + }, + { + "Input": "Marco and his dad went strawberry picking. Marco's strawberries weighed 15 pounds. If together their strawberries weighed 37 pounds.. How much did his dad's strawberries weigh?", + "Output Program": [ + "print( 37.0 - 15.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Jake has 16 fewer peaches than Steven. Steven has 15 more peaches than Jill. If Jill has 12 peaches. How many more peaches does Jill have than Jake?", + "Output Program": [ + "print( 16.0 - 15.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "There are 142 bananas and 356 oranges in Philip's collection. If the bananas are organized into 47 groups and oranges are organized into 178 groups. How big is each group of oranges?", + "Output Program": [ + "print( 356.0 / 178.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Next on his checklist is wax to stick the feathers together. If he has 557 g of wax and right now he just needs 17 g. Total how many grams of wax do the feathers require?", + "Output Program": [ + "print( 557.0 + 17.0 )" + ], + "Output Answer": [ + "574" + ], + "split": "train" + }, + { + "Input": "Randy has 97 blocks. He uses some blocks to build a tower. If there are 72 blocks left. How many blocks did he use to build the tower?", + "Output Program": [ + "print( 97.0 - 72.0 )" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "The school is planning a field trip. The school has 87 classrooms. There are 58 students in the school with each classroom having the same number of students. If there are 2 seats on each school bus.. How many buses are needed to take the trip?", + "Output Program": [ + "print( 58.0 / 2.0 )" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "During summer break 644997 kids from Lawrence county stayed home and the other 893835 kids went to camp. An additional 78 kids from outside the county attended the camp.. How many kids are in Lawrence county?", + "Output Program": [ + "print( 893835.0 + 644997.0 )" + ], + "Output Answer": [ + "1538832" + ], + "split": "train" + }, + { + "Input": "Lewis earns $ 368 every week during the 1359 weeks of harvest. If he has to pay $ 388 rent every week. How much money does he pay as rent during the harvest season?", + "Output Program": [ + "print( 388.0 * 1359.0 )" + ], + "Output Answer": [ + "527292" + ], + "split": "train" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 317 visitors came to the Buckingham palace that day. If there were 295 visitors the previous day. How many more visitors visited the Buckingham palace on that day than on the previous day?", + "Output Program": [ + "print( 317.0 - 295.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Rebecca wants to split a collection of eggs into 3 groups. Rebecca has 4 marbles and 15 eggs.. How many eggs will each group have?", + "Output Program": [ + "print( 15.0 / 3.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "2 birds and 6 storks were sitting on the fence. 3 more birds came to join them.. How many more storks than birds are sitting on the fence?", + "Output Program": [ + "print( 6.0 - ( 2.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Frank was reading through his favorite book. He read 22 pages per day and it took him 569 days to finish the book.. How many pages are there in the book?", + "Output Program": [ + "print( 22.0 * 569.0 )" + ], + "Output Answer": [ + "12518" + ], + "split": "train" + }, + { + "Input": "Zachary did 59 push-ups and 44 crunches in gym class today. David did 19 more push-ups but 27 less crunches than zachary.. How many push-ups did David do?", + "Output Program": [ + "print( 59.0 + 19.0 )" + ], + "Output Answer": [ + "78" + ], + "split": "train" + }, + { + "Input": "Paco had 37 sweet cookies and 11 salty cookies. He ate 5 sweet cookies and 2 salty cookies.. How many more sweet cookies than salty cookies did he eat?", + "Output Program": [ + "print( 5.0 - 2.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "An industrial machine can make 6 shirts a minute. It worked for 5 minutes yesterday and for 12 minutes today.. How many shirts did machine make today?", + "Output Program": [ + "print( 6.0 * 12.0 )" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 3 cups of sugar 10 cups of flour and 15 cups of salt. She already put in 6 cups of flour.. How many more cups of flour does she need to add?", + "Output Program": [ + "print( 10.0 - 6.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "The school has 304 grades and each grade has 75 students. How many students were there in total?", + "Output Program": [ + "print( 304.0 * 75.0 )" + ], + "Output Answer": [ + "22800" + ], + "split": "train" + }, + { + "Input": "Dave had 16 apps and 77 files on his phone. After deleting some apps and files he had 5 apps and 23 files left.. How many apps did he delete?", + "Output Program": [ + "print( 16.0 - 5.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Jesse's room is 11 feet long and 15 feet wide. If she already has 16 square feet of carpet. How much more carpet does she need to cover the whole floor?", + "Output Program": [ + "print( ( 11.0 * 15.0 ) - 16.0 )" + ], + "Output Answer": [ + "149" + ], + "split": "train" + }, + { + "Input": "21 children were riding on the bus. At the bus stop 10 children got off the bus while some more got on the bus. Then there were 16 children altogether on the bus.. How many children got on the bus at the bus stop?", + "Output Program": [ + "print( ( 16.0 - 21.0 ) + 10.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Paco had 13 cookies. He ate 2 of them. Then he bought 36 more cookies. How many more cookies did he buy than those he ate?", + "Output Program": [ + "print( 36.0 - 2.0 )" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 3 cups of sugar and 10 cups of flour. She already put in some cups of flour. If she still needs 5 more cups of flour than sugar. How many cups of flour did she put in?", + "Output Program": [ + "print( ( 10.0 - 3.0 ) - 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "There are 62 different movies and 19 different books in the ' crazy silly school ' series. If you read 4 of the books and watched 34 of the movies. How many more books do you still have to read?", + "Output Program": [ + "print( 19.0 - 4.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Bobby ate 33 pieces of candy. Then he ate 4 more. He also ate 14 pieces of chocolate.. How many pieces of candy and chocolate did Bobby eat altogether?", + "Output Program": [ + "print( ( 33.0 + 4.0 ) + 14.0 )" + ], + "Output Answer": [ + "51" + ], + "split": "train" + }, + { + "Input": "Danny collects bottle caps. He lost 66 bottle caps at the park. Now he has 25 bottle caps in his collection.. How many bottle caps did danny have at first?", + "Output Program": [ + "print( 66.0 + 25.0 )" + ], + "Output Answer": [ + "91" + ], + "split": "train" + }, + { + "Input": "Jack received 6 emails and 8 letters in the morning. He then received 2 emails and 7 letters in the afternoon.. How many more letters did Jack receive in the morning than in the afternoon?", + "Output Program": [ + "print( 8.0 - 7.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Baker's friend bought 137 cakes from him. If he had made 169 cakes initially. How many cakes would baker still have?", + "Output Program": [ + "print( 169.0 - 137.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "train" + }, + { + "Input": "For the walls of the house he would use 12 large planks of wood and 17 small planks. If each large plank of wood needs 14 pieces of nails to be secured and each small plank needs 25 nails.. How many planks does John need for the house wall?", + "Output Program": [ + "print( 12.0 + 17.0 )" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "Baker made 155 cakes. If his friend bought 140 cakes from him. How many cakes would baker still have?", + "Output Program": [ + "print( 155.0 - 140.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Paul got a box of some crayons for his birthday. During the school year he gave 52 crayons to his friends while he lost 535 crayons. If he only had 492 crayons left. How many crayons had been lost or given away?", + "Output Program": [ + "print( 52.0 + 535.0 )" + ], + "Output Answer": [ + "587" + ], + "split": "train" + }, + { + "Input": "Paul had 50 books. After buying some in a garage sale he had 151 left.. How many books did he buy?", + "Output Program": [ + "print( 151.0 - 50.0 )" + ], + "Output Answer": [ + "101" + ], + "split": "train" + }, + { + "Input": "The grasshopper and the frog had a jumping contest. The frog jumped 39 inches and the grasshopper jumped 17 inches.. How much farther did the frog jump than the grasshopper?", + "Output Program": [ + "print( 39.0 - 17.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Baker sold 44 cakes. If he had made 48 cakes initially. How many cakes would baker still have?", + "Output Program": [ + "print( 48.0 - 44.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "The bananas in Philip's collection are organized into 196 groups. If there are a total of 392 bananas in Philip's banana collection. How big is each group?", + "Output Program": [ + "print( 392.0 / 196.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "A grocery store had 49 bottles of regular soda, 40 bottles of diet soda and 6 bottles of lite soda.. How many bottles of regular soda and diet soda did they have altogether?", + "Output Program": [ + "print( 40.0 + 49.0 )" + ], + "Output Answer": [ + "89" + ], + "split": "train" + }, + { + "Input": "There were 15 roses in the vase. Jessica threw away 33 roses from the vase and cut some more new roses from her flower garden to put in the vase. There are now 17 roses in the vase.. How many more roses did she cut than those she threw away?", + "Output Program": [ + "print( 17.0 - 15.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Rachel had to complete 8 pages of math homework, 7 pages of reading homework and 3 more pages of biology homework.. How many pages of math and biology homework did she have to complete?", + "Output Program": [ + "print( 8.0 + 3.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Dan has $ 2. He bought some candy bar for $ 6 each one costing $ 3.. How many candy bar did he buy?", + "Output Program": [ + "print( 6.0 / 3.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "A grocery store had 19 bottles of diet soda and 60 bottles of regular soda.. How many more bottles of regular soda than diet soda did they have?", + "Output Program": [ + "print( 60.0 - 19.0 )" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Kelly has 46 nintendo games and 132 sony games.. How many sony games does she need to give away so that she will have 31 sony games left?", + "Output Program": [ + "print( 132.0 - 31.0 )" + ], + "Output Answer": [ + "101" + ], + "split": "train" + }, + { + "Input": "Luke gained 146 points in each round of a game. If he played 157 rounds of a trivia game. How many points did he score in the game?", + "Output Program": [ + "print( 157.0 * 146.0 )" + ], + "Output Answer": [ + "22922" + ], + "split": "train" + }, + { + "Input": "Bobby had 22 pieces of candy. He ate some pieces of candy. Then he ate 5 more. If he still has 8 pieces of candy left. How many pieces of candy had he eaten at the start?", + "Output Program": [ + "print( ( 22.0 - 5.0 ) - 8.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "There are 11 baskets of peaches. Each basket has 10 red peaches and 18 green peaches.. How many peaches are in the baskets altogether?", + "Output Program": [ + "print( ( 10.0 + 18.0 ) * 11.0 )" + ], + "Output Answer": [ + "308" + ], + "split": "train" + }, + { + "Input": "The Razorback t-shirt shop makes $ 78 dollars off each t-shirt sold. During the Arkansas game and the Texas tech game they sold a total of 186 t-shirts. If they sold 172 t-shirts during the Arkansas game. How much money did they make from selling the t-shirts during the Texas tech game?", + "Output Program": [ + "print( 78.0 * ( 186.0 - 172.0 ) )" + ], + "Output Answer": [ + "1092" + ], + "split": "train" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvested 56 sacks of oranges.. How many sacks did they harvest per day if they harvested for a total of 14 days?", + "Output Program": [ + "print( 56.0 / 14.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "There are 141 pots. Each pot has 71 flowers and 91 sticks in it.. How many flowers are there in all?", + "Output Program": [ + "print( 141.0 * 71.0 )" + ], + "Output Answer": [ + "10011" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 6 cups of sugar and 9 cups of flour. She already put in 2 cups of flour.. How many more cups of flour than cups of sugar does she need to add now?", + "Output Program": [ + "print( ( 9.0 - 2.0 ) - 6.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Dan has $ 4. He had $ 3 left with him after he bought a candy bar.. How much did the candy bar cost?", + "Output Program": [ + "print( 4.0 - 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Baker made 61 pastries and 167 cakes. If he sold 108 cakes and 44 pastries. How many cakes would baker still have?", + "Output Program": [ + "print( 167.0 - 108.0 )" + ], + "Output Answer": [ + "59" + ], + "split": "train" + }, + { + "Input": "Kelly has 106 nintendo games.. How many will she have left if she gives away 64 games?", + "Output Program": [ + "print( 106.0 - 64.0 )" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "Rebecca wants to split a collection of eggs into groups of 6. Rebecca has 18 eggs 72 bananas and 66 marbles.. How many groups will be created?", + "Output Program": [ + "print( 18.0 / 6.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. 457 students suggested adding mashed potatoes while others suggested adding bacon to the menu. If 63 more students suggested adding mashed potatoes than those that suggested bacon. How many students suggested bacon?", + "Output Program": [ + "print( 457.0 - 63.0 )" + ], + "Output Answer": [ + "394" + ], + "split": "train" + }, + { + "Input": "Allan brought 5 balloons and Jake brought 4 balloons to the park. Allan then bought 3 more balloons at the park.. How many balloons did Allan bring to the park?", + "Output Program": [ + "print( 5.0 + 3.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Frank put 11 pieces of candy in each bag. If he had 22 pieces of candy. How many bags would he have?", + "Output Program": [ + "print( 22.0 / 11.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Jake has 12 fewer peaches and 79 more apples than Steven. Steven has 19 peaches and 14 apples.. How many peaches does Jake have?", + "Output Program": [ + "print( 19.0 - 12.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "4 people can ride the Ferris wheel in paradise park at the same time. If each seat on the Ferris wheel can hold 2 people. How many seats does the Ferris wheel have?", + "Output Program": [ + "print( 4.0 / 2.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Dan has $ 2. He bought a candy bar for $ 6 and a chocolate for $ 3.. How much money did he spend to buy candy bar than he did to buy chocolate?", + "Output Program": [ + "print( 6.0 - 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Frank was reading through some books. Each book had 66 pages and it took Frank 12 days to finish each book. If he takes 492 days to finish all books. How many books did he read?", + "Output Program": [ + "print( 492.0 / 12.0 )" + ], + "Output Answer": [ + "41" + ], + "split": "train" + }, + { + "Input": "Every day Ryan spends 2 hours on learning english, 5 hours on learning chinese and 4 hours on learning spanish.. How many more hours does he spend on learning chinese than he does on learning spanish?", + "Output Program": [ + "print( 5.0 - 4.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "There were 7 roses in the vase. Jessica cut some more roses from her flower garden which had a total of 59 roses. There are now 20 roses in the vase.. How many roses did she cut?", + "Output Program": [ + "print( 20.0 - 7.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "dev" + }, + { + "Input": "Marco and his dad went strawberry picking. Together they collected strawberries that weighed 22 pounds. On the way back Marco ' dad found 30 more pounds of strawberries. Marco's strawberries now weighed 36 pounds.. How much did his dad's strawberries weigh now?", + "Output Program": [ + "print( ( 22.0 - 36.0 ) + 30.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": "Mom buys 51 white t - shirts. If white t - shirts can be purchased in packages of 3. How many packages will she have?", + "Output Program": [ + "print( 51.0 / 3.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "dev" + }, + { + "Input": "Bobby ate 38 pieces of candy. Then he ate 36 more. He also ate 16 pieces of chocolate.. How many more pieces of candy than chocolate did Bobby eat?", + "Output Program": [ + "print( ( 38.0 + 36.0 ) - 16.0 )" + ], + "Output Answer": [ + "58" + ], + "split": "dev" + }, + { + "Input": "Nell collects cards. She had 239 baseball cards and 38 Ace cards. She gave some of her cards to Jeff and now has 376 Ace cards and 111 baseball cards left.. How many more Ace cards than baseball cards does Nell have?", + "Output Program": [ + "print( 376.0 - 111.0 )" + ], + "Output Answer": [ + "265" + ], + "split": "dev" + }, + { + "Input": "Rachel had to complete 10 pages of math homework. If she had to complete 3 more pages of reading homework than math homework. How many pages did she have to complete in all?", + "Output Program": [ + "print( ( 10.0 + 10.0 ) + 3.0 )" + ], + "Output Answer": [ + "23" + ], + "split": "dev" + }, + { + "Input": "Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 527 chocolate chip cookies and 86 raisin cookies yesterday. And she baked 86 raisin cookies and 554 chocolate chip cookies this morning.. How many chocolate chip cookies did Helen bake?", + "Output Program": [ + "print( 527.0 + 554.0 )" + ], + "Output Answer": [ + "1081" + ], + "split": "dev" + }, + { + "Input": "At the arcade Dave had won 19 tickets. If he used 12 to buy some toys and 7 more to buy some clothes. How many more tickets did Dave use to buy toys than he did to buy clothes?", + "Output Program": [ + "print( 12.0 - 7.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Every day Ryan spends 6 hours on learning english and 7 hours on learning chinese.. How many more hours does he spend on learning chinese than he does on learning english?", + "Output Program": [ + "print( 7.0 - 6.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "He had a total of 40 saltwater animals in different aquariums. Each aquarium has 2 animals in it.. How many aquariums did he have?", + "Output Program": [ + "print( 40.0 / 2.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "Matthew had 29 crackers and 30 cakes. If Matthew gave equal numbers of crackers and cakes to his 2 friends. How many cakes did each person eat?", + "Output Program": [ + "print( 30.0 / 2.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": "A waiter had 14 customers. 5 customers left.. How many customers does he still have?", + "Output Program": [ + "print( 14.0 - 5.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "Jake has 13 fewer peaches and 3 more apples than Steven. Steven has 9 peaches and 8 apples.. How many apples does Jake have?", + "Output Program": [ + "print( 3.0 + 8.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Bryan took a look at his books as well. Each bookshelf contains 2 books. If he has a total of 38 books. How many bookshelves does he have?", + "Output Program": [ + "print( 38.0 / 2.0 )" + ], + "Output Answer": [ + "19" + ], + "split": "dev" + }, + { + "Input": "Jack received 3 emails in the morning, 4 emails in the afternoon and 8 emails in the evening.. How many emails did Jack receive in the morning and evening?", + "Output Program": [ + "print( 3.0 + 8.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Every day Ryan spends a total of 3 hours on learning english and chinese. If he spends 2 hours on learning english everyday. How many hours does he spend on learning chinese?", + "Output Program": [ + "print( 3.0 - 2.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Julia played tag with 16 kids on monday. If she played tag with 12 more kids on monday than on tuesday. How many kids did she play with on tuesday?", + "Output Program": [ + "print( 16.0 - 12.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Every day Ryan spends 6 hours on learning english and 5 hours on learning chinese. If he learns for 2 days. How many hours does he spend on learning english in all?", + "Output Program": [ + "print( 6.0 * 2.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "A waiter had 11 customers. After some left he still had 3 customers.. How many more customers left than those that stayed behind?", + "Output Program": [ + "print( ( 11.0 - 3.0 ) - 3.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Lewis earns $ 2 every week during the harvest. If he earns a total of $ 178. How many weeks did the harvest last?", + "Output Program": [ + "print( 178.0 / 2.0 )" + ], + "Output Answer": [ + "89" + ], + "split": "dev" + }, + { + "Input": "There were 16 roses and 3 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 7 orchids and 13 roses in the vase.. How many orchids did she cut?", + "Output Program": [ + "print( 7.0 - 3.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "28 children were riding on the bus. At the bus stop 82 children got on the bus while some got off the bus. Then there were 30 children altogether on the bus.. How many more children got on the bus than those that got off?", + "Output Program": [ + "print( 30.0 - 28.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "At the stop 13 more people got on the bus. Initially there were 4 people on the bus.. How many people are there on the bus now?", + "Output Program": [ + "print( 4.0 + 13.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "dev" + }, + { + "Input": "16 people can ride the Ferris wheel in paradise park at the same time. If the Ferris wheel has 4 seats. How many people can each seat hold?", + "Output Program": [ + "print( 16.0 / 4.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Frank was reading through some books. Each book had 249 pages and it took Frank 3 days to finish each book.. How many pages did he read per day?", + "Output Program": [ + "print( 249.0 / 3.0 )" + ], + "Output Answer": [ + "83" + ], + "split": "dev" + }, + { + "Input": "Zachary did 19 push-ups in gym class today. David did 39 more push-ups than Zachary. John did 13 push-ups less than david.. How many push-ups did David do?", + "Output Program": [ + "print( 19.0 + 39.0 )" + ], + "Output Answer": [ + "58" + ], + "split": "dev" + }, + { + "Input": "Every day Ryan spends 6 hours on learning english and 7 hours on learning chinese. If he learns for 5 days. How many hours does he spend on learning english and chinese in all?", + "Output Program": [ + "print( ( 6.0 + 7.0 ) * 5.0 )" + ], + "Output Answer": [ + "65" + ], + "split": "dev" + }, + { + "Input": "You have 104 dollars.. How many packs of dvds can you buy if each pack costs 26 dollars?", + "Output Program": [ + "print( 104.0 / 26.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Paul had 115 books. He sold 78 books in a garage sale.. How many books does he have left with him?", + "Output Program": [ + "print( 115.0 - 78.0 )" + ], + "Output Answer": [ + "37" + ], + "split": "dev" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 22 bottle caps and 30 wrappers at the park. Now he has 17 bottle caps and 57 wrappers in his collection.. How many wrappers did danny have at first?", + "Output Program": [ + "print( 57.0 - 30.0 )" + ], + "Output Answer": [ + "27" + ], + "split": "dev" + }, + { + "Input": "Melissa played 3 games and scored a total of 81 points scoring the same for each game.. How many points did she score in each game?", + "Output Program": [ + "print( 81.0 / 3.0 )" + ], + "Output Answer": [ + "27" + ], + "split": "dev" + }, + { + "Input": "Randy uses 36 blocks to build a tower. If he had 59 blocks. How many blocks are left?", + "Output Program": [ + "print( 59.0 - 36.0 )" + ], + "Output Answer": [ + "23" + ], + "split": "dev" + }, + { + "Input": "Dave had 17 apps on his phone. After adding some he had 18 left.. How many apps did he add?", + "Output Program": [ + "print( 18.0 - 17.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "After Jessie started to go jogging everyday she lost 35 kilograms. She weighed 69 kilograms before beginning jogging.. How much does she weigh now?", + "Output Program": [ + "print( 69.0 - 35.0 )" + ], + "Output Answer": [ + "34" + ], + "split": "dev" + }, + { + "Input": "There are 203 bananas and 63 oranges in Philip's collection. If the bananas are organized into 7 groups and oranges are organized into 95 groups. How big is each group of bananas?", + "Output Program": [ + "print( 203.0 / 7.0 )" + ], + "Output Answer": [ + "29" + ], + "split": "dev" + }, + { + "Input": "For Gwen's birthday she received 8 dollars from her mom. Her dad gave her 5 more dollars. If she spent 4 dollars.. How much more money did she receive from her mom than she did from her dad?", + "Output Program": [ + "print( 8.0 - 5.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "The Razorback shop makes $ 5 dollars off each jersey and $ 215 off each t-shirt. During the Arkansas and Texas tech game they sold 20 t-shirts and 64 jerseys.. How much money did they make from selling the t-shirts?", + "Output Program": [ + "print( 215.0 * 20.0 )" + ], + "Output Answer": [ + "4300" + ], + "split": "dev" + }, + { + "Input": "Each pack of dvds costs 107 dollars. If there is a discount of 106 dollars on each pack. How many packs of dvds can you buy with 93 dollars?", + "Output Program": [ + "print( 93.0 / ( 107.0 - 106.0 ) )" + ], + "Output Answer": [ + "93" + ], + "split": "dev" + }, + { + "Input": "Kelly has 80 nintendo games. She found 31 more nintendo games.. How many does she need to give away so that she will have 6 games left?", + "Output Program": [ + "print( ( 80.0 + 31.0 ) - 6.0 )" + ], + "Output Answer": [ + "105" + ], + "split": "dev" + }, + { + "Input": "Bobby ate 28 pieces of candy. Then he ate 42 more. He also ate 63 pieces of chocolate.. How many pieces of candy did Bobby eat?", + "Output Program": [ + "print( 28.0 + 42.0 )" + ], + "Output Answer": [ + "70" + ], + "split": "dev" + }, + { + "Input": "Adam has 9 apples. Jackie has 10 apples.. How many more apples does Jackie have than Adam?", + "Output Program": [ + "print( 10.0 - 9.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "They decided to hold the party in their backyard. They have some sets of tables, each having the 3 chairs. If there are a total of 9 chairs in the backyard. How many sets of tables do they have?", + "Output Program": [ + "print( 9.0 / 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "There are 10 peaches distributed equally in some baskets. If each basket has 4 red peaches and 6 green peaches. How many baskets of peaches are there?", + "Output Program": [ + "print( 10.0 / ( 4.0 + 6.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Josh had 4 marbles in his collection. He lost 16 marbles and found 8 new ones.. How many more marbles did he lose than those he found?", + "Output Program": [ + "print( 16.0 - 8.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 519 chocolate chip cookies and 300 raisin cookies yesterday. And she baked 280 raisin cookies and 359 chocolate chip cookies this morning.. How many more raisin cookies did Helen bake yesterday compared to today?", + "Output Program": [ + "print( 300.0 - 280.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "In Haley's class 13 boys love to play marbles and 50 boys love to play cards. If Haley has 26 marbles. How many will each of the boys receive?", + "Output Program": [ + "print( 26.0 / 13.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Nell collects baseball cards. She gave 301 of her cards to Jeff and now has 154 cards left... How many cards did Nell have initially?", + "Output Program": [ + "print( 154.0 + 301.0 )" + ], + "Output Answer": [ + "455" + ], + "split": "dev" + }, + { + "Input": "Each basket of peaches has 19 red peaches and 4 green peaches. If there are 15 such baskets. How many peaches are in the baskets altogether?", + "Output Program": [ + "print( ( 19.0 + 4.0 ) * 15.0 )" + ], + "Output Answer": [ + "345" + ], + "split": "dev" + }, + { + "Input": "Every day Ryan spends 7 hours on learning english, 2 hours on learning chinese and 4 hours on learning spanish.. How many more hours does he spend on learning english than he does on learning spanish?", + "Output Program": [ + "print( 7.0 - 4.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 19 inches. The frog jumped 39 inches farther than the grasshopper and the mouse jumped 94 inches lesser than the frog.. How far did the frog jump?", + "Output Program": [ + "print( 19.0 + 39.0 )" + ], + "Output Answer": [ + "58" + ], + "split": "dev" + }, + { + "Input": "Baker made 121 cakes. He sold 105 of them and bought 170 new cakes.. How many cakes does baker still have?", + "Output Program": [ + "print( ( 121.0 - 105.0 ) + 170.0 )" + ], + "Output Answer": [ + "186" + ], + "split": "dev" + }, + { + "Input": "There are 14 different movies and 15 different books in the ' crazy silly school ' series. If you read 11 of the books and watched 40 of the movies. How many more books than movies are there in the ' crazy silly school ' series?", + "Output Program": [ + "print( 15.0 - 14.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "A farmer had 160 tomatoes in his garden. If he picked 56 of them yesterday and 41 today.. How many did he have left after yesterday's picking?", + "Output Program": [ + "print( 160.0 - 56.0 )" + ], + "Output Answer": [ + "104" + ], + "split": "dev" + }, + { + "Input": "An industrial machine made 9 shirts yesterday and 8 shirts today. It can make 2 shirts a minute.. How many minutes did the machine work today?", + "Output Program": [ + "print( 8.0 / 2.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Being his favorite, he saved checking on the grapevines for his last stop. He was told by 235 of the pickers that they fill 100 drums of raspberries per day and 221 drums of grapes per day.. How many drums of grapes would be filled in 77 days?", + "Output Program": [ + "print( 221.0 * 77.0 )" + ], + "Output Answer": [ + "17017" + ], + "split": "dev" + }, + { + "Input": "Baker made 62 cakes. Then he made 149 more cakes. He sold 144 of them.. How many cakes would baker still have?", + "Output Program": [ + "print( ( 62.0 - 144.0 ) + 149.0 )" + ], + "Output Answer": [ + "67" + ], + "split": "dev" + }, + { + "Input": "Paco had 41 cookies. He gave 9 cookies to his friend and ate 18 cookies.. How many more cookies did he eat than those he gave to his friend?", + "Output Program": [ + "print( 18.0 - 9.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "Adam has 10 apples. Jackie has 2 apples.. How many more apples does Adam have than Jackie?", + "Output Program": [ + "print( 10.0 - 2.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "There are 8 different books and 10 different movies in the ' crazy silly school ' series. If you read 19 of the books and watched 61 of the movies. How many more movies than books are there in the ' crazy silly school ' series?", + "Output Program": [ + "print( 10.0 - 8.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "For the walls of the house he would use 4 nails in all to secure large planks of wood. If each plank of wood needs 2 pieces of nails to be secured. How many planks does John need for the house wall?", + "Output Program": [ + "print( 4.0 / 2.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Frank was reading through his favorite book. The book had 193 pages equally distributed over 15 chapters. It took Frank 660 days to finish the book.. How many chapters did he read per day?", + "Output Program": [ + "print( 660.0 / 15.0 )" + ], + "Output Answer": [ + "44" + ], + "split": "dev" + }, + { + "Input": "Rachel picked 7 apples from her tree. Thereafter 2 new apples grew on the tree. Now the tree has 6 apples still on it.. How many apples did the tree have to begin with?", + "Output Program": [ + "print( ( 6.0 - 2.0 ) + 7.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "A mailman has to give 32 pieces of junk mail to each of the 55 blocks. If he gives 8 mails to each house in a block. How many houses are there in a block?", + "Output Program": [ + "print( 32.0 / 8.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Rachel had to complete 2 pages of reading homework and 4 pages of math homework.. How many more pages of math homework than reading homework did she have?", + "Output Program": [ + "print( 4.0 - 2.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Jerry had 7 action figures and 2 books on a shelf in his room. Later he added 4 more books to the shelf.. How many more action figures than books were on his shelf?", + "Output Program": [ + "print( 7.0 - ( 2.0 + 4.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Paul got a box of 253 crayons for his birthday. By the end of the school year he had either lost or given away 70 of them.. How many crayons did he have left by the end of the school year?", + "Output Program": [ + "print( 253.0 - 70.0 )" + ], + "Output Answer": [ + "183" + ], + "split": "dev" + }, + { + "Input": "Baker made 43 cakes and 114 pastries. If he sold 154 pastries and 78 cakes. How many more pastries than cakes did baker sell?", + "Output Program": [ + "print( 154.0 - 78.0 )" + ], + "Output Answer": [ + "76" + ], + "split": "dev" + }, + { + "Input": "Marco and his dad went strawberry picking. His strawberries weighed 8 pounds while his dad's strawberries weighed 32 pounds.. Together how much did their strawberries weigh?", + "Output Program": [ + "print( 8.0 + 32.0 )" + ], + "Output Answer": [ + "40" + ], + "split": "dev" + }, + { + "Input": "Matthew had 24 crackers. If Matthew gave equal numbers of crackers to his 3 friends and still had 17 crackers left. How many crackers did Matthew give to his friends?", + "Output Program": [ + "print( 24.0 - 17.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Paige was helping her mom plant flowers and together they planted 45 seeds in 9 flowerbeds. If they put same number of seeds in each flower bed. How many seeds did they plant in each flowerbed?", + "Output Program": [ + "print( 45.0 / 9.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 11 cups of sugar and 9 cups of flour. She already put in 12 cups of flour and 10 cups of sugar.. How many more cups of sugar does she need to add?", + "Output Program": [ + "print( 11.0 - 10.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "In a school there are 732 girls and 761 boys. 682 more girls and 8 more boys joined the school.. How many girls are there in the school now?", + "Output Program": [ + "print( 732.0 + 682.0 )" + ], + "Output Answer": [ + "1414" + ], + "split": "dev" + }, + { + "Input": "Every day Ryan spends 6 hours on learning english 3 hours on learning chinese and 58 hours on learning spanish.. How many more hours does he spend on learning english than he does on learning chinese?", + "Output Program": [ + "print( 6.0 - 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "A book has 3 chapters. The first chapter is 35 pages long the second chapter is 18 pages long and the third chapter is 3 pages long.. How many more pages does the second chapter have than the third chapter?", + "Output Program": [ + "print( 18.0 - 3.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": "Robin has 28 packages of gum and 14 packages of candy. There are 6 pieces in each package.. How many pieces does Robin have?", + "Output Program": [ + "print( ( 28.0 + 14.0 ) / 6.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Carol was sending out birthday invitations to 12 friends. She bought 3 packs each one having the same number of invitations.. How many invitations are in each pack?", + "Output Program": [ + "print( 12.0 / 3.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Paul had 134 books. After giving 39 books to his friend and selling some books in a garage sale he had 68 books left.. How many books did he sell in the garage sale?", + "Output Program": [ + "print( ( 134.0 - 39.0 ) - 68.0 )" + ], + "Output Answer": [ + "27" + ], + "split": "dev" + }, + { + "Input": "Jerry had 7 books and 3 action figures on a shelf in his room. Later he added 2 more action figures to the shelf.. How many more books than action figures were on his shelf?", + "Output Program": [ + "print( 7.0 - ( 3.0 + 2.0 ) )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Jack received 3 emails in the afternoon, 6 emails in the morning and some more in the evening. If he received a total of 10 emails in the day. How many emails did jack receive in the evening?", + "Output Program": [ + "print( 10.0 - ( 6.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Debby bought 301 water bottles when they were on sale. If she drank 144 bottles a day for some days. If she has 157 bottles left. How many days did she drink for?", + "Output Program": [ + "print( ( 301.0 - 157.0 ) / 144.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "The Razorback shop makes $ 210 dollars off each jersey and $ 240 off each t-shirt. During the Arkansas and Texas tech game they sold 177 t-shirts and 23 jerseys.. How much more does a t-shirt cost than a jersey?", + "Output Program": [ + "print( 240.0 - 210.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "dev" + }, + { + "Input": "Frank was reading through his favorite book. The book had 612 pages equally distributed over 24 chapters. It took Frank 6 days to finish the book.. How many pages did he read per day?", + "Output Program": [ + "print( 612.0 / 6.0 )" + ], + "Output Answer": [ + "102" + ], + "split": "dev" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 100 visitors came to the Buckingham palace on the previous day. If there were 666 visitors on that day. How many more visitors visited the Buckingham palace on that day than on the previous day?", + "Output Program": [ + "print( 666.0 - 100.0 )" + ], + "Output Answer": [ + "566" + ], + "split": "dev" + }, + { + "Input": "Emily is making bead necklaces for her 44 friends. She made 26 necklaces and each necklace takes 2 beads.. How many beads did Emily have?", + "Output Program": [ + "print( 26.0 * 2.0 )" + ], + "Output Answer": [ + "52" + ], + "split": "dev" + }, + { + "Input": "There are 6 baskets of peaches. Each basket has 16 red peaches and 18 green peaches.. How many red peaches are in the baskets altogether?", + "Output Program": [ + "print( 16.0 * 6.0 )" + ], + "Output Answer": [ + "96" + ], + "split": "dev" + }, + { + "Input": "Frank was reading through his favorite book. He read 8 pages per day. If the book had 576 pages. How many days did he take to finish the book?", + "Output Program": [ + "print( 576.0 / 8.0 )" + ], + "Output Answer": [ + "72" + ], + "split": "dev" + }, + { + "Input": "Brenda's mother made cookies for 10 guests but 9 guests did not come. If she prepared 18 cookies and each guest had the same number of cookies. How many did each of them have?", + "Output Program": [ + "print( 18.0 / ( 10.0 - 9.0 ) )" + ], + "Output Answer": [ + "18" + ], + "split": "dev" + }, + { + "Input": "Paige was helping her mom plant flowers in 8 flowerbeds. They planted 32 seeds altogether. If they put same number of seeds in each flower bed. How many seeds did they plant in each flowerbed?", + "Output Program": [ + "print( 32.0 / 8.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "There were 12 roses and 2 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 10 roses and 21 orchids in the vase.. How many orchids did she cut?", + "Output Program": [ + "print( 21.0 - 2.0 )" + ], + "Output Answer": [ + "19" + ], + "split": "dev" + }, + { + "Input": "The Ferris wheel in paradise park has 3 small seats and 7 large seats. Each small seat can hold 16 people and large seat can hold 12 people.. How many people can ride the Ferris wheel on large seats?", + "Output Program": [ + "print( 7.0 * 12.0 )" + ], + "Output Answer": [ + "84" + ], + "split": "dev" + }, + { + "Input": "Haley grew 13 trees in her backyard. After a typhoon 6 died.. How many more trees survived the typhoon than those that died?", + "Output Program": [ + "print( ( 13.0 - 6.0 ) - 6.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "The Ferris wheel in paradise park has 2 small seats and 23 large seats. Each small seat can hold 14 people and large seat can hold 54 people.. How many people can ride the Ferris wheel on small seats?", + "Output Program": [ + "print( 2.0 * 14.0 )" + ], + "Output Answer": [ + "28" + ], + "split": "dev" + }, + { + "Input": "There were 100 dollars in Olivia's wallet. She collected 148 more dollars from an atm. After she visited a supermarket there were 159 dollars left.. How much did she spend?", + "Output Program": [ + "print( ( 100.0 + 148.0 ) - 159.0 )" + ], + "Output Answer": [ + "89" + ], + "split": "dev" + }, + { + "Input": "Every day Ryan spends 5 hours on learning chinese and some more hours on learning english. If he spends 2 hours more on learning english than on learning chinese. How many hours does he spend on learning english?", + "Output Program": [ + "print( 5.0 + 2.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Melissa scored 109 points in each game. She also got 82 bonus points in each game.. How many points did she score in 79 games?", + "Output Program": [ + "print( ( 109.0 + 82.0 ) * 79.0 )" + ], + "Output Answer": [ + "15089" + ], + "split": "dev" + }, + { + "Input": "3 birds were sitting on the fence. 6 more storks and 2 more birds came to join them.. How many more storks than birds are sitting on the fence?", + "Output Program": [ + "print( 6.0 - ( 3.0 + 2.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 25 sacks of unripe oranges and 5 sacks of ripe oranges per day.. How many sacks of ripe oranges will they have after 73 days of harvest?", + "Output Program": [ + "print( 5.0 * 73.0 )" + ], + "Output Answer": [ + "365" + ], + "split": "dev" + }, + { + "Input": "Debby bought some water bottles when they were on sale. She drank 109 bottles a day. If the bottles lasted for 74 days. How many bottles had she bought?", + "Output Program": [ + "print( 109.0 * 74.0 )" + ], + "Output Answer": [ + "8066" + ], + "split": "dev" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 8 bird families living near the mountain. If 42 bird families flew away to africa and 31 bird families flew away to asia. How many more bird families flew away to africa than those that flew away to asia?", + "Output Program": [ + "print( 42.0 - 31.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Zachary did 46 push-ups and 58 crunches in gym class today. David did 38 more push-ups but 62 less crunches than zachary.. How many more crunches than push-ups did Zachary do?", + "Output Program": [ + "print( 58.0 - 46.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "In a school there are 315 girls and 309 boys. There are also 772 teachers. How many people are there in that school?", + "Output Program": [ + "print( ( 315.0 + 309.0 ) + 772.0 )" + ], + "Output Answer": [ + "1396" + ], + "split": "dev" + }, + { + "Input": "Kelly gives away 91 nintendo games.. How many did she have initially if she still has 92 games left?", + "Output Program": [ + "print( 91.0 + 92.0 )" + ], + "Output Answer": [ + "183" + ], + "split": "dev" + }, + { + "Input": "Jake has 18 fewer peaches than Steven who has 13 more peaches than Jill. Steven has 19 peaches.. How many peaches does Jill have?", + "Output Program": [ + "print( 19.0 - 13.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "There were 7 roses and 12 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 11 roses and 20 orchids in the vase.. How many more orchids than roses are there in the vase now?", + "Output Program": [ + "print( 20.0 - 11.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "There are 65 baskets of peaches. Each basket has 7 red peaches and 3 green peaches.. How many peaches are in each basket?", + "Output Program": [ + "print( 7.0 + 3.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "The ring toss game at the carnival made 382 dollars in the first 44 days and 374 dollars in the remaining 10 days.. How much did they make in all?", + "Output Program": [ + "print( 382.0 + 374.0 )" + ], + "Output Answer": [ + "756" + ], + "split": "dev" + }, + { + "Input": "Jesse's rooms are 19 feet long and 18 feet wide. If she has 20 rooms in all. How much carpet does she need to cover the floors of all rooms?", + "Output Program": [ + "print( ( 19.0 * 18.0 ) * 20.0 )" + ], + "Output Answer": [ + "6840" + ], + "split": "dev" + }, + { + "Input": "Emily is making bead necklaces for her friends. She made 11 necklaces and each necklace takes 28 beads.. How many beads did Emily have?", + "Output Program": [ + "print( 11.0 * 28.0 )" + ], + "Output Answer": [ + "308" + ], + "split": "dev" + }, + { + "Input": "Carol was sending out birthday invitations to 10 friends. If each package of invitations she bought had 2 invitations in it. How many packs does she need so that no friend gets left out?", + "Output Program": [ + "print( 10.0 / 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Dave had 15 apps and 24 files on his phone. After deleting some apps and files he had 21 apps and 4 files left.. How many more apps than files does he have left on the phone?", + "Output Program": [ + "print( 21.0 - 4.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "dev" + }, + { + "Input": "Luke played a trivia game and scored 154 points. If he gained the 11 points in each round. How many rounds did he play?", + "Output Program": [ + "print( 154.0 / 11.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": "Julia played tag with 11 kids on monday. She played tag with 12 kids on tuesday.. How many more kids did she play with on tuesday than on monday?", + "Output Program": [ + "print( 12.0 - 11.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "There were 15 roses and 62 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 17 roses and 96 orchids in the vase.. How many roses did she cut?", + "Output Program": [ + "print( 17.0 - 15.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "A grocery store had 79 bottles of regular soda, 53 bottles of diet soda and 42 apples.. How many more bottles of regular soda than diet soda did they have?", + "Output Program": [ + "print( 79.0 - 53.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "dev" + }, + { + "Input": "Baker made 13 cakes. He sold 91 of them and bought 154 new cakes.. How many more cakes did baker buy than those he sold?", + "Output Program": [ + "print( 154.0 - 91.0 )" + ], + "Output Answer": [ + "63" + ], + "split": "dev" + }, + { + "Input": "A waiter had 3 customers. After some more arrived he had 8 customers.. How many new customers arrived?", + "Output Program": [ + "print( 8.0 - 3.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Rachel had to complete 2 pages of math homework, 3 pages of reading homework and 10 more pages of biology homework.. How many pages did she have to complete in all?", + "Output Program": [ + "print( ( 2.0 + 3.0 ) + 10.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": "After resting they decided to go for a swim. If the depth of the water is 10 times Dean's height and he stands at 9 feet. How much deeper is the water than Dean's height?", + "Output Program": [ + "print( ( 10.0 * 9.0 ) - 9.0 )" + ], + "Output Answer": [ + "81" + ], + "split": "dev" + }, + { + "Input": "6 red peaches, 90 yellow peaches and 16 green peaches are in the basket.. How many red and green peaches are in the basket?", + "Output Program": [ + "print( 6.0 + 16.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "dev" + }, + { + "Input": "Faye was placing 30 pencils into rows with 5 pencils in each row.. How many rows could she make?", + "Output Program": [ + "print( 30.0 / 5.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "In a school there are 308 girls and 318 boys. There are also 36 teachers. How many pupils are there in that school?", + "Output Program": [ + "print( 308.0 + 318.0 )" + ], + "Output Answer": [ + "626" + ], + "split": "dev" + }, + { + "Input": "Jake has 7 fewer peaches than Steven who has 14 more peaches than Jill. Steven has 15 peaches.. How many peaches does Jake have?", + "Output Program": [ + "print( 15.0 - 7.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "An industrial machine can make 6 shirts a minute. It worked for 12 minutes yesterday and for 14 shirts today.. How many shirts did machine make altogether?", + "Output Program": [ + "print( 6.0 * ( 12.0 + 14.0 ) )" + ], + "Output Answer": [ + "156" + ], + "split": "dev" + }, + { + "Input": "Julia played tag with 15 kids on monday, 18 kids on tuesday and 97 kids on wednesday.. How many kids did she play with on monday and tuesday?", + "Output Program": [ + "print( 15.0 + 18.0 )" + ], + "Output Answer": [ + "33" + ], + "split": "dev" + }, + { + "Input": "The school is planning a field trip. The school has 84 classrooms. 95 school buses are fully filled with 118 seats on each school bus.. How many students are in the school?", + "Output Program": [ + "print( 95.0 * 118.0 )" + ], + "Output Answer": [ + "11210" + ], + "split": "dev" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 144 students suggested adding mashed potatoes 467 suggested adding bacon to the menu and 79 suggested adding tomatoes. How many more students suggested mashed potatoes than those that suggested tomatoes?", + "Output Program": [ + "print( 144.0 - 79.0 )" + ], + "Output Answer": [ + "65" + ], + "split": "dev" + }, + { + "Input": "Jake has 7 fewer peaches than Steven and 9 more peaches than Jill. Steven has 16 peaches.. How many peaches does Jake have?", + "Output Program": [ + "print( 16.0 - 7.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "Julia played tag with 7 kids on monday and 13 kids on tuesday. She played cards wtih 20 kids on wednesday.. How many kids did she play tag with altogether?", + "Output Program": [ + "print( 7.0 + 13.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "Julia played tag with 14 kids on tuesday. If she played tag with 8 more kids on monday than on tuesday. How many kids did she play with on monday?", + "Output Program": [ + "print( 14.0 + 8.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "dev" + }, + { + "Input": "There are 8 different movies and 21 different books in the ' crazy silly school ' series. If you read 7 of the books and watched 4 of the movies. How many more movies do you still have to watch?", + "Output Program": [ + "print( 8.0 - 4.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 12 cups of flour and 13 cups of sugar. She already put in 2 cups of sugar.. How many more cups of sugar does she need to add?", + "Output Program": [ + "print( 13.0 - 2.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Jesse has 18 square feet of carpet. If her room is 4 feet long and 20 feet wide. How much more carpet does she need to cover the whole floor?", + "Output Program": [ + "print( ( 4.0 * 20.0 ) - 18.0 )" + ], + "Output Answer": [ + "62" + ], + "split": "dev" + }, + { + "Input": "For the walls of the house he would use 13 large planks of wood. If each plank of wood needs 17 pieces of nails to be secured and in addition 8 nails are needed for some smaller planks.. How many nails does John need for the house wall?", + "Output Program": [ + "print( ( 13.0 * 17.0 ) + 8.0 )" + ], + "Output Answer": [ + "229" + ], + "split": "dev" + }, + { + "Input": "Matthew gave 6 crackers to each his friends. If he had 36 crackers. How many friends did he give crackers to?", + "Output Program": [ + "print( 36.0 / 6.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "Jake has 6 fewer peaches and 8 more apples than Steven. Steven has 17 peaches and 16 apples.. How many more peaches than apples does Steven have?", + "Output Program": [ + "print( 17.0 - 16.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Katie had 81 ds games and her friends had 59 games.. How many more games does Katie have than her friends?", + "Output Program": [ + "print( 81.0 - 59.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "dev" + }, + { + "Input": "An industrial machine made 9 shirts yesterday and 44 shirts today. It can make 3 shirts a minute.. How many minutes did the machine work yesterday?", + "Output Program": [ + "print( 9.0 / 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "A grocery store had a total of 30 bottles of which 28 were bottles of regular soda and the rest were bottles of diet soda.. How many bottles of diet soda did they have?", + "Output Program": [ + "print( 30.0 - 28.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Shirley sold 10 boxes of trefoils.. How many boxes are in each case if she needs to deliver 5 cases of boxes?", + "Output Program": [ + "print( 10.0 / 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Jerry had 3 action figures on a shelf in his room. Later he added 4 more action figures to the shelf and removed some of the old ones. If there are 6 action figures on his shelf now. How many action figures did he remove from the shelf?", + "Output Program": [ + "print( ( 3.0 + 4.0 ) - 6.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Allan brought 6 balloons and Jake brought 2 balloons to the park. Jake then bought 3 more balloons at the park.. How many more balloons did Allan have than Jake in the park?", + "Output Program": [ + "print( 6.0 - ( 2.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 28 sacks of ripe oranges and 52 sacks of unripe oranges per day.. How many sacks of oranges will they have after 26 days of harvest?", + "Output Program": [ + "print( ( 28.0 + 52.0 ) * 26.0 )" + ], + "Output Answer": [ + "2080" + ], + "split": "dev" + }, + { + "Input": "In a school there are 402 more girls than boys. If there are 739 girls. How many boys are there in that school?", + "Output Program": [ + "print( 739.0 - 402.0 )" + ], + "Output Answer": [ + "337" + ], + "split": "dev" + }, + { + "Input": "3 birds and 2 storks were sitting on the fence. 5 more birds came to join them.. How many birds and storks are sitting on the fence?", + "Output Program": [ + "print( ( 3.0 + 5.0 ) + 2.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "If you have 14 cookies in total and 7 bags having equal number of cookies. How many cookies does each bag have?", + "Output Program": [ + "print( 14.0 / 7.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "There are 11 different books and 17 different movies in the ' crazy silly school ' series. If you read 7 of the books and watched 21 of the movies. How many more movies than books have you read?", + "Output Program": [ + "print( 21.0 - 7.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": "Julia played tag with 5 kids on tuesday. She had played tag with 6 kids on monday.. How many more kids did she play with on monday than on tuesday?", + "Output Program": [ + "print( 6.0 - 5.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Emily is making bead necklaces for her friends. She was able to make 6 necklaces and she had 18 beads.. How many beads did each necklace need?", + "Output Program": [ + "print( 18.0 / 6.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 74 sacks per day and discard 71 of them.. How many sacks of oranges will they have after 51 days of harvest?", + "Output Program": [ + "print( ( 74.0 - 71.0 ) * 51.0 )" + ], + "Output Answer": [ + "153" + ], + "split": "dev" + }, + { + "Input": "Olivia spent 38 dollars at a supermarket. If there were 128 dollars in her wallet initially. How much money does she have left?", + "Output Program": [ + "print( 128.0 - 38.0 )" + ], + "Output Answer": [ + "90" + ], + "split": "dev" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 85 bird families living near the mountain. If 23 bird families flew away to africa and 37 bird families flew away to asia. How many bird families were left near the mountain?", + "Output Program": [ + "print( 85.0 - ( 23.0 + 37.0 ) )" + ], + "Output Answer": [ + "25" + ], + "split": "dev" + }, + { + "Input": "After a typhoon, 2 trees in Haley's backyard died. If she had grown 12 trees initially. How many trees does she have left?", + "Output Program": [ + "print( 12.0 - 2.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "During summer break 202958 kids from Lawrence county go to camp and the other 777622 kids stay home.. How many more kids stayed home compared to those who went to the camp?", + "Output Program": [ + "print( 777622.0 - 202958.0 )" + ], + "Output Answer": [ + "574664" + ], + "split": "dev" + }, + { + "Input": "The Razorback t-shirt shop makes $ 98 dollars off each t-shirt sold. During the Arkansas game and the Texas tech game they sold a total of 163 t-shirts. If they sold 89 t-shirts during the Arkansas game. How much money did they make from selling the t-shirts during the arkansas game?", + "Output Program": [ + "print( 98.0 * 89.0 )" + ], + "Output Answer": [ + "8722" + ], + "split": "dev" + }, + { + "Input": "There are 20 different books in the ' crazy silly school ' series. If you are yet to read 5 of the books. How many books have you already read?", + "Output Program": [ + "print( 20.0 - 5.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": "Robin's hair was 17 inches long. He cut off some inches of her hair. If his hair is now 13 inches long. How much of his hair did he cut?", + "Output Program": [ + "print( 17.0 - 13.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Julia played tag with some kids on monday. She played tag with 14 kids on tuesday. If she played with a total of 16 kids. How many kids did she play with on monday?", + "Output Program": [ + "print( 16.0 - 14.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "5 red peaches, 14 yellow peaches and 6 green peaches are in the basket.. How many green and yellow peaches are in the basket?", + "Output Program": [ + "print( 6.0 + 14.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "Tiffany was collecting cans for recycling. On monday she had 7 bags of cans. The next day she found 12 more bags worth of cans.. How many more bags did she find on the next day than she had on monday?", + "Output Program": [ + "print( 12.0 - 7.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "The Razorback shop makes $ 67 dollars off each t-shirt and $ 165 off each jersey. During the Arkansas and Texas tech game they sold 74 t-shirts and 156 jerseys.. How much money did they make from selling the jerseys?", + "Output Program": [ + "print( 165.0 * 156.0 )" + ], + "Output Answer": [ + "25740" + ], + "split": "dev" + }, + { + "Input": "Zachary did 51 push-ups in gym class today. David did 22 more push-ups than Zachary. John did 4 push-ups less than David.. How many push-ups did John do?", + "Output Program": [ + "print( ( 51.0 + 22.0 ) - 4.0 )" + ], + "Output Answer": [ + "69" + ], + "split": "dev" + }, + { + "Input": "Frank put some pieces of candy equally into 2 bags. If he had 16 pieces of candy. How many pieces of candy are in each bag?", + "Output Program": [ + "print( 16.0 / 2.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "Jake has 6 fewer peaches than Steven. Steven has 18 more peaches than Jill. If jill has 5 peaches. How many peaches does Jake have?", + "Output Program": [ + "print( ( 18.0 + 5.0 ) - 6.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "dev" + }, + { + "Input": "Frank had some pieces of candy. If he put them into 26 bags with 33 pieces in each bag. How many pieces of candy did he have?", + "Output Program": [ + "print( 26.0 * 33.0 )" + ], + "Output Answer": [ + "858" + ], + "split": "dev" + }, + { + "Input": "Ed had 12 more marbles than Doug. Ed lost 20 of his marbles at the playground. If Ed had 17 marbles. How many marbles does Doug have now?", + "Output Program": [ + "print( 17.0 - 12.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. 27 bird families flew away for the winter from near a mountain. If there were 41 bird families living near the mountain initially. How many bird families were left near the mountain?", + "Output Program": [ + "print( 41.0 - 27.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": "Nell collects baseball cards. She had 242 cards. She gave 136 of her cards to Jeff.. How many cards does Nell have left?", + "Output Program": [ + "print( 242.0 - 136.0 )" + ], + "Output Answer": [ + "106" + ], + "split": "dev" + }, + { + "Input": "There are 544 pots in each of the 10 gardens. Each pot has 32 flowers in it.. How many flowers are there in all?", + "Output Program": [ + "print( ( 544.0 * 10 ) * 32.0 )" + ], + "Output Answer": [ + "174080" + ], + "split": "dev" + }, + { + "Input": "Paul got a box of 601 crayons and 406 erasers for his birthday. At the end of the school year he only had 336 crayons left while not having lost a single eraser.. How many more erasers than crayons did he have left?", + "Output Program": [ + "print( 406.0 - 336.0 )" + ], + "Output Answer": [ + "70" + ], + "split": "dev" + }, + { + "Input": "6 packs of dvds can be bought with 120 dollars.. How much does each pack cost?", + "Output Program": [ + "print( 120.0 / 6.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "Baker made 56 pastries and 124 cakes. If he sold 104 cakes and 29 pastries. How many pastries would baker still have?", + "Output Program": [ + "print( 56.0 - 29.0 )" + ], + "Output Answer": [ + "27" + ], + "split": "dev" + }, + { + "Input": "Danny collects bottle caps. He found 36 bottle caps at the park while he threw away 35 old ones. Now he has 22 bottle caps in his collection.. How many more bottle caps did danny find at the park than those he threw away?", + "Output Program": [ + "print( 36.0 - 35.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Tiffany was collecting cans for recycling. On monday she had 8 bags of cans. The next day she found 7 more bags worth of cans.. How many more bags did she have on monday than she found on the next day?", + "Output Program": [ + "print( 8.0 - 7.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Ed had 29 more marbles than Doug. Ed lost 17 of his marbles at the playground.. How many more marbles did Ed have than Doug then?", + "Output Program": [ + "print( 29.0 - 17.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "Jerry had 4 action figures and 22 books on a shelf in his room. Later he added 6 more action figures to the shelf.. How many action figures were on his shelf in all?", + "Output Program": [ + "print( 4.0 + 6.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "A grocery store had 4 bottles of diet soda. If they had 79 more bottles of regular soda than diet soda. How many bottles of regular soda did they have?", + "Output Program": [ + "print( 4.0 + 79.0 )" + ], + "Output Answer": [ + "83" + ], + "split": "dev" + }, + { + "Input": "Baker made 157 cakes and 169 pastries. If he sold 158 cakes and 147 pastries. How many more cakes than pastries did baker sell?", + "Output Program": [ + "print( 158.0 - 147.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "dev" + }, + { + "Input": "Katie had 91 ds games and her new friends had 88 games and old friends had 53 games.. How many games do her friends have in all?", + "Output Program": [ + "print( 88.0 + 53.0 )" + ], + "Output Answer": [ + "141" + ], + "split": "dev" + }, + { + "Input": "Dave had 21 apps on his phone. He added 89 new apps. After deleting some he had 24 left.. How many more apps did he add than he deleted?", + "Output Program": [ + "print( 24.0 - 21.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "Emily is making bead necklaces for her friends. Each necklace takes 8 beads and she has 16 beads.. How many necklaces can Emily make?", + "Output Program": [ + "print( 16.0 / 8.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that the harvest will go on for 4 days.. How many sacks do they harvest per day if they harvested a total of 56 sacks of oranges?", + "Output Program": [ + "print( 56.0 / 4.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": "Bobby had 21 pieces of candy. He ate 5 pieces of candy. Then he ate 9 more.. How many pieces of candy does he still have left?", + "Output Program": [ + "print( 21.0 - ( 5.0 + 9.0 ) )" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Paco had 8 sweet cookies and 6 salty cookies. He ate 20 sweet cookies and 34 salty cookies.. How many more salty cookies than sweet cookies did he eat?", + "Output Program": [ + "print( 34.0 - 20.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": "Paul had 42 pens and 143 books. After selling some books and pens in a garage sale he had 113 books and 19 pens left.. How many pens did he sell in the garage sale?", + "Output Program": [ + "print( 42.0 - 19.0 )" + ], + "Output Answer": [ + "23" + ], + "split": "dev" + }, + { + "Input": "Paco had 9 sweet cookies and 6 salty cookies. He ate 36 sweet cookies and 3 salty cookies.. How many salty cookies did Paco have left?", + "Output Program": [ + "print( 6.0 - 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "In a school there are 706 girls and 222 boys. 418 more girls joined the school.. How many pupils are there in the school now?", + "Output Program": [ + "print( ( 706.0 + 222.0 ) + 418.0 )" + ], + "Output Answer": [ + "1346" + ], + "split": "dev" + }, + { + "Input": "Allan and Jake brought 3 balloons to the park. If Allan brought 2 balloons. How many balloons did Jake bring to the park?", + "Output Program": [ + "print( 3.0 - 2.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "dev" + }, + { + "Input": "Zachary did 44 push-ups and 17 crunches in gym class today. David did 29 more push-ups but 13 less crunches than zachary.. How many crunches did David do?", + "Output Program": [ + "print( 17.0 - 13.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "For the walls of the house John would use large planks of wood. Each plank needs 2 pieces of nails to be secured and he would use 16 planks.. How many nails does John need for the house wall?", + "Output Program": [ + "print( 16.0 * 2.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "dev" + }, + { + "Input": "Lucy went to the grocery store. She bought 23 packs of cookie and some packs of cake. In total she had 27 packs of grocery. How many packs of cake did she buy in all?", + "Output Program": [ + "print( 27.0 - 23.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "You had 26 bags with equal number of cookies. If you had 15 candies and 52 cookies in total. How many cookies does each bag have?", + "Output Program": [ + "print( 52.0 / 26.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "Brenda's mother made cookies for guests. If she prepared 38 cookies and each of them had 19 cookies. How many guests did she prepare cookies for?", + "Output Program": [ + "print( 38.0 / 19.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 19 inches. The grasshopper jumped 4 inches farther than the frog and the mouse jumped 44 inches lesser than the frog.. How far did the frog jump?", + "Output Program": [ + "print( 19.0 - 4.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": "Edward spent $ 9. Then he spent $ 8 more. Now he has $ 17.. How much did Edward have before he spent his money?", + "Output Program": [ + "print( ( 9.0 + 8.0 ) + 17.0 )" + ], + "Output Answer": [ + "34" + ], + "split": "dev" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 11 cups of sugar 6 cups of flour and 9 cups of salt. She already put in 12 cups of flour.. How many more cups of sugar than cups of salt does she need to add now?", + "Output Program": [ + "print( 11.0 - 9.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "He also had 74 aquariums for freshwater animals and 22 aquariums for saltwater animals. Each aquarium has 46 animals in it.. How many saltwater animals does Tyler have?", + "Output Program": [ + "print( 22.0 * 46.0 )" + ], + "Output Answer": [ + "1012" + ], + "split": "dev" + }, + { + "Input": "Jesse needs a carpet of size 10 square feet to cover her room. If her room is 5 feet long. What is the width of her room?", + "Output Program": [ + "print( 10.0 / 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "dev" + }, + { + "Input": "A grocery store had 36 apples, 80 bottles of regular soda and 54 bottles of diet soda.. How many more bottles than apple did they have?", + "Output Program": [ + "print( ( 80.0 + 54.0 ) - 36.0 )" + ], + "Output Answer": [ + "98" + ], + "split": "dev" + }, + { + "Input": "There were 9 roses and 6 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 13 orchids and 3 roses in the vase.. How many more orchids than roses are there in the vase now?", + "Output Program": [ + "print( 13.0 - 3.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 218 students suggested adding mashed potatoes as well as bacon while 351 suggested adding only bacon to the menu. How many students suggested adding bacon?", + "Output Program": [ + "print( 218.0 + 351.0 )" + ], + "Output Answer": [ + "569" + ], + "split": "dev" + }, + { + "Input": "Paul had 71 books. After selling some in a garage sale he bought 38 new ones. If he has 116 books now. How many more books did he buy than he sold?", + "Output Program": [ + "print( 116.0 - 71.0 )" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There were 71 paintings in the Buckingham palace. There, Rachel learned that 557 visitors came to the Buckingham palace that day. If there were 188 visitors the previous day. How many visited the Buckingham palace within 57 days?", + "Output Program": [ + "print( 557.0 + 188.0 )" + ], + "Output Answer": [ + "745" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 71 bottle caps and 24 wrappers at the park. Now he has 28 bottle caps and 16 wrappers in his collection.. How many more bottle caps than wrappers does danny have now?", + "Output Program": [ + "print( 28.0 - 16.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "A mailman has to give 25 pieces of junk mail to each block. If he gives 5 mails to each house in a block. How many houses are there in a block?", + "Output Program": [ + "print( 25.0 / 5.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "After resting they decided to go for a swim. The depth of the water is 9 times Dean's height. If Ron is 15 feet tall and Dean is 6 feet shorter than Ron. How deep was the water?", + "Output Program": [ + "print( ( 15.0 - 6.0 ) * 9.0 )" + ], + "Output Answer": [ + "81" + ], + "split": "test" + }, + { + "Input": "Rebecca wants to split a collection of eggs into groups of 20. Rebecca has 5 marbles and 12 eggs.. How many more eggs does Rebecca have than marbles?", + "Output Program": [ + "print( 12.0 - 5.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Summer is almost here and most animals are migrating back to cooler countries. There are 87 bird families living near a mountain. If 18 new bird families joined them. How many bird families live near the mountain now?", + "Output Program": [ + "print( 87.0 + 18.0 )" + ], + "Output Answer": [ + "105" + ], + "split": "test" + }, + { + "Input": "At the zoo, a cage had 93 snakes and 97 alligators. If 40 alligators were hiding. How many alligators were not hiding?", + "Output Program": [ + "print( 97.0 - 40.0 )" + ], + "Output Answer": [ + "57" + ], + "split": "test" + }, + { + "Input": "Randy has 86 blocks. He uses 79 blocks to build a tower and 82 blocks to build a house.. How many more blocks did he use to build the house than he did to build the tower?", + "Output Program": [ + "print( 82.0 - 79.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Frank had 33 pieces of candy. He lost 24 of them. If he put the remaining pieces into bags with 9 pieces in each bag. How many bags would he have?", + "Output Program": [ + "print( ( 33.0 - 24.0 ) / 9.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "The school is planning a field trip. The school has 17 classrooms. There are 46 school buses and a total of 92 students in the school. If all buses are full. How many seats are in each bus?", + "Output Program": [ + "print( 92.0 / 46.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "The Razorback t-shirt shop makes $ 87 dollars off each t-shirt sold. During the Arkansas game and the Texas tech game they sold a total of 95 t-shirts. If they sold 47 t-shirts during the Arkansas game. How much money did they make from selling the t-shirts?", + "Output Program": [ + "print( 87.0 * 95.0 )" + ], + "Output Answer": [ + "8265" + ], + "split": "test" + }, + { + "Input": "After eating a hearty meal they went to see the Buckingham palace. There, Rachel learned that 512 visitors came to the Buckingham palace that day. If there were 471 visitors the previous day and 808 visitors the day before that. How many visited the Buckingham palace within the past 89 days?", + "Output Program": [ + "print( ( 512.0 + 471.0 ) + 808.0 )" + ], + "Output Answer": [ + "1791" + ], + "split": "test" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 41 bird families living near the mountain. If 35 bird families flew away to asia and 62 bird families flew away to africa. How many more bird families flew away to africa than those that flew away to asia?", + "Output Program": [ + "print( 62.0 - 35.0 )" + ], + "Output Answer": [ + "27" + ], + "split": "test" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 49 bird families living near the mountain. 59 bird families flew away for winter and 24 new bird families came to live near the mountain from the arctic.. How many bird families were left near the mountain?", + "Output Program": [ + "print( ( 49.0 - 59.0 ) + 24.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "In a school there are 700 girls and the rest are boys. If there are 142 more boys than girls. How many pupils are there in that school?", + "Output Program": [ + "print( ( 700.0 + 700.0 ) + 142.0 )" + ], + "Output Answer": [ + "1542" + ], + "split": "test" + }, + { + "Input": "Carol was sending out birthday invitations to her friends. Each package of invitations she bought had 14 invitations in it and she bought 6 packs. Then she bought 11 extra invitations.. How many friends can she invite?", + "Output Program": [ + "print( ( 14.0 * 6.0 ) + 11.0 )" + ], + "Output Answer": [ + "95" + ], + "split": "test" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 6 cups of sugar and 14 cups of flour. She already put in 7 cups of flour and 60 cups of sugar.. How many more cups of flour does she need to add?", + "Output Program": [ + "print( 14.0 - 7.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Allan brought 5 balloons. If Allan and Jake brought total of 6 balloons to the park. How many balloons did Jake bring to the park?", + "Output Program": [ + "print( 6.0 - 5.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "In Haley's class some boys love to play marbles. If Haley has 10 marbles and she gave 5 marbles to each boy. How many boys did she give the marbles to?", + "Output Program": [ + "print( 10.0 / 5.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 16 sacks per day and that each sack containes 57 oranges.. How many days will it take to harvest 80 sacks of oranges?", + "Output Program": [ + "print( 80.0 / 16.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "Stray cats loved eating goldfish in the pond leaving 6 goldfish. Paige had raised 8 goldfish in the pond initially.. How many goldfish disappeared?", + "Output Program": [ + "print( 8.0 - 6.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "He has 9 apples more than Adam and Jackie together do. Adam and Jackie have 7 apples between them.. How many apples does He have?", + "Output Program": [ + "print( 7.0 + 9.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "Josh had 22 marbles in his collection. He found 13 marbles ones while he lost 5 marbles.. How many marbles does he have now?", + "Output Program": [ + "print( ( 22.0 - 5.0 ) + 13.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": "Steven has 12 peaches. Jake has 4 fewer peaches than Steven who has 67 more peaches than Jill.. How many peaches does Jake have?", + "Output Program": [ + "print( 12.0 - 4.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Jack received 6 emails in the morning, 3 emails in the afternoon and 5 emails in the evening.. How many emails did Jack receive in the day?", + "Output Program": [ + "print( ( 6.0 + 3.0 ) + 5.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Debby bought 88 water bottles and 13 soda bottles when they were on sale. If she drank 4 water bottles and 87 soda bottles a day. How many days would the water bottles last?", + "Output Program": [ + "print( 88.0 / 4.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "There were 3 dollars in Olivia's wallet. She collected 49 more dollars from an atm. After she visited a supermarket there were 49 dollars left.. How much more money did she collect at the atm than she spent at the supermarket?", + "Output Program": [ + "print( 49.0 - 3.0 )" + ], + "Output Answer": [ + "46" + ], + "split": "test" + }, + { + "Input": "Randy has 79 blocks. He uses 14 blocks to build a tower and 11 blocks to build a house.. How many blocks are left?", + "Output Program": [ + "print( 79.0 - ( 14.0 + 11.0 ) )" + ], + "Output Answer": [ + "54" + ], + "split": "test" + }, + { + "Input": "Last week Fred had 114 dollars and Jason had 22 dollars. They washed cars over the weekend and now Fred has 21 dollars and Jason has 78 dollars.. How much money did Jason make over the weekend?", + "Output Program": [ + "print( 78.0 - 22.0 )" + ], + "Output Answer": [ + "56" + ], + "split": "test" + }, + { + "Input": "There are some bananas in Philip's banana collection. If the bananas are organized into 140 groups of size 187. How many bananas does he have in his collection?", + "Output Program": [ + "print( 140.0 * 187.0 )" + ], + "Output Answer": [ + "26180" + ], + "split": "test" + }, + { + "Input": "Paige raised 15 goldfish in the pond but stray cats loved eating them. 5 were eaten.. How many goldfish remained?", + "Output Program": [ + "print( 15.0 - 5.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "During summer break 800059 kids from Lawrence county go to camp and the rest stay home. Lawrence county has 828521 kids in all.. About how many kids stayed home?", + "Output Program": [ + "print( 828521.0 - 800059.0 )" + ], + "Output Answer": [ + "28462" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 66 wrappers and 39 bottle caps at the park. Now he has 16 bottle caps and 68 wrappers in his collection.. How many wrappers did danny have at first?", + "Output Program": [ + "print( 68.0 - 66.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "A grocery store had 22 bottles of regular soda and 61 bottles of diet soda.. How many more bottles of diet soda than regular soda did they have?", + "Output Program": [ + "print( 61.0 - 22.0 )" + ], + "Output Answer": [ + "39" + ], + "split": "test" + }, + { + "Input": "Rachel had to complete 5 pages of math homework, 10 pages of reading homework and 6 more pages of biology homework.. How many pages of reading and biology homework did she have to complete?", + "Output Program": [ + "print( 10.0 + 6.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "In Haley's class 4 are boys who love to play marbles. If Haley has 23 marbles and wants to keep 15 marbles for herself. How many will each of the boys receive?", + "Output Program": [ + "print( ( 23.0 - 15.0 ) / 4.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Paco ate 19 cookies and had 35 cookies left.. How many cookies did he have in the beginning?", + "Output Program": [ + "print( 19.0 + 35.0 )" + ], + "Output Answer": [ + "54" + ], + "split": "test" + }, + { + "Input": "A farmer had 105 green tomatoes and 71 red tomatoes in his garden. If he picked 137 tomatoes. How many tomatoes are left?", + "Output Program": [ + "print( ( 105.0 + 71.0 ) - 137.0 )" + ], + "Output Answer": [ + "39" + ], + "split": "test" + }, + { + "Input": "Every day Ryan spends 3 hours on learning english and some more hours on learning chinese. If he spends a total of 4 hours on learning english and chinese everyday. How many hours does he spend on learning chinese?", + "Output Program": [ + "print( 4.0 - 3.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "The school is planning a field trip. The school has 66 classrooms. There are 102 students in the school and 8 seats on each school bus. If 22 students do n't want to go for the trip. How many buses are needed to take the trip?", + "Output Program": [ + "print( ( 102.0 - 22.0 ) / 8.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Randy has 37 blocks. He uses 33 blocks to build a tower and 13 blocks to build a house.. How many more blocks did he use to build the tower than he did to build the house?", + "Output Program": [ + "print( 33.0 - 13.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "During the Arkansas and Texas tech game the Razorback t-shirt shop made $ 215 by selling 5 t-shirts.. What is the cost of each t-shirt?", + "Output Program": [ + "print( 215.0 / 5.0 )" + ], + "Output Answer": [ + "43" + ], + "split": "test" + }, + { + "Input": "Edward spent $ 16 to buy books and $ 8 to buy pens. Now he has $ 19.. How much more did Edward spend on books than pens?", + "Output Program": [ + "print( 16.0 - 8.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Jake has 3 fewer peaches and 10 more apples than Steven. Steven has 12 peaches and 15 apples.. How many more apples than peaches does Steven have?", + "Output Program": [ + "print( 15.0 - 12.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Allan brought 7 balloons and 5 balls while Jake brought 6 balloons and 4 balls to the park.. How many balls did Allan and Jake have in the park?", + "Output Program": [ + "print( 5.0 + 4.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Paco had 12 cookies. He ate 16 cookies and gave 21 of them to his friend.. How many more cookies did he give to his friend than those he ate?", + "Output Program": [ + "print( 21.0 - 16.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "A grocery store had 54 bottles of diet soda, 83 bottles of regular soda and 12 apples.. How many more bottles of regular soda than diet soda did they have?", + "Output Program": [ + "print( 83.0 - 54.0 )" + ], + "Output Answer": [ + "29" + ], + "split": "test" + }, + { + "Input": "There are 18 bananas in Philip's banana collection. If the bananas are organized into groups of size 2. How many groups are there?", + "Output Program": [ + "print( 18.0 / 2.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Baker made 126 cakes and 48 pastries. If he sold 115 cakes and 81 pastries. How many more cakes than pastries did baker make?", + "Output Program": [ + "print( 126.0 - 48.0 )" + ], + "Output Answer": [ + "78" + ], + "split": "test" + }, + { + "Input": "If you had 4 bags with equal number of cookies and 36 cookies in total. How many cookies does each bag have?", + "Output Program": [ + "print( 36.0 / 4.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Being his favorite, he saved checking on the grapevines for his last stop. He was told by 294 of the pickers that they fill 244 drums of grapes per day and 47 drums of raspberries per day.. How many drums of grapes would be filled in 146 days?", + "Output Program": [ + "print( 244.0 * 146.0 )" + ], + "Output Answer": [ + "35624" + ], + "split": "test" + }, + { + "Input": "If they are already at 659 feet and the cave is 762 feet deep. How much farther until they reach the end of the cave?", + "Output Program": [ + "print( 762.0 - 659.0 )" + ], + "Output Answer": [ + "103" + ], + "split": "test" + }, + { + "Input": "Paco had 40 cookies. He ate 5 cookies and gave 13 of them to his friend.. How many cookies did paco have left?", + "Output Program": [ + "print( ( 40.0 - 5.0 ) - 13.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "For Gwen's birthday she received 5 dollars from her dad. Her mom gave her 2 more dollars. If she spent 6 dollars.. How much more money did she receive from her dad than she did from her mom?", + "Output Program": [ + "print( 5.0 - 2.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 90 chocolate chip cookies yesterday and 51 raisin cookies and 484 chocolate chip cookies this morning.. How many chocolate chip cookies did Helen bake?", + "Output Program": [ + "print( 90.0 + 484.0 )" + ], + "Output Answer": [ + "574" + ], + "split": "test" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 25 inches. The frog jumped 18 inches farther than the grasshopper and the mouse jumped 2 inches farther than the frog.. How far did the mouse jump?", + "Output Program": [ + "print( ( 25.0 + 18.0 ) + 2.0 )" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": "A book has 2 chapters. The second chapter is 36 pages long. If there are a total of 67 pages in the book. How many pages are in the first chapter?", + "Output Program": [ + "print( 67.0 - 36.0 )" + ], + "Output Answer": [ + "31" + ], + "split": "test" + }, + { + "Input": "There were 174 parents in the program and 521 pupils too.. How many more pupils were present compared to parents in the program?", + "Output Program": [ + "print( 521.0 - 174.0 )" + ], + "Output Answer": [ + "347" + ], + "split": "test" + }, + { + "Input": "18 red peaches, 14 yellow peaches and 17 green peaches are in the basket.. How many red and yellow peaches are in the basket?", + "Output Program": [ + "print( 18.0 + 14.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": "Carol was sending out birthday invitations to her friends. Each package of invitations she bought had 10 invitations in it and she bought 7 packs. If she sends invitations to only 2 friends. How many invitations will be left?", + "Output Program": [ + "print( ( 10.0 * 7.0 ) - 2.0 )" + ], + "Output Answer": [ + "68" + ], + "split": "test" + }, + { + "Input": "Rebecca wants to split a collection of eggs into groups of 5. Rebecca has 10 marbles and 15 eggs.. How many groups will be created?", + "Output Program": [ + "print( 15.0 / 5.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 5 cups of sugar and 14 cups of flour. She already put in 11 cups of flour.. How many more cups of sugar than cups of flour does she need to add now?", + "Output Program": [ + "print( 5.0 - ( 14.0 - 11.0 ) )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 66 sacks per day.. How many oranges do they harvest per day if each sack contains 28 oranges?", + "Output Program": [ + "print( 66.0 * 28.0 )" + ], + "Output Answer": [ + "1848" + ], + "split": "test" + }, + { + "Input": "Danny has 21 bottle caps in his collection. He found some more bottle caps at the park. If he has 53 bottle caps now. How many bottle caps did he find at the park?", + "Output Program": [ + "print( 53.0 - 21.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 15 kids on monday, 18 kids on tuesday and 7 kids on wednesday.. How many more kids did she play with on monday and tuesday than on wednesday?", + "Output Program": [ + "print( ( 15.0 + 18.0 ) - 7.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food from a total of 66 choices. If 450 students suggested adding mashed potatoes 38 suggested adding bacon to the menu and the rest did not participate. How many students participated in the suggestion of new food items?", + "Output Program": [ + "print( 450.0 + 38.0 )" + ], + "Output Answer": [ + "488" + ], + "split": "test" + }, + { + "Input": "Katie had 78 new games and 86 old games. Her friends had 48 new games.. How many new games do they have together?", + "Output Program": [ + "print( 78.0 + 48.0 )" + ], + "Output Answer": [ + "126" + ], + "split": "test" + }, + { + "Input": "Allan brought 3 balloons and 20 balls while Jake brought 5 balloons and 59 balls to the park.. How many balloons did Allan and Jake have in the park?", + "Output Program": [ + "print( 3.0 + 5.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 8 kids on monday, 11 kids on tuesday and 9 kids on wednesday.. How many more kids did she play with on tuesday than on wednesday?", + "Output Program": [ + "print( 11.0 - 9.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Jessie currently weighs 9 kilograms. After she started to go jogging everyday she lost 62 kilograms in the first week and 140 kilograms in the second week.. How much did she weigh before starting to jog?", + "Output Program": [ + "print( ( 9.0 + 62.0 ) + 140.0 )" + ], + "Output Answer": [ + "211" + ], + "split": "test" + }, + { + "Input": "There are 16 different books and 14 different movies in the ' crazy silly school ' series. If you read 19 of the books and watched 13 of the movies. How many more books than movies are there in the ' crazy silly school ' series?", + "Output Program": [ + "print( 16.0 - 14.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Danny has 12 bottle caps in his collection. He found 53 bottle caps at the park.. How many bottle caps does he have now?", + "Output Program": [ + "print( 12.0 + 53.0 )" + ], + "Output Answer": [ + "65" + ], + "split": "test" + }, + { + "Input": "Paco ate 36 cookies. If he had 37 cookies initially. How many cookies did Paco have left?", + "Output Program": [ + "print( 37.0 - 36.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Bryan took a look at his books and magazines. If he has 9 books and 46 magazines in each of his 10 bookshelves. How many magazines does he have in total?", + "Output Program": [ + "print( 46.0 * 10.0 )" + ], + "Output Answer": [ + "460" + ], + "split": "test" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There were 89 bird families living near the mountain. If 60 bird families flew away for winter. How many more bird families flew away for the winter than those that stayed behind?", + "Output Program": [ + "print( 60.0 - ( 89.0 - 60.0 ) )" + ], + "Output Answer": [ + "31" + ], + "split": "test" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. 182 students suggested adding mashed potatoes while others suggested adding bacon to the menu. If 166 more students suggested adding bacon than those that suggested mashed potatoes. How many students suggested bacon?", + "Output Program": [ + "print( 182.0 + 166.0 )" + ], + "Output Answer": [ + "348" + ], + "split": "test" + }, + { + "Input": "Paige raised 16 goldfish and 71 catfish in the pond but stray cats loved eating them. Now she has 2 left.. How many goldfish disappeared?", + "Output Program": [ + "print( 16.0 - 2.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "During summer break 61619 kids from Lawrence county stayed home and the rest went to camp. The total number of kids in Lawrence county is 91676.. About how many kids in Lawrence county went to camp?", + "Output Program": [ + "print( 91676.0 - 61619.0 )" + ], + "Output Answer": [ + "30057" + ], + "split": "test" + }, + { + "Input": "A waiter had 12 customers. While 15 customers left he got 14 new customers.. How many customers does he still have?", + "Output Program": [ + "print( ( 12.0 - 15.0 ) + 14.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 14 kids on monday, 2 kids on tuesday and 8 kids on wednesday.. How many more kids did she play with on monday than on wednesday?", + "Output Program": [ + "print( 14.0 - 8.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Frank was reading through his favorite book. The book had 3 chapters, each with the same number of pages. It has a total of 594 pages. It took Frank 607 days to finish the book.. How many pages are in each chapter?", + "Output Program": [ + "print( 594.0 / 3.0 )" + ], + "Output Answer": [ + "198" + ], + "split": "test" + }, + { + "Input": "Randy has some blocks. He uses 52 blocks to build a tower. If there are 38 blocks left. How many blocks did he have at the start?", + "Output Program": [ + "print( 52.0 + 38.0 )" + ], + "Output Answer": [ + "90" + ], + "split": "test" + }, + { + "Input": "Jessie weighed 71 kilograms. After she started to go jogging everyday she lost 20 kilograms.. How much does she weigh now?", + "Output Program": [ + "print( 71.0 - 20.0 )" + ], + "Output Answer": [ + "51" + ], + "split": "test" + }, + { + "Input": "David did 56 more push-ups than Zachary in gym class today. If David did 38 push-ups. How many push-ups did Zachary and David do altogether?", + "Output Program": [ + "print( ( 38.0 + 38.0 ) - 56.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "At the arcade Dave had won 7 tickets. He used some tickets to buy toys. If he still has 2 tickets left. How many tickets did Dave use to buy toys?", + "Output Program": [ + "print( 7.0 - 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "They decided to hold the party in their backyard. If they have 11 sets of tables and each set has 13 chairs. How many chairs do they have in the backyard?", + "Output Program": [ + "print( 11.0 * 13.0 )" + ], + "Output Answer": [ + "143" + ], + "split": "test" + }, + { + "Input": "Bobby ate some pieces of candy. Then he ate 25 more. If he ate a total of 43 pieces of candy. How many pieces of candy had he eaten at the start?", + "Output Program": [ + "print( 43.0 - 25.0 )" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "Jake has 7 fewer peaches than Steven and 8 more peaches than Jill. Steven has 17 peaches.. How many peaches does Jill have?", + "Output Program": [ + "print( ( 17.0 - 7.0 ) - 8.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "If each bag has 3 cookies and you had 21 cookies in total. How many bags of cookies do you have?", + "Output Program": [ + "print( 21.0 / 3.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Bobby had 32 pieces of candy. He ate some pieces of candy. If he has 20 pieces of candy left. How many pieces of candy did Bobby eat?", + "Output Program": [ + "print( 32.0 - 20.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "Matthew had 31 crackers. He has 23 crackers left after he gave equal numbers of crackers to his 5 friends.. How many crackers did Matthew give to his friends?", + "Output Program": [ + "print( 31.0 - 23.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "There are 270 students in a school. If the school has 5 students in each grades and each grade has the same number of students. How many grades are there in total?", + "Output Program": [ + "print( 270.0 / 5.0 )" + ], + "Output Answer": [ + "54" + ], + "split": "test" + }, + { + "Input": "Rachel picked 7 ripe apples from her tree. Now the tree has 5 apples still on it. If 3 of those are ripe and the rest are unripe. How many unripe apples does the tree have now?", + "Output Program": [ + "print( 5.0 - 3.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Shirley sold 25 cases of boxes of trefoils.. How many boxes of trefoils does she need to deliver if each case has 14 boxes?", + "Output Program": [ + "print( 25.0 * 14.0 )" + ], + "Output Answer": [ + "350" + ], + "split": "test" + }, + { + "Input": "White t - shirts can be purchased in packages. If mom buys 66 white t - shirts where each package has 3 white t - shirts.. How many packages will she have?", + "Output Program": [ + "print( 66.0 / 3.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "Katie had 62 new games and 80 old games. Her friends had 73 new games and 41 old games.. How many old games do they have 3", + "Output Program": [ + "print( 80.0 + 41.0 )" + ], + "Output Answer": [ + "121" + ], + "split": "test" + }, + { + "Input": "23 children were riding on the bus. At the bus stop 24 children got on the bus while some got off the bus. Then there were 8 children altogether on the bus.. How many more children got off the bus than those that got on?", + "Output Program": [ + "print( 23.0 - 8.0 )" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "The Razorback shop makes $ 86 dollars off each t-shirt and $ 232 off each jersey. During the Arkansas and Texas tech game they sold 254 t-shirts and 43 jerseys.. How much more does a jersey cost than a t-shirt?", + "Output Program": [ + "print( 232.0 - 86.0 )" + ], + "Output Answer": [ + "146" + ], + "split": "test" + }, + { + "Input": "Frank was reading through his favorite book. The book had 392 pages and he read 14 pages per day.. How many days did he take to finish the book?", + "Output Program": [ + "print( 392.0 / 14.0 )" + ], + "Output Answer": [ + "28" + ], + "split": "test" + }, + { + "Input": "Last week Fred had 86 dollars and Jason had 5 dollars. Fred washed cars over the weekend and now has 9 dollars and Jason did not work.. How much money do they have together now?", + "Output Program": [ + "print( 5.0 + 9.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Josh had 19 marbles in his collection. He lost 11 marbles and found 5 new ones.. How many marbles does he have now?", + "Output Program": [ + "print( ( 19.0 - 11.0 ) + 5.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "Allan brought 2 balloons and Jake brought 4 balloons to the park. Allan then bought 3 more balloons at the park.. How many more balloons did Allan have than Jake in the park?", + "Output Program": [ + "print( ( 2.0 + 3.0 ) - 4.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Paul got a box of 521 crayons and 66 erasers for his birthday. At the end of the school year he only had 154 left while not having lost a single erasers.. How many crayons had been lost or given away?", + "Output Program": [ + "print( 521.0 - 154.0 )" + ], + "Output Answer": [ + "367" + ], + "split": "test" + }, + { + "Input": "The school is planning a field trip. The school has 21 classrooms. There are 98 students in the school and 7 school buses. If all buses are full. How many seats are in each bus?", + "Output Program": [ + "print( 98.0 / 7.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Josh had 3 marbles in his collection. He found 6 marbles while he lost 5 marbles.. How many more marbles did he find than those he lost?", + "Output Program": [ + "print( 6.0 - 5.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "An industrial machine worked for 5 minutes. It can make 4 shirts a minute.. How many shirts did machine make?", + "Output Program": [ + "print( 4.0 * 5.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Allan brought 2 balloons and Jake brought 3 balloons to the park.. How many more balloons did Jake have than Allan in the park?", + "Output Program": [ + "print( 3.0 - 2.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Jack received 10 emails in the morning, 5 emails in the afternoon and 4 emails in the evening.. How many more emails did Jack receive in the afternoon than in the evening?", + "Output Program": [ + "print( 5.0 - 4.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Being his favorite, he saved checking on the grapevines for his last stop. He was told by 36 of the pickers that they fill 8 drums of grapes per day.. How many days will it take to fill 240 drums of grapes?", + "Output Program": [ + "print( 240.0 / 8.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 19 kids on monday. She played tag with 18 kids on tuesday. She spent a total of 38 hours to play tag on both days.. How many more kids did she play with on monday than on tuesday?", + "Output Program": [ + "print( 19.0 - 18.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Paul had 95 pens and 153 books. After selling some books and pens in a garage sale he had 13 books and 23 pens left.. How many books did he sell in the garage sale?", + "Output Program": [ + "print( 153.0 - 13.0 )" + ], + "Output Answer": [ + "140" + ], + "split": "test" + }, + { + "Input": "A book has 2 chapters across 23 pages. The first chapter is 10 pages long.. How many pages are in the first chapter?", + "Output Program": [ + "print( 23.0 - 10.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 5 sacks of ripe oranges and 74 sacks of unripe oranges per day.. How many more sacks of unripe oranges than ripe oranges are harvested per day?", + "Output Program": [ + "print( 74.0 - 5.0 )" + ], + "Output Answer": [ + "69" + ], + "split": "test" + }, + { + "Input": "There were 6 roses and 20 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 21 orchids and 22 roses in the vase.. How many more roses than orchids are there in the vase now?", + "Output Program": [ + "print( 22.0 - 21.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvested 54 sacks of oranges.. How many days did it take to harvest them if they harvested 18 sacks of oranges per day?", + "Output Program": [ + "print( 54.0 / 18.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Baker sold 8 cakes. If he had made 40 cakes initially. How many more cakes did baker make than those he sold?", + "Output Program": [ + "print( 40.0 - 8.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": "The ring toss game at the carnival made the same amount of money each day. In total in 30 days they earned 420 dollars. Together with game they earned 22 dollars.. How much did ring toss game make per day?", + "Output Program": [ + "print( 420.0 / 30.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Jack received 6 emails and sent 91 letters in the morning. He then received 2 emails and sent 74 letters in the afternoon.. How many emails did Jack receive in the day?", + "Output Program": [ + "print( 6.0 + 2.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Faye was placing her pencils and crayons into 19 rows with 4 pencils and 27 crayons in each row.. How many pencils does she have?", + "Output Program": [ + "print( 19.0 * 4.0 )" + ], + "Output Answer": [ + "76" + ], + "split": "test" + }, + { + "Input": "Emily is making bead necklaces for her 43 friends. She had 20 beads and she was able to make 5 necklaces.. How many beads did each necklace need?", + "Output Program": [ + "print( 20.0 / 5.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "Jake has 12 fewer peaches than Steven who has 11 more peaches than Jill. Steven has 4 peaches.. How many more peaches does Jill have than Jake?", + "Output Program": [ + "print( 12.0 - 11.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Edward spent $ 4 to buy books and $ 3 to buy pens. Now he has $ 12.. How much did Edward spend on books and pens?", + "Output Program": [ + "print( 4.0 + 3.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Rachel picked 6 ripe apples from her tree. Now the tree has 2 ripe apples and 4 unripe apples.. How many apples did the tree have to begin with?", + "Output Program": [ + "print( ( 6.0 + 2.0 ) + 4.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 67 sacks per day and that each sack containes 12 oranges.. How many oranges are harvested if they harvest a total of 35 sacks of oranges?", + "Output Program": [ + "print( 12.0 * 35.0 )" + ], + "Output Answer": [ + "420" + ], + "split": "test" + }, + { + "Input": "Adam could fit 8 action figures and 10 cabinets on each shelf in his room. His room has 4 shelves.. How many total items could his shelves hold?", + "Output Program": [ + "print( ( 8.0 + 10.0 ) * 4.0 )" + ], + "Output Answer": [ + "72" + ], + "split": "test" + }, + { + "Input": "Ed had 6 more marbles than Doug. Doug lost 7 of his marbles at the playground. If Ed had 22 marbles. How many marbles does Doug have now?", + "Output Program": [ + "print( ( 22.0 - 6.0 ) - 7.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Last week Fred had 60 dollars and Jason had 19 dollars. Jason washed cars over the weekend and now has 33 dollars.. How much money did Jason make washing cars?", + "Output Program": [ + "print( 33.0 - 19.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Jerry had 9 action figures on a shelf in his room. Later he added 7 more action figures to the shelf. If he also has 10 books on the shelf. How many more action figures than books were on his shelf?", + "Output Program": [ + "print( ( 9.0 + 7.0 ) - 10.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "David did 36 more push-ups but 33 less crunches than Zachary in gym class today. If Zachary did 58 push-ups and 33 crunches. How many more push-ups than crunches did Zachary do?", + "Output Program": [ + "print( 58.0 - 33.0 )" + ], + "Output Answer": [ + "25" + ], + "split": "test" + }, + { + "Input": "Jerry had 5 action figures and 2 books on a shelf in his room. Later he added 9 more books to the shelf.. How many more books than action figures were on his shelf?", + "Output Program": [ + "print( ( 2.0 + 9.0 ) - 5.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "There are 896 skittles in Steven's skittles collection. Steven also has 517 erasers and 90 scales. If the skittles are organized into 8 groups. How big is each group?", + "Output Program": [ + "print( 896.0 / 8.0 )" + ], + "Output Answer": [ + "112" + ], + "split": "test" + }, + { + "Input": "Faye was placing her pencils into rows with 22 pencils in each row. She had 6 packs of pencils each one having 14 pencils.. How many pencils does she have?", + "Output Program": [ + "print( 6.0 * 14.0 )" + ], + "Output Answer": [ + "84" + ], + "split": "test" + }, + { + "Input": "A book has 3 chapters. The first chapter is 53 pages long the second chapter is 75 pages long and the third chapter is 21 pages long.. How many more pages does the first chapter have than the third chapter?", + "Output Program": [ + "print( 53.0 - 21.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": "Ryan learns english and chinese for 7 days. Every day he spends 4 hours on learning english and 5 hours on learning chinese.. How many hours does he spend on learning english and chinese in all?", + "Output Program": [ + "print( ( 4.0 + 5.0 ) * 7.0 )" + ], + "Output Answer": [ + "63" + ], + "split": "test" + }, + { + "Input": "Jack received 4 emails and sent 2 letters in the morning. He then received 6 emails and sent 8 letters in the afternoon.. How many emails did Jack send in the day?", + "Output Program": [ + "print( 2.0 + 8.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "For Gwen's birthday she received 2 dollars from her mom. Her dad gave her 4 more dollars. If she spent 3 dollars.. How much money did she still have?", + "Output Program": [ + "print( ( 2.0 + 4.0 ) - 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 9 inches. The mouse jumped 3 inches lesser than the frog who jumped 33 inches farther than the grasshopper.. How far did the mouse jump?", + "Output Program": [ + "print( ( 9.0 + 33.0 ) - 3.0 )" + ], + "Output Answer": [ + "39" + ], + "split": "test" + }, + { + "Input": "Steven has 18 peaches. Jake has 12 fewer peaches than Steven who has 8 more peaches than Jill.. How many peaches does Jill have?", + "Output Program": [ + "print( 18.0 - 8.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Each pot has 40 flowers in it. There are 400 flowers in total.. How many pots are there in all?", + "Output Program": [ + "print( 400.0 / 40.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "The Razorback t-shirt shop made $ 51 dollars from selling 3 t-shirt during the Arkansas and Texas tech game they.. What is the cost of each t-shirt?", + "Output Program": [ + "print( 51.0 / 3.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 21 inches. The grasshopper jumped 25 inches farther than the frog and the mouse jumped 16 inches lesser than the frog.. How much farther did the grasshopper jump than the mouse?", + "Output Program": [ + "print( 25.0 + 16.0 )" + ], + "Output Answer": [ + "41" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 71 sacks of unripe oranges and 60 sacks of ripe oranges per day.. How many more sacks of unripe oranges than ripe oranges are harvested per day?", + "Output Program": [ + "print( 71.0 - 60.0 )" + ], + "Output Answer": [ + "11" + ], + "split": "test" + }, + { + "Input": "Jesse's room is 7 feet long. If she needs a carpet of size 14 square feet. What is the width of her room?", + "Output Program": [ + "print( 14.0 / 7.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Jerry had 8 action figures on a shelf in his room. Later he added 4 more action figures to the shelf and removed 5 old ones.. How many action figures were on his shelf in all?", + "Output Program": [ + "print( ( 8.0 + 4.0 ) - 5.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "They decided to hold the party in their backyard. They have 14 chairs for each set of table. If they have 9 sets of tables. How many more chairs than tables do they have?", + "Output Program": [ + "print( ( 9.0 * 14.0 ) - 9.0 )" + ], + "Output Answer": [ + "117" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps. He found 30 bottle caps at the park while he threw away 63 old ones. Now he has 42 bottle caps in his collection.. How many more bottle caps did danny throw away than those he found at the park?", + "Output Program": [ + "print( 63.0 - 30.0 )" + ], + "Output Answer": [ + "33" + ], + "split": "test" + }, + { + "Input": "The ring toss game at the carnival made 325 dollars in the first 154 days and 114 dollars in the remaining 57 days.. How much did they make per day in the remaining 57 days at the carnival?", + "Output Program": [ + "print( 114.0 / 57.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "There are 3941 skittles in Steven's skittles collection. Steven also has 4950 erasers. If the erasers are organized into 495 groups. How big is each group?", + "Output Program": [ + "print( 4950.0 / 495.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "A mailman has to give 38 pieces of junk mail to each of the 78 blocks. If there are 19 houses on a block. How many pieces of junk mail should he give each house?", + "Output Program": [ + "print( 38.0 / 19.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Allan brought 5 balloons and Jake brought 6 balloons to the park. Jake then bought 3 more balloons at the park.. How many balloons did Jake bring to the park?", + "Output Program": [ + "print( 6.0 + 3.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Marco and his dad went strawberry picking. Together their strawberries weighed 35 pounds. Marco's strawberries weighed 13 pounds.. How much more did his dad's strawberries weigh than his?", + "Output Program": [ + "print( ( 35.0 - 13.0 ) - 13.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Baker made 54 cakes and 143 pastries. If he sold 68 cakes and 92 pastries. How many more pastries than cakes did baker sell?", + "Output Program": [ + "print( 92.0 - 68.0 )" + ], + "Output Answer": [ + "24" + ], + "split": "test" + }, + { + "Input": "A farmer had 90 tomatoes in his garden. If he picked 154 of them yesterday and 50 today.. How many tomatoes did he pick in all?", + "Output Program": [ + "print( 154.0 + 50.0 )" + ], + "Output Answer": [ + "204" + ], + "split": "test" + }, + { + "Input": "Paige was helping her mom plant flowers and together they planted 36 seeds. They put 12 seeds in each flower bed and only 58 seeds grew into flowers in each flower bed.. How many flower beds did they have?", + "Output Program": [ + "print( 36.0 / 12.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Dan has $ 3. He bought 2 candy bar for $ 4, each one costing the same amount of money.. How much did each candy bar cost?", + "Output Program": [ + "print( 4.0 / 2.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Marco and his dad went strawberry picking. Together they collected strawberries that weighed 24 pounds. On the way back Marco lost 9 pounds of strawberries. Marco's strawberries now weighed 3 pounds.. How much did his dad's strawberries weigh?", + "Output Program": [ + "print( 24.0 - ( 3.0 + 9.0 ) )" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "Jessica cut some roses from her flower garden to put in her vase. There are now 19 roses in the vase. If there were 3 roses in the vase initially. How many roses did she cut?", + "Output Program": [ + "print( 19.0 - 3.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "They decided to hold the party in their backyard. They have 10 sets of tables and each set has 6 chairs. If there are 11 people sitting on chairs. How many chairs are left unoccupied?", + "Output Program": [ + "print( ( 10.0 * 6.0 ) - 11.0 )" + ], + "Output Answer": [ + "49" + ], + "split": "test" + }, + { + "Input": "In a school there are 569 girls and 236 boys.. How many more girls than boys does the school have?", + "Output Program": [ + "print( 569.0 - 236.0 )" + ], + "Output Answer": [ + "333" + ], + "split": "test" + }, + { + "Input": "Josh had 20 marbles in his collection. He gave 2 marbles to Jack.. How many marbles does Josh have now?", + "Output Program": [ + "print( 20.0 - 2.0 )" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "The grasshopper and the frog had a jumping contest. The grasshopper jumped 35 inches. The grasshopper jumped 4 inches farther than the frog.. How much did they jump altogether?", + "Output Program": [ + "print( 35.0 + ( 35.0 - 4.0 ) )" + ], + "Output Answer": [ + "66" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 5 kids on monday. She played tag with some more kids on tuesday. If she played with a total of 15 kids. How many kids did she play with on tuesday?", + "Output Program": [ + "print( 15.0 - 5.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "There were 8 people on the bus. At the next stop 12 more people got on the bus and 3 people got off.. How many people are there on the bus now?", + "Output Program": [ + "print( ( 8.0 + 12.0 ) - 3.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "Paul had 21 books. After selling some in a garage sale he bought 42 new ones. If he has 15 books now. How many more books did he sell than he bought?", + "Output Program": [ + "print( 21.0 - 15.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Dave had 19 apps on his phone. He deleted 5 apps.. How many apps are left on his phone?", + "Output Program": [ + "print( 19.0 - 5.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Last week Fred had 78 dollars and Jason had 31 dollars. Jason delivered newspapers and now has 57 dollars. Fred washed cars over the weekend and now has 90 dollars.. How much money did Jason earn by delivering newspapers?", + "Output Program": [ + "print( 57.0 - 31.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "There were 12 people on the bus. At the next stop 4 more people got on the bus. Each bus can not have more than 36 people.. How many people are there on the bus now?", + "Output Program": [ + "print( 12.0 + 4.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "Olivia spent 78 dollars at a supermarket. If she has 33 dollars left with her. How much money did she have initially?", + "Output Program": [ + "print( 78.0 + 33.0 )" + ], + "Output Answer": [ + "111" + ], + "split": "test" + }, + { + "Input": "Rachel had to complete 7 pages of math homework, 11 pages of reading homework and 8 more pages of biology homework.. How many more pages of reading homework than biology homework did she have?", + "Output Program": [ + "print( 11.0 - 8.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 10 bottle caps and 62 wrappers at the park. Now he has 27 bottle caps and 43 wrappers in his collection.. How many more wrappers than bottle caps does danny have now?", + "Output Program": [ + "print( 43.0 - 27.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "At the zoo, a cage had snakes and alligators. The total number of animals in the cage was 79. If 24 snakes and 51 alligators were hiding. How many animals were not hiding in all?", + "Output Program": [ + "print( ( 79.0 - 24.0 ) - 51.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "Rachel had to complete 11 pages of math homework, 2 pages of reading homework and 3 more pages of biology homework.. How many more pages of math homework than biology homework did she have?", + "Output Program": [ + "print( 11.0 - 3.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "There were 13 roses in the vase. Jessica cut some more roses from her flower garden which had a total of 12 roses. There are now 21 roses in the vase.. How many roses are left in the garden?", + "Output Program": [ + "print( 12.0 - ( 21.0 - 13.0 ) )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "Baker made 99 cakes. He bought 167 new cakes and sold 89 cakes.. How many more cakes did baker buy than those he sold?", + "Output Program": [ + "print( 167.0 - 89.0 )" + ], + "Output Answer": [ + "78" + ], + "split": "test" + }, + { + "Input": "Josh had some marbles in his collection. He lost 21 marbles. If he has 12 marbles now. How many marbles did he have in his collection?", + "Output Program": [ + "print( 21.0 + 12.0 )" + ], + "Output Answer": [ + "33" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps. He found 63 bottle caps at the park while he threw away 51 old ones. Now he has 33 bottle caps in his collection.. How many bottle caps did danny have at first?", + "Output Program": [ + "print( ( 33.0 + 51.0 ) - 63.0 )" + ], + "Output Answer": [ + "21" + ], + "split": "test" + }, + { + "Input": "The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 24 inches. The frog jumped 33 inches farther than the grasshopper and the mouse jumped 5 inches lesser than the frog.. How much farther did the mouse jump than the grasshopper?", + "Output Program": [ + "print( 33.0 - 5.0 )" + ], + "Output Answer": [ + "28" + ], + "split": "test" + }, + { + "Input": "Jesse's room is 7 feet wide. If she needs a carpet of size 14 square feet. What is the length of her room?", + "Output Program": [ + "print( 14.0 / 7.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "53 campers went rowing in the morning 48 campers went rowing in the afternoon and 49 campers went rowing in the evening.. How many more campers went rowing in the morning than in the evening?", + "Output Program": [ + "print( 53.0 - 49.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "Jesse's room is 12 feet long and 11 feet wide.. How much longer is her room than it is wide?", + "Output Program": [ + "print( 12.0 - 11.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "He had 15 aquariums for saltwater animals and 62 aquariums for freshwater animals. Each aquarium has 19 animals in it.. How many animals does he have in total?", + "Output Program": [ + "print( ( 15.0 + 62.0 ) * 19.0 )" + ], + "Output Answer": [ + "1463" + ], + "split": "test" + }, + { + "Input": "Zachary did 35 push-ups and 3 crunches in gym class today. David did 58 more push-ups but 87 less crunches than zachary.. How many more push-ups than crunches did Zachary do?", + "Output Program": [ + "print( 35.0 - 3.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 14 cups of flour and 6 cups of sugar. She already put in 5 cups of flour.. How many more cups of flour than cups of sugar does she need to add now?", + "Output Program": [ + "print( ( 14.0 - 5.0 ) - 6.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 5 cups of sugar and 13 cups of flour. She already put in some cups of flour. If she still needs 12 more cups of flour. How many cups of flour did she put in?", + "Output Program": [ + "print( 13.0 - 12.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Jake has 11 fewer peaches than Steven. If Jake has 17 peaches.. How many peaches does Steven have?", + "Output Program": [ + "print( 11.0 + 17.0 )" + ], + "Output Answer": [ + "28" + ], + "split": "test" + }, + { + "Input": "Adam has 4 more apples than Jackie. Together Adam and Jackie have 14 apples. Bob has 6 apples more than Adam and Jackie together do.. How many apples does Bob have?", + "Output Program": [ + "print( 14.0 + 6.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 65 wrappers and 5 bottle caps at the park. Now he has 31 bottle caps and 9 wrappers in his collection.. How many more wrappers than bottle caps did danny find at the park?", + "Output Program": [ + "print( 65.0 - 5.0 )" + ], + "Output Answer": [ + "60" + ], + "split": "test" + }, + { + "Input": "Because of the decision Sofia asked the students to suggest specific types of food. If 257 students suggested adding mashed potatoes 120 suggested adding bacon to the menu and 97 suggested adding tomatoes. How many more students suggested mashed potatoes than those that suggested bacon?", + "Output Program": [ + "print( 257.0 - 120.0 )" + ], + "Output Answer": [ + "137" + ], + "split": "test" + }, + { + "Input": "Rachel had to complete 9 pages of math homework, 11 pages of reading homework and 29 more pages of biology homework.. How many pages of math and reading homework did she have to complete?", + "Output Program": [ + "print( 9.0 + 11.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps. He threw away 54 of the old ones at the park while he found 48 bottle caps new ones. Now he has 52 bottle caps in his collection.. How many more bottle caps did danny throw away than those he found at the park?", + "Output Program": [ + "print( 54.0 - 48.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Rachel's tree had 4 apples initially. She picked some apples and now there are 2 apples left on the tree.. How many apples did rachel pick?", + "Output Program": [ + "print( 4.0 - 2.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "With 28 dollars 2 packs of dvds can be bought.. How much does each pack cost?", + "Output Program": [ + "print( 28.0 / 2.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "In a school there are 362 boys and 257 girls. 403 more girls joined the school.. How many more girls than boys does the school have?", + "Output Program": [ + "print( ( 257.0 + 403.0 ) - 362.0 )" + ], + "Output Answer": [ + "298" + ], + "split": "test" + }, + { + "Input": "During the Arkansas and Texas tech game the Razorback t-shirt shop made $ 60 by selling t-shirts. If they make $ 10 dollars off each t-shirt sold. How many t-shirts did they sell?", + "Output Program": [ + "print( 60.0 / 10.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Matthew had some crackers. If Matthew gave 2 crackers to each of his 11 friends. How many crackers did Matthew have?", + "Output Program": [ + "print( 11.0 * 2.0 )" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "6 green peaches, 60 yellow peaches and 2 red peaches are in the basket.. How many more green peaches than red peaches are in the basket?", + "Output Program": [ + "print( 6.0 - 2.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 9 cups of sugar 7 cups of flour and 4 cups of salt. She already put in 2 cups of flour.. How many more cups of flour than cups of salt does she need to add now?", + "Output Program": [ + "print( ( 7.0 - 2.0 ) - 4.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Kelly has 22 nintendo games.. How many does she need to buy so that she will have 140 games left?", + "Output Program": [ + "print( 140.0 - 22.0 )" + ], + "Output Answer": [ + "118" + ], + "split": "test" + }, + { + "Input": "Dave had 59 files and 15 apps on his phone. After deleting some apps and files he had 12 apps and 30 files left.. How many apps did he delete?", + "Output Program": [ + "print( 15.0 - 12.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Dave had 19 apps and 18 files on his phone. After deleting some apps and files he had 6 apps and 15 files left.. How many more files than apps does he have left on the phone?", + "Output Program": [ + "print( 15.0 - 6.0 )" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "The Razorback t-shirt shop sells each t-shirt for $ 201 dollars. During the Arkansas and Texas tech game they increased the prices by $ 217 per t-shirt and sold 14 t-shirts.. How much money did they make from selling the t-shirts?", + "Output Program": [ + "print( ( 201.0 + 217.0 ) * 14.0 )" + ], + "Output Answer": [ + "5852" + ], + "split": "test" + }, + { + "Input": "Brenda's mother made cookies for 5. She prepared 22 cookies but had to throw away 17 cookies. If each of them had the same number of cookies. How many did each of them have?", + "Output Program": [ + "print( ( 22.0 - 17.0 ) / 5.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "At the arcade Dave had won 18 tickets. If he used 5 to buy some toys and 11 more to buy some clothes. How many tickets did Dave have left?", + "Output Program": [ + "print( 18.0 - ( 5.0 + 11.0 ) )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 13 kids on monday and 10 kids on tuesday. She played cards with 15 kids on wednesday.. How many kids did she play with altogether?", + "Output Program": [ + "print( ( 13.0 + 10.0 ) + 15.0 )" + ], + "Output Answer": [ + "38" + ], + "split": "test" + }, + { + "Input": "Paul got a box of 267 crayons for his birthday. During the school year he lost 231 crayons while he gave away 308 crayons to his friends.. How many more crayons did he give to his friends than those he lost?", + "Output Program": [ + "print( 308.0 - 231.0 )" + ], + "Output Answer": [ + "77" + ], + "split": "test" + }, + { + "Input": "Each Ferris wheel in paradise park has 19 seats. Each seat in a Ferris wheel can hold 15 people.. How many people can ride 20 Ferris wheels at the same time?", + "Output Program": [ + "print( ( 19.0 * 15.0 ) * 20.0 )" + ], + "Output Answer": [ + "5700" + ], + "split": "test" + }, + { + "Input": "Rachel picked 3 ripe apples from her tree. Now the tree has 2 ripe apples and 27 unripe apples.. How many ripe apples did the tree have to begin with?", + "Output Program": [ + "print( 3.0 + 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "The school is planning a field trip. The school has 102 classrooms. There are 11 students in the school and 99 seats on each school bus. If 8 students do n't want to go for the trip. How many students are going on the trip?", + "Output Program": [ + "print( 11.0 - 8.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are 3 bird families living near the mountain. 26 new bird families came to live near the mountain from the arctic while 2 bird families flew away further south for winter.. How many bird families were left near the mountain?", + "Output Program": [ + "print( ( 3.0 - 2.0 ) + 26.0 )" + ], + "Output Answer": [ + "27" + ], + "split": "test" + }, + { + "Input": "29 campers went rowing and 66 campers went hiking in the morning. 26 campers went rowing in the afternoon.. How many more campers went rowing in the morning than in the afternoon?", + "Output Program": [ + "print( 29.0 - 26.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "The Ferris wheel in paradise park has 6 seats. Each seat can hold 14 people. If there are 16 people on the wheel right now. How many more people can join the wheel?", + "Output Program": [ + "print( ( 6.0 * 14.0 ) - 16.0 )" + ], + "Output Answer": [ + "68" + ], + "split": "test" + }, + { + "Input": "Robin's hair was 19 inches long. If he grew 18 more inches. How long is his hair now?", + "Output Program": [ + "print( 19.0 + 18.0 )" + ], + "Output Answer": [ + "37" + ], + "split": "test" + }, + { + "Input": "In a school there are 902 girls and 811 boys. 44 more girls joined the school.. How many girls are there in the school now?", + "Output Program": [ + "print( 902.0 + 44.0 )" + ], + "Output Answer": [ + "946" + ], + "split": "test" + }, + { + "Input": "Baker made 134 pastries and 11 cakes. If he sold 140 cakes and 92 pastries. How many more pastries than cakes did baker make?", + "Output Program": [ + "print( 134.0 - 11.0 )" + ], + "Output Answer": [ + "123" + ], + "split": "test" + }, + { + "Input": "Brenda's mother made 14 cookies for 2 guests. If each of them had the same number of cookies. How many did each of them have?", + "Output Program": [ + "print( 14.0 / 2.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Tiffany was collecting cans for recycling. On monday she had 8 bags of cans. She found 10 bags of cans on the next day and 4 bags of cans the day after that.. How many bags did she find after monday?", + "Output Program": [ + "print( 10.0 + 4.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "If the cave is 919 feet deep and they need to travel 1307 feet. How far is the end of the cave?", + "Output Program": [ + "print( 919.0 + 1307.0 )" + ], + "Output Answer": [ + "2226" + ], + "split": "test" + }, + { + "Input": "Dan has $ 4. He bought a candy bar for $ 8. Then his friend have him $ 5. How much money is left?", + "Output Program": [ + "print( ( 4.0 - 8.0 ) + 5.0 )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "The Razorback t-shirt shop makes $ 106 dollars off each t-shirt sold. During the Arkansas game and the Texas tech game they sold a total of 242 t-shirts. If they sold 115 t-shirts during the Arkansas game. How many t-shirts did they sell during the Texas tech game?", + "Output Program": [ + "print( 242.0 - 115.0 )" + ], + "Output Answer": [ + "127" + ], + "split": "test" + }, + { + "Input": "We ordered 9 pizzas. Each pizza has 10 slices. If there are 2 of us. How many slices of pizza does each of us get if distributed equally?", + "Output Program": [ + "print( 9.0 * ( 10.0 / 2.0 ) )" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": "Ed had 2 more marbles than Doug. Doug lost some of his marbles at the playground. Now Ed has 19 more marbles than doug.. How many marbles did Doug lose?", + "Output Program": [ + "print( 19.0 - 2.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "Bobby had 19 pieces of candy. He ate 2 pieces of candy.. How many pieces of candy does he still have left?", + "Output Program": [ + "print( 19.0 - 2.0 )" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "A mailman has to give 4 pieces of junk mail to each house in each of the 81 blocks. If there are 12 houses in each block. How many pieces of junk mail should he give in each block?", + "Output Program": [ + "print( 4.0 * 12.0 )" + ], + "Output Answer": [ + "48" + ], + "split": "test" + }, + { + "Input": "Frank was reading through his favorite book. It took him 16 days to finish the book. If the book had 112 pages. How many pages did he read per day?", + "Output Program": [ + "print( 112.0 / 16.0 )" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "David did 27 more push-ups but 7 less crunches than Zachary in gym class today. If Zachary did 5 push-ups and 17 crunches. How many more crunches than push-ups did Zachary do?", + "Output Program": [ + "print( 17.0 - 5.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "Jerry had 4 action figures on a shelf in his room. Later he added some more action figures to the shelf. If there are a total of 8 action figures on his shelf now. How many action figures did he add to the shelf?", + "Output Program": [ + "print( 8.0 - 4.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 12 kids on monday. She played tag with 14 kids on tuesday. She spent a total of 34 hours to play tag on both days.. How many kids did she play with altogether?", + "Output Program": [ + "print( 12.0 + 14.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 144 chocolate chip cookies and 397 raisin cookies yesterday. And she baked 85 raisin cookies and 403 chocolate chip cookies this morning.. How many raisin cookies did Helen bake?", + "Output Program": [ + "print( 397.0 + 85.0 )" + ], + "Output Answer": [ + "482" + ], + "split": "test" + }, + { + "Input": "Faye had 31 packs of pencils each one having 6 pencils. She was placing her pencils into rows with 19 pencils in each row.. How many pencils does she have?", + "Output Program": [ + "print( 31.0 * 6.0 )" + ], + "Output Answer": [ + "186" + ], + "split": "test" + }, + { + "Input": "The Razorback t-shirt shop makes $ 23 dollars off each t-shirt sold. During the Arkansas and Texas tech game they made $ 230 by selling t-shirts.. How many t-shirts did they sell?", + "Output Program": [ + "print( 230.0 / 23.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "A waiter had 3 customers. After some left he still had 4 customers.. How many more customers stayed behind than those that left?", + "Output Program": [ + "print( 4.0 - ( 3.0 - 4.0 ) )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "2 children were riding on the bus. At the bus stop some more children got on the bus. Then there were 10 children altogether on the bus.. How many more children are on the bus now than there were before the bus stop?", + "Output Program": [ + "print( 10.0 - 2.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Baker made 144 cakes. He sold 71 of them. Then he made 111 more cakes.. How many more cakes did baker make than those he sold?", + "Output Program": [ + "print( ( 144.0 + 111.0 ) - 71.0 )" + ], + "Output Answer": [ + "184" + ], + "split": "test" + }, + { + "Input": "Next on his checklist is wax to stick the feathers together. He needs 159 g of wax more. If the feathers require a total of 628 g of wax. How many grams of wax does he already have?", + "Output Program": [ + "print( 628.0 - 159.0 )" + ], + "Output Answer": [ + "469" + ], + "split": "test" + }, + { + "Input": "Bryan took a look at his books as well. He has 7 bookshelves with each having the same number of books. If he has a total of 28 books. How many books are there in each bookshelf?", + "Output Program": [ + "print( 28.0 / 7.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "46 campers went rowing on a day. 43 campers went rowing in the morning and some more campers went rowing in the afternoon.. How many campers went rowing in the afternoon?", + "Output Program": [ + "print( 46.0 - 43.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 2 kids on monday, 14 kids on tuesday and 16 kids on wednesday.. How many kids did she play with on tuesday and wednesday?", + "Output Program": [ + "print( 14.0 + 16.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": "Ed had 24 more marbles than Doug. Doug lost 27 of his marbles at the playground while Ed found 9 more marbles.. How many more marbles did Ed have than Doug then?", + "Output Program": [ + "print( ( 24.0 + 27.0 ) + 9.0 )" + ], + "Output Answer": [ + "60" + ], + "split": "test" + }, + { + "Input": "10 red peaches and some more green peaches are in the basket. If there are a total of 15 peaches in the basket. How many green peaches are in the basket?", + "Output Program": [ + "print( 15.0 - 10.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "Paige was helping her mom plant flowers and together they planted some seeds. They put 10 seeds in each flower bed. If there are 45 flowerbeds. How many seeds did they plant?", + "Output Program": [ + "print( 10.0 * 45.0 )" + ], + "Output Answer": [ + "450" + ], + "split": "test" + }, + { + "Input": "Emily is making bead necklaces for her 72 friends. She has 6 beads and each necklace takes 3 beads.. How many necklaces can Emily make?", + "Output Program": [ + "print( 6.0 / 3.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 9 kids on monday, 7 kids on tuesday and 96 kids on wednesday.. How many more kids did she play with on monday than on tuesday?", + "Output Program": [ + "print( 9.0 - 7.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Jessie weighed 114 kilograms. After she started to go jogging everyday she lost 50 kilograms in the first week and 60 kilograms in the second week.. How much does she weigh now?", + "Output Program": [ + "print( ( 114.0 - 50.0 ) - 60.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "A book has 3 chapters. The first chapter is 91 pages long the second chapter is 23 pages long and the third chapter is 25 pages long.. How many more pages does the first chapter have than the second chapter?", + "Output Program": [ + "print( 91.0 - 23.0 )" + ], + "Output Answer": [ + "68" + ], + "split": "test" + }, + { + "Input": "Debby bought 95 soda bottles and 180 water bottles when they were on sale. If she drank 15 water bottles and 54 soda bottles a day. How many days would the water bottles last?", + "Output Program": [ + "print( 180.0 / 15.0 )" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "Nell collects cards. She had 246 baseball cards and 214 Ace cards. She gave some of her cards to Jeff and now has 404 baseball cards and 495 Ace cards left.. How many more Ace cards than baseball cards does Nell have?", + "Output Program": [ + "print( 495.0 - 404.0 )" + ], + "Output Answer": [ + "91" + ], + "split": "test" + }, + { + "Input": "Jake brought 6 balloons to the park. If Jake brought 4 more balloons than the number of balloons that Allan brought. How many balloons did Allan bring to the park?", + "Output Program": [ + "print( 6.0 - 4.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Baker made 81 cakes. Then he made 92 more cakes. He sold 46 of them.. How many more cakes did baker make than those he sold?", + "Output Program": [ + "print( ( 81.0 + 92.0 ) - 46.0 )" + ], + "Output Answer": [ + "127" + ], + "split": "test" + }, + { + "Input": "Robin cut off 20 inches of his hair. If his hair is now 10 inches long. How long was his hair before he cut?", + "Output Program": [ + "print( 20.0 + 10.0 )" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": "Jack received 5 emails and 6 letters in the morning. He then received 9 emails and 7 letters in the afternoon.. How many letters did jack receive in the day?", + "Output Program": [ + "print( 6.0 + 7.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "Robin has 28 packages of gum and 13 packages of candy. There are 4 pieces in each package.. How many pieces of gum does Robin have?", + "Output Program": [ + "print( 28.0 * 4.0 )" + ], + "Output Answer": [ + "112" + ], + "split": "test" + }, + { + "Input": "Every day Ryan spends 4 hours on learning english and 6 hours on learning chinese. If he learns for 86 days. How many hours does he spend on learning english and chinese each day?", + "Output Program": [ + "print( 4.0 + 6.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Marco and his dad went strawberry picking. Marco's strawberries weighed 10 pounds. If together their strawberries weighed 26 pounds.. How much more did his dad's strawberries weigh than his?", + "Output Program": [ + "print( ( 26.0 - 10.0 ) - 10.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Lucy went to the grocery store. She bought 10 packs of cookie and 4 packs of cake.. How many more packs of cookie did she buy over cake?", + "Output Program": [ + "print( 10.0 - 4.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 30 bottle caps and 14 wrappers at the park. Now he has 7 bottle caps and 86 wrappers in his collection.. How many more bottle caps than wrappers did danny find at the park?", + "Output Program": [ + "print( 30.0 - 14.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "Last week Fred had 47 dollars and Jason had 99 dollars. Over the weekend Fred delivered newspapers earning 111 dollars and washed cars earning 34 dollars.. How much money does Fred have now?", + "Output Program": [ + "print( ( 47.0 + 111.0 ) + 34.0 )" + ], + "Output Answer": [ + "192" + ], + "split": "test" + }, + { + "Input": "Friends of Katie had 57 games and she had 63 ds games.. How many more games does Katie have than her friends?", + "Output Program": [ + "print( 63.0 - 57.0 )" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Adam has 5 more apples than Jackie. Jackie has 89 oranges and 11 apples.. How many apples does Adam have?", + "Output Program": [ + "print( 5.0 + 11.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 41 sacks of unripe oranges and 86 sacks of ripe oranges per day.. How many more sacks of ripe oranges than unripe oranges are harvested per day?", + "Output Program": [ + "print( 86.0 - 41.0 )" + ], + "Output Answer": [ + "45" + ], + "split": "test" + }, + { + "Input": "3 red peaches, and some more green peaches are in the basket. If there are 10 more green peaches than red peaches in the basket. How many green peaches are in the basket?", + "Output Program": [ + "print( 3.0 + 10.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "For Gwen's birthday she received 3 dollars from her mom. Her dad gave her 6 more dollars. If she spent 4 dollars.. How much more money did she receive from her dad than she did from her mom?", + "Output Program": [ + "print( 6.0 - 3.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "A mailman has to give 9 pieces of junk mail to each house in each block. If there are 20 houses on a block. How many pieces of junk mail should he give in each block?", + "Output Program": [ + "print( 9.0 * 20.0 )" + ], + "Output Answer": [ + "180" + ], + "split": "test" + }, + { + "Input": "Robin has some packages of gum. There are 3 pieces in each package and a total of 42 pieces of gum.. How many packages does Robin have?", + "Output Program": [ + "print( 42.0 / 3.0 )" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Nell collects baseball cards. She had 566 cards while Jeff had 234 cards. She gave some of her cards to Jeff and now has 535 cards left.. How many cards does Jeff have now?", + "Output Program": [ + "print( ( 234.0 + 566.0 ) - 535.0 )" + ], + "Output Answer": [ + "265" + ], + "split": "test" + }, + { + "Input": "Lewis earns $ 21 every week during the 216 weeks of harvest. If he has to pay $ 702 tax. How much money will have at the end of the harvest season?", + "Output Program": [ + "print( ( 21.0 * 216.0 ) - 702.0 )" + ], + "Output Answer": [ + "3834" + ], + "split": "test" + }, + { + "Input": "At the stop 8 more people got on the train. Initially there were 11 people on the train.. How many people are there on the train now?", + "Output Program": [ + "print( 11.0 + 8.0 )" + ], + "Output Answer": [ + "19" + ], + "split": "test" + }, + { + "Input": "Every day Ryan spends 6 hours on learning english 7 hours on learning chinese and 3 hours on learning spanish.. How many hours does he spend on learning english, chinese and spanish in all?", + "Output Program": [ + "print( ( 6.0 + 7.0 ) + 3.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "An industrial machine can make 3 shirts a minute. It made 4 shirts yesterday and 8 shirts today.. How many minutes did the machine work in all?", + "Output Program": [ + "print( ( 4.0 + 8.0 ) / 3.0 )" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "A waiter had 12 customers. After some left he still had 14 customers. Then he got 10 new customers. How many customers does he have now?", + "Output Program": [ + "print( 14.0 + 10.0 )" + ], + "Output Answer": [ + "24" + ], + "split": "test" + }, + { + "Input": "Jack received 6 emails in the morning, 3 emails in the afternoon and some more in the evening. If he received a total of 10 emails in the day. How many emails did Jack receive in the afternoon?", + "Output Program": [ + "print( 10.0 - ( 6.0 + 3.0 ) )" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Jack received a total of 9 emails in the day. If he received 7 emails in the morning and some more in the afternoon. How many emails did Jack receive in the afternoon?", + "Output Program": [ + "print( 9.0 - 7.0 )" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Jake has 9 fewer peaches than Steven and 18 more peaches than Jill. Steven has 16 peaches.. How many more peaches does Steven have than Jill?", + "Output Program": [ + "print( 9.0 + 18.0 )" + ], + "Output Answer": [ + "27" + ], + "split": "test" + }, + { + "Input": "Edward had $ 13. He spent some money. Now he has $ 3.. How much money did Edward spend?", + "Output Program": [ + "print( 13.0 - 3.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Together Adam and Jackie have 6 apples. He has 4 apples more than adam and jackie together do.. How many apples does he have?", + "Output Program": [ + "print( 6.0 + 4.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Jerry had some action figures on a shelf in his room. Later he added 7 more action figures to the shelf. If there are a total of 10 action figures on his shelf now. How many action figures did he have initially on the shelf?", + "Output Program": [ + "print( 10.0 - 7.0 )" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Baker made 133 cakes. If he sold 51 of them. How many more cakes did baker make than those he sold?", + "Output Program": [ + "print( 133.0 - 51.0 )" + ], + "Output Answer": [ + "82" + ], + "split": "test" + }, + { + "Input": "Paul got a box of some crayons for his birthday. By the end of the school year he had either lost or given away 551 of them and only had 177 left.. How many crayons did he get for his birthday?", + "Output Program": [ + "print( 551.0 + 177.0 )" + ], + "Output Answer": [ + "728" + ], + "split": "test" + }, + { + "Input": "Julia played tag with 5 kids on monday, 9 kids on tuesday and 15 kids on wednesday.. How many kids did she play with on monday and wednesday?", + "Output Program": [ + "print( 5.0 + 15.0 )" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "A chef had 58 apples. After making some pies, he had used 35.. How many apples remained?", + "Output Program": [ + "print( 58.0 - 35.0 )" + ], + "Output Answer": [ + "23" + ], + "split": "test" + }, + { + "Input": "Jake has 13 more apples and 17 fewer peaches than Steven. Steven has 8 peaches and 12 apples.. How many apples does Jake have?", + "Output Program": [ + "print( 13.0 + 12.0 )" + ], + "Output Answer": [ + "25" + ], + "split": "test" + }, + { + "Input": "Baker made 52 pastries and 84 cakes. If he sold 102 cakes and 94 pastries. How many more cakes than pastries did baker make?", + "Output Program": [ + "print( 84.0 - 52.0 )" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": "62 campers went rowing in the morning. 39 campers went rowing in the afternoon.. How many more campers went rowing in the morning than in the afternoon?", + "Output Program": [ + "print( 62.0 - 39.0 )" + ], + "Output Answer": [ + "23" + ], + "split": "test" + }, + { + "Input": "Because of the decision Sofia asked 288 students to suggest specific types of food. 264 students suggested adding bacon while others suggested adding mashed potatoes to the menu.. How many students suggested mashed potatoes?", + "Output Program": [ + "print( 288.0 - 264.0 )" + ], + "Output Answer": [ + "24" + ], + "split": "test" + }, + { + "Input": "At the arcade Dave had won some tickets. He used 12 tickets to buy some toys. If he still has 14 tickets left. How many tickets did Dave win at the arcade?", + "Output Program": [ + "print( 12.0 + 14.0 )" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "White t - shirts can be purchased in packages of 53. If mom buys 57 packages of white t - shirts and 34 trousers. How many white t - shirts will she have?", + "Output Program": [ + "print( 53.0 * 57.0 )" + ], + "Output Answer": [ + "3021" + ], + "split": "test" + }, + { + "Input": "He then went to see the oranges being harvested. He found out that they harvest 8 sacks per day and that each sack containes 35 oranges.. How many oranges do they harvest per day?", + "Output Program": [ + "print( 8.0 * 35.0 )" + ], + "Output Answer": [ + "280" + ], + "split": "test" + }, + { + "Input": "Danny collects bottle caps and wrappers. He found 82 wrappers and 29 bottle caps at the park. Now he has 42 bottle caps and 61 wrappers in his collection.. How many bottle caps did danny have at first?", + "Output Program": [ + "print( 42.0 - 29.0 )" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "Winter is almost here and most animals are migrating to warmer countries. There are some bird families living near the mountain. 20 bird families flew away for winter while 14 bird families stayed behind.. How many bird families were living near the mountain at the start?", + "Output Program": [ + "print( 20.0 + 14.0 )" + ], + "Output Answer": [ + "34" + ], + "split": "test" + }, + { + "Input": "Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 197 chocolate chip cookies and 46 raisin cookies yesterday. And she baked 75 raisin cookies and 66 chocolate chip cookies this morning.. How many more chocolate chip cookies did Helen bake yesterday compared to today?", + "Output Program": [ + "print( 197.0 - 66.0 )" + ], + "Output Answer": [ + "131" + ], + "split": "test" + }, + { + "Input": "Mary is baking a cake. The recipe calls for 12 cups of sugar and 14 cups of flour. She already put in 10 cups of sugar.. How many more cups of flour than cups of sugar does she need to add now?", + "Output Program": [ + "print( 14.0 - ( 12.0 - 10.0 ) )" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "Marco and his dad went strawberry picking. Marco's dad's strawberries weighed 11 pounds. If together their strawberries weighed 30 pounds.. How much did Marco's strawberries weigh?", + "Output Program": [ + "print( 30.0 - 11.0 )" + ], + "Output Answer": [ + "19" + ], + "split": "test" + }, + { + "Input": "4 birds and 6 storks were sitting on the fence. 2 more storks came to join them.. How many storks are sitting on the fence?", + "Output Program": [ + "print( 6.0 + 2.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Debby bought 200 water bottles and 256 soda bottles when they were on sale. If she drank 312 water bottles and 4 soda bottles a day. How many days would the soda bottles last?", + "Output Program": [ + "print( 256.0 / 4.0 )" + ], + "Output Answer": [ + "64" + ], + "split": "test" + }, + { + "Input": "Rachel picked 2 ripe apples from her tree. Now the tree has 7 apples still on it. If 6 of those are ripe and the rest are unripe. How many ripe apples did the tree have to begin with?", + "Output Program": [ + "print( 2.0 + 6.0 )" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Tiffany was collecting cans for recycling. On monday she had 3 bags of cans. The next day she found 7 more bags of cans and 44 bags of bottles.. How many bags of cans did she have altogether?", + "Output Program": [ + "print( 3.0 + 7.0 )" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Emily is making bead necklaces for her friends. She had 2 beads and she was able to make 32 necklaces.. How many beads did each necklace need?", + "Output Program": [ + "print( 32.0 / 2.0 )" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "Some children were riding on the bus. At the bus stop 2 more children got on the bus. Then there were 41 children altogether on the bus.. How many children were riding on the bus before the bus stop?", + "Output Program": [ + "print( 41.0 - 2.0 )" + ], + "Output Answer": [ + "39" + ], + "split": "test" + }, + { + "Input": "Every day Ryan spends 7 hours on learning english and some more hours on learning chinese. If he spends 2 hours more on learning english than on learning chinese. How many hours does he spend on learning chinese?", + "Output Program": [ + "print( 7.0 - 2.0 )" + ], + "Output Answer": [ + "5" + ], + "split": "test" + } + ], + "Metadata": [ + { + "Answer": 51, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 46, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 21, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 143, + "Explanation": "type: Multiplication" + }, + { + "Answer": 926, + "Explanation": "type: Subtraction" + }, + { + "Answer": 255, + "Explanation": "type: Multiplication" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 16, + "Explanation": "type: Subtraction" + }, + { + "Answer": 469, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1414, + "Explanation": "type: Addition" + }, + { + "Answer": 27, + "Explanation": "type: Subtraction" + }, + { + "Answer": 66, + "Explanation": "type: Subtraction" + }, + { + "Answer": 186, + "Explanation": "type: Addition" + }, + { + "Answer": 20, + "Explanation": "type: Multiplication" + }, + { + "Answer": 10, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 60, + "Explanation": "type: Subtraction" + }, + { + "Answer": 488, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 89, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 63, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Addition" + }, + { + "Answer": 949, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8142, + "Explanation": "type: Multiplication" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 39, + "Explanation": "type: Subtraction" + }, + { + "Answer": 32, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Addition" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 26, + "Explanation": "type: Addition" + }, + { + "Answer": 266, + "Explanation": "type: Subtraction" + }, + { + "Answer": 57, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 24, + "Explanation": "type: Addition" + }, + { + "Answer": 204, + "Explanation": "type: Addition" + }, + { + "Answer": 20, + "Explanation": "type: Addition" + }, + { + "Answer": 31, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 61, + "Explanation": "type: Subtraction" + }, + { + "Answer": 11, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 139, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 22, + "Explanation": "type: Multiplication" + }, + { + "Answer": 111, + "Explanation": "type: Addition" + }, + { + "Answer": 22090603, + "Explanation": "type: Multiplication" + }, + { + "Answer": 125, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Addition" + }, + { + "Answer": 75, + "Explanation": "type: Addition" + }, + { + "Answer": 569, + "Explanation": "type: Addition" + }, + { + "Answer": 2173, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4300, + "Explanation": "type: Multiplication" + }, + { + "Answer": 24, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 687, + "Explanation": "type: Subtraction" + }, + { + "Answer": 20, + "Explanation": "type: Multiplication" + }, + { + "Answer": 30, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17, + "Explanation": "type: Common-Division" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 366, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 30, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 15, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 154, + "Explanation": "type: Multiplication" + }, + { + "Answer": 39, + "Explanation": "type: Subtraction" + }, + { + "Answer": 96, + "Explanation": "type: Multiplication" + }, + { + "Answer": 28462, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10011, + "Explanation": "type: Multiplication" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 23, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1862, + "Explanation": "type: Multiplication" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 84, + "Explanation": "type: Multiplication" + }, + { + "Answer": 104, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Common-Division" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 25, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 33, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 118, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 192, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 34, + "Explanation": "type: Subtraction" + }, + { + "Answer": 60, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 308, + "Explanation": "type: Multiplication" + }, + { + "Answer": 80, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 180, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 16, + "Explanation": "type: Subtraction" + }, + { + "Answer": 15, + "Explanation": "type: Subtraction" + }, + { + "Answer": 125, + "Explanation": "type: Addition" + }, + { + "Answer": 30, + "Explanation": "type: Addition" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 137, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1124, + "Explanation": "type: Addition" + }, + { + "Answer": 81, + "Explanation": "type: Subtraction" + }, + { + "Answer": 469, + "Explanation": "type: Subtraction" + }, + { + "Answer": 72, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Multiplication" + }, + { + "Answer": 174080, + "Explanation": "type: Multiplication" + }, + { + "Answer": 450, + "Explanation": "type: Multiplication" + }, + { + "Answer": 34, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 98, + "Explanation": "type: Subtraction" + }, + { + "Answer": 21, + "Explanation": "type: Subtraction" + }, + { + "Answer": 638, + "Explanation": "type: Multiplication" + }, + { + "Answer": 29, + "Explanation": "type: Common-Division" + }, + { + "Answer": 16, + "Explanation": "type: Common-Division" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 37, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 95, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 21, + "Explanation": "type: Subtraction" + }, + { + "Answer": 58, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1538832, + "Explanation": "type: Addition" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 858, + "Explanation": "type: Multiplication" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 18, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8722, + "Explanation": "type: Multiplication" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 229, + "Explanation": "type: Addition" + }, + { + "Answer": 29, + "Explanation": "type: Subtraction" + }, + { + "Answer": 61, + "Explanation": "type: Subtraction" + }, + { + "Answer": 420, + "Explanation": "type: Multiplication" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 42, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 56, + "Explanation": "type: Subtraction" + }, + { + "Answer": 21, + "Explanation": "type: Common-Division" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 76, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 21, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 28, + "Explanation": "type: Multiplication" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 28, + "Explanation": "type: Multiplication" + }, + { + "Answer": 40, + "Explanation": "type: Common-Division" + }, + { + "Answer": 83, + "Explanation": "type: Addition" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 12518, + "Explanation": "type: Multiplication" + }, + { + "Answer": 127, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 460, + "Explanation": "type: Multiplication" + }, + { + "Answer": 11, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 47, + "Explanation": "type: Subtraction" + }, + { + "Answer": 350, + "Explanation": "type: Multiplication" + }, + { + "Answer": 68, + "Explanation": "type: Multiplication" + }, + { + "Answer": 19, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Common-Division" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17, + "Explanation": "type: Common-Division" + }, + { + "Answer": 72, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 184, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1092, + "Explanation": "type: Multiplication" + }, + { + "Answer": 15, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 23, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 450, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 16, + "Explanation": "type: Subtraction" + }, + { + "Answer": 280, + "Explanation": "type: Multiplication" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 183, + "Explanation": "type: Subtraction" + }, + { + "Answer": 482, + "Explanation": "type: Addition" + }, + { + "Answer": 8, + "Explanation": "type: Addition" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 69, + "Explanation": "type: Subtraction" + }, + { + "Answer": 20, + "Explanation": "type: Subtraction" + }, + { + "Answer": 21, + "Explanation": "type: Subtraction" + }, + { + "Answer": 90, + "Explanation": "type: Addition" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 174, + "Explanation": "type: Addition" + }, + { + "Answer": 84, + "Explanation": "type: Multiplication" + }, + { + "Answer": 640, + "Explanation": "type: Multiplication" + }, + { + "Answer": 26, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Multiplication" + }, + { + "Answer": 27, + "Explanation": "type: Addition" + }, + { + "Answer": 65, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6840, + "Explanation": "type: Multiplication" + }, + { + "Answer": 23, + "Explanation": "type: Addition" + }, + { + "Answer": 1542, + "Explanation": "type: Addition" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 40, + "Explanation": "type: Addition" + }, + { + "Answer": 183, + "Explanation": "type: Addition" + }, + { + "Answer": 127, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Common-Division" + }, + { + "Answer": 26, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 997, + "Explanation": "type: Addition" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 29, + "Explanation": "type: Addition" + }, + { + "Answer": 27, + "Explanation": "type: Common-Division" + }, + { + "Answer": 91, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 48, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 18, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 217, + "Explanation": "type: Addition" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 26180, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 211, + "Explanation": "type: Addition" + }, + { + "Answer": 37, + "Explanation": "type: Common-Division" + }, + { + "Answer": 34, + "Explanation": "type: Addition" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 30, + "Explanation": "type: Addition" + }, + { + "Answer": 20, + "Explanation": "type: Addition" + }, + { + "Answer": 410, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 745, + "Explanation": "type: Addition" + }, + { + "Answer": 131, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 37, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 654, + "Explanation": "type: Subtraction" + }, + { + "Answer": 34, + "Explanation": "type: Addition" + }, + { + "Answer": 45, + "Explanation": "type: Addition" + }, + { + "Answer": 28, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 25, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2184, + "Explanation": "type: Multiplication" + }, + { + "Answer": 20, + "Explanation": "type: Addition" + }, + { + "Answer": 66, + "Explanation": "type: Addition" + }, + { + "Answer": 89, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Common-Division" + }, + { + "Answer": 18, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 78, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Addition" + }, + { + "Answer": 35, + "Explanation": "type: Subtraction" + }, + { + "Answer": 41, + "Explanation": "type: Addition" + }, + { + "Answer": 19, + "Explanation": "type: Common-Division" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 26, + "Explanation": "type: Common-Division" + }, + { + "Answer": 63, + "Explanation": "type: Subtraction" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 32, + "Explanation": "type: Subtraction" + }, + { + "Answer": 332, + "Explanation": "type: Common-Division" + }, + { + "Answer": 25, + "Explanation": "type: Subtraction" + }, + { + "Answer": 16, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 807, + "Explanation": "type: Subtraction" + }, + { + "Answer": 18, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 43, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17, + "Explanation": "type: Addition" + }, + { + "Answer": 158, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1081, + "Explanation": "type: Addition" + }, + { + "Answer": 16, + "Explanation": "type: Addition" + }, + { + "Answer": 13, + "Explanation": "type: Addition" + }, + { + "Answer": 23, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 117, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1848, + "Explanation": "type: Multiplication" + }, + { + "Answer": 26, + "Explanation": "type: Addition" + }, + { + "Answer": 80, + "Explanation": "type: Multiplication" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 47, + "Explanation": "type: Subtraction" + }, + { + "Answer": 27, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 146, + "Explanation": "type: Addition" + }, + { + "Answer": 92, + "Explanation": "type: Common-Division" + }, + { + "Answer": 314, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Addition" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 337, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Addition" + }, + { + "Answer": 20, + "Explanation": "type: Subtraction" + }, + { + "Answer": 152, + "Explanation": "type: Multiplication" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 15, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 83, + "Explanation": "type: Common-Division" + }, + { + "Answer": 70, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 52, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 64, + "Explanation": "type: Common-Division" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 37, + "Explanation": "type: Addition" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1346, + "Explanation": "type: Addition" + }, + { + "Answer": 32, + "Explanation": "type: Multiplication" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 101, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 455, + "Explanation": "type: Addition" + }, + { + "Answer": 33, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 98, + "Explanation": "type: Addition" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 45, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Addition" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Common-Division" + }, + { + "Answer": 394, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5590, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 15, + "Explanation": "type: Common-Division" + }, + { + "Answer": 18, + "Explanation": "type: Addition" + }, + { + "Answer": 111, + "Explanation": "type: Common-Division" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 93, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 51, + "Explanation": "type: Addition" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 8, + "Explanation": "type: Addition" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 141, + "Explanation": "type: Addition" + }, + { + "Answer": 587, + "Explanation": "type: Addition" + }, + { + "Answer": 35624, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1891, + "Explanation": "type: Multiplication" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17017, + "Explanation": "type: Multiplication" + }, + { + "Answer": 58, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 21, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 71, + "Explanation": "type: Addition" + }, + { + "Answer": 34, + "Explanation": "type: Subtraction" + }, + { + "Answer": 58, + "Explanation": "type: Addition" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 60, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 756, + "Explanation": "type: Addition" + }, + { + "Answer": 31, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 30, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 112, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 140, + "Explanation": "type: Subtraction" + }, + { + "Answer": 102, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 89, + "Explanation": "type: Common-Division" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1080, + "Explanation": "type: Multiplication" + }, + { + "Answer": 66, + "Explanation": "type: Subtraction" + }, + { + "Answer": 25740, + "Explanation": "type: Multiplication" + }, + { + "Answer": 60, + "Explanation": "type: Multiplication" + }, + { + "Answer": 109044, + "Explanation": "type: Multiplication" + }, + { + "Answer": 322, + "Explanation": "type: Subtraction" + }, + { + "Answer": 333, + "Explanation": "type: Subtraction" + }, + { + "Answer": 390, + "Explanation": "type: Multiplication" + }, + { + "Answer": 68, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Common-Division" + }, + { + "Answer": 405, + "Explanation": "type: Multiplication" + }, + { + "Answer": 25, + "Explanation": "type: Subtraction" + }, + { + "Answer": 16, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 324775, + "Explanation": "type: Multiplication" + }, + { + "Answer": 92, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 23, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 70, + "Explanation": "type: Multiplication" + }, + { + "Answer": 5700, + "Explanation": "type: Multiplication" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 52, + "Explanation": "type: Addition" + }, + { + "Answer": 57, + "Explanation": "type: Subtraction" + }, + { + "Answer": 42, + "Explanation": "type: Subtraction" + }, + { + "Answer": 19, + "Explanation": "type: Subtraction" + }, + { + "Answer": 20, + "Explanation": "type: Addition" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 367, + "Explanation": "type: Subtraction" + }, + { + "Answer": 20, + "Explanation": "type: Subtraction" + }, + { + "Answer": 16, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 42, + "Explanation": "type: Multiplication" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 20, + "Explanation": "type: Common-Division" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1541, + "Explanation": "type: Addition" + }, + { + "Answer": 19, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 17, + "Explanation": "type: Common-Division" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 149, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 69, + "Explanation": "type: Subtraction" + }, + { + "Answer": 168, + "Explanation": "type: Subtraction" + }, + { + "Answer": 481, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 33, + "Explanation": "type: Addition" + }, + { + "Answer": 1463, + "Explanation": "type: Multiplication" + }, + { + "Answer": 128, + "Explanation": "type: Addition" + }, + { + "Answer": 5, + "Explanation": "type: Addition" + }, + { + "Answer": 67, + "Explanation": "type: Addition" + }, + { + "Answer": 68, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 31, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 15, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 41, + "Explanation": "type: Subtraction" + }, + { + "Answer": 150780, + "Explanation": "type: Subtraction" + }, + { + "Answer": 54, + "Explanation": "type: Subtraction" + }, + { + "Answer": 16, + "Explanation": "type: Addition" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1145, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 20, + "Explanation": "type: Addition" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 365, + "Explanation": "type: Multiplication" + }, + { + "Answer": 27, + "Explanation": "type: Subtraction" + }, + { + "Answer": 19, + "Explanation": "type: Subtraction" + }, + { + "Answer": 11210, + "Explanation": "type: Multiplication" + }, + { + "Answer": 720, + "Explanation": "type: Multiplication" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 26, + "Explanation": "type: Subtraction" + }, + { + "Answer": 82, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Common-Division" + }, + { + "Answer": 90, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Addition" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 36, + "Explanation": "type: Subtraction" + }, + { + "Answer": 30, + "Explanation": "type: Addition" + }, + { + "Answer": 5, + "Explanation": "type: Addition" + }, + { + "Answer": 67, + "Explanation": "type: Addition" + }, + { + "Answer": 606, + "Explanation": "type: Addition" + }, + { + "Answer": 13, + "Explanation": "type: Addition" + }, + { + "Answer": 93899, + "Explanation": "type: Multiplication" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 43, + "Explanation": "type: Common-Division" + }, + { + "Answer": 31, + "Explanation": "type: Subtraction" + }, + { + "Answer": 600, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 12, + "Explanation": "type: Multiplication" + }, + { + "Answer": 21, + "Explanation": "type: Addition" + }, + { + "Answer": 68, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 70, + "Explanation": "type: Addition" + }, + { + "Answer": 90, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2673, + "Explanation": "type: Multiplication" + }, + { + "Answer": 238, + "Explanation": "type: Addition" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 78, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 38, + "Explanation": "type: Addition" + }, + { + "Answer": 308, + "Explanation": "type: Multiplication" + }, + { + "Answer": 223, + "Explanation": "type: Subtraction" + }, + { + "Answer": 53, + "Explanation": "type: Subtraction" + }, + { + "Answer": 153, + "Explanation": "type: Multiplication" + }, + { + "Answer": 574, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 62, + "Explanation": "type: Subtraction" + }, + { + "Answer": 64, + "Explanation": "type: Addition" + }, + { + "Answer": 28, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1201565, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Addition" + }, + { + "Answer": 22, + "Explanation": "type: Addition" + }, + { + "Answer": 458988, + "Explanation": "type: Addition" + }, + { + "Answer": 89, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 26, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 11, + "Explanation": "type: Addition" + }, + { + "Answer": 42, + "Explanation": "type: Addition" + }, + { + "Answer": 186, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 42, + "Explanation": "type: Addition" + }, + { + "Answer": 22800, + "Explanation": "type: Multiplication" + }, + { + "Answer": 369, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 32, + "Explanation": "type: Subtraction" + }, + { + "Answer": 522, + "Explanation": "type: Addition" + }, + { + "Answer": 566, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 33, + "Explanation": "type: Addition" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 14, + "Explanation": "type: Addition" + }, + { + "Answer": 91, + "Explanation": "type: Addition" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1363293, + "Explanation": "type: Addition" + }, + { + "Answer": 19, + "Explanation": "type: Addition" + }, + { + "Answer": 8, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 76, + "Explanation": "type: Multiplication" + }, + { + "Answer": 5852, + "Explanation": "type: Multiplication" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 38608, + "Explanation": "type: Subtraction" + }, + { + "Answer": 30, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Addition" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 9, + "Explanation": "type: Addition" + }, + { + "Answer": 24, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 20, + "Explanation": "type: Addition" + }, + { + "Answer": 30, + "Explanation": "type: Common-Division" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 120, + "Explanation": "type: Multiplication" + }, + { + "Answer": 17, + "Explanation": "type: Addition" + }, + { + "Answer": 44, + "Explanation": "type: Common-Division" + }, + { + "Answer": 15, + "Explanation": "type: Subtraction" + }, + { + "Answer": 118, + "Explanation": "type: Addition" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Addition" + }, + { + "Answer": 105, + "Explanation": "type: Addition" + }, + { + "Answer": 32, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 27, + "Explanation": "type: Subtraction" + }, + { + "Answer": 737, + "Explanation": "type: Multiplication" + }, + { + "Answer": 8265, + "Explanation": "type: Multiplication" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 80, + "Explanation": "type: Addition" + }, + { + "Answer": 24, + "Explanation": "type: Multiplication" + }, + { + "Answer": 146, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 16, + "Explanation": "type: Addition" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 44, + "Explanation": "type: Multiplication" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 45, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Subtraction" + }, + { + "Answer": 101, + "Explanation": "type: Subtraction" + }, + { + "Answer": 103, + "Explanation": "type: Subtraction" + }, + { + "Answer": 126, + "Explanation": "type: Addition" + }, + { + "Answer": 13, + "Explanation": "type: Addition" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Addition" + }, + { + "Answer": 45, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 41, + "Explanation": "type: Subtraction" + }, + { + "Answer": 15, + "Explanation": "type: Subtraction" + }, + { + "Answer": 25, + "Explanation": "type: Subtraction" + }, + { + "Answer": 348, + "Explanation": "type: Addition" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 32, + "Explanation": "type: Subtraction" + }, + { + "Answer": 51, + "Explanation": "type: Subtraction" + }, + { + "Answer": 268627, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 143550, + "Explanation": "type: Multiplication" + }, + { + "Answer": 106, + "Explanation": "type: Subtraction" + }, + { + "Answer": 574, + "Explanation": "type: Addition" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 15, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 54, + "Explanation": "type: Common-Division" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 27, + "Explanation": "type: Subtraction" + }, + { + "Answer": 229, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 20, + "Explanation": "type: Common-Division" + }, + { + "Answer": 65, + "Explanation": "type: Multiplication" + }, + { + "Answer": 11, + "Explanation": "type: Addition" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 190, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 63, + "Explanation": "type: Multiplication" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 30057, + "Explanation": "type: Subtraction" + }, + { + "Answer": 192, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 265, + "Explanation": "type: Subtraction" + }, + { + "Answer": 298, + "Explanation": "type: Subtraction" + }, + { + "Answer": 728, + "Explanation": "type: Addition" + }, + { + "Answer": 21, + "Explanation": "type: Common-Division" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 45, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3168, + "Explanation": "type: Multiplication" + }, + { + "Answer": 345, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 28, + "Explanation": "type: Addition" + }, + { + "Answer": 77, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2226, + "Explanation": "type: Addition" + }, + { + "Answer": 29, + "Explanation": "type: Common-Division" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 78, + "Explanation": "type: Addition" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2050, + "Explanation": "type: Multiplication" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 121, + "Explanation": "type: Addition" + }, + { + "Answer": 21, + "Explanation": "type: Addition" + }, + { + "Answer": 420, + "Explanation": "type: Multiplication" + }, + { + "Answer": 145, + "Explanation": "type: Common-Division" + }, + { + "Answer": 24, + "Explanation": "type: Common-Division" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1012, + "Explanation": "type: Multiplication" + }, + { + "Answer": 31, + "Explanation": "type: Subtraction" + }, + { + "Answer": 28, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Addition" + }, + { + "Answer": 28, + "Explanation": "type: Common-Division" + }, + { + "Answer": 60, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 39, + "Explanation": "type: Subtraction" + }, + { + "Answer": 65, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 15, + "Explanation": "type: Addition" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 111, + "Explanation": "type: Addition" + }, + { + "Answer": 59, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22, + "Explanation": "type: Addition" + }, + { + "Answer": 11, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 112, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 32, + "Explanation": "type: Addition" + }, + { + "Answer": 8, + "Explanation": "type: Common-Division" + }, + { + "Answer": 4, + "Explanation": "type: Common-Division" + }, + { + "Answer": 20, + "Explanation": "type: Addition" + }, + { + "Answer": 21, + "Explanation": "type: Addition" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 33, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1453, + "Explanation": "type: Addition" + }, + { + "Answer": 17, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 32, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 242, + "Explanation": "type: Addition" + }, + { + "Answer": 90, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 105, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 69, + "Explanation": "type: Subtraction" + }, + { + "Answer": 527292, + "Explanation": "type: Multiplication" + }, + { + "Answer": 1, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 826, + "Explanation": "type: Addition" + }, + { + "Answer": 574664, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 16, + "Explanation": "type: Addition" + }, + { + "Answer": 110, + "Explanation": "type: Addition" + }, + { + "Answer": 24, + "Explanation": "type: Subtraction" + }, + { + "Answer": 34, + "Explanation": "type: Addition" + }, + { + "Answer": 25, + "Explanation": "type: Subtraction" + }, + { + "Answer": 946, + "Explanation": "type: Addition" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2080, + "Explanation": "type: Multiplication" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Addition" + }, + { + "Answer": 11346, + "Explanation": "type: Multiplication" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Subtraction" + }, + { + "Answer": 96, + "Explanation": "type: Multiplication" + }, + { + "Answer": 11, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 99, + "Explanation": "type: Subtraction" + }, + { + "Answer": 24, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2436, + "Explanation": "type: Multiplication" + }, + { + "Answer": 210, + "Explanation": "type: Multiplication" + }, + { + "Answer": 45, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 22, + "Explanation": "type: Common-Division" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 109, + "Explanation": "type: Subtraction" + }, + { + "Answer": 146, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 99, + "Explanation": "type: Multiplication" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 39, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3834, + "Explanation": "type: Subtraction" + }, + { + "Answer": 265, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Common-Division" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 72, + "Explanation": "type: Multiplication" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 41, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8, + "Explanation": "type: Addition" + }, + { + "Answer": 39, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 44, + "Explanation": "type: Subtraction" + }, + { + "Answer": 12, + "Explanation": "type: Subtraction" + }, + { + "Answer": 45, + "Explanation": "type: Subtraction" + }, + { + "Answer": 208, + "Explanation": "type: Multiplication" + }, + { + "Answer": 136, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 9, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 8066, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 13, + "Explanation": "type: Addition" + }, + { + "Answer": 23, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Common-Division" + }, + { + "Answer": 156, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 30, + "Explanation": "type: Addition" + }, + { + "Answer": 53, + "Explanation": "type: Addition" + }, + { + "Answer": 112, + "Explanation": "type: Multiplication" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1455, + "Explanation": "type: Subtraction" + }, + { + "Answer": 53, + "Explanation": "type: Subtraction" + }, + { + "Answer": 73, + "Explanation": "type: Subtraction" + }, + { + "Answer": 253, + "Explanation": "type: Subtraction" + }, + { + "Answer": 123, + "Explanation": "type: Subtraction" + }, + { + "Answer": 276, + "Explanation": "type: Subtraction" + }, + { + "Answer": 10, + "Explanation": "type: Common-Division" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 198, + "Explanation": "type: Common-Division" + }, + { + "Answer": 62, + "Explanation": "type: Subtraction" + }, + { + "Answer": 21, + "Explanation": "type: Addition" + }, + { + "Answer": 123, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 41, + "Explanation": "type: Addition" + }, + { + "Answer": 49, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1791, + "Explanation": "type: Addition" + }, + { + "Answer": 19, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3021, + "Explanation": "type: Multiplication" + }, + { + "Answer": 94, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 621, + "Explanation": "type: Multiplication" + }, + { + "Answer": 353, + "Explanation": "type: Subtraction" + }, + { + "Answer": 76, + "Explanation": "type: Common-Division" + }, + { + "Answer": 17, + "Explanation": "type: Subtraction" + }, + { + "Answer": 33, + "Explanation": "type: Common-Division" + }, + { + "Answer": 10, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 23, + "Explanation": "type: Addition" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Common-Division" + }, + { + "Answer": 26, + "Explanation": "type: Subtraction" + }, + { + "Answer": 14, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 22922, + "Explanation": "type: Multiplication" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 58, + "Explanation": "type: Addition" + }, + { + "Answer": 16, + "Explanation": "type: Addition" + }, + { + "Answer": 274, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 347, + "Explanation": "type: Subtraction" + }, + { + "Answer": 54, + "Explanation": "type: Addition" + }, + { + "Answer": 7, + "Explanation": "type: Common-Division" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 15, + "Explanation": "type: Common-Division" + }, + { + "Answer": 92, + "Explanation": "type: Addition" + }, + { + "Answer": 6264, + "Explanation": "type: Multiplication" + }, + { + "Answer": 784, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 2, + "Explanation": "type: Common-Divison" + }, + { + "Answer": 1, + "Explanation": "type: Subtraction" + }, + { + "Answer": 38, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 57, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1088, + "Explanation": "type: Multiplication" + }, + { + "Answer": 32, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 4, + "Explanation": "type: Subtraction" + }, + { + "Answer": 34, + "Explanation": "type: Addition" + }, + { + "Answer": 41, + "Explanation": "type: Common-Division" + }, + { + "Answer": 25, + "Explanation": "type: Subtraction" + }, + { + "Answer": 7, + "Explanation": "type: Subtraction" + }, + { + "Answer": 127, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Subtraction" + }, + { + "Answer": 23, + "Explanation": "type: Subtraction" + }, + { + "Answer": 1396, + "Explanation": "type: Addition" + }, + { + "Answer": 2, + "Explanation": "type: Common-Division" + }, + { + "Answer": 1054997, + "Explanation": "type: Multiplication" + }, + { + "Answer": 8, + "Explanation": "type: Subtraction" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 5, + "Explanation": "type: Addition" + }, + { + "Answer": 15089, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 81, + "Explanation": "type: Multiplication" + }, + { + "Answer": 626, + "Explanation": "type: Addition" + }, + { + "Answer": 6, + "Explanation": "type: Subtraction" + }, + { + "Answer": 42, + "Explanation": "type: Common-Division" + }, + { + "Answer": 331, + "Explanation": "type: Subtraction" + }, + { + "Answer": 3, + "Explanation": "type: Common-Division" + }, + { + "Answer": 56, + "Explanation": "type: Subtraction" + }, + { + "Answer": 220, + "Explanation": "type: Multiplication" + }, + { + "Answer": 3, + "Explanation": "type: Subtraction" + }, + { + "Answer": 11, + "Explanation": "type: Subtraction" + } + ] +} \ No newline at end of file