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
#include<iostream>
#include<string>

using namespace std;

int t, k;
int ilosc_otwartych;
string res;

int main(){
	cin >> t;

	for(int test = 0; test < t; test++){
		cin >> k;
		//zmieniajac na binarny, tworz ciag:
		
		if(k == 1)
			cout << "1" << endl;
		else if(k == 2)
			cout << "1+1" << endl;	
		else{
			
			if(k % 2 == 1)cout << "1+";
			k /= 2;
			
			while(k > 0){
				if(k % 2 == 0){
					res += "(1+1)*";
				}
	
				else{
					res += "(1+1)*(1+";
					ilosc_otwartych++;
				}
	
				k/=2;
			}
			res = res.substr(0, res.size() - 4);
			
			res += string(ilosc_otwartych-1,')');
			ilosc_otwartych = 0;
			
			cout << res << endl;
			res = "";
		}
	}
	cout << endl;

	return 0;
}