/**************/ /* scanf.c */ #include int main(void) { char s[10]; int i,j; scanf("%d,\"%s\",%d",&i,s,&j); printf("%d|%s|%d",i,s,j); return 0; }