const line = readline(); function func(line) { const map = { en: 0, space: 0, num: 0, other: 0 }; const arr = line.split(''); arr.forEach((item) => { if (/^[A-Za-z]$/.test(item)) { map['en']++; } else if (item === '...