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