question
stringlengths 354
380
| answer
stringlengths 10
28
| metadata
dict | difficulty
int64 2
4
|
|---|---|---|---|
Calculate 50 using all of these numbers: 12, 87, 70, 95.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
87 - 95 + 70 - 12
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "87 - 95 + 70 - 12",
"numbers": [
12,
87,
70,
95
],
"source_dataset": "countdown",
"source_index": 0,
"target": 50
}
| 2
|
Using all the numbers 65, 35, 74, 77, create an expression that equals 51.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
77 - 65 - 35 + 74
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "77 - 65 - 35 + 74",
"numbers": [
65,
35,
74,
77
],
"source_dataset": "countdown",
"source_index": 1,
"target": 51
}
| 2
|
Using all the numbers 80, 37, 44, 10, create an expression that equals 83.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
10 - 44 + 37 + 80
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "10 - 44 + 37 + 80",
"numbers": [
80,
37,
44,
10
],
"source_dataset": "countdown",
"source_index": 2,
"target": 83
}
| 2
|
Find a way to make 10 using all of these numbers: 45, 48, 27, 20.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
48 + 27 - 45 - 20
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "48 + 27 - 45 - 20",
"numbers": [
45,
48,
27,
20
],
"source_dataset": "countdown",
"source_index": 3,
"target": 10
}
| 2
|
Calculate 46 using all of these numbers: 76, 6, 76, 52.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
52 - 6 - 76 + 76
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "52 - 6 - 76 + 76",
"numbers": [
76,
6,
76,
52
],
"source_dataset": "countdown",
"source_index": 4,
"target": 46
}
| 2
|
Using all the numbers 45, 73, 94, 68, create an expression that equals 44.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
94 - 73 - 45 + 68
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "94 - 73 - 45 + 68",
"numbers": [
45,
73,
94,
68
],
"source_dataset": "countdown",
"source_index": 5,
"target": 44
}
| 2
|
Find a way to make 19 using all of these numbers: 10, 28, 4, 61.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
61 - 28 - 4 - 10
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "61 - 28 - 4 - 10",
"numbers": [
10,
28,
4,
61
],
"source_dataset": "countdown",
"source_index": 6,
"target": 19
}
| 2
|
Find a way to make 50 using all of these numbers: 48, 89, 7, 48.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
48 + (7 + 89)/48
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "48 + (7 + 89)/48",
"numbers": [
48,
89,
7,
48
],
"source_dataset": "countdown",
"source_index": 7,
"target": 50
}
| 2
|
Calculate 97 using all of these numbers: 4, 19, 40, 7.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
7*19 + 4 - 40
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "7*19 + 4 - 40",
"numbers": [
4,
19,
40,
7
],
"source_dataset": "countdown",
"source_index": 8,
"target": 97
}
| 2
|
Calculate 47 using all of these numbers: 98, 84, 25, 58.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
58 + 98 - 84 - 25
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "58 + 98 - 84 - 25",
"numbers": [
98,
84,
25,
58
],
"source_dataset": "countdown",
"source_index": 9,
"target": 47
}
| 2
|
Find a way to make 15 using all of these numbers: 57, 9, 31, 2.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
57 - 2 - 31 - 9
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "57 - 2 - 31 - 9",
"numbers": [
57,
9,
31,
2
],
"source_dataset": "countdown",
"source_index": 10,
"target": 15
}
| 2
|
Find a way to make 26 using all of these numbers: 11, 5, 97, 87.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
11 + 5 + 97 - 87
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "11 + 5 + 97 - 87",
"numbers": [
11,
5,
97,
87
],
"source_dataset": "countdown",
"source_index": 11,
"target": 26
}
| 2
|
Find a way to make 21 using all of these numbers: 5, 30, 65, 50.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
30/5 + 65 - 50
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "30/5 + 65 - 50",
"numbers": [
5,
30,
65,
50
],
"source_dataset": "countdown",
"source_index": 12,
"target": 21
}
| 2
|
Calculate 72 using all of these numbers: 53, 43, 22, 40.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
53 + 22 + 40 - 43
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "53 + 22 + 40 - 43",
"numbers": [
53,
43,
22,
40
],
"source_dataset": "countdown",
"source_index": 13,
"target": 72
}
| 2
|
Calculate 49 using all of these numbers: 17, 50, 24, 92.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
24 + 92 - 50 - 17
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "24 + 92 - 50 - 17",
"numbers": [
17,
50,
24,
92
],
"source_dataset": "countdown",
"source_index": 14,
"target": 49
}
| 2
|
Find a way to make 30 using all of these numbers: 51, 31, 36, 86.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
31 - 36 - 51 + 86
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "31 - 36 - 51 + 86",
"numbers": [
51,
31,
36,
86
],
"source_dataset": "countdown",
"source_index": 15,
"target": 30
}
| 2
|
Find a way to make 13 using all of these numbers: 27, 83, 95, 26.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
27 + 95 - 83 - 26
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "27 + 95 - 83 - 26",
"numbers": [
27,
83,
95,
26
],
"source_dataset": "countdown",
"source_index": 16,
"target": 13
}
| 2
|
Calculate 19 using all of these numbers: 6, 41, 40, 12.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
41 - 40 + 12 + 6
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "41 - 40 + 12 + 6",
"numbers": [
6,
41,
40,
12
],
"source_dataset": "countdown",
"source_index": 17,
"target": 19
}
| 2
|
Using all the numbers 92, 44, 59, 43, create an expression that equals 34.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
44 + 92 - 43 - 59
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "44 + 92 - 43 - 59",
"numbers": [
92,
44,
59,
43
],
"source_dataset": "countdown",
"source_index": 18,
"target": 34
}
| 2
|
Using all the numbers 23, 14, 45, 60, create an expression that equals 22.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
23 + 14 - 60 + 45
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "23 + 14 - 60 + 45",
"numbers": [
23,
14,
45,
60
],
"source_dataset": "countdown",
"source_index": 19,
"target": 22
}
| 2
|
Using all the numbers 94, 77, 25, 23, create an expression that equals 65.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
25 + 23 - 77 + 94
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "25 + 23 - 77 + 94",
"numbers": [
94,
77,
25,
23
],
"source_dataset": "countdown",
"source_index": 20,
"target": 65
}
| 2
|
Calculate 80 using all of these numbers: 40, 64, 31, 7.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
40 + 7 + 64 - 31
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "40 + 7 + 64 - 31",
"numbers": [
40,
64,
31,
7
],
"source_dataset": "countdown",
"source_index": 21,
"target": 80
}
| 2
|
Using all the numbers 81, 98, 91, 26, create an expression that equals 82.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
91 - 81 + 98 - 26
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "91 - 81 + 98 - 26",
"numbers": [
81,
98,
91,
26
],
"source_dataset": "countdown",
"source_index": 22,
"target": 82
}
| 2
|
Find a way to make 37 using all of these numbers: 66, 29, 37, 37.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
37*66/37 - 29
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "37*66/37 - 29",
"numbers": [
66,
29,
37,
37
],
"source_dataset": "countdown",
"source_index": 23,
"target": 37
}
| 2
|
Find a way to make 95 using all of these numbers: 42, 46, 97, 86.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
97 - 42 + 86 - 46
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "97 - 42 + 86 - 46",
"numbers": [
42,
46,
97,
86
],
"source_dataset": "countdown",
"source_index": 24,
"target": 95
}
| 2
|
Calculate 92 using all of these numbers: 1, 72, 1, 21.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
21/1 + 72 - 1
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "21/1 + 72 - 1",
"numbers": [
1,
72,
1,
21
],
"source_dataset": "countdown",
"source_index": 25,
"target": 92
}
| 2
|
Calculate 94 using all of these numbers: 96, 92, 46, 46.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
(96*46 - 92)/46
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "(96*46 - 92)/46",
"numbers": [
96,
92,
46,
46
],
"source_dataset": "countdown",
"source_index": 26,
"target": 94
}
| 2
|
Calculate 33 using all of these numbers: 13, 9, 22, 78.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
13*22*9/78
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "13*22*9/78",
"numbers": [
13,
9,
22,
78
],
"source_dataset": "countdown",
"source_index": 27,
"target": 33
}
| 2
|
Using all the numbers 77, 69, 30, 46, create an expression that equals 68.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
46 + 69 + 30 - 77
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "46 + 69 + 30 - 77",
"numbers": [
77,
69,
30,
46
],
"source_dataset": "countdown",
"source_index": 28,
"target": 68
}
| 2
|
Find a way to make 16 using all of these numbers: 13, 85, 56, 58.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
56 + 58 - 13 - 85
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "56 + 58 - 13 - 85",
"numbers": [
13,
85,
56,
58
],
"source_dataset": "countdown",
"source_index": 29,
"target": 16
}
| 2
|
Using all the numbers 90, 16, 64, 72, create an expression that equals 64.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
72*(16 + 64)/90
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "72*(16 + 64)/90",
"numbers": [
90,
16,
64,
72
],
"source_dataset": "countdown",
"source_index": 30,
"target": 64
}
| 2
|
Using all the numbers 17, 92, 45, 38, create an expression that equals 68.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
92 - 45 + 38 - 17
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "92 - 45 + 38 - 17",
"numbers": [
17,
92,
45,
38
],
"source_dataset": "countdown",
"source_index": 31,
"target": 68
}
| 2
|
Using all the numbers 31, 85, 33, 35, create an expression that equals 48.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
31 - 35 - 33 + 85
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "31 - 35 - 33 + 85",
"numbers": [
31,
85,
33,
35
],
"source_dataset": "countdown",
"source_index": 32,
"target": 48
}
| 2
|
Using all the numbers 62, 43, 57, 84, create an expression that equals 36.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
57 - 43 + 84 - 62
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "57 - 43 + 84 - 62",
"numbers": [
62,
43,
57,
84
],
"source_dataset": "countdown",
"source_index": 33,
"target": 36
}
| 2
|
Find a way to make 43 using all of these numbers: 30, 39, 43, 69.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
39 + 30 + 43 - 69
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "39 + 30 + 43 - 69",
"numbers": [
30,
39,
43,
69
],
"source_dataset": "countdown",
"source_index": 34,
"target": 43
}
| 2
|
Find a way to make 83 using all of these numbers: 12, 13, 12, 96.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
96*12/12 - 13
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "96*12/12 - 13",
"numbers": [
12,
13,
12,
96
],
"source_dataset": "countdown",
"source_index": 35,
"target": 83
}
| 2
|
Find a way to make 18 using all of these numbers: 85, 84, 99, 52.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
84 - 52 - 99 + 85
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "84 - 52 - 99 + 85",
"numbers": [
85,
84,
99,
52
],
"source_dataset": "countdown",
"source_index": 36,
"target": 18
}
| 2
|
Find a way to make 14 using all of these numbers: 4, 9, 20, 45.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
(20 - 9 + 45)/4
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "(20 - 9 + 45)/4",
"numbers": [
4,
9,
20,
45
],
"source_dataset": "countdown",
"source_index": 37,
"target": 14
}
| 2
|
Calculate 13 using all of these numbers: 19, 68, 2, 2.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
68/2 - 2 - 19
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "68/2 - 2 - 19",
"numbers": [
19,
68,
2,
2
],
"source_dataset": "countdown",
"source_index": 38,
"target": 13
}
| 2
|
Using all the numbers 33, 25, 52, 36, create an expression that equals 74.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
25 - 36 + 52 + 33
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "25 - 36 + 52 + 33",
"numbers": [
33,
25,
52,
36
],
"source_dataset": "countdown",
"source_index": 39,
"target": 74
}
| 2
|
Calculate 98 using all of these numbers: 86, 26, 86, 72.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
72 + 26 - 86 + 86
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "72 + 26 - 86 + 86",
"numbers": [
86,
26,
86,
72
],
"source_dataset": "countdown",
"source_index": 40,
"target": 98
}
| 2
|
Using all the numbers 17, 49, 59, 12, create an expression that equals 39.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
59 + 12 + 17 - 49
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "59 + 12 + 17 - 49",
"numbers": [
17,
49,
59,
12
],
"source_dataset": "countdown",
"source_index": 41,
"target": 39
}
| 2
|
Using all the numbers 80, 16, 12, 34, create an expression that equals 86.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
80 + 34 - 16 - 12
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "80 + 34 - 16 - 12",
"numbers": [
80,
16,
12,
34
],
"source_dataset": "countdown",
"source_index": 42,
"target": 86
}
| 2
|
Using all the numbers 21, 45, 15, 89, create an expression that equals 38.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
89 + 15 - 45 - 21
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "89 + 15 - 45 - 21",
"numbers": [
21,
45,
15,
89
],
"source_dataset": "countdown",
"source_index": 43,
"target": 38
}
| 2
|
Find a way to make 17 using all of these numbers: 37, 8, 23, 51.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
8 + 23 - 51 + 37
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "8 + 23 - 51 + 37",
"numbers": [
37,
8,
23,
51
],
"source_dataset": "countdown",
"source_index": 44,
"target": 17
}
| 2
|
Using all the numbers 63, 12, 100, 11, create an expression that equals 38.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
100 - 11 + 12 - 63
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "100 - 11 + 12 - 63",
"numbers": [
63,
12,
100,
11
],
"source_dataset": "countdown",
"source_index": 45,
"target": 38
}
| 2
|
Using all the numbers 42, 57, 53, 86, create an expression that equals 48.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
57 - 53 - 42 + 86
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "57 - 53 - 42 + 86",
"numbers": [
42,
57,
53,
86
],
"source_dataset": "countdown",
"source_index": 46,
"target": 48
}
| 2
|
Find a way to make 41 using all of these numbers: 89, 41, 89, 1.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
1*89*41/89
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "1*89*41/89",
"numbers": [
89,
41,
89,
1
],
"source_dataset": "countdown",
"source_index": 47,
"target": 41
}
| 2
|
Using all the numbers 65, 37, 16, 99, create an expression that equals 87.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
16 - 65 + 37 + 99
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "16 - 65 + 37 + 99",
"numbers": [
65,
37,
16,
99
],
"source_dataset": "countdown",
"source_index": 48,
"target": 87
}
| 2
|
Using all the numbers 75, 67, 19, 71, create an expression that equals 21.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
19 + (67 + 75)/71
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "19 + (67 + 75)/71",
"numbers": [
75,
67,
19,
71
],
"source_dataset": "countdown",
"source_index": 49,
"target": 21
}
| 2
|
Using all the numbers 53, 52, 71, 25, create an expression that equals 46.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
71*(53 - 52) - 25
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "71*(53 - 52) - 25",
"numbers": [
53,
52,
71,
25
],
"source_dataset": "countdown",
"source_index": 50,
"target": 46
}
| 2
|
Calculate 75 using all of these numbers: 57, 89, 51, 56.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
51 + 57 - 89 + 56
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "51 + 57 - 89 + 56",
"numbers": [
57,
89,
51,
56
],
"source_dataset": "countdown",
"source_index": 51,
"target": 75
}
| 2
|
Using all the numbers 55, 69, 77, 36, create an expression that equals 27.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
55 + 77 - 36 - 69
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "55 + 77 - 36 - 69",
"numbers": [
55,
69,
77,
36
],
"source_dataset": "countdown",
"source_index": 52,
"target": 27
}
| 2
|
Calculate 52 using all of these numbers: 56, 79, 49, 26.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
26 + 56 - 79 + 49
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "26 + 56 - 79 + 49",
"numbers": [
56,
79,
49,
26
],
"source_dataset": "countdown",
"source_index": 53,
"target": 52
}
| 2
|
Calculate 37 using all of these numbers: 17, 46, 44, 36.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
44 + 46 - 36 - 17
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "44 + 46 - 36 - 17",
"numbers": [
17,
46,
44,
36
],
"source_dataset": "countdown",
"source_index": 54,
"target": 37
}
| 2
|
Using all the numbers 4, 35, 96, 48, create an expression that equals 87.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
96 + 35 - 48 + 4
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "96 + 35 - 48 + 4",
"numbers": [
4,
35,
96,
48
],
"source_dataset": "countdown",
"source_index": 55,
"target": 87
}
| 2
|
Using all the numbers 46, 6, 74, 54, create an expression that equals 88.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
74 + 6 - 46 + 54
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "74 + 6 - 46 + 54",
"numbers": [
46,
6,
74,
54
],
"source_dataset": "countdown",
"source_index": 56,
"target": 88
}
| 2
|
Using all the numbers 8, 61, 17, 89, create an expression that equals 37.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
89 - 61 - 8 + 17
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "89 - 61 - 8 + 17",
"numbers": [
8,
61,
17,
89
],
"source_dataset": "countdown",
"source_index": 57,
"target": 37
}
| 2
|
Using all the numbers 21, 84, 49, 82, create an expression that equals 68.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
49 + 21 - 84 + 82
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "49 + 21 - 84 + 82",
"numbers": [
21,
84,
49,
82
],
"source_dataset": "countdown",
"source_index": 58,
"target": 68
}
| 2
|
Find a way to make 64 using all of these numbers: 10, 49, 55, 30.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
49 - 30 + 55 - 10
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "49 - 30 + 55 - 10",
"numbers": [
10,
49,
55,
30
],
"source_dataset": "countdown",
"source_index": 59,
"target": 64
}
| 2
|
Calculate 11 using all of these numbers: 81, 63, 80, 53.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
63 - 80 - 53 + 81
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "63 - 80 - 53 + 81",
"numbers": [
81,
63,
80,
53
],
"source_dataset": "countdown",
"source_index": 60,
"target": 11
}
| 2
|
Find a way to make 78 using all of these numbers: 83, 20, 11, 75.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
83 + (20 - 75)/11
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "83 + (20 - 75)/11",
"numbers": [
83,
20,
11,
75
],
"source_dataset": "countdown",
"source_index": 61,
"target": 78
}
| 2
|
Using all the numbers 8, 80, 11, 57, create an expression that equals 42.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
80 - 57 + 11 + 8
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "80 - 57 + 11 + 8",
"numbers": [
8,
80,
11,
57
],
"source_dataset": "countdown",
"source_index": 62,
"target": 42
}
| 2
|
Find a way to make 36 using all of these numbers: 62, 46, 51, 71.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
71 + 62 - 51 - 46
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "71 + 62 - 51 - 46",
"numbers": [
62,
46,
51,
71
],
"source_dataset": "countdown",
"source_index": 63,
"target": 36
}
| 2
|
Using all the numbers 92, 69, 92, 99, create an expression that equals 30.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
99 - 69 + 92 - 92
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "99 - 69 + 92 - 92",
"numbers": [
92,
69,
92,
99
],
"source_dataset": "countdown",
"source_index": 64,
"target": 30
}
| 2
|
Using all the numbers 8, 34, 92, 95, create an expression that equals 23.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
34 - 8 + 92 - 95
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "34 - 8 + 92 - 95",
"numbers": [
8,
34,
92,
95
],
"source_dataset": "countdown",
"source_index": 65,
"target": 23
}
| 2
|
Find a way to make 99 using all of these numbers: 25, 75, 63, 62.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
75 + 62 - 63 + 25
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "75 + 62 - 63 + 25",
"numbers": [
25,
75,
63,
62
],
"source_dataset": "countdown",
"source_index": 66,
"target": 99
}
| 2
|
Using all the numbers 58, 30, 59, 71, create an expression that equals 76.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
30 + 59 + 58 - 71
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "30 + 59 + 58 - 71",
"numbers": [
58,
30,
59,
71
],
"source_dataset": "countdown",
"source_index": 67,
"target": 76
}
| 2
|
Find a way to make 51 using all of these numbers: 47, 65, 14, 47.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
47*65/47 - 14
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "47*65/47 - 14",
"numbers": [
47,
65,
14,
47
],
"source_dataset": "countdown",
"source_index": 68,
"target": 51
}
| 2
|
Calculate 58 using all of these numbers: 70, 14, 90, 88.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
70 - 14 + 90 - 88
|
{
"difficulty": {
"numbers": [
4,
4
],
"target": [
10,
100
],
"value": [
1,
100
]
},
"expression": "70 - 14 + 90 - 88",
"numbers": [
70,
14,
90,
88
],
"source_dataset": "countdown",
"source_index": 69,
"target": 58
}
| 2
|
Using all the numbers 74, 80, 48, 66, 56, create an expression that equals 52.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
66 - 56 + 74 + 48 - 80
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "66 - 56 + 74 + 48 - 80",
"numbers": [
74,
80,
48,
66,
56
],
"source_dataset": "countdown",
"source_index": 0,
"target": 52
}
| 3
|
Using all the numbers 34, 9, 77, 66, 97, create an expression that equals 66.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
34*9 - 66 - 97 - 77
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "34*9 - 66 - 97 - 77",
"numbers": [
34,
9,
77,
66,
97
],
"source_dataset": "countdown",
"source_index": 1,
"target": 66
}
| 3
|
Calculate 43 using all of these numbers: 35, 35, 39, 16, 12.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
16 + 35 - 12 + 39 - 35
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "16 + 35 - 12 + 39 - 35",
"numbers": [
35,
35,
39,
16,
12
],
"source_dataset": "countdown",
"source_index": 2,
"target": 43
}
| 3
|
Find a way to make 75 using all of these numbers: 66, 66, 51, 66, 90.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
66*90/66 + 51 - 66
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "66*90/66 + 51 - 66",
"numbers": [
66,
66,
51,
66,
90
],
"source_dataset": "countdown",
"source_index": 3,
"target": 75
}
| 3
|
Using all the numbers 49, 72, 63, 78, 33, create an expression that equals 103.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
49 - 63 - 33 + 78 + 72
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "49 - 63 - 33 + 78 + 72",
"numbers": [
49,
72,
63,
78,
33
],
"source_dataset": "countdown",
"source_index": 4,
"target": 103
}
| 3
|
Using all the numbers 28, 66, 98, 29, 84, create an expression that equals 59.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
84 - 29 - 28 + 98 - 66
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "84 - 29 - 28 + 98 - 66",
"numbers": [
28,
66,
98,
29,
84
],
"source_dataset": "countdown",
"source_index": 5,
"target": 59
}
| 3
|
Using all the numbers 42, 33, 75, 63, 29, create an expression that equals 34.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
63 - 29 - 42 - 33 + 75
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "63 - 29 - 42 - 33 + 75",
"numbers": [
42,
33,
75,
63,
29
],
"source_dataset": "countdown",
"source_index": 6,
"target": 34
}
| 3
|
Find a way to make 88 using all of these numbers: 18, 44, 33, 32, 49.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
18 + 33 + 49 + 32 - 44
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "18 + 33 + 49 + 32 - 44",
"numbers": [
18,
44,
33,
32,
49
],
"source_dataset": "countdown",
"source_index": 7,
"target": 88
}
| 3
|
Find a way to make 130 using all of these numbers: 61, 8, 22, 2, 57.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
57 + 22 + 61 - 2 - 8
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "57 + 22 + 61 - 2 - 8",
"numbers": [
61,
8,
22,
2,
57
],
"source_dataset": "countdown",
"source_index": 8,
"target": 130
}
| 3
|
Find a way to make 30 using all of these numbers: 70, 2, 31, 57, 50.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
70 + 50 - 57 - 2 - 31
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "70 + 50 - 57 - 2 - 31",
"numbers": [
70,
2,
31,
57,
50
],
"source_dataset": "countdown",
"source_index": 9,
"target": 30
}
| 3
|
Calculate 112 using all of these numbers: 45, 30, 62, 76, 83.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
83 - 62 - 30 + 45 + 76
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "83 - 62 - 30 + 45 + 76",
"numbers": [
45,
30,
62,
76,
83
],
"source_dataset": "countdown",
"source_index": 10,
"target": 112
}
| 3
|
Calculate 28 using all of these numbers: 41, 6, 36, 13, 6.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
41*36/(6*6) - 13
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "41*36/(6*6) - 13",
"numbers": [
41,
6,
36,
13,
6
],
"source_dataset": "countdown",
"source_index": 11,
"target": 28
}
| 3
|
Find a way to make 51 using all of these numbers: 92, 63, 26, 42, 86.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
26*(92 - 86) - 63 - 42
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "26*(92 - 86) - 63 - 42",
"numbers": [
92,
63,
26,
42,
86
],
"source_dataset": "countdown",
"source_index": 12,
"target": 51
}
| 3
|
Using all the numbers 88, 32, 20, 4, 50, create an expression that equals 22.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
88 - 4 + 20 - 50 - 32
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "88 - 4 + 20 - 50 - 32",
"numbers": [
88,
32,
20,
4,
50
],
"source_dataset": "countdown",
"source_index": 13,
"target": 22
}
| 3
|
Calculate 116 using all of these numbers: 1, 1, 1, 27, 88.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
1 + (27/1 + 88)/1
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "1 + (27/1 + 88)/1",
"numbers": [
1,
1,
1,
27,
88
],
"source_dataset": "countdown",
"source_index": 14,
"target": 116
}
| 3
|
Calculate 79 using all of these numbers: 75, 79, 54, 37, 58.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
58 + 79 + 54 - 37 - 75
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "58 + 79 + 54 - 37 - 75",
"numbers": [
75,
79,
54,
37,
58
],
"source_dataset": "countdown",
"source_index": 15,
"target": 79
}
| 3
|
Calculate 70 using all of these numbers: 95, 60, 63, 20, 2.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
95 - 2 + 60 - 63 - 20
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "95 - 2 + 60 - 63 - 20",
"numbers": [
95,
60,
63,
20,
2
],
"source_dataset": "countdown",
"source_index": 16,
"target": 70
}
| 3
|
Find a way to make 78 using all of these numbers: 82, 2, 50, 2, 31.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
50/2 - 31 + 82 + 2
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "50/2 - 31 + 82 + 2",
"numbers": [
82,
2,
50,
2,
31
],
"source_dataset": "countdown",
"source_index": 17,
"target": 78
}
| 3
|
Using all the numbers 11, 40, 55, 1, 23, create an expression that equals 19.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
-55 + 23 + (11 + 40)/1
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "-55 + 23 + (11 + 40)/1",
"numbers": [
11,
40,
55,
1,
23
],
"source_dataset": "countdown",
"source_index": 18,
"target": 19
}
| 3
|
Using all the numbers 31, 86, 40, 60, 9, create an expression that equals 93.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
9*31 - 60 - 40 - 86
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "9*31 - 60 - 40 - 86",
"numbers": [
31,
86,
40,
60,
9
],
"source_dataset": "countdown",
"source_index": 19,
"target": 93
}
| 3
|
Calculate 39 using all of these numbers: 62, 38, 85, 57, 33.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
57 + 38 - 33 + 62 - 85
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "57 + 38 - 33 + 62 - 85",
"numbers": [
62,
38,
85,
57,
33
],
"source_dataset": "countdown",
"source_index": 20,
"target": 39
}
| 3
|
Calculate 66 using all of these numbers: 11, 19, 84, 90, 100.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
90 - 100 + 84 - 19 + 11
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "90 - 100 + 84 - 19 + 11",
"numbers": [
11,
19,
84,
90,
100
],
"source_dataset": "countdown",
"source_index": 21,
"target": 66
}
| 3
|
Calculate 76 using all of these numbers: 19, 17, 15, 85, 83.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
19*(17 - 83 - 15 + 85)
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "19*(17 - 83 - 15 + 85)",
"numbers": [
19,
17,
15,
85,
83
],
"source_dataset": "countdown",
"source_index": 22,
"target": 76
}
| 3
|
Calculate 67 using all of these numbers: 68, 18, 50, 15, 48.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
68 + 15 + 50 - 18 - 48
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "68 + 15 + 50 - 18 - 48",
"numbers": [
68,
18,
50,
15,
48
],
"source_dataset": "countdown",
"source_index": 23,
"target": 67
}
| 3
|
Find a way to make 20 using all of these numbers: 87, 8, 84, 46, 77.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
77 - 87 + 84 - 8 - 46
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "77 - 87 + 84 - 8 - 46",
"numbers": [
87,
8,
84,
46,
77
],
"source_dataset": "countdown",
"source_index": 24,
"target": 20
}
| 3
|
Calculate 26 using all of these numbers: 23, 8, 78, 12, 25.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
8 - 12 + 78 - 23 - 25
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "8 - 12 + 78 - 23 - 25",
"numbers": [
23,
8,
78,
12,
25
],
"source_dataset": "countdown",
"source_index": 25,
"target": 26
}
| 3
|
Using all the numbers 85, 89, 28, 40, 97, create an expression that equals 89.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
40 - 28 + 89 + 85 - 97
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "40 - 28 + 89 + 85 - 97",
"numbers": [
85,
89,
28,
40,
97
],
"source_dataset": "countdown",
"source_index": 26,
"target": 89
}
| 3
|
Calculate 105 using all of these numbers: 95, 15, 76, 24, 12.
Each number may be used at most once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
15*(12 + 95 - 24 - 76)
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "15*(12 + 95 - 24 - 76)",
"numbers": [
95,
15,
76,
24,
12
],
"source_dataset": "countdown",
"source_index": 27,
"target": 105
}
| 3
|
Find a way to make 97 using all of these numbers: 1, 28, 1, 71, 53.
Each number can only be used once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
71/1 + 1 + 53 - 28
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "71/1 + 1 + 53 - 28",
"numbers": [
1,
28,
1,
71,
53
],
"source_dataset": "countdown",
"source_index": 28,
"target": 97
}
| 3
|
Using all the numbers 73, 36, 86, 4, 23, create an expression that equals 142.
You can only use each number once.
Final answer format instructions:
1. Provide your solution as a arithmetic expression (no '=' sign).
2. Do not include the target number in the expression.
3. Use '*' for multiplication.
4. Use '/' for division.
5. Do not include any other text or formatting.
|
4*(73 - 23 - 36) + 86
|
{
"difficulty": {
"numbers": [
5,
5
],
"target": [
10,
150
],
"value": [
1,
100
]
},
"expression": "4*(73 - 23 - 36) + 86",
"numbers": [
73,
36,
86,
4,
23
],
"source_dataset": "countdown",
"source_index": 29,
"target": 142
}
| 3
|
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 32