fork download
  1. #include <stdio.h>
  2. void main()
  3. {
  4. int a,b,c;
  5. scanf("%d%d%d",&a,&b,&c);
  6. printf("%d,%d,%d\n",a,b,c);
  7. }
Success #stdin #stdout 0s 5284KB
stdin
3 4 5
stdout
3,4,5