import java.util.; import java.io.; public class Main{ public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); // 优先级maps HashMap<Character, Integer> maps = new HashMap<>(); maps.put('+', 1); maps.put('-', 1); ma...