#coding: utf-8
##yuki_193
import sys
import re

s=raw_input()
n=len(s)


res=-sys.maxint
for i in xrange(n):
 x=s[-1]
 s=x+s
 s=s[:-1]
 if s[0]=='+' or s[0]=='-':
  continue
 if s[-1]=='+' or s[-1]=='-':
  continue
 while s[0]=='0':
  s=s[1:]
 sa=re.sub(r'\+[0]+','+',s)
 if sa[-1]=='+' or sa[-1]=='-':
  sa=sa[:-1]
 res_temp=eval(sa)
 if res<res_temp:
   res=res_temp
print res