1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>

using namespace std;

void solve(int k) {
	if (k == 0) return;
	if (k == 1) {
		cout << 1;
	} else if (k & 1) {
		cout << "(";
		solve(k-1);
		cout << "+1)";
	} else {
		cout << "((1+1)*";
		solve(k/2);
		cout << ")";
	}
}

int main(int argc, char** argv)
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);

	int T;
	cin >> T;

	while (T--) {
		int k;
		cin >> k;
		solve(k);
		cout << "\n";
	}

	return 0;
}