const str = readline(); const chr = readline(); const returnMap = (str,chr)=>{ const map = new Map(); for(let index = 0; index < str.length; index++){ const str_key = str[index].toUpperCase(); if(map.has(str_key)){ map.set(str_key,map.get(str_key) + 1); }else{ map.set(str_key,1); } } return ma...