{ "question": "A tower is made out of 4 blue blocks, twice as many yellow blocks, and an unknown number of red blocks. If there are 32 blocks in the tower in total, how many red blocks are there?", "answer": "There are 4*2 = <<4*2=8>>8 yellow blocks in the tower.\nThere are 32-4-8 = <<32-4-8=20>>20 red blocks in the tower.\n#### 20", "id_orig": 1268, "id_shuffled": 41, "question_annotated": "A {structure} is made out of {n1} {color1} {obj}s, {mult} as many {color2} {obj}s, and an unknown number of {color3} {obj}s. If there are {total} {obj}s in the {structure} in total, how many {color3} {obj}s are there?\n\n#init:\n- structure = sample([\"building\", \"pyramid\", \"stack\"])\n- obj = sample([\"brick\", \"cube\", \"tile\"])\n- color1, color2, color3 = sample([\"green\", \"purple\", \"orange\", \"pink\", \"white\", \"black\"], 3)\n- $n1 = range(2, 10)\n- $mult = sample(multi_times+multiple_ice)\n- $total = range(20, 50)\n\n#conditions:\n- total > n1 + mult * n1\n\n#answer: total - n1 - mult * n1", "answer_annotated": "There are {n1}*{mult} = <<{n1}*{mult}={n1*mult}>>{n1*mult} {color2} {obj}s in the {structure}.\nThere are {total}-{n1}-{n1*mult} = <<{total}-{n1}-{n1*mult}={total-n1-n1*mult}>>{total-n1-n1*mult} {color3} {obj}s in the {structure}.\n#### {total-n1-n1*mult}" }