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

using namespace std;

string rep(int n) {
    if(n == 1)
        return "1";

    if(n == 2)
        return "1+1";

    if(n == 3)
        return "1+1+1";

    if(n % 2 == 0)
        return "(1+1)*(" + rep(n / 2) + ")";

    return "1+(1+1)*(" + rep((n - 1) / 2) + ")";
}

int main() {
    ios_base::sync_with_stdio(0);
    int t;
    cin >> t;

    int k;
    for( ; t > 0 ; t--) {
        cin >> k;
        cout << rep(k) << endl;
    }

    return 0;
}