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
#include <cstdio>

void jedyn(int x){
    if(x==1){
        printf("1");
        return;
    }
    if(x==0)
        return;
    if(x%2){
        printf("(");
    }
    jedyn(x/2);
    printf(("*(1+1)"));
    if(x%2)
        printf("+1)");
}

int main() {
    int t;
    scanf("%d", &t);
    for(int i=0; i<t; i++){
        int x;
        scanf("%d", &x);
        jedyn(x);
        printf("\n");
    }
    return 0;
}