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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <iostream>
#include <deque>

using namespace std;


int T, N;


void wypisz(int N)
{
	if (N==1)
	{	
		cout << "1";
		return;
	}
	if (N==2)
	{
		cout << "1+1";
		return;
	}
	if (N==3)
	{
		cout << "1+1+1";
		return;
	}
	if (N % 2 == 0)
	{
		int M = N / 2;
		cout << "(1+1)*(";
		wypisz(M);
		cout <<")";
	}
	if (N % 2 == 1)
	{
		int M = N / 2;
		cout << "1+(1+1)*(";
		wypisz(M);
		cout <<")";
	}
}


int main()
{
	int przedwiasy = 0;

	cin >> T;
	while(T --> 0)
	{
		cin >> N;
		wypisz(N);
		cout << "\n";
	}
}