{ "question": "A man eats 5 sandwiches per day, his wife eats 4 sandwiches per day, and their son eats 2 sandwiches per day. How many sandwiches does this family eat in one week?", "answer": "The number of sandwiches they eat in one day is 5 + 4 + 2 = <<5+4+2=11>>11 sandwiches.\nThe number of sandwiches they eat in a week is 11 * 7 = <<11*7=77>>77 sandwiches.\n#### 77", "id_orig": 1023, "id_shuffled": 26, "question_annotated": "{name1,A man} eats {n1,5} {food,sandwiches} per {time_unit,day}, {name2,his wife} eats {n2,4} {food,sandwiches} per {time_unit,day}, and their {relation,son} eats {n3,2} {food,sandwiches} per {time_unit,day}. How many {food,sandwiches} does this family eat in one {time_period,week}?\n\n#init:\n- name1 = sample([\"A father\", \"A grandfather\", \"An uncle\"])\n- name2 = sample([\"his wife\", \"his partner\", \"his spouse\"])\n- relation = sample([\"daughter\", \"son\", \"grandchild\"])\n- food = sample([\"pizzas\", \"burritos\", \"tacos\", \"sushi rolls\", \"hamburgers\"])\n- time_unit = sample([\"day\"])\n- time_period = sample([\"week\", \"month\"])\n- $n1 = range(2, 9)\n- $n2 = range(2, 9)\n- $n3 = range(2, 9)\n\n#answer: (n1 + n2 + n3) * (7 if time_period == \"week\" else 30)", "answer_annotated": "The number of {food} they eat in one {time_unit} is {n1} + {n2} + {n3} = <<{n1}+{n2}+{n3}={n1+n2+n3}>>{n1+n2+n3} {food}.\nThe number of {food} they eat in a {time_period} is {n1+n2+n3} * {7 if time_period == \"week\" else 30} = <<{n1+n2+n3}*{7 if time_period == \"week\" else 30}={(n1+n2+n3)*(7 if time_period == \"week\" else 30)}>>{(n1+n2+n3)*(7 if time_period == \"week\" else 30)} {food}.\n#### {(n1+n2+n3)*(7 if time_period == \"week\" else 30)}" }