using System; class Tsutsu { public static void Main(string[] args) { string S = Console.ReadLine(); int max = int.MinValue; string s, t; s = S.Substring(0, 1); t = S.Substring(S.Length-1, 1); if(s != "+" && s!= "-" && t!= "+" && t != "-") max = calc(S); for(int i=0; i