#include #define rep(i,n) for(int i=(0);i<(n);i++) using namespace std; typedef long long ll; typedef unsigned long long ull; template bool chmax(T &a, const T &b) { if (a bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } int main(){ cin.tie(0); ios::sync_with_stdio(false); string s; cin >> s; int n; n = s.size(); int ans = 0, tmp = 0; char op = '*'; rep(i, n){ if(s[i] == '*' || s[i] == '+'){ if(op == '*'){ ans += tmp; }else{ ans *= tmp; } op = s[i]; tmp = 0; }else{ tmp *= 10; tmp += s[i] - '0'; } } if(op == '*'){ ans += tmp; }else{ ans *= tmp; } cout << ans << endl; }