fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int x;
  5. float y;
  6.  
  7. scanf("%d, %f", &x,&y);
  8. printf("%d, %f", x, y);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5276KB
stdin
2, 2.23
stdout
2, 2.230000