#include <stdio.h>

int main() 
{
    int id=0;
    //精度要求高用double
    float c_language=0.0f;
    float math=0.0f;
    float English=0.0f;
    scanf("%d;%f,%f,%f",&id,&c_language,&math,&English);
    printf("The each subject score of No. %d is %.2f, %.2f, %.2f.",id,c_language,math,English);
    return 0;
}