// #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include #include using namespace std; using namespace atcoder; using mint = modint998244353; // using mint = modint1000000007; using ll = long long; using ull = unsigned long long; using ld = long double; using pii = pair; using pll = pair; using T = tuple; using G = vector>; #define rep(i, n) for (ll i = 0; i < (n); ++i) #define rep2(i, a, b) for (ll i = a; i < (b); ++i) #define rrep2(i, a, b) for (ll i = a-1; i >= (b); --i) #define rep3(i, a, b, c) for (ll i = a; i < (b); i+=c) #define rng(a) a.begin(),a.end() #define rrng(a) a.rbegin(),a.rend() #define popcount __builtin_popcount #define popcountll __builtin_popcountll #define fi first #define se second #define UNIQUE(v) sort(rng(v)), v.erase(unique(rng(v)), v.end()) #define MIN(v) *min_element(rng(v)) #define MAX(v) *max_element(rng(v)) template bool chmin(T &a,T b){if(a>b){a=b;return 1;}else return 0;} template bool chmax(T &a,T b){if(a void printv(vector &v){rep(i,v.size())cout< void printvv(vector> &v){rep(i,v.size())rep(j,v[i].size())cout<> n >> tot; vector a(n); rep(i,n) cin >> a[i]; map memo; string ans; bool flag = false; auto f = [&](auto f, int now, int num, string res="") -> bool{ if (now == n){ if (num != tot || flag) return false; cout << res << endl; flag = true; return true; } if (memo.count({now, num})) return memo[{now, num}]; bool ret = false; if (num+a[now] <= tot) ret |= f(f, now+1, num+a[now], res+'+'); if (num*a[now] <= tot) ret |= f(f, now+1, num*a[now], res+'*'); return memo[{now, num}] = ret; }; f(f, 1, a[0]); return 0; }