fork download
  1. #include <stdio.h>
  2. main() {
  3. int x, y, z;
  4. printf("input x=");
  5. scanf("%d", &x);
  6. printf("input y=");
  7. scanf("%d", &y);
  8. z = x + y;
  9. printf("z=%d\n", z);
  10. }
Success #stdin #stdout 0s 4556KB
stdin
Standard input is empty
stdout
input x=input y=z=1547245439