#include #include using namespace std; int main(){ string S; cin >> S; int ans,opi,i=0; char op; while(S[i] != '*' && S[i] != '+') i++; op = S[i]; opi = i; ans = stoi(S.substr(0,i)); for(i++;i