const rl = require("readline").createInterface({ input: process.stdin });
var iter = rl[Symbol.asyncIterator]();
const readline = async () => (await iter.next()).value;
void async function () {
// Write your code here
function Solution(s){
return s.replace(/([0-9]+)/img, "*$1*")
}
while(line = await readline()){
let tokens = line.split(' ');
let string = tokens[0];
console.log(Solution(string));
}
}()



京公网安备 11010502036488号