fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a = 300, b, c;
  5. if(a >= 400)
  6. b = 300;
  7. c = 200;
  8. printf("%d,%d", a, c);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
300,200