#include <stdio.h>

int main() {
    float  b,c,d;
    int a;
    scanf("%d;%f,%f,%f",&a,&b,&c,&d);
    printf("The each subject score of No. %d is %.2f, %.2f, %.2f.",a,b,c,d);
   
    return 0;
}