int main(){
    int sno;
    float a,b,c;
    scanf("%d;%f,%f,%f",&sno,&a,&b,&c);
    printf("The each subject score of No. %d is %.2f, %.2f, %.2f.",sno,a,b,c);
    return 0;
}
//很绝,输出时,空格都要和要求的一样