#include <stdio.h> int main() { int id; int sc; scanf("%d,%f",&id,&sc); printf("小明同学的学号是%d,成绩是%.2f",id,sc); return 0; }