{ "question": "A fog bank rolls in from the ocean to cover a city. It takes 10 minutes to cover every 3 miles of the city. If the city is 42 miles across from the oceanfront to the opposite inland edge, how many minutes will it take for the fog bank to cover the whole city?", "answer": "The city will be covered in 42 / 3 = <<42/3=14>>14 intervals of 10 minutes.\nThus, it will take 14 * 10 = <<14*10=140>>140 minutes for the fog to cover the whole city.\n#### 140", "id_orig": 103, "id_shuffled": 1, "question_annotated": "A fog bank rolls in from the ocean to cover a city. It takes {t} minutes to cover every {d} miles of the city. If the city is {y} miles across from the oceanfront to the opposite inland edge, how many minutes will it take for the fog bank to cover the whole city?\n\n#init:\n- $t = range(2, 500)\n- $d = range(2, 100)\n- $y=range(2, 100)\n\n#conditions:\n- is_int(y/d)\n\n#answer: y//d*t", "answer_annotated": "The city will be covered in {y}/ {d} = <<{y}/{d}={y//d}>>{y//d} intervals of {t} minutes.\nThus, it will take {y//d} * {t} = <<{y//d}*{t}={y//d*t}>>{y//d*t} minutes for the fog to cover the whole city.\n#### {y//d*t}" }