fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x, y, z;
  5. scanf("%d", &x);
  6. scanf("%d", &y);
  7. scanf("%d", &z);
  8.  
  9. printf("%d, %d, %d",x ,y ,z);
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4488KB
stdin
10 20 30
stdout
10, 20, 30