BC11 成绩输入输出

思路:

step1:输入三组成绩,并空格分开;
step2:按要求字符串拼接并输出;

代码如下:

x,y,z = input().split()
print('score1='+x+',''score2='+y+',''score3='+z)