#include<stdio.h> int main() { int ID; float c,m,e; scanf("%d;%f,%f,%f",&ID,&c,&m,&e); if (ID>=1&&ID<=20000000) { printf("The each subject score of No. %d is %.2f, %.2f, %.2f.",ID,c,m,e); } return 0; }