CFA / train.jsonl
anonymousaiauthor's picture
Upload train.jsonl
6a837a2 verified
{"id": 1, "question": "Simplify the following expression ((8 + 6) + ((2 * 6 + 5 + 5) + 9)) where + has priority over *.", "expression": "((8 + 6) + ((2 * 6 + 5 + 5) + 9))", "think": ["8 + 6 = 14", "6 + 5 = 11", "11 + 5 = 16", "2 * 16 = 32", "32 + 9 = 41", "14 + 41 = 55"], "answer": 55, "settings": "dp_ 2 -2 "}
{"id": 2, "question": "Simplify the following expression ((6 + 1) + ((7 * 8 + 1 * 9) * 9)) where + has priority over *.", "expression": "((6 + 1) + ((7 * 8 + 1 * 9) * 9))", "think": ["6 + 1 = 7", "8 + 1 = 9", "7 * 9 = 63", "63 * 9 = 567", "567 * 9 = 5103", "7 + 5103 = 5110"], "answer": 5110, "settings": "dp_ 2 -2 "}
{"id": 3, "question": "Simplify the following expression ((1 + (6 * 4 + 7 * 5)) * (4 + 1)) where + has priority over *.", "expression": "((1 + (6 * 4 + 7 * 5)) * (4 + 1))", "think": ["4 + 7 = 11", "6 * 11 = 66", "66 * 5 = 330", "1 + 330 = 331", "4 + 1 = 5", "331 * 5 = 1655"], "answer": 1655, "settings": "dp_ 2 -2 "}
{"id": 4, "question": "Simplify the following expression ((1 * (6 + 4 * 0)) + (8 + 3)) where + has priority over *.", "expression": "((1 * (6 + 4 * 0)) + (8 + 3))", "think": ["6 + 4 = 10", "10 * 0 = 0", "1 * 0 = 0", "8 + 3 = 11", "0 + 11 = 11"], "answer": 11, "settings": "dp_ 2 -2 "}
{"id": 5, "question": "Simplify the following expression ((5 + 6) + ((7 + 6 * 7 + 3) * 3)) where + has priority over *.", "expression": "((5 + 6) + ((7 + 6 * 7 + 3) * 3))", "think": ["5 + 6 = 11", "7 + 6 = 13", "7 + 3 = 10", "13 * 10 = 130", "130 * 3 = 390", "11 + 390 = 401"], "answer": 401, "settings": "dp_ 2 -2 "}
{"id": 6, "question": "Simplify the following expression ((9 * 6) * (3 * (0 + 1 * 2 + 6))) where + has priority over *.", "expression": "((9 * 6) * (3 * (0 + 1 * 2 + 6)))", "think": ["9 * 6 = 54", "0 + 1 = 1", "2 + 6 = 8", "1 * 8 = 8", "3 * 8 = 24", "54 * 24 = 1296"], "answer": 1296, "settings": "dp_ 2 -2 "}
{"id": 7, "question": "Simplify the following expression ((8 * 4) * ((1 * 4 + 7) + 8)) where + has priority over *.", "expression": "((8 * 4) * ((1 * 4 + 7) + 8))", "think": ["8 * 4 = 32", "4 + 7 = 11", "1 * 11 = 11", "11 + 8 = 19", "32 * 19 = 608"], "answer": 608, "settings": "dp_ 2 -2 "}
{"id": 8, "question": "Simplify the following expression ((8 * (5 + 2 * 8 * 0)) + (4 + 8)) where + has priority over *.", "expression": "((8 * (5 + 2 * 8 * 0)) + (4 + 8))", "think": ["5 + 2 = 7", "7 * 8 = 56", "56 * 0 = 0", "8 * 0 = 0", "4 + 8 = 12", "0 + 12 = 12"], "answer": 12, "settings": "dp_ 2 -2 "}
{"id": 9, "question": "Simplify the following expression (((7 + 1 + 8 * 8) * 3) + (3 + 9)) where + has priority over *.", "expression": "(((7 + 1 + 8 * 8) * 3) + (3 + 9))", "think": ["7 + 1 = 8", "8 + 8 = 16", "16 * 8 = 128", "128 * 3 = 384", "3 + 9 = 12", "384 + 12 = 396"], "answer": 396, "settings": "dp_ 2 -2 "}
{"id": 10, "question": "Simplify the following expression ((8 * (6 * 5 * 1)) + (3 * 8)) where + has priority over *.", "expression": "((8 * (6 * 5 * 1)) + (3 * 8))", "think": ["6 * 5 = 30", "30 * 1 = 30", "8 * 30 = 240", "3 * 8 = 24", "240 + 24 = 264"], "answer": 264, "settings": "dp_ 2 -2 "}
{"id": 11, "question": "Simplify the following expression ((1 + (0 + 1 + 0 + 5)) + (9 + 8)) where + has priority over *.", "expression": "((1 + (0 + 1 + 0 + 5)) + (9 + 8))", "think": ["0 + 1 = 1", "1 + 0 = 1", "1 + 5 = 6", "1 + 6 = 7", "9 + 8 = 17", "7 + 17 = 24"], "answer": 24, "settings": "dp_ 2 -2 "}
{"id": 12, "question": "Simplify the following expression ((4 + 7) + (8 + (7 + 6 + 3 * 5))) where + has priority over *.", "expression": "((4 + 7) + (8 + (7 + 6 + 3 * 5)))", "think": ["4 + 7 = 11", "7 + 6 = 13", "13 + 3 = 16", "16 * 5 = 80", "8 + 80 = 88", "11 + 88 = 99"], "answer": 99, "settings": "dp_ 2 -2 "}
{"id": 13, "question": "Simplify the following expression ((7 * (3 * 3 + 3 * 2)) * (0 + 6)) where + has priority over *.", "expression": "((7 * (3 * 3 + 3 * 2)) * (0 + 6))", "think": ["3 + 3 = 6", "3 * 6 = 18", "18 * 2 = 36", "7 * 36 = 252", "0 + 6 = 6", "252 * 6 = 1512"], "answer": 1512, "settings": "dp_ 2 -2 "}
{"id": 14, "question": "Simplify the following expression (((1 * 3 * 2 * 3) * 1) * (8 * 1)) where + has priority over *.", "expression": "(((1 * 3 * 2 * 3) * 1) * (8 * 1))", "think": ["1 * 3 = 3", "3 * 2 = 6", "6 * 3 = 18", "18 * 1 = 18", "8 * 1 = 8", "18 * 8 = 144"], "answer": 144, "settings": "dp_ 2 -2 "}
{"id": 15, "question": "Simplify the following expression ((2 + 6) * (6 + (6 * 8 + 3))) where + has priority over *.", "expression": "((2 + 6) * (6 + (6 * 8 + 3)))", "think": ["2 + 6 = 8", "8 + 3 = 11", "6 * 11 = 66", "6 + 66 = 72", "8 * 72 = 576"], "answer": 576, "settings": "dp_ 2 -2 "}
{"id": 16, "question": "Simplify the following expression (((8 + 8 + 8) + 9) * (5 + 0)) where + has priority over *.", "expression": "(((8 + 8 + 8) + 9) * (5 + 0))", "think": ["8 + 8 = 16", "16 + 8 = 24", "24 + 9 = 33", "5 + 0 = 5", "33 * 5 = 165"], "answer": 165, "settings": "dp_ 2 -2 "}
{"id": 17, "question": "Simplify the following expression (((9 + 9 * 0 * 4) + 9) + (3 + 6)) where + has priority over *.", "expression": "(((9 + 9 * 0 * 4) + 9) + (3 + 6))", "think": ["9 + 9 = 18", "18 * 0 = 0", "0 * 4 = 0", "0 + 9 = 9", "3 + 6 = 9", "9 + 9 = 18"], "answer": 18, "settings": "dp_ 2 -2 "}
{"id": 18, "question": "Simplify the following expression ((3 * (1 * 0 + 1)) + (2 * 4)) where + has priority over *.", "expression": "((3 * (1 * 0 + 1)) + (2 * 4))", "think": ["0 + 1 = 1", "1 * 1 = 1", "3 * 1 = 3", "2 * 4 = 8", "3 + 8 = 11"], "answer": 11, "settings": "dp_ 2 -2 "}
{"id": 19, "question": "Simplify the following expression ((2 * 5) + ((7 + 8 * 4 + 2) + 5)) where + has priority over *.", "expression": "((2 * 5) + ((7 + 8 * 4 + 2) + 5))", "think": ["2 * 5 = 10", "7 + 8 = 15", "4 + 2 = 6", "15 * 6 = 90", "90 + 5 = 95", "10 + 95 = 105"], "answer": 105, "settings": "dp_ 2 -2 "}
{"id": 20, "question": "Simplify the following expression ((1 + (3 * 4 * 0)) * (4 + 4)) where + has priority over *.", "expression": "((1 + (3 * 4 * 0)) * (4 + 4))", "think": ["3 * 4 = 12", "12 * 0 = 0", "1 + 0 = 1", "4 + 4 = 8", "1 * 8 = 8"], "answer": 8, "settings": "dp_ 2 -2 "}
{"id": 21, "question": "Simplify the following expression ((4 * 0) + ((7 + 8 + 6 + 2) + 2)) where + has priority over *.", "expression": "((4 * 0) + ((7 + 8 + 6 + 2) + 2))", "think": ["4 * 0 = 0", "7 + 8 = 15", "15 + 6 = 21", "21 + 2 = 23", "23 + 2 = 25", "0 + 25 = 25"], "answer": 25, "settings": "dp_ 2 -2 "}
{"id": 22, "question": "Simplify the following expression (((5 * 0 + 3) * 8) + (6 + 2)) where + has priority over *.", "expression": "(((5 * 0 + 3) * 8) + (6 + 2))", "think": ["0 + 3 = 3", "5 * 3 = 15", "15 * 8 = 120", "6 + 2 = 8", "120 + 8 = 128"], "answer": 128, "settings": "dp_ 2 -2 "}
{"id": 23, "question": "Simplify the following expression ((8 * (0 * 2 * 3)) + (3 + 2)) where + has priority over *.", "expression": "((8 * (0 * 2 * 3)) + (3 + 2))", "think": ["0 * 2 = 0", "0 * 3 = 0", "8 * 0 = 0", "3 + 2 = 5", "0 + 5 = 5"], "answer": 5, "settings": "dp_ 2 -2 "}
{"id": 24, "question": "Simplify the following expression ((1 + (5 + 4 + 0)) * (7 + 3)) where + has priority over *.", "expression": "((1 + (5 + 4 + 0)) * (7 + 3))", "think": ["5 + 4 = 9", "9 + 0 = 9", "1 + 9 = 10", "7 + 3 = 10", "10 * 10 = 100"], "answer": 100, "settings": "dp_ 2 -2 "}
{"id": 25, "question": "Simplify the following expression (((0 * 1 + 9) * 4) + (4 + 5)) where + has priority over *.", "expression": "(((0 * 1 + 9) * 4) + (4 + 5))", "think": ["1 + 9 = 10", "0 * 10 = 0", "0 * 4 = 0", "4 + 5 = 9", "0 + 9 = 9"], "answer": 9, "settings": "dp_ 2 -2 "}
{"id": 26, "question": "Simplify the following expression ((1 + 9) * ((6 * 9 + 3 * 0) * 5)) where + has priority over *.", "expression": "((1 + 9) * ((6 * 9 + 3 * 0) * 5))", "think": ["1 + 9 = 10", "9 + 3 = 12", "6 * 12 = 72", "72 * 0 = 0", "0 * 5 = 0", "10 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 27, "question": "Simplify the following expression (((8 * 4 * 6) * 1) + (9 * 5)) where + has priority over *.", "expression": "(((8 * 4 * 6) * 1) + (9 * 5))", "think": ["8 * 4 = 32", "32 * 6 = 192", "192 * 1 = 192", "9 * 5 = 45", "192 + 45 = 237"], "answer": 237, "settings": "dp_ 2 -2 "}
{"id": 28, "question": "Simplify the following expression ((3 + 6) * ((8 * 0 * 3) * 9)) where + has priority over *.", "expression": "((3 + 6) * ((8 * 0 * 3) * 9))", "think": ["3 + 6 = 9", "8 * 0 = 0", "0 * 3 = 0", "0 * 9 = 0", "9 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 29, "question": "Simplify the following expression ((7 * 7) * (3 * (1 * 4 + 8 + 4))) where + has priority over *.", "expression": "((7 * 7) * (3 * (1 * 4 + 8 + 4)))", "think": ["7 * 7 = 49", "4 + 8 = 12", "12 + 4 = 16", "1 * 16 = 16", "3 * 16 = 48", "49 * 48 = 2352"], "answer": 2352, "settings": "dp_ 2 -2 "}
{"id": 30, "question": "Simplify the following expression (((6 + 9 * 7) + 0) + (3 + 7)) where + has priority over *.", "expression": "(((6 + 9 * 7) + 0) + (3 + 7))", "think": ["6 + 9 = 15", "15 * 7 = 105", "105 + 0 = 105", "3 + 7 = 10", "105 + 10 = 115"], "answer": 115, "settings": "dp_ 2 -2 "}
{"id": 31, "question": "Simplify the following expression ((2 + (0 + 8 + 7)) * (6 + 3)) where + has priority over *.", "expression": "((2 + (0 + 8 + 7)) * (6 + 3))", "think": ["0 + 8 = 8", "8 + 7 = 15", "2 + 15 = 17", "6 + 3 = 9", "17 * 9 = 153"], "answer": 153, "settings": "dp_ 2 -2 "}
{"id": 32, "question": "Simplify the following expression ((8 * 8) + (7 * (2 * 7 * 3))) where + has priority over *.", "expression": "((8 * 8) + (7 * (2 * 7 * 3)))", "think": ["8 * 8 = 64", "2 * 7 = 14", "14 * 3 = 42", "7 * 42 = 294", "64 + 294 = 358"], "answer": 358, "settings": "dp_ 2 -2 "}
{"id": 33, "question": "Simplify the following expression ((3 * (5 + 5 + 2)) * (1 * 4)) where + has priority over *.", "expression": "((3 * (5 + 5 + 2)) * (1 * 4))", "think": ["5 + 5 = 10", "10 + 2 = 12", "3 * 12 = 36", "1 * 4 = 4", "36 * 4 = 144"], "answer": 144, "settings": "dp_ 2 -2 "}
{"id": 34, "question": "Simplify the following expression ((2 * 3) + ((6 + 0 * 6) + 6)) where + has priority over *.", "expression": "((2 * 3) + ((6 + 0 * 6) + 6))", "think": ["2 * 3 = 6", "6 + 0 = 6", "6 * 6 = 36", "36 + 6 = 42", "6 + 42 = 48"], "answer": 48, "settings": "dp_ 2 -2 "}
{"id": 35, "question": "Simplify the following expression ((7 * 0) + (4 * (7 * 3 * 4 + 6))) where + has priority over *.", "expression": "((7 * 0) + (4 * (7 * 3 * 4 + 6)))", "think": ["7 * 0 = 0", "7 * 3 = 21", "4 + 6 = 10", "21 * 10 = 210", "4 * 210 = 840", "0 + 840 = 840"], "answer": 840, "settings": "dp_ 2 -2 "}
{"id": 36, "question": "Simplify the following expression (((9 + 9 + 6) * 7) * (9 + 8)) where + has priority over *.", "expression": "(((9 + 9 + 6) * 7) * (9 + 8))", "think": ["9 + 9 = 18", "18 + 6 = 24", "24 * 7 = 168", "9 + 8 = 17", "168 * 17 = 2856"], "answer": 2856, "settings": "dp_ 2 -2 "}
{"id": 37, "question": "Simplify the following expression ((2 * (5 * 5 * 6)) + (6 * 5)) where + has priority over *.", "expression": "((2 * (5 * 5 * 6)) + (6 * 5))", "think": ["5 * 5 = 25", "25 * 6 = 150", "2 * 150 = 300", "6 * 5 = 30", "300 + 30 = 330"], "answer": 330, "settings": "dp_ 2 -2 "}
{"id": 38, "question": "Simplify the following expression (((0 + 3 + 3 + 2) + 0) * (5 + 3)) where + has priority over *.", "expression": "(((0 + 3 + 3 + 2) + 0) * (5 + 3))", "think": ["0 + 3 = 3", "3 + 3 = 6", "6 + 2 = 8", "8 + 0 = 8", "5 + 3 = 8", "8 * 8 = 64"], "answer": 64, "settings": "dp_ 2 -2 "}
{"id": 39, "question": "Simplify the following expression ((9 + (2 + 4 * 1 * 6)) * (4 * 5)) where + has priority over *.", "expression": "((9 + (2 + 4 * 1 * 6)) * (4 * 5))", "think": ["2 + 4 = 6", "6 * 1 = 6", "6 * 6 = 36", "9 + 36 = 45", "4 * 5 = 20", "45 * 20 = 900"], "answer": 900, "settings": "dp_ 2 -2 "}
{"id": 40, "question": "Simplify the following expression (((5 * 8 + 6 * 0) + 3) + (4 + 9)) where + has priority over *.", "expression": "(((5 * 8 + 6 * 0) + 3) + (4 + 9))", "think": ["8 + 6 = 14", "5 * 14 = 70", "70 * 0 = 0", "0 + 3 = 3", "4 + 9 = 13", "3 + 13 = 16"], "answer": 16, "settings": "dp_ 2 -2 "}
{"id": 41, "question": "Simplify the following expression ((1 * 6) * (7 * (8 * 4 * 9 * 9))) where + has priority over *.", "expression": "((1 * 6) * (7 * (8 * 4 * 9 * 9)))", "think": ["1 * 6 = 6", "8 * 4 = 32", "32 * 9 = 288", "288 * 9 = 2592", "7 * 2592 = 18144", "6 * 18144 = 108864"], "answer": 108864, "settings": "dp_ 2 -2 "}
{"id": 42, "question": "Simplify the following expression (((5 * 0 * 2) * 1) * (7 * 3)) where + has priority over *.", "expression": "(((5 * 0 * 2) * 1) * (7 * 3))", "think": ["5 * 0 = 0", "0 * 2 = 0", "0 * 1 = 0", "7 * 3 = 21", "0 * 21 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 43, "question": "Simplify the following expression ((5 + (8 + 3 * 1 * 8)) * (4 * 9)) where + has priority over *.", "expression": "((5 + (8 + 3 * 1 * 8)) * (4 * 9))", "think": ["8 + 3 = 11", "11 * 1 = 11", "11 * 8 = 88", "5 + 88 = 93", "4 * 9 = 36", "93 * 36 = 3348"], "answer": 3348, "settings": "dp_ 2 -2 "}
{"id": 44, "question": "Simplify the following expression (((3 * 4 * 8) * 7) + (1 + 4)) where + has priority over *.", "expression": "(((3 * 4 * 8) * 7) + (1 + 4))", "think": ["3 * 4 = 12", "12 * 8 = 96", "96 * 7 = 672", "1 + 4 = 5", "672 + 5 = 677"], "answer": 677, "settings": "dp_ 2 -2 "}
{"id": 45, "question": "Simplify the following expression ((8 * 5) * ((3 + 1 * 1) * 4)) where + has priority over *.", "expression": "((8 * 5) * ((3 + 1 * 1) * 4))", "think": ["8 * 5 = 40", "3 + 1 = 4", "4 * 1 = 4", "4 * 4 = 16", "40 * 16 = 640"], "answer": 640, "settings": "dp_ 2 -2 "}
{"id": 46, "question": "Simplify the following expression ((3 + 7) + ((3 * 4 + 3 * 0) * 8)) where + has priority over *.", "expression": "((3 + 7) + ((3 * 4 + 3 * 0) * 8))", "think": ["3 + 7 = 10", "4 + 3 = 7", "3 * 7 = 21", "21 * 0 = 0", "0 * 8 = 0", "10 + 0 = 10"], "answer": 10, "settings": "dp_ 2 -2 "}
{"id": 47, "question": "Simplify the following expression (((9 * 4 * 7 * 2) * 0) + (2 * 7)) where + has priority over *.", "expression": "(((9 * 4 * 7 * 2) * 0) + (2 * 7))", "think": ["9 * 4 = 36", "36 * 7 = 252", "252 * 2 = 504", "504 * 0 = 0", "2 * 7 = 14", "0 + 14 = 14"], "answer": 14, "settings": "dp_ 2 -2 "}
{"id": 48, "question": "Simplify the following expression (((2 * 2 + 9 + 1) * 1) + (6 + 7)) where + has priority over *.", "expression": "(((2 * 2 + 9 + 1) * 1) + (6 + 7))", "think": ["2 + 9 = 11", "11 + 1 = 12", "2 * 12 = 24", "24 * 1 = 24", "6 + 7 = 13", "24 + 13 = 37"], "answer": 37, "settings": "dp_ 2 -2 "}
{"id": 49, "question": "Simplify the following expression ((8 + 6) * (7 * (9 + 9 + 3))) where + has priority over *.", "expression": "((8 + 6) * (7 * (9 + 9 + 3)))", "think": ["8 + 6 = 14", "9 + 9 = 18", "18 + 3 = 21", "7 * 21 = 147", "14 * 147 = 2058"], "answer": 2058, "settings": "dp_ 2 -2 "}
{"id": 50, "question": "Simplify the following expression (((0 * 6 * 7 + 3) * 2) + (2 + 8)) where + has priority over *.", "expression": "(((0 * 6 * 7 + 3) * 2) + (2 + 8))", "think": ["0 * 6 = 0", "7 + 3 = 10", "0 * 10 = 0", "0 * 2 = 0", "2 + 8 = 10", "0 + 10 = 10"], "answer": 10, "settings": "dp_ 2 -2 "}
{"id": 51, "question": "Simplify the following expression ((7 * (1 + 8 + 4)) * (4 + 9)) where + has priority over *.", "expression": "((7 * (1 + 8 + 4)) * (4 + 9))", "think": ["1 + 8 = 9", "9 + 4 = 13", "7 * 13 = 91", "4 + 9 = 13", "91 * 13 = 1183"], "answer": 1183, "settings": "dp_ 2 -2 "}
{"id": 52, "question": "Simplify the following expression ((0 + 2) + ((1 * 7 * 4) * 9)) where + has priority over *.", "expression": "((0 + 2) + ((1 * 7 * 4) * 9))", "think": ["0 + 2 = 2", "1 * 7 = 7", "7 * 4 = 28", "28 * 9 = 252", "2 + 252 = 254"], "answer": 254, "settings": "dp_ 2 -2 "}
{"id": 53, "question": "Simplify the following expression ((1 * 9) * ((1 + 3 * 9 + 2) + 5)) where + has priority over *.", "expression": "((1 * 9) * ((1 + 3 * 9 + 2) + 5))", "think": ["1 * 9 = 9", "1 + 3 = 4", "9 + 2 = 11", "4 * 11 = 44", "44 + 5 = 49", "9 * 49 = 441"], "answer": 441, "settings": "dp_ 2 -2 "}
{"id": 54, "question": "Simplify the following expression ((4 * 2) * (7 * (6 * 5 + 2))) where + has priority over *.", "expression": "((4 * 2) * (7 * (6 * 5 + 2)))", "think": ["4 * 2 = 8", "5 + 2 = 7", "6 * 7 = 42", "7 * 42 = 294", "8 * 294 = 2352"], "answer": 2352, "settings": "dp_ 2 -2 "}
{"id": 55, "question": "Simplify the following expression ((7 * 4) * (8 * (5 + 4 * 5 + 8))) where + has priority over *.", "expression": "((7 * 4) * (8 * (5 + 4 * 5 + 8)))", "think": ["7 * 4 = 28", "5 + 4 = 9", "5 + 8 = 13", "9 * 13 = 117", "8 * 117 = 936", "28 * 936 = 26208"], "answer": 26208, "settings": "dp_ 2 -2 "}
{"id": 56, "question": "Simplify the following expression ((0 * 3) * (9 * (3 + 4 * 8 * 7))) where + has priority over *.", "expression": "((0 * 3) * (9 * (3 + 4 * 8 * 7)))", "think": ["0 * 3 = 0", "3 + 4 = 7", "7 * 8 = 56", "56 * 7 = 392", "9 * 392 = 3528", "0 * 3528 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 57, "question": "Simplify the following expression (((1 + 3 * 1) + 3) + (4 + 8)) where + has priority over *.", "expression": "(((1 + 3 * 1) + 3) + (4 + 8))", "think": ["1 + 3 = 4", "4 * 1 = 4", "4 + 3 = 7", "4 + 8 = 12", "7 + 12 = 19"], "answer": 19, "settings": "dp_ 2 -2 "}
{"id": 58, "question": "Simplify the following expression ((4 * 8) + (6 * (7 * 8 + 2 + 1))) where + has priority over *.", "expression": "((4 * 8) + (6 * (7 * 8 + 2 + 1)))", "think": ["4 * 8 = 32", "8 + 2 = 10", "10 + 1 = 11", "7 * 11 = 77", "6 * 77 = 462", "32 + 462 = 494"], "answer": 494, "settings": "dp_ 2 -2 "}
{"id": 59, "question": "Simplify the following expression ((5 * 8) * ((2 * 7 * 5) * 4)) where + has priority over *.", "expression": "((5 * 8) * ((2 * 7 * 5) * 4))", "think": ["5 * 8 = 40", "2 * 7 = 14", "14 * 5 = 70", "70 * 4 = 280", "40 * 280 = 11200"], "answer": 11200, "settings": "dp_ 2 -2 "}
{"id": 60, "question": "Simplify the following expression ((5 * (0 * 5 * 6)) * (9 + 6)) where + has priority over *.", "expression": "((5 * (0 * 5 * 6)) * (9 + 6))", "think": ["0 * 5 = 0", "0 * 6 = 0", "5 * 0 = 0", "9 + 6 = 15", "0 * 15 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 61, "question": "Simplify the following expression (((0 * 2 + 1) * 2) + (1 * 7)) where + has priority over *.", "expression": "(((0 * 2 + 1) * 2) + (1 * 7))", "think": ["2 + 1 = 3", "0 * 3 = 0", "0 * 2 = 0", "1 * 7 = 7", "0 + 7 = 7"], "answer": 7, "settings": "dp_ 2 -2 "}
{"id": 62, "question": "Simplify the following expression (((7 + 8 + 3) * 9) * (1 * 5)) where + has priority over *.", "expression": "(((7 + 8 + 3) * 9) * (1 * 5))", "think": ["7 + 8 = 15", "15 + 3 = 18", "18 * 9 = 162", "1 * 5 = 5", "162 * 5 = 810"], "answer": 810, "settings": "dp_ 2 -2 "}
{"id": 63, "question": "Simplify the following expression ((1 + (0 * 0 + 4)) * (1 + 7)) where + has priority over *.", "expression": "((1 + (0 * 0 + 4)) * (1 + 7))", "think": ["0 + 4 = 4", "0 * 4 = 0", "1 + 0 = 1", "1 + 7 = 8", "1 * 8 = 8"], "answer": 8, "settings": "dp_ 2 -2 "}
{"id": 64, "question": "Simplify the following expression ((6 * (2 * 1 + 9 * 9)) * (8 + 6)) where + has priority over *.", "expression": "((6 * (2 * 1 + 9 * 9)) * (8 + 6))", "think": ["1 + 9 = 10", "2 * 10 = 20", "20 * 9 = 180", "6 * 180 = 1080", "8 + 6 = 14", "1080 * 14 = 15120"], "answer": 15120, "settings": "dp_ 2 -2 "}
{"id": 65, "question": "Simplify the following expression ((7 + 4) + (4 * (8 + 2 * 5))) where + has priority over *.", "expression": "((7 + 4) + (4 * (8 + 2 * 5)))", "think": ["7 + 4 = 11", "8 + 2 = 10", "10 * 5 = 50", "4 * 50 = 200", "11 + 200 = 211"], "answer": 211, "settings": "dp_ 2 -2 "}
{"id": 66, "question": "Simplify the following expression ((4 * 7) * (3 * (3 * 6 * 9 * 0))) where + has priority over *.", "expression": "((4 * 7) * (3 * (3 * 6 * 9 * 0)))", "think": ["4 * 7 = 28", "3 * 6 = 18", "18 * 9 = 162", "162 * 0 = 0", "3 * 0 = 0", "28 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 67, "question": "Simplify the following expression ((0 * (9 + 5 * 3 + 1)) * (9 + 7)) where + has priority over *.", "expression": "((0 * (9 + 5 * 3 + 1)) * (9 + 7))", "think": ["9 + 5 = 14", "3 + 1 = 4", "14 * 4 = 56", "0 * 56 = 0", "9 + 7 = 16", "0 * 16 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 68, "question": "Simplify the following expression ((7 * 0) + ((6 + 2 + 8) * 1)) where + has priority over *.", "expression": "((7 * 0) + ((6 + 2 + 8) * 1))", "think": ["7 * 0 = 0", "6 + 2 = 8", "8 + 8 = 16", "16 * 1 = 16", "0 + 16 = 16"], "answer": 16, "settings": "dp_ 2 -2 "}
{"id": 69, "question": "Simplify the following expression (((1 + 2 * 8) * 4) * (4 * 5)) where + has priority over *.", "expression": "(((1 + 2 * 8) * 4) * (4 * 5))", "think": ["1 + 2 = 3", "3 * 8 = 24", "24 * 4 = 96", "4 * 5 = 20", "96 * 20 = 1920"], "answer": 1920, "settings": "dp_ 2 -2 "}
{"id": 70, "question": "Simplify the following expression ((6 + 0) * (8 * (4 * 9 * 1))) where + has priority over *.", "expression": "((6 + 0) * (8 * (4 * 9 * 1)))", "think": ["6 + 0 = 6", "4 * 9 = 36", "36 * 1 = 36", "8 * 36 = 288", "6 * 288 = 1728"], "answer": 1728, "settings": "dp_ 2 -2 "}
{"id": 71, "question": "Simplify the following expression (((4 + 6 + 0) * 9) + (9 * 3)) where + has priority over *.", "expression": "(((4 + 6 + 0) * 9) + (9 * 3))", "think": ["4 + 6 = 10", "10 + 0 = 10", "10 * 9 = 90", "9 * 3 = 27", "90 + 27 = 117"], "answer": 117, "settings": "dp_ 2 -2 "}
{"id": 72, "question": "Simplify the following expression ((7 * (7 * 5 + 6)) + (3 + 8)) where + has priority over *.", "expression": "((7 * (7 * 5 + 6)) + (3 + 8))", "think": ["5 + 6 = 11", "7 * 11 = 77", "7 * 77 = 539", "3 + 8 = 11", "539 + 11 = 550"], "answer": 550, "settings": "dp_ 2 -2 "}
{"id": 73, "question": "Simplify the following expression ((9 * (7 * 3 + 5)) + (0 * 5)) where + has priority over *.", "expression": "((9 * (7 * 3 + 5)) + (0 * 5))", "think": ["3 + 5 = 8", "7 * 8 = 56", "9 * 56 = 504", "0 * 5 = 0", "504 + 0 = 504"], "answer": 504, "settings": "dp_ 2 -2 "}
{"id": 74, "question": "Simplify the following expression (((9 * 0 + 0 + 9) + 4) * (1 + 7)) where + has priority over *.", "expression": "(((9 * 0 + 0 + 9) + 4) * (1 + 7))", "think": ["0 + 0 = 0", "0 + 9 = 9", "9 * 9 = 81", "81 + 4 = 85", "1 + 7 = 8", "85 * 8 = 680"], "answer": 680, "settings": "dp_ 2 -2 "}
{"id": 75, "question": "Simplify the following expression ((8 + (4 * 2 + 2 + 0)) + (3 + 5)) where + has priority over *.", "expression": "((8 + (4 * 2 + 2 + 0)) + (3 + 5))", "think": ["2 + 2 = 4", "4 + 0 = 4", "4 * 4 = 16", "8 + 16 = 24", "3 + 5 = 8", "24 + 8 = 32"], "answer": 32, "settings": "dp_ 2 -2 "}
{"id": 76, "question": "Simplify the following expression ((5 + 3) + ((2 + 6 + 8 * 7) * 2)) where + has priority over *.", "expression": "((5 + 3) + ((2 + 6 + 8 * 7) * 2))", "think": ["5 + 3 = 8", "2 + 6 = 8", "8 + 8 = 16", "16 * 7 = 112", "112 * 2 = 224", "8 + 224 = 232"], "answer": 232, "settings": "dp_ 2 -2 "}
{"id": 77, "question": "Simplify the following expression ((7 + 8) * ((0 * 0 * 6) + 0)) where + has priority over *.", "expression": "((7 + 8) * ((0 * 0 * 6) + 0))", "think": ["7 + 8 = 15", "0 * 0 = 0", "0 * 6 = 0", "0 + 0 = 0", "15 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 78, "question": "Simplify the following expression ((7 * (2 * 4 * 9 * 7)) + (5 + 9)) where + has priority over *.", "expression": "((7 * (2 * 4 * 9 * 7)) + (5 + 9))", "think": ["2 * 4 = 8", "8 * 9 = 72", "72 * 7 = 504", "7 * 504 = 3528", "5 + 9 = 14", "3528 + 14 = 3542"], "answer": 3542, "settings": "dp_ 2 -2 "}
{"id": 79, "question": "Simplify the following expression ((1 + (5 * 7 * 1)) * (6 + 7)) where + has priority over *.", "expression": "((1 + (5 * 7 * 1)) * (6 + 7))", "think": ["5 * 7 = 35", "35 * 1 = 35", "1 + 35 = 36", "6 + 7 = 13", "36 * 13 = 468"], "answer": 468, "settings": "dp_ 2 -2 "}
{"id": 80, "question": "Simplify the following expression (((1 + 1 * 6 + 8) * 4) * (2 * 7)) where + has priority over *.", "expression": "(((1 + 1 * 6 + 8) * 4) * (2 * 7))", "think": ["1 + 1 = 2", "6 + 8 = 14", "2 * 14 = 28", "28 * 4 = 112", "2 * 7 = 14", "112 * 14 = 1568"], "answer": 1568, "settings": "dp_ 2 -2 "}
{"id": 81, "question": "Simplify the following expression ((1 * (5 + 1 + 7)) + (6 * 0)) where + has priority over *.", "expression": "((1 * (5 + 1 + 7)) + (6 * 0))", "think": ["5 + 1 = 6", "6 + 7 = 13", "1 * 13 = 13", "6 * 0 = 0", "13 + 0 = 13"], "answer": 13, "settings": "dp_ 2 -2 "}
{"id": 82, "question": "Simplify the following expression ((5 + (8 + 9 * 0)) + (1 * 4)) where + has priority over *.", "expression": "((5 + (8 + 9 * 0)) + (1 * 4))", "think": ["8 + 9 = 17", "17 * 0 = 0", "5 + 0 = 5", "1 * 4 = 4", "5 + 4 = 9"], "answer": 9, "settings": "dp_ 2 -2 "}
{"id": 83, "question": "Simplify the following expression ((4 * (1 + 2 + 8)) + (0 * 2)) where + has priority over *.", "expression": "((4 * (1 + 2 + 8)) + (0 * 2))", "think": ["1 + 2 = 3", "3 + 8 = 11", "4 * 11 = 44", "0 * 2 = 0", "44 + 0 = 44"], "answer": 44, "settings": "dp_ 2 -2 "}
{"id": 84, "question": "Simplify the following expression ((6 * 7) + ((9 + 9 + 2) * 5)) where + has priority over *.", "expression": "((6 * 7) + ((9 + 9 + 2) * 5))", "think": ["6 * 7 = 42", "9 + 9 = 18", "18 + 2 = 20", "20 * 5 = 100", "42 + 100 = 142"], "answer": 142, "settings": "dp_ 2 -2 "}
{"id": 85, "question": "Simplify the following expression ((1 + 4) + (6 * (4 + 3 * 6))) where + has priority over *.", "expression": "((1 + 4) + (6 * (4 + 3 * 6)))", "think": ["1 + 4 = 5", "4 + 3 = 7", "7 * 6 = 42", "6 * 42 = 252", "5 + 252 = 257"], "answer": 257, "settings": "dp_ 2 -2 "}
{"id": 86, "question": "Simplify the following expression ((9 * 7) + (0 * (0 + 3 + 4 * 4))) where + has priority over *.", "expression": "((9 * 7) + (0 * (0 + 3 + 4 * 4)))", "think": ["9 * 7 = 63", "0 + 3 = 3", "3 + 4 = 7", "7 * 4 = 28", "0 * 28 = 0", "63 + 0 = 63"], "answer": 63, "settings": "dp_ 2 -2 "}
{"id": 87, "question": "Simplify the following expression ((0 + 7) * ((8 + 8 * 5 + 6) * 2)) where + has priority over *.", "expression": "((0 + 7) * ((8 + 8 * 5 + 6) * 2))", "think": ["0 + 7 = 7", "8 + 8 = 16", "5 + 6 = 11", "16 * 11 = 176", "176 * 2 = 352", "7 * 352 = 2464"], "answer": 2464, "settings": "dp_ 2 -2 "}
{"id": 88, "question": "Simplify the following expression ((1 * 5) + (9 * (1 + 6 * 2))) where + has priority over *.", "expression": "((1 * 5) + (9 * (1 + 6 * 2)))", "think": ["1 * 5 = 5", "1 + 6 = 7", "7 * 2 = 14", "9 * 14 = 126", "5 + 126 = 131"], "answer": 131, "settings": "dp_ 2 -2 "}
{"id": 89, "question": "Simplify the following expression ((1 * (6 + 4 * 5 + 1)) * (3 + 6)) where + has priority over *.", "expression": "((1 * (6 + 4 * 5 + 1)) * (3 + 6))", "think": ["6 + 4 = 10", "5 + 1 = 6", "10 * 6 = 60", "1 * 60 = 60", "3 + 6 = 9", "60 * 9 = 540"], "answer": 540, "settings": "dp_ 2 -2 "}
{"id": 90, "question": "Simplify the following expression (((3 + 2 + 2) + 5) + (3 + 1)) where + has priority over *.", "expression": "(((3 + 2 + 2) + 5) + (3 + 1))", "think": ["3 + 2 = 5", "5 + 2 = 7", "7 + 5 = 12", "3 + 1 = 4", "12 + 4 = 16"], "answer": 16, "settings": "dp_ 2 -2 "}
{"id": 91, "question": "Simplify the following expression (((2 + 7 * 7) * 9) * (9 * 9)) where + has priority over *.", "expression": "(((2 + 7 * 7) * 9) * (9 * 9))", "think": ["2 + 7 = 9", "9 * 7 = 63", "63 * 9 = 567", "9 * 9 = 81", "567 * 81 = 45927"], "answer": 45927, "settings": "dp_ 2 -2 "}
{"id": 92, "question": "Simplify the following expression ((9 * 0) * ((7 + 0 * 4) * 1)) where + has priority over *.", "expression": "((9 * 0) * ((7 + 0 * 4) * 1))", "think": ["9 * 0 = 0", "7 + 0 = 7", "7 * 4 = 28", "28 * 1 = 28", "0 * 28 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 93, "question": "Simplify the following expression (((9 * 3 * 8) + 9) + (7 * 9)) where + has priority over *.", "expression": "(((9 * 3 * 8) + 9) + (7 * 9))", "think": ["9 * 3 = 27", "27 * 8 = 216", "216 + 9 = 225", "7 * 9 = 63", "225 + 63 = 288"], "answer": 288, "settings": "dp_ 2 -2 "}
{"id": 94, "question": "Simplify the following expression ((7 + (3 + 7 * 7 * 4)) + (1 * 8)) where + has priority over *.", "expression": "((7 + (3 + 7 * 7 * 4)) + (1 * 8))", "think": ["3 + 7 = 10", "10 * 7 = 70", "70 * 4 = 280", "7 + 280 = 287", "1 * 8 = 8", "287 + 8 = 295"], "answer": 295, "settings": "dp_ 2 -2 "}
{"id": 95, "question": "Simplify the following expression (((8 * 6 + 4 * 1) * 9) * (5 + 1)) where + has priority over *.", "expression": "(((8 * 6 + 4 * 1) * 9) * (5 + 1))", "think": ["6 + 4 = 10", "8 * 10 = 80", "80 * 1 = 80", "80 * 9 = 720", "5 + 1 = 6", "720 * 6 = 4320"], "answer": 4320, "settings": "dp_ 2 -2 "}
{"id": 96, "question": "Simplify the following expression ((4 * 6) + ((5 + 2 * 8) + 1)) where + has priority over *.", "expression": "((4 * 6) + ((5 + 2 * 8) + 1))", "think": ["4 * 6 = 24", "5 + 2 = 7", "7 * 8 = 56", "56 + 1 = 57", "24 + 57 = 81"], "answer": 81, "settings": "dp_ 2 -2 "}
{"id": 97, "question": "Simplify the following expression (((3 + 2 * 2 + 8) + 4) * (3 + 5)) where + has priority over *.", "expression": "(((3 + 2 * 2 + 8) + 4) * (3 + 5))", "think": ["3 + 2 = 5", "2 + 8 = 10", "5 * 10 = 50", "50 + 4 = 54", "3 + 5 = 8", "54 * 8 = 432"], "answer": 432, "settings": "dp_ 2 -2 "}
{"id": 98, "question": "Simplify the following expression ((9 * (7 * 0 + 6 * 9)) + (2 * 2)) where + has priority over *.", "expression": "((9 * (7 * 0 + 6 * 9)) + (2 * 2))", "think": ["0 + 6 = 6", "7 * 6 = 42", "42 * 9 = 378", "9 * 378 = 3402", "2 * 2 = 4", "3402 + 4 = 3406"], "answer": 3406, "settings": "dp_ 2 -2 "}
{"id": 99, "question": "Simplify the following expression ((3 * (9 * 7 * 6)) * (4 + 7)) where + has priority over *.", "expression": "((3 * (9 * 7 * 6)) * (4 + 7))", "think": ["9 * 7 = 63", "63 * 6 = 378", "3 * 378 = 1134", "4 + 7 = 11", "1134 * 11 = 12474"], "answer": 12474, "settings": "dp_ 2 -2 "}
{"id": 100, "question": "Simplify the following expression ((3 + 9) * (4 + (8 + 1 * 1))) where + has priority over *.", "expression": "((3 + 9) * (4 + (8 + 1 * 1)))", "think": ["3 + 9 = 12", "8 + 1 = 9", "9 * 1 = 9", "4 + 9 = 13", "12 * 13 = 156"], "answer": 156, "settings": "dp_ 2 -2 "}
{"id": 101, "question": "Simplify the following expression ((7 * (5 * 0 + 6)) + (6 + 1)) where + has priority over *.", "expression": "((7 * (5 * 0 + 6)) + (6 + 1))", "think": ["0 + 6 = 6", "5 * 6 = 30", "7 * 30 = 210", "6 + 1 = 7", "210 + 7 = 217"], "answer": 217, "settings": "dp_ 2 -2 "}
{"id": 102, "question": "Simplify the following expression ((6 + 1) * ((5 + 2 * 2 * 2) * 0)) where + has priority over *.", "expression": "((6 + 1) * ((5 + 2 * 2 * 2) * 0))", "think": ["6 + 1 = 7", "5 + 2 = 7", "7 * 2 = 14", "14 * 2 = 28", "28 * 0 = 0", "7 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 103, "question": "Simplify the following expression ((9 * (8 * 9 + 8 * 3)) * (0 + 4)) where + has priority over *.", "expression": "((9 * (8 * 9 + 8 * 3)) * (0 + 4))", "think": ["9 + 8 = 17", "8 * 17 = 136", "136 * 3 = 408", "9 * 408 = 3672", "0 + 4 = 4", "3672 * 4 = 14688"], "answer": 14688, "settings": "dp_ 2 -2 "}
{"id": 104, "question": "Simplify the following expression (((7 + 9 + 8 + 4) + 3) * (9 * 7)) where + has priority over *.", "expression": "(((7 + 9 + 8 + 4) + 3) * (9 * 7))", "think": ["7 + 9 = 16", "16 + 8 = 24", "24 + 4 = 28", "28 + 3 = 31", "9 * 7 = 63", "31 * 63 = 1953"], "answer": 1953, "settings": "dp_ 2 -2 "}
{"id": 105, "question": "Simplify the following expression ((9 + (8 + 5 * 1 * 0)) * (9 + 6)) where + has priority over *.", "expression": "((9 + (8 + 5 * 1 * 0)) * (9 + 6))", "think": ["8 + 5 = 13", "13 * 1 = 13", "13 * 0 = 0", "9 + 0 = 9", "9 + 6 = 15", "9 * 15 = 135"], "answer": 135, "settings": "dp_ 2 -2 "}
{"id": 106, "question": "Simplify the following expression ((4 * (9 + 5 * 2 * 2)) * (1 * 5)) where + has priority over *.", "expression": "((4 * (9 + 5 * 2 * 2)) * (1 * 5))", "think": ["9 + 5 = 14", "14 * 2 = 28", "28 * 2 = 56", "4 * 56 = 224", "1 * 5 = 5", "224 * 5 = 1120"], "answer": 1120, "settings": "dp_ 2 -2 "}
{"id": 107, "question": "Simplify the following expression ((2 * 2) * ((0 * 3 * 0 * 8) + 0)) where + has priority over *.", "expression": "((2 * 2) * ((0 * 3 * 0 * 8) + 0))", "think": ["2 * 2 = 4", "0 * 3 = 0", "0 * 0 = 0", "0 * 8 = 0", "0 + 0 = 0", "4 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 108, "question": "Simplify the following expression ((0 * 3) * ((1 * 5 * 7) * 0)) where + has priority over *.", "expression": "((0 * 3) * ((1 * 5 * 7) * 0))", "think": ["0 * 3 = 0", "1 * 5 = 5", "5 * 7 = 35", "35 * 0 = 0", "0 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 109, "question": "Simplify the following expression ((2 * 7) * ((6 + 1 * 6 * 1) * 8)) where + has priority over *.", "expression": "((2 * 7) * ((6 + 1 * 6 * 1) * 8))", "think": ["2 * 7 = 14", "6 + 1 = 7", "7 * 6 = 42", "42 * 1 = 42", "42 * 8 = 336", "14 * 336 = 4704"], "answer": 4704, "settings": "dp_ 2 -2 "}
{"id": 110, "question": "Simplify the following expression (((5 + 7 * 9) * 4) + (9 * 6)) where + has priority over *.", "expression": "(((5 + 7 * 9) * 4) + (9 * 6))", "think": ["5 + 7 = 12", "12 * 9 = 108", "108 * 4 = 432", "9 * 6 = 54", "432 + 54 = 486"], "answer": 486, "settings": "dp_ 2 -2 "}
{"id": 111, "question": "Simplify the following expression ((0 * (2 + 9 + 7 + 3)) * (5 * 8)) where + has priority over *.", "expression": "((0 * (2 + 9 + 7 + 3)) * (5 * 8))", "think": ["2 + 9 = 11", "11 + 7 = 18", "18 + 3 = 21", "0 * 21 = 0", "5 * 8 = 40", "0 * 40 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 112, "question": "Simplify the following expression ((6 * 9) * (9 + (5 + 7 + 8))) where + has priority over *.", "expression": "((6 * 9) * (9 + (5 + 7 + 8)))", "think": ["6 * 9 = 54", "5 + 7 = 12", "12 + 8 = 20", "9 + 20 = 29", "54 * 29 = 1566"], "answer": 1566, "settings": "dp_ 2 -2 "}
{"id": 113, "question": "Simplify the following expression ((5 * (8 + 6 * 4)) * (1 + 0)) where + has priority over *.", "expression": "((5 * (8 + 6 * 4)) * (1 + 0))", "think": ["8 + 6 = 14", "14 * 4 = 56", "5 * 56 = 280", "1 + 0 = 1", "280 * 1 = 280"], "answer": 280, "settings": "dp_ 2 -2 "}
{"id": 114, "question": "Simplify the following expression ((9 + (7 + 2 * 7 * 1)) * (3 * 1)) where + has priority over *.", "expression": "((9 + (7 + 2 * 7 * 1)) * (3 * 1))", "think": ["7 + 2 = 9", "9 * 7 = 63", "63 * 1 = 63", "9 + 63 = 72", "3 * 1 = 3", "72 * 3 = 216"], "answer": 216, "settings": "dp_ 2 -2 "}
{"id": 115, "question": "Simplify the following expression (((2 + 3 * 7 * 7) * 2) * (8 * 3)) where + has priority over *.", "expression": "(((2 + 3 * 7 * 7) * 2) * (8 * 3))", "think": ["2 + 3 = 5", "5 * 7 = 35", "35 * 7 = 245", "245 * 2 = 490", "8 * 3 = 24", "490 * 24 = 11760"], "answer": 11760, "settings": "dp_ 2 -2 "}
{"id": 116, "question": "Simplify the following expression ((1 + 4) + (7 * (9 + 1 * 1))) where + has priority over *.", "expression": "((1 + 4) + (7 * (9 + 1 * 1)))", "think": ["1 + 4 = 5", "9 + 1 = 10", "10 * 1 = 10", "7 * 10 = 70", "5 + 70 = 75"], "answer": 75, "settings": "dp_ 2 -2 "}
{"id": 117, "question": "Simplify the following expression ((8 * (6 + 8 + 0 * 2)) * (8 + 9)) where + has priority over *.", "expression": "((8 * (6 + 8 + 0 * 2)) * (8 + 9))", "think": ["6 + 8 = 14", "14 + 0 = 14", "14 * 2 = 28", "8 * 28 = 224", "8 + 9 = 17", "224 * 17 = 3808"], "answer": 3808, "settings": "dp_ 2 -2 "}
{"id": 118, "question": "Simplify the following expression ((3 * (2 + 4 + 9)) + (1 * 4)) where + has priority over *.", "expression": "((3 * (2 + 4 + 9)) + (1 * 4))", "think": ["2 + 4 = 6", "6 + 9 = 15", "3 * 15 = 45", "1 * 4 = 4", "45 + 4 = 49"], "answer": 49, "settings": "dp_ 2 -2 "}
{"id": 119, "question": "Simplify the following expression (((0 + 9 * 4 + 7) + 9) + (9 * 0)) where + has priority over *.", "expression": "(((0 + 9 * 4 + 7) + 9) + (9 * 0))", "think": ["0 + 9 = 9", "4 + 7 = 11", "9 * 11 = 99", "99 + 9 = 108", "9 * 0 = 0", "108 + 0 = 108"], "answer": 108, "settings": "dp_ 2 -2 "}
{"id": 120, "question": "Simplify the following expression (((2 * 7 * 6 + 5) * 3) * (4 * 7)) where + has priority over *.", "expression": "(((2 * 7 * 6 + 5) * 3) * (4 * 7))", "think": ["2 * 7 = 14", "6 + 5 = 11", "14 * 11 = 154", "154 * 3 = 462", "4 * 7 = 28", "462 * 28 = 12936"], "answer": 12936, "settings": "dp_ 2 -2 "}
{"id": 121, "question": "Simplify the following expression (((3 + 7 * 7) * 5) + (2 * 5)) where + has priority over *.", "expression": "(((3 + 7 * 7) * 5) + (2 * 5))", "think": ["3 + 7 = 10", "10 * 7 = 70", "70 * 5 = 350", "2 * 5 = 10", "350 + 10 = 360"], "answer": 360, "settings": "dp_ 2 -2 "}
{"id": 122, "question": "Simplify the following expression ((1 + 0) + (6 * (2 * 5 + 9 + 7))) where + has priority over *.", "expression": "((1 + 0) + (6 * (2 * 5 + 9 + 7)))", "think": ["1 + 0 = 1", "5 + 9 = 14", "14 + 7 = 21", "2 * 21 = 42", "6 * 42 = 252", "1 + 252 = 253"], "answer": 253, "settings": "dp_ 2 -2 "}
{"id": 123, "question": "Simplify the following expression ((4 * 7) * (1 + (3 + 9 + 5 * 7))) where + has priority over *.", "expression": "((4 * 7) * (1 + (3 + 9 + 5 * 7)))", "think": ["4 * 7 = 28", "3 + 9 = 12", "12 + 5 = 17", "17 * 7 = 119", "1 + 119 = 120", "28 * 120 = 3360"], "answer": 3360, "settings": "dp_ 2 -2 "}
{"id": 124, "question": "Simplify the following expression ((8 * 0) * ((6 + 5 * 0) + 2)) where + has priority over *.", "expression": "((8 * 0) * ((6 + 5 * 0) + 2))", "think": ["8 * 0 = 0", "6 + 5 = 11", "11 * 0 = 0", "0 + 2 = 2", "0 * 2 = 0"], "answer": 0, "settings": "dp_ 2 -2 "}
{"id": 125, "question": "Simplify the following expression (((9 + 9 + 1) * 4) + (6 + 8)) where + has priority over *.", "expression": "(((9 + 9 + 1) * 4) + (6 + 8))", "think": ["9 + 9 = 18", "18 + 1 = 19", "19 * 4 = 76", "6 + 8 = 14", "76 + 14 = 90"], "answer": 90, "settings": "dp_ 2 -2 "}
{"id": 126, "question": "Simplify the following expression ((8 + (2 * 6 + 5 + 5)) + (3 * 7)) where + has priority over *.", "expression": "((8 + (2 * 6 + 5 + 5)) + (3 * 7))", "think": ["6 + 5 = 11", "11 + 5 = 16", "2 * 16 = 32", "8 + 32 = 40", "3 * 7 = 21", "40 + 21 = 61"], "answer": 61, "settings": "dp_ 2 -3 "}
{"id": 127, "question": "Simplify the following expression ((6 + 1) + ((7 * 8 + 1 * 9) * 9)) where + has priority over *.", "expression": "((6 + 1) + ((7 * 8 + 1 * 9) * 9))", "think": ["6 + 1 = 7", "8 + 1 = 9", "7 * 9 = 63", "63 * 9 = 567", "567 * 9 = 5103", "7 + 5103 = 5110"], "answer": 5110, "settings": "dp_ 2 -3 "}
{"id": 128, "question": "Simplify the following expression ((1 + (6 * 4 + 7 * 5)) * (4 + 1)) where + has priority over *.", "expression": "((1 + (6 * 4 + 7 * 5)) * (4 + 1))", "think": ["4 + 7 = 11", "6 * 11 = 66", "66 * 5 = 330", "1 + 330 = 331", "4 + 1 = 5", "331 * 5 = 1655"], "answer": 1655, "settings": "dp_ 2 -3 "}
{"id": 129, "question": "Simplify the following expression ((1 * (6 + 4 * 0)) + (8 + 3)) where + has priority over *.", "expression": "((1 * (6 + 4 * 0)) + (8 + 3))", "think": ["6 + 4 = 10", "10 * 0 = 0", "1 * 0 = 0", "8 + 3 = 11", "0 + 11 = 11"], "answer": 11, "settings": "dp_ 2 -3 "}
{"id": 130, "question": "Simplify the following expression ((5 + 6) + ((7 + 6 * 7 + 3) * 3)) where + has priority over *.", "expression": "((5 + 6) + ((7 + 6 * 7 + 3) * 3))", "think": ["5 + 6 = 11", "7 + 6 = 13", "7 + 3 = 10", "13 * 10 = 130", "130 * 3 = 390", "11 + 390 = 401"], "answer": 401, "settings": "dp_ 2 -3 "}
{"id": 131, "question": "Simplify the following expression ((9 * 6) * (3 * (0 + 1 * 2 + 6))) where + has priority over *.", "expression": "((9 * 6) * (3 * (0 + 1 * 2 + 6)))", "think": ["9 * 6 = 54", "0 + 1 = 1", "2 + 6 = 8", "1 * 8 = 8", "3 * 8 = 24", "54 * 24 = 1296"], "answer": 1296, "settings": "dp_ 2 -3 "}
{"id": 132, "question": "Simplify the following expression ((8 * 4) * ((5 * 1 * 2) + 8)) where + has priority over *.", "expression": "((8 * 4) * ((5 * 1 * 2) + 8))", "think": ["8 * 4 = 32", "5 * 1 = 5", "5 * 2 = 10", "10 + 8 = 18", "32 * 18 = 576"], "answer": 576, "settings": "dp_ 2 -3 "}
{"id": 133, "question": "Simplify the following expression ((4 + (8 + 9 + 5)) * (8 + 1)) where + has priority over *.", "expression": "((4 + (8 + 9 + 5)) * (8 + 1))", "think": ["8 + 9 = 17", "17 + 5 = 22", "4 + 22 = 26", "8 + 1 = 9", "26 * 9 = 234"], "answer": 234, "settings": "dp_ 2 -3 "}
{"id": 134, "question": "Simplify the following expression ((9 + 5) + ((3 + 0 + 1) * 1)) where + has priority over *.", "expression": "((9 + 5) + ((3 + 0 + 1) * 1))", "think": ["9 + 5 = 14", "3 + 0 = 3", "3 + 1 = 4", "4 * 1 = 4", "14 + 4 = 18"], "answer": 18, "settings": "dp_ 2 -3 "}
{"id": 135, "question": "Simplify the following expression ((8 + (8 * 9 + 8)) * (7 + 8)) where + has priority over *.", "expression": "((8 + (8 * 9 + 8)) * (7 + 8))", "think": ["9 + 8 = 17", "8 * 17 = 136", "8 + 136 = 144", "7 + 8 = 15", "144 * 15 = 2160"], "answer": 2160, "settings": "dp_ 2 -3 "}
{"id": 136, "question": "Simplify the following expression (((3 + 1 + 5 + 0) * 5) + (8 * 7)) where + has priority over *.", "expression": "(((3 + 1 + 5 + 0) * 5) + (8 * 7))", "think": ["3 + 1 = 4", "4 + 5 = 9", "9 + 0 = 9", "9 * 5 = 45", "8 * 7 = 56", "45 + 56 = 101"], "answer": 101, "settings": "dp_ 2 -3 "}
{"id": 137, "question": "Simplify the following expression ((3 + (7 + 3 * 3)) + (5 + 1)) where + has priority over *.", "expression": "((3 + (7 + 3 * 3)) + (5 + 1))", "think": ["7 + 3 = 10", "10 * 3 = 30", "3 + 30 = 33", "5 + 1 = 6", "33 + 6 = 39"], "answer": 39, "settings": "dp_ 2 -3 "}
{"id": 138, "question": "Simplify the following expression ((3 * 1) * (6 + (7 + 0 + 6))) where + has priority over *.", "expression": "((3 * 1) * (6 + (7 + 0 + 6)))", "think": ["3 * 1 = 3", "7 + 0 = 7", "7 + 6 = 13", "6 + 13 = 19", "3 * 19 = 57"], "answer": 57, "settings": "dp_ 2 -3 "}
{"id": 139, "question": "Simplify the following expression (((2 * 4 + 1) + 3) * (8 + 7)) where + has priority over *.", "expression": "(((2 * 4 + 1) + 3) * (8 + 7))", "think": ["4 + 1 = 5", "2 * 5 = 10", "10 + 3 = 13", "8 + 7 = 15", "13 * 15 = 195"], "answer": 195, "settings": "dp_ 2 -3 "}
{"id": 140, "question": "Simplify the following expression ((0 + (7 + 7 * 0)) * (1 + 3)) where + has priority over *.", "expression": "((0 + (7 + 7 * 0)) * (1 + 3))", "think": ["7 + 7 = 14", "14 * 0 = 0", "0 + 0 = 0", "1 + 3 = 4", "0 * 4 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 141, "question": "Simplify the following expression ((0 * 6) + (7 * (8 + 7 + 4))) where + has priority over *.", "expression": "((0 * 6) + (7 * (8 + 7 + 4)))", "think": ["0 * 6 = 0", "8 + 7 = 15", "15 + 4 = 19", "7 * 19 = 133", "0 + 133 = 133"], "answer": 133, "settings": "dp_ 2 -3 "}
{"id": 142, "question": "Simplify the following expression (((7 + 8 + 8) + 8) + (5 + 0)) where + has priority over *.", "expression": "(((7 + 8 + 8) + 8) + (5 + 0))", "think": ["7 + 8 = 15", "15 + 8 = 23", "23 + 8 = 31", "5 + 0 = 5", "31 + 5 = 36"], "answer": 36, "settings": "dp_ 2 -3 "}
{"id": 143, "question": "Simplify the following expression (((3 + 9 + 6) + 9) + (3 + 6)) where + has priority over *.", "expression": "(((3 + 9 + 6) + 9) + (3 + 6))", "think": ["3 + 9 = 12", "12 + 6 = 18", "18 + 9 = 27", "3 + 6 = 9", "27 + 9 = 36"], "answer": 36, "settings": "dp_ 2 -3 "}
{"id": 144, "question": "Simplify the following expression ((3 * (4 * 7 + 0)) * (4 + 6)) where + has priority over *.", "expression": "((3 * (4 * 7 + 0)) * (4 + 6))", "think": ["7 + 0 = 7", "4 * 7 = 28", "3 * 28 = 84", "4 + 6 = 10", "84 * 10 = 840"], "answer": 840, "settings": "dp_ 2 -3 "}
{"id": 145, "question": "Simplify the following expression ((1 + (1 * 3 * 2)) * (8 + 4)) where + has priority over *.", "expression": "((1 + (1 * 3 * 2)) * (8 + 4))", "think": ["1 * 3 = 3", "3 * 2 = 6", "1 + 6 = 7", "8 + 4 = 12", "7 * 12 = 84"], "answer": 84, "settings": "dp_ 2 -3 "}
{"id": 146, "question": "Simplify the following expression (((4 + 1 * 1 * 9) * 8) * (8 + 4)) where + has priority over *.", "expression": "(((4 + 1 * 1 * 9) * 8) * (8 + 4))", "think": ["4 + 1 = 5", "5 * 1 = 5", "5 * 9 = 45", "45 * 8 = 360", "8 + 4 = 12", "360 * 12 = 4320"], "answer": 4320, "settings": "dp_ 2 -3 "}
{"id": 147, "question": "Simplify the following expression (((6 + 4 + 5) * 4) + (4 * 0)) where + has priority over *.", "expression": "(((6 + 4 + 5) * 4) + (4 * 0))", "think": ["6 + 4 = 10", "10 + 5 = 15", "15 * 4 = 60", "4 * 0 = 0", "60 + 0 = 60"], "answer": 60, "settings": "dp_ 2 -3 "}
{"id": 148, "question": "Simplify the following expression (((2 * 8 + 0 * 2) * 7) + (8 * 0)) where + has priority over *.", "expression": "(((2 * 8 + 0 * 2) * 7) + (8 * 0))", "think": ["8 + 0 = 8", "2 * 8 = 16", "16 * 2 = 32", "32 * 7 = 224", "8 * 0 = 0", "224 + 0 = 224"], "answer": 224, "settings": "dp_ 2 -3 "}
{"id": 149, "question": "Simplify the following expression (((8 + 6 + 2) * 0) + (3 * 3)) where + has priority over *.", "expression": "(((8 + 6 + 2) * 0) + (3 * 3))", "think": ["8 + 6 = 14", "14 + 2 = 16", "16 * 0 = 0", "3 * 3 = 9", "0 + 9 = 9"], "answer": 9, "settings": "dp_ 2 -3 "}
{"id": 150, "question": "Simplify the following expression ((0 * 2) + ((1 * 6 + 0 + 7) * 3)) where + has priority over *.", "expression": "((0 * 2) + ((1 * 6 + 0 + 7) * 3))", "think": ["0 * 2 = 0", "6 + 0 = 6", "6 + 7 = 13", "1 * 13 = 13", "13 * 3 = 39", "0 + 39 = 39"], "answer": 39, "settings": "dp_ 2 -3 "}
{"id": 151, "question": "Simplify the following expression (((1 * 4 * 8) * 3) * (3 + 6)) where + has priority over *.", "expression": "(((1 * 4 * 8) * 3) * (3 + 6))", "think": ["1 * 4 = 4", "4 * 8 = 32", "32 * 3 = 96", "3 + 6 = 9", "96 * 9 = 864"], "answer": 864, "settings": "dp_ 2 -3 "}
{"id": 152, "question": "Simplify the following expression (((9 * 6 * 5 + 6) + 4) * (9 + 4)) where + has priority over *.", "expression": "(((9 * 6 * 5 + 6) + 4) * (9 + 4))", "think": ["9 * 6 = 54", "5 + 6 = 11", "54 * 11 = 594", "594 + 4 = 598", "9 + 4 = 13", "598 * 13 = 7774"], "answer": 7774, "settings": "dp_ 2 -3 "}
{"id": 153, "question": "Simplify the following expression ((0 * (6 * 1 * 1)) + (8 + 8)) where + has priority over *.", "expression": "((0 * (6 * 1 * 1)) + (8 + 8))", "think": ["6 * 1 = 6", "6 * 1 = 6", "0 * 6 = 0", "8 + 8 = 16", "0 + 16 = 16"], "answer": 16, "settings": "dp_ 2 -3 "}
{"id": 154, "question": "Simplify the following expression ((6 * (6 * 6 * 2 + 4)) * (4 * 8)) where + has priority over *.", "expression": "((6 * (6 * 6 * 2 + 4)) * (4 * 8))", "think": ["6 * 6 = 36", "2 + 4 = 6", "36 * 6 = 216", "6 * 216 = 1296", "4 * 8 = 32", "1296 * 32 = 41472"], "answer": 41472, "settings": "dp_ 2 -3 "}
{"id": 155, "question": "Simplify the following expression ((6 + 9) * ((3 * 8 + 1) * 7)) where + has priority over *.", "expression": "((6 + 9) * ((3 * 8 + 1) * 7))", "think": ["6 + 9 = 15", "8 + 1 = 9", "3 * 9 = 27", "27 * 7 = 189", "15 * 189 = 2835"], "answer": 2835, "settings": "dp_ 2 -3 "}
{"id": 156, "question": "Simplify the following expression ((1 * (0 + 3 * 7 * 9)) * (3 * 3)) where + has priority over *.", "expression": "((1 * (0 + 3 * 7 * 9)) * (3 * 3))", "think": ["0 + 3 = 3", "3 * 7 = 21", "21 * 9 = 189", "1 * 189 = 189", "3 * 3 = 9", "189 * 9 = 1701"], "answer": 1701, "settings": "dp_ 2 -3 "}
{"id": 157, "question": "Simplify the following expression (((3 * 2 + 8) * 6) + (2 + 0)) where + has priority over *.", "expression": "(((3 * 2 + 8) * 6) + (2 + 0))", "think": ["2 + 8 = 10", "3 * 10 = 30", "30 * 6 = 180", "2 + 0 = 2", "180 + 2 = 182"], "answer": 182, "settings": "dp_ 2 -3 "}
{"id": 158, "question": "Simplify the following expression ((7 + 2) + ((9 * 8 * 2) * 8)) where + has priority over *.", "expression": "((7 + 2) + ((9 * 8 * 2) * 8))", "think": ["7 + 2 = 9", "9 * 8 = 72", "72 * 2 = 144", "144 * 8 = 1152", "9 + 1152 = 1161"], "answer": 1161, "settings": "dp_ 2 -3 "}
{"id": 159, "question": "Simplify the following expression ((4 * (7 * 1 + 4)) * (8 * 7)) where + has priority over *.", "expression": "((4 * (7 * 1 + 4)) * (8 * 7))", "think": ["1 + 4 = 5", "7 * 5 = 35", "4 * 35 = 140", "8 * 7 = 56", "140 * 56 = 7840"], "answer": 7840, "settings": "dp_ 2 -3 "}
{"id": 160, "question": "Simplify the following expression ((8 * 1) * (2 + (2 + 3 * 6))) where + has priority over *.", "expression": "((8 * 1) * (2 + (2 + 3 * 6)))", "think": ["8 * 1 = 8", "2 + 3 = 5", "5 * 6 = 30", "2 + 30 = 32", "8 * 32 = 256"], "answer": 256, "settings": "dp_ 2 -3 "}
{"id": 161, "question": "Simplify the following expression (((6 + 7 * 4) * 0) * (6 + 6)) where + has priority over *.", "expression": "(((6 + 7 * 4) * 0) * (6 + 6))", "think": ["6 + 7 = 13", "13 * 4 = 52", "52 * 0 = 0", "6 + 6 = 12", "0 * 12 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 162, "question": "Simplify the following expression ((8 * 8) * ((7 * 0 * 6) + 3)) where + has priority over *.", "expression": "((8 * 8) * ((7 * 0 * 6) + 3))", "think": ["8 * 8 = 64", "7 * 0 = 0", "0 * 6 = 0", "0 + 3 = 3", "64 * 3 = 192"], "answer": 192, "settings": "dp_ 2 -3 "}
{"id": 163, "question": "Simplify the following expression (((6 + 2 + 7 * 6) * 9) + (6 + 9)) where + has priority over *.", "expression": "(((6 + 2 + 7 * 6) * 9) + (6 + 9))", "think": ["6 + 2 = 8", "8 + 7 = 15", "15 * 6 = 90", "90 * 9 = 810", "6 + 9 = 15", "810 + 15 = 825"], "answer": 825, "settings": "dp_ 2 -3 "}
{"id": 164, "question": "Simplify the following expression ((7 + 5) * (6 * (1 + 7 + 5))) where + has priority over *.", "expression": "((7 + 5) * (6 * (1 + 7 + 5)))", "think": ["7 + 5 = 12", "1 + 7 = 8", "8 + 5 = 13", "6 * 13 = 78", "12 * 78 = 936"], "answer": 936, "settings": "dp_ 2 -3 "}
{"id": 165, "question": "Simplify the following expression (((2 + 7 * 1 * 5) + 0) + (3 + 0)) where + has priority over *.", "expression": "(((2 + 7 * 1 * 5) + 0) + (3 + 0))", "think": ["2 + 7 = 9", "9 * 1 = 9", "9 * 5 = 45", "45 + 0 = 45", "3 + 0 = 3", "45 + 3 = 48"], "answer": 48, "settings": "dp_ 2 -3 "}
{"id": 166, "question": "Simplify the following expression ((2 + 4) + ((6 + 6 + 9) + 0)) where + has priority over *.", "expression": "((2 + 4) + ((6 + 6 + 9) + 0))", "think": ["2 + 4 = 6", "6 + 6 = 12", "12 + 9 = 21", "21 + 0 = 21", "6 + 21 = 27"], "answer": 27, "settings": "dp_ 2 -3 "}
{"id": 167, "question": "Simplify the following expression ((4 + (6 + 5 * 0)) + (9 + 0)) where + has priority over *.", "expression": "((4 + (6 + 5 * 0)) + (9 + 0))", "think": ["6 + 5 = 11", "11 * 0 = 0", "4 + 0 = 4", "9 + 0 = 9", "4 + 9 = 13"], "answer": 13, "settings": "dp_ 2 -3 "}
{"id": 168, "question": "Simplify the following expression ((1 * 6) * (7 * (8 * 4 * 9 * 9))) where + has priority over *.", "expression": "((1 * 6) * (7 * (8 * 4 * 9 * 9)))", "think": ["1 * 6 = 6", "8 * 4 = 32", "32 * 9 = 288", "288 * 9 = 2592", "7 * 2592 = 18144", "6 * 18144 = 108864"], "answer": 108864, "settings": "dp_ 2 -3 "}
{"id": 169, "question": "Simplify the following expression (((9 * 6 + 7) * 1) * (7 * 3)) where + has priority over *.", "expression": "(((9 * 6 + 7) * 1) * (7 * 3))", "think": ["6 + 7 = 13", "9 * 13 = 117", "117 * 1 = 117", "7 * 3 = 21", "117 * 21 = 2457"], "answer": 2457, "settings": "dp_ 2 -3 "}
{"id": 170, "question": "Simplify the following expression ((7 + 3) * ((4 + 8 + 1) * 5)) where + has priority over *.", "expression": "((7 + 3) * ((4 + 8 + 1) * 5))", "think": ["7 + 3 = 10", "4 + 8 = 12", "12 + 1 = 13", "13 * 5 = 65", "10 * 65 = 650"], "answer": 650, "settings": "dp_ 2 -3 "}
{"id": 171, "question": "Simplify the following expression (((1 * 4 + 3 * 9) * 8) + (7 + 7)) where + has priority over *.", "expression": "(((1 * 4 + 3 * 9) * 8) + (7 + 7))", "think": ["4 + 3 = 7", "1 * 7 = 7", "7 * 9 = 63", "63 * 8 = 504", "7 + 7 = 14", "504 + 14 = 518"], "answer": 518, "settings": "dp_ 2 -3 "}
{"id": 172, "question": "Simplify the following expression ((8 * 8) * ((7 * 4 * 3) * 8)) where + has priority over *.", "expression": "((8 * 8) * ((7 * 4 * 3) * 8))", "think": ["8 * 8 = 64", "7 * 4 = 28", "28 * 3 = 84", "84 * 8 = 672", "64 * 672 = 43008"], "answer": 43008, "settings": "dp_ 2 -3 "}
{"id": 173, "question": "Simplify the following expression ((5 + 1) + ((9 * 8 + 3) + 3)) where + has priority over *.", "expression": "((5 + 1) + ((9 * 8 + 3) + 3))", "think": ["5 + 1 = 6", "8 + 3 = 11", "9 * 11 = 99", "99 + 3 = 102", "6 + 102 = 108"], "answer": 108, "settings": "dp_ 2 -3 "}
{"id": 174, "question": "Simplify the following expression ((5 + (0 * 0 + 7)) * (0 * 8)) where + has priority over *.", "expression": "((5 + (0 * 0 + 7)) * (0 * 8))", "think": ["0 + 7 = 7", "0 * 7 = 0", "5 + 0 = 5", "0 * 8 = 0", "5 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 175, "question": "Simplify the following expression ((9 + 4) + ((0 + 4 + 7 * 7) * 7)) where + has priority over *.", "expression": "((9 + 4) + ((0 + 4 + 7 * 7) * 7))", "think": ["9 + 4 = 13", "0 + 4 = 4", "4 + 7 = 11", "11 * 7 = 77", "77 * 7 = 539", "13 + 539 = 552"], "answer": 552, "settings": "dp_ 2 -3 "}
{"id": 176, "question": "Simplify the following expression (((6 + 9 * 7) + 2) + (1 * 3)) where + has priority over *.", "expression": "(((6 + 9 * 7) + 2) + (1 * 3))", "think": ["6 + 9 = 15", "15 * 7 = 105", "105 + 2 = 107", "1 * 3 = 3", "107 + 3 = 110"], "answer": 110, "settings": "dp_ 2 -3 "}
{"id": 177, "question": "Simplify the following expression (((1 + 3 * 1) * 6) * (9 * 9)) where + has priority over *.", "expression": "(((1 + 3 * 1) * 6) * (9 * 9))", "think": ["1 + 3 = 4", "4 * 1 = 4", "4 * 6 = 24", "9 * 9 = 81", "24 * 81 = 1944"], "answer": 1944, "settings": "dp_ 2 -3 "}
{"id": 178, "question": "Simplify the following expression ((2 + 8) + (2 + (9 * 7 + 3))) where + has priority over *.", "expression": "((2 + 8) + (2 + (9 * 7 + 3)))", "think": ["2 + 8 = 10", "7 + 3 = 10", "9 * 10 = 90", "2 + 90 = 92", "10 + 92 = 102"], "answer": 102, "settings": "dp_ 2 -3 "}
{"id": 179, "question": "Simplify the following expression ((7 * (1 + 8 + 4)) * (4 + 9)) where + has priority over *.", "expression": "((7 * (1 + 8 + 4)) * (4 + 9))", "think": ["1 + 8 = 9", "9 + 4 = 13", "7 * 13 = 91", "4 + 9 = 13", "91 * 13 = 1183"], "answer": 1183, "settings": "dp_ 2 -3 "}
{"id": 180, "question": "Simplify the following expression ((0 + 2) + ((1 * 7 * 4) * 9)) where + has priority over *.", "expression": "((0 + 2) + ((1 * 7 * 4) * 9))", "think": ["0 + 2 = 2", "1 * 7 = 7", "7 * 4 = 28", "28 * 9 = 252", "2 + 252 = 254"], "answer": 254, "settings": "dp_ 2 -3 "}
{"id": 181, "question": "Simplify the following expression ((1 * 9) * ((1 + 3 * 9 + 2) + 5)) where + has priority over *.", "expression": "((1 * 9) * ((1 + 3 * 9 + 2) + 5))", "think": ["1 * 9 = 9", "1 + 3 = 4", "9 + 2 = 11", "4 * 11 = 44", "44 + 5 = 49", "9 * 49 = 441"], "answer": 441, "settings": "dp_ 2 -3 "}
{"id": 182, "question": "Simplify the following expression ((4 * 2) * (7 * (6 * 5 + 2))) where + has priority over *.", "expression": "((4 * 2) * (7 * (6 * 5 + 2)))", "think": ["4 * 2 = 8", "5 + 2 = 7", "6 * 7 = 42", "7 * 42 = 294", "8 * 294 = 2352"], "answer": 2352, "settings": "dp_ 2 -3 "}
{"id": 183, "question": "Simplify the following expression ((7 * 4) * (8 * (5 + 4 * 5 + 8))) where + has priority over *.", "expression": "((7 * 4) * (8 * (5 + 4 * 5 + 8)))", "think": ["7 * 4 = 28", "5 + 4 = 9", "5 + 8 = 13", "9 * 13 = 117", "8 * 117 = 936", "28 * 936 = 26208"], "answer": 26208, "settings": "dp_ 2 -3 "}
{"id": 184, "question": "Simplify the following expression ((0 * 3) * (9 * (3 + 4 * 8 * 7))) where + has priority over *.", "expression": "((0 * 3) * (9 * (3 + 4 * 8 * 7)))", "think": ["0 * 3 = 0", "3 + 4 = 7", "7 * 8 = 56", "56 * 7 = 392", "9 * 392 = 3528", "0 * 3528 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 185, "question": "Simplify the following expression (((6 + 1 + 7) + 3) + (4 + 8)) where + has priority over *.", "expression": "(((6 + 1 + 7) + 3) + (4 + 8))", "think": ["6 + 1 = 7", "7 + 7 = 14", "14 + 3 = 17", "4 + 8 = 12", "17 + 12 = 29"], "answer": 29, "settings": "dp_ 2 -3 "}
{"id": 186, "question": "Simplify the following expression (((7 * 8 + 2 + 1) + 4) + (6 * 7)) where + has priority over *.", "expression": "(((7 * 8 + 2 + 1) + 4) + (6 * 7))", "think": ["8 + 2 = 10", "10 + 1 = 11", "7 * 11 = 77", "77 + 4 = 81", "6 * 7 = 42", "81 + 42 = 123"], "answer": 123, "settings": "dp_ 2 -3 "}
{"id": 187, "question": "Simplify the following expression ((5 * 8) * ((9 + 7 * 8) * 4)) where + has priority over *.", "expression": "((5 * 8) * ((9 + 7 * 8) * 4))", "think": ["5 * 8 = 40", "9 + 7 = 16", "16 * 8 = 128", "128 * 4 = 512", "40 * 512 = 20480"], "answer": 20480, "settings": "dp_ 2 -3 "}
{"id": 188, "question": "Simplify the following expression ((5 * (3 * 9 + 6)) * (7 * 5)) where + has priority over *.", "expression": "((5 * (3 * 9 + 6)) * (7 * 5))", "think": ["9 + 6 = 15", "3 * 15 = 45", "5 * 45 = 225", "7 * 5 = 35", "225 * 35 = 7875"], "answer": 7875, "settings": "dp_ 2 -3 "}
{"id": 189, "question": "Simplify the following expression (((8 + 9 * 5 + 8) * 6) + (2 * 7)) where + has priority over *.", "expression": "(((8 + 9 * 5 + 8) * 6) + (2 * 7))", "think": ["8 + 9 = 17", "5 + 8 = 13", "17 * 13 = 221", "221 * 6 = 1326", "2 * 7 = 14", "1326 + 14 = 1340"], "answer": 1340, "settings": "dp_ 2 -3 "}
{"id": 190, "question": "Simplify the following expression ((2 + 6) * ((9 + 6 * 8) + 7)) where + has priority over *.", "expression": "((2 + 6) * ((9 + 6 * 8) + 7))", "think": ["2 + 6 = 8", "9 + 6 = 15", "15 * 8 = 120", "120 + 7 = 127", "8 * 127 = 1016"], "answer": 1016, "settings": "dp_ 2 -3 "}
{"id": 191, "question": "Simplify the following expression ((7 * (4 + 3 * 1)) * (9 + 1)) where + has priority over *.", "expression": "((7 * (4 + 3 * 1)) * (9 + 1))", "think": ["4 + 3 = 7", "7 * 1 = 7", "7 * 7 = 49", "9 + 1 = 10", "49 * 10 = 490"], "answer": 490, "settings": "dp_ 2 -3 "}
{"id": 192, "question": "Simplify the following expression (((5 * 5 + 3) * 4) + (0 + 5)) where + has priority over *.", "expression": "(((5 * 5 + 3) * 4) + (0 + 5))", "think": ["5 + 3 = 8", "5 * 8 = 40", "40 * 4 = 160", "0 + 5 = 5", "160 + 5 = 165"], "answer": 165, "settings": "dp_ 2 -3 "}
{"id": 193, "question": "Simplify the following expression (((9 + 2 * 4) + 2) * (9 + 6)) where + has priority over *.", "expression": "(((9 + 2 * 4) + 2) * (9 + 6))", "think": ["9 + 2 = 11", "11 * 4 = 44", "44 + 2 = 46", "9 + 6 = 15", "46 * 15 = 690"], "answer": 690, "settings": "dp_ 2 -3 "}
{"id": 194, "question": "Simplify the following expression (((5 * 9 * 4) * 7) * (8 * 2)) where + has priority over *.", "expression": "(((5 * 9 * 4) * 7) * (8 * 2))", "think": ["5 * 9 = 45", "45 * 4 = 180", "180 * 7 = 1260", "8 * 2 = 16", "1260 * 16 = 20160"], "answer": 20160, "settings": "dp_ 2 -3 "}
{"id": 195, "question": "Simplify the following expression (((5 * 9 * 0) * 6) * (1 * 3)) where + has priority over *.", "expression": "(((5 * 9 * 0) * 6) * (1 * 3))", "think": ["5 * 9 = 45", "45 * 0 = 0", "0 * 6 = 0", "1 * 3 = 3", "0 * 3 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 196, "question": "Simplify the following expression ((0 * (9 + 5 * 3 + 1)) * (9 + 7)) where + has priority over *.", "expression": "((0 * (9 + 5 * 3 + 1)) * (9 + 7))", "think": ["9 + 5 = 14", "3 + 1 = 4", "14 * 4 = 56", "0 * 56 = 0", "9 + 7 = 16", "0 * 16 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 197, "question": "Simplify the following expression ((7 * 0) + ((6 + 2 + 8) * 1)) where + has priority over *.", "expression": "((7 * 0) + ((6 + 2 + 8) * 1))", "think": ["7 * 0 = 0", "6 + 2 = 8", "8 + 8 = 16", "16 * 1 = 16", "0 + 16 = 16"], "answer": 16, "settings": "dp_ 2 -3 "}
{"id": 198, "question": "Simplify the following expression (((1 + 2 * 8) * 4) * (4 * 5)) where + has priority over *.", "expression": "(((1 + 2 * 8) * 4) * (4 * 5))", "think": ["1 + 2 = 3", "3 * 8 = 24", "24 * 4 = 96", "4 * 5 = 20", "96 * 20 = 1920"], "answer": 1920, "settings": "dp_ 2 -3 "}
{"id": 199, "question": "Simplify the following expression ((6 + 0) * (8 * (4 * 9 * 1))) where + has priority over *.", "expression": "((6 + 0) * (8 * (4 * 9 * 1)))", "think": ["6 + 0 = 6", "4 * 9 = 36", "36 * 1 = 36", "8 * 36 = 288", "6 * 288 = 1728"], "answer": 1728, "settings": "dp_ 2 -3 "}
{"id": 200, "question": "Simplify the following expression (((7 * 4 + 2) * 9) + (9 * 3)) where + has priority over *.", "expression": "(((7 * 4 + 2) * 9) + (9 * 3))", "think": ["4 + 2 = 6", "7 * 6 = 42", "42 * 9 = 378", "9 * 3 = 27", "378 + 27 = 405"], "answer": 405, "settings": "dp_ 2 -3 "}
{"id": 201, "question": "Simplify the following expression ((4 + (7 * 5 + 6)) + (1 + 3)) where + has priority over *.", "expression": "((4 + (7 * 5 + 6)) + (1 + 3))", "think": ["5 + 6 = 11", "7 * 11 = 77", "4 + 77 = 81", "1 + 3 = 4", "81 + 4 = 85"], "answer": 85, "settings": "dp_ 2 -3 "}
{"id": 202, "question": "Simplify the following expression ((9 * (7 * 3 + 5)) + (0 * 5)) where + has priority over *.", "expression": "((9 * (7 * 3 + 5)) + (0 * 5))", "think": ["3 + 5 = 8", "7 * 8 = 56", "9 * 56 = 504", "0 * 5 = 0", "504 + 0 = 504"], "answer": 504, "settings": "dp_ 2 -3 "}
{"id": 203, "question": "Simplify the following expression (((3 + 9 + 5) + 4) * (1 + 7)) where + has priority over *.", "expression": "(((3 + 9 + 5) + 4) * (1 + 7))", "think": ["3 + 9 = 12", "12 + 5 = 17", "17 + 4 = 21", "1 + 7 = 8", "21 * 8 = 168"], "answer": 168, "settings": "dp_ 2 -3 "}
{"id": 204, "question": "Simplify the following expression ((9 + (5 + 2 * 9 + 2)) + (8 + 3)) where + has priority over *.", "expression": "((9 + (5 + 2 * 9 + 2)) + (8 + 3))", "think": ["5 + 2 = 7", "9 + 2 = 11", "7 * 11 = 77", "9 + 77 = 86", "8 + 3 = 11", "86 + 11 = 97"], "answer": 97, "settings": "dp_ 2 -3 "}
{"id": 205, "question": "Simplify the following expression ((1 + (5 + 0 * 0)) * (0 + 5)) where + has priority over *.", "expression": "((1 + (5 + 0 * 0)) * (0 + 5))", "think": ["5 + 0 = 5", "5 * 0 = 0", "1 + 0 = 1", "0 + 5 = 5", "1 * 5 = 5"], "answer": 5, "settings": "dp_ 2 -3 "}
{"id": 206, "question": "Simplify the following expression ((8 * 1) + ((9 * 1 + 9) + 7)) where + has priority over *.", "expression": "((8 * 1) + ((9 * 1 + 9) + 7))", "think": ["8 * 1 = 8", "1 + 9 = 10", "9 * 10 = 90", "90 + 7 = 97", "8 + 97 = 105"], "answer": 105, "settings": "dp_ 2 -3 "}
{"id": 207, "question": "Simplify the following expression ((7 * 0) + (7 + (1 * 7 + 1))) where + has priority over *.", "expression": "((7 * 0) + (7 + (1 * 7 + 1)))", "think": ["7 * 0 = 0", "7 + 1 = 8", "1 * 8 = 8", "7 + 8 = 15", "0 + 15 = 15"], "answer": 15, "settings": "dp_ 2 -3 "}
{"id": 208, "question": "Simplify the following expression ((1 + 2) * ((9 * 8 * 8) * 9)) where + has priority over *.", "expression": "((1 + 2) * ((9 * 8 * 8) * 9))", "think": ["1 + 2 = 3", "9 * 8 = 72", "72 * 8 = 576", "576 * 9 = 5184", "3 * 5184 = 15552"], "answer": 15552, "settings": "dp_ 2 -3 "}
{"id": 209, "question": "Simplify the following expression ((1 + (5 * 7 * 1)) * (6 + 7)) where + has priority over *.", "expression": "((1 + (5 * 7 * 1)) * (6 + 7))", "think": ["5 * 7 = 35", "35 * 1 = 35", "1 + 35 = 36", "6 + 7 = 13", "36 * 13 = 468"], "answer": 468, "settings": "dp_ 2 -3 "}
{"id": 210, "question": "Simplify the following expression (((1 + 1 * 6 + 8) * 4) * (2 * 7)) where + has priority over *.", "expression": "(((1 + 1 * 6 + 8) * 4) * (2 * 7))", "think": ["1 + 1 = 2", "6 + 8 = 14", "2 * 14 = 28", "28 * 4 = 112", "2 * 7 = 14", "112 * 14 = 1568"], "answer": 1568, "settings": "dp_ 2 -3 "}
{"id": 211, "question": "Simplify the following expression ((1 * (4 + 5 + 2)) + (6 * 0)) where + has priority over *.", "expression": "((1 * (4 + 5 + 2)) + (6 * 0))", "think": ["4 + 5 = 9", "9 + 2 = 11", "1 * 11 = 11", "6 * 0 = 0", "11 + 0 = 11"], "answer": 11, "settings": "dp_ 2 -3 "}
{"id": 212, "question": "Simplify the following expression ((1 + (8 + 9 * 0)) * (1 * 4)) where + has priority over *.", "expression": "((1 + (8 + 9 * 0)) * (1 * 4))", "think": ["8 + 9 = 17", "17 * 0 = 0", "1 + 0 = 1", "1 * 4 = 4", "1 * 4 = 4"], "answer": 4, "settings": "dp_ 2 -3 "}
{"id": 213, "question": "Simplify the following expression ((4 * (6 + 1 + 1)) + (0 * 2)) where + has priority over *.", "expression": "((4 * (6 + 1 + 1)) + (0 * 2))", "think": ["6 + 1 = 7", "7 + 1 = 8", "4 * 8 = 32", "0 * 2 = 0", "32 + 0 = 32"], "answer": 32, "settings": "dp_ 2 -3 "}
{"id": 214, "question": "Simplify the following expression ((6 * 7) + ((5 + 9 + 2) * 5)) where + has priority over *.", "expression": "((6 * 7) + ((5 + 9 + 2) * 5))", "think": ["6 * 7 = 42", "5 + 9 = 14", "14 + 2 = 16", "16 * 5 = 80", "42 + 80 = 122"], "answer": 122, "settings": "dp_ 2 -3 "}
{"id": 215, "question": "Simplify the following expression ((1 + 4) + (6 * (4 + 3 * 6))) where + has priority over *.", "expression": "((1 + 4) + (6 * (4 + 3 * 6)))", "think": ["1 + 4 = 5", "4 + 3 = 7", "7 * 6 = 42", "6 * 42 = 252", "5 + 252 = 257"], "answer": 257, "settings": "dp_ 2 -3 "}
{"id": 216, "question": "Simplify the following expression ((9 * 7) + (0 * (0 + 0 * 3))) where + has priority over *.", "expression": "((9 * 7) + (0 * (0 + 0 * 3)))", "think": ["9 * 7 = 63", "0 + 0 = 0", "0 * 3 = 0", "0 * 0 = 0", "63 + 0 = 63"], "answer": 63, "settings": "dp_ 2 -3 "}
{"id": 217, "question": "Simplify the following expression ((4 * 5) + (0 + (2 + 6 * 8 + 6))) where + has priority over *.", "expression": "((4 * 5) + (0 + (2 + 6 * 8 + 6)))", "think": ["4 * 5 = 20", "2 + 6 = 8", "8 + 6 = 14", "8 * 14 = 112", "0 + 112 = 112", "20 + 112 = 132"], "answer": 132, "settings": "dp_ 2 -3 "}
{"id": 218, "question": "Simplify the following expression ((0 * 7) + (5 + (6 * 6 + 6))) where + has priority over *.", "expression": "((0 * 7) + (5 + (6 * 6 + 6)))", "think": ["0 * 7 = 0", "6 + 6 = 12", "6 * 12 = 72", "5 + 72 = 77", "0 + 77 = 77"], "answer": 77, "settings": "dp_ 2 -3 "}
{"id": 219, "question": "Simplify the following expression ((2 * 9) + (5 * (3 * 6 + 9 * 4))) where + has priority over *.", "expression": "((2 * 9) + (5 * (3 * 6 + 9 * 4)))", "think": ["2 * 9 = 18", "6 + 9 = 15", "3 * 15 = 45", "45 * 4 = 180", "5 * 180 = 900", "18 + 900 = 918"], "answer": 918, "settings": "dp_ 2 -3 "}
{"id": 220, "question": "Simplify the following expression ((5 + (5 + 2 + 2)) * (8 + 1)) where + has priority over *.", "expression": "((5 + (5 + 2 + 2)) * (8 + 1))", "think": ["5 + 2 = 7", "7 + 2 = 9", "5 + 9 = 14", "8 + 1 = 9", "14 * 9 = 126"], "answer": 126, "settings": "dp_ 2 -3 "}
{"id": 221, "question": "Simplify the following expression (((9 * 9 * 5) + 9) * (1 + 2)) where + has priority over *.", "expression": "(((9 * 9 * 5) + 9) * (1 + 2))", "think": ["9 * 9 = 81", "81 * 5 = 405", "405 + 9 = 414", "1 + 2 = 3", "414 * 3 = 1242"], "answer": 1242, "settings": "dp_ 2 -3 "}
{"id": 222, "question": "Simplify the following expression (((8 * 1 * 7) * 7) + (4 * 4)) where + has priority over *.", "expression": "(((8 * 1 * 7) * 7) + (4 * 4))", "think": ["8 * 1 = 8", "8 * 7 = 56", "56 * 7 = 392", "4 * 4 = 16", "392 + 16 = 408"], "answer": 408, "settings": "dp_ 2 -3 "}
{"id": 223, "question": "Simplify the following expression ((5 + 4) + (1 + (9 + 8 * 9))) where + has priority over *.", "expression": "((5 + 4) + (1 + (9 + 8 * 9)))", "think": ["5 + 4 = 9", "9 + 8 = 17", "17 * 9 = 153", "1 + 153 = 154", "9 + 154 = 163"], "answer": 163, "settings": "dp_ 2 -3 "}
{"id": 224, "question": "Simplify the following expression (((1 + 8 + 3) * 7) + (0 + 7)) where + has priority over *.", "expression": "(((1 + 8 + 3) * 7) + (0 + 7))", "think": ["1 + 8 = 9", "9 + 3 = 12", "12 * 7 = 84", "0 + 7 = 7", "84 + 7 = 91"], "answer": 91, "settings": "dp_ 2 -3 "}
{"id": 225, "question": "Simplify the following expression ((8 * 8) * ((6 + 5 * 1) + 5)) where + has priority over *.", "expression": "((8 * 8) * ((6 + 5 * 1) + 5))", "think": ["8 * 8 = 64", "6 + 5 = 11", "11 * 1 = 11", "11 + 5 = 16", "64 * 16 = 1024"], "answer": 1024, "settings": "dp_ 2 -3 "}
{"id": 226, "question": "Simplify the following expression ((8 + (1 + 9 * 4)) * (4 * 9)) where + has priority over *.", "expression": "((8 + (1 + 9 * 4)) * (4 * 9))", "think": ["1 + 9 = 10", "10 * 4 = 40", "8 + 40 = 48", "4 * 9 = 36", "48 * 36 = 1728"], "answer": 1728, "settings": "dp_ 2 -3 "}
{"id": 227, "question": "Simplify the following expression ((9 + 1) * ((8 * 1 + 6 * 4) * 6)) where + has priority over *.", "expression": "((9 + 1) * ((8 * 1 + 6 * 4) * 6))", "think": ["9 + 1 = 10", "1 + 6 = 7", "8 * 7 = 56", "56 * 4 = 224", "224 * 6 = 1344", "10 * 1344 = 13440"], "answer": 13440, "settings": "dp_ 2 -3 "}
{"id": 228, "question": "Simplify the following expression ((5 + (4 + 1 * 8 + 9)) + (3 + 2)) where + has priority over *.", "expression": "((5 + (4 + 1 * 8 + 9)) + (3 + 2))", "think": ["4 + 1 = 5", "8 + 9 = 17", "5 * 17 = 85", "5 + 85 = 90", "3 + 2 = 5", "90 + 5 = 95"], "answer": 95, "settings": "dp_ 2 -3 "}
{"id": 229, "question": "Simplify the following expression ((2 + 2) * (7 + (3 * 7 * 3))) where + has priority over *.", "expression": "((2 + 2) * (7 + (3 * 7 * 3)))", "think": ["2 + 2 = 4", "3 * 7 = 21", "21 * 3 = 63", "7 + 63 = 70", "4 * 70 = 280"], "answer": 280, "settings": "dp_ 2 -3 "}
{"id": 230, "question": "Simplify the following expression (((6 * 8 + 3) * 3) + (9 * 7)) where + has priority over *.", "expression": "(((6 * 8 + 3) * 3) + (9 * 7))", "think": ["8 + 3 = 11", "6 * 11 = 66", "66 * 3 = 198", "9 * 7 = 63", "198 + 63 = 261"], "answer": 261, "settings": "dp_ 2 -3 "}
{"id": 231, "question": "Simplify the following expression (((1 * 2 * 8) * 7) + (8 * 1)) where + has priority over *.", "expression": "(((1 * 2 * 8) * 7) + (8 * 1))", "think": ["1 * 2 = 2", "2 * 8 = 16", "16 * 7 = 112", "8 * 1 = 8", "112 + 8 = 120"], "answer": 120, "settings": "dp_ 2 -3 "}
{"id": 232, "question": "Simplify the following expression ((1 * 3) + (5 * (6 + 8 * 5 + 5))) where + has priority over *.", "expression": "((1 * 3) + (5 * (6 + 8 * 5 + 5)))", "think": ["1 * 3 = 3", "6 + 8 = 14", "5 + 5 = 10", "14 * 10 = 140", "5 * 140 = 700", "3 + 700 = 703"], "answer": 703, "settings": "dp_ 2 -3 "}
{"id": 233, "question": "Simplify the following expression (((7 * 2 * 9) + 1) + (2 * 2)) where + has priority over *.", "expression": "(((7 * 2 * 9) + 1) + (2 * 2))", "think": ["7 * 2 = 14", "14 * 9 = 126", "126 + 1 = 127", "2 * 2 = 4", "127 + 4 = 131"], "answer": 131, "settings": "dp_ 2 -3 "}
{"id": 234, "question": "Simplify the following expression ((0 + 4) + (2 + (4 + 3 + 4 + 6))) where + has priority over *.", "expression": "((0 + 4) + (2 + (4 + 3 + 4 + 6)))", "think": ["0 + 4 = 4", "4 + 3 = 7", "7 + 4 = 11", "11 + 6 = 17", "2 + 17 = 19", "4 + 19 = 23"], "answer": 23, "settings": "dp_ 2 -3 "}
{"id": 235, "question": "Simplify the following expression ((1 + (2 * 4 + 9)) * (8 + 9)) where + has priority over *.", "expression": "((1 + (2 * 4 + 9)) * (8 + 9))", "think": ["4 + 9 = 13", "2 * 13 = 26", "1 + 26 = 27", "8 + 9 = 17", "27 * 17 = 459"], "answer": 459, "settings": "dp_ 2 -3 "}
{"id": 236, "question": "Simplify the following expression ((9 + 6) * ((8 + 8 * 8 * 0) + 8)) where + has priority over *.", "expression": "((9 + 6) * ((8 + 8 * 8 * 0) + 8))", "think": ["9 + 6 = 15", "8 + 8 = 16", "16 * 8 = 128", "128 * 0 = 0", "0 + 8 = 8", "15 * 8 = 120"], "answer": 120, "settings": "dp_ 2 -3 "}
{"id": 237, "question": "Simplify the following expression ((4 * (1 * 9 + 0)) * (1 * 5)) where + has priority over *.", "expression": "((4 * (1 * 9 + 0)) * (1 * 5))", "think": ["9 + 0 = 9", "1 * 9 = 9", "4 * 9 = 36", "1 * 5 = 5", "36 * 5 = 180"], "answer": 180, "settings": "dp_ 2 -3 "}
{"id": 238, "question": "Simplify the following expression (((7 * 0 + 0) * 7) * (2 * 2)) where + has priority over *.", "expression": "(((7 * 0 + 0) * 7) * (2 * 2))", "think": ["0 + 0 = 0", "7 * 0 = 0", "0 * 7 = 0", "2 * 2 = 4", "0 * 4 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 239, "question": "Simplify the following expression ((5 + 4) + ((3 + 4 * 5 * 1) * 7)) where + has priority over *.", "expression": "((5 + 4) + ((3 + 4 * 5 * 1) * 7))", "think": ["5 + 4 = 9", "3 + 4 = 7", "7 * 5 = 35", "35 * 1 = 35", "35 * 7 = 245", "9 + 245 = 254"], "answer": 254, "settings": "dp_ 2 -3 "}
{"id": 240, "question": "Simplify the following expression ((6 * 7) * (5 * (7 * 5 + 6))) where + has priority over *.", "expression": "((6 * 7) * (5 * (7 * 5 + 6)))", "think": ["6 * 7 = 42", "5 + 6 = 11", "7 * 11 = 77", "5 * 77 = 385", "42 * 385 = 16170"], "answer": 16170, "settings": "dp_ 2 -3 "}
{"id": 241, "question": "Simplify the following expression (((4 * 4 * 2) * 2) + (5 * 1)) where + has priority over *.", "expression": "(((4 * 4 * 2) * 2) + (5 * 1))", "think": ["4 * 4 = 16", "16 * 2 = 32", "32 * 2 = 64", "5 * 1 = 5", "64 + 5 = 69"], "answer": 69, "settings": "dp_ 2 -3 "}
{"id": 242, "question": "Simplify the following expression ((7 * 0) * ((0 * 1 * 8) * 6)) where + has priority over *.", "expression": "((7 * 0) * ((0 * 1 * 8) * 6))", "think": ["7 * 0 = 0", "0 * 1 = 0", "0 * 8 = 0", "0 * 6 = 0", "0 * 0 = 0"], "answer": 0, "settings": "dp_ 2 -3 "}
{"id": 243, "question": "Simplify the following expression (((5 + 5 + 6 * 5) + 9) + (0 * 2)) where + has priority over *.", "expression": "(((5 + 5 + 6 * 5) + 9) + (0 * 2))", "think": ["5 + 5 = 10", "10 + 6 = 16", "16 * 5 = 80", "80 + 9 = 89", "0 * 2 = 0", "89 + 0 = 89"], "answer": 89, "settings": "dp_ 2 -3 "}
{"id": 244, "question": "Simplify the following expression ((1 * 9) * (8 + (4 + 3 + 2))) where + has priority over *.", "expression": "((1 * 9) * (8 + (4 + 3 + 2)))", "think": ["1 * 9 = 9", "4 + 3 = 7", "7 + 2 = 9", "8 + 9 = 17", "9 * 17 = 153"], "answer": 153, "settings": "dp_ 2 -3 "}
{"id": 245, "question": "Simplify the following expression ((8 * (4 + 7 + 2)) * (4 * 7)) where + has priority over *.", "expression": "((8 * (4 + 7 + 2)) * (4 * 7))", "think": ["4 + 7 = 11", "11 + 2 = 13", "8 * 13 = 104", "4 * 7 = 28", "104 * 28 = 2912"], "answer": 2912, "settings": "dp_ 2 -3 "}
{"id": 246, "question": "Simplify the following expression (((8 * 4 + 2) * 7) + (5 + 5)) where + has priority over *.", "expression": "(((8 * 4 + 2) * 7) + (5 + 5))", "think": ["4 + 2 = 6", "8 * 6 = 48", "48 * 7 = 336", "5 + 5 = 10", "336 + 10 = 346"], "answer": 346, "settings": "dp_ 2 -3 "}
{"id": 247, "question": "Simplify the following expression (((8 * 9 * 8) + 3) * (3 + 7)) where + has priority over *.", "expression": "(((8 * 9 * 8) + 3) * (3 + 7))", "think": ["8 * 9 = 72", "72 * 8 = 576", "576 + 3 = 579", "3 + 7 = 10", "579 * 10 = 5790"], "answer": 5790, "settings": "dp_ 2 -3 "}
{"id": 248, "question": "Simplify the following expression ((1 + 4) + (7 * (9 + 1 * 1))) where + has priority over *.", "expression": "((1 + 4) + (7 * (9 + 1 * 1)))", "think": ["1 + 4 = 5", "9 + 1 = 10", "10 * 1 = 10", "7 * 10 = 70", "5 + 70 = 75"], "answer": 75, "settings": "dp_ 2 -3 "}
{"id": 249, "question": "Simplify the following expression ((8 * (6 + 8 + 0 * 2)) * (8 + 9)) where + has priority over *.", "expression": "((8 * (6 + 8 + 0 * 2)) * (8 + 9))", "think": ["6 + 8 = 14", "14 + 0 = 14", "14 * 2 = 28", "8 * 28 = 224", "8 + 9 = 17", "224 * 17 = 3808"], "answer": 3808, "settings": "dp_ 2 -3 "}
{"id": 250, "question": "Simplify the following expression ((3 * (8 + 4 * 9)) + (1 * 4)) where + has priority over *.", "expression": "((3 * (8 + 4 * 9)) + (1 * 4))", "think": ["8 + 4 = 12", "12 * 9 = 108", "3 * 108 = 324", "1 * 4 = 4", "324 + 4 = 328"], "answer": 328, "settings": "dp_ 2 -3 "}
{"id": 251, "question": "Simplify the following expression (((2 * (1 * 8 * 9)) * (1 * 1)) * ((5 + 5) * (0 * 7))) where + has priority over *.", "expression": "(((2 * (1 * 8 * 9)) * (1 * 1)) * ((5 + 5) * (0 * 7)))", "think": ["1 * 8 = 8", "8 * 9 = 72", "2 * 72 = 144", "1 * 1 = 1", "144 * 1 = 144", "5 + 5 = 10", "0 * 7 = 0", "10 * 0 = 0", "144 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 252, "question": "Simplify the following expression (((3 + 4) + (3 + (1 + 9 + 2))) + ((7 * 5) * (5 + 5))) where + has priority over *.", "expression": "(((3 + 4) + (3 + (1 + 9 + 2))) + ((7 * 5) * (5 + 5)))", "think": ["3 + 4 = 7", "1 + 9 = 10", "10 + 2 = 12", "3 + 12 = 15", "7 + 15 = 22", "7 * 5 = 35", "5 + 5 = 10", "35 * 10 = 350", "22 + 350 = 372"], "answer": 372, "settings": "dp_ 3 -2 "}
{"id": 253, "question": "Simplify the following expression (((8 * 3) * (0 * 3)) * ((6 * (7 + 6 * 7 + 3)) + (3 + 9))) where + has priority over *.", "expression": "(((8 * 3) * (0 * 3)) * ((6 * (7 + 6 * 7 + 3)) + (3 + 9)))", "think": ["8 * 3 = 24", "0 * 3 = 0", "24 * 0 = 0", "7 + 6 = 13", "7 + 3 = 10", "13 * 10 = 130", "6 * 130 = 780", "3 + 9 = 12", "780 + 12 = 792", "0 * 792 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 254, "question": "Simplify the following expression (((5 * (6 * 9 * 8)) * (8 + 7)) * ((1 + 2) + (6 + 9))) where + has priority over *.", "expression": "(((5 * (6 * 9 * 8)) * (8 + 7)) * ((1 + 2) + (6 + 9)))", "think": ["6 * 9 = 54", "54 * 8 = 432", "5 * 432 = 2160", "8 + 7 = 15", "2160 * 15 = 32400", "1 + 2 = 3", "6 + 9 = 15", "3 + 15 = 18", "32400 * 18 = 583200"], "answer": 583200, "settings": "dp_ 3 -2 "}
{"id": 255, "question": "Simplify the following expression (((5 * 1) + (6 * 2)) + (((2 + 5 * 2 * 0) + 8) * (8 + 1))) where + has priority over *.", "expression": "(((5 * 1) + (6 * 2)) + (((2 + 5 * 2 * 0) + 8) * (8 + 1)))", "think": ["5 * 1 = 5", "6 * 2 = 12", "5 + 12 = 17", "2 + 5 = 7", "7 * 2 = 14", "14 * 0 = 0", "0 + 8 = 8", "8 + 1 = 9", "8 * 9 = 72", "17 + 72 = 89"], "answer": 89, "settings": "dp_ 3 -2 "}
{"id": 256, "question": "Simplify the following expression (((3 * 0) * ((8 * 9 + 8) + 1)) + ((1 * 8) + (2 + 7))) where + has priority over *.", "expression": "(((3 * 0) * ((8 * 9 + 8) + 1)) + ((1 * 8) + (2 + 7)))", "think": ["3 * 0 = 0", "9 + 8 = 17", "8 * 17 = 136", "136 + 1 = 137", "0 * 137 = 0", "1 * 8 = 8", "2 + 7 = 9", "8 + 9 = 17", "0 + 17 = 17"], "answer": 17, "settings": "dp_ 3 -2 "}
{"id": 257, "question": "Simplify the following expression ((((0 + 3 * 1 + 8) * 7) * (1 * 3)) + ((5 + 0) + (9 + 3))) where + has priority over *.", "expression": "((((0 + 3 * 1 + 8) * 7) * (1 * 3)) + ((5 + 0) + (9 + 3)))", "think": ["0 + 3 = 3", "1 + 8 = 9", "3 * 9 = 27", "27 * 7 = 189", "1 * 3 = 3", "189 * 3 = 567", "5 + 0 = 5", "9 + 3 = 12", "5 + 12 = 17", "567 + 17 = 584"], "answer": 584, "settings": "dp_ 3 -2 "}
{"id": 258, "question": "Simplify the following expression (((3 * 8) * (9 + 9)) + ((7 + 6) * ((6 * 6 + 1) + 1))) where + has priority over *.", "expression": "(((3 * 8) * (9 + 9)) + ((7 + 6) * ((6 * 6 + 1) + 1)))", "think": ["3 * 8 = 24", "9 + 9 = 18", "24 * 18 = 432", "7 + 6 = 13", "6 + 1 = 7", "6 * 7 = 42", "42 + 1 = 43", "13 * 43 = 559", "432 + 559 = 991"], "answer": 991, "settings": "dp_ 3 -2 "}
{"id": 259, "question": "Simplify the following expression (((1 * (8 + 1 + 1)) * (3 + 8)) + ((6 + 2) * (7 * 3))) where + has priority over *.", "expression": "(((1 * (8 + 1 + 1)) * (3 + 8)) + ((6 + 2) * (7 * 3)))", "think": ["8 + 1 = 9", "9 + 1 = 10", "1 * 10 = 10", "3 + 8 = 11", "10 * 11 = 110", "6 + 2 = 8", "7 * 3 = 21", "8 * 21 = 168", "110 + 168 = 278"], "answer": 278, "settings": "dp_ 3 -2 "}
{"id": 260, "question": "Simplify the following expression ((((2 * 3 + 0) * 7) + (6 + 0)) + ((0 * 6) + (7 * 4))) where + has priority over *.", "expression": "((((2 * 3 + 0) * 7) + (6 + 0)) + ((0 * 6) + (7 * 4)))", "think": ["3 + 0 = 3", "2 * 3 = 6", "6 * 7 = 42", "6 + 0 = 6", "42 + 6 = 48", "0 * 6 = 0", "7 * 4 = 28", "0 + 28 = 28", "48 + 28 = 76"], "answer": 76, "settings": "dp_ 3 -2 "}
{"id": 261, "question": "Simplify the following expression (((0 + (6 + 1 + 9 + 6)) * (8 * 8)) + ((8 + 1) + (1 + 9))) where + has priority over *.", "expression": "(((0 + (6 + 1 + 9 + 6)) * (8 * 8)) + ((8 + 1) + (1 + 9)))", "think": ["6 + 1 = 7", "7 + 9 = 16", "16 + 6 = 22", "0 + 22 = 22", "8 * 8 = 64", "22 * 64 = 1408", "8 + 1 = 9", "1 + 9 = 10", "9 + 10 = 19", "1408 + 19 = 1427"], "answer": 1427, "settings": "dp_ 3 -2 "}
{"id": 262, "question": "Simplify the following expression (((5 + (8 * 3 + 8 * 1)) * (6 * 2)) * ((5 * 1) * (7 + 9))) where + has priority over *.", "expression": "(((5 + (8 * 3 + 8 * 1)) * (6 * 2)) * ((5 * 1) * (7 + 9)))", "think": ["3 + 8 = 11", "8 * 11 = 88", "88 * 1 = 88", "5 + 88 = 93", "6 * 2 = 12", "93 * 12 = 1116", "5 * 1 = 5", "7 + 9 = 16", "5 * 16 = 80", "1116 * 80 = 89280"], "answer": 89280, "settings": "dp_ 3 -2 "}
{"id": 263, "question": "Simplify the following expression (((2 * 7) * ((4 + 9 * 3) * 8)) + ((1 * 2) + (1 * 1))) where + has priority over *.", "expression": "(((2 * 7) * ((4 + 9 * 3) * 8)) + ((1 * 2) + (1 * 1)))", "think": ["2 * 7 = 14", "4 + 9 = 13", "13 * 3 = 39", "39 * 8 = 312", "14 * 312 = 4368", "1 * 2 = 2", "1 * 1 = 1", "2 + 1 = 3", "4368 + 3 = 4371"], "answer": 4371, "settings": "dp_ 3 -2 "}
{"id": 264, "question": "Simplify the following expression (((0 * 1) * (4 * 0)) * ((2 * 4) + ((1 + 1 * 2 + 6) + 8))) where + has priority over *.", "expression": "(((0 * 1) * (4 * 0)) * ((2 * 4) + ((1 + 1 * 2 + 6) + 8)))", "think": ["0 * 1 = 0", "4 * 0 = 0", "0 * 0 = 0", "2 * 4 = 8", "1 + 1 = 2", "2 + 6 = 8", "2 * 8 = 16", "16 + 8 = 24", "8 + 24 = 32", "0 * 32 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 265, "question": "Simplify the following expression (((5 * 0) + ((0 * 2 * 3) * 3)) + ((8 * 6) + (3 + 2))) where + has priority over *.", "expression": "(((5 * 0) + ((0 * 2 * 3) * 3)) + ((8 * 6) + (3 + 2)))", "think": ["5 * 0 = 0", "0 * 2 = 0", "0 * 3 = 0", "0 * 3 = 0", "0 + 0 = 0", "8 * 6 = 48", "3 + 2 = 5", "48 + 5 = 53", "0 + 53 = 53"], "answer": 53, "settings": "dp_ 3 -2 "}
{"id": 266, "question": "Simplify the following expression (((6 + (4 * 1 * 8)) + (3 * 3)) * ((4 * 3) * (0 + 3))) where + has priority over *.", "expression": "(((6 + (4 * 1 * 8)) + (3 * 3)) * ((4 * 3) * (0 + 3)))", "think": ["4 * 1 = 4", "4 * 8 = 32", "6 + 32 = 38", "3 * 3 = 9", "38 + 9 = 47", "4 * 3 = 12", "0 + 3 = 3", "12 * 3 = 36", "47 * 36 = 1692"], "answer": 1692, "settings": "dp_ 3 -2 "}
{"id": 267, "question": "Simplify the following expression (((1 + (9 * 3 + 6)) * (9 + 4)) * ((9 + 6) + (5 * 6))) where + has priority over *.", "expression": "(((1 + (9 * 3 + 6)) * (9 + 4)) * ((9 + 6) + (5 * 6)))", "think": ["3 + 6 = 9", "9 * 9 = 81", "1 + 81 = 82", "9 + 4 = 13", "82 * 13 = 1066", "9 + 6 = 15", "5 * 6 = 30", "15 + 30 = 45", "1066 * 45 = 47970"], "answer": 47970, "settings": "dp_ 3 -2 "}
{"id": 268, "question": "Simplify the following expression (((6 * 1) + (9 * 5)) + (((3 + 6 * 6 * 8) * 4) + (5 * 6))) where + has priority over *.", "expression": "(((6 * 1) + (9 * 5)) + (((3 + 6 * 6 * 8) * 4) + (5 * 6)))", "think": ["6 * 1 = 6", "9 * 5 = 45", "6 + 45 = 51", "3 + 6 = 9", "9 * 6 = 54", "54 * 8 = 432", "432 * 4 = 1728", "5 * 6 = 30", "1728 + 30 = 1758", "51 + 1758 = 1809"], "answer": 1809, "settings": "dp_ 3 -2 "}
{"id": 269, "question": "Simplify the following expression (((3 * 6) * ((3 + 4 + 3 + 0) * 7)) + ((8 + 7) * (1 + 4))) where + has priority over *.", "expression": "(((3 * 6) * ((3 + 4 + 3 + 0) * 7)) + ((8 + 7) * (1 + 4)))", "think": ["3 * 6 = 18", "3 + 4 = 7", "7 + 3 = 10", "10 + 0 = 10", "10 * 7 = 70", "18 * 70 = 1260", "8 + 7 = 15", "1 + 4 = 5", "15 * 5 = 75", "1260 + 75 = 1335"], "answer": 1335, "settings": "dp_ 3 -2 "}
{"id": 270, "question": "Simplify the following expression (((7 + (0 + 8 + 7)) * (6 + 7)) + ((2 + 0) * (6 + 3))) where + has priority over *.", "expression": "(((7 + (0 + 8 + 7)) * (6 + 7)) + ((2 + 0) * (6 + 3)))", "think": ["0 + 8 = 8", "8 + 7 = 15", "7 + 15 = 22", "6 + 7 = 13", "22 * 13 = 286", "2 + 0 = 2", "6 + 3 = 9", "2 * 9 = 18", "286 + 18 = 304"], "answer": 304, "settings": "dp_ 3 -2 "}
{"id": 271, "question": "Simplify the following expression (((7 * 9) * ((4 * 7 + 1 * 5) * 7)) + ((7 * 4) + (4 + 8))) where + has priority over *.", "expression": "(((7 * 9) * ((4 * 7 + 1 * 5) * 7)) + ((7 * 4) + (4 + 8)))", "think": ["7 * 9 = 63", "7 + 1 = 8", "4 * 8 = 32", "32 * 5 = 160", "160 * 7 = 1120", "63 * 1120 = 70560", "7 * 4 = 28", "4 + 8 = 12", "28 + 12 = 40", "70560 + 40 = 70600"], "answer": 70600, "settings": "dp_ 3 -2 "}
{"id": 272, "question": "Simplify the following expression (((2 + (6 + 9 * 7)) + (2 * 3)) * ((6 * 5) + (6 * 0))) where + has priority over *.", "expression": "(((2 + (6 + 9 * 7)) + (2 * 3)) * ((6 * 5) + (6 * 0)))", "think": ["6 + 9 = 15", "15 * 7 = 105", "2 + 105 = 107", "2 * 3 = 6", "107 + 6 = 113", "6 * 5 = 30", "6 * 0 = 0", "30 + 0 = 30", "113 * 30 = 3390"], "answer": 3390, "settings": "dp_ 3 -2 "}
{"id": 273, "question": "Simplify the following expression (((6 * 6) * ((2 + 9 * 9) + 3)) + ((7 * 0) * (5 * 6))) where + has priority over *.", "expression": "(((6 * 6) * ((2 + 9 * 9) + 3)) + ((7 * 0) * (5 * 6)))", "think": ["6 * 6 = 36", "2 + 9 = 11", "11 * 9 = 99", "99 + 3 = 102", "36 * 102 = 3672", "7 * 0 = 0", "5 * 6 = 30", "0 * 30 = 0", "3672 + 0 = 3672"], "answer": 3672, "settings": "dp_ 3 -2 "}
{"id": 274, "question": "Simplify the following expression (((2 * 7) + (0 + 4)) + (((4 * 1 + 8) * 7) * (5 * 6))) where + has priority over *.", "expression": "(((2 * 7) + (0 + 4)) + (((4 * 1 + 8) * 7) * (5 * 6)))", "think": ["2 * 7 = 14", "0 + 4 = 4", "14 + 4 = 18", "1 + 8 = 9", "4 * 9 = 36", "36 * 7 = 252", "5 * 6 = 30", "252 * 30 = 7560", "18 + 7560 = 7578"], "answer": 7578, "settings": "dp_ 3 -2 "}
{"id": 275, "question": "Simplify the following expression (((1 + 0) * ((4 + 5 + 2) + 3)) + ((3 + 2) + (1 * 9))) where + has priority over *.", "expression": "(((1 + 0) * ((4 + 5 + 2) + 3)) + ((3 + 2) + (1 * 9)))", "think": ["1 + 0 = 1", "4 + 5 = 9", "9 + 2 = 11", "11 + 3 = 14", "1 * 14 = 14", "3 + 2 = 5", "1 * 9 = 9", "5 + 9 = 14", "14 + 14 = 28"], "answer": 28, "settings": "dp_ 3 -2 "}
{"id": 276, "question": "Simplify the following expression ((((5 * 1 + 6) + 9) + (6 * 3)) * ((1 + 4) + (9 + 0))) where + has priority over *.", "expression": "((((5 * 1 + 6) + 9) + (6 * 3)) * ((1 + 4) + (9 + 0)))", "think": ["1 + 6 = 7", "5 * 7 = 35", "35 + 9 = 44", "6 * 3 = 18", "44 + 18 = 62", "1 + 4 = 5", "9 + 0 = 9", "5 + 9 = 14", "62 * 14 = 868"], "answer": 868, "settings": "dp_ 3 -2 "}
{"id": 277, "question": "Simplify the following expression (((5 * (7 * 3 * 5)) + (6 + 2)) * ((7 * 6) * (5 * 3))) where + has priority over *.", "expression": "(((5 * (7 * 3 * 5)) + (6 + 2)) * ((7 * 6) * (5 * 3)))", "think": ["7 * 3 = 21", "21 * 5 = 105", "5 * 105 = 525", "6 + 2 = 8", "525 + 8 = 533", "7 * 6 = 42", "5 * 3 = 15", "42 * 15 = 630", "533 * 630 = 335790"], "answer": 335790, "settings": "dp_ 3 -2 "}
{"id": 278, "question": "Simplify the following expression (((2 * (6 + 7 * 8 * 7)) * (5 + 4)) + ((9 * 4) * (8 + 3))) where + has priority over *.", "expression": "(((2 * (6 + 7 * 8 * 7)) * (5 + 4)) + ((9 * 4) * (8 + 3)))", "think": ["6 + 7 = 13", "13 * 8 = 104", "104 * 7 = 728", "2 * 728 = 1456", "5 + 4 = 9", "1456 * 9 = 13104", "9 * 4 = 36", "8 + 3 = 11", "36 * 11 = 396", "13104 + 396 = 13500"], "answer": 13500, "settings": "dp_ 3 -2 "}
{"id": 279, "question": "Simplify the following expression (((3 * 6) + (4 + 9)) + (((7 * 4 * 3) * 8) * (6 * 8))) where + has priority over *.", "expression": "(((3 * 6) + (4 + 9)) + (((7 * 4 * 3) * 8) * (6 * 8)))", "think": ["3 * 6 = 18", "4 + 9 = 13", "18 + 13 = 31", "7 * 4 = 28", "28 * 3 = 84", "84 * 8 = 672", "6 * 8 = 48", "672 * 48 = 32256", "31 + 32256 = 32287"], "answer": 32287, "settings": "dp_ 3 -2 "}
{"id": 280, "question": "Simplify the following expression (((1 * 8) + (3 + 3)) + (((5 + 2 + 4 * 0) * 8) * (1 * 3))) where + has priority over *.", "expression": "(((1 * 8) + (3 + 3)) + (((5 + 2 + 4 * 0) * 8) * (1 * 3)))", "think": ["1 * 8 = 8", "3 + 3 = 6", "8 + 6 = 14", "5 + 2 = 7", "7 + 4 = 11", "11 * 0 = 0", "0 * 8 = 0", "1 * 3 = 3", "0 * 3 = 0", "14 + 0 = 14"], "answer": 14, "settings": "dp_ 3 -2 "}
{"id": 281, "question": "Simplify the following expression (((7 + 1) * (9 + (1 + 6 + 7 + 2))) + ((7 * 5) * (0 + 4))) where + has priority over *.", "expression": "(((7 + 1) * (9 + (1 + 6 + 7 + 2))) + ((7 * 5) * (0 + 4)))", "think": ["7 + 1 = 8", "1 + 6 = 7", "7 + 7 = 14", "14 + 2 = 16", "9 + 16 = 25", "8 * 25 = 200", "7 * 5 = 35", "0 + 4 = 4", "35 * 4 = 140", "200 + 140 = 340"], "answer": 340, "settings": "dp_ 3 -2 "}
{"id": 282, "question": "Simplify the following expression (((1 + 8) + (9 * 9)) * (((9 + 1 * 3 + 2) * 7) + (9 * 6))) where + has priority over *.", "expression": "(((1 + 8) + (9 * 9)) * (((9 + 1 * 3 + 2) * 7) + (9 * 6)))", "think": ["1 + 8 = 9", "9 * 9 = 81", "9 + 81 = 90", "9 + 1 = 10", "3 + 2 = 5", "10 * 5 = 50", "50 * 7 = 350", "9 * 6 = 54", "350 + 54 = 404", "90 * 404 = 36360"], "answer": 36360, "settings": "dp_ 3 -2 "}
{"id": 283, "question": "Simplify the following expression (((2 + (4 * 9 + 3 + 2)) + (7 * 9)) + ((0 * 3) * (4 * 7))) where + has priority over *.", "expression": "(((2 + (4 * 9 + 3 + 2)) + (7 * 9)) + ((0 * 3) * (4 * 7)))", "think": ["9 + 3 = 12", "12 + 2 = 14", "4 * 14 = 56", "2 + 56 = 58", "7 * 9 = 63", "58 + 63 = 121", "0 * 3 = 0", "4 * 7 = 28", "0 * 28 = 0", "121 + 0 = 121"], "answer": 121, "settings": "dp_ 3 -2 "}
{"id": 284, "question": "Simplify the following expression (((0 + 2) + (9 * 9)) * ((1 * 7) * (6 * (1 + 9 * 5)))) where + has priority over *.", "expression": "(((0 + 2) + (9 * 9)) * ((1 * 7) * (6 * (1 + 9 * 5))))", "think": ["0 + 2 = 2", "9 * 9 = 81", "2 + 81 = 83", "1 * 7 = 7", "1 + 9 = 10", "10 * 5 = 50", "6 * 50 = 300", "7 * 300 = 2100", "83 * 2100 = 174300"], "answer": 174300, "settings": "dp_ 3 -2 "}
{"id": 285, "question": "Simplify the following expression (((3 + 9) + ((1 * 7 * 5) + 9)) * ((7 + 8) + (4 * 2))) where + has priority over *.", "expression": "(((3 + 9) + ((1 * 7 * 5) + 9)) * ((7 + 8) + (4 * 2)))", "think": ["3 + 9 = 12", "1 * 7 = 7", "7 * 5 = 35", "35 + 9 = 44", "12 + 44 = 56", "7 + 8 = 15", "4 * 2 = 8", "15 + 8 = 23", "56 * 23 = 1288"], "answer": 1288, "settings": "dp_ 3 -2 "}
{"id": 286, "question": "Simplify the following expression ((((8 + 7 + 6 * 9) + 6) + (4 * 6)) * ((1 * 5) + (5 * 1))) where + has priority over *.", "expression": "((((8 + 7 + 6 * 9) + 6) + (4 * 6)) * ((1 * 5) + (5 * 1)))", "think": ["8 + 7 = 15", "15 + 6 = 21", "21 * 9 = 189", "189 + 6 = 195", "4 * 6 = 24", "195 + 24 = 219", "1 * 5 = 5", "5 * 1 = 5", "5 + 5 = 10", "219 * 10 = 2190"], "answer": 2190, "settings": "dp_ 3 -2 "}
{"id": 287, "question": "Simplify the following expression ((((1 + 3 * 1) + 4) * (4 + 7)) * ((0 + 9) * (2 + 4))) where + has priority over *.", "expression": "((((1 + 3 * 1) + 4) * (4 + 7)) * ((0 + 9) * (2 + 4)))", "think": ["1 + 3 = 4", "4 * 1 = 4", "4 + 4 = 8", "4 + 7 = 11", "8 * 11 = 88", "0 + 9 = 9", "2 + 4 = 6", "9 * 6 = 54", "88 * 54 = 4752"], "answer": 4752, "settings": "dp_ 3 -2 "}
{"id": 288, "question": "Simplify the following expression (((8 * 4) * ((4 * 6 + 5 * 4) * 7)) + ((8 * 2) + (3 * 9))) where + has priority over *.", "expression": "(((8 * 4) * ((4 * 6 + 5 * 4) * 7)) + ((8 * 2) + (3 * 9)))", "think": ["8 * 4 = 32", "6 + 5 = 11", "4 * 11 = 44", "44 * 4 = 176", "176 * 7 = 1232", "32 * 1232 = 39424", "8 * 2 = 16", "3 * 9 = 27", "16 + 27 = 43", "39424 + 43 = 39467"], "answer": 39467, "settings": "dp_ 3 -2 "}
{"id": 289, "question": "Simplify the following expression ((((0 * 5 * 6) * 7) + (5 * 8)) * ((5 * 3) * (9 + 6))) where + has priority over *.", "expression": "((((0 * 5 * 6) * 7) + (5 * 8)) * ((5 * 3) * (9 + 6)))", "think": ["0 * 5 = 0", "0 * 6 = 0", "0 * 7 = 0", "5 * 8 = 40", "0 + 40 = 40", "5 * 3 = 15", "9 + 6 = 15", "15 * 15 = 225", "40 * 225 = 9000"], "answer": 9000, "settings": "dp_ 3 -2 "}
{"id": 290, "question": "Simplify the following expression (((2 + 8) * ((5 * 9 + 5) * 7)) + ((0 * 2) + (2 * 1))) where + has priority over *.", "expression": "(((2 + 8) * ((5 * 9 + 5) * 7)) + ((0 * 2) + (2 * 1)))", "think": ["2 + 8 = 10", "9 + 5 = 14", "5 * 14 = 70", "70 * 7 = 490", "10 * 490 = 4900", "0 * 2 = 0", "2 * 1 = 2", "0 + 2 = 2", "4900 + 2 = 4902"], "answer": 4902, "settings": "dp_ 3 -2 "}
{"id": 291, "question": "Simplify the following expression (((8 * 0) * (3 + 4)) * (((0 * 5 * 0 * 6) + 1) + (7 + 2))) where + has priority over *.", "expression": "(((8 * 0) * (3 + 4)) * (((0 * 5 * 0 * 6) + 1) + (7 + 2)))", "think": ["8 * 0 = 0", "3 + 4 = 7", "0 * 7 = 0", "0 * 5 = 0", "0 * 0 = 0", "0 * 6 = 0", "0 + 1 = 1", "7 + 2 = 9", "1 + 9 = 10", "0 * 10 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 292, "question": "Simplify the following expression (((9 * 2) + (2 + 1)) + (((4 * 0 * 8) + 9) * (3 + 7))) where + has priority over *.", "expression": "(((9 * 2) + (2 + 1)) + (((4 * 0 * 8) + 9) * (3 + 7)))", "think": ["9 * 2 = 18", "2 + 1 = 3", "18 + 3 = 21", "4 * 0 = 0", "0 * 8 = 0", "0 + 9 = 9", "3 + 7 = 10", "9 * 10 = 90", "21 + 90 = 111"], "answer": 111, "settings": "dp_ 3 -2 "}
{"id": 293, "question": "Simplify the following expression (((5 * 9) + (6 * 4)) + ((3 * 6) * ((9 * 4 + 6) * 3))) where + has priority over *.", "expression": "(((5 * 9) + (6 * 4)) + ((3 * 6) * ((9 * 4 + 6) * 3)))", "think": ["5 * 9 = 45", "6 * 4 = 24", "45 + 24 = 69", "3 * 6 = 18", "4 + 6 = 10", "9 * 10 = 90", "90 * 3 = 270", "18 * 270 = 4860", "69 + 4860 = 4929"], "answer": 4929, "settings": "dp_ 3 -2 "}
{"id": 294, "question": "Simplify the following expression ((((7 * 0 + 1) + 7) + (3 * 9)) * ((3 + 9) * (2 * 1))) where + has priority over *.", "expression": "((((7 * 0 + 1) + 7) + (3 * 9)) * ((3 + 9) * (2 * 1)))", "think": ["0 + 1 = 1", "7 * 1 = 7", "7 + 7 = 14", "3 * 9 = 27", "14 + 27 = 41", "3 + 9 = 12", "2 * 1 = 2", "12 * 2 = 24", "41 * 24 = 984"], "answer": 984, "settings": "dp_ 3 -2 "}
{"id": 295, "question": "Simplify the following expression (((2 * 3) * (8 + 5)) * ((4 + 7) * (5 * (2 * 3 + 6 * 0)))) where + has priority over *.", "expression": "(((2 * 3) * (8 + 5)) * ((4 + 7) * (5 * (2 * 3 + 6 * 0))))", "think": ["2 * 3 = 6", "8 + 5 = 13", "6 * 13 = 78", "4 + 7 = 11", "3 + 6 = 9", "2 * 9 = 18", "18 * 0 = 0", "5 * 0 = 0", "11 * 0 = 0", "78 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 296, "question": "Simplify the following expression (((5 * (4 + 6 + 0)) + (5 * 1)) * ((0 * 9) + (9 * 3))) where + has priority over *.", "expression": "(((5 * (4 + 6 + 0)) + (5 * 1)) * ((0 * 9) + (9 * 3)))", "think": ["4 + 6 = 10", "10 + 0 = 10", "5 * 10 = 50", "5 * 1 = 5", "50 + 5 = 55", "0 * 9 = 0", "9 * 3 = 27", "0 + 27 = 27", "55 * 27 = 1485"], "answer": 1485, "settings": "dp_ 3 -2 "}
{"id": 297, "question": "Simplify the following expression (((1 * 1) * (8 + 2)) + ((5 * 8) * ((7 * 9 + 6 * 3) * 2))) where + has priority over *.", "expression": "(((1 * 1) * (8 + 2)) + ((5 * 8) * ((7 * 9 + 6 * 3) * 2)))", "think": ["1 * 1 = 1", "8 + 2 = 10", "1 * 10 = 10", "5 * 8 = 40", "9 + 6 = 15", "7 * 15 = 105", "105 * 3 = 315", "315 * 2 = 630", "40 * 630 = 25200", "10 + 25200 = 25210"], "answer": 25210, "settings": "dp_ 3 -2 "}
{"id": 298, "question": "Simplify the following expression ((((0 + 5 + 3 + 8) + 1) * (8 * 5)) * ((4 * 3) + (7 + 1))) where + has priority over *.", "expression": "((((0 + 5 + 3 + 8) + 1) * (8 * 5)) * ((4 * 3) + (7 + 1)))", "think": ["0 + 5 = 5", "5 + 3 = 8", "8 + 8 = 16", "16 + 1 = 17", "8 * 5 = 40", "17 * 40 = 680", "4 * 3 = 12", "7 + 1 = 8", "12 + 8 = 20", "680 * 20 = 13600"], "answer": 13600, "settings": "dp_ 3 -2 "}
{"id": 299, "question": "Simplify the following expression (((5 + 2) + (4 + 2)) + ((2 * (9 + 5 * 0 + 2)) + (2 + 0))) where + has priority over *.", "expression": "(((5 + 2) + (4 + 2)) + ((2 * (9 + 5 * 0 + 2)) + (2 + 0)))", "think": ["5 + 2 = 7", "4 + 2 = 6", "7 + 6 = 13", "9 + 5 = 14", "0 + 2 = 2", "14 * 2 = 28", "2 * 28 = 56", "2 + 0 = 2", "56 + 2 = 58", "13 + 58 = 71"], "answer": 71, "settings": "dp_ 3 -2 "}
{"id": 300, "question": "Simplify the following expression (((7 + 7) + (8 * 9)) * ((8 * 3) + (8 + (0 * 7 + 6 * 7)))) where + has priority over *.", "expression": "(((7 + 7) + (8 * 9)) * ((8 * 3) + (8 + (0 * 7 + 6 * 7))))", "think": ["7 + 7 = 14", "8 * 9 = 72", "14 + 72 = 86", "8 * 3 = 24", "7 + 6 = 13", "0 * 13 = 0", "0 * 7 = 0", "8 + 0 = 8", "24 + 8 = 32", "86 * 32 = 2752"], "answer": 2752, "settings": "dp_ 3 -2 "}
{"id": 301, "question": "Simplify the following expression (((9 * 2) + (2 + 4)) + ((9 * 8) * ((1 * 8 * 3 + 6) * 8))) where + has priority over *.", "expression": "(((9 * 2) + (2 + 4)) + ((9 * 8) * ((1 * 8 * 3 + 6) * 8)))", "think": ["9 * 2 = 18", "2 + 4 = 6", "18 + 6 = 24", "9 * 8 = 72", "1 * 8 = 8", "3 + 6 = 9", "8 * 9 = 72", "72 * 8 = 576", "72 * 576 = 41472", "24 + 41472 = 41496"], "answer": 41496, "settings": "dp_ 3 -2 "}
{"id": 302, "question": "Simplify the following expression (((6 * (1 + 5 + 9)) * (6 * 5)) * ((2 * 7) * (1 + 1))) where + has priority over *.", "expression": "(((6 * (1 + 5 + 9)) * (6 * 5)) * ((2 * 7) * (1 + 1)))", "think": ["1 + 5 = 6", "6 + 9 = 15", "6 * 15 = 90", "6 * 5 = 30", "90 * 30 = 2700", "2 * 7 = 14", "1 + 1 = 2", "14 * 2 = 28", "2700 * 28 = 75600"], "answer": 75600, "settings": "dp_ 3 -2 "}
{"id": 303, "question": "Simplify the following expression (((5 * 6) + (4 + (5 + 8 * 5 + 6))) * ((1 * 9) * (2 + 7))) where + has priority over *.", "expression": "(((5 * 6) + (4 + (5 + 8 * 5 + 6))) * ((1 * 9) * (2 + 7)))", "think": ["5 * 6 = 30", "5 + 8 = 13", "5 + 6 = 11", "13 * 11 = 143", "4 + 143 = 147", "30 + 147 = 177", "1 * 9 = 9", "2 + 7 = 9", "9 * 9 = 81", "177 * 81 = 14337"], "answer": 14337, "settings": "dp_ 3 -2 "}
{"id": 304, "question": "Simplify the following expression ((((8 * 3 * 6 * 2) + 4) * (5 * 5)) + ((2 + 9) + (1 * 2))) where + has priority over *.", "expression": "((((8 * 3 * 6 * 2) + 4) * (5 * 5)) + ((2 + 9) + (1 * 2)))", "think": ["8 * 3 = 24", "24 * 6 = 144", "144 * 2 = 288", "288 + 4 = 292", "5 * 5 = 25", "292 * 25 = 7300", "2 + 9 = 11", "1 * 2 = 2", "11 + 2 = 13", "7300 + 13 = 7313"], "answer": 7313, "settings": "dp_ 3 -2 "}
{"id": 305, "question": "Simplify the following expression (((9 * 9) * (0 + 2)) * ((1 + 4) + (6 * (4 + 3 * 6)))) where + has priority over *.", "expression": "(((9 * 9) * (0 + 2)) * ((1 + 4) + (6 * (4 + 3 * 6))))", "think": ["9 * 9 = 81", "0 + 2 = 2", "81 * 2 = 162", "1 + 4 = 5", "4 + 3 = 7", "7 * 6 = 42", "6 * 42 = 252", "5 + 252 = 257", "162 * 257 = 41634"], "answer": 41634, "settings": "dp_ 3 -2 "}
{"id": 306, "question": "Simplify the following expression (((8 * 4) * ((1 * 0 * 2) + 6)) + ((3 + 4) + (2 + 4))) where + has priority over *.", "expression": "(((8 * 4) * ((1 * 0 * 2) + 6)) + ((3 + 4) + (2 + 4)))", "think": ["8 * 4 = 32", "1 * 0 = 0", "0 * 2 = 0", "0 + 6 = 6", "32 * 6 = 192", "3 + 4 = 7", "2 + 4 = 6", "7 + 6 = 13", "192 + 13 = 205"], "answer": 205, "settings": "dp_ 3 -2 "}
{"id": 307, "question": "Simplify the following expression (((8 + 8) * (1 * 6)) + ((0 * 7) + ((6 + 4 * 0) + 9))) where + has priority over *.", "expression": "(((8 + 8) * (1 * 6)) + ((0 * 7) + ((6 + 4 * 0) + 9)))", "think": ["8 + 8 = 16", "1 * 6 = 6", "16 * 6 = 96", "0 * 7 = 0", "6 + 4 = 10", "10 * 0 = 0", "0 + 9 = 9", "0 + 9 = 9", "96 + 9 = 105"], "answer": 105, "settings": "dp_ 3 -2 "}
{"id": 308, "question": "Simplify the following expression (((5 * 1) + (1 * (2 + 1 + 5))) * ((8 * 1) * (4 * 5))) where + has priority over *.", "expression": "(((5 * 1) + (1 * (2 + 1 + 5))) * ((8 * 1) * (4 * 5)))", "think": ["5 * 1 = 5", "2 + 1 = 3", "3 + 5 = 8", "1 * 8 = 8", "5 + 8 = 13", "8 * 1 = 8", "4 * 5 = 20", "8 * 20 = 160", "13 * 160 = 2080"], "answer": 2080, "settings": "dp_ 3 -2 "}
{"id": 309, "question": "Simplify the following expression (((1 + 2) + (3 * 2)) * ((2 + 7) + ((5 * 2 + 7) * 9))) where + has priority over *.", "expression": "(((1 + 2) + (3 * 2)) * ((2 + 7) + ((5 * 2 + 7) * 9)))", "think": ["1 + 2 = 3", "3 * 2 = 6", "3 + 6 = 9", "2 + 7 = 9", "2 + 7 = 9", "5 * 9 = 45", "45 * 9 = 405", "9 + 405 = 414", "9 * 414 = 3726"], "answer": 3726, "settings": "dp_ 3 -2 "}
{"id": 310, "question": "Simplify the following expression (((9 * (9 * 9 * 8 + 7)) * (8 * 1)) * ((7 * 0) * (5 + 4))) where + has priority over *.", "expression": "(((9 * (9 * 9 * 8 + 7)) * (8 * 1)) * ((7 * 0) * (5 + 4)))", "think": ["9 * 9 = 81", "8 + 7 = 15", "81 * 15 = 1215", "9 * 1215 = 10935", "8 * 1 = 8", "10935 * 8 = 87480", "7 * 0 = 0", "5 + 4 = 9", "0 * 9 = 0", "87480 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 311, "question": "Simplify the following expression (((8 * 2) * ((5 * 5 * 4 * 9) + 1)) + ((8 + 2) * (3 + 7))) where + has priority over *.", "expression": "(((8 * 2) * ((5 * 5 * 4 * 9) + 1)) + ((8 + 2) * (3 + 7)))", "think": ["8 * 2 = 16", "5 * 5 = 25", "25 * 4 = 100", "100 * 9 = 900", "900 + 1 = 901", "16 * 901 = 14416", "8 + 2 = 10", "3 + 7 = 10", "10 * 10 = 100", "14416 + 100 = 14516"], "answer": 14516, "settings": "dp_ 3 -2 "}
{"id": 312, "question": "Simplify the following expression ((((9 * 1 * 4 + 8) + 1) * (4 * 4)) + ((1 * 9) + (5 + 4))) where + has priority over *.", "expression": "((((9 * 1 * 4 + 8) + 1) * (4 * 4)) + ((1 * 9) + (5 + 4)))", "think": ["9 * 1 = 9", "4 + 8 = 12", "9 * 12 = 108", "108 + 1 = 109", "4 * 4 = 16", "109 * 16 = 1744", "1 * 9 = 9", "5 + 4 = 9", "9 + 9 = 18", "1744 + 18 = 1762"], "answer": 1762, "settings": "dp_ 3 -2 "}
{"id": 313, "question": "Simplify the following expression (((0 * 5) * (2 * (8 + 8 * 8 + 9))) + ((3 * 3) * (2 + 1))) where + has priority over *.", "expression": "(((0 * 5) * (2 * (8 + 8 * 8 + 9))) + ((3 * 3) * (2 + 1)))", "think": ["0 * 5 = 0", "8 + 8 = 16", "8 + 9 = 17", "16 * 17 = 272", "2 * 272 = 544", "0 * 544 = 0", "3 * 3 = 9", "2 + 1 = 3", "9 * 3 = 27", "0 + 27 = 27"], "answer": 27, "settings": "dp_ 3 -2 "}
{"id": 314, "question": "Simplify the following expression (((2 + 9) + (7 + (7 * 3 * 7))) * ((3 * 7) * (7 * 3))) where + has priority over *.", "expression": "(((2 + 9) + (7 + (7 * 3 * 7))) * ((3 * 7) * (7 * 3)))", "think": ["2 + 9 = 11", "7 * 3 = 21", "21 * 7 = 147", "7 + 147 = 154", "11 + 154 = 165", "3 * 7 = 21", "7 * 3 = 21", "21 * 21 = 441", "165 * 441 = 72765"], "answer": 72765, "settings": "dp_ 3 -2 "}
{"id": 315, "question": "Simplify the following expression (((2 * 3) * ((7 + 8 * 1) + 0)) * ((8 * 1) * (4 + 1))) where + has priority over *.", "expression": "(((2 * 3) * ((7 + 8 * 1) + 0)) * ((8 * 1) * (4 + 1)))", "think": ["2 * 3 = 6", "7 + 8 = 15", "15 * 1 = 15", "15 + 0 = 15", "6 * 15 = 90", "8 * 1 = 8", "4 + 1 = 5", "8 * 5 = 40", "90 * 40 = 3600"], "answer": 3600, "settings": "dp_ 3 -2 "}
{"id": 316, "question": "Simplify the following expression (((0 * 6) * (6 + 8)) + ((6 + (5 + 2 * 2 * 2)) * (3 * 0))) where + has priority over *.", "expression": "(((0 * 6) * (6 + 8)) + ((6 + (5 + 2 * 2 * 2)) * (3 * 0)))", "think": ["0 * 6 = 0", "6 + 8 = 14", "0 * 14 = 0", "5 + 2 = 7", "7 * 2 = 14", "14 * 2 = 28", "6 + 28 = 34", "3 * 0 = 0", "34 * 0 = 0", "0 + 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 317, "question": "Simplify the following expression (((1 + 0) * (3 * (9 + 7 + 7))) * ((4 + 3) * (1 * 0))) where + has priority over *.", "expression": "(((1 + 0) * (3 * (9 + 7 + 7))) * ((4 + 3) * (1 * 0)))", "think": ["1 + 0 = 1", "9 + 7 = 16", "16 + 7 = 23", "3 * 23 = 69", "1 * 69 = 69", "4 + 3 = 7", "1 * 0 = 0", "7 * 0 = 0", "69 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 318, "question": "Simplify the following expression ((((7 * 0 * 4) + 6) + (9 + 5)) + ((2 * 1) + (1 * 8))) where + has priority over *.", "expression": "((((7 * 0 * 4) + 6) + (9 + 5)) + ((2 * 1) + (1 * 8)))", "think": ["7 * 0 = 0", "0 * 4 = 0", "0 + 6 = 6", "9 + 5 = 14", "6 + 14 = 20", "2 * 1 = 2", "1 * 8 = 8", "2 + 8 = 10", "20 + 10 = 30"], "answer": 30, "settings": "dp_ 3 -2 "}
{"id": 319, "question": "Simplify the following expression (((5 + 3) * (9 + 5)) + ((5 + 8) + (2 * (2 + 1 * 7 + 0)))) where + has priority over *.", "expression": "(((5 + 3) * (9 + 5)) + ((5 + 8) + (2 * (2 + 1 * 7 + 0))))", "think": ["5 + 3 = 8", "9 + 5 = 14", "8 * 14 = 112", "5 + 8 = 13", "2 + 1 = 3", "7 + 0 = 7", "3 * 7 = 21", "2 * 21 = 42", "13 + 42 = 55", "112 + 55 = 167"], "answer": 167, "settings": "dp_ 3 -2 "}
{"id": 320, "question": "Simplify the following expression (((4 * 8) + (8 * 7)) + (((5 * 6 * 6 * 2) + 4) * (0 * 5))) where + has priority over *.", "expression": "(((4 * 8) + (8 * 7)) + (((5 * 6 * 6 * 2) + 4) * (0 * 5)))", "think": ["4 * 8 = 32", "8 * 7 = 56", "32 + 56 = 88", "5 * 6 = 30", "30 * 6 = 180", "180 * 2 = 360", "360 + 4 = 364", "0 * 5 = 0", "364 * 0 = 0", "88 + 0 = 88"], "answer": 88, "settings": "dp_ 3 -2 "}
{"id": 321, "question": "Simplify the following expression (((8 * (4 * 7 + 7)) * (6 + 1)) * ((8 + 4) * (1 * 1))) where + has priority over *.", "expression": "(((8 * (4 * 7 + 7)) * (6 + 1)) * ((8 + 4) * (1 * 1)))", "think": ["7 + 7 = 14", "4 * 14 = 56", "8 * 56 = 448", "6 + 1 = 7", "448 * 7 = 3136", "8 + 4 = 12", "1 * 1 = 1", "12 * 1 = 12", "3136 * 12 = 37632"], "answer": 37632, "settings": "dp_ 3 -2 "}
{"id": 322, "question": "Simplify the following expression (((5 + 9) * (4 * 0)) * ((5 * 8) + (0 + (2 * 1 * 3 * 9)))) where + has priority over *.", "expression": "(((5 + 9) * (4 * 0)) * ((5 * 8) + (0 + (2 * 1 * 3 * 9))))", "think": ["5 + 9 = 14", "4 * 0 = 0", "14 * 0 = 0", "5 * 8 = 40", "2 * 1 = 2", "2 * 3 = 6", "6 * 9 = 54", "0 + 54 = 54", "40 + 54 = 94", "0 * 94 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 323, "question": "Simplify the following expression ((((7 + 8 * 6 * 7) * 5) + (1 * 9)) + ((6 * 5) + (3 * 1))) where + has priority over *.", "expression": "((((7 + 8 * 6 * 7) * 5) + (1 * 9)) + ((6 * 5) + (3 * 1)))", "think": ["7 + 8 = 15", "15 * 6 = 90", "90 * 7 = 630", "630 * 5 = 3150", "1 * 9 = 9", "3150 + 9 = 3159", "6 * 5 = 30", "3 * 1 = 3", "30 + 3 = 33", "3159 + 33 = 3192"], "answer": 3192, "settings": "dp_ 3 -2 "}
{"id": 324, "question": "Simplify the following expression (((3 * (2 * 2 + 1)) * (1 + 7)) + ((1 * 5) + (1 * 8))) where + has priority over *.", "expression": "(((3 * (2 * 2 + 1)) * (1 + 7)) + ((1 * 5) + (1 * 8)))", "think": ["2 + 1 = 3", "2 * 3 = 6", "3 * 6 = 18", "1 + 7 = 8", "18 * 8 = 144", "1 * 5 = 5", "1 * 8 = 8", "5 + 8 = 13", "144 + 13 = 157"], "answer": 157, "settings": "dp_ 3 -2 "}
{"id": 325, "question": "Simplify the following expression (((7 + 0) + (8 * 9)) + ((8 * 2) * ((8 * 6 + 2) + 4))) where + has priority over *.", "expression": "(((7 + 0) + (8 * 9)) + ((8 * 2) * ((8 * 6 + 2) + 4)))", "think": ["7 + 0 = 7", "8 * 9 = 72", "7 + 72 = 79", "8 * 2 = 16", "6 + 2 = 8", "8 * 8 = 64", "64 + 4 = 68", "16 * 68 = 1088", "79 + 1088 = 1167"], "answer": 1167, "settings": "dp_ 3 -2 "}
{"id": 326, "question": "Simplify the following expression (((7 * 8) + ((2 * 2 + 5) * 8)) * ((6 + 8) + (1 + 8))) where + has priority over *.", "expression": "(((7 * 8) + ((2 * 2 + 5) * 8)) * ((6 + 8) + (1 + 8)))", "think": ["7 * 8 = 56", "2 + 5 = 7", "2 * 7 = 14", "14 * 8 = 112", "56 + 112 = 168", "6 + 8 = 14", "1 + 8 = 9", "14 + 9 = 23", "168 * 23 = 3864"], "answer": 3864, "settings": "dp_ 3 -2 "}
{"id": 327, "question": "Simplify the following expression (((3 * 8) + (2 * 4)) * (((0 * 1 + 0 * 9) + 9) + (2 + 9))) where + has priority over *.", "expression": "(((3 * 8) + (2 * 4)) * (((0 * 1 + 0 * 9) + 9) + (2 + 9)))", "think": ["3 * 8 = 24", "2 * 4 = 8", "24 + 8 = 32", "1 + 0 = 1", "0 * 1 = 0", "0 * 9 = 0", "0 + 9 = 9", "2 + 9 = 11", "9 + 11 = 20", "32 * 20 = 640"], "answer": 640, "settings": "dp_ 3 -2 "}
{"id": 328, "question": "Simplify the following expression (((4 * (5 * 9 * 2 * 6)) * (6 + 4)) + ((0 + 2) * (6 * 7))) where + has priority over *.", "expression": "(((4 * (5 * 9 * 2 * 6)) * (6 + 4)) + ((0 + 2) * (6 * 7)))", "think": ["5 * 9 = 45", "45 * 2 = 90", "90 * 6 = 540", "4 * 540 = 2160", "6 + 4 = 10", "2160 * 10 = 21600", "0 + 2 = 2", "6 * 7 = 42", "2 * 42 = 84", "21600 + 84 = 21684"], "answer": 21684, "settings": "dp_ 3 -2 "}
{"id": 329, "question": "Simplify the following expression (((5 + 3) * (1 * (2 * 5 + 9 + 7))) + ((2 + 1) * (4 + 6))) where + has priority over *.", "expression": "(((5 + 3) * (1 * (2 * 5 + 9 + 7))) + ((2 + 1) * (4 + 6)))", "think": ["5 + 3 = 8", "5 + 9 = 14", "14 + 7 = 21", "2 * 21 = 42", "1 * 42 = 42", "8 * 42 = 336", "2 + 1 = 3", "4 + 6 = 10", "3 * 10 = 30", "336 + 30 = 366"], "answer": 366, "settings": "dp_ 3 -2 "}
{"id": 330, "question": "Simplify the following expression (((7 * 0) * (6 + 8)) * (((9 * 7 + 1) + 9) * (0 * 0))) where + has priority over *.", "expression": "(((7 * 0) * (6 + 8)) * (((9 * 7 + 1) + 9) * (0 * 0)))", "think": ["7 * 0 = 0", "6 + 8 = 14", "0 * 14 = 0", "7 + 1 = 8", "9 * 8 = 72", "72 + 9 = 81", "0 * 0 = 0", "81 * 0 = 0", "0 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 331, "question": "Simplify the following expression (((5 * (9 + 9 + 1)) + (0 * 6)) * ((5 + 8) + (1 * 6))) where + has priority over *.", "expression": "(((5 * (9 + 9 + 1)) + (0 * 6)) * ((5 + 8) + (1 * 6)))", "think": ["9 + 9 = 18", "18 + 1 = 19", "5 * 19 = 95", "0 * 6 = 0", "95 + 0 = 95", "5 + 8 = 13", "1 * 6 = 6", "13 + 6 = 19", "95 * 19 = 1805"], "answer": 1805, "settings": "dp_ 3 -2 "}
{"id": 332, "question": "Simplify the following expression (((8 * 5) * (3 + 9)) * ((0 + 0) * (5 + (9 * 8 * 2 + 6)))) where + has priority over *.", "expression": "(((8 * 5) * (3 + 9)) * ((0 + 0) * (5 + (9 * 8 * 2 + 6))))", "think": ["8 * 5 = 40", "3 + 9 = 12", "40 * 12 = 480", "0 + 0 = 0", "9 * 8 = 72", "2 + 6 = 8", "72 * 8 = 576", "5 + 576 = 581", "0 * 581 = 0", "480 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 333, "question": "Simplify the following expression ((((9 + 9 + 9) * 4) * (0 * 5)) * ((6 + 9) * (0 * 9))) where + has priority over *.", "expression": "((((9 + 9 + 9) * 4) * (0 * 5)) * ((6 + 9) * (0 * 9)))", "think": ["9 + 9 = 18", "18 + 9 = 27", "27 * 4 = 108", "0 * 5 = 0", "108 * 0 = 0", "6 + 9 = 15", "0 * 9 = 0", "15 * 0 = 0", "0 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 334, "question": "Simplify the following expression (((2 * 3) + (9 + (8 * 9 + 2))) * ((7 + 5) + (2 * 6))) where + has priority over *.", "expression": "(((2 * 3) + (9 + (8 * 9 + 2))) * ((7 + 5) + (2 * 6)))", "think": ["2 * 3 = 6", "9 + 2 = 11", "8 * 11 = 88", "9 + 88 = 97", "6 + 97 = 103", "7 + 5 = 12", "2 * 6 = 12", "12 + 12 = 24", "103 * 24 = 2472"], "answer": 2472, "settings": "dp_ 3 -2 "}
{"id": 335, "question": "Simplify the following expression (((8 * 6) * (2 * 7)) + (((3 * 4 + 7) * 9) * (3 * 3))) where + has priority over *.", "expression": "(((8 * 6) * (2 * 7)) + (((3 * 4 + 7) * 9) * (3 * 3)))", "think": ["8 * 6 = 48", "2 * 7 = 14", "48 * 14 = 672", "4 + 7 = 11", "3 * 11 = 33", "33 * 9 = 297", "3 * 3 = 9", "297 * 9 = 2673", "672 + 2673 = 3345"], "answer": 3345, "settings": "dp_ 3 -2 "}
{"id": 336, "question": "Simplify the following expression (((8 * (7 * 4 + 3)) * (1 * 9)) * ((5 * 2) * (0 * 4))) where + has priority over *.", "expression": "(((8 * (7 * 4 + 3)) * (1 * 9)) * ((5 * 2) * (0 * 4)))", "think": ["4 + 3 = 7", "7 * 7 = 49", "8 * 49 = 392", "1 * 9 = 9", "392 * 9 = 3528", "5 * 2 = 10", "0 * 4 = 0", "10 * 0 = 0", "3528 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 337, "question": "Simplify the following expression (((1 + (0 * 8 * 2 * 3)) * (3 + 0)) * ((0 + 1) + (5 * 7))) where + has priority over *.", "expression": "(((1 + (0 * 8 * 2 * 3)) * (3 + 0)) * ((0 + 1) + (5 * 7)))", "think": ["0 * 8 = 0", "0 * 2 = 0", "0 * 3 = 0", "1 + 0 = 1", "3 + 0 = 3", "1 * 3 = 3", "0 + 1 = 1", "5 * 7 = 35", "1 + 35 = 36", "3 * 36 = 108"], "answer": 108, "settings": "dp_ 3 -2 "}
{"id": 338, "question": "Simplify the following expression (((0 * 1) * (8 + 0)) * (((0 + 4 * 9 * 7) * 0) + (7 * 2))) where + has priority over *.", "expression": "(((0 * 1) * (8 + 0)) * (((0 + 4 * 9 * 7) * 0) + (7 * 2)))", "think": ["0 * 1 = 0", "8 + 0 = 8", "0 * 8 = 0", "0 + 4 = 4", "4 * 9 = 36", "36 * 7 = 252", "252 * 0 = 0", "7 * 2 = 14", "0 + 14 = 14", "0 * 14 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 339, "question": "Simplify the following expression (((4 * 3) + (5 + (9 * 6 + 6 * 1))) * ((2 * 0) * (4 * 9))) where + has priority over *.", "expression": "(((4 * 3) + (5 + (9 * 6 + 6 * 1))) * ((2 * 0) * (4 * 9)))", "think": ["4 * 3 = 12", "6 + 6 = 12", "9 * 12 = 108", "108 * 1 = 108", "5 + 108 = 113", "12 + 113 = 125", "2 * 0 = 0", "4 * 9 = 36", "0 * 36 = 0", "125 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 340, "question": "Simplify the following expression ((((5 + 3 + 7) * 3) + (4 + 6)) + ((4 * 5) + (9 * 9))) where + has priority over *.", "expression": "((((5 + 3 + 7) * 3) + (4 + 6)) + ((4 * 5) + (9 * 9)))", "think": ["5 + 3 = 8", "8 + 7 = 15", "15 * 3 = 45", "4 + 6 = 10", "45 + 10 = 55", "4 * 5 = 20", "9 * 9 = 81", "20 + 81 = 101", "55 + 101 = 156"], "answer": 156, "settings": "dp_ 3 -2 "}
{"id": 341, "question": "Simplify the following expression (((8 * 4) + (4 + 5)) * ((2 + (8 + 7 + 9)) + (7 + 9))) where + has priority over *.", "expression": "(((8 * 4) + (4 + 5)) * ((2 + (8 + 7 + 9)) + (7 + 9)))", "think": ["8 * 4 = 32", "4 + 5 = 9", "32 + 9 = 41", "8 + 7 = 15", "15 + 9 = 24", "2 + 24 = 26", "7 + 9 = 16", "26 + 16 = 42", "41 * 42 = 1722"], "answer": 1722, "settings": "dp_ 3 -2 "}
{"id": 342, "question": "Simplify the following expression (((1 * 9) * (0 + 8)) + ((2 + 5) + (1 * (8 * 7 + 0 * 7)))) where + has priority over *.", "expression": "(((1 * 9) * (0 + 8)) + ((2 + 5) + (1 * (8 * 7 + 0 * 7))))", "think": ["1 * 9 = 9", "0 + 8 = 8", "9 * 8 = 72", "2 + 5 = 7", "7 + 0 = 7", "8 * 7 = 56", "56 * 7 = 392", "1 * 392 = 392", "7 + 392 = 399", "72 + 399 = 471"], "answer": 471, "settings": "dp_ 3 -2 "}
{"id": 343, "question": "Simplify the following expression (((0 * (0 * 4 + 2)) * (0 * 3)) + ((6 + 5) + (8 + 0))) where + has priority over *.", "expression": "(((0 * (0 * 4 + 2)) * (0 * 3)) + ((6 + 5) + (8 + 0)))", "think": ["4 + 2 = 6", "0 * 6 = 0", "0 * 0 = 0", "0 * 3 = 0", "0 * 0 = 0", "6 + 5 = 11", "8 + 0 = 8", "11 + 8 = 19", "0 + 19 = 19"], "answer": 19, "settings": "dp_ 3 -2 "}
{"id": 344, "question": "Simplify the following expression (((7 * 6) * (1 * (0 * 4 * 7 + 3))) * ((1 * 2) + (8 * 2))) where + has priority over *.", "expression": "(((7 * 6) * (1 * (0 * 4 * 7 + 3))) * ((1 * 2) + (8 * 2)))", "think": ["7 * 6 = 42", "0 * 4 = 0", "7 + 3 = 10", "0 * 10 = 0", "1 * 0 = 0", "42 * 0 = 0", "1 * 2 = 2", "8 * 2 = 16", "2 + 16 = 18", "0 * 18 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 345, "question": "Simplify the following expression (((4 + 3) * ((3 * 0 + 6 + 0) + 6)) * ((3 + 1) + (9 + 0))) where + has priority over *.", "expression": "(((4 + 3) * ((3 * 0 + 6 + 0) + 6)) * ((3 + 1) + (9 + 0)))", "think": ["4 + 3 = 7", "0 + 6 = 6", "6 + 0 = 6", "3 * 6 = 18", "18 + 6 = 24", "7 * 24 = 168", "3 + 1 = 4", "9 + 0 = 9", "4 + 9 = 13", "168 * 13 = 2184"], "answer": 2184, "settings": "dp_ 3 -2 "}
{"id": 346, "question": "Simplify the following expression (((9 + 5) * ((8 + 7 * 6) * 4)) + ((6 + 4) + (0 * 8))) where + has priority over *.", "expression": "(((9 + 5) * ((8 + 7 * 6) * 4)) + ((6 + 4) + (0 * 8)))", "think": ["9 + 5 = 14", "8 + 7 = 15", "15 * 6 = 90", "90 * 4 = 360", "14 * 360 = 5040", "6 + 4 = 10", "0 * 8 = 0", "10 + 0 = 10", "5040 + 10 = 5050"], "answer": 5050, "settings": "dp_ 3 -2 "}
{"id": 347, "question": "Simplify the following expression (((2 * 4) * (2 * 8)) * ((3 + 4) * ((8 + 8 * 3) + 0))) where + has priority over *.", "expression": "(((2 * 4) * (2 * 8)) * ((3 + 4) * ((8 + 8 * 3) + 0)))", "think": ["2 * 4 = 8", "2 * 8 = 16", "8 * 16 = 128", "3 + 4 = 7", "8 + 8 = 16", "16 * 3 = 48", "48 + 0 = 48", "7 * 48 = 336", "128 * 336 = 43008"], "answer": 43008, "settings": "dp_ 3 -2 "}
{"id": 348, "question": "Simplify the following expression (((1 * 7) + (1 * (3 * 5 + 3))) * ((4 + 6) + (1 + 3))) where + has priority over *.", "expression": "(((1 * 7) + (1 * (3 * 5 + 3))) * ((4 + 6) + (1 + 3)))", "think": ["1 * 7 = 7", "5 + 3 = 8", "3 * 8 = 24", "1 * 24 = 24", "7 + 24 = 31", "4 + 6 = 10", "1 + 3 = 4", "10 + 4 = 14", "31 * 14 = 434"], "answer": 434, "settings": "dp_ 3 -2 "}
{"id": 349, "question": "Simplify the following expression (((3 * 9) + (6 + 3)) + ((6 * (7 * 1 * 3)) * (4 * 4))) where + has priority over *.", "expression": "(((3 * 9) + (6 + 3)) + ((6 * (7 * 1 * 3)) * (4 * 4)))", "think": ["3 * 9 = 27", "6 + 3 = 9", "27 + 9 = 36", "7 * 1 = 7", "7 * 3 = 21", "6 * 21 = 126", "4 * 4 = 16", "126 * 16 = 2016", "36 + 2016 = 2052"], "answer": 2052, "settings": "dp_ 3 -2 "}
{"id": 350, "question": "Simplify the following expression (((0 * 9) * (2 + 0)) * ((4 * 2) * ((7 * 8 * 5 * 7) + 3))) where + has priority over *.", "expression": "(((0 * 9) * (2 + 0)) * ((4 * 2) * ((7 * 8 * 5 * 7) + 3)))", "think": ["0 * 9 = 0", "2 + 0 = 2", "0 * 2 = 0", "4 * 2 = 8", "7 * 8 = 56", "56 * 5 = 280", "280 * 7 = 1960", "1960 + 3 = 1963", "8 * 1963 = 15704", "0 * 15704 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 351, "question": "Simplify the following expression (((2 + (2 * 0 * 3 + 9)) * (2 * 8)) + ((1 + 0) + (6 + 2))) where + has priority over *.", "expression": "(((2 + (2 * 0 * 3 + 9)) * (2 * 8)) + ((1 + 0) + (6 + 2)))", "think": ["2 * 0 = 0", "3 + 9 = 12", "0 * 12 = 0", "2 + 0 = 2", "2 * 8 = 16", "2 * 16 = 32", "1 + 0 = 1", "6 + 2 = 8", "1 + 8 = 9", "32 + 9 = 41"], "answer": 41, "settings": "dp_ 3 -2 "}
{"id": 352, "question": "Simplify the following expression (((0 + (3 * 3 * 9 * 6)) * (0 * 0)) * ((0 * 8) * (2 * 1))) where + has priority over *.", "expression": "(((0 + (3 * 3 * 9 * 6)) * (0 * 0)) * ((0 * 8) * (2 * 1)))", "think": ["3 * 3 = 9", "9 * 9 = 81", "81 * 6 = 486", "0 + 486 = 486", "0 * 0 = 0", "486 * 0 = 0", "0 * 8 = 0", "2 * 1 = 2", "0 * 2 = 0", "0 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 353, "question": "Simplify the following expression (((7 * 9) * (3 + 4)) + ((1 + 6) + (6 * (0 * 2 * 1 * 9)))) where + has priority over *.", "expression": "(((7 * 9) * (3 + 4)) + ((1 + 6) + (6 * (0 * 2 * 1 * 9))))", "think": ["7 * 9 = 63", "3 + 4 = 7", "63 * 7 = 441", "1 + 6 = 7", "0 * 2 = 0", "0 * 1 = 0", "0 * 9 = 0", "6 * 0 = 0", "7 + 0 = 7", "441 + 7 = 448"], "answer": 448, "settings": "dp_ 3 -2 "}
{"id": 354, "question": "Simplify the following expression ((((9 + 2 * 6 + 9) + 9) + (4 * 0)) + ((8 * 9) + (2 + 5))) where + has priority over *.", "expression": "((((9 + 2 * 6 + 9) + 9) + (4 * 0)) + ((8 * 9) + (2 + 5)))", "think": ["9 + 2 = 11", "6 + 9 = 15", "11 * 15 = 165", "165 + 9 = 174", "4 * 0 = 0", "174 + 0 = 174", "8 * 9 = 72", "2 + 5 = 7", "72 + 7 = 79", "174 + 79 = 253"], "answer": 253, "settings": "dp_ 3 -2 "}
{"id": 355, "question": "Simplify the following expression (((6 * 2) * (8 + (0 * 4 * 3))) + ((6 + 3) + (5 + 9))) where + has priority over *.", "expression": "(((6 * 2) * (8 + (0 * 4 * 3))) + ((6 + 3) + (5 + 9)))", "think": ["6 * 2 = 12", "0 * 4 = 0", "0 * 3 = 0", "8 + 0 = 8", "12 * 8 = 96", "6 + 3 = 9", "5 + 9 = 14", "9 + 14 = 23", "96 + 23 = 119"], "answer": 119, "settings": "dp_ 3 -2 "}
{"id": 356, "question": "Simplify the following expression (((2 * 9) * ((5 + 5 + 0) * 9)) * ((1 + 1) * (2 * 6))) where + has priority over *.", "expression": "(((2 * 9) * ((5 + 5 + 0) * 9)) * ((1 + 1) * (2 * 6)))", "think": ["2 * 9 = 18", "5 + 5 = 10", "10 + 0 = 10", "10 * 9 = 90", "18 * 90 = 1620", "1 + 1 = 2", "2 * 6 = 12", "2 * 12 = 24", "1620 * 24 = 38880"], "answer": 38880, "settings": "dp_ 3 -2 "}
{"id": 357, "question": "Simplify the following expression (((4 * (8 * 1 * 0)) * (1 + 2)) * ((8 * 8) * (1 * 0))) where + has priority over *.", "expression": "(((4 * (8 * 1 * 0)) * (1 + 2)) * ((8 * 8) * (1 * 0)))", "think": ["8 * 1 = 8", "8 * 0 = 0", "4 * 0 = 0", "1 + 2 = 3", "0 * 3 = 0", "8 * 8 = 64", "1 * 0 = 0", "64 * 0 = 0", "0 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 358, "question": "Simplify the following expression (((1 * 8) * (9 + 8)) * ((2 * 2) + ((1 * 2 * 6 * 7) * 4))) where + has priority over *.", "expression": "(((1 * 8) * (9 + 8)) * ((2 * 2) + ((1 * 2 * 6 * 7) * 4)))", "think": ["1 * 8 = 8", "9 + 8 = 17", "8 * 17 = 136", "2 * 2 = 4", "1 * 2 = 2", "2 * 6 = 12", "12 * 7 = 84", "84 * 4 = 336", "4 + 336 = 340", "136 * 340 = 46240"], "answer": 46240, "settings": "dp_ 3 -2 "}
{"id": 359, "question": "Simplify the following expression (((3 * 7) * (7 + 1)) + ((0 * (5 + 6 * 5)) + (9 * 6))) where + has priority over *.", "expression": "(((3 * 7) * (7 + 1)) + ((0 * (5 + 6 * 5)) + (9 * 6)))", "think": ["3 * 7 = 21", "7 + 1 = 8", "21 * 8 = 168", "5 + 6 = 11", "11 * 5 = 55", "0 * 55 = 0", "9 * 6 = 54", "0 + 54 = 54", "168 + 54 = 222"], "answer": 222, "settings": "dp_ 3 -2 "}
{"id": 360, "question": "Simplify the following expression (((2 * 6) * (4 * (8 + 0 * 7 * 1))) + ((6 * 4) + (5 * 1))) where + has priority over *.", "expression": "(((2 * 6) * (4 * (8 + 0 * 7 * 1))) + ((6 * 4) + (5 * 1)))", "think": ["2 * 6 = 12", "8 + 0 = 8", "8 * 7 = 56", "56 * 1 = 56", "4 * 56 = 224", "12 * 224 = 2688", "6 * 4 = 24", "5 * 1 = 5", "24 + 5 = 29", "2688 + 29 = 2717"], "answer": 2717, "settings": "dp_ 3 -2 "}
{"id": 361, "question": "Simplify the following expression (((4 + 3) * (2 * 6)) * ((7 + (5 + 8 + 9 + 5)) * (9 * 6))) where + has priority over *.", "expression": "(((4 + 3) * (2 * 6)) * ((7 + (5 + 8 + 9 + 5)) * (9 * 6)))", "think": ["4 + 3 = 7", "2 * 6 = 12", "7 * 12 = 84", "5 + 8 = 13", "13 + 9 = 22", "22 + 5 = 27", "7 + 27 = 34", "9 * 6 = 54", "34 * 54 = 1836", "84 * 1836 = 154224"], "answer": 154224, "settings": "dp_ 3 -2 "}
{"id": 362, "question": "Simplify the following expression (((5 * 6) + (0 + 1)) + ((8 + 8) * ((9 + 8 * 0) + 5))) where + has priority over *.", "expression": "(((5 * 6) + (0 + 1)) + ((8 + 8) * ((9 + 8 * 0) + 5)))", "think": ["5 * 6 = 30", "0 + 1 = 1", "30 + 1 = 31", "8 + 8 = 16", "9 + 8 = 17", "17 * 0 = 0", "0 + 5 = 5", "16 * 5 = 80", "31 + 80 = 111"], "answer": 111, "settings": "dp_ 3 -2 "}
{"id": 363, "question": "Simplify the following expression (((6 * (7 + 5 * 0)) + (2 + 5)) * ((7 * 3) * (5 * 7))) where + has priority over *.", "expression": "(((6 * (7 + 5 * 0)) + (2 + 5)) * ((7 * 3) * (5 * 7)))", "think": ["7 + 5 = 12", "12 * 0 = 0", "6 * 0 = 0", "2 + 5 = 7", "0 + 7 = 7", "7 * 3 = 21", "5 * 7 = 35", "21 * 35 = 735", "7 * 735 = 5145"], "answer": 5145, "settings": "dp_ 3 -2 "}
{"id": 364, "question": "Simplify the following expression (((1 * 2) + ((6 + 6 * 0 * 6) + 2)) + ((8 * 6) + (3 * 6))) where + has priority over *.", "expression": "(((1 * 2) + ((6 + 6 * 0 * 6) + 2)) + ((8 * 6) + (3 * 6)))", "think": ["1 * 2 = 2", "6 + 6 = 12", "12 * 0 = 0", "0 * 6 = 0", "0 + 2 = 2", "2 + 2 = 4", "8 * 6 = 48", "3 * 6 = 18", "48 + 18 = 66", "4 + 66 = 70"], "answer": 70, "settings": "dp_ 3 -2 "}
{"id": 365, "question": "Simplify the following expression (((4 + 1) + (8 + 2)) + ((3 * (9 + 6 * 5)) * (4 + 7))) where + has priority over *.", "expression": "(((4 + 1) + (8 + 2)) + ((3 * (9 + 6 * 5)) * (4 + 7)))", "think": ["4 + 1 = 5", "8 + 2 = 10", "5 + 10 = 15", "9 + 6 = 15", "15 * 5 = 75", "3 * 75 = 225", "4 + 7 = 11", "225 * 11 = 2475", "15 + 2475 = 2490"], "answer": 2490, "settings": "dp_ 3 -2 "}
{"id": 366, "question": "Simplify the following expression (((9 * 9) + (2 + (9 * 2 * 2))) * ((4 + 1) + (5 + 2))) where + has priority over *.", "expression": "(((9 * 9) + (2 + (9 * 2 * 2))) * ((4 + 1) + (5 + 2)))", "think": ["9 * 9 = 81", "9 * 2 = 18", "18 * 2 = 36", "2 + 36 = 38", "81 + 38 = 119", "4 + 1 = 5", "5 + 2 = 7", "5 + 7 = 12", "119 * 12 = 1428"], "answer": 1428, "settings": "dp_ 3 -2 "}
{"id": 367, "question": "Simplify the following expression (((7 + 4) + ((6 * 7 * 7) + 5)) * ((5 + 0) * (2 * 3))) where + has priority over *.", "expression": "(((7 + 4) + ((6 * 7 * 7) + 5)) * ((5 + 0) * (2 * 3)))", "think": ["7 + 4 = 11", "6 * 7 = 42", "42 * 7 = 294", "294 + 5 = 299", "11 + 299 = 310", "5 + 0 = 5", "2 * 3 = 6", "5 * 6 = 30", "310 * 30 = 9300"], "answer": 9300, "settings": "dp_ 3 -2 "}
{"id": 368, "question": "Simplify the following expression (((3 + (4 + 8 * 5 + 6)) + (4 + 3)) + ((7 + 9) * (8 * 8))) where + has priority over *.", "expression": "(((3 + (4 + 8 * 5 + 6)) + (4 + 3)) + ((7 + 9) * (8 * 8)))", "think": ["4 + 8 = 12", "5 + 6 = 11", "12 * 11 = 132", "3 + 132 = 135", "4 + 3 = 7", "135 + 7 = 142", "7 + 9 = 16", "8 * 8 = 64", "16 * 64 = 1024", "142 + 1024 = 1166"], "answer": 1166, "settings": "dp_ 3 -2 "}
{"id": 369, "question": "Simplify the following expression (((0 * 7) + ((3 * 3 * 0 + 5) * 1)) + ((3 + 3) * (9 * 6))) where + has priority over *.", "expression": "(((0 * 7) + ((3 * 3 * 0 + 5) * 1)) + ((3 + 3) * (9 * 6)))", "think": ["0 * 7 = 0", "3 * 3 = 9", "0 + 5 = 5", "9 * 5 = 45", "45 * 1 = 45", "0 + 45 = 45", "3 + 3 = 6", "9 * 6 = 54", "6 * 54 = 324", "45 + 324 = 369"], "answer": 369, "settings": "dp_ 3 -2 "}
{"id": 370, "question": "Simplify the following expression (((8 * 1) * (6 + 0)) * ((2 + 3) * ((2 * 9 * 6) + 3))) where + has priority over *.", "expression": "(((8 * 1) * (6 + 0)) * ((2 + 3) * ((2 * 9 * 6) + 3)))", "think": ["8 * 1 = 8", "6 + 0 = 6", "8 * 6 = 48", "2 + 3 = 5", "2 * 9 = 18", "18 * 6 = 108", "108 + 3 = 111", "5 * 111 = 555", "48 * 555 = 26640"], "answer": 26640, "settings": "dp_ 3 -2 "}
{"id": 371, "question": "Simplify the following expression (((6 + (3 + 6 * 4)) + (5 * 7)) * ((9 * 0) * (7 + 5))) where + has priority over *.", "expression": "(((6 + (3 + 6 * 4)) + (5 * 7)) * ((9 * 0) * (7 + 5)))", "think": ["3 + 6 = 9", "9 * 4 = 36", "6 + 36 = 42", "5 * 7 = 35", "42 + 35 = 77", "9 * 0 = 0", "7 + 5 = 12", "0 * 12 = 0", "77 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 372, "question": "Simplify the following expression (((8 * (7 * 0 + 2)) * (9 + 7)) * ((0 + 1) * (0 * 1))) where + has priority over *.", "expression": "(((8 * (7 * 0 + 2)) * (9 + 7)) * ((0 + 1) * (0 * 1)))", "think": ["0 + 2 = 2", "7 * 2 = 14", "8 * 14 = 112", "9 + 7 = 16", "112 * 16 = 1792", "0 + 1 = 1", "0 * 1 = 0", "1 * 0 = 0", "1792 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -2 "}
{"id": 373, "question": "Simplify the following expression (((1 * (3 + 7 + 1 * 0)) + (1 * 5)) * ((6 + 4) + (6 + 1))) where + has priority over *.", "expression": "(((1 * (3 + 7 + 1 * 0)) + (1 * 5)) * ((6 + 4) + (6 + 1)))", "think": ["3 + 7 = 10", "10 + 1 = 11", "11 * 0 = 0", "1 * 0 = 0", "1 * 5 = 5", "0 + 5 = 5", "6 + 4 = 10", "6 + 1 = 7", "10 + 7 = 17", "5 * 17 = 85"], "answer": 85, "settings": "dp_ 3 -2 "}
{"id": 374, "question": "Simplify the following expression (((6 + 2) * ((2 + 2 + 9) * 3)) + ((1 + 1) * (5 * 4))) where + has priority over *.", "expression": "(((6 + 2) * ((2 + 2 + 9) * 3)) + ((1 + 1) * (5 * 4)))", "think": ["6 + 2 = 8", "2 + 2 = 4", "4 + 9 = 13", "13 * 3 = 39", "8 * 39 = 312", "1 + 1 = 2", "5 * 4 = 20", "2 * 20 = 40", "312 + 40 = 352"], "answer": 352, "settings": "dp_ 3 -2 "}
{"id": 375, "question": "Simplify the following expression (((3 * (5 + 2 * 1)) * (9 * 7)) + ((1 + 2) + (9 + 6))) where + has priority over *.", "expression": "(((3 * (5 + 2 * 1)) * (9 * 7)) + ((1 + 2) + (9 + 6)))", "think": ["5 + 2 = 7", "7 * 1 = 7", "3 * 7 = 21", "9 * 7 = 63", "21 * 63 = 1323", "1 + 2 = 3", "9 + 6 = 15", "3 + 15 = 18", "1323 + 18 = 1341"], "answer": 1341, "settings": "dp_ 3 -2 "}
{"id": 376, "question": "Simplify the following expression (((6 + 5) + (2 * 3)) * (((7 * 8 + 1 * 9) + 6) * (5 + 5))) where + has priority over *.", "expression": "(((6 + 5) + (2 * 3)) * (((7 * 8 + 1 * 9) + 6) * (5 + 5)))", "think": ["6 + 5 = 11", "2 * 3 = 6", "11 + 6 = 17", "8 + 1 = 9", "7 * 9 = 63", "63 * 9 = 567", "567 + 6 = 573", "5 + 5 = 10", "573 * 10 = 5730", "17 * 5730 = 97410"], "answer": 97410, "settings": "dp_ 3 -3 "}
{"id": 377, "question": "Simplify the following expression (((0 + 3) + (1 * 3)) * ((4 * (4 + 1 + 9 + 7)) + (2 * 5))) where + has priority over *.", "expression": "(((0 + 3) + (1 * 3)) * ((4 * (4 + 1 + 9 + 7)) + (2 * 5)))", "think": ["0 + 3 = 3", "1 * 3 = 3", "3 + 3 = 6", "4 + 1 = 5", "5 + 9 = 14", "14 + 7 = 21", "4 * 21 = 84", "2 * 5 = 10", "84 + 10 = 94", "6 * 94 = 564"], "answer": 564, "settings": "dp_ 3 -3 "}
{"id": 378, "question": "Simplify the following expression (((5 + 0) * (0 + 5)) * ((1 * (7 * 2 + 3)) * (3 * 7))) where + has priority over *.", "expression": "(((5 + 0) * (0 + 5)) * ((1 * (7 * 2 + 3)) * (3 * 7)))", "think": ["5 + 0 = 5", "0 + 5 = 5", "5 * 5 = 25", "2 + 3 = 5", "7 * 5 = 35", "1 * 35 = 35", "3 * 7 = 21", "35 * 21 = 735", "25 * 735 = 18375"], "answer": 18375, "settings": "dp_ 3 -3 "}
{"id": 379, "question": "Simplify the following expression (((5 * (6 * 9 * 8)) * (8 + 7)) * ((1 + 2) + (6 + 9))) where + has priority over *.", "expression": "(((5 * (6 * 9 * 8)) * (8 + 7)) * ((1 + 2) + (6 + 9)))", "think": ["6 * 9 = 54", "54 * 8 = 432", "5 * 432 = 2160", "8 + 7 = 15", "2160 * 15 = 32400", "1 + 2 = 3", "6 + 9 = 15", "3 + 15 = 18", "32400 * 18 = 583200"], "answer": 583200, "settings": "dp_ 3 -3 "}
{"id": 380, "question": "Simplify the following expression (((5 * 1) + (6 * 2)) + (((8 + 9 + 5) + 8) * (8 + 1))) where + has priority over *.", "expression": "(((5 * 1) + (6 * 2)) + (((8 + 9 + 5) + 8) * (8 + 1)))", "think": ["5 * 1 = 5", "6 * 2 = 12", "5 + 12 = 17", "8 + 9 = 17", "17 + 5 = 22", "22 + 8 = 30", "8 + 1 = 9", "30 * 9 = 270", "17 + 270 = 287"], "answer": 287, "settings": "dp_ 3 -3 "}
{"id": 381, "question": "Simplify the following expression (((7 * (2 * 2 + 4)) + (5 + 4)) + ((3 + 9) + (1 + 7))) where + has priority over *.", "expression": "(((7 * (2 * 2 + 4)) + (5 + 4)) + ((3 + 9) + (1 + 7)))", "think": ["2 + 4 = 6", "2 * 6 = 12", "7 * 12 = 84", "5 + 4 = 9", "84 + 9 = 93", "3 + 9 = 12", "1 + 7 = 8", "12 + 8 = 20", "93 + 20 = 113"], "answer": 113, "settings": "dp_ 3 -3 "}
{"id": 382, "question": "Simplify the following expression (((4 + 6) + (7 * (3 + 0 + 3))) * ((3 + 3) * (5 + 0))) where + has priority over *.", "expression": "(((4 + 6) + (7 * (3 + 0 + 3))) * ((3 + 3) * (5 + 0)))", "think": ["4 + 6 = 10", "3 + 0 = 3", "3 + 3 = 6", "7 * 6 = 42", "10 + 42 = 52", "3 + 3 = 6", "5 + 0 = 5", "6 * 5 = 30", "52 * 30 = 1560"], "answer": 1560, "settings": "dp_ 3 -3 "}
{"id": 383, "question": "Simplify the following expression (((1 * 8) + (4 + 7)) + ((9 + 9) + ((1 * 1 * 6 * 7) * 7))) where + has priority over *.", "expression": "(((1 * 8) + (4 + 7)) + ((9 + 9) + ((1 * 1 * 6 * 7) * 7)))", "think": ["1 * 8 = 8", "4 + 7 = 11", "8 + 11 = 19", "9 + 9 = 18", "1 * 1 = 1", "1 * 6 = 6", "6 * 7 = 42", "42 * 7 = 294", "18 + 294 = 312", "19 + 312 = 331"], "answer": 331, "settings": "dp_ 3 -3 "}
{"id": 384, "question": "Simplify the following expression (((6 + 5) + ((7 + 8 + 1 + 3) + 3)) + ((2 * 6) + (4 + 7))) where + has priority over *.", "expression": "(((6 + 5) + ((7 + 8 + 1 + 3) + 3)) + ((2 * 6) + (4 + 7)))", "think": ["6 + 5 = 11", "7 + 8 = 15", "15 + 1 = 16", "16 + 3 = 19", "19 + 3 = 22", "11 + 22 = 33", "2 * 6 = 12", "4 + 7 = 11", "12 + 11 = 23", "33 + 23 = 56"], "answer": 56, "settings": "dp_ 3 -3 "}
{"id": 385, "question": "Simplify the following expression (((7 * 3) * (0 * 2)) + (((3 + 4 + 3 * 0) + 4) * (4 * 6))) where + has priority over *.", "expression": "(((7 * 3) * (0 * 2)) + (((3 + 4 + 3 * 0) + 4) * (4 * 6)))", "think": ["7 * 3 = 21", "0 * 2 = 0", "21 * 0 = 0", "3 + 4 = 7", "7 + 3 = 10", "10 * 0 = 0", "0 + 4 = 4", "4 * 6 = 24", "4 * 24 = 96", "0 + 96 = 96"], "answer": 96, "settings": "dp_ 3 -3 "}
{"id": 386, "question": "Simplify the following expression ((((1 * 6 * 3) + 8) * (2 + 1)) + ((6 + 1) + (9 + 9))) where + has priority over *.", "expression": "((((1 * 6 * 3) + 8) * (2 + 1)) + ((6 + 1) + (9 + 9)))", "think": ["1 * 6 = 6", "6 * 3 = 18", "18 + 8 = 26", "2 + 1 = 3", "26 * 3 = 78", "6 + 1 = 7", "9 + 9 = 18", "7 + 18 = 25", "78 + 25 = 103"], "answer": 103, "settings": "dp_ 3 -3 "}
{"id": 387, "question": "Simplify the following expression (((6 * 2) + (7 * (4 * 2 + 3))) * ((7 + 9) + (1 + 8))) where + has priority over *.", "expression": "(((6 * 2) + (7 * (4 * 2 + 3))) * ((7 + 9) + (1 + 8)))", "think": ["6 * 2 = 12", "2 + 3 = 5", "4 * 5 = 20", "7 * 20 = 140", "12 + 140 = 152", "7 + 9 = 16", "1 + 8 = 9", "16 + 9 = 25", "152 * 25 = 3800"], "answer": 3800, "settings": "dp_ 3 -3 "}
{"id": 388, "question": "Simplify the following expression (((7 + 8) * ((4 + 9 * 3) * 8)) * ((1 * 2) + (1 * 1))) where + has priority over *.", "expression": "(((7 + 8) * ((4 + 9 * 3) * 8)) * ((1 * 2) + (1 * 1)))", "think": ["7 + 8 = 15", "4 + 9 = 13", "13 * 3 = 39", "39 * 8 = 312", "15 * 312 = 4680", "1 * 2 = 2", "1 * 1 = 1", "2 + 1 = 3", "4680 * 3 = 14040"], "answer": 14040, "settings": "dp_ 3 -3 "}
{"id": 389, "question": "Simplify the following expression (((0 * 1) * (4 * 0)) * ((2 * 4) + ((0 + 1 + 8) + 8))) where + has priority over *.", "expression": "(((0 * 1) * (4 * 0)) * ((2 * 4) + ((0 + 1 + 8) + 8)))", "think": ["0 * 1 = 0", "4 * 0 = 0", "0 * 0 = 0", "2 * 4 = 8", "0 + 1 = 1", "1 + 8 = 9", "9 + 8 = 17", "8 + 17 = 25", "0 * 25 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 390, "question": "Simplify the following expression (((6 + 2) * (4 + (2 + 3 + 6))) + ((3 * 3) + (5 + 8))) where + has priority over *.", "expression": "(((6 + 2) * (4 + (2 + 3 + 6))) + ((3 * 3) + (5 + 8)))", "think": ["6 + 2 = 8", "2 + 3 = 5", "5 + 6 = 11", "4 + 11 = 15", "8 * 15 = 120", "3 * 3 = 9", "5 + 8 = 13", "9 + 13 = 22", "120 + 22 = 142"], "answer": 142, "settings": "dp_ 3 -3 "}
{"id": 391, "question": "Simplify the following expression (((6 * 3) + (2 * 1)) + (((3 * 0 * 3 * 1) + 3) * (7 + 5))) where + has priority over *.", "expression": "(((6 * 3) + (2 * 1)) + (((3 * 0 * 3 * 1) + 3) * (7 + 5)))", "think": ["6 * 3 = 18", "2 * 1 = 2", "18 + 2 = 20", "3 * 0 = 0", "0 * 3 = 0", "0 * 1 = 0", "0 + 3 = 3", "7 + 5 = 12", "3 * 12 = 36", "20 + 36 = 56"], "answer": 56, "settings": "dp_ 3 -3 "}
{"id": 392, "question": "Simplify the following expression (((8 * (8 * 1 + 4)) * (1 + 4)) * ((0 * 1) + (5 * 5))) where + has priority over *.", "expression": "(((8 * (8 * 1 + 4)) * (1 + 4)) * ((0 * 1) + (5 * 5)))", "think": ["1 + 4 = 5", "8 * 5 = 40", "8 * 40 = 320", "1 + 4 = 5", "320 * 5 = 1600", "0 * 1 = 0", "5 * 5 = 25", "0 + 25 = 25", "1600 * 25 = 40000"], "answer": 40000, "settings": "dp_ 3 -3 "}
{"id": 393, "question": "Simplify the following expression (((8 + 8) * (5 + 6)) + (((6 * 5 * 8) * 5) + (4 + 8))) where + has priority over *.", "expression": "(((8 + 8) * (5 + 6)) + (((6 * 5 * 8) * 5) + (4 + 8)))", "think": ["8 + 8 = 16", "5 + 6 = 11", "16 * 11 = 176", "6 * 5 = 30", "30 * 8 = 240", "240 * 5 = 1200", "4 + 8 = 12", "1200 + 12 = 1212", "176 + 1212 = 1388"], "answer": 1388, "settings": "dp_ 3 -3 "}
{"id": 394, "question": "Simplify the following expression (((6 * 2) + (6 * 8)) + ((4 * (7 + 7 * 2)) + (9 * 9))) where + has priority over *.", "expression": "(((6 * 2) + (6 * 8)) + ((4 * (7 + 7 * 2)) + (9 * 9)))", "think": ["6 * 2 = 12", "6 * 8 = 48", "12 + 48 = 60", "7 + 7 = 14", "14 * 2 = 28", "4 * 28 = 112", "9 * 9 = 81", "112 + 81 = 193", "60 + 193 = 253"], "answer": 253, "settings": "dp_ 3 -3 "}
{"id": 395, "question": "Simplify the following expression ((((9 * 3 * 6) * 3) * (3 * 3)) + ((0 + 3) + (9 * 1))) where + has priority over *.", "expression": "((((9 * 3 * 6) * 3) * (3 * 3)) + ((0 + 3) + (9 * 1)))", "think": ["9 * 3 = 27", "27 * 6 = 162", "162 * 3 = 486", "3 * 3 = 9", "486 * 9 = 4374", "0 + 3 = 3", "9 * 1 = 9", "3 + 9 = 12", "4374 + 12 = 4386"], "answer": 4386, "settings": "dp_ 3 -3 "}
{"id": 396, "question": "Simplify the following expression (((1 + 6) + ((8 * 8 * 9) + 8)) + ((8 + 3) * (7 + 2))) where + has priority over *.", "expression": "(((1 + 6) + ((8 * 8 * 9) + 8)) + ((8 + 3) * (7 + 2)))", "think": ["1 + 6 = 7", "8 * 8 = 64", "64 * 9 = 576", "576 + 8 = 584", "7 + 584 = 591", "8 + 3 = 11", "7 + 2 = 9", "11 * 9 = 99", "591 + 99 = 690"], "answer": 690, "settings": "dp_ 3 -3 "}
{"id": 397, "question": "Simplify the following expression (((7 + 7) * (3 * (5 + 8 + 2))) * ((4 + 7) * (4 + 3))) where + has priority over *.", "expression": "(((7 + 7) * (3 * (5 + 8 + 2))) * ((4 + 7) * (4 + 3)))", "think": ["7 + 7 = 14", "5 + 8 = 13", "13 + 2 = 15", "3 * 15 = 45", "14 * 45 = 630", "4 + 7 = 11", "4 + 3 = 7", "11 * 7 = 77", "630 * 77 = 48510"], "answer": 48510, "settings": "dp_ 3 -3 "}
{"id": 398, "question": "Simplify the following expression ((((6 + 7 * 4) + 1) * (6 * 5)) + ((0 * 3) * (6 * 9))) where + has priority over *.", "expression": "((((6 + 7 * 4) + 1) * (6 * 5)) + ((0 * 3) * (6 * 9)))", "think": ["6 + 7 = 13", "13 * 4 = 52", "52 + 1 = 53", "6 * 5 = 30", "53 * 30 = 1590", "0 * 3 = 0", "6 * 9 = 54", "0 * 54 = 0", "1590 + 0 = 1590"], "answer": 1590, "settings": "dp_ 3 -3 "}
{"id": 399, "question": "Simplify the following expression ((((9 + 9 + 6) + 3) * (6 * 7)) * ((5 * 6) + (7 + 2))) where + has priority over *.", "expression": "((((9 + 9 + 6) + 3) * (6 * 7)) * ((5 * 6) + (7 + 2)))", "think": ["9 + 9 = 18", "18 + 6 = 24", "24 + 3 = 27", "6 * 7 = 42", "27 * 42 = 1134", "5 * 6 = 30", "7 + 2 = 9", "30 + 9 = 39", "1134 * 39 = 44226"], "answer": 44226, "settings": "dp_ 3 -3 "}
{"id": 400, "question": "Simplify the following expression (((0 + (0 + 8 * 3)) * (5 * 3)) + ((5 * 6) * (6 * 4))) where + has priority over *.", "expression": "(((0 + (0 + 8 * 3)) * (5 * 3)) + ((5 * 6) * (6 * 4)))", "think": ["0 + 8 = 8", "8 * 3 = 24", "0 + 24 = 24", "5 * 3 = 15", "24 * 15 = 360", "5 * 6 = 30", "6 * 4 = 24", "30 * 24 = 720", "360 + 720 = 1080"], "answer": 1080, "settings": "dp_ 3 -3 "}
{"id": 401, "question": "Simplify the following expression (((3 + 3) + (9 + 2)) + ((7 + (9 + 9 * 1 + 9)) + (7 + 4))) where + has priority over *.", "expression": "(((3 + 3) + (9 + 2)) + ((7 + (9 + 9 * 1 + 9)) + (7 + 4)))", "think": ["3 + 3 = 6", "9 + 2 = 11", "6 + 11 = 17", "9 + 9 = 18", "1 + 9 = 10", "18 * 10 = 180", "7 + 180 = 187", "7 + 4 = 11", "187 + 11 = 198", "17 + 198 = 215"], "answer": 215, "settings": "dp_ 3 -3 "}
{"id": 402, "question": "Simplify the following expression (((6 * 3) * (9 + 3)) + ((9 * 1) + ((5 * 1 + 6) + 8))) where + has priority over *.", "expression": "(((6 * 3) * (9 + 3)) + ((9 * 1) + ((5 * 1 + 6) + 8)))", "think": ["6 * 3 = 18", "9 + 3 = 12", "18 * 12 = 216", "9 * 1 = 9", "1 + 6 = 7", "5 * 7 = 35", "35 + 8 = 43", "9 + 43 = 52", "216 + 52 = 268"], "answer": 268, "settings": "dp_ 3 -3 "}
{"id": 403, "question": "Simplify the following expression (((5 * (7 * 3 * 5)) + (6 + 2)) * ((7 * 6) * (5 * 3))) where + has priority over *.", "expression": "(((5 * (7 * 3 * 5)) + (6 + 2)) * ((7 * 6) * (5 * 3)))", "think": ["7 * 3 = 21", "21 * 5 = 105", "5 * 105 = 525", "6 + 2 = 8", "525 + 8 = 533", "7 * 6 = 42", "5 * 3 = 15", "42 * 15 = 630", "533 * 630 = 335790"], "answer": 335790, "settings": "dp_ 3 -3 "}
{"id": 404, "question": "Simplify the following expression (((2 * (6 + 7 * 8 * 7)) * (5 + 4)) + ((9 * 4) * (8 + 3))) where + has priority over *.", "expression": "(((2 * (6 + 7 * 8 * 7)) * (5 + 4)) + ((9 * 4) * (8 + 3)))", "think": ["6 + 7 = 13", "13 * 8 = 104", "104 * 7 = 728", "2 * 728 = 1456", "5 + 4 = 9", "1456 * 9 = 13104", "9 * 4 = 36", "8 + 3 = 11", "36 * 11 = 396", "13104 + 396 = 13500"], "answer": 13500, "settings": "dp_ 3 -3 "}
{"id": 405, "question": "Simplify the following expression (((3 * 6) + (4 + 9)) + (((7 * 4 * 3) * 8) * (6 * 8))) where + has priority over *.", "expression": "(((3 * 6) + (4 + 9)) + (((7 * 4 * 3) * 8) * (6 * 8)))", "think": ["3 * 6 = 18", "4 + 9 = 13", "18 + 13 = 31", "7 * 4 = 28", "28 * 3 = 84", "84 * 8 = 672", "6 * 8 = 48", "672 * 48 = 32256", "31 + 32256 = 32287"], "answer": 32287, "settings": "dp_ 3 -3 "}
{"id": 406, "question": "Simplify the following expression (((1 * 8) + (3 + 3)) + (((5 + 2 + 4 * 0) * 8) * (1 * 3))) where + has priority over *.", "expression": "(((1 * 8) + (3 + 3)) + (((5 + 2 + 4 * 0) * 8) * (1 * 3)))", "think": ["1 * 8 = 8", "3 + 3 = 6", "8 + 6 = 14", "5 + 2 = 7", "7 + 4 = 11", "11 * 0 = 0", "0 * 8 = 0", "1 * 3 = 3", "0 * 3 = 0", "14 + 0 = 14"], "answer": 14, "settings": "dp_ 3 -3 "}
{"id": 407, "question": "Simplify the following expression (((7 + 1) * (9 + (1 + 6 + 7 + 2))) + ((7 * 5) * (0 + 4))) where + has priority over *.", "expression": "(((7 + 1) * (9 + (1 + 6 + 7 + 2))) + ((7 * 5) * (0 + 4)))", "think": ["7 + 1 = 8", "1 + 6 = 7", "7 + 7 = 14", "14 + 2 = 16", "9 + 16 = 25", "8 * 25 = 200", "7 * 5 = 35", "0 + 4 = 4", "35 * 4 = 140", "200 + 140 = 340"], "answer": 340, "settings": "dp_ 3 -3 "}
{"id": 408, "question": "Simplify the following expression (((1 + 8) + (9 * 9)) * (((9 + 0 + 3) * 7) + (9 * 6))) where + has priority over *.", "expression": "(((1 + 8) + (9 * 9)) * (((9 + 0 + 3) * 7) + (9 * 6)))", "think": ["1 + 8 = 9", "9 * 9 = 81", "9 + 81 = 90", "9 + 0 = 9", "9 + 3 = 12", "12 * 7 = 84", "9 * 6 = 54", "84 + 54 = 138", "90 * 138 = 12420"], "answer": 12420, "settings": "dp_ 3 -3 "}
{"id": 409, "question": "Simplify the following expression (((3 + 2) + (2 + 0)) * (((4 + 7 + 4) * 7) * (0 * 3))) where + has priority over *.", "expression": "(((3 + 2) + (2 + 0)) * (((4 + 7 + 4) * 7) * (0 * 3)))", "think": ["3 + 2 = 5", "2 + 0 = 2", "5 + 2 = 7", "4 + 7 = 11", "11 + 4 = 15", "15 * 7 = 105", "0 * 3 = 0", "105 * 0 = 0", "7 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 410, "question": "Simplify the following expression (((8 + 3) * (4 + 2)) + ((2 + 4) + (7 * (4 * 6 * 7)))) where + has priority over *.", "expression": "(((8 + 3) * (4 + 2)) + ((2 + 4) + (7 * (4 * 6 * 7))))", "think": ["8 + 3 = 11", "4 + 2 = 6", "11 * 6 = 66", "2 + 4 = 6", "4 * 6 = 24", "24 * 7 = 168", "7 * 168 = 1176", "6 + 1176 = 1182", "66 + 1182 = 1248"], "answer": 1248, "settings": "dp_ 3 -3 "}
{"id": 411, "question": "Simplify the following expression (((5 * 9) + (0 * 1)) + ((4 + 9) + (2 + (2 * 9 * 1)))) where + has priority over *.", "expression": "(((5 * 9) + (0 * 1)) + ((4 + 9) + (2 + (2 * 9 * 1))))", "think": ["5 * 9 = 45", "0 * 1 = 0", "45 + 0 = 45", "4 + 9 = 13", "2 * 9 = 18", "18 * 1 = 18", "2 + 18 = 20", "13 + 20 = 33", "45 + 33 = 78"], "answer": 78, "settings": "dp_ 3 -3 "}
{"id": 412, "question": "Simplify the following expression (((5 * 5) * (2 + 5)) * ((4 * (5 * 1 + 8)) * (7 + 1))) where + has priority over *.", "expression": "(((5 * 5) * (2 + 5)) * ((4 * (5 * 1 + 8)) * (7 + 1)))", "think": ["5 * 5 = 25", "2 + 5 = 7", "25 * 7 = 175", "1 + 8 = 9", "5 * 9 = 45", "4 * 45 = 180", "7 + 1 = 8", "180 * 8 = 1440", "175 * 1440 = 252000"], "answer": 252000, "settings": "dp_ 3 -3 "}
{"id": 413, "question": "Simplify the following expression (((3 + 8) * (9 * (0 + 9 * 3 + 8))) * ((3 + 4) * (4 + 7))) where + has priority over *.", "expression": "(((3 + 8) * (9 * (0 + 9 * 3 + 8))) * ((3 + 4) * (4 + 7)))", "think": ["3 + 8 = 11", "0 + 9 = 9", "3 + 8 = 11", "9 * 11 = 99", "9 * 99 = 891", "11 * 891 = 9801", "3 + 4 = 7", "4 + 7 = 11", "7 * 11 = 77", "9801 * 77 = 754677"], "answer": 754677, "settings": "dp_ 3 -3 "}
{"id": 414, "question": "Simplify the following expression (((1 + 7) + ((3 + 9 + 4) + 7)) * ((6 * 7) * (3 * 7))) where + has priority over *.", "expression": "(((1 + 7) + ((3 + 9 + 4) + 7)) * ((6 * 7) * (3 * 7)))", "think": ["1 + 7 = 8", "3 + 9 = 12", "12 + 4 = 16", "16 + 7 = 23", "8 + 23 = 31", "6 * 7 = 42", "3 * 7 = 21", "42 * 21 = 882", "31 * 882 = 27342"], "answer": 27342, "settings": "dp_ 3 -3 "}
{"id": 415, "question": "Simplify the following expression (((0 * 4) * (9 * 9)) * ((7 + 8) * ((5 + 3 * 3) * 5))) where + has priority over *.", "expression": "(((0 * 4) * (9 * 9)) * ((7 + 8) * ((5 + 3 * 3) * 5)))", "think": ["0 * 4 = 0", "9 * 9 = 81", "0 * 81 = 0", "7 + 8 = 15", "5 + 3 = 8", "8 * 3 = 24", "24 * 5 = 120", "15 * 120 = 1800", "0 * 1800 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 416, "question": "Simplify the following expression (((7 * (7 + 0 * 2)) + (2 * 7)) * ((8 + 9) + (1 * 7))) where + has priority over *.", "expression": "(((7 * (7 + 0 * 2)) + (2 * 7)) * ((8 + 9) + (1 * 7)))", "think": ["7 + 0 = 7", "7 * 2 = 14", "7 * 14 = 98", "2 * 7 = 14", "98 + 14 = 112", "8 + 9 = 17", "1 * 7 = 7", "17 + 7 = 24", "112 * 24 = 2688"], "answer": 2688, "settings": "dp_ 3 -3 "}
{"id": 417, "question": "Simplify the following expression ((((4 + 3 * 1) * 9) * (1 * 5)) + ((7 * 8) * (9 + 1))) where + has priority over *.", "expression": "((((4 + 3 * 1) * 9) * (1 * 5)) + ((7 * 8) * (9 + 1)))", "think": ["4 + 3 = 7", "7 * 1 = 7", "7 * 9 = 63", "1 * 5 = 5", "63 * 5 = 315", "7 * 8 = 56", "9 + 1 = 10", "56 * 10 = 560", "315 + 560 = 875"], "answer": 875, "settings": "dp_ 3 -3 "}
{"id": 418, "question": "Simplify the following expression (((4 + 0) * (5 + 0)) + ((5 * 6) * ((2 + 2 + 9) + 8))) where + has priority over *.", "expression": "(((4 + 0) * (5 + 0)) + ((5 * 6) * ((2 + 2 + 9) + 8)))", "think": ["4 + 0 = 4", "5 + 0 = 5", "4 * 5 = 20", "5 * 6 = 30", "2 + 2 = 4", "4 + 9 = 13", "13 + 8 = 21", "30 * 21 = 630", "20 + 630 = 650"], "answer": 650, "settings": "dp_ 3 -3 "}
{"id": 419, "question": "Simplify the following expression (((9 * (5 * 9 * 4)) + (7 + 4)) * ((0 * 7) * (8 * 2))) where + has priority over *.", "expression": "(((9 * (5 * 9 * 4)) + (7 + 4)) * ((0 * 7) * (8 * 2)))", "think": ["5 * 9 = 45", "45 * 4 = 180", "9 * 180 = 1620", "7 + 4 = 11", "1620 + 11 = 1631", "0 * 7 = 0", "8 * 2 = 16", "0 * 16 = 0", "1631 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 420, "question": "Simplify the following expression ((((7 + 4 * 3) + 7) * (3 + 6)) * ((4 * 0) * (4 * 0))) where + has priority over *.", "expression": "((((7 + 4 * 3) + 7) * (3 + 6)) * ((4 * 0) * (4 * 0)))", "think": ["7 + 4 = 11", "11 * 3 = 33", "33 + 7 = 40", "3 + 6 = 9", "40 * 9 = 360", "4 * 0 = 0", "4 * 0 = 0", "0 * 0 = 0", "360 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 421, "question": "Simplify the following expression (((1 + (8 * 5 + 8 * 7)) * (7 * 0)) + ((1 + 4) * (6 * 2))) where + has priority over *.", "expression": "(((1 + (8 * 5 + 8 * 7)) * (7 * 0)) + ((1 + 4) * (6 * 2)))", "think": ["5 + 8 = 13", "8 * 13 = 104", "104 * 7 = 728", "1 + 728 = 729", "7 * 0 = 0", "729 * 0 = 0", "1 + 4 = 5", "6 * 2 = 12", "5 * 12 = 60", "0 + 60 = 60"], "answer": 60, "settings": "dp_ 3 -3 "}
{"id": 422, "question": "Simplify the following expression (((7 + (4 * 9 * 1)) * (3 + 6)) * ((6 + 0) * (8 * 1))) where + has priority over *.", "expression": "(((7 + (4 * 9 * 1)) * (3 + 6)) * ((6 + 0) * (8 * 1)))", "think": ["4 * 9 = 36", "36 * 1 = 36", "7 + 36 = 43", "3 + 6 = 9", "43 * 9 = 387", "6 + 0 = 6", "8 * 1 = 8", "6 * 8 = 48", "387 * 48 = 18576"], "answer": 18576, "settings": "dp_ 3 -3 "}
{"id": 423, "question": "Simplify the following expression ((((7 + 1 + 8) + 8) * (9 * 3)) + ((4 * 6) + (2 + 0))) where + has priority over *.", "expression": "((((7 + 1 + 8) + 8) * (9 * 3)) + ((4 * 6) + (2 + 0)))", "think": ["7 + 1 = 8", "8 + 8 = 16", "16 + 8 = 24", "9 * 3 = 27", "24 * 27 = 648", "4 * 6 = 24", "2 + 0 = 2", "24 + 2 = 26", "648 + 26 = 674"], "answer": 674, "settings": "dp_ 3 -3 "}
{"id": 424, "question": "Simplify the following expression (((5 * 8) * ((7 * 7 + 3 * 8) * 2)) + ((7 + 9) * (4 * 0))) where + has priority over *.", "expression": "(((5 * 8) * ((7 * 7 + 3 * 8) * 2)) + ((7 + 9) * (4 * 0)))", "think": ["5 * 8 = 40", "7 + 3 = 10", "7 * 10 = 70", "70 * 8 = 560", "560 * 2 = 1120", "40 * 1120 = 44800", "7 + 9 = 16", "4 * 0 = 0", "16 * 0 = 0", "44800 + 0 = 44800"], "answer": 44800, "settings": "dp_ 3 -3 "}
{"id": 425, "question": "Simplify the following expression (((4 * 3) + (7 + (8 + 3 + 9 * 2))) * ((0 + 5) + (2 + 9))) where + has priority over *.", "expression": "(((4 * 3) + (7 + (8 + 3 + 9 * 2))) * ((0 + 5) + (2 + 9)))", "think": ["4 * 3 = 12", "8 + 3 = 11", "11 + 9 = 20", "20 * 2 = 40", "7 + 40 = 47", "12 + 47 = 59", "0 + 5 = 5", "2 + 9 = 11", "5 + 11 = 16", "59 * 16 = 944"], "answer": 944, "settings": "dp_ 3 -3 "}
{"id": 426, "question": "Simplify the following expression ((((4 * 0 + 2 + 7) + 8) * (2 * 1)) + ((0 + 5) + (9 + 5))) where + has priority over *.", "expression": "((((4 * 0 + 2 + 7) + 8) * (2 * 1)) + ((0 + 5) + (9 + 5)))", "think": ["0 + 2 = 2", "2 + 7 = 9", "4 * 9 = 36", "36 + 8 = 44", "2 * 1 = 2", "44 * 2 = 88", "0 + 5 = 5", "9 + 5 = 14", "5 + 14 = 19", "88 + 19 = 107"], "answer": 107, "settings": "dp_ 3 -3 "}
{"id": 427, "question": "Simplify the following expression (((7 + (7 + 1 * 9)) * (9 + 0)) * ((0 * 0) * (6 * 6))) where + has priority over *.", "expression": "(((7 + (7 + 1 * 9)) * (9 + 0)) * ((0 * 0) * (6 * 6)))", "think": ["7 + 1 = 8", "8 * 9 = 72", "7 + 72 = 79", "9 + 0 = 9", "79 * 9 = 711", "0 * 0 = 0", "6 * 6 = 36", "0 * 36 = 0", "711 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 428, "question": "Simplify the following expression (((4 + (7 * 3 * 7)) + (6 * 9)) + ((8 * 9) * (1 * 1))) where + has priority over *.", "expression": "(((4 + (7 * 3 * 7)) + (6 * 9)) + ((8 * 9) * (1 * 1)))", "think": ["7 * 3 = 21", "21 * 7 = 147", "4 + 147 = 151", "6 * 9 = 54", "151 + 54 = 205", "8 * 9 = 72", "1 * 1 = 1", "72 * 1 = 72", "205 + 72 = 277"], "answer": 277, "settings": "dp_ 3 -3 "}
{"id": 429, "question": "Simplify the following expression (((5 + (5 + 2 * 1)) * (4 * 5)) * ((1 * 1) + (1 + 6))) where + has priority over *.", "expression": "(((5 + (5 + 2 * 1)) * (4 * 5)) * ((1 * 1) + (1 + 6)))", "think": ["5 + 2 = 7", "7 * 1 = 7", "5 + 7 = 12", "4 * 5 = 20", "12 * 20 = 240", "1 * 1 = 1", "1 + 6 = 7", "1 + 7 = 8", "240 * 8 = 1920"], "answer": 1920, "settings": "dp_ 3 -3 "}
{"id": 430, "question": "Simplify the following expression (((0 * 4) * (5 * 1)) * ((7 + (4 * 9 + 3 * 0)) + (5 + 8))) where + has priority over *.", "expression": "(((0 * 4) * (5 * 1)) * ((7 + (4 * 9 + 3 * 0)) + (5 + 8)))", "think": ["0 * 4 = 0", "5 * 1 = 5", "0 * 5 = 0", "9 + 3 = 12", "4 * 12 = 48", "48 * 0 = 0", "7 + 0 = 7", "5 + 8 = 13", "7 + 13 = 20", "0 * 20 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 431, "question": "Simplify the following expression (((5 * 5) * (2 + 2)) + ((2 + 0) * ((7 + 5 * 4) + 3))) where + has priority over *.", "expression": "(((5 * 5) * (2 + 2)) + ((2 + 0) * ((7 + 5 * 4) + 3)))", "think": ["5 * 5 = 25", "2 + 2 = 4", "25 * 4 = 100", "2 + 0 = 2", "7 + 5 = 12", "12 * 4 = 48", "48 + 3 = 51", "2 * 51 = 102", "100 + 102 = 202"], "answer": 202, "settings": "dp_ 3 -3 "}
{"id": 432, "question": "Simplify the following expression (((2 + 2) + (1 + (1 * 5 + 4))) * ((7 * 9) * (6 * 4))) where + has priority over *.", "expression": "(((2 + 2) + (1 + (1 * 5 + 4))) * ((7 * 9) * (6 * 4)))", "think": ["2 + 2 = 4", "5 + 4 = 9", "1 * 9 = 9", "1 + 9 = 10", "4 + 10 = 14", "7 * 9 = 63", "6 * 4 = 24", "63 * 24 = 1512", "14 * 1512 = 21168"], "answer": 21168, "settings": "dp_ 3 -3 "}
{"id": 433, "question": "Simplify the following expression ((((6 + 2 * 8) + 6) * (0 + 3)) * ((2 + 4) * (5 * 1))) where + has priority over *.", "expression": "((((6 + 2 * 8) + 6) * (0 + 3)) * ((2 + 4) * (5 * 1)))", "think": ["6 + 2 = 8", "8 * 8 = 64", "64 + 6 = 70", "0 + 3 = 3", "70 * 3 = 210", "2 + 4 = 6", "5 * 1 = 5", "6 * 5 = 30", "210 * 30 = 6300"], "answer": 6300, "settings": "dp_ 3 -3 "}
{"id": 434, "question": "Simplify the following expression (((6 + (0 + 5 * 5)) * (0 * 7)) + ((9 * 6) + (6 * 4))) where + has priority over *.", "expression": "(((6 + (0 + 5 * 5)) * (0 * 7)) + ((9 * 6) + (6 * 4)))", "think": ["0 + 5 = 5", "5 * 5 = 25", "6 + 25 = 31", "0 * 7 = 0", "31 * 0 = 0", "9 * 6 = 54", "6 * 4 = 24", "54 + 24 = 78", "0 + 78 = 78"], "answer": 78, "settings": "dp_ 3 -3 "}
{"id": 435, "question": "Simplify the following expression (((3 + (8 * 3 * 2)) * (8 * 1)) + ((5 * 3) * (2 * 1))) where + has priority over *.", "expression": "(((3 + (8 * 3 * 2)) * (8 * 1)) + ((5 * 3) * (2 * 1)))", "think": ["8 * 3 = 24", "24 * 2 = 48", "3 + 48 = 51", "8 * 1 = 8", "51 * 8 = 408", "5 * 3 = 15", "2 * 1 = 2", "15 * 2 = 30", "408 + 30 = 438"], "answer": 438, "settings": "dp_ 3 -3 "}
{"id": 436, "question": "Simplify the following expression (((4 + 3) + (9 + 2)) + (((5 * 2 + 7) + 7) + (9 * 9))) where + has priority over *.", "expression": "(((4 + 3) + (9 + 2)) + (((5 * 2 + 7) + 7) + (9 * 9)))", "think": ["4 + 3 = 7", "9 + 2 = 11", "7 + 11 = 18", "2 + 7 = 9", "5 * 9 = 45", "45 + 7 = 52", "9 * 9 = 81", "52 + 81 = 133", "18 + 133 = 151"], "answer": 151, "settings": "dp_ 3 -3 "}
{"id": 437, "question": "Simplify the following expression (((9 * (1 * 9 * 9)) * (8 * 1)) * ((7 * 0) * (5 + 4))) where + has priority over *.", "expression": "(((9 * (1 * 9 * 9)) * (8 * 1)) * ((7 * 0) * (5 + 4)))", "think": ["1 * 9 = 9", "9 * 9 = 81", "9 * 81 = 729", "8 * 1 = 8", "729 * 8 = 5832", "7 * 0 = 0", "5 + 4 = 9", "0 * 9 = 0", "5832 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 438, "question": "Simplify the following expression ((((7 + 7 * 8 * 4) + 9) * (8 * 2)) + ((1 * 5) + (8 + 2))) where + has priority over *.", "expression": "((((7 + 7 * 8 * 4) + 9) * (8 * 2)) + ((1 * 5) + (8 + 2)))", "think": ["7 + 7 = 14", "14 * 8 = 112", "112 * 4 = 448", "448 + 9 = 457", "8 * 2 = 16", "457 * 16 = 7312", "1 * 5 = 5", "8 + 2 = 10", "5 + 10 = 15", "7312 + 15 = 7327"], "answer": 7327, "settings": "dp_ 3 -3 "}
{"id": 439, "question": "Simplify the following expression (((9 * 0) * ((4 + 6 + 4) * 5)) * ((4 * 4) + (5 + 1))) where + has priority over *.", "expression": "(((9 * 0) * ((4 + 6 + 4) * 5)) * ((4 * 4) + (5 + 1)))", "think": ["9 * 0 = 0", "4 + 6 = 10", "10 + 4 = 14", "14 * 5 = 70", "0 * 70 = 0", "4 * 4 = 16", "5 + 1 = 6", "16 + 6 = 22", "0 * 22 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 440, "question": "Simplify the following expression (((8 + 1) * (8 * (2 * 2 + 1 + 5))) * ((4 * 2) + (5 + 7))) where + has priority over *.", "expression": "(((8 + 1) * (8 * (2 * 2 + 1 + 5))) * ((4 * 2) + (5 + 7)))", "think": ["8 + 1 = 9", "2 + 1 = 3", "3 + 5 = 8", "2 * 8 = 16", "8 * 16 = 128", "9 * 128 = 1152", "4 * 2 = 8", "5 + 7 = 12", "8 + 12 = 20", "1152 * 20 = 23040"], "answer": 23040, "settings": "dp_ 3 -3 "}
{"id": 441, "question": "Simplify the following expression (((2 + 2) * (7 + (7 * 3 * 7))) + ((3 * 7) * (7 * 3))) where + has priority over *.", "expression": "(((2 + 2) * (7 + (7 * 3 * 7))) + ((3 * 7) * (7 * 3)))", "think": ["2 + 2 = 4", "7 * 3 = 21", "21 * 7 = 147", "7 + 147 = 154", "4 * 154 = 616", "3 * 7 = 21", "7 * 3 = 21", "21 * 21 = 441", "616 + 441 = 1057"], "answer": 1057, "settings": "dp_ 3 -3 "}
{"id": 442, "question": "Simplify the following expression (((2 * 3) * ((7 + 8 * 1) + 0)) * ((8 * 1) * (4 + 1))) where + has priority over *.", "expression": "(((2 * 3) * ((7 + 8 * 1) + 0)) * ((8 * 1) * (4 + 1)))", "think": ["2 * 3 = 6", "7 + 8 = 15", "15 * 1 = 15", "15 + 0 = 15", "6 * 15 = 90", "8 * 1 = 8", "4 + 1 = 5", "8 * 5 = 40", "90 * 40 = 3600"], "answer": 3600, "settings": "dp_ 3 -3 "}
{"id": 443, "question": "Simplify the following expression (((0 * 6) * (6 + 8)) + ((6 + (5 + 2 * 2 * 2)) * (3 * 0))) where + has priority over *.", "expression": "(((0 * 6) * (6 + 8)) + ((6 + (5 + 2 * 2 * 2)) * (3 * 0)))", "think": ["0 * 6 = 0", "6 + 8 = 14", "0 * 14 = 0", "5 + 2 = 7", "7 * 2 = 14", "14 * 2 = 28", "6 + 28 = 34", "3 * 0 = 0", "34 * 0 = 0", "0 + 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 444, "question": "Simplify the following expression (((1 + 0) * (3 * (9 + 7 + 7))) * ((4 + 3) * (1 * 0))) where + has priority over *.", "expression": "(((1 + 0) * (3 * (9 + 7 + 7))) * ((4 + 3) * (1 * 0)))", "think": ["1 + 0 = 1", "9 + 7 = 16", "16 + 7 = 23", "3 * 23 = 69", "1 * 69 = 69", "4 + 3 = 7", "1 * 0 = 0", "7 * 0 = 0", "69 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 445, "question": "Simplify the following expression ((((7 * 0 * 4) + 6) + (9 + 5)) + ((2 * 1) + (1 * 8))) where + has priority over *.", "expression": "((((7 * 0 * 4) + 6) + (9 + 5)) + ((2 * 1) + (1 * 8)))", "think": ["7 * 0 = 0", "0 * 4 = 0", "0 + 6 = 6", "9 + 5 = 14", "6 + 14 = 20", "2 * 1 = 2", "1 * 8 = 8", "2 + 8 = 10", "20 + 10 = 30"], "answer": 30, "settings": "dp_ 3 -3 "}
{"id": 446, "question": "Simplify the following expression (((5 + 3) * (9 + 5)) + ((5 + 8) + (2 * (2 + 2 * 0)))) where + has priority over *.", "expression": "(((5 + 3) * (9 + 5)) + ((5 + 8) + (2 * (2 + 2 * 0))))", "think": ["5 + 3 = 8", "9 + 5 = 14", "8 * 14 = 112", "5 + 8 = 13", "2 + 2 = 4", "4 * 0 = 0", "2 * 0 = 0", "13 + 0 = 13", "112 + 13 = 125"], "answer": 125, "settings": "dp_ 3 -3 "}
{"id": 447, "question": "Simplify the following expression ((((5 + 4 * 6) + 0) + (4 * 8)) * ((4 * 0) * (4 + 5))) where + has priority over *.", "expression": "((((5 + 4 * 6) + 0) + (4 * 8)) * ((4 * 0) * (4 + 5)))", "think": ["5 + 4 = 9", "9 * 6 = 54", "54 + 0 = 54", "4 * 8 = 32", "54 + 32 = 86", "4 * 0 = 0", "4 + 5 = 9", "0 * 9 = 0", "86 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 448, "question": "Simplify the following expression (((5 * 2) * (7 * 5)) * (((1 * 1 * 4) + 1) * (9 * 2))) where + has priority over *.", "expression": "(((5 * 2) * (7 * 5)) * (((1 * 1 * 4) + 1) * (9 * 2)))", "think": ["5 * 2 = 10", "7 * 5 = 35", "10 * 35 = 350", "1 * 1 = 1", "1 * 4 = 4", "4 + 1 = 5", "9 * 2 = 18", "5 * 18 = 90", "350 * 90 = 31500"], "answer": 31500, "settings": "dp_ 3 -3 "}
{"id": 449, "question": "Simplify the following expression (((7 + 5) * ((2 + 9 + 7 + 3) * 5)) * ((0 * 1) * (5 * 8))) where + has priority over *.", "expression": "(((7 + 5) * ((2 + 9 + 7 + 3) * 5)) * ((0 * 1) * (5 * 8)))", "think": ["7 + 5 = 12", "2 + 9 = 11", "11 + 7 = 18", "18 + 3 = 21", "21 * 5 = 105", "12 * 105 = 1260", "0 * 1 = 0", "5 * 8 = 40", "0 * 40 = 0", "1260 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 450, "question": "Simplify the following expression (((9 * 0) * (7 + 5)) * ((1 * 9) * ((4 + 3 + 2) + 5))) where + has priority over *.", "expression": "(((9 * 0) * (7 + 5)) * ((1 * 9) * ((4 + 3 + 2) + 5)))", "think": ["9 * 0 = 0", "7 + 5 = 12", "0 * 12 = 0", "1 * 9 = 9", "4 + 3 = 7", "7 + 2 = 9", "9 + 5 = 14", "9 * 14 = 126", "0 * 126 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 451, "question": "Simplify the following expression (((4 + 4) * ((7 * 1 * 1) * 9)) * ((3 * 1) * (1 + 7))) where + has priority over *.", "expression": "(((4 + 4) * ((7 * 1 * 1) * 9)) * ((3 * 1) * (1 + 7)))", "think": ["4 + 4 = 8", "7 * 1 = 7", "7 * 1 = 7", "7 * 9 = 63", "8 * 63 = 504", "3 * 1 = 3", "1 + 7 = 8", "3 * 8 = 24", "504 * 24 = 12096"], "answer": 12096, "settings": "dp_ 3 -3 "}
{"id": 452, "question": "Simplify the following expression (((2 + 5) * (1 + 3)) * ((7 + (8 + 2 + 4)) + (8 * 9))) where + has priority over *.", "expression": "(((2 + 5) * (1 + 3)) * ((7 + (8 + 2 + 4)) + (8 * 9)))", "think": ["2 + 5 = 7", "1 + 3 = 4", "7 * 4 = 28", "8 + 2 = 10", "10 + 4 = 14", "7 + 14 = 21", "8 * 9 = 72", "21 + 72 = 93", "28 * 93 = 2604"], "answer": 2604, "settings": "dp_ 3 -3 "}
{"id": 453, "question": "Simplify the following expression (((6 * 9) * ((6 + 8 + 0 * 2) + 5)) * ((7 * 8) + (2 * 8))) where + has priority over *.", "expression": "(((6 * 9) * ((6 + 8 + 0 * 2) + 5)) * ((7 * 8) + (2 * 8)))", "think": ["6 * 9 = 54", "6 + 8 = 14", "14 + 0 = 14", "14 * 2 = 28", "28 + 5 = 33", "54 * 33 = 1782", "7 * 8 = 56", "2 * 8 = 16", "56 + 16 = 72", "1782 * 72 = 128304"], "answer": 128304, "settings": "dp_ 3 -3 "}
{"id": 454, "question": "Simplify the following expression (((5 + 8) * ((9 + 9 + 5 + 0) * 4)) + ((2 * 4) + (8 + 2))) where + has priority over *.", "expression": "(((5 + 8) * ((9 + 9 + 5 + 0) * 4)) + ((2 * 4) + (8 + 2)))", "think": ["5 + 8 = 13", "9 + 9 = 18", "18 + 5 = 23", "23 + 0 = 23", "23 * 4 = 92", "13 * 92 = 1196", "2 * 4 = 8", "8 + 2 = 10", "8 + 10 = 18", "1196 + 18 = 1214"], "answer": 1214, "settings": "dp_ 3 -3 "}
{"id": 455, "question": "Simplify the following expression ((((7 * 6 + 7 * 9) * 0) + (8 * 4)) * ((3 * 6) * (7 * 1))) where + has priority over *.", "expression": "((((7 * 6 + 7 * 9) * 0) + (8 * 4)) * ((3 * 6) * (7 * 1)))", "think": ["6 + 7 = 13", "7 * 13 = 91", "91 * 9 = 819", "819 * 0 = 0", "8 * 4 = 32", "0 + 32 = 32", "3 * 6 = 18", "7 * 1 = 7", "18 * 7 = 126", "32 * 126 = 4032"], "answer": 4032, "settings": "dp_ 3 -3 "}
{"id": 456, "question": "Simplify the following expression (((5 * 6) * (5 + (1 * 0 * 4 + 2))) + ((3 * 7) + (4 + 7))) where + has priority over *.", "expression": "(((5 * 6) * (5 + (1 * 0 * 4 + 2))) + ((3 * 7) + (4 + 7)))", "think": ["5 * 6 = 30", "1 * 0 = 0", "4 + 2 = 6", "0 * 6 = 0", "5 + 0 = 5", "30 * 5 = 150", "3 * 7 = 21", "4 + 7 = 11", "21 + 11 = 32", "150 + 32 = 182"], "answer": 182, "settings": "dp_ 3 -3 "}
{"id": 457, "question": "Simplify the following expression (((2 + 7) * (7 * 4)) * ((1 + (0 * 4 * 7 + 1)) * (3 * 3))) where + has priority over *.", "expression": "(((2 + 7) * (7 * 4)) * ((1 + (0 * 4 * 7 + 1)) * (3 * 3)))", "think": ["2 + 7 = 9", "7 * 4 = 28", "9 * 28 = 252", "0 * 4 = 0", "7 + 1 = 8", "0 * 8 = 0", "1 + 0 = 1", "3 * 3 = 9", "1 * 9 = 9", "252 * 9 = 2268"], "answer": 2268, "settings": "dp_ 3 -3 "}
{"id": 458, "question": "Simplify the following expression (((5 * (4 + 9 + 1)) + (0 * 6)) * ((5 + 8) + (1 * 6))) where + has priority over *.", "expression": "(((5 * (4 + 9 + 1)) + (0 * 6)) * ((5 + 8) + (1 * 6)))", "think": ["4 + 9 = 13", "13 + 1 = 14", "5 * 14 = 70", "0 * 6 = 0", "70 + 0 = 70", "5 + 8 = 13", "1 * 6 = 6", "13 + 6 = 19", "70 * 19 = 1330"], "answer": 1330, "settings": "dp_ 3 -3 "}
{"id": 459, "question": "Simplify the following expression (((8 * 5) * (3 + 9)) * ((0 + 0) * (5 + (9 * 8 * 2 + 6)))) where + has priority over *.", "expression": "(((8 * 5) * (3 + 9)) * ((0 + 0) * (5 + (9 * 8 * 2 + 6))))", "think": ["8 * 5 = 40", "3 + 9 = 12", "40 * 12 = 480", "0 + 0 = 0", "9 * 8 = 72", "2 + 6 = 8", "72 * 8 = 576", "5 + 576 = 581", "0 * 581 = 0", "480 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 460, "question": "Simplify the following expression ((((9 + 9 + 9) * 4) * (0 * 5)) * ((6 + 9) * (0 * 9))) where + has priority over *.", "expression": "((((9 + 9 + 9) * 4) * (0 * 5)) * ((6 + 9) * (0 * 9)))", "think": ["9 + 9 = 18", "18 + 9 = 27", "27 * 4 = 108", "0 * 5 = 0", "108 * 0 = 0", "6 + 9 = 15", "0 * 9 = 0", "15 * 0 = 0", "0 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 461, "question": "Simplify the following expression (((2 * 3) + (9 + (8 * 9 + 2))) * ((7 + 5) + (2 * 6))) where + has priority over *.", "expression": "(((2 * 3) + (9 + (8 * 9 + 2))) * ((7 + 5) + (2 * 6)))", "think": ["2 * 3 = 6", "9 + 2 = 11", "8 * 11 = 88", "9 + 88 = 97", "6 + 97 = 103", "7 + 5 = 12", "2 * 6 = 12", "12 + 12 = 24", "103 * 24 = 2472"], "answer": 2472, "settings": "dp_ 3 -3 "}
{"id": 462, "question": "Simplify the following expression (((8 * 6) * (2 * 7)) + (((4 * 3 * 3) * 9) * (3 * 3))) where + has priority over *.", "expression": "(((8 * 6) * (2 * 7)) + (((4 * 3 * 3) * 9) * (3 * 3)))", "think": ["8 * 6 = 48", "2 * 7 = 14", "48 * 14 = 672", "4 * 3 = 12", "12 * 3 = 36", "36 * 9 = 324", "3 * 3 = 9", "324 * 9 = 2916", "672 + 2916 = 3588"], "answer": 3588, "settings": "dp_ 3 -3 "}
{"id": 463, "question": "Simplify the following expression (((5 * (7 * 4 + 3)) * (4 * 1)) * ((5 * 2) * (0 * 4))) where + has priority over *.", "expression": "(((5 * (7 * 4 + 3)) * (4 * 1)) * ((5 * 2) * (0 * 4)))", "think": ["4 + 3 = 7", "7 * 7 = 49", "5 * 49 = 245", "4 * 1 = 4", "245 * 4 = 980", "5 * 2 = 10", "0 * 4 = 0", "10 * 0 = 0", "980 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 464, "question": "Simplify the following expression (((1 + (2 + 0 * 7)) * (3 + 0)) * ((0 + 1) + (5 * 7))) where + has priority over *.", "expression": "(((1 + (2 + 0 * 7)) * (3 + 0)) * ((0 + 1) + (5 * 7)))", "think": ["2 + 0 = 2", "2 * 7 = 14", "1 + 14 = 15", "3 + 0 = 3", "15 * 3 = 45", "0 + 1 = 1", "5 * 7 = 35", "1 + 35 = 36", "45 * 36 = 1620"], "answer": 1620, "settings": "dp_ 3 -3 "}
{"id": 465, "question": "Simplify the following expression (((5 * 4) + (1 + 9)) * ((2 + (4 * 0 + 0 * 4)) + (0 + 6))) where + has priority over *.", "expression": "(((5 * 4) + (1 + 9)) * ((2 + (4 * 0 + 0 * 4)) + (0 + 6)))", "think": ["5 * 4 = 20", "1 + 9 = 10", "20 + 10 = 30", "0 + 0 = 0", "4 * 0 = 0", "0 * 4 = 0", "2 + 0 = 2", "0 + 6 = 6", "2 + 6 = 8", "30 * 8 = 240"], "answer": 240, "settings": "dp_ 3 -3 "}
{"id": 466, "question": "Simplify the following expression (((8 + (3 * 2 * 8)) * (3 * 1)) * ((7 + 4) * (0 + 5))) where + has priority over *.", "expression": "(((8 + (3 * 2 * 8)) * (3 * 1)) * ((7 + 4) * (0 + 5)))", "think": ["3 * 2 = 6", "6 * 8 = 48", "8 + 48 = 56", "3 * 1 = 3", "56 * 3 = 168", "7 + 4 = 11", "0 + 5 = 5", "11 * 5 = 55", "168 * 55 = 9240"], "answer": 9240, "settings": "dp_ 3 -3 "}
{"id": 467, "question": "Simplify the following expression (((1 * 2) + (7 + 5)) * ((4 + (9 + 9 * 5)) + (7 + 4))) where + has priority over *.", "expression": "(((1 * 2) + (7 + 5)) * ((4 + (9 + 9 * 5)) + (7 + 4)))", "think": ["1 * 2 = 2", "7 + 5 = 12", "2 + 12 = 14", "9 + 9 = 18", "18 * 5 = 90", "4 + 90 = 94", "7 + 4 = 11", "94 + 11 = 105", "14 * 105 = 1470"], "answer": 1470, "settings": "dp_ 3 -3 "}
{"id": 468, "question": "Simplify the following expression (((7 + 4) + (6 + 8)) + ((4 + 5) * (3 + (7 * 9 * 5 + 3)))) where + has priority over *.", "expression": "(((7 + 4) + (6 + 8)) + ((4 + 5) * (3 + (7 * 9 * 5 + 3))))", "think": ["7 + 4 = 11", "6 + 8 = 14", "11 + 14 = 25", "4 + 5 = 9", "7 * 9 = 63", "5 + 3 = 8", "63 * 8 = 504", "3 + 504 = 507", "9 * 507 = 4563", "25 + 4563 = 4588"], "answer": 4588, "settings": "dp_ 3 -3 "}
{"id": 469, "question": "Simplify the following expression (((1 * 9) * (0 + 8)) + ((2 + 5) + (1 * (8 * 7 + 0 * 7)))) where + has priority over *.", "expression": "(((1 * 9) * (0 + 8)) + ((2 + 5) + (1 * (8 * 7 + 0 * 7))))", "think": ["1 * 9 = 9", "0 + 8 = 8", "9 * 8 = 72", "2 + 5 = 7", "7 + 0 = 7", "8 * 7 = 56", "56 * 7 = 392", "1 * 392 = 392", "7 + 392 = 399", "72 + 399 = 471"], "answer": 471, "settings": "dp_ 3 -3 "}
{"id": 470, "question": "Simplify the following expression (((0 * (0 * 4 + 2)) * (0 * 3)) + ((6 + 5) + (8 + 0))) where + has priority over *.", "expression": "(((0 * (0 * 4 + 2)) * (0 * 3)) + ((6 + 5) + (8 + 0)))", "think": ["4 + 2 = 6", "0 * 6 = 0", "0 * 0 = 0", "0 * 3 = 0", "0 * 0 = 0", "6 + 5 = 11", "8 + 0 = 8", "11 + 8 = 19", "0 + 19 = 19"], "answer": 19, "settings": "dp_ 3 -3 "}
{"id": 471, "question": "Simplify the following expression (((7 * 6) * (1 * (0 * 4 * 7 + 3))) * ((1 * 2) + (8 * 2))) where + has priority over *.", "expression": "(((7 * 6) * (1 * (0 * 4 * 7 + 3))) * ((1 * 2) + (8 * 2)))", "think": ["7 * 6 = 42", "0 * 4 = 0", "7 + 3 = 10", "0 * 10 = 0", "1 * 0 = 0", "42 * 0 = 0", "1 * 2 = 2", "8 * 2 = 16", "2 + 16 = 18", "0 * 18 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 472, "question": "Simplify the following expression (((4 + 3) * ((0 + 3 * 7) + 6)) * ((3 + 1) + (9 + 0))) where + has priority over *.", "expression": "(((4 + 3) * ((0 + 3 * 7) + 6)) * ((3 + 1) + (9 + 0)))", "think": ["4 + 3 = 7", "0 + 3 = 3", "3 * 7 = 21", "21 + 6 = 27", "7 * 27 = 189", "3 + 1 = 4", "9 + 0 = 9", "4 + 9 = 13", "189 * 13 = 2457"], "answer": 2457, "settings": "dp_ 3 -3 "}
{"id": 473, "question": "Simplify the following expression (((2 + (4 + 0 * 8)) + (3 * 9)) + ((3 * 4) * (8 + 3))) where + has priority over *.", "expression": "(((2 + (4 + 0 * 8)) + (3 * 9)) + ((3 * 4) * (8 + 3)))", "think": ["4 + 0 = 4", "4 * 8 = 32", "2 + 32 = 34", "3 * 9 = 27", "34 + 27 = 61", "3 * 4 = 12", "8 + 3 = 11", "12 * 11 = 132", "61 + 132 = 193"], "answer": 193, "settings": "dp_ 3 -3 "}
{"id": 474, "question": "Simplify the following expression ((((2 + 7 * 6) * 8) + (6 * 6)) * ((6 * 2) + (3 * 3))) where + has priority over *.", "expression": "((((2 + 7 * 6) * 8) + (6 * 6)) * ((6 * 2) + (3 * 3)))", "think": ["2 + 7 = 9", "9 * 6 = 54", "54 * 8 = 432", "6 * 6 = 36", "432 + 36 = 468", "6 * 2 = 12", "3 * 3 = 9", "12 + 9 = 21", "468 * 21 = 9828"], "answer": 9828, "settings": "dp_ 3 -3 "}
{"id": 475, "question": "Simplify the following expression ((((3 + 9 * 8 + 5) + 3) * (1 * 7)) + ((8 + 3) * (4 + 6))) where + has priority over *.", "expression": "((((3 + 9 * 8 + 5) + 3) * (1 * 7)) + ((8 + 3) * (4 + 6)))", "think": ["3 + 9 = 12", "8 + 5 = 13", "12 * 13 = 156", "156 + 3 = 159", "1 * 7 = 7", "159 * 7 = 1113", "8 + 3 = 11", "4 + 6 = 10", "11 * 10 = 110", "1113 + 110 = 1223"], "answer": 1223, "settings": "dp_ 3 -3 "}
{"id": 476, "question": "Simplify the following expression (((3 + 1) + (3 * 9)) * ((3 * 8) + (4 * (5 * 4 * 8)))) where + has priority over *.", "expression": "(((3 + 1) + (3 * 9)) * ((3 * 8) + (4 * (5 * 4 * 8))))", "think": ["3 + 1 = 4", "3 * 9 = 27", "4 + 27 = 31", "3 * 8 = 24", "5 * 4 = 20", "20 * 8 = 160", "4 * 160 = 640", "24 + 640 = 664", "31 * 664 = 20584"], "answer": 20584, "settings": "dp_ 3 -3 "}
{"id": 477, "question": "Simplify the following expression (((7 + 5) * (5 + 5)) * ((9 + 3) * ((2 * 3 + 6) + 4))) where + has priority over *.", "expression": "(((7 + 5) * (5 + 5)) * ((9 + 3) * ((2 * 3 + 6) + 4)))", "think": ["7 + 5 = 12", "5 + 5 = 10", "12 * 10 = 120", "9 + 3 = 12", "3 + 6 = 9", "2 * 9 = 18", "18 + 4 = 22", "12 * 22 = 264", "120 * 264 = 31680"], "answer": 31680, "settings": "dp_ 3 -3 "}
{"id": 478, "question": "Simplify the following expression ((((0 + 1 + 6) * 7) * (7 * 2)) + ((2 + 8) * (2 * 8))) where + has priority over *.", "expression": "((((0 + 1 + 6) * 7) * (7 * 2)) + ((2 + 8) * (2 * 8)))", "think": ["0 + 1 = 1", "1 + 6 = 7", "7 * 7 = 49", "7 * 2 = 14", "49 * 14 = 686", "2 + 8 = 10", "2 * 8 = 16", "10 * 16 = 160", "686 + 160 = 846"], "answer": 846, "settings": "dp_ 3 -3 "}
{"id": 479, "question": "Simplify the following expression ((((8 + 6 + 8) + 0) + (8 + 7)) + ((9 + 9) * (7 * 0))) where + has priority over *.", "expression": "((((8 + 6 + 8) + 0) + (8 + 7)) + ((9 + 9) * (7 * 0)))", "think": ["8 + 6 = 14", "14 + 8 = 22", "22 + 0 = 22", "8 + 7 = 15", "22 + 15 = 37", "9 + 9 = 18", "7 * 0 = 0", "18 * 0 = 0", "37 + 0 = 37"], "answer": 37, "settings": "dp_ 3 -3 "}
{"id": 480, "question": "Simplify the following expression (((8 + 6) * (1 + 1)) * ((3 + 9) + ((5 + 6 + 7 * 1) * 4))) where + has priority over *.", "expression": "(((8 + 6) * (1 + 1)) * ((3 + 9) + ((5 + 6 + 7 * 1) * 4)))", "think": ["8 + 6 = 14", "1 + 1 = 2", "14 * 2 = 28", "3 + 9 = 12", "5 + 6 = 11", "11 + 7 = 18", "18 * 1 = 18", "18 * 4 = 72", "12 + 72 = 84", "28 * 84 = 2352"], "answer": 2352, "settings": "dp_ 3 -3 "}
{"id": 481, "question": "Simplify the following expression ((((3 * 9 + 7 + 4) * 6) + (0 * 0)) + ((7 + 6) + (9 * 1))) where + has priority over *.", "expression": "((((3 * 9 + 7 + 4) * 6) + (0 * 0)) + ((7 + 6) + (9 * 1)))", "think": ["9 + 7 = 16", "16 + 4 = 20", "3 * 20 = 60", "60 * 6 = 360", "0 * 0 = 0", "360 + 0 = 360", "7 + 6 = 13", "9 * 1 = 9", "13 + 9 = 22", "360 + 22 = 382"], "answer": 382, "settings": "dp_ 3 -3 "}
{"id": 482, "question": "Simplify the following expression (((0 * 3) + (6 + 1)) + ((9 + 3) * ((2 * 1 + 1) * 5))) where + has priority over *.", "expression": "(((0 * 3) + (6 + 1)) + ((9 + 3) * ((2 * 1 + 1) * 5)))", "think": ["0 * 3 = 0", "6 + 1 = 7", "0 + 7 = 7", "9 + 3 = 12", "1 + 1 = 2", "2 * 2 = 4", "4 * 5 = 20", "12 * 20 = 240", "7 + 240 = 247"], "answer": 247, "settings": "dp_ 3 -3 "}
{"id": 483, "question": "Simplify the following expression (((5 + 9) + (5 * 0)) * ((7 * 3) * ((9 * 6 + 1 + 1) * 6))) where + has priority over *.", "expression": "(((5 + 9) + (5 * 0)) * ((7 * 3) * ((9 * 6 + 1 + 1) * 6)))", "think": ["5 + 9 = 14", "5 * 0 = 0", "14 + 0 = 14", "7 * 3 = 21", "6 + 1 = 7", "7 + 1 = 8", "9 * 8 = 72", "72 * 6 = 432", "21 * 432 = 9072", "14 * 9072 = 127008"], "answer": 127008, "settings": "dp_ 3 -3 "}
{"id": 484, "question": "Simplify the following expression (((2 * 6) + ((2 * 6 + 7 + 1) * 1)) * ((4 + 7) + (4 * 1))) where + has priority over *.", "expression": "(((2 * 6) + ((2 * 6 + 7 + 1) * 1)) * ((4 + 7) + (4 * 1)))", "think": ["2 * 6 = 12", "6 + 7 = 13", "13 + 1 = 14", "2 * 14 = 28", "28 * 1 = 28", "12 + 28 = 40", "4 + 7 = 11", "4 * 1 = 4", "11 + 4 = 15", "40 * 15 = 600"], "answer": 600, "settings": "dp_ 3 -3 "}
{"id": 485, "question": "Simplify the following expression ((((4 * 4 + 1) * 0) + (6 * 6)) * ((9 + 8) + (6 + 2))) where + has priority over *.", "expression": "((((4 * 4 + 1) * 0) + (6 * 6)) * ((9 + 8) + (6 + 2)))", "think": ["4 + 1 = 5", "4 * 5 = 20", "20 * 0 = 0", "6 * 6 = 36", "0 + 36 = 36", "9 + 8 = 17", "6 + 2 = 8", "17 + 8 = 25", "36 * 25 = 900"], "answer": 900, "settings": "dp_ 3 -3 "}
{"id": 486, "question": "Simplify the following expression (((6 * 4) * ((0 * 6 * 5) * 5)) + ((7 + 9) * (7 + 1))) where + has priority over *.", "expression": "(((6 * 4) * ((0 * 6 * 5) * 5)) + ((7 + 9) * (7 + 1)))", "think": ["6 * 4 = 24", "0 * 6 = 0", "0 * 5 = 0", "0 * 5 = 0", "24 * 0 = 0", "7 + 9 = 16", "7 + 1 = 8", "16 * 8 = 128", "0 + 128 = 128"], "answer": 128, "settings": "dp_ 3 -3 "}
{"id": 487, "question": "Simplify the following expression (((9 * 2) * (5 * 9)) * ((5 * 2) + (5 * (3 * 5 * 6)))) where + has priority over *.", "expression": "(((9 * 2) * (5 * 9)) * ((5 * 2) + (5 * (3 * 5 * 6))))", "think": ["9 * 2 = 18", "5 * 9 = 45", "18 * 45 = 810", "5 * 2 = 10", "3 * 5 = 15", "15 * 6 = 90", "5 * 90 = 450", "10 + 450 = 460", "810 * 460 = 372600"], "answer": 372600, "settings": "dp_ 3 -3 "}
{"id": 488, "question": "Simplify the following expression (((9 + (4 * 3 + 6)) + (8 + 0)) * ((7 + 4) * (6 + 7))) where + has priority over *.", "expression": "(((9 + (4 * 3 + 6)) + (8 + 0)) * ((7 + 4) * (6 + 7)))", "think": ["3 + 6 = 9", "4 * 9 = 36", "9 + 36 = 45", "8 + 0 = 8", "45 + 8 = 53", "7 + 4 = 11", "6 + 7 = 13", "11 * 13 = 143", "53 * 143 = 7579"], "answer": 7579, "settings": "dp_ 3 -3 "}
{"id": 489, "question": "Simplify the following expression (((9 * 7) + ((9 * 0 * 9 * 1) * 8)) * ((5 + 8) * (1 + 3))) where + has priority over *.", "expression": "(((9 * 7) + ((9 * 0 * 9 * 1) * 8)) * ((5 + 8) * (1 + 3)))", "think": ["9 * 7 = 63", "9 * 0 = 0", "0 * 9 = 0", "0 * 1 = 0", "0 * 8 = 0", "63 + 0 = 63", "5 + 8 = 13", "1 + 3 = 4", "13 * 4 = 52", "63 * 52 = 3276"], "answer": 3276, "settings": "dp_ 3 -3 "}
{"id": 490, "question": "Simplify the following expression (((3 * 8) + (7 + 5)) + ((9 * 8) * (5 + (4 + 6 + 1 * 4)))) where + has priority over *.", "expression": "(((3 * 8) + (7 + 5)) + ((9 * 8) * (5 + (4 + 6 + 1 * 4))))", "think": ["3 * 8 = 24", "7 + 5 = 12", "24 + 12 = 36", "9 * 8 = 72", "4 + 6 = 10", "10 + 1 = 11", "11 * 4 = 44", "5 + 44 = 49", "72 * 49 = 3528", "36 + 3528 = 3564"], "answer": 3564, "settings": "dp_ 3 -3 "}
{"id": 491, "question": "Simplify the following expression ((((1 + 2 + 8) + 7) * (7 * 1)) * ((5 * 1) * (0 * 1))) where + has priority over *.", "expression": "((((1 + 2 + 8) + 7) * (7 * 1)) * ((5 * 1) * (0 * 1)))", "think": ["1 + 2 = 3", "3 + 8 = 11", "11 + 7 = 18", "7 * 1 = 7", "18 * 7 = 126", "5 * 1 = 5", "0 * 1 = 0", "5 * 0 = 0", "126 * 0 = 0"], "answer": 0, "settings": "dp_ 3 -3 "}
{"id": 492, "question": "Simplify the following expression ((((0 + 3 * 1) * 3) * (2 * 2)) + ((0 * 9) * (7 + 9))) where + has priority over *.", "expression": "((((0 + 3 * 1) * 3) * (2 * 2)) + ((0 * 9) * (7 + 9)))", "think": ["0 + 3 = 3", "3 * 1 = 3", "3 * 3 = 9", "2 * 2 = 4", "9 * 4 = 36", "0 * 9 = 0", "7 + 9 = 16", "0 * 16 = 0", "36 + 0 = 36"], "answer": 36, "settings": "dp_ 3 -3 "}
{"id": 493, "question": "Simplify the following expression (((5 * 3) + (1 * 4)) + ((9 * (7 + 9 * 9)) * (9 * 1))) where + has priority over *.", "expression": "(((5 * 3) + (1 * 4)) + ((9 * (7 + 9 * 9)) * (9 * 1)))", "think": ["5 * 3 = 15", "1 * 4 = 4", "15 + 4 = 19", "7 + 9 = 16", "16 * 9 = 144", "9 * 144 = 1296", "9 * 1 = 9", "1296 * 9 = 11664", "19 + 11664 = 11683"], "answer": 11683, "settings": "dp_ 3 -3 "}
{"id": 494, "question": "Simplify the following expression (((1 * 3) + (1 * 2)) + ((8 + 6) * ((2 + 7 + 7) * 2))) where + has priority over *.", "expression": "(((1 * 3) + (1 * 2)) + ((8 + 6) * ((2 + 7 + 7) * 2)))", "think": ["1 * 3 = 3", "1 * 2 = 2", "3 + 2 = 5", "8 + 6 = 14", "2 + 7 = 9", "9 + 7 = 16", "16 * 2 = 32", "14 * 32 = 448", "5 + 448 = 453"], "answer": 453, "settings": "dp_ 3 -3 "}
{"id": 495, "question": "Simplify the following expression (((5 + 7) + (5 + 0)) * ((3 + (7 + 7 + 9)) * (6 * 7))) where + has priority over *.", "expression": "(((5 + 7) + (5 + 0)) * ((3 + (7 + 7 + 9)) * (6 * 7)))", "think": ["5 + 7 = 12", "5 + 0 = 5", "12 + 5 = 17", "7 + 7 = 14", "14 + 9 = 23", "3 + 23 = 26", "6 * 7 = 42", "26 * 42 = 1092", "17 * 1092 = 18564"], "answer": 18564, "settings": "dp_ 3 -3 "}
{"id": 496, "question": "Simplify the following expression (((0 * 4) + (8 + 4)) + (((5 + 8 * 8) * 7) + (9 + 1))) where + has priority over *.", "expression": "(((0 * 4) + (8 + 4)) + (((5 + 8 * 8) * 7) + (9 + 1)))", "think": ["0 * 4 = 0", "8 + 4 = 12", "0 + 12 = 12", "5 + 8 = 13", "13 * 8 = 104", "104 * 7 = 728", "9 + 1 = 10", "728 + 10 = 738", "12 + 738 = 750"], "answer": 750, "settings": "dp_ 3 -3 "}
{"id": 497, "question": "Simplify the following expression (((3 + 4) * (7 + 4)) + ((7 + (9 + 6 + 3)) * (3 + 9))) where + has priority over *.", "expression": "(((3 + 4) * (7 + 4)) + ((7 + (9 + 6 + 3)) * (3 + 9)))", "think": ["3 + 4 = 7", "7 + 4 = 11", "7 * 11 = 77", "9 + 6 = 15", "15 + 3 = 18", "7 + 18 = 25", "3 + 9 = 12", "25 * 12 = 300", "77 + 300 = 377"], "answer": 377, "settings": "dp_ 3 -3 "}
{"id": 498, "question": "Simplify the following expression ((((2 + 2 + 5) * 4) + (5 + 4)) + ((8 * 1) * (6 + 0))) where + has priority over *.", "expression": "((((2 + 2 + 5) * 4) + (5 + 4)) + ((8 * 1) * (6 + 0)))", "think": ["2 + 2 = 4", "4 + 5 = 9", "9 * 4 = 36", "5 + 4 = 9", "36 + 9 = 45", "8 * 1 = 8", "6 + 0 = 6", "8 * 6 = 48", "45 + 48 = 93"], "answer": 93, "settings": "dp_ 3 -3 "}
{"id": 499, "question": "Simplify the following expression (((2 * 9) * (6 * 6)) + ((1 + 6) * (5 * (9 + 0 * 5)))) where + has priority over *.", "expression": "(((2 * 9) * (6 * 6)) + ((1 + 6) * (5 * (9 + 0 * 5))))", "think": ["2 * 9 = 18", "6 * 6 = 36", "18 * 36 = 648", "1 + 6 = 7", "9 + 0 = 9", "9 * 5 = 45", "5 * 45 = 225", "7 * 225 = 1575", "648 + 1575 = 2223"], "answer": 2223, "settings": "dp_ 3 -3 "}
{"id": 500, "question": "Simplify the following expression (((6 + 3) * (4 * 5)) + ((8 * (0 + 0 * 0)) * (9 + 7))) where + has priority over *.", "expression": "(((6 + 3) * (4 * 5)) + ((8 * (0 + 0 * 0)) * (9 + 7)))", "think": ["6 + 3 = 9", "4 * 5 = 20", "9 * 20 = 180", "0 + 0 = 0", "0 * 0 = 0", "8 * 0 = 0", "9 + 7 = 16", "0 * 16 = 0", "180 + 0 = 180"], "answer": 180, "settings": "dp_ 3 -3 "}