gsm8k-0010
1.000
Challenge · difficulty 2/5
# GSM8K Problem 11
A new program had 60 downloads in the first month. The number of downloads in the second month was three times as many as the downloads in the first month, but then reduced by 30% in the third month. How many downloads did the program have total over the three months?
Reason step by step, then give ONLY the final answer on the last line as \boxed{ANSWER}.
<!-- imported from openai/gsm8k (test) -->
Proposed solution
First, calculate the number of downloads in the second month. Since it was three times the first month:
$60 \times 3 = 180$ downloads.
Next, calculate the number of downloads in the third month. The problem states the number was reduced by 30% from the second month:
$180 \times (1 - 0.30) = 180 \times 0.70 = 126$ downloads.
Finally, add the downloads from all three months to find the total:
$60 \text{ (Month 1)} + 180 \text{ (Month 2)} + 126 \text{ (Month 3)} = 366$ downloads.
\boxed{366}