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