#include <stdio.h>

int main()
{
    int student_numbers; 
    float c_score, math, english;
    scanf("%d;%f,%f,%f", &student_numbers, &c_score, &math, &english);
    
    //注意这里要用%.2f,因为这里输出的浮点数小数点是两位
    printf("The each subject score of  No. %d is %.2f, %.2f, %.2f.",
           student_numbers, c_score, math, english);
    
    return 0;
}