fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int a;
  8. int b;
  9. int c;
  10. int h;
  11.  
  12. a = 1;
  13. b = 2;
  14. c = 3;
  15. h = ( a + b + c ) / 3;
  16.  
  17. printf("%d", h);
  18. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
2