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
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
// #include <algorithm>
#include <iostream>
#include<cstdio>
#include<string>
using namespace std;

const int STO = 100;
const string TRZY = "(1+1+1)";
const string DWA = "(1+1)";
const string JEDEN = "1";
const string NIE = "NIE";

string simple_print(int x){
	string wyr = "1";
	for(int i=1; i<x; i++){
		wyr += "+1";
	}
	return wyr;
}

string go_down(int x, string s, int sum, int * nie){
	
	if ((sum + x) <= STO){
		return s + "(" + simple_print(x) + ")";
	}
	
	if (sum > STO){
		*nie = 1;
		return "";
	}
	
	if ((x % 3) == 0){
		if (x == 3){
			if ((sum + 3)> STO){
				*nie = 1;
				return "";
			}
			return s + TRZY;
		}
		x = x/3;
		sum += 3;
		s += TRZY + "*";
		return go_down(x, s, sum, nie);
	}
	else if ((x % 2) == 0){
		if (x == 2){
			if ((sum + 2)> STO){
				*nie = 1;
				return "";
			}
			return s + DWA;
		}
		x = x/2;
		sum += 2;
		s += DWA + "*";
		return go_down(x, s, sum, nie);
	}
	else{
		if (x == 1){
			if ((sum + 1)> STO){
				*nie = 1;
				return "";
			}
			return s + JEDEN;
		}
		x = x - 1;
		sum += 1;
		s += "(" + JEDEN + "+"; 
		return (go_down(x, s, sum, nie) + ")");
	}
}

int main() {
  
  int t, k;
  
  scanf("%d", &t);
  // printf("%d\n", t);
  
  string wyr;

  for(int i = 0; i < t; i++){
     scanf("%d", &k);
	 
	 if (k <= STO){
		wyr = simple_print(k);	 
		cout << wyr << endl;
	 }
	 else{
		 int sum = 0;
		 int nie = 0;
		 wyr = "";
		 wyr = go_down(k, wyr, sum, &nie);
		 if (nie == 1){
			 cout << NIE << endl;
		 }
		 else{
			 cout << wyr << endl;
		 }
	 }
  }
  
  return 0;
}