function myFunction(a, b) { const str = a.concat(b.split("").reverse().join("")).replaceAll("%", ""); return str[0].toUpperCase() + str.slice(1);}