import java.util.Scanner; import java.util.regex.Pattern; import java.util.regex.Matcher; public class yukicoder_222 { public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); String str = stdIn.next(); final String PLUS = "+"; final String MINUS = "-"; Pattern p = Pattern.compile("^[-+]?[0-9]{1,6}"); Matcher m = p.matcher(str); if (m.find()) { String matchstr = m.group(); String matchstr1 = matchstr; if(matchstr.substring(0, 1).equals(PLUS)) { matchstr1 = matchstr.substring(1); } int n1 = Integer.parseInt(matchstr1); int n2; if (str.substring(matchstr.length() + 1,matchstr.length() + 2).equals(PLUS)) { n2 = Integer.parseInt(str.substring(matchstr.length() + 2)); } else { n2 = Integer.parseInt(str.substring(matchstr.length() + 1)); } int result = 0; if (str.substring(matchstr.length(),matchstr.length() + 1).equals(PLUS)) { if (str.substring(matchstr.length() + 1,matchstr.length() + 2).equals(MINUS)) { result = n1 + Math.abs(n2); } else { result = n1 - n2; } } else { result = n1 + n2; } System.out.println(result); } else { System.out.println("no matches!"); } } }