문제 : https://www.acmicpc.net/problem/1541. package _200604; public class Main { public static void main(String[] args) { Scanner s = new Scanner(Systme.in); String exc = s.nextLine(); String[] str = exc.split("-"); String[] tmp = str[0].split("\\+"); int sum=0, first=0; for (int i = 0; i < tmp.length; i++) { first+=Integer.parseInt(tmp[i]); } for (int i = 1; i < str.length; i++) { String[] temp ..