#include #define int long long #define REP(i, b) for(int i = 0; i < (b); i++) #define REPS(i, b) for(int i = 1; i <= (b); i++) #define ALL(v) (v).begin(), (v).end() #define fi first #define se second #define pb push_back #define mp make_pair using namespace std; using pi = pair; using vi = vector; using vs = vector; using vb = vector; using vpi = vector; using vvi = vector; using vvb = vector; const int INF = 1e16; const int MOD = 1e9+7; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } signed main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(10); int N; cin >> N; int Total; cin >> Total; vi A(N); REP(i, N) cin >> A[i]; vvb dp(N+1, vb(100001, false)); dp[1][A[0]] = true; for(int i = 1; i < N; i++) { for(int j = 0; j <= 100000; j++) { if(dp[i][j]) { if(j+A[i] <= 100000) dp[i+1][j+A[i]] = true; if(j*A[i] <= 100000) dp[i+1][j*A[i]] = true; } } } string ans = ""; int t = Total; for(int i = N-1; i > 0; i--) { for(int j = 0; j <= Total; j++) { if(dp[i][j] && j+A[i] == t) { ans.push_back('+'); t = j; break; } else if(dp[i][j] && j*A[i] == t) { ans.push_back('*'); t = j; break; } } } reverse(ALL(ans)); cout << ans << endl; }