fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a,b,c;
  6. scanf("%d %d %d",&a,&b,&c);
  7. printf("a=%d,b=%d,c=%d",a,b,c);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
a=0,b=0,c=0