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
while(line = await readline()){
let tokens = line.split(' ');
tokens.forEach((value,index,arr)=>{
tokens[index] = parseInt(value)
})
console.log("score1="+tokens[0]+",score2="+tokens[1]+",score3="+tokens[2]);
}
}()