import java.util.*; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String s = scanner.nextLine(); Map<Character,Integer> map = new HashMap<>(); map.put('A',10);map.put('B',11);map.put('C',12); map.put('D',13);map.put('E',14);map.put...